@opentripplanner/map-popup 7.0.1 → 8.0.0
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/esm/index.js +17 -13
- package/esm/index.js.map +1 -1
- package/esm/util.js +7 -7
- package/esm/util.js.map +1 -1
- package/lib/index.d.ts +7 -5
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +12 -13
- package/lib/index.js.map +1 -1
- package/lib/util.d.ts +3 -2
- package/lib/util.d.ts.map +1 -1
- package/lib/util.js +14 -9
- package/lib/util.js.map +1 -1
- package/package.json +4 -4
- package/src/MapPopup.story.tsx +26 -33
- package/src/__snapshots__/MapPopup.story.tsx.snap +1 -1
- package/src/index.tsx +19 -18
- package/src/util.ts +24 -16
- package/tsconfig.tsbuildinfo +1 -1
package/esm/index.js
CHANGED
|
@@ -7,7 +7,8 @@ import { FocusTrapWrapper } from "@opentripplanner/building-blocks";
|
|
|
7
7
|
import { flatten } from "flat";
|
|
8
8
|
import { FormattedMessage, useIntl } from "react-intl";
|
|
9
9
|
import { Styled } from "@opentripplanner/base-map";
|
|
10
|
-
import
|
|
10
|
+
import coreUtils from "@opentripplanner/core-utils";
|
|
11
|
+
import { makeDefaultGetEntityName } from "./util";
|
|
11
12
|
import { ViewStopButton } from "./styled";
|
|
12
13
|
|
|
13
14
|
// Load the default messages.
|
|
@@ -34,20 +35,21 @@ var generateLocation = function generateLocation(entity, name) {
|
|
|
34
35
|
};
|
|
35
36
|
};
|
|
36
37
|
var StationHubDetails = function StationHubDetails(_ref) {
|
|
37
|
-
var
|
|
38
|
+
var availableVehicles = _ref.availableVehicles,
|
|
39
|
+
availableSpaces = _ref.availableSpaces;
|
|
38
40
|
return /*#__PURE__*/React.createElement(Styled.PopupRow, null, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(FormattedMessage, {
|
|
39
41
|
defaultMessage: defaultMessages["otpUi.MapPopup.availableBikes"],
|
|
40
42
|
description: "Label text for the number of bikes available",
|
|
41
43
|
id: "otpUi.MapPopup.availableBikes",
|
|
42
44
|
values: {
|
|
43
|
-
value:
|
|
45
|
+
value: availableVehicles
|
|
44
46
|
}
|
|
45
47
|
})), /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(FormattedMessage, {
|
|
46
48
|
defaultMessage: defaultMessages["otpUi.MapPopup.availableDocks"],
|
|
47
49
|
description: "Label text for the number of docks available",
|
|
48
50
|
id: "otpUi.MapPopup.availableDocks",
|
|
49
51
|
values: {
|
|
50
|
-
value:
|
|
52
|
+
value: availableSpaces
|
|
51
53
|
}
|
|
52
54
|
})));
|
|
53
55
|
};
|
|
@@ -72,14 +74,15 @@ var StopDetails = function StopDetails(_ref2) {
|
|
|
72
74
|
id: "otpUi.MapPopup.stopViewer"
|
|
73
75
|
})));
|
|
74
76
|
};
|
|
75
|
-
function
|
|
76
|
-
return "
|
|
77
|
-
}
|
|
77
|
+
var entityIsStop = function entityIsStop(entity) {
|
|
78
|
+
return "gtfsId" in entity;
|
|
79
|
+
};
|
|
78
80
|
|
|
79
81
|
/**
|
|
80
82
|
* Renders a map popup for a stop, scooter, or shared bike
|
|
81
83
|
*/
|
|
82
84
|
export function MapPopup(_ref3) {
|
|
85
|
+
var _entity$availableSpac, _entity$availableVehi;
|
|
83
86
|
var _ref3$closePopup = _ref3.closePopup,
|
|
84
87
|
closePopup = _ref3$closePopup === void 0 ? function () {} : _ref3$closePopup,
|
|
85
88
|
configCompanies = _ref3.configCompanies,
|
|
@@ -105,10 +108,10 @@ export function MapPopup(_ref3) {
|
|
|
105
108
|
}
|
|
106
109
|
var name = getNameFunc(entity, configCompanies, feedName);
|
|
107
110
|
var titleName = getNameFunc(entity, configCompanies, feedName, false);
|
|
108
|
-
var stationNetwork =
|
|
109
|
-
var
|
|
110
|
-
var entityIsStationHub =
|
|
111
|
-
var stopId =
|
|
111
|
+
var stationNetwork = "rentalNetwork" in entity && (coreUtils.itinerary.getCompaniesLabelFromNetworks(entity === null || entity === void 0 ? void 0 : entity.rentalNetwork.networkId, configCompanies) || (entity === null || entity === void 0 ? void 0 : entity.rentalNetwork.networkId));
|
|
112
|
+
var vehiclesAvailable = "availableVehicles" in entity;
|
|
113
|
+
var entityIsStationHub = vehiclesAvailable && (entity === null || entity === void 0 ? void 0 : entity.availableVehicles) !== undefined;
|
|
114
|
+
var stopId = entityIsStop(entity) ? entity.code : "";
|
|
112
115
|
var id = "focus-".concat(encodeURIComponent(entity.id).replace(/%/g, ""), "-popup");
|
|
113
116
|
return /*#__PURE__*/React.createElement(Styled.MapOverlayPopup, null, /*#__PURE__*/React.createElement(FocusTrapWrapper, {
|
|
114
117
|
closePopup: closePopup,
|
|
@@ -122,8 +125,9 @@ export function MapPopup(_ref3) {
|
|
|
122
125
|
stationNetwork: stationNetwork
|
|
123
126
|
}
|
|
124
127
|
})), entityIsStationHub && /*#__PURE__*/React.createElement(StationHubDetails, {
|
|
125
|
-
|
|
126
|
-
|
|
128
|
+
availableSpaces: (_entity$availableSpac = entity.availableSpaces) === null || _entity$availableSpac === void 0 ? void 0 : _entity$availableSpac.total,
|
|
129
|
+
availableVehicles: (_entity$availableVehi = entity.availableVehicles) === null || _entity$availableVehi === void 0 ? void 0 : _entity$availableVehi.total
|
|
130
|
+
}), setViewedStop && entityIsStop(entity) && /*#__PURE__*/React.createElement(StopDetails, {
|
|
127
131
|
id: stopId,
|
|
128
132
|
feedName: feedName,
|
|
129
133
|
setViewedStop: useCallback(function () {
|
package/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["React","useCallback","FromToLocationPicker","FocusTrapWrapper","flatten","FormattedMessage","useIntl","Styled","getNetwork","makeDefaultGetEntityName","ViewStopButton","defaultEnglishMessages","defaultMessages","generateLocation","entity","name","entityLon","lon","entityLat","lat","x","y","StationHubDetails","_ref","station","createElement","PopupRow","defaultMessage","description","id","values","value","vehiclesAvailable","spacesAvailable","StopDetails","_ref2","feedName","setViewedStop","stopId","onClick","entityIsStation","MapPopup","_ref3","_ref3$closePopup","closePopup","configCompanies","getEntityName","getEntityPrefix","setLocation","feeds","intl","Fragment","getNameFunc","_feed$publisher","feedId","split","feed","find","f","publisher","titleName","stationNetwork","bikesAvailablePresent","entityIsStationHub","undefined","isFloatingBike","code","concat","encodeURIComponent","replace","MapOverlayPopup","PopupTitle","label","location"],"sources":["../src/index.tsx"],"sourcesContent":["import React, { useCallback } from \"react\";\nimport FromToLocationPicker from \"@opentripplanner/from-to-location-picker\";\n\n// eslint-disable-next-line prettier/prettier\nimport type {\n Company,\n ConfiguredCompany,\n Location,\n Stop,\n StopEventHandler,\n TileLayerStation\n} from \"@opentripplanner/types\";\n\nimport { FocusTrapWrapper } from \"@opentripplanner/building-blocks\";\nimport { flatten } from \"flat\";\nimport { FormattedMessage, useIntl } from \"react-intl\";\nimport { Styled } from \"@opentripplanner/base-map\";\n\nimport { Entity, getNetwork, makeDefaultGetEntityName, type StopIdAgencyMap } from \"./util\";\nimport { ViewStopButton } from \"./styled\";\n\n// Load the default messages.\nimport defaultEnglishMessages from \"../i18n/en-US.yml\";\n\n// HACK: We should flatten the messages loaded above because\n// the YAML loaders behave differently between webpack and our version of jest:\n// - the yaml loader for webpack returns a nested object,\n// - the yaml loader for jest returns messages with flattened ids.\nexport const defaultMessages: { [key: string]: string } = flatten(defaultEnglishMessages);\n\nexport type Feed = {\n feedId: string;\n publisher: {\n name: string;\n };\n};\n\n\nconst generateLocation = (entity: Entity, name: string) => {\n // @ts-expect-error some of these values may be null, but that's ok\n const { lon: entityLon, lat: entityLat, x, y } = entity\n\n const lat = entityLat || y\n const lon = entityLon || x\n if (!lat || !lon) return null\n\n return { lat, lon, name };\n}\n\nconst StationHubDetails = ({ station }: { station: TileLayerStation }) => {\n return (\n <Styled.PopupRow>\n <div>\n <FormattedMessage\n defaultMessage={\n defaultMessages[\"otpUi.MapPopup.availableBikes\"]\n }\n description=\"Label text for the number of bikes available\"\n id=\"otpUi.MapPopup.availableBikes\"\n values={{ value: station.vehiclesAvailable }}\n />\n </div>\n <div>\n <FormattedMessage\n defaultMessage={\n defaultMessages[\"otpUi.MapPopup.availableDocks\"]\n }\n description=\"Label text for the number of docks available\"\n id=\"otpUi.MapPopup.availableDocks\"\n values={{ value: station.spacesAvailable }}\n />\n </div>\n </Styled.PopupRow>\n )\n}\n\nconst StopDetails = ({ id, feedName, setViewedStop }: { id: string, feedName?: string, setViewedStop: () => void; }) => {\n return (\n <Styled.PopupRow>\n {id &&\n <strong>\n <FormattedMessage\n defaultMessage={defaultMessages[\"otpUi.MapPopup.stopId\"]}\n description=\"Displays the stop id\"\n id=\"otpUi.MapPopup.stopId\"\n values={{\n feedName,\n stopId: id\n }}\n />\n </strong>}\n <ViewStopButton onClick={setViewedStop} stopId={id}> \n <FormattedMessage\n defaultMessage={defaultMessages[\"otpUi.MapPopup.stopViewer\"]}\n description=\"Text for link that opens the stop viewer\"\n id=\"otpUi.MapPopup.stopViewer\"\n />\n </ViewStopButton>\n </Styled.PopupRow>\n )\n}\n\ntype Props = {\n closePopup?: (arg?: boolean) => void\n configCompanies?: ConfiguredCompany[];\n entity: Entity\n getEntityName?: (entity: Entity, configCompanies: Company[], feedName?: string, includeParenthetical?: boolean) => string;\n getEntityPrefix?: (entity: Entity) => JSX.Element\n feeds?: Feed[]\n setLocation?: ({ location, locationType }: { location: Location, locationType: string }) => void;\n setViewedStop?: StopEventHandler;\n};\n\nfunction entityIsStation(entity: Entity): entity is TileLayerStation {\n return \"vehiclesAvailable\" in entity\n}\n\n/**\n * Renders a map popup for a stop, scooter, or shared bike\n */\nexport function MapPopup({ \n closePopup = () => {}, \n configCompanies, \n entity, \n getEntityName, \n getEntityPrefix, \n setLocation, \n setViewedStop, \n feeds,\n}: Props): JSX.Element {\n\n const intl = useIntl()\n if (!entity) return <></>\n\n const getNameFunc = getEntityName || makeDefaultGetEntityName(intl, defaultMessages);\n \n // Find the feed name using the logic from generateLabel in otp.ts\n let feedName: string | undefined;\n if (feeds && entity.id) {\n const feedId = entity.id.split(\":\")[0];\n const feed = feeds.find(f => f.feedId === feedId);\n feedName = feed?.publisher?.name;\n }\n \n const name = getNameFunc(entity, configCompanies, feedName);\n const titleName = getNameFunc(entity, configCompanies, feedName, false);\n\n const stationNetwork = getNetwork(entity, configCompanies);\n\n const bikesAvailablePresent = entityIsStation(entity)\n const entityIsStationHub = bikesAvailablePresent && entity.vehiclesAvailable !== undefined && !entity.isFloatingBike;\n const stopId = !bikesAvailablePresent && \"code\" in entity && entity.code;\n const id = `focus-${encodeURIComponent(entity.id).replace(/%/g, \"\")}-popup`\n\n return (\n <Styled.MapOverlayPopup>\n <FocusTrapWrapper closePopup={closePopup} id={id}>\n <Styled.PopupTitle>\n {getEntityPrefix && getEntityPrefix(entity)}\n <FormattedMessage\n defaultMessage={defaultMessages[\"otpUi.MapPopup.popupTitle\"]}\n description=\"Text for title of the popup, contains an optional company name\"\n id=\"otpUi.MapPopup.popupTitle\"\n values={{ name: titleName, stationNetwork }}\n />\n </Styled.PopupTitle>\n {/* render dock info if it is available */}\n {entityIsStationHub && <StationHubDetails station={entity} />}\n\n {/* render stop viewer link if available */}\n {setViewedStop && !bikesAvailablePresent && (\n <StopDetails\n id={stopId}\n feedName={feedName}\n setViewedStop={useCallback(() => setViewedStop(entity as Stop), [entity])}\n />\n )}\n\n {/* The \"Set as [from/to]\" ButtonGroup */}\n {setLocation && (\n <Styled.PopupRow>\n <FromToLocationPicker\n label\n location={generateLocation(entity, name)}\n setLocation={setLocation}\n />\n </Styled.PopupRow>\n )}\n </FocusTrapWrapper>\n \n </Styled.MapOverlayPopup>\n );\n}\n\nexport default MapPopup;\nexport { type StopIdAgencyMap };"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"index.js","names":["React","useCallback","FromToLocationPicker","FocusTrapWrapper","flatten","FormattedMessage","useIntl","Styled","coreUtils","makeDefaultGetEntityName","ViewStopButton","defaultEnglishMessages","defaultMessages","generateLocation","entity","name","entityLon","lon","entityLat","lat","x","y","StationHubDetails","_ref","availableVehicles","availableSpaces","createElement","PopupRow","defaultMessage","description","id","values","value","StopDetails","_ref2","feedName","setViewedStop","stopId","onClick","entityIsStop","MapPopup","_ref3","_entity$availableSpac","_entity$availableVehi","_ref3$closePopup","closePopup","configCompanies","getEntityName","getEntityPrefix","setLocation","feeds","intl","Fragment","getNameFunc","_feed$publisher","feedId","split","feed","find","f","publisher","titleName","stationNetwork","itinerary","getCompaniesLabelFromNetworks","rentalNetwork","networkId","vehiclesAvailable","entityIsStationHub","undefined","code","concat","encodeURIComponent","replace","MapOverlayPopup","PopupTitle","total","label","location"],"sources":["../src/index.tsx"],"sourcesContent":["import React, { useCallback } from \"react\";\nimport FromToLocationPicker from \"@opentripplanner/from-to-location-picker\";\n\nimport { RentalVehicle, VehicleRentalStation } from \"@opentripplanner/types/otp2\";\n// eslint-disable-next-line prettier/prettier\nimport type {\n Company,\n ConfiguredCompany,\n Location,\n Stop,\n StopEventHandler,\n} from \"@opentripplanner/types\";\n\nimport { FocusTrapWrapper } from \"@opentripplanner/building-blocks\";\nimport { flatten } from \"flat\";\nimport { FormattedMessage, useIntl } from \"react-intl\";\nimport { Styled } from \"@opentripplanner/base-map\";\nimport coreUtils from \"@opentripplanner/core-utils\";\n\nimport { makeDefaultGetEntityName, type StopIdAgencyMap } from \"./util\";\nimport { ViewStopButton } from \"./styled\";\n\n// Load the default messages.\nimport defaultEnglishMessages from \"../i18n/en-US.yml\";\n\n// HACK: We should flatten the messages loaded above because\n// the YAML loaders behave differently between webpack and our version of jest:\n// - the yaml loader for webpack returns a nested object,\n// - the yaml loader for jest returns messages with flattened ids.\nexport const defaultMessages: { [key: string]: string } = flatten(defaultEnglishMessages);\n\nexport type Feed = {\n feedId: string;\n publisher: {\n name: string;\n };\n};\n\n\nconst generateLocation = (entity: MapPopupEntity, name: string) => {\n // @ts-expect-error some of these values may be null, but that's ok\n const { lon: entityLon, lat: entityLat, x, y } = entity\n\n const lat = entityLat || y\n const lon = entityLon || x\n if (!lat || !lon) return null\n\n return { lat, lon, name };\n}\n\nconst StationHubDetails = ({ availableVehicles, availableSpaces }: { availableVehicles: number, availableSpaces: number }) => {\n return (\n <Styled.PopupRow>\n <div>\n <FormattedMessage\n defaultMessage={\n defaultMessages[\"otpUi.MapPopup.availableBikes\"]\n }\n description=\"Label text for the number of bikes available\"\n id=\"otpUi.MapPopup.availableBikes\"\n values={{ value: availableVehicles }}\n />\n </div>\n <div>\n <FormattedMessage\n defaultMessage={\n defaultMessages[\"otpUi.MapPopup.availableDocks\"]\n }\n description=\"Label text for the number of docks available\"\n id=\"otpUi.MapPopup.availableDocks\"\n values={{ value: availableSpaces }}\n />\n </div>\n </Styled.PopupRow>\n )\n}\n\nconst StopDetails = ({ id, feedName, setViewedStop }: { id: string, feedName?: string, setViewedStop: () => void; }) => {\n return (\n <Styled.PopupRow>\n {id &&\n <strong>\n <FormattedMessage\n defaultMessage={defaultMessages[\"otpUi.MapPopup.stopId\"]}\n description=\"Displays the stop id\"\n id=\"otpUi.MapPopup.stopId\"\n values={{\n feedName,\n stopId: id\n }}\n />\n </strong>}\n <ViewStopButton onClick={setViewedStop} stopId={id}> \n <FormattedMessage\n defaultMessage={defaultMessages[\"otpUi.MapPopup.stopViewer\"]}\n description=\"Text for link that opens the stop viewer\"\n id=\"otpUi.MapPopup.stopViewer\"\n />\n </ViewStopButton>\n </Styled.PopupRow>\n )\n}\n\ntype MapPopupEntity = Stop | VehicleRentalStation | RentalVehicle\n\ntype Props = {\n closePopup?: (arg?: boolean) => void\n configCompanies?: ConfiguredCompany[];\n entity: MapPopupEntity\n getEntityName?: (entity: MapPopupEntity, configCompanies: Company[], feedName?: string, includeParenthetical?: boolean) => string;\n getEntityPrefix?: (entity: MapPopupEntity) => JSX.Element\n feeds?: Feed[]\n setLocation?: ({ location, locationType }: { location: Location, locationType: string }) => void;\n setViewedStop?: StopEventHandler;\n};\n\nconst entityIsStop = (entity: MapPopupEntity): entity is Stop => \"gtfsId\" in entity;\n\n/**\n * Renders a map popup for a stop, scooter, or shared bike\n */\nexport function MapPopup({ \n closePopup = () => {}, \n configCompanies, \n entity, \n getEntityName, \n getEntityPrefix, \n setLocation, \n setViewedStop, \n feeds,\n}: Props): JSX.Element {\n\n const intl = useIntl()\n if (!entity) return <></>\n\n const getNameFunc = getEntityName || makeDefaultGetEntityName(intl, defaultMessages);\n \n // Find the feed name using the logic from generateLabel in otp.ts\n let feedName: string | undefined;\n if (feeds && entity.id) {\n const feedId = entity.id.split(\":\")[0];\n const feed = feeds.find(f => f.feedId === feedId);\n feedName = feed?.publisher?.name;\n }\n \n const name = getNameFunc(entity, configCompanies, feedName);\n const titleName = getNameFunc(entity, configCompanies, feedName, false);\n\n const stationNetwork = \"rentalNetwork\" in entity && (coreUtils.itinerary.getCompaniesLabelFromNetworks(entity?.rentalNetwork.networkId, configCompanies) || entity?.rentalNetwork.networkId);\n\n const vehiclesAvailable = \"availableVehicles\" in entity;\n const entityIsStationHub = vehiclesAvailable && entity?.availableVehicles !== undefined;\n const stopId = entityIsStop(entity) ? entity.code : \"\";\n const id = `focus-${encodeURIComponent(entity.id).replace(/%/g, \"\")}-popup`\n\n return (\n <Styled.MapOverlayPopup>\n <FocusTrapWrapper closePopup={closePopup} id={id}>\n <Styled.PopupTitle>\n {getEntityPrefix && getEntityPrefix(entity)}\n <FormattedMessage\n defaultMessage={defaultMessages[\"otpUi.MapPopup.popupTitle\"]}\n description=\"Text for title of the popup, contains an optional company name\"\n id=\"otpUi.MapPopup.popupTitle\"\n values={{ name: titleName, stationNetwork }}\n />\n </Styled.PopupTitle>\n {/* render dock info if it is available */}\n {entityIsStationHub && <StationHubDetails availableSpaces={entity.availableSpaces?.total} availableVehicles={entity.availableVehicles?.total} />}\n\n {/* render stop viewer link if available */}\n {setViewedStop && entityIsStop(entity) && (\n <StopDetails\n id={stopId}\n feedName={feedName}\n setViewedStop={useCallback(() => setViewedStop(entity as Stop), [entity])}\n />\n )}\n\n {/* The \"Set as [from/to]\" ButtonGroup */}\n {setLocation && (\n <Styled.PopupRow>\n <FromToLocationPicker\n label\n location={generateLocation(entity, name)}\n setLocation={setLocation}\n />\n </Styled.PopupRow>\n )}\n </FocusTrapWrapper>\n \n </Styled.MapOverlayPopup>\n );\n}\n\nexport default MapPopup;\nexport { type StopIdAgencyMap };"],"mappings":"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","ignoreList":[]}
|
package/esm/util.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import coreUtils from "@opentripplanner/core-utils";
|
|
2
2
|
export function getNetwork(entity, configCompanies) {
|
|
3
|
-
return "
|
|
3
|
+
return "rentalNetwork" in entity && (coreUtils.itinerary.getCompaniesLabelFromNetworks(entity.rentalNetwork.networkId, configCompanies) || entity.rentalNetwork.networkId);
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
// eslint-disable-next-line import/prefer-default-export
|
|
7
7
|
export function makeDefaultGetEntityName(intl, defaultEnglishMessages) {
|
|
8
8
|
return function defaultGetEntityName(entity, configCompanies, feedName) {
|
|
9
|
+
var _entity$vehicleType, _entity$vehicleType2, _entity$vehicleType3;
|
|
9
10
|
var includeParenthetical = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
|
|
10
11
|
var stationName = entity.name || entity.id;
|
|
11
12
|
// If the station name or id is a giant UUID (with more than 3 "-" characters)
|
|
@@ -14,7 +15,7 @@ export function makeDefaultGetEntityName(intl, defaultEnglishMessages) {
|
|
|
14
15
|
if ((stationName.match(/-/g) || []).length > 3 || stationName === "Default vehicle type") {
|
|
15
16
|
stationName = null;
|
|
16
17
|
}
|
|
17
|
-
if ("
|
|
18
|
+
if ("vehicleType" in entity && !("availableVehicles" in entity) && ((_entity$vehicleType = entity.vehicleType) === null || _entity$vehicleType === void 0 ? void 0 : _entity$vehicleType.formFactor) === "BICYCLE") {
|
|
18
19
|
stationName = intl.formatMessage({
|
|
19
20
|
defaultMessage: defaultEnglishMessages["otpUi.MapPopup.floatingBike"],
|
|
20
21
|
description: "Popup title for a free-floating bike",
|
|
@@ -22,20 +23,19 @@ export function makeDefaultGetEntityName(intl, defaultEnglishMessages) {
|
|
|
22
23
|
}, {
|
|
23
24
|
name: stationName
|
|
24
25
|
});
|
|
25
|
-
} else if ("
|
|
26
|
+
} else if ("vehicleType" in entity && ((_entity$vehicleType2 = entity.vehicleType) === null || _entity$vehicleType2 === void 0 ? void 0 : _entity$vehicleType2.formFactor) === "CAR") {
|
|
26
27
|
// TODO: Stop generating this / passing it to the car string? Is it needed?
|
|
27
28
|
// In English we say "Car: " instead
|
|
28
|
-
var
|
|
29
|
+
var network = getNetwork(entity, configCompanies);
|
|
29
30
|
stationName = intl.formatMessage({
|
|
30
31
|
defaultMessage: defaultEnglishMessages["otpUi.MapPopup.floatingCar"],
|
|
31
32
|
description: "Popup title for a free-floating car",
|
|
32
33
|
id: "otpUi.MapPopup.floatingCar"
|
|
33
34
|
}, {
|
|
34
|
-
company:
|
|
35
|
+
company: network,
|
|
35
36
|
name: stationName
|
|
36
37
|
});
|
|
37
|
-
} else if ("
|
|
38
|
-
// assumes that all floating vehicles are E-scooters
|
|
38
|
+
} else if ("vehicleType" in entity && !("availableVehicles" in entity) && (_entity$vehicleType3 = entity.vehicleType) !== null && _entity$vehicleType3 !== void 0 && _entity$vehicleType3.formFactor.startsWith("SCOOTER")) {
|
|
39
39
|
stationName = intl.formatMessage({
|
|
40
40
|
defaultMessage: defaultEnglishMessages["otpUi.MapPopup.floatingEScooter"],
|
|
41
41
|
description: "Popup title for a free-floating e-scooter",
|
package/esm/util.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"util.js","names":["coreUtils","getNetwork","entity","configCompanies","itinerary","getCompaniesLabelFromNetworks","
|
|
1
|
+
{"version":3,"file":"util.js","names":["coreUtils","getNetwork","entity","configCompanies","itinerary","getCompaniesLabelFromNetworks","rentalNetwork","networkId","makeDefaultGetEntityName","intl","defaultEnglishMessages","defaultGetEntityName","feedName","_entity$vehicleType","_entity$vehicleType2","_entity$vehicleType3","includeParenthetical","arguments","length","undefined","stationName","name","id","match","vehicleType","formFactor","formatMessage","defaultMessage","description","network","company","startsWith","concat","code"],"sources":["../src/util.ts"],"sourcesContent":["import {\n RentalVehicle,\n VehicleRentalStation\n} from \"@opentripplanner/types/otp2\";\nimport { Agency, Company, Stop } from \"@opentripplanner/types\";\nimport { IntlShape } from \"react-intl\";\nimport coreUtils from \"@opentripplanner/core-utils\";\n\nexport type StopIdAgencyMap = Record<string, Agency>;\nexport type Entity = VehicleRentalStation | Stop | RentalVehicle;\n\nexport function getNetwork(entity: Entity, configCompanies: Company[]): string {\n return (\n \"rentalNetwork\" in entity &&\n (coreUtils.itinerary.getCompaniesLabelFromNetworks(\n entity.rentalNetwork.networkId,\n configCompanies\n ) ||\n entity.rentalNetwork.networkId)\n );\n}\n\n// eslint-disable-next-line import/prefer-default-export\nexport function makeDefaultGetEntityName(\n intl: IntlShape,\n defaultEnglishMessages: { [key: string]: string }\n) {\n return function defaultGetEntityName(\n entity: Entity,\n configCompanies: Company[],\n feedName?: string,\n includeParenthetical = true\n ): string | null {\n let stationName: string | null = entity.name || entity.id;\n // If the station name or id is a giant UUID (with more than 3 \"-\" characters)\n // best not to show that at all. The company name will still be shown.\n // Also ignore \"Default Vehicle Type\"\n if (\n (stationName.match(/-/g) || []).length > 3 ||\n stationName === \"Default vehicle type\"\n ) {\n stationName = null;\n }\n\n if (\n \"vehicleType\" in entity &&\n !(\"availableVehicles\" in entity) &&\n entity.vehicleType?.formFactor === \"BICYCLE\"\n ) {\n stationName = intl.formatMessage(\n {\n defaultMessage: defaultEnglishMessages[\"otpUi.MapPopup.floatingBike\"],\n description: \"Popup title for a free-floating bike\",\n id: \"otpUi.MapPopup.floatingBike\"\n },\n { name: stationName }\n );\n } else if (\n \"vehicleType\" in entity &&\n entity.vehicleType?.formFactor === \"CAR\"\n ) {\n // TODO: Stop generating this / passing it to the car string? Is it needed?\n // In English we say \"Car: \" instead\n const network = getNetwork(entity, configCompanies);\n stationName = intl.formatMessage(\n {\n defaultMessage: defaultEnglishMessages[\"otpUi.MapPopup.floatingCar\"],\n description: \"Popup title for a free-floating car\",\n id: \"otpUi.MapPopup.floatingCar\"\n },\n {\n company: network,\n name: stationName\n }\n );\n } else if (\n \"vehicleType\" in entity &&\n !(\"availableVehicles\" in entity) &&\n entity.vehicleType?.formFactor.startsWith(\"SCOOTER\")\n ) {\n stationName = intl.formatMessage(\n {\n defaultMessage:\n defaultEnglishMessages[\"otpUi.MapPopup.floatingEScooter\"],\n description: \"Popup title for a free-floating e-scooter\",\n id: \"otpUi.MapPopup.floatingEScooter\"\n },\n { name: stationName }\n );\n } else if (includeParenthetical && feedName && \"code\" in entity) {\n stationName = `${stationName} (${feedName} ${entity.code})`;\n }\n return stationName;\n };\n}\n"],"mappings":"AAMA,OAAOA,SAAS,MAAM,6BAA6B;AAKnD,OAAO,SAASC,UAAUA,CAACC,MAAc,EAAEC,eAA0B,EAAU;EAC7E,OACE,eAAe,IAAID,MAAM,KACxBF,SAAS,CAACI,SAAS,CAACC,6BAA6B,CAChDH,MAAM,CAACI,aAAa,CAACC,SAAS,EAC9BJ,eACF,CAAC,IACCD,MAAM,CAACI,aAAa,CAACC,SAAS,CAAC;AAErC;;AAEA;AACA,OAAO,SAASC,wBAAwBA,CACtCC,IAAe,EACfC,sBAAiD,EACjD;EACA,OAAO,SAASC,oBAAoBA,CAClCT,MAAc,EACdC,eAA0B,EAC1BS,QAAiB,EAEF;IAAA,IAAAC,mBAAA,EAAAC,oBAAA,EAAAC,oBAAA;IAAA,IADfC,oBAAoB,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,IAAI;IAE3B,IAAIG,WAA0B,GAAGlB,MAAM,CAACmB,IAAI,IAAInB,MAAM,CAACoB,EAAE;IACzD;IACA;IACA;IACA,IACE,CAACF,WAAW,CAACG,KAAK,CAAC,IAAI,CAAC,IAAI,EAAE,EAAEL,MAAM,GAAG,CAAC,IAC1CE,WAAW,KAAK,sBAAsB,EACtC;MACAA,WAAW,GAAG,IAAI;IACpB;IAEA,IACE,aAAa,IAAIlB,MAAM,IACvB,EAAE,mBAAmB,IAAIA,MAAM,CAAC,IAChC,EAAAW,mBAAA,GAAAX,MAAM,CAACsB,WAAW,cAAAX,mBAAA,uBAAlBA,mBAAA,CAAoBY,UAAU,MAAK,SAAS,EAC5C;MACAL,WAAW,GAAGX,IAAI,CAACiB,aAAa,CAC9B;QACEC,cAAc,EAAEjB,sBAAsB,CAAC,6BAA6B,CAAC;QACrEkB,WAAW,EAAE,sCAAsC;QACnDN,EAAE,EAAE;MACN,CAAC,EACD;QAAED,IAAI,EAAED;MAAY,CACtB,CAAC;IACH,CAAC,MAAM,IACL,aAAa,IAAIlB,MAAM,IACvB,EAAAY,oBAAA,GAAAZ,MAAM,CAACsB,WAAW,cAAAV,oBAAA,uBAAlBA,oBAAA,CAAoBW,UAAU,MAAK,KAAK,EACxC;MACA;MACA;MACA,IAAMI,OAAO,GAAG5B,UAAU,CAACC,MAAM,EAAEC,eAAe,CAAC;MACnDiB,WAAW,GAAGX,IAAI,CAACiB,aAAa,CAC9B;QACEC,cAAc,EAAEjB,sBAAsB,CAAC,4BAA4B,CAAC;QACpEkB,WAAW,EAAE,qCAAqC;QAClDN,EAAE,EAAE;MACN,CAAC,EACD;QACEQ,OAAO,EAAED,OAAO;QAChBR,IAAI,EAAED;MACR,CACF,CAAC;IACH,CAAC,MAAM,IACL,aAAa,IAAIlB,MAAM,IACvB,EAAE,mBAAmB,IAAIA,MAAM,CAAC,KAAAa,oBAAA,GAChCb,MAAM,CAACsB,WAAW,cAAAT,oBAAA,eAAlBA,oBAAA,CAAoBU,UAAU,CAACM,UAAU,CAAC,SAAS,CAAC,EACpD;MACAX,WAAW,GAAGX,IAAI,CAACiB,aAAa,CAC9B;QACEC,cAAc,EACZjB,sBAAsB,CAAC,iCAAiC,CAAC;QAC3DkB,WAAW,EAAE,2CAA2C;QACxDN,EAAE,EAAE;MACN,CAAC,EACD;QAAED,IAAI,EAAED;MAAY,CACtB,CAAC;IACH,CAAC,MAAM,IAAIJ,oBAAoB,IAAIJ,QAAQ,IAAI,MAAM,IAAIV,MAAM,EAAE;MAC/DkB,WAAW,MAAAY,MAAA,CAAMZ,WAAW,QAAAY,MAAA,CAAKpB,QAAQ,OAAAoB,MAAA,CAAI9B,MAAM,CAAC+B,IAAI,MAAG;IAC7D;IACA,OAAOb,WAAW;EACpB,CAAC;AACH","ignoreList":[]}
|
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
2
|
+
import { RentalVehicle, VehicleRentalStation } from "@opentripplanner/types/otp2";
|
|
3
|
+
import type { Company, ConfiguredCompany, Location, Stop, StopEventHandler } from "@opentripplanner/types";
|
|
4
|
+
import { type StopIdAgencyMap } from "./util";
|
|
4
5
|
export declare const defaultMessages: {
|
|
5
6
|
[key: string]: string;
|
|
6
7
|
};
|
|
@@ -10,12 +11,13 @@ export type Feed = {
|
|
|
10
11
|
name: string;
|
|
11
12
|
};
|
|
12
13
|
};
|
|
14
|
+
type MapPopupEntity = Stop | VehicleRentalStation | RentalVehicle;
|
|
13
15
|
type Props = {
|
|
14
16
|
closePopup?: (arg?: boolean) => void;
|
|
15
17
|
configCompanies?: ConfiguredCompany[];
|
|
16
|
-
entity:
|
|
17
|
-
getEntityName?: (entity:
|
|
18
|
-
getEntityPrefix?: (entity:
|
|
18
|
+
entity: MapPopupEntity;
|
|
19
|
+
getEntityName?: (entity: MapPopupEntity, configCompanies: Company[], feedName?: string, includeParenthetical?: boolean) => string;
|
|
20
|
+
getEntityPrefix?: (entity: MapPopupEntity) => JSX.Element;
|
|
19
21
|
feeds?: Feed[];
|
|
20
22
|
setLocation?: ({ location, locationType }: {
|
|
21
23
|
location: Location;
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":";AAGA,OAAO,EAAE,aAAa,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAElF,OAAO,KAAK,EACV,OAAO,EACP,iBAAiB,EACjB,QAAQ,EACR,IAAI,EACJ,gBAAgB,EACjB,MAAM,wBAAwB,CAAC;AAQhC,OAAO,EAA4B,KAAK,eAAe,EAAE,MAAM,QAAQ,CAAC;AAUxE,eAAO,MAAM,eAAe,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAAoC,CAAC;AAE1F,MAAM,MAAM,IAAI,GAAG;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE;QACT,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;CACH,CAAC;AAmEF,KAAK,cAAc,GAAG,IAAI,GAAG,oBAAoB,GAAG,aAAa,CAAA;AAEjE,KAAK,KAAK,GAAG;IACX,UAAU,CAAC,EAAE,CAAC,GAAG,CAAC,EAAE,OAAO,KAAK,IAAI,CAAA;IACpC,eAAe,CAAC,EAAE,iBAAiB,EAAE,CAAC;IACtC,MAAM,EAAE,cAAc,CAAA;IACtB,aAAa,CAAC,EAAE,CAAC,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,EAAE,EAAE,QAAQ,CAAC,EAAE,MAAM,EAAE,oBAAoB,CAAC,EAAE,OAAO,KAAK,MAAM,CAAC;IAClI,eAAe,CAAC,EAAE,CAAC,MAAM,EAAE,cAAc,KAAK,GAAG,CAAC,OAAO,CAAA;IACzD,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;IACd,WAAW,CAAC,EAAE,CAAC,EAAE,QAAQ,EAAE,YAAY,EAAE,EAAE;QAAE,QAAQ,EAAE,QAAQ,CAAC;QAAC,YAAY,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;IACjG,aAAa,CAAC,EAAE,gBAAgB,CAAC;CAClC,CAAC;AAIF;;GAEG;AACH,wBAAgB,QAAQ,CAAC,EACvB,UAAqB,EACrB,eAAe,EACf,MAAM,EACN,aAAa,EACb,eAAe,EACf,WAAW,EACX,aAAa,EACb,KAAK,GACN,EAAE,KAAK,GAAG,GAAG,CAAC,OAAO,CA+DrB;AAED,eAAe,QAAQ,CAAC;AACxB,OAAO,EAAE,KAAK,eAAe,EAAE,CAAC"}
|
package/lib/index.js
CHANGED
|
@@ -33,6 +33,7 @@ const building_blocks_1 = require("@opentripplanner/building-blocks");
|
|
|
33
33
|
const flat_1 = require("flat");
|
|
34
34
|
const react_intl_1 = require("react-intl");
|
|
35
35
|
const base_map_1 = require("@opentripplanner/base-map");
|
|
36
|
+
const core_utils_1 = __importDefault(require("@opentripplanner/core-utils"));
|
|
36
37
|
const util_1 = require("./util");
|
|
37
38
|
const styled_1 = require("./styled");
|
|
38
39
|
// Load the default messages.
|
|
@@ -51,12 +52,12 @@ const generateLocation = (entity, name) => {
|
|
|
51
52
|
return null;
|
|
52
53
|
return { lat, lon, name };
|
|
53
54
|
};
|
|
54
|
-
const StationHubDetails = ({
|
|
55
|
+
const StationHubDetails = ({ availableVehicles, availableSpaces }) => {
|
|
55
56
|
return (react_1.default.createElement(base_map_1.Styled.PopupRow, null,
|
|
56
57
|
react_1.default.createElement("div", null,
|
|
57
|
-
react_1.default.createElement(react_intl_1.FormattedMessage, { defaultMessage: exports.defaultMessages["otpUi.MapPopup.availableBikes"], description: "Label text for the number of bikes available", id: "otpUi.MapPopup.availableBikes", values: { value:
|
|
58
|
+
react_1.default.createElement(react_intl_1.FormattedMessage, { defaultMessage: exports.defaultMessages["otpUi.MapPopup.availableBikes"], description: "Label text for the number of bikes available", id: "otpUi.MapPopup.availableBikes", values: { value: availableVehicles } })),
|
|
58
59
|
react_1.default.createElement("div", null,
|
|
59
|
-
react_1.default.createElement(react_intl_1.FormattedMessage, { defaultMessage: exports.defaultMessages["otpUi.MapPopup.availableDocks"], description: "Label text for the number of docks available", id: "otpUi.MapPopup.availableDocks", values: { value:
|
|
60
|
+
react_1.default.createElement(react_intl_1.FormattedMessage, { defaultMessage: exports.defaultMessages["otpUi.MapPopup.availableDocks"], description: "Label text for the number of docks available", id: "otpUi.MapPopup.availableDocks", values: { value: availableSpaces } }))));
|
|
60
61
|
};
|
|
61
62
|
const StopDetails = ({ id, feedName, setViewedStop }) => {
|
|
62
63
|
return (react_1.default.createElement(base_map_1.Styled.PopupRow, null,
|
|
@@ -69,14 +70,12 @@ const StopDetails = ({ id, feedName, setViewedStop }) => {
|
|
|
69
70
|
react_1.default.createElement(styled_1.ViewStopButton, { onClick: setViewedStop, stopId: id },
|
|
70
71
|
react_1.default.createElement(react_intl_1.FormattedMessage, { defaultMessage: exports.defaultMessages["otpUi.MapPopup.stopViewer"], description: "Text for link that opens the stop viewer", id: "otpUi.MapPopup.stopViewer" }))));
|
|
71
72
|
};
|
|
72
|
-
|
|
73
|
-
return "vehiclesAvailable" in entity;
|
|
74
|
-
}
|
|
73
|
+
const entityIsStop = (entity) => "gtfsId" in entity;
|
|
75
74
|
/**
|
|
76
75
|
* Renders a map popup for a stop, scooter, or shared bike
|
|
77
76
|
*/
|
|
78
77
|
function MapPopup({ closePopup = () => { }, configCompanies, entity, getEntityName, getEntityPrefix, setLocation, setViewedStop, feeds, }) {
|
|
79
|
-
var _a;
|
|
78
|
+
var _a, _b, _c;
|
|
80
79
|
const intl = (0, react_intl_1.useIntl)();
|
|
81
80
|
if (!entity)
|
|
82
81
|
return react_1.default.createElement(react_1.default.Fragment, null);
|
|
@@ -90,18 +89,18 @@ function MapPopup({ closePopup = () => { }, configCompanies, entity, getEntityNa
|
|
|
90
89
|
}
|
|
91
90
|
const name = getNameFunc(entity, configCompanies, feedName);
|
|
92
91
|
const titleName = getNameFunc(entity, configCompanies, feedName, false);
|
|
93
|
-
const stationNetwork = (0,
|
|
94
|
-
const
|
|
95
|
-
const entityIsStationHub =
|
|
96
|
-
const stopId =
|
|
92
|
+
const stationNetwork = "rentalNetwork" in entity && (core_utils_1.default.itinerary.getCompaniesLabelFromNetworks(entity === null || entity === void 0 ? void 0 : entity.rentalNetwork.networkId, configCompanies) || (entity === null || entity === void 0 ? void 0 : entity.rentalNetwork.networkId));
|
|
93
|
+
const vehiclesAvailable = "availableVehicles" in entity;
|
|
94
|
+
const entityIsStationHub = vehiclesAvailable && (entity === null || entity === void 0 ? void 0 : entity.availableVehicles) !== undefined;
|
|
95
|
+
const stopId = entityIsStop(entity) ? entity.code : "";
|
|
97
96
|
const id = `focus-${encodeURIComponent(entity.id).replace(/%/g, "")}-popup`;
|
|
98
97
|
return (react_1.default.createElement(base_map_1.Styled.MapOverlayPopup, null,
|
|
99
98
|
react_1.default.createElement(building_blocks_1.FocusTrapWrapper, { closePopup: closePopup, id: id },
|
|
100
99
|
react_1.default.createElement(base_map_1.Styled.PopupTitle, null,
|
|
101
100
|
getEntityPrefix && getEntityPrefix(entity),
|
|
102
101
|
react_1.default.createElement(react_intl_1.FormattedMessage, { defaultMessage: exports.defaultMessages["otpUi.MapPopup.popupTitle"], description: "Text for title of the popup, contains an optional company name", id: "otpUi.MapPopup.popupTitle", values: { name: titleName, stationNetwork } })),
|
|
103
|
-
entityIsStationHub && react_1.default.createElement(StationHubDetails, {
|
|
104
|
-
setViewedStop &&
|
|
102
|
+
entityIsStationHub && react_1.default.createElement(StationHubDetails, { availableSpaces: (_b = entity.availableSpaces) === null || _b === void 0 ? void 0 : _b.total, availableVehicles: (_c = entity.availableVehicles) === null || _c === void 0 ? void 0 : _c.total }),
|
|
103
|
+
setViewedStop && entityIsStop(entity) && (react_1.default.createElement(StopDetails, { id: stopId, feedName: feedName, setViewedStop: (0, react_1.useCallback)(() => setViewedStop(entity), [entity]) })),
|
|
105
104
|
setLocation && (react_1.default.createElement(base_map_1.Styled.PopupRow, null,
|
|
106
105
|
react_1.default.createElement(from_to_location_picker_1.default, { label: true, location: generateLocation(entity, name), setLocation: setLocation }))))));
|
|
107
106
|
}
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA2C;AAC3C,uGAA4E;AAY5E,sEAAoE;AACpE,+BAA+B;AAC/B,2CAAuD;AACvD,wDAAmD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA2C;AAC3C,uGAA4E;AAY5E,sEAAoE;AACpE,+BAA+B;AAC/B,2CAAuD;AACvD,wDAAmD;AACnD,6EAAoD;AAEpD,iCAAwE;AACxE,qCAA0C;AAE1C,6BAA6B;AAC7B,kEAAuD;AAEvD,4DAA4D;AAC5D,+EAA+E;AAC/E,yDAAyD;AACzD,kEAAkE;AACrD,QAAA,eAAe,GAA8B,IAAA,cAAO,EAAC,mBAAsB,CAAC,CAAC;AAU1F,MAAM,gBAAgB,GAAG,CAAC,MAAsB,EAAE,IAAY,EAAE,EAAE;IAChE,mEAAmE;IACnE,MAAM,EAAE,GAAG,EAAE,SAAS,EAAE,GAAG,EAAE,SAAS,EAAE,CAAC,EAAE,CAAC,EAAE,GAAG,MAAM,CAAA;IAEvD,MAAM,GAAG,GAAG,SAAS,IAAI,CAAC,CAAA;IAC1B,MAAM,GAAG,GAAG,SAAS,IAAI,CAAC,CAAA;IAC1B,IAAI,CAAC,GAAG,IAAI,CAAC,GAAG;QAAE,OAAO,IAAI,CAAA;IAE7B,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC;AAC5B,CAAC,CAAA;AAED,MAAM,iBAAiB,GAAG,CAAC,EAAE,iBAAiB,EAAE,eAAe,EAA0D,EAAE,EAAE;IAC3H,OAAO,CACL,8BAAC,iBAAM,CAAC,QAAQ;QACd;YACE,8BAAC,6BAAgB,IACf,cAAc,EACZ,uBAAe,CAAC,+BAA+B,CAAC,EAElD,WAAW,EAAC,8CAA8C,EAC1D,EAAE,EAAC,+BAA+B,EAClC,MAAM,EAAE,EAAE,KAAK,EAAE,iBAAiB,EAAE,GACpC,CACE;QACN;YACE,8BAAC,6BAAgB,IACf,cAAc,EACZ,uBAAe,CAAC,+BAA+B,CAAC,EAElD,WAAW,EAAC,8CAA8C,EAC1D,EAAE,EAAC,+BAA+B,EAClC,MAAM,EAAE,EAAE,KAAK,EAAE,eAAe,EAAE,GAClC,CACE,CACU,CACnB,CAAA;AACH,CAAC,CAAA;AAED,MAAM,WAAW,GAAG,CAAC,EAAE,EAAE,EAAE,QAAQ,EAAE,aAAa,EAAiE,EAAE,EAAE;IACrH,OAAO,CACL,8BAAC,iBAAM,CAAC,QAAQ;QACb,EAAE;YACD;gBACE,8BAAC,6BAAgB,IACf,cAAc,EAAE,uBAAe,CAAC,uBAAuB,CAAC,EACxD,WAAW,EAAC,sBAAsB,EAClC,EAAE,EAAC,uBAAuB,EAC1B,MAAM,EAAE;wBACN,QAAQ;wBACR,MAAM,EAAE,EAAE;qBACX,GACD,CACK;QACX,8BAAC,uBAAc,IAAC,OAAO,EAAE,aAAa,EAAE,MAAM,EAAE,EAAE;YAChD,8BAAC,6BAAgB,IACf,cAAc,EAAE,uBAAe,CAAC,2BAA2B,CAAC,EAC5D,WAAW,EAAC,0CAA0C,EACtD,EAAE,EAAC,2BAA2B,GAC9B,CACa,CACD,CACnB,CAAA;AACH,CAAC,CAAA;AAeD,MAAM,YAAY,GAAG,CAAC,MAAsB,EAAkB,EAAE,CAAC,QAAQ,IAAI,MAAM,CAAC;AAEpF;;GAEG;AACH,SAAgB,QAAQ,CAAC,EACvB,UAAU,GAAG,GAAG,EAAE,GAAE,CAAC,EACrB,eAAe,EACf,MAAM,EACN,aAAa,EACb,eAAe,EACf,WAAW,EACX,aAAa,EACb,KAAK,GACC;;IAEN,MAAM,IAAI,GAAG,IAAA,oBAAO,GAAE,CAAA;IACtB,IAAI,CAAC,MAAM;QAAE,OAAO,6DAAK,CAAA;IAEzB,MAAM,WAAW,GAAG,aAAa,IAAI,IAAA,+BAAwB,EAAC,IAAI,EAAE,uBAAe,CAAC,CAAC;IAErF,kEAAkE;IAClE,IAAI,QAA4B,CAAC;IACjC,IAAI,KAAK,IAAI,MAAM,CAAC,EAAE,EAAE;QACtB,MAAM,MAAM,GAAG,MAAM,CAAC,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;QACvC,MAAM,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,MAAM,KAAK,MAAM,CAAC,CAAC;QAClD,QAAQ,GAAG,MAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,SAAS,0CAAE,IAAI,CAAC;KAClC;IAED,MAAM,IAAI,GAAG,WAAW,CAAC,MAAM,EAAE,eAAe,EAAE,QAAQ,CAAC,CAAC;IAC5D,MAAM,SAAS,GAAG,WAAW,CAAC,MAAM,EAAE,eAAe,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAExE,MAAM,cAAc,GAAG,eAAe,IAAI,MAAM,IAAI,CAAC,oBAAS,CAAC,SAAS,CAAC,6BAA6B,CAAC,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,aAAa,CAAC,SAAS,EAAE,eAAe,CAAC,KAAI,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,aAAa,CAAC,SAAS,CAAA,CAAC,CAAC;IAE7L,MAAM,iBAAiB,GAAG,mBAAmB,IAAI,MAAM,CAAC;IACxD,MAAM,kBAAkB,GAAG,iBAAiB,IAAI,CAAA,MAAM,aAAN,MAAM,uBAAN,MAAM,CAAE,iBAAiB,MAAK,SAAS,CAAC;IACxF,MAAM,MAAM,GAAG,YAAY,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC;IACvD,MAAM,EAAE,GAAG,SAAS,kBAAkB,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,QAAQ,CAAA;IAE3E,OAAO,CACL,8BAAC,iBAAM,CAAC,eAAe;QACrB,8BAAC,kCAAgB,IAAC,UAAU,EAAE,UAAU,EAAE,EAAE,EAAE,EAAE;YAChD,8BAAC,iBAAM,CAAC,UAAU;gBACf,eAAe,IAAI,eAAe,CAAC,MAAM,CAAC;gBAC3C,8BAAC,6BAAgB,IACf,cAAc,EAAE,uBAAe,CAAC,2BAA2B,CAAC,EAC5D,WAAW,EAAC,gEAAgE,EAC5E,EAAE,EAAC,2BAA2B,EAC9B,MAAM,EAAE,EAAE,IAAI,EAAE,SAAS,EAAE,cAAc,EAAE,GAC3C,CACgB;YAEnB,kBAAkB,IAAI,8BAAC,iBAAiB,IAAC,eAAe,EAAE,MAAA,MAAM,CAAC,eAAe,0CAAE,KAAK,EAAE,iBAAiB,EAAE,MAAA,MAAM,CAAC,iBAAiB,0CAAE,KAAK,GAAI;YAG/I,aAAa,IAAI,YAAY,CAAC,MAAM,CAAC,IAAI,CACxC,8BAAC,WAAW,IACV,EAAE,EAAE,MAAM,EACV,QAAQ,EAAE,QAAQ,EAClB,aAAa,EAAE,IAAA,mBAAW,EAAC,GAAG,EAAE,CAAC,aAAa,CAAC,MAAc,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,GACzE,CACH;YAGA,WAAW,IAAI,CACd,8BAAC,iBAAM,CAAC,QAAQ;gBACd,8BAAC,iCAAoB,IACnB,KAAK,QACL,QAAQ,EAAE,gBAAgB,CAAC,MAAM,EAAE,IAAI,CAAC,EACxC,WAAW,EAAE,WAAW,GACxB,CACc,CACnB,CACkB,CAEI,CAC1B,CAAC;AACJ,CAAC;AAxED,4BAwEC;AAED,kBAAe,QAAQ,CAAC"}
|
package/lib/util.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RentalVehicle, VehicleRentalStation } from "@opentripplanner/types/otp2";
|
|
2
|
+
import { Agency, Company, Stop } from "@opentripplanner/types";
|
|
2
3
|
import { IntlShape } from "react-intl";
|
|
3
4
|
export type StopIdAgencyMap = Record<string, Agency>;
|
|
4
|
-
export type Entity =
|
|
5
|
+
export type Entity = VehicleRentalStation | Stop | RentalVehicle;
|
|
5
6
|
export declare function getNetwork(entity: Entity, configCompanies: Company[]): string;
|
|
6
7
|
export declare function makeDefaultGetEntityName(intl: IntlShape, defaultEnglishMessages: {
|
|
7
8
|
[key: string]: string;
|
package/lib/util.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,MAAM,
|
|
1
|
+
{"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,oBAAoB,EACrB,MAAM,6BAA6B,CAAC;AACrC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC/D,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAGvC,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AACrD,MAAM,MAAM,MAAM,GAAG,oBAAoB,GAAG,IAAI,GAAG,aAAa,CAAC;AAEjE,wBAAgB,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,eAAe,EAAE,OAAO,EAAE,GAAG,MAAM,CAS7E;AAGD,wBAAgB,wBAAwB,CACtC,IAAI,EAAE,SAAS,EACf,sBAAsB,EAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CAAE,YAGvC,MAAM,mBACG,OAAO,EAAE,aACf,MAAM,qCAEhB,MAAM,GAAG,IAAI,CA8DjB"}
|
package/lib/util.js
CHANGED
|
@@ -6,14 +6,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.makeDefaultGetEntityName = exports.getNetwork = void 0;
|
|
7
7
|
const core_utils_1 = __importDefault(require("@opentripplanner/core-utils"));
|
|
8
8
|
function getNetwork(entity, configCompanies) {
|
|
9
|
-
return ("
|
|
10
|
-
(core_utils_1.default.itinerary.getCompaniesLabelFromNetworks(
|
|
11
|
-
entity.
|
|
9
|
+
return ("rentalNetwork" in entity &&
|
|
10
|
+
(core_utils_1.default.itinerary.getCompaniesLabelFromNetworks(entity.rentalNetwork.networkId, configCompanies) ||
|
|
11
|
+
entity.rentalNetwork.networkId));
|
|
12
12
|
}
|
|
13
13
|
exports.getNetwork = getNetwork;
|
|
14
14
|
// eslint-disable-next-line import/prefer-default-export
|
|
15
15
|
function makeDefaultGetEntityName(intl, defaultEnglishMessages) {
|
|
16
16
|
return function defaultGetEntityName(entity, configCompanies, feedName, includeParenthetical = true) {
|
|
17
|
+
var _a, _b, _c;
|
|
17
18
|
let stationName = entity.name || entity.id;
|
|
18
19
|
// If the station name or id is a giant UUID (with more than 3 "-" characters)
|
|
19
20
|
// best not to show that at all. The company name will still be shown.
|
|
@@ -22,28 +23,32 @@ function makeDefaultGetEntityName(intl, defaultEnglishMessages) {
|
|
|
22
23
|
stationName === "Default vehicle type") {
|
|
23
24
|
stationName = null;
|
|
24
25
|
}
|
|
25
|
-
if ("
|
|
26
|
+
if ("vehicleType" in entity &&
|
|
27
|
+
!("availableVehicles" in entity) &&
|
|
28
|
+
((_a = entity.vehicleType) === null || _a === void 0 ? void 0 : _a.formFactor) === "BICYCLE") {
|
|
26
29
|
stationName = intl.formatMessage({
|
|
27
30
|
defaultMessage: defaultEnglishMessages["otpUi.MapPopup.floatingBike"],
|
|
28
31
|
description: "Popup title for a free-floating bike",
|
|
29
32
|
id: "otpUi.MapPopup.floatingBike"
|
|
30
33
|
}, { name: stationName });
|
|
31
34
|
}
|
|
32
|
-
else if ("
|
|
35
|
+
else if ("vehicleType" in entity &&
|
|
36
|
+
((_b = entity.vehicleType) === null || _b === void 0 ? void 0 : _b.formFactor) === "CAR") {
|
|
33
37
|
// TODO: Stop generating this / passing it to the car string? Is it needed?
|
|
34
38
|
// In English we say "Car: " instead
|
|
35
|
-
const
|
|
39
|
+
const network = getNetwork(entity, configCompanies);
|
|
36
40
|
stationName = intl.formatMessage({
|
|
37
41
|
defaultMessage: defaultEnglishMessages["otpUi.MapPopup.floatingCar"],
|
|
38
42
|
description: "Popup title for a free-floating car",
|
|
39
43
|
id: "otpUi.MapPopup.floatingCar"
|
|
40
44
|
}, {
|
|
41
|
-
company:
|
|
45
|
+
company: network,
|
|
42
46
|
name: stationName
|
|
43
47
|
});
|
|
44
48
|
}
|
|
45
|
-
else if ("
|
|
46
|
-
|
|
49
|
+
else if ("vehicleType" in entity &&
|
|
50
|
+
!("availableVehicles" in entity) &&
|
|
51
|
+
((_c = entity.vehicleType) === null || _c === void 0 ? void 0 : _c.formFactor.startsWith("SCOOTER"))) {
|
|
47
52
|
stationName = intl.formatMessage({
|
|
48
53
|
defaultMessage: defaultEnglishMessages["otpUi.MapPopup.floatingEScooter"],
|
|
49
54
|
description: "Popup title for a free-floating e-scooter",
|
package/lib/util.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"util.js","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"file":"util.js","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":";;;;;;AAMA,6EAAoD;AAKpD,SAAgB,UAAU,CAAC,MAAc,EAAE,eAA0B;IACnE,OAAO,CACL,eAAe,IAAI,MAAM;QACzB,CAAC,oBAAS,CAAC,SAAS,CAAC,6BAA6B,CAChD,MAAM,CAAC,aAAa,CAAC,SAAS,EAC9B,eAAe,CAChB;YACC,MAAM,CAAC,aAAa,CAAC,SAAS,CAAC,CAClC,CAAC;AACJ,CAAC;AATD,gCASC;AAED,wDAAwD;AACxD,SAAgB,wBAAwB,CACtC,IAAe,EACf,sBAAiD;IAEjD,OAAO,SAAS,oBAAoB,CAClC,MAAc,EACd,eAA0B,EAC1B,QAAiB,EACjB,oBAAoB,GAAG,IAAI;;QAE3B,IAAI,WAAW,GAAkB,MAAM,CAAC,IAAI,IAAI,MAAM,CAAC,EAAE,CAAC;QAC1D,8EAA8E;QAC9E,sEAAsE;QACtE,qCAAqC;QACrC,IACE,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,GAAG,CAAC;YAC1C,WAAW,KAAK,sBAAsB,EACtC;YACA,WAAW,GAAG,IAAI,CAAC;SACpB;QAED,IACE,aAAa,IAAI,MAAM;YACvB,CAAC,CAAC,mBAAmB,IAAI,MAAM,CAAC;YAChC,CAAA,MAAA,MAAM,CAAC,WAAW,0CAAE,UAAU,MAAK,SAAS,EAC5C;YACA,WAAW,GAAG,IAAI,CAAC,aAAa,CAC9B;gBACE,cAAc,EAAE,sBAAsB,CAAC,6BAA6B,CAAC;gBACrE,WAAW,EAAE,sCAAsC;gBACnD,EAAE,EAAE,6BAA6B;aAClC,EACD,EAAE,IAAI,EAAE,WAAW,EAAE,CACtB,CAAC;SACH;aAAM,IACL,aAAa,IAAI,MAAM;YACvB,CAAA,MAAA,MAAM,CAAC,WAAW,0CAAE,UAAU,MAAK,KAAK,EACxC;YACA,2EAA2E;YAC3E,oCAAoC;YACpC,MAAM,OAAO,GAAG,UAAU,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;YACpD,WAAW,GAAG,IAAI,CAAC,aAAa,CAC9B;gBACE,cAAc,EAAE,sBAAsB,CAAC,4BAA4B,CAAC;gBACpE,WAAW,EAAE,qCAAqC;gBAClD,EAAE,EAAE,4BAA4B;aACjC,EACD;gBACE,OAAO,EAAE,OAAO;gBAChB,IAAI,EAAE,WAAW;aAClB,CACF,CAAC;SACH;aAAM,IACL,aAAa,IAAI,MAAM;YACvB,CAAC,CAAC,mBAAmB,IAAI,MAAM,CAAC;aAChC,MAAA,MAAM,CAAC,WAAW,0CAAE,UAAU,CAAC,UAAU,CAAC,SAAS,CAAC,CAAA,EACpD;YACA,WAAW,GAAG,IAAI,CAAC,aAAa,CAC9B;gBACE,cAAc,EACZ,sBAAsB,CAAC,iCAAiC,CAAC;gBAC3D,WAAW,EAAE,2CAA2C;gBACxD,EAAE,EAAE,iCAAiC;aACtC,EACD,EAAE,IAAI,EAAE,WAAW,EAAE,CACtB,CAAC;SACH;aAAM,IAAI,oBAAoB,IAAI,QAAQ,IAAI,MAAM,IAAI,MAAM,EAAE;YAC/D,WAAW,GAAG,GAAG,WAAW,KAAK,QAAQ,IAAI,MAAM,CAAC,IAAI,GAAG,CAAC;SAC7D;QACD,OAAO,WAAW,CAAC;IACrB,CAAC,CAAC;AACJ,CAAC;AAvED,4DAuEC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentripplanner/map-popup",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "A component for displaying map popup contents",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -12,13 +12,13 @@
|
|
|
12
12
|
"private": false,
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"flat": "^5.0.2",
|
|
15
|
-
"@opentripplanner/
|
|
15
|
+
"@opentripplanner/core-utils": "14.2.0",
|
|
16
16
|
"@opentripplanner/base-map": "6.0.0",
|
|
17
|
-
"@opentripplanner/
|
|
17
|
+
"@opentripplanner/building-blocks": "3.0.1",
|
|
18
18
|
"@opentripplanner/from-to-location-picker": "4.0.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@opentripplanner/types": "8.
|
|
21
|
+
"@opentripplanner/types": "8.2.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"react": "^18.2.0",
|
package/src/MapPopup.story.tsx
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { action } from "storybook/actions";
|
|
3
3
|
import styled from "styled-components";
|
|
4
|
-
import {
|
|
4
|
+
import { Stop } from "@opentripplanner/types";
|
|
5
|
+
import {
|
|
6
|
+
RentalVehicle,
|
|
7
|
+
VehicleRentalStation
|
|
8
|
+
} from "@opentripplanner/types/otp2";
|
|
5
9
|
import { IntlProvider } from "react-intl";
|
|
6
10
|
import { Meta } from "@storybook/react-vite";
|
|
7
11
|
import MapPopupContents, { Feed } from "./index";
|
|
@@ -68,57 +72,46 @@ const SAMPLE_FEEDS: Feed[] = [
|
|
|
68
72
|
}
|
|
69
73
|
];
|
|
70
74
|
|
|
71
|
-
const
|
|
72
|
-
"stroke-width": 2,
|
|
75
|
+
const VEHICLE_RENTAL_STATION: VehicleRentalStation = {
|
|
73
76
|
allowDropoff: true,
|
|
74
77
|
allowPickup: true,
|
|
75
|
-
|
|
78
|
+
availableVehicles: {
|
|
79
|
+
total: 6,
|
|
80
|
+
byType: [{ count: 6, vehicleType: { formFactor: "BICYCLE" } }]
|
|
81
|
+
},
|
|
82
|
+
availableSpaces: {
|
|
83
|
+
total: 11,
|
|
84
|
+
byType: [{ count: 12, vehicleType: { formFactor: "BICYCLE" } }]
|
|
85
|
+
},
|
|
76
86
|
id: '"hub_1580"',
|
|
77
|
-
isCarStation: false,
|
|
78
|
-
isFloatingBike: false,
|
|
79
87
|
lat: 45.5219604810172,
|
|
80
88
|
lon: -122.6896771788597,
|
|
81
89
|
name: "SW Morrison at 18th",
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
spacesAvailable: 11,
|
|
85
|
-
vehiclesAvailable: 6
|
|
90
|
+
rentalNetwork: { networkId: "BIKETOWN" },
|
|
91
|
+
realtime: true
|
|
86
92
|
};
|
|
87
93
|
|
|
88
|
-
const FLOATING_VEHICLE = {
|
|
89
|
-
|
|
90
|
-
allowDropoff: false,
|
|
91
|
-
allowPickup: true,
|
|
92
|
-
color: "#f00",
|
|
94
|
+
const FLOATING_VEHICLE: RentalVehicle = {
|
|
95
|
+
allowPickupNow: true,
|
|
93
96
|
id: '"bike_6861"',
|
|
94
|
-
|
|
95
|
-
isFloatingBike: true,
|
|
97
|
+
vehicleType: { formFactor: "BICYCLE" },
|
|
96
98
|
lat: 45.525486666666666,
|
|
97
99
|
lon: -122.70486,
|
|
98
100
|
name: "0541",
|
|
99
|
-
|
|
100
|
-
realTimeData: true,
|
|
101
|
-
spacesAvailable: 0,
|
|
102
|
-
vehiclesAvailable: 1
|
|
101
|
+
rentalNetwork: { networkId: "BIKETOWN" }
|
|
103
102
|
};
|
|
104
103
|
|
|
105
|
-
const FLOATING_CAR = {
|
|
106
|
-
|
|
107
|
-
allowDropoff: false,
|
|
108
|
-
allowPickup: true,
|
|
109
|
-
color: "#333",
|
|
104
|
+
const FLOATING_CAR: RentalVehicle = {
|
|
105
|
+
allowPickupNow: true,
|
|
110
106
|
id: "car_6861",
|
|
111
|
-
|
|
112
|
-
isFloatingCar: true,
|
|
107
|
+
vehicleType: { formFactor: "CAR" },
|
|
113
108
|
lat: 52.52,
|
|
114
109
|
lon: 13.405,
|
|
115
110
|
name: "0541",
|
|
116
|
-
|
|
117
|
-
realTimeData: true,
|
|
118
|
-
spacesAvailable: 0
|
|
111
|
+
rentalNetwork: { networkId: "MILES" }
|
|
119
112
|
};
|
|
120
113
|
|
|
121
|
-
const getEntityPrefixExample = (entity: Stop |
|
|
114
|
+
const getEntityPrefixExample = (entity: Stop | VehicleRentalStation) => {
|
|
122
115
|
const DemoIcon = styled.span`
|
|
123
116
|
background-color: blue;
|
|
124
117
|
border-radius: 50px;
|
|
@@ -171,7 +164,7 @@ export const StopEntityNoStopCode = (): JSX.Element => (
|
|
|
171
164
|
|
|
172
165
|
export const StationEntity = (): JSX.Element => (
|
|
173
166
|
<MapPopupContents
|
|
174
|
-
entity={
|
|
167
|
+
entity={VEHICLE_RENTAL_STATION}
|
|
175
168
|
setLocation={action("setLocation")}
|
|
176
169
|
setViewedStop={action("setViewedStop")}
|
|
177
170
|
/>
|
|
@@ -265,7 +265,7 @@ exports[`Map Popup StopEntityNoStopCode smoke-test 1`] = `
|
|
|
265
265
|
W Burnside & SW 2nd
|
|
266
266
|
</header>
|
|
267
267
|
<p class="styled__PopupRow-sc-12kjso7-2 ckOOWr">
|
|
268
|
-
<button class="styled__ViewStopButton-sc-12v7ov3-0
|
|
268
|
+
<button class="styled__ViewStopButton-sc-12v7ov3-0 bbtcwi">
|
|
269
269
|
Stop Viewer
|
|
270
270
|
</button>
|
|
271
271
|
</p>
|
package/src/index.tsx
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React, { useCallback } from "react";
|
|
2
2
|
import FromToLocationPicker from "@opentripplanner/from-to-location-picker";
|
|
3
3
|
|
|
4
|
+
import { RentalVehicle, VehicleRentalStation } from "@opentripplanner/types/otp2";
|
|
4
5
|
// eslint-disable-next-line prettier/prettier
|
|
5
6
|
import type {
|
|
6
7
|
Company,
|
|
@@ -8,15 +9,15 @@ import type {
|
|
|
8
9
|
Location,
|
|
9
10
|
Stop,
|
|
10
11
|
StopEventHandler,
|
|
11
|
-
TileLayerStation
|
|
12
12
|
} from "@opentripplanner/types";
|
|
13
13
|
|
|
14
14
|
import { FocusTrapWrapper } from "@opentripplanner/building-blocks";
|
|
15
15
|
import { flatten } from "flat";
|
|
16
16
|
import { FormattedMessage, useIntl } from "react-intl";
|
|
17
17
|
import { Styled } from "@opentripplanner/base-map";
|
|
18
|
+
import coreUtils from "@opentripplanner/core-utils";
|
|
18
19
|
|
|
19
|
-
import {
|
|
20
|
+
import { makeDefaultGetEntityName, type StopIdAgencyMap } from "./util";
|
|
20
21
|
import { ViewStopButton } from "./styled";
|
|
21
22
|
|
|
22
23
|
// Load the default messages.
|
|
@@ -36,7 +37,7 @@ export type Feed = {
|
|
|
36
37
|
};
|
|
37
38
|
|
|
38
39
|
|
|
39
|
-
const generateLocation = (entity:
|
|
40
|
+
const generateLocation = (entity: MapPopupEntity, name: string) => {
|
|
40
41
|
// @ts-expect-error some of these values may be null, but that's ok
|
|
41
42
|
const { lon: entityLon, lat: entityLat, x, y } = entity
|
|
42
43
|
|
|
@@ -47,7 +48,7 @@ const generateLocation = (entity: Entity, name: string) => {
|
|
|
47
48
|
return { lat, lon, name };
|
|
48
49
|
}
|
|
49
50
|
|
|
50
|
-
const StationHubDetails = ({
|
|
51
|
+
const StationHubDetails = ({ availableVehicles, availableSpaces }: { availableVehicles: number, availableSpaces: number }) => {
|
|
51
52
|
return (
|
|
52
53
|
<Styled.PopupRow>
|
|
53
54
|
<div>
|
|
@@ -57,7 +58,7 @@ const StationHubDetails = ({ station }: { station: TileLayerStation }) => {
|
|
|
57
58
|
}
|
|
58
59
|
description="Label text for the number of bikes available"
|
|
59
60
|
id="otpUi.MapPopup.availableBikes"
|
|
60
|
-
values={{ value:
|
|
61
|
+
values={{ value: availableVehicles }}
|
|
61
62
|
/>
|
|
62
63
|
</div>
|
|
63
64
|
<div>
|
|
@@ -67,7 +68,7 @@ const StationHubDetails = ({ station }: { station: TileLayerStation }) => {
|
|
|
67
68
|
}
|
|
68
69
|
description="Label text for the number of docks available"
|
|
69
70
|
id="otpUi.MapPopup.availableDocks"
|
|
70
|
-
values={{ value:
|
|
71
|
+
values={{ value: availableSpaces }}
|
|
71
72
|
/>
|
|
72
73
|
</div>
|
|
73
74
|
</Styled.PopupRow>
|
|
@@ -100,20 +101,20 @@ const StopDetails = ({ id, feedName, setViewedStop }: { id: string, feedName?: s
|
|
|
100
101
|
)
|
|
101
102
|
}
|
|
102
103
|
|
|
104
|
+
type MapPopupEntity = Stop | VehicleRentalStation | RentalVehicle
|
|
105
|
+
|
|
103
106
|
type Props = {
|
|
104
107
|
closePopup?: (arg?: boolean) => void
|
|
105
108
|
configCompanies?: ConfiguredCompany[];
|
|
106
|
-
entity:
|
|
107
|
-
getEntityName?: (entity:
|
|
108
|
-
getEntityPrefix?: (entity:
|
|
109
|
+
entity: MapPopupEntity
|
|
110
|
+
getEntityName?: (entity: MapPopupEntity, configCompanies: Company[], feedName?: string, includeParenthetical?: boolean) => string;
|
|
111
|
+
getEntityPrefix?: (entity: MapPopupEntity) => JSX.Element
|
|
109
112
|
feeds?: Feed[]
|
|
110
113
|
setLocation?: ({ location, locationType }: { location: Location, locationType: string }) => void;
|
|
111
114
|
setViewedStop?: StopEventHandler;
|
|
112
115
|
};
|
|
113
116
|
|
|
114
|
-
|
|
115
|
-
return "vehiclesAvailable" in entity
|
|
116
|
-
}
|
|
117
|
+
const entityIsStop = (entity: MapPopupEntity): entity is Stop => "gtfsId" in entity;
|
|
117
118
|
|
|
118
119
|
/**
|
|
119
120
|
* Renders a map popup for a stop, scooter, or shared bike
|
|
@@ -145,11 +146,11 @@ export function MapPopup({
|
|
|
145
146
|
const name = getNameFunc(entity, configCompanies, feedName);
|
|
146
147
|
const titleName = getNameFunc(entity, configCompanies, feedName, false);
|
|
147
148
|
|
|
148
|
-
const stationNetwork =
|
|
149
|
+
const stationNetwork = "rentalNetwork" in entity && (coreUtils.itinerary.getCompaniesLabelFromNetworks(entity?.rentalNetwork.networkId, configCompanies) || entity?.rentalNetwork.networkId);
|
|
149
150
|
|
|
150
|
-
const
|
|
151
|
-
const entityIsStationHub =
|
|
152
|
-
const stopId =
|
|
151
|
+
const vehiclesAvailable = "availableVehicles" in entity;
|
|
152
|
+
const entityIsStationHub = vehiclesAvailable && entity?.availableVehicles !== undefined;
|
|
153
|
+
const stopId = entityIsStop(entity) ? entity.code : "";
|
|
153
154
|
const id = `focus-${encodeURIComponent(entity.id).replace(/%/g, "")}-popup`
|
|
154
155
|
|
|
155
156
|
return (
|
|
@@ -165,10 +166,10 @@ export function MapPopup({
|
|
|
165
166
|
/>
|
|
166
167
|
</Styled.PopupTitle>
|
|
167
168
|
{/* render dock info if it is available */}
|
|
168
|
-
{entityIsStationHub && <StationHubDetails
|
|
169
|
+
{entityIsStationHub && <StationHubDetails availableSpaces={entity.availableSpaces?.total} availableVehicles={entity.availableVehicles?.total} />}
|
|
169
170
|
|
|
170
171
|
{/* render stop viewer link if available */}
|
|
171
|
-
{setViewedStop &&
|
|
172
|
+
{setViewedStop && entityIsStop(entity) && (
|
|
172
173
|
<StopDetails
|
|
173
174
|
id={stopId}
|
|
174
175
|
feedName={feedName}
|
package/src/util.ts
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
TileLayerStation
|
|
7
|
-
} from "@opentripplanner/types";
|
|
2
|
+
RentalVehicle,
|
|
3
|
+
VehicleRentalStation
|
|
4
|
+
} from "@opentripplanner/types/otp2";
|
|
5
|
+
import { Agency, Company, Stop } from "@opentripplanner/types";
|
|
8
6
|
import { IntlShape } from "react-intl";
|
|
9
7
|
import coreUtils from "@opentripplanner/core-utils";
|
|
10
8
|
|
|
11
9
|
export type StopIdAgencyMap = Record<string, Agency>;
|
|
12
|
-
export type Entity =
|
|
10
|
+
export type Entity = VehicleRentalStation | Stop | RentalVehicle;
|
|
13
11
|
|
|
14
12
|
export function getNetwork(entity: Entity, configCompanies: Company[]): string {
|
|
15
13
|
return (
|
|
16
|
-
"
|
|
14
|
+
"rentalNetwork" in entity &&
|
|
17
15
|
(coreUtils.itinerary.getCompaniesLabelFromNetworks(
|
|
18
|
-
|
|
16
|
+
entity.rentalNetwork.networkId,
|
|
19
17
|
configCompanies
|
|
20
18
|
) ||
|
|
21
|
-
entity.
|
|
19
|
+
entity.rentalNetwork.networkId)
|
|
22
20
|
);
|
|
23
21
|
}
|
|
24
22
|
|
|
@@ -44,7 +42,11 @@ export function makeDefaultGetEntityName(
|
|
|
44
42
|
stationName = null;
|
|
45
43
|
}
|
|
46
44
|
|
|
47
|
-
if (
|
|
45
|
+
if (
|
|
46
|
+
"vehicleType" in entity &&
|
|
47
|
+
!("availableVehicles" in entity) &&
|
|
48
|
+
entity.vehicleType?.formFactor === "BICYCLE"
|
|
49
|
+
) {
|
|
48
50
|
stationName = intl.formatMessage(
|
|
49
51
|
{
|
|
50
52
|
defaultMessage: defaultEnglishMessages["otpUi.MapPopup.floatingBike"],
|
|
@@ -53,10 +55,13 @@ export function makeDefaultGetEntityName(
|
|
|
53
55
|
},
|
|
54
56
|
{ name: stationName }
|
|
55
57
|
);
|
|
56
|
-
} else if (
|
|
58
|
+
} else if (
|
|
59
|
+
"vehicleType" in entity &&
|
|
60
|
+
entity.vehicleType?.formFactor === "CAR"
|
|
61
|
+
) {
|
|
57
62
|
// TODO: Stop generating this / passing it to the car string? Is it needed?
|
|
58
63
|
// In English we say "Car: " instead
|
|
59
|
-
const
|
|
64
|
+
const network = getNetwork(entity, configCompanies);
|
|
60
65
|
stationName = intl.formatMessage(
|
|
61
66
|
{
|
|
62
67
|
defaultMessage: defaultEnglishMessages["otpUi.MapPopup.floatingCar"],
|
|
@@ -64,12 +69,15 @@ export function makeDefaultGetEntityName(
|
|
|
64
69
|
id: "otpUi.MapPopup.floatingCar"
|
|
65
70
|
},
|
|
66
71
|
{
|
|
67
|
-
company:
|
|
72
|
+
company: network,
|
|
68
73
|
name: stationName
|
|
69
74
|
}
|
|
70
75
|
);
|
|
71
|
-
} else if (
|
|
72
|
-
|
|
76
|
+
} else if (
|
|
77
|
+
"vehicleType" in entity &&
|
|
78
|
+
!("availableVehicles" in entity) &&
|
|
79
|
+
entity.vehicleType?.formFactor.startsWith("SCOOTER")
|
|
80
|
+
) {
|
|
73
81
|
stationName = intl.formatMessage(
|
|
74
82
|
{
|
|
75
83
|
defaultMessage:
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.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.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/react/ts5.0/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/ts5.0/index.d.ts","../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../node_modules/@types/styled-components/index.d.ts","../from-to-location-picker/lib/styled.d.ts","../../node_modules/@formatjs/ecma402-abstract/CanonicalizeLocaleList.d.ts","../../node_modules/@formatjs/ecma402-abstract/CanonicalizeTimeZoneName.d.ts","../../node_modules/@formatjs/ecma402-abstract/CoerceOptionsToObject.d.ts","../../node_modules/@formatjs/ecma402-abstract/GetNumberOption.d.ts","../../node_modules/@formatjs/ecma402-abstract/GetOption.d.ts","../../node_modules/@formatjs/ecma402-abstract/GetOptionsObject.d.ts","../../node_modules/@formatjs/ecma402-abstract/GetStringOrBooleanOption.d.ts","../../node_modules/@formatjs/ecma402-abstract/IsSanctionedSimpleUnitIdentifier.d.ts","../../node_modules/@formatjs/ecma402-abstract/IsValidTimeZoneName.d.ts","../../node_modules/@formatjs/ecma402-abstract/IsWellFormedCurrencyCode.d.ts","../../node_modules/@formatjs/ecma402-abstract/IsWellFormedUnitIdentifier.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/core.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/plural-rules.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/number.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ApplyUnsignedRoundingMode.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/CollapseNumberRange.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ComputeExponent.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ComputeExponentForMagnitude.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/CurrencyDigits.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/format_to_parts.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatApproximately.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatNumericRange.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatNumericRangeToParts.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatNumericToParts.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatNumericToString.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/GetUnsignedRoundingMode.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/InitializeNumberFormat.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/PartitionNumberPattern.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/PartitionNumberRangePattern.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/SetNumberFormatDigitOptions.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/SetNumberFormatUnitOptions.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ToRawFixed.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ToRawPrecision.d.ts","../../node_modules/@formatjs/ecma402-abstract/PartitionPattern.d.ts","../../node_modules/@formatjs/ecma402-abstract/SupportedLocales.d.ts","../../node_modules/@formatjs/ecma402-abstract/utils.d.ts","../../node_modules/@formatjs/ecma402-abstract/262.d.ts","../../node_modules/@formatjs/ecma402-abstract/data.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/date-time.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/displaynames.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/list.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/relative-time.d.ts","../../node_modules/@formatjs/ecma402-abstract/index.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/icu-skeleton-parser/date-time.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/icu-skeleton-parser/number.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/icu-skeleton-parser/index.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/types.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/error.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/parser.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/index.d.ts","../../node_modules/@formatjs/intl-displaynames/index.d.ts","../../node_modules/@formatjs/intl-listformat/index.d.ts","../../node_modules/intl-messageformat/src/formatters.d.ts","../../node_modules/intl-messageformat/src/core.d.ts","../../node_modules/intl-messageformat/src/error.d.ts","../../node_modules/intl-messageformat/index.d.ts","../../node_modules/@formatjs/intl/src/error.d.ts","../../node_modules/@formatjs/intl/src/utils.d.ts","../../node_modules/@formatjs/intl/src/types.d.ts","../../node_modules/@formatjs/intl/src/message.d.ts","../../node_modules/@formatjs/intl/src/dateTime.d.ts","../../node_modules/@formatjs/intl/src/displayName.d.ts","../../node_modules/@formatjs/intl/src/list.d.ts","../../node_modules/@formatjs/intl/src/plural.d.ts","../../node_modules/@formatjs/intl/src/relativeTime.d.ts","../../node_modules/@formatjs/intl/src/number.d.ts","../../node_modules/@formatjs/intl/src/create-intl.d.ts","../../node_modules/@formatjs/intl/index.d.ts","../../node_modules/react-intl/src/utils.d.ts","../../node_modules/react-intl/src/types.d.ts","../../node_modules/react-intl/src/components/injectIntl.d.ts","../../node_modules/react-intl/src/components/useIntl.d.ts","../../node_modules/react-intl/src/components/provider.d.ts","../../node_modules/react-intl/src/components/createIntl.d.ts","../../node_modules/react-intl/src/components/relative.d.ts","../../node_modules/react-intl/src/components/plural.d.ts","../../node_modules/react-intl/src/components/message.d.ts","../../node_modules/react-intl/src/components/dateTimeRange.d.ts","../../node_modules/react-intl/src/components/createFormattedComponent.d.ts","../../node_modules/react-intl/index.d.ts","../../node_modules/@styled-icons/styled-icon/index.d.ts","../types/lib/deprecated.d.ts","../types/lib/index.d.ts","../from-to-location-picker/lib/types.d.ts","../from-to-location-picker/lib/index.d.ts","../building-blocks/lib/dropdown/index.d.ts","../building-blocks/lib/focus-trap-wrapper/dom-query.d.ts","../building-blocks/lib/focus-trap-wrapper/index.d.ts","../building-blocks/lib/index.d.ts","../../node_modules/@types/flat/index.d.ts","../../node_modules/@types/mapbox__point-geometry/index.d.ts","../../node_modules/@mapbox/tiny-sdf/index.d.ts","../../node_modules/@types/pbf/index.d.ts","../../node_modules/@types/geojson/index.d.ts","../../node_modules/@types/mapbox__vector-tile/index.d.ts","../../node_modules/@maplibre/maplibre-gl-style-spec/dist/index.d.ts","../../node_modules/@types/geojson-vt/index.d.ts","../../node_modules/gl-matrix/index.d.ts","../../node_modules/kdbush/index.d.ts","../../node_modules/potpack/index.d.ts","../../node_modules/@types/supercluster/index.d.ts","../../node_modules/maplibre-gl/dist/maplibre-gl.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/types/common.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/types/style-spec.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/types/lib.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/types/events.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/maplibre/maplibre.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/maplibre/create-ref.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/utils/set-globals.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/map.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/marker.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/popup.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/attribution-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/fullscreen-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/geolocate-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/navigation-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/scale-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/terrain-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/logo-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/source.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/layer.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/use-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/use-map.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/index.d.ts","../../node_modules/react-map-gl/dist/maplibre.d.ts","../base-map/lib/styled.d.ts","../base-map/lib/util.d.ts","../base-map/lib/MarkerWithPopup.d.ts","../base-map/lib/index.d.ts","../core-utils/lib/itinerary.d.ts","../core-utils/lib/map.d.ts","../core-utils/lib/route.d.ts","../core-utils/lib/storage.d.ts","../core-utils/lib/time.d.ts","../core-utils/lib/ui.d.ts","../../node_modules/@conveyal/lonlat/dist/index.d.ts","../../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/rules/MaxIntrospectionDepthRule.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","../core-utils/lib/query-gen.d.ts","../core-utils/lib/suspense.d.ts","../core-utils/lib/index.d.ts","./src/util.ts","./src/styled.ts","./src/index.tsx","./src/__unpublished__/messages.d.ts","../../node_modules/@types/aria-query/index.d.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/deep-eql/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/doctrine/index.d.ts","../../node_modules/@types/estree/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/glob/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/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/@types/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/@types/jest/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/json-schema/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/junit-report-builder/index.d.ts","../../node_modules/@types/mdx/types.d.ts","../../node_modules/@types/mdx/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/statuses/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/vfile/node_modules/@types/unist/index.d.ts","../../node_modules/vfile-message/lib/index.d.ts","../../node_modules/vfile-message/index.d.ts","../../node_modules/@types/vfile/index.d.ts","../../node_modules/@types/wait-on/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"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","ed6b820c54de95b2510bb673490d61c7f2187f532a339d8d04981645a918961f",{"version":"759efc21a5ff1954e060fa54ddb4a739132b090a43ef9ee6fd63c7838bb07743","affectsGlobalScope":true},"a7ca2a9e61286d74bc37fe64e5dcd7da04607f7f5432f7c651b47b573fc76cef",{"version":"cfb95dbcdee02402fb9373c62ec4ba735b5479e5d879f39e7c23fe1d58186e31","affectsGlobalScope":true},"42509b307b7c1edd20b6fd7c92de1216a9ed27703fa74b574179d2d11c87a787","5553ec84902a9280bd308cc08f89ac269358e32d1abcc7affce7afa97c0bdf10","b3b5aca751100320745c8bfd826202aed7d753d336448ce2265b9470dfa8a298","5fa35c6051059d5ed57cbda5479b593cec15d5405229542042bd583c1e680fb4","7df3932c1b8816845e1774538c4e921e196d396b3419e2e18bc973079b4064a3","c8a7131a27d7892f009ab03d78dc113582f819c429af2064280bec83c2e7c599","19629032a378771a07e93c0ab8253b92cb83e786446f1c0aed01d8f9b96a3fb6","fd4b51f120103d53cc03eea9d98d6a1c7e6c07f04847c0658ec925ceeb7667aa","58c888d748e2ff881fd982418b1300c48a70ccce7cbb19a4cde96803568442aa","e2ce339ecc8f65810eda93bb801eb9278f616b653f5974135908df2c30acc5ae","234058398306e26bc917e6efba8fb26c9d9f2cfdfbaa17abfcb11138847de081","b3ff9aff54c18834bce9690184e69fd44fd5d57273a98a47fbf518b68cc4ec60","3dc40ead9c5ac3f164af434069561d6c660e64f77c71ab6ad405c5edc0724a94","d5fb34e3200ce13445c603012c0dfbd116317f8d5fef294e11f49d00a859a3d0","e99f9d98cce8c8da7aa758082e85cd1e70d8dd532fde81c6785e84c8cf5fdad2","2b9b9439e14a149725fb30e18f3f7e8ad26a0d9d73e19bd910ce5e8f21ad2bd5","06f11be517a9c2e289816cff4bac1d9d9ac3c97466742d63000c84ae1e985bfc","809408517138da4f6ec9fbcdcb2b9b54b97aa424edf0280aa02c45e9f3c189b1","8792e694ead2744ed55a58278d7be72c8f888105191e141581c104c4fb5db6ef","83dc862cd9b7b1a929bcc03e9bbc8690cebc7e29b1edfa263f6fd11b737f19df","63b8ffbc6d2e991814513c1804ecdb1c36377181e5c73fc2878fe0c8e8a251e5","796eb04b5d7cb757528f82c9dcf577dce94e52e3f0e85fb52660e5d90f901747","88bef19ad6180f851cbdc83e7b66d174776684ac241d744414b5f6001a54af88","2bb1f2558cfb924e36078a20c49dacdfeab742577ef0b13b42235481528db214","7106fee62156a05165e304aab553e3b00efa41fb3b051ad49e6523c5be19f9b4","e14b87f5261ec377a0d228c2e517069c9324059b83412e3b506029c239ca25aa","8b3de2f727cfd97055765350c2e4d50ea322cabb517ff7aa3fa0ad74aab4826e","b3e584a57553f573aa01b34bf0d08c4dfefb2b9ede471c70d85207131f0f742f","7682cb36c583dae007ccd22801ba4d15753400fa311b49e69946980550c3e952","0b9507754d974bcf9812c30e585b21953561f093692e2955334c93334e612919","6fb23beb59f1f5c8dc97bfc012d5edac81ffca1c1b83a91381b4e130e7ce24f3","46410e3c36bc44cfcb49fdc9790a7c3364f19d34e886a29ee99cec122a15d660","8d715bbe7ec487a5342ec26eef35edb55b8bd8cd9d274579f261b0b8fde1f5b2","db94113d7370b57e8055ca948d33cff465aa0501cace6eff5e3680c649273486","b4d286a3c858e8fb00c4f5da6928a09cb6f8143aa35f15c96354ab07b6f78508","c7e7d48913bfa205453911f699307e7ce630deb3c3e68326377bc2ba20abb1f9","8eddfcd5cb5733f02253c99d43a2a5bbdc4d0e3b9049e217550daf65e7f87673","a895000984a09ea36eaa5c0ff99a19bc0fb9ecf9cf6fa9e2124d484e8190ee7d","50c0c2b5e76e48e1168355e3622ca22e939c09867e3deb9b7a260d5f4e8d890c","66491ea35e30cc8c11169e5580aef31e30fdf20b39bc22e0847c2c7994e2071b","35680fb7f25a165e31e93ea22d106220db4450b1270a135b73f731b66b3d4539","5865007a5331be0842d8f0aace163deda0a0672e95389fe6f87b61988478a626","dddc865f251a4993b9e23494a9ae0fb58997e0941b1ec774490a272d5a0b29bd","ca74f50c5248846439c8cc6004732cf317a79f2a0bc620eed48325d47cf0884e","69055f4f0b1b2df9f0ca89231075c0578975518543100582dd37adb956ad6135","c3f85a0f71b64d78e7dfb27a12d10b0cd621745f40752b8e9fa61a7099d4290e","0b4b2424b5d19bbac7e7ad9366419746fff0f70001c1867b04440d0031b26991","1e9bcdcb2ee81b6155cb057d50574a5aeb77f22ee850d5feb9a999f81de866c6","4fd695c068c325f2eb6effd7a2ed607d04f4ed24b1f7cc006b8325b3eb5bd595","c18fb9b8d4a7f41ae537512368ec9028d50b17e33e26c99f864912824b6e8c30","4848996aa26a40d53c0c716fb90135a20002c3be2404cf3efe593bc57980c9b2","c83d0532a6b98692f7b813e47bf947234b7c08ff71aa79c9fceca0bc25f384a0","4cc69dd73cd6d15a3e29d7b70d8d260a00730520b794877bdc413dcb1426ba51",{"version":"9b923be7ef4337bbddbd1713b13cf81da9a955034bdf657bb9e60a8fc9b20ac5","affectsGlobalScope":true},"527668d62da5909154a74b74a7a9ae59c41ab4a70da76c2f476765308efafb0f","e2974b2b0a7ba6384f5f3338d2a6a70170c3002112d6e05ce593d966100bf232","cc3738598b5fe875e341f701824403b3cac48c50472c72423d3e236b610fa977","e61390bd34b952574db348b6b399710dc706c1829b29b3d78a3dc52835b73db2","fa907e289e14db7411c016ea26f920e55bb0f553083c869c95324f1a35bc1698",{"version":"f3d4832946cc7db227be5aeede016cde5e707acd0651c5772f60b7f862069f67","affectsGlobalScope":true},"3470144710c64f8282734aa427b82ff1c3b03547fab690d68c697e70715517e2","636f98efa207c4dd7d01e1698a1976f9e89bd5ed8c7ed925bffe709a53187141","152e72f7d7a91292c7282afbe88c86405476d74158a0b5da92e89aa6bfc43ba8","770da6922f57bcb7eb60e2ec7faead09f4124255d4d1cbf1746c786902a57600","ab4bc5a436210dfcfae18313f921deb927adb887e4d13a9c3a9f9af45c0915a2","5a87de34be3b62ad64863f14717aafb27b46eb884389980bff94319c64e216bf","5df7093c87d02065631fb161bb2d9ad12fd1ef18c0900d1cb6148f8fc4ba2059","110d5c25cd9c93f8730abbb46957c7ead0db75a518fc4649d90737f1b40edcc3","4ea44a1033eda5507f03095ec653729a8eb0265b76a22bde944fe75df37a6e32","b0c76b189a761339dd02fdb46d82a65ab915bb8851648fb43ce3666f41aedc26","e93d0e421acdb5882ae8cb0f15d72c78a6b6dacb3cac7cb1f91fb6033888f7a7",{"version":"35d438eefa0cd19aa5540e1d58a82184fcbe2aa6c9b776b1bacdee9b2f9f92b9","affectsGlobalScope":true},"a4dbbdf9491458ba5e0fec7227bade5a29e5b798672f855f24416351dfc5f66e","de8fd2788531d14db839cef97c79d27fedc408d118a4f9d9eb097a223c0d7f8e","45029fec2f3cf2bbb76c65203c8dca7067cb38150edb6e581cfc5cdd1056d3e6","fa330f5cd204e82da20e36c14114a990ad780034d9ff75362a7291d6246047ac","6a29950763865b4648f98ebbeb3ba5bc2d73a97b4c2b7e0da2a14a1eda921f31","d79508e876a427a5d2ab558259b6acf76cfc487670c2df78500fcfda65e82f55","2a3dd4f552ced304c2cecaef5cc13e5e18e7180cc9f56f1c58606b8631000a54","19569a1aaa42c0225c80c21de7e1e21d73571a85ff1e11fbf20efe540adfdd82","310c010fccf6731220b9222f7cea907449332eadb96e794c1f82ffe87fb3da0f","aeefb8cfc3e4a7541b67cc5c97ea2eed6c63099efe60d759521ca2353e3fa46f","057ecff22fc137b73b0d58a1330ab11d6cbb99ddda46aaf3ec2c95dbf6335002","a345bda565ea393eb9f9172acfdd75ec6b19d3860f9ca727f6ed9ea939b076db","6ea2822747faad021d5b4bacb07cb9ce7c13a581116a7c983a0f62779c5ad8db","8e893e66f81915e242438df66dee47c917ee595e76c7f8769b1ad3c22292aede","fc23fdf0405d029862cf1ece6171d9a631ae6a1e727c571cf42485e3581ab66b","3c9295f7e809b4688668d443361a14f676aaf9ed43a858884f59f4709b82ce07","bb0c07acc107461aa81b5bd85d3548a1e67cb8e632028b154e5f0c0ff67288eb","7614352d6a957bba5804723fa18160f12a43e0ef888d81e6dd75ac8f58b44a00","738d6242ee5ebcada2f55ec63f16c0128c2324124df9d4280bf5af6ce5e3d30e","ae4cda96b058f20db053c1f57e51257d1cffff9c0880326d2b8129ade5363402","bc8b2489bf29fa17cf4e7d5a4447daa456d7caf61455f50aafc34f1f3b915727","12115a2a03125cb3f600e80e7f43ef57f71a2951bb6e60695fb00ac8e12b27f3","d30e67059f5c545c5f8f0cc328a36d2e03b8c4a091b4301bc1d6afb2b1491a3a","02f7c65c690af708e9da6b09698c86d34b6b39a05acd8288a079859d920aea9f","15cd42c991de935a1c27255259f1510d65e269bbf442b46290405fccfac7e6b9","37550007de426cbbb418582008deae1a508935eaebbd4d41e22805ad3b485ad4","6b729c3274f6d4738fe470109bcb08b09ef98a6b356c01da3ca8dc0996b4458b","4dbf094f9d643b74e516779a802d9c5debd2929fb875ccfbc608d61afba064e4","828ea2cf5792eba68ebd41d6dd17ac67d31622b7889965210f8fa50a6eb29eba","e3913b35c221b4468658743d6496b83323c895f8e5b566c48d8844c01bf24738","fddc63640fde952128533546ae74554c939f442d2444acca02092123359985da","6b58befa886506f252c9ad95f4ebe98f60a1a450df61bb1bedfd4d9906aec860","36434890d6b5a8e9f855e98cac94466cfa20234bf85e3ddd362974b0e27cb483","8860efd63845e803145954bc4075492597211691025425ab472beb474c700a9d","b17815f8aea293ed376c1eca722b101feb92f6cbd4279d67773c42ae2fbf4577","1b03adc06975a746acf8110899fe2913b1b02e6a3171925235969ba5c1b3ee18","f2132116de8cba14e651b4c1969da78d09dc5df34b82ff48bc3da3433af52757","c0e656085898760b50a016b4c9164525793f183692b54243531bcf025679d2a8","252426bab92917b3856b401d66f598c501a56b333461a247b8147fccb7d6a00c","055c1bb2a6959dfc4d68dcc77b60efeb36ff33f5c92bba7c4a32defa24342d00","214658ab628b97feea91b502d4c80ca9db967d96c333bf9bbe95170573713301","63cf4f7d0203f14599fb073c3c23629a8673b23121d740f67f29055b5bcfea84","a4391410087fbf885789a53b5c8f3f82632d37657c2a6f97016e9108dfba1afd","d6bfa8ad8882343c85cdf4412f5c8f9520a2fe93705c5c7018944f7f1324a386","91f0a8a985bc17b8a6d810c7f44c52c763753825f4a060543a9bc74e37f9e20a","f2e9f87f7e8214d35777ab815d79746fc81a02a5437a8c540ce3603736bde411","024bcf6f9df0694d3a2af9c14b790e4f9ebc333b8669e93dca97f6a6c36943ce","a44c8f4b131110336fcbe5b0b0eae8611d4853f4a435c493456caf9b5d59a8a1","2a384b586ea99e91b5a77f42ec220907c6b7ef601b0f5099c3bce536502a1729","70ace4d4db6dfa1fc6957204063a8f7cc65b92e8f30b8f0e51f3caf8e3d0f880","d99dc8d21c594488cb596d58a57ceb2c2536ccd9147e4c1df22fa2fa19360a8b","49b2773f7280655250e197718bf71feb7364163997ab5a47f23406cd558401c9","5c9110dbe0529c1dc691fdb7f8bc34f22f1f4be15338e69c36b8322731e8c883","13c3a6f8331bf248134563a703f6abbf9e51269657dc17d587cf269a0e3ec740","be2be3f19b8e69e495b04d45d4d5bbfb2190fe6a505bd07a8870357f092485c1","a2fcd8d08ff6c404a6b3f9559296a0851c21a24a84896ffce7e64ec7b0839351","e674daba20d22ed76b226c7f7a310caca3c76644ebc17a7fcacb50a4062d0461","21c0391321d08d829ccc886ddbb17160f87971ef98136a1b423c4ccb9ed0cdad","de4dc7d9e7deefdc4aefd7eabf494cbb85e45191f28147e28c941d2ee2e2d87e","0de98f199b73d70b5693dba001403e7306c6d913eca766ae234b9961543c78a2","ee826c8f8f283f6e3898d06da9ca81789790e69fbd53810006fa504187055c8c","1e9704378dc57075033c705776320e7122c7c27853f503649d56f5582863ddfc","8bbda42155f407428d41bbbe53cc83d8b4e6360a0ed5968495bb18f751ce33ea","f265d21a700d82acb5b56b1b1f9bd7f53761c92038fe199d9c4ae1cca93754e2","17b984497972e22bcde81e57083484ddb1a9ecff70093669f92c09f19b762f2d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","48af3609dc95fa62c22c8ec047530daf1776504524d284d2c3f9c163725bdbd4","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","1fefab6dc739d33b7cb3fd08cd9d35dd279fcd7746965e200500b1a44d32db9e","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","040cb635dff5fc934413fa211d3a982122bf0e46acae9f7a369c61811f277047","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","a186fde3b1dde9642dda936e23a21cb73428340eb817e62f4442bb0fca6fa351","985ac70f005fb77a2bc0ed4f2c80d55919ded6a9b03d00d94aab75205b0778ec","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","89d029475445d677c18cf9a8c75751325616d353925681385da49aeef9260ab7","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","b5267af8d0a1e00092cceed845f69f5c44264cb770befc57d48dcf6a098cb731","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","ecc43d0b219916b833893f4fdd2d6c858b299cb6a8d53d149cb956d0eaffcb1e","48f3ea091fded494bcfb7d29807a22947aab0c748269298f1b93d75aaf0e0513","9dcfe8f38bbf953685118e1ca56d3f7d26c10da5361206bf67577c0b0590b5d0","2b6c4df33927646821cf29b5226c1f4fe508b3bc2dfd8b44990552b4b80bb963",{"version":"7f15ef6325245995e70c86a920d133f331f9ec16b8d3548395b559191105a29a","signature":"3d29a79790ecfcf890da0e5a46858781e450f477631d5696063d8a520527dc3f"},{"version":"813cc857b81f739ca41b28f2550f8e42074701606947ecb53f25d4a54283ec0d","signature":"1f4a48e8ec41cde2bdbb3173650fba1270547a96e5221f9dd2902f0fce834fd0"},{"version":"25a0a484c7888bb82811d3b57a9c92a3411c9b492bf8b834695dfa79042b1f53","signature":"2240b3e5490ba8b477d40b239fddd8e960ff05e5dd4e34dd07f4f6d1b7cbf4ed"},"48270f2ef65915134e0459c517a3271486a99b451209f7a4c16c62f52c9b6b1b","ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","7468ce3ef8243a51ee69aeb3b050f01f34c1e84cd4766fedd1b3594c03e30bbe","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99",{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true},"1748c03e7a7d118f7f6648c709507971eb0d416f489958492c5ae625de445184","6382638cfd6a8f05ac8277689de17ba4cd46f8aacefd254a993a53fde9ddc797","151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","c7bdc99177a2a94d25fb13722adaaf5b3291bf70b4d1b27584ba189dd3889ba3",{"version":"d1c92b66c4105659fcad4eb76a1481f7311033e117d0678a1ec545e8ddb8d4c6","affectsGlobalScope":true},"e23424b97418eca3226fd24de079f1203eb70360622e4e093af2aff14d4be6ec","dee93c07b4df5e26010dc9ec4cdf4d6e4076bb4474d2a8371529217c8b2740a4","ed40f2f184db052dc8df62d1f199823c8bbccc487c0a2a7c54eeea0badcf4378","04eaa93bd75f937f9184dcb95a7983800c5770cf8ddd8ac0f3734dc02f5b20ef",{"version":"c8155caf28fc7b0a564156a5df28ad8a844a3bd32d331d148d8f3ce88025c870","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","dfc747ab8dd5f623055a4c26fd35e8cceca869fd3f1cf09701c941ca3679665a","c9f5f2920ff61d7158417b8440d5181ddc34a3dfef811a5677dd8a9fb91471e9","5cc0a492da3602510b8f5ed1852b1e0390002780d8758fbc8c0cd023ca7085f8","ec7dafafe751a5121f8f1c80201ebe7e7238c47e6329280a73c4d1ca4bb7fa28","64debeb10e4b7ae4ec9e89bfb4e04c6101ab98c3cc806d14e5488607cfec2753",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"a5782d6cea81fe43d2db7ed41e789458c933ab3ab60602f7b5b14c4da3370496","affectsGlobalScope":true},"f258ba66915f0196ec344bc53afe1888240bbcc855ebd151b6cc072275533319","6194335ee3353f7226ba31f31d6301d0c6be87228419c0a08976ccd9d4f1213e","3ac12a54cfaa84683506db8d4cf779135a271d9f0ec18930cf53e61fbeea0c5d","cf3d3b087d1a8a3355eec47d206162c75e912315b9b5c1cd49fda93e948fb80a","36f316c066c4a72dd6f19fec49a074f935744fc9ccbe75c87ebc07fb2feb9062","42176966283d3835c34278b9b5c0f470d484c0c0c6a55c20a2c916a1ce69b6e8","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","ec70fd6f8a9a83f850dab2960a6789e93d5b034b354a16814cad5daabf62a360","e2236264a811ed1d09a2487a433e8f5216ae62378cf233954ae220cf886f6717","3ec1e108d587a5661ec790db607f482605ba9f3830e118ce578e3ffa3c42e22b","100b3bb9d39d2b1b5340f1bf45a52e94ef1692b45232b4ba00fac5c3cc56d331",{"version":"04fe7e7d8008887943260af1fde2bfd4877e0dc57bf634e0f0b2f3d1794dfd11","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","992c6f6be16c0a1d2eec13ece33adeea2c747ba27fcd078353a8f4bb5b4fea58","2597718d91e306949d89e285bf34c44192014ef541c3bd7cbb825c022749e974","a6b0abdb67d63ebe964ba5fee31bc3daf10c12eecd46b24d778426010c04c67e","ac4801ebc2355ba32329070123b1cd15891bf71b41dcaf9e75b4744832126a59","fd2298fba0640e7295e7bd545e2dfbfcccbb00c27019e501c87965a02bbdebf6","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","71ddd49185b68f27bfac127ef5d22cb2672c278e53e5370d9020ef50ca9c377d","b1ea7a6eaa7608e0e0529aebd323b526a79c6c05a4e519ae5c779675004dcdf1","9fcb033a6208485d8f3fadde31eb5cbcaf99149cff3e40c0dc53ebc6d0dff4e9","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","dcc6910d95a3625fd2b0487fda055988e46ab46c357a1b3618c27b4a8dd739c9","f4149f1aa299474c7040a35fe8f8ac2ad078cc1b190415adc1fff3ed52d490ea","3730099ed008776216268a97771de31753ef71e0a7d0ec650f588cba2a06ce44","8d649dbc429d7139a1d9a14ea2bf8af1dc089e0a879447539587463d4b6c248c","60c9e27816ec8ac8df7240598bb086e95b47edfb454c5cbf4003c812e0ed6e39","e361aecf17fc4034b4c122a1564471cdcd22ef3a51407803cb5a5fc020c04d02","4926467de88a92a4fc9971d8c6f21b91eca1c0e7fc2a46cc4638ab9440c73875",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"fc0ae4a8ad3c762b96f9d2c3700cb879a373458cb0bf3175478e3b4f85f7ef2f","fabbec378e1ddd86fcf2662e716c2b8318acedb664ee3a4cba6f9e8ee8269cf1","b3593bd345ebea5e4d0a894c03251a3774b34df3d6db57075c18e089a599ba76","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","efd55e8ca79171bf26c0d0e30221cb8ee1f5a31dd0c791ec4b2e886f42bab124","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","d6c7f76b8c7fecd5d75e3effd77a8593a13105e96c6dc09aaef4308fbb769560","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","54060f716fdbd7ac1008ac85256a400722332917837d1c0d6fdb7c9e8fa8b1cb","f8a6bb79327f4a6afc63d28624654522fc80f7536efa7a617ef48200b7a5f673","8e0733c50eaac49b4e84954106acc144ec1a8019922d6afcde3762523a3634af","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","5aca5a3bc07d2e16b6824a76c30378d6fb1b92e915d854315e1d1bd2d00974c9","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","1f4ae755492a669b317903a6b1664cb7af3fe0c3d1eec6447f4e95a80616d15a","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","5c5d901a999dfe64746ef4244618ae0628ac8afdb07975e3d5ed66e33c767ed0","85d08536e6cd9787f82261674e7d566421a84d286679db1503432a6ccf9e9625","6f56706c6828d0299f46f8b1a79ecae0757b91b48e63baf6f0c5292d02037129","2667c74200427135a2ff0a5f4f7cb6044bf483318a5c30e5d9eccdbfe372a529","9a2eaab4e54953c6b2ba21f7ac4c2593859da03917011c10a2acd8864e38e7b2","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7"],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":2,"module":1,"noEmitOnError":false,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"target":2},"fileIdsList":[[286],[54],[41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82],[52],[52,53],[52,54],[87],[87,89],[84,85],[83],[87,88],[83,86],[97,98,99,100,101,102,103,104,105,106,107],[99],[83,99],[92,99],[90,96,99],[83,90,91,92,96,97,98],[37,39],[286,287,288,289,290],[286,288],[292],[312,348],[134],[311,312,348,350],[37],[353],[354],[360,362],[356,357],[356,357,358,359],[361],[131,133,134],[368,369],[346],[345,346],[300,305],[311,312,319,328],[301,311,319],[337],[305,312,320],[328,333],[308,311,319],[309],[308],[311],[311,313,328,336],[311,312,328],[319,328,336],[311,312,314,319,328,333,336],[314,328,333,336],[347],[336],[308,311,328],[321],[299],[335],[326,337,340],[311,329],[328],[331],[305,319],[297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344],[319],[325],[338],[300,305,311,313,322,328,336,340],[34,35,36],[35,37,38],[348,378,380],[333,348],[311,314,316,328,333,336,342,348],[384],[37,145],[37,145,146],[144,145],[37,142,145,147,148,149,164],[144],[37,144,145],[145,150],[37,148],[143,144,145,146,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163],[145,147],[143,144,145,146],[142],[142,143],[178,179,185,186],[187,252,253],[178,185,187],[179,187],[178,180,181,182,185,187,190,191],[181,192,206,207],[178,185,190,191,192],[178,180,185,187,189,190,191],[178,179,190,191,192],[177,193,198,205,208,209,251,254,276],[178],[179,183,184],[179,183,184,185,186,188,199,200,201,202,203,204],[179,184,185],[179],[178,179,184,185,187,200],[185],[179,185,186],[183,185],[192,206],[178,180,181,182,185,190],[178,185,188,191],[181,189,190,191,194,195,196,197],[191],[178,180,185,187,189,191],[187,190],[178,185,189,190,191,203],[187],[178,185,191],[179,185,190,201],[190,255],[187,191],[185,190],[190],[178,188],[178,185],[185,190,191],[210,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275],[190,191],[180,185],[178,180,185,191],[178,180,185],[178,185,187,189,190,191,203,210],[211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250],[203,211],[211,213],[178,185,187,190,210,211],[93,94,95],[90,93],[83,90],[131,132,135,136,137,138,139,140,141],[37,83,90,91,92,96,108,110,111,112,113,114,115,116,117,118,119],[37,92,108,110],[37,108,110],[37,83,108],[37,110],[37,96,108],[37,108],[110],[37,108,109],[37,96,110],[164],[379],[377],[37,165],[37,39,142,165,166,167,168],[37,39,142,165],[142,165],[37,127],[126,128],[170,171,172,173,174,175,278,279],[123],[123,176,277],[37,40,124],[39],[37,123],[37,120,123,125,129,130,169,281,282,284],[120,123,280],[37,120,121,122],[123,281],[120,123]],"referencedMap":[[288,1],[55,2],[57,2],[58,2],[61,2],[62,2],[63,2],[64,2],[65,2],[66,2],[67,2],[68,2],[69,2],[70,2],[71,2],[72,2],[73,2],[60,2],[83,3],[80,4],[81,4],[54,5],[53,6],[82,5],[88,7],[90,8],[86,9],[85,10],[89,11],[87,12],[91,10],[92,10],[108,13],[107,14],[101,15],[102,14],[97,14],[103,16],[100,17],[106,14],[104,15],[105,14],[99,18],[98,15],[121,19],[291,20],[287,1],[289,21],[290,1],[293,22],[349,23],[137,24],[351,25],[352,23],[38,26],[354,27],[355,28],[363,29],[358,30],[360,31],[359,30],[362,32],[135,33],[369,34],[297,35],[347,36],[300,37],[301,38],[302,39],[303,40],[304,41],[305,42],[306,43],[308,44],[309,45],[310,46],[311,46],[312,47],[313,48],[314,49],[315,50],[316,51],[348,52],[317,46],[318,53],[319,54],[321,55],[322,56],[323,57],[326,46],[327,58],[328,59],[329,60],[331,46],[332,61],[333,62],[345,63],[335,64],[336,65],[337,66],[339,60],[341,67],[342,60],[37,68],[39,69],[141,24],[381,70],[382,71],[383,72],[385,73],[153,74],[154,74],[155,75],[161,76],[159,74],[150,77],[151,75],[156,74],[152,75],[157,74],[160,78],[158,79],[162,80],[163,81],[164,82],[148,83],[147,84],[143,85],[146,86],[145,85],[144,85],[187,87],[254,88],[253,89],[252,90],[192,91],[208,92],[206,93],[207,94],[193,95],[277,96],[181,97],[185,98],[205,99],[200,100],[186,101],[201,102],[204,103],[199,104],[202,103],[203,105],[209,106],[191,107],[189,108],[198,109],[195,110],[194,110],[190,111],[196,112],[210,113],[273,114],[267,115],[260,116],[259,117],[268,118],[269,103],[261,119],[274,120],[255,121],[256,122],[257,123],[276,124],[258,117],[262,120],[263,125],[270,126],[271,101],[272,125],[264,123],[275,103],[265,127],[266,128],[211,129],[251,130],[215,131],[216,131],[217,131],[218,131],[219,131],[220,131],[221,131],[222,131],[241,131],[213,131],[223,131],[224,131],[225,131],[226,131],[227,131],[228,131],[248,131],[229,131],[230,131],[231,131],[246,131],[232,131],[247,131],[233,131],[244,131],[245,131],[234,131],[235,131],[236,131],[242,131],[243,131],[237,131],[238,131],[239,131],[240,131],[249,131],[250,131],[214,132],[212,133],[96,134],[94,135],[93,136],[142,137],[120,138],[119,139],[114,140],[118,141],[111,142],[117,143],[116,144],[113,140],[115,141],[112,145],[110,146],[109,147],[165,148],[380,149],[379,150],[168,151],[169,152],[166,153],[167,154],[126,26],[128,155],[129,156],[280,157],[170,158],[171,158],[278,159],[172,158],[279,26],[174,158],[125,160],[40,161],[124,162],[283,163],[282,161],[281,164],[122,26],[123,165]],"exportedModulesMap":[[288,1],[55,2],[57,2],[58,2],[61,2],[62,2],[63,2],[64,2],[65,2],[66,2],[67,2],[68,2],[69,2],[70,2],[71,2],[72,2],[73,2],[60,2],[83,3],[80,4],[81,4],[54,5],[53,6],[82,5],[88,7],[90,8],[86,9],[85,10],[89,11],[87,12],[91,10],[92,10],[108,13],[107,14],[101,15],[102,14],[97,14],[103,16],[100,17],[106,14],[104,15],[105,14],[99,18],[98,15],[121,19],[291,20],[287,1],[289,21],[290,1],[293,22],[349,23],[137,24],[351,25],[352,23],[38,26],[354,27],[355,28],[363,29],[358,30],[360,31],[359,30],[362,32],[135,33],[369,34],[297,35],[347,36],[300,37],[301,38],[302,39],[303,40],[304,41],[305,42],[306,43],[308,44],[309,45],[310,46],[311,46],[312,47],[313,48],[314,49],[315,50],[316,51],[348,52],[317,46],[318,53],[319,54],[321,55],[322,56],[323,57],[326,46],[327,58],[328,59],[329,60],[331,46],[332,61],[333,62],[345,63],[335,64],[336,65],[337,66],[339,60],[341,67],[342,60],[37,68],[39,69],[141,24],[381,70],[382,71],[383,72],[385,73],[153,74],[154,74],[155,75],[161,76],[159,74],[150,77],[151,75],[156,74],[152,75],[157,74],[160,78],[158,79],[162,80],[163,81],[164,82],[148,83],[147,84],[143,85],[146,86],[145,85],[144,85],[187,87],[254,88],[253,89],[252,90],[192,91],[208,92],[206,93],[207,94],[193,95],[277,96],[181,97],[185,98],[205,99],[200,100],[186,101],[201,102],[204,103],[199,104],[202,103],[203,105],[209,106],[191,107],[189,108],[198,109],[195,110],[194,110],[190,111],[196,112],[210,113],[273,114],[267,115],[260,116],[259,117],[268,118],[269,103],[261,119],[274,120],[255,121],[256,122],[257,123],[276,124],[258,117],[262,120],[263,125],[270,126],[271,101],[272,125],[264,123],[275,103],[265,127],[266,128],[211,129],[251,130],[215,131],[216,131],[217,131],[218,131],[219,131],[220,131],[221,131],[222,131],[241,131],[213,131],[223,131],[224,131],[225,131],[226,131],[227,131],[228,131],[248,131],[229,131],[230,131],[231,131],[246,131],[232,131],[247,131],[233,131],[244,131],[245,131],[234,131],[235,131],[236,131],[242,131],[243,131],[237,131],[238,131],[239,131],[240,131],[249,131],[250,131],[214,132],[212,133],[96,134],[94,135],[93,136],[142,137],[120,138],[119,139],[114,140],[118,141],[111,142],[117,143],[116,144],[113,140],[115,141],[112,145],[110,146],[109,147],[165,148],[380,149],[379,150],[168,151],[169,152],[166,153],[167,154],[126,26],[128,155],[129,156],[280,157],[170,158],[171,158],[278,159],[172,158],[279,26],[174,158],[125,160],[40,161],[124,162],[283,166],[282,161],[281,167],[122,26],[123,165]],"semanticDiagnosticsPerFile":[288,286,176,77,41,42,43,44,45,46,47,48,49,50,51,55,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,73,60,74,75,78,83,52,79,80,81,54,53,82,76,88,90,84,86,85,89,87,91,92,108,107,101,102,97,103,100,106,104,105,99,98,132,136,121,285,291,287,289,290,293,294,292,295,296,130,349,137,134,351,350,352,38,353,354,355,363,356,358,360,359,357,362,361,364,365,366,367,131,135,369,368,370,371,346,297,299,347,300,301,302,303,304,305,306,307,308,309,310,311,312,313,298,343,314,315,316,348,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,345,335,336,337,338,339,340,344,341,342,372,133,36,34,37,373,374,375,39,141,376,377,381,378,382,383,384,385,153,154,155,161,159,150,151,156,152,157,160,158,162,163,164,148,147,143,146,145,144,149,35,138,187,254,253,252,192,208,206,207,193,277,178,180,181,182,185,188,205,183,200,186,201,204,199,202,179,184,203,209,197,191,189,198,195,194,190,196,210,273,267,260,259,268,269,261,274,255,256,257,276,258,262,263,270,271,272,264,275,265,266,211,251,215,216,217,218,219,220,221,222,241,213,223,224,225,226,227,228,248,229,230,231,246,232,247,233,244,245,234,235,236,242,243,237,238,239,240,249,250,214,212,177,96,94,95,93,139,142,140,120,119,114,118,111,117,116,113,115,112,110,109,165,7,8,12,11,3,13,14,15,16,17,18,19,20,4,5,24,21,22,23,25,26,27,6,28,29,30,31,32,2,1,33,10,9,380,379,168,169,166,167,126,127,128,129,280,170,171,278,172,173,279,174,175,125,40,124,284,283,282,281,122,123],"latestChangedDtsFile":"./lib/index.d.ts"},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../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.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.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.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/react/ts5.0/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/ts5.0/index.d.ts","../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../node_modules/@types/styled-components/index.d.ts","../from-to-location-picker/lib/styled.d.ts","../../node_modules/@formatjs/ecma402-abstract/CanonicalizeLocaleList.d.ts","../../node_modules/@formatjs/ecma402-abstract/CanonicalizeTimeZoneName.d.ts","../../node_modules/@formatjs/ecma402-abstract/CoerceOptionsToObject.d.ts","../../node_modules/@formatjs/ecma402-abstract/GetNumberOption.d.ts","../../node_modules/@formatjs/ecma402-abstract/GetOption.d.ts","../../node_modules/@formatjs/ecma402-abstract/GetOptionsObject.d.ts","../../node_modules/@formatjs/ecma402-abstract/GetStringOrBooleanOption.d.ts","../../node_modules/@formatjs/ecma402-abstract/IsSanctionedSimpleUnitIdentifier.d.ts","../../node_modules/@formatjs/ecma402-abstract/IsValidTimeZoneName.d.ts","../../node_modules/@formatjs/ecma402-abstract/IsWellFormedCurrencyCode.d.ts","../../node_modules/@formatjs/ecma402-abstract/IsWellFormedUnitIdentifier.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/core.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/plural-rules.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/number.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ApplyUnsignedRoundingMode.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/CollapseNumberRange.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ComputeExponent.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ComputeExponentForMagnitude.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/CurrencyDigits.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/format_to_parts.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatApproximately.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatNumericRange.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatNumericRangeToParts.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatNumericToParts.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/FormatNumericToString.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/GetUnsignedRoundingMode.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/InitializeNumberFormat.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/PartitionNumberPattern.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/PartitionNumberRangePattern.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/SetNumberFormatDigitOptions.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/SetNumberFormatUnitOptions.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ToRawFixed.d.ts","../../node_modules/@formatjs/ecma402-abstract/NumberFormat/ToRawPrecision.d.ts","../../node_modules/@formatjs/ecma402-abstract/PartitionPattern.d.ts","../../node_modules/@formatjs/ecma402-abstract/SupportedLocales.d.ts","../../node_modules/@formatjs/ecma402-abstract/utils.d.ts","../../node_modules/@formatjs/ecma402-abstract/262.d.ts","../../node_modules/@formatjs/ecma402-abstract/data.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/date-time.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/displaynames.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/list.d.ts","../../node_modules/@formatjs/ecma402-abstract/types/relative-time.d.ts","../../node_modules/@formatjs/ecma402-abstract/index.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/icu-skeleton-parser/date-time.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/icu-skeleton-parser/number.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/icu-skeleton-parser/index.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/types.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/error.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/parser.d.ts","../../node_modules/@formatjs/icu-messageformat-parser/index.d.ts","../../node_modules/@formatjs/intl-displaynames/index.d.ts","../../node_modules/@formatjs/intl-listformat/index.d.ts","../../node_modules/intl-messageformat/src/formatters.d.ts","../../node_modules/intl-messageformat/src/core.d.ts","../../node_modules/intl-messageformat/src/error.d.ts","../../node_modules/intl-messageformat/index.d.ts","../../node_modules/@formatjs/intl/src/error.d.ts","../../node_modules/@formatjs/intl/src/utils.d.ts","../../node_modules/@formatjs/intl/src/types.d.ts","../../node_modules/@formatjs/intl/src/message.d.ts","../../node_modules/@formatjs/intl/src/dateTime.d.ts","../../node_modules/@formatjs/intl/src/displayName.d.ts","../../node_modules/@formatjs/intl/src/list.d.ts","../../node_modules/@formatjs/intl/src/plural.d.ts","../../node_modules/@formatjs/intl/src/relativeTime.d.ts","../../node_modules/@formatjs/intl/src/number.d.ts","../../node_modules/@formatjs/intl/src/create-intl.d.ts","../../node_modules/@formatjs/intl/index.d.ts","../../node_modules/react-intl/src/utils.d.ts","../../node_modules/react-intl/src/types.d.ts","../../node_modules/react-intl/src/components/injectIntl.d.ts","../../node_modules/react-intl/src/components/useIntl.d.ts","../../node_modules/react-intl/src/components/provider.d.ts","../../node_modules/react-intl/src/components/createIntl.d.ts","../../node_modules/react-intl/src/components/relative.d.ts","../../node_modules/react-intl/src/components/plural.d.ts","../../node_modules/react-intl/src/components/message.d.ts","../../node_modules/react-intl/src/components/dateTimeRange.d.ts","../../node_modules/react-intl/src/components/createFormattedComponent.d.ts","../../node_modules/react-intl/index.d.ts","../../node_modules/@styled-icons/styled-icon/index.d.ts","../types/lib/deprecated.d.ts","../types/lib/index.d.ts","../from-to-location-picker/lib/types.d.ts","../from-to-location-picker/lib/index.d.ts","../types/lib/otp2/rentalVehicleTypes.d.ts","../types/lib/otp2/index.d.ts","../building-blocks/lib/dropdown/index.d.ts","../building-blocks/lib/focus-trap-wrapper/dom-query.d.ts","../building-blocks/lib/focus-trap-wrapper/index.d.ts","../building-blocks/lib/index.d.ts","../../node_modules/@types/flat/index.d.ts","../../node_modules/@types/mapbox__point-geometry/index.d.ts","../../node_modules/@mapbox/tiny-sdf/index.d.ts","../../node_modules/@types/pbf/index.d.ts","../../node_modules/@types/geojson/index.d.ts","../../node_modules/@types/mapbox__vector-tile/index.d.ts","../../node_modules/@maplibre/maplibre-gl-style-spec/dist/index.d.ts","../../node_modules/@types/geojson-vt/index.d.ts","../../node_modules/gl-matrix/index.d.ts","../../node_modules/kdbush/index.d.ts","../../node_modules/potpack/index.d.ts","../../node_modules/@types/supercluster/index.d.ts","../../node_modules/maplibre-gl/dist/maplibre-gl.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/types/common.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/types/style-spec.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/types/lib.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/types/events.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/maplibre/maplibre.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/maplibre/create-ref.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/utils/set-globals.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/map.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/marker.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/popup.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/attribution-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/fullscreen-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/geolocate-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/navigation-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/scale-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/terrain-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/logo-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/source.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/layer.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/use-control.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/components/use-map.d.ts","../../node_modules/@vis.gl/react-maplibre/dist/index.d.ts","../../node_modules/react-map-gl/dist/maplibre.d.ts","../base-map/lib/styled.d.ts","../base-map/lib/util.d.ts","../base-map/lib/MarkerWithPopup.d.ts","../base-map/lib/index.d.ts","../core-utils/lib/itinerary.d.ts","../core-utils/lib/map.d.ts","../core-utils/lib/route.d.ts","../core-utils/lib/storage.d.ts","../core-utils/lib/time.d.ts","../core-utils/lib/ui.d.ts","../../node_modules/@conveyal/lonlat/dist/index.d.ts","../../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/rules/MaxIntrospectionDepthRule.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","../core-utils/lib/query-gen.d.ts","../core-utils/lib/suspense.d.ts","../core-utils/lib/index.d.ts","./src/util.ts","./src/styled.ts","./src/index.tsx","./src/__unpublished__/messages.d.ts","../../node_modules/@types/aria-query/index.d.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/deep-eql/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/doctrine/index.d.ts","../../node_modules/@types/estree/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/glob/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/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/@types/jest/node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/types.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/@types/jest/node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/@types/jest/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/json-schema/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/junit-report-builder/index.d.ts","../../node_modules/@types/mdx/types.d.ts","../../node_modules/@types/mdx/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/statuses/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/vfile/node_modules/@types/unist/index.d.ts","../../node_modules/vfile-message/lib/index.d.ts","../../node_modules/vfile-message/index.d.ts","../../node_modules/@types/vfile/index.d.ts","../../node_modules/@types/wait-on/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"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","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":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","ed6b820c54de95b2510bb673490d61c7f2187f532a339d8d04981645a918961f",{"version":"759efc21a5ff1954e060fa54ddb4a739132b090a43ef9ee6fd63c7838bb07743","affectsGlobalScope":true},"a7ca2a9e61286d74bc37fe64e5dcd7da04607f7f5432f7c651b47b573fc76cef",{"version":"cfb95dbcdee02402fb9373c62ec4ba735b5479e5d879f39e7c23fe1d58186e31","affectsGlobalScope":true},"42509b307b7c1edd20b6fd7c92de1216a9ed27703fa74b574179d2d11c87a787","5553ec84902a9280bd308cc08f89ac269358e32d1abcc7affce7afa97c0bdf10","b3b5aca751100320745c8bfd826202aed7d753d336448ce2265b9470dfa8a298","5fa35c6051059d5ed57cbda5479b593cec15d5405229542042bd583c1e680fb4","7df3932c1b8816845e1774538c4e921e196d396b3419e2e18bc973079b4064a3","c8a7131a27d7892f009ab03d78dc113582f819c429af2064280bec83c2e7c599","19629032a378771a07e93c0ab8253b92cb83e786446f1c0aed01d8f9b96a3fb6","fd4b51f120103d53cc03eea9d98d6a1c7e6c07f04847c0658ec925ceeb7667aa","58c888d748e2ff881fd982418b1300c48a70ccce7cbb19a4cde96803568442aa","e2ce339ecc8f65810eda93bb801eb9278f616b653f5974135908df2c30acc5ae","234058398306e26bc917e6efba8fb26c9d9f2cfdfbaa17abfcb11138847de081","b3ff9aff54c18834bce9690184e69fd44fd5d57273a98a47fbf518b68cc4ec60","3dc40ead9c5ac3f164af434069561d6c660e64f77c71ab6ad405c5edc0724a94","d5fb34e3200ce13445c603012c0dfbd116317f8d5fef294e11f49d00a859a3d0","e99f9d98cce8c8da7aa758082e85cd1e70d8dd532fde81c6785e84c8cf5fdad2","2b9b9439e14a149725fb30e18f3f7e8ad26a0d9d73e19bd910ce5e8f21ad2bd5","06f11be517a9c2e289816cff4bac1d9d9ac3c97466742d63000c84ae1e985bfc","809408517138da4f6ec9fbcdcb2b9b54b97aa424edf0280aa02c45e9f3c189b1","8792e694ead2744ed55a58278d7be72c8f888105191e141581c104c4fb5db6ef","83dc862cd9b7b1a929bcc03e9bbc8690cebc7e29b1edfa263f6fd11b737f19df","63b8ffbc6d2e991814513c1804ecdb1c36377181e5c73fc2878fe0c8e8a251e5","796eb04b5d7cb757528f82c9dcf577dce94e52e3f0e85fb52660e5d90f901747","88bef19ad6180f851cbdc83e7b66d174776684ac241d744414b5f6001a54af88","2bb1f2558cfb924e36078a20c49dacdfeab742577ef0b13b42235481528db214","7106fee62156a05165e304aab553e3b00efa41fb3b051ad49e6523c5be19f9b4","e14b87f5261ec377a0d228c2e517069c9324059b83412e3b506029c239ca25aa","8b3de2f727cfd97055765350c2e4d50ea322cabb517ff7aa3fa0ad74aab4826e","b3e584a57553f573aa01b34bf0d08c4dfefb2b9ede471c70d85207131f0f742f","7682cb36c583dae007ccd22801ba4d15753400fa311b49e69946980550c3e952","0b9507754d974bcf9812c30e585b21953561f093692e2955334c93334e612919","6fb23beb59f1f5c8dc97bfc012d5edac81ffca1c1b83a91381b4e130e7ce24f3","46410e3c36bc44cfcb49fdc9790a7c3364f19d34e886a29ee99cec122a15d660","8d715bbe7ec487a5342ec26eef35edb55b8bd8cd9d274579f261b0b8fde1f5b2","db94113d7370b57e8055ca948d33cff465aa0501cace6eff5e3680c649273486","b4d286a3c858e8fb00c4f5da6928a09cb6f8143aa35f15c96354ab07b6f78508","c7e7d48913bfa205453911f699307e7ce630deb3c3e68326377bc2ba20abb1f9","8eddfcd5cb5733f02253c99d43a2a5bbdc4d0e3b9049e217550daf65e7f87673","a895000984a09ea36eaa5c0ff99a19bc0fb9ecf9cf6fa9e2124d484e8190ee7d","50c0c2b5e76e48e1168355e3622ca22e939c09867e3deb9b7a260d5f4e8d890c","66491ea35e30cc8c11169e5580aef31e30fdf20b39bc22e0847c2c7994e2071b","35680fb7f25a165e31e93ea22d106220db4450b1270a135b73f731b66b3d4539","5865007a5331be0842d8f0aace163deda0a0672e95389fe6f87b61988478a626","dddc865f251a4993b9e23494a9ae0fb58997e0941b1ec774490a272d5a0b29bd","ca74f50c5248846439c8cc6004732cf317a79f2a0bc620eed48325d47cf0884e","69055f4f0b1b2df9f0ca89231075c0578975518543100582dd37adb956ad6135","c3f85a0f71b64d78e7dfb27a12d10b0cd621745f40752b8e9fa61a7099d4290e","0b4b2424b5d19bbac7e7ad9366419746fff0f70001c1867b04440d0031b26991","1e9bcdcb2ee81b6155cb057d50574a5aeb77f22ee850d5feb9a999f81de866c6","4fd695c068c325f2eb6effd7a2ed607d04f4ed24b1f7cc006b8325b3eb5bd595","c18fb9b8d4a7f41ae537512368ec9028d50b17e33e26c99f864912824b6e8c30","4848996aa26a40d53c0c716fb90135a20002c3be2404cf3efe593bc57980c9b2","c83d0532a6b98692f7b813e47bf947234b7c08ff71aa79c9fceca0bc25f384a0","4cc69dd73cd6d15a3e29d7b70d8d260a00730520b794877bdc413dcb1426ba51",{"version":"9b923be7ef4337bbddbd1713b13cf81da9a955034bdf657bb9e60a8fc9b20ac5","affectsGlobalScope":true},"527668d62da5909154a74b74a7a9ae59c41ab4a70da76c2f476765308efafb0f","e2974b2b0a7ba6384f5f3338d2a6a70170c3002112d6e05ce593d966100bf232","cc3738598b5fe875e341f701824403b3cac48c50472c72423d3e236b610fa977","e61390bd34b952574db348b6b399710dc706c1829b29b3d78a3dc52835b73db2","fa907e289e14db7411c016ea26f920e55bb0f553083c869c95324f1a35bc1698",{"version":"f3d4832946cc7db227be5aeede016cde5e707acd0651c5772f60b7f862069f67","affectsGlobalScope":true},"3470144710c64f8282734aa427b82ff1c3b03547fab690d68c697e70715517e2","636f98efa207c4dd7d01e1698a1976f9e89bd5ed8c7ed925bffe709a53187141","152e72f7d7a91292c7282afbe88c86405476d74158a0b5da92e89aa6bfc43ba8","770da6922f57bcb7eb60e2ec7faead09f4124255d4d1cbf1746c786902a57600","ab4bc5a436210dfcfae18313f921deb927adb887e4d13a9c3a9f9af45c0915a2","5a87de34be3b62ad64863f14717aafb27b46eb884389980bff94319c64e216bf","5df7093c87d02065631fb161bb2d9ad12fd1ef18c0900d1cb6148f8fc4ba2059","110d5c25cd9c93f8730abbb46957c7ead0db75a518fc4649d90737f1b40edcc3","4ea44a1033eda5507f03095ec653729a8eb0265b76a22bde944fe75df37a6e32","b0c76b189a761339dd02fdb46d82a65ab915bb8851648fb43ce3666f41aedc26","e93d0e421acdb5882ae8cb0f15d72c78a6b6dacb3cac7cb1f91fb6033888f7a7",{"version":"35d438eefa0cd19aa5540e1d58a82184fcbe2aa6c9b776b1bacdee9b2f9f92b9","affectsGlobalScope":true},"a4dbbdf9491458ba5e0fec7227bade5a29e5b798672f855f24416351dfc5f66e","de8fd2788531d14db839cef97c79d27fedc408d118a4f9d9eb097a223c0d7f8e","45029fec2f3cf2bbb76c65203c8dca7067cb38150edb6e581cfc5cdd1056d3e6","fa330f5cd204e82da20e36c14114a990ad780034d9ff75362a7291d6246047ac","6a29950763865b4648f98ebbeb3ba5bc2d73a97b4c2b7e0da2a14a1eda921f31","d79508e876a427a5d2ab558259b6acf76cfc487670c2df78500fcfda65e82f55","2a3dd4f552ced304c2cecaef5cc13e5e18e7180cc9f56f1c58606b8631000a54","19569a1aaa42c0225c80c21de7e1e21d73571a85ff1e11fbf20efe540adfdd82","310c010fccf6731220b9222f7cea907449332eadb96e794c1f82ffe87fb3da0f","aeefb8cfc3e4a7541b67cc5c97ea2eed6c63099efe60d759521ca2353e3fa46f","057ecff22fc137b73b0d58a1330ab11d6cbb99ddda46aaf3ec2c95dbf6335002","f4679d480665d875e526c03ad31f02954b0f7d1c0ec138f912aadbf96235d79e","6ea2822747faad021d5b4bacb07cb9ce7c13a581116a7c983a0f62779c5ad8db","8e893e66f81915e242438df66dee47c917ee595e76c7f8769b1ad3c22292aede","cb8675de773feac9c2aa74e980daa9838611a0e54cf60e8900d638e83c01f23e","7edb022e4f06bfeb730f28f9865f15e2f788af01822338f807d5776574e453ac","fc23fdf0405d029862cf1ece6171d9a631ae6a1e727c571cf42485e3581ab66b","3c9295f7e809b4688668d443361a14f676aaf9ed43a858884f59f4709b82ce07","bb0c07acc107461aa81b5bd85d3548a1e67cb8e632028b154e5f0c0ff67288eb","7614352d6a957bba5804723fa18160f12a43e0ef888d81e6dd75ac8f58b44a00","738d6242ee5ebcada2f55ec63f16c0128c2324124df9d4280bf5af6ce5e3d30e","ae4cda96b058f20db053c1f57e51257d1cffff9c0880326d2b8129ade5363402","bc8b2489bf29fa17cf4e7d5a4447daa456d7caf61455f50aafc34f1f3b915727","12115a2a03125cb3f600e80e7f43ef57f71a2951bb6e60695fb00ac8e12b27f3","d30e67059f5c545c5f8f0cc328a36d2e03b8c4a091b4301bc1d6afb2b1491a3a","02f7c65c690af708e9da6b09698c86d34b6b39a05acd8288a079859d920aea9f","15cd42c991de935a1c27255259f1510d65e269bbf442b46290405fccfac7e6b9","37550007de426cbbb418582008deae1a508935eaebbd4d41e22805ad3b485ad4","6b729c3274f6d4738fe470109bcb08b09ef98a6b356c01da3ca8dc0996b4458b","4dbf094f9d643b74e516779a802d9c5debd2929fb875ccfbc608d61afba064e4","828ea2cf5792eba68ebd41d6dd17ac67d31622b7889965210f8fa50a6eb29eba","e3913b35c221b4468658743d6496b83323c895f8e5b566c48d8844c01bf24738","fddc63640fde952128533546ae74554c939f442d2444acca02092123359985da","6b58befa886506f252c9ad95f4ebe98f60a1a450df61bb1bedfd4d9906aec860","36434890d6b5a8e9f855e98cac94466cfa20234bf85e3ddd362974b0e27cb483","8860efd63845e803145954bc4075492597211691025425ab472beb474c700a9d","b17815f8aea293ed376c1eca722b101feb92f6cbd4279d67773c42ae2fbf4577","1b03adc06975a746acf8110899fe2913b1b02e6a3171925235969ba5c1b3ee18","f2132116de8cba14e651b4c1969da78d09dc5df34b82ff48bc3da3433af52757","c0e656085898760b50a016b4c9164525793f183692b54243531bcf025679d2a8","252426bab92917b3856b401d66f598c501a56b333461a247b8147fccb7d6a00c","055c1bb2a6959dfc4d68dcc77b60efeb36ff33f5c92bba7c4a32defa24342d00","214658ab628b97feea91b502d4c80ca9db967d96c333bf9bbe95170573713301","63cf4f7d0203f14599fb073c3c23629a8673b23121d740f67f29055b5bcfea84","a4391410087fbf885789a53b5c8f3f82632d37657c2a6f97016e9108dfba1afd","d6bfa8ad8882343c85cdf4412f5c8f9520a2fe93705c5c7018944f7f1324a386","91f0a8a985bc17b8a6d810c7f44c52c763753825f4a060543a9bc74e37f9e20a","f2e9f87f7e8214d35777ab815d79746fc81a02a5437a8c540ce3603736bde411","024bcf6f9df0694d3a2af9c14b790e4f9ebc333b8669e93dca97f6a6c36943ce","a44c8f4b131110336fcbe5b0b0eae8611d4853f4a435c493456caf9b5d59a8a1","2a384b586ea99e91b5a77f42ec220907c6b7ef601b0f5099c3bce536502a1729","70ace4d4db6dfa1fc6957204063a8f7cc65b92e8f30b8f0e51f3caf8e3d0f880","d99dc8d21c594488cb596d58a57ceb2c2536ccd9147e4c1df22fa2fa19360a8b","49b2773f7280655250e197718bf71feb7364163997ab5a47f23406cd558401c9","5c9110dbe0529c1dc691fdb7f8bc34f22f1f4be15338e69c36b8322731e8c883","13c3a6f8331bf248134563a703f6abbf9e51269657dc17d587cf269a0e3ec740","be2be3f19b8e69e495b04d45d4d5bbfb2190fe6a505bd07a8870357f092485c1","a2fcd8d08ff6c404a6b3f9559296a0851c21a24a84896ffce7e64ec7b0839351","e674daba20d22ed76b226c7f7a310caca3c76644ebc17a7fcacb50a4062d0461","21c0391321d08d829ccc886ddbb17160f87971ef98136a1b423c4ccb9ed0cdad","fe28793326526603e223ab04b00f76994d613ee58648f72663b7bec828c89db5","0de98f199b73d70b5693dba001403e7306c6d913eca766ae234b9961543c78a2","ee826c8f8f283f6e3898d06da9ca81789790e69fbd53810006fa504187055c8c","1e9704378dc57075033c705776320e7122c7c27853f503649d56f5582863ddfc","8bbda42155f407428d41bbbe53cc83d8b4e6360a0ed5968495bb18f751ce33ea","f265d21a700d82acb5b56b1b1f9bd7f53761c92038fe199d9c4ae1cca93754e2","17b984497972e22bcde81e57083484ddb1a9ecff70093669f92c09f19b762f2d","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","48af3609dc95fa62c22c8ec047530daf1776504524d284d2c3f9c163725bdbd4","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","1fefab6dc739d33b7cb3fd08cd9d35dd279fcd7746965e200500b1a44d32db9e","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","040cb635dff5fc934413fa211d3a982122bf0e46acae9f7a369c61811f277047","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","a186fde3b1dde9642dda936e23a21cb73428340eb817e62f4442bb0fca6fa351","985ac70f005fb77a2bc0ed4f2c80d55919ded6a9b03d00d94aab75205b0778ec","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","89d029475445d677c18cf9a8c75751325616d353925681385da49aeef9260ab7","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","b5267af8d0a1e00092cceed845f69f5c44264cb770befc57d48dcf6a098cb731","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","ecc43d0b219916b833893f4fdd2d6c858b299cb6a8d53d149cb956d0eaffcb1e","48f3ea091fded494bcfb7d29807a22947aab0c748269298f1b93d75aaf0e0513","9dcfe8f38bbf953685118e1ca56d3f7d26c10da5361206bf67577c0b0590b5d0","2b6c4df33927646821cf29b5226c1f4fe508b3bc2dfd8b44990552b4b80bb963",{"version":"e6035e279f274d6bdf608c06100c5fd6b720ea0428d942a1204fc09679945b7e","signature":"b62262a423d60051f31f38303a102693ca4ba6a5ade105fc8be93876b1b924a8"},{"version":"813cc857b81f739ca41b28f2550f8e42074701606947ecb53f25d4a54283ec0d","signature":"1f4a48e8ec41cde2bdbb3173650fba1270547a96e5221f9dd2902f0fce834fd0"},{"version":"2d2fa3675f53f036515268dab4f22d5b747c64def7be955f99fb14ff7b847e0a","signature":"ba43fd2520aca0713985aaff3ead120dc99dbe3a6540838c848c43b2e237221b"},"48270f2ef65915134e0459c517a3271486a99b451209f7a4c16c62f52c9b6b1b","ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","7468ce3ef8243a51ee69aeb3b050f01f34c1e84cd4766fedd1b3594c03e30bbe","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","82e5a50e17833a10eb091923b7e429dc846d42f1c6161eb6beeb964288d98a15","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99",{"version":"c8905dbea83f3220676a669366cd8c1acef56af4d9d72a8b2241b1d044bb4302","affectsGlobalScope":true},"1748c03e7a7d118f7f6648c709507971eb0d416f489958492c5ae625de445184","6382638cfd6a8f05ac8277689de17ba4cd46f8aacefd254a993a53fde9ddc797","151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","c7bdc99177a2a94d25fb13722adaaf5b3291bf70b4d1b27584ba189dd3889ba3",{"version":"d1c92b66c4105659fcad4eb76a1481f7311033e117d0678a1ec545e8ddb8d4c6","affectsGlobalScope":true},"e23424b97418eca3226fd24de079f1203eb70360622e4e093af2aff14d4be6ec","dee93c07b4df5e26010dc9ec4cdf4d6e4076bb4474d2a8371529217c8b2740a4","ed40f2f184db052dc8df62d1f199823c8bbccc487c0a2a7c54eeea0badcf4378","04eaa93bd75f937f9184dcb95a7983800c5770cf8ddd8ac0f3734dc02f5b20ef",{"version":"c8155caf28fc7b0a564156a5df28ad8a844a3bd32d331d148d8f3ce88025c870","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","dfc747ab8dd5f623055a4c26fd35e8cceca869fd3f1cf09701c941ca3679665a","c9f5f2920ff61d7158417b8440d5181ddc34a3dfef811a5677dd8a9fb91471e9","5cc0a492da3602510b8f5ed1852b1e0390002780d8758fbc8c0cd023ca7085f8","ec7dafafe751a5121f8f1c80201ebe7e7238c47e6329280a73c4d1ca4bb7fa28","64debeb10e4b7ae4ec9e89bfb4e04c6101ab98c3cc806d14e5488607cfec2753",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"a5782d6cea81fe43d2db7ed41e789458c933ab3ab60602f7b5b14c4da3370496","affectsGlobalScope":true},"f258ba66915f0196ec344bc53afe1888240bbcc855ebd151b6cc072275533319","6194335ee3353f7226ba31f31d6301d0c6be87228419c0a08976ccd9d4f1213e","3ac12a54cfaa84683506db8d4cf779135a271d9f0ec18930cf53e61fbeea0c5d","cf3d3b087d1a8a3355eec47d206162c75e912315b9b5c1cd49fda93e948fb80a","36f316c066c4a72dd6f19fec49a074f935744fc9ccbe75c87ebc07fb2feb9062","42176966283d3835c34278b9b5c0f470d484c0c0c6a55c20a2c916a1ce69b6e8","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","ec70fd6f8a9a83f850dab2960a6789e93d5b034b354a16814cad5daabf62a360","e2236264a811ed1d09a2487a433e8f5216ae62378cf233954ae220cf886f6717","3ec1e108d587a5661ec790db607f482605ba9f3830e118ce578e3ffa3c42e22b","100b3bb9d39d2b1b5340f1bf45a52e94ef1692b45232b4ba00fac5c3cc56d331",{"version":"04fe7e7d8008887943260af1fde2bfd4877e0dc57bf634e0f0b2f3d1794dfd11","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","992c6f6be16c0a1d2eec13ece33adeea2c747ba27fcd078353a8f4bb5b4fea58","2597718d91e306949d89e285bf34c44192014ef541c3bd7cbb825c022749e974","a6b0abdb67d63ebe964ba5fee31bc3daf10c12eecd46b24d778426010c04c67e","ac4801ebc2355ba32329070123b1cd15891bf71b41dcaf9e75b4744832126a59","fd2298fba0640e7295e7bd545e2dfbfcccbb00c27019e501c87965a02bbdebf6","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","71ddd49185b68f27bfac127ef5d22cb2672c278e53e5370d9020ef50ca9c377d","b1ea7a6eaa7608e0e0529aebd323b526a79c6c05a4e519ae5c779675004dcdf1","9fcb033a6208485d8f3fadde31eb5cbcaf99149cff3e40c0dc53ebc6d0dff4e9","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","dcc6910d95a3625fd2b0487fda055988e46ab46c357a1b3618c27b4a8dd739c9","f4149f1aa299474c7040a35fe8f8ac2ad078cc1b190415adc1fff3ed52d490ea","3730099ed008776216268a97771de31753ef71e0a7d0ec650f588cba2a06ce44","8d649dbc429d7139a1d9a14ea2bf8af1dc089e0a879447539587463d4b6c248c","60c9e27816ec8ac8df7240598bb086e95b47edfb454c5cbf4003c812e0ed6e39","e361aecf17fc4034b4c122a1564471cdcd22ef3a51407803cb5a5fc020c04d02","4926467de88a92a4fc9971d8c6f21b91eca1c0e7fc2a46cc4638ab9440c73875",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"fc0ae4a8ad3c762b96f9d2c3700cb879a373458cb0bf3175478e3b4f85f7ef2f","fabbec378e1ddd86fcf2662e716c2b8318acedb664ee3a4cba6f9e8ee8269cf1","b3593bd345ebea5e4d0a894c03251a3774b34df3d6db57075c18e089a599ba76","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","efd55e8ca79171bf26c0d0e30221cb8ee1f5a31dd0c791ec4b2e886f42bab124","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","d6c7f76b8c7fecd5d75e3effd77a8593a13105e96c6dc09aaef4308fbb769560","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","54060f716fdbd7ac1008ac85256a400722332917837d1c0d6fdb7c9e8fa8b1cb","f8a6bb79327f4a6afc63d28624654522fc80f7536efa7a617ef48200b7a5f673","8e0733c50eaac49b4e84954106acc144ec1a8019922d6afcde3762523a3634af","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fbca5ffaebf282ec3cdac47b0d1d4a138a8b0bb32105251a38acb235087d3318","22293bd6fa12747929f8dfca3ec1684a3fe08638aa18023dd286ab337e88a592","5aca5a3bc07d2e16b6824a76c30378d6fb1b92e915d854315e1d1bd2d00974c9","ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","1f4ae755492a669b317903a6b1664cb7af3fe0c3d1eec6447f4e95a80616d15a","03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","89121c1bf2990f5219bfd802a3e7fc557de447c62058d6af68d6b6348d64499a","6d09838b65c3c780513878793fc394ae29b8595d9e4729246d14ce69abc71140","5c5d901a999dfe64746ef4244618ae0628ac8afdb07975e3d5ed66e33c767ed0","85d08536e6cd9787f82261674e7d566421a84d286679db1503432a6ccf9e9625","6f56706c6828d0299f46f8b1a79ecae0757b91b48e63baf6f0c5292d02037129","2667c74200427135a2ff0a5f4f7cb6044bf483318a5c30e5d9eccdbfe372a529","9a2eaab4e54953c6b2ba21f7ac4c2593859da03917011c10a2acd8864e38e7b2","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7"],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":2,"module":1,"noEmitOnError":false,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"target":2},"fileIdsList":[[288],[54],[41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82],[52],[52,53],[52,54],[87],[87,89],[84,85],[83],[87,88],[83,86],[97,98,99,100,101,102,103,104,105,106,107],[99],[83,99],[92,99],[90,96,99],[83,90,91,92,96,97,98],[37,39],[288,289,290,291,292],[288,290],[294],[314,350],[136],[313,314,350,352],[37],[355],[356],[362,364],[358,359],[358,359,360,361],[363],[133,135,136],[370,371],[348],[347,348],[302,307],[313,314,321,330],[303,313,321],[339],[307,314,322],[330,335],[310,313,321],[311],[310],[313],[313,315,330,338],[313,314,330],[321,330,338],[313,314,316,321,330,335,338],[316,330,335,338],[349],[338],[310,313,330],[323],[301],[337],[328,339,342],[313,331],[330],[333],[307,321],[299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346],[321],[327],[340],[302,307,313,315,324,330,338,342],[34,35,36],[35,37,38],[350,380,382],[335,350],[313,316,318,330,335,338,344,350],[386],[37,147],[37,147,148],[146,147],[37,144,147,149,150,151,166],[146],[37,146,147],[147,152],[37,150],[145,146,147,148,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165],[147,149],[145,146,147,148],[144],[144,145],[180,181,187,188],[189,254,255],[180,187,189],[181,189],[180,182,183,184,187,189,192,193],[183,194,208,209],[180,187,192,193,194],[180,182,187,189,191,192,193],[180,181,192,193,194],[179,195,200,207,210,211,253,256,278],[180],[181,185,186],[181,185,186,187,188,190,201,202,203,204,205,206],[181,186,187],[181],[180,181,186,187,189,202],[187],[181,187,188],[185,187],[194,208],[180,182,183,184,187,192],[180,187,190,193],[183,191,192,193,196,197,198,199],[193],[180,182,187,189,191,193],[189,192],[180,187,191,192,193,205],[189],[180,187,193],[181,187,192,203],[192,257],[189,193],[187,192],[192],[180,190],[180,187],[187,192,193],[212,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277],[192,193],[182,187],[180,182,187,193],[180,182,187],[180,187,189,191,192,193,205,212],[213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252],[205,213],[213,215],[180,187,189,192,212,213],[93,94,95],[90,93],[83,90],[133,134,137,138,139,140,141,142,143],[37,83,90,91,92,96,108,110,111,112,113,114,115,116,117,118,119],[37,92,108,110],[37,108,110],[37,83,108],[37,110],[37,96,108],[37,108],[110],[37,108,109],[37,96,110],[166],[381],[379],[37,167],[37,39,144,167,168,169,170],[37,39,144,167],[144,167],[37,129],[128,130],[172,173,174,175,176,177,280,281],[123],[123,178,279],[37,40,124],[39],[37,123],[37,120,123,125,127,131,132,171,282,283,284,286],[120,123,127,282],[37,120,121,122],[126],[123,127,283],[120,123,127]],"referencedMap":[[290,1],[55,2],[57,2],[58,2],[61,2],[62,2],[63,2],[64,2],[65,2],[66,2],[67,2],[68,2],[69,2],[70,2],[71,2],[72,2],[73,2],[60,2],[83,3],[80,4],[81,4],[54,5],[53,6],[82,5],[88,7],[90,8],[86,9],[85,10],[89,11],[87,12],[91,10],[92,10],[108,13],[107,14],[101,15],[102,14],[97,14],[103,16],[100,17],[106,14],[104,15],[105,14],[99,18],[98,15],[121,19],[293,20],[289,1],[291,21],[292,1],[295,22],[351,23],[139,24],[353,25],[354,23],[38,26],[356,27],[357,28],[365,29],[360,30],[362,31],[361,30],[364,32],[137,33],[371,34],[299,35],[349,36],[302,37],[303,38],[304,39],[305,40],[306,41],[307,42],[308,43],[310,44],[311,45],[312,46],[313,46],[314,47],[315,48],[316,49],[317,50],[318,51],[350,52],[319,46],[320,53],[321,54],[323,55],[324,56],[325,57],[328,46],[329,58],[330,59],[331,60],[333,46],[334,61],[335,62],[347,63],[337,64],[338,65],[339,66],[341,60],[343,67],[344,60],[37,68],[39,69],[143,24],[383,70],[384,71],[385,72],[387,73],[155,74],[156,74],[157,75],[163,76],[161,74],[152,77],[153,75],[158,74],[154,75],[159,74],[162,78],[160,79],[164,80],[165,81],[166,82],[150,83],[149,84],[145,85],[148,86],[147,85],[146,85],[189,87],[256,88],[255,89],[254,90],[194,91],[210,92],[208,93],[209,94],[195,95],[279,96],[183,97],[187,98],[207,99],[202,100],[188,101],[203,102],[206,103],[201,104],[204,103],[205,105],[211,106],[193,107],[191,108],[200,109],[197,110],[196,110],[192,111],[198,112],[212,113],[275,114],[269,115],[262,116],[261,117],[270,118],[271,103],[263,119],[276,120],[257,121],[258,122],[259,123],[278,124],[260,117],[264,120],[265,125],[272,126],[273,101],[274,125],[266,123],[277,103],[267,127],[268,128],[213,129],[253,130],[217,131],[218,131],[219,131],[220,131],[221,131],[222,131],[223,131],[224,131],[243,131],[215,131],[225,131],[226,131],[227,131],[228,131],[229,131],[230,131],[250,131],[231,131],[232,131],[233,131],[248,131],[234,131],[249,131],[235,131],[246,131],[247,131],[236,131],[237,131],[238,131],[244,131],[245,131],[239,131],[240,131],[241,131],[242,131],[251,131],[252,131],[216,132],[214,133],[96,134],[94,135],[93,136],[144,137],[120,138],[119,139],[114,140],[118,141],[111,142],[117,143],[116,144],[113,140],[115,141],[112,145],[110,146],[109,147],[167,148],[382,149],[381,150],[170,151],[171,152],[168,153],[169,154],[128,26],[130,155],[131,156],[282,157],[172,158],[173,158],[280,159],[174,158],[281,26],[176,158],[125,160],[40,161],[124,162],[285,163],[284,161],[283,164],[122,26],[123,165],[127,166]],"exportedModulesMap":[[290,1],[55,2],[57,2],[58,2],[61,2],[62,2],[63,2],[64,2],[65,2],[66,2],[67,2],[68,2],[69,2],[70,2],[71,2],[72,2],[73,2],[60,2],[83,3],[80,4],[81,4],[54,5],[53,6],[82,5],[88,7],[90,8],[86,9],[85,10],[89,11],[87,12],[91,10],[92,10],[108,13],[107,14],[101,15],[102,14],[97,14],[103,16],[100,17],[106,14],[104,15],[105,14],[99,18],[98,15],[121,19],[293,20],[289,1],[291,21],[292,1],[295,22],[351,23],[139,24],[353,25],[354,23],[38,26],[356,27],[357,28],[365,29],[360,30],[362,31],[361,30],[364,32],[137,33],[371,34],[299,35],[349,36],[302,37],[303,38],[304,39],[305,40],[306,41],[307,42],[308,43],[310,44],[311,45],[312,46],[313,46],[314,47],[315,48],[316,49],[317,50],[318,51],[350,52],[319,46],[320,53],[321,54],[323,55],[324,56],[325,57],[328,46],[329,58],[330,59],[331,60],[333,46],[334,61],[335,62],[347,63],[337,64],[338,65],[339,66],[341,60],[343,67],[344,60],[37,68],[39,69],[143,24],[383,70],[384,71],[385,72],[387,73],[155,74],[156,74],[157,75],[163,76],[161,74],[152,77],[153,75],[158,74],[154,75],[159,74],[162,78],[160,79],[164,80],[165,81],[166,82],[150,83],[149,84],[145,85],[148,86],[147,85],[146,85],[189,87],[256,88],[255,89],[254,90],[194,91],[210,92],[208,93],[209,94],[195,95],[279,96],[183,97],[187,98],[207,99],[202,100],[188,101],[203,102],[206,103],[201,104],[204,103],[205,105],[211,106],[193,107],[191,108],[200,109],[197,110],[196,110],[192,111],[198,112],[212,113],[275,114],[269,115],[262,116],[261,117],[270,118],[271,103],[263,119],[276,120],[257,121],[258,122],[259,123],[278,124],[260,117],[264,120],[265,125],[272,126],[273,101],[274,125],[266,123],[277,103],[267,127],[268,128],[213,129],[253,130],[217,131],[218,131],[219,131],[220,131],[221,131],[222,131],[223,131],[224,131],[243,131],[215,131],[225,131],[226,131],[227,131],[228,131],[229,131],[230,131],[250,131],[231,131],[232,131],[233,131],[248,131],[234,131],[249,131],[235,131],[246,131],[247,131],[236,131],[237,131],[238,131],[244,131],[245,131],[239,131],[240,131],[241,131],[242,131],[251,131],[252,131],[216,132],[214,133],[96,134],[94,135],[93,136],[144,137],[120,138],[119,139],[114,140],[118,141],[111,142],[117,143],[116,144],[113,140],[115,141],[112,145],[110,146],[109,147],[167,148],[382,149],[381,150],[170,151],[171,152],[168,153],[169,154],[128,26],[130,155],[131,156],[282,157],[172,158],[173,158],[280,159],[174,158],[281,26],[176,158],[125,160],[40,161],[124,162],[285,167],[284,161],[283,168],[122,26],[123,165],[127,166]],"semanticDiagnosticsPerFile":[290,288,178,77,41,42,43,44,45,46,47,48,49,50,51,55,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,73,60,74,75,78,83,52,79,80,81,54,53,82,76,88,90,84,86,85,89,87,91,92,108,107,101,102,97,103,100,106,104,105,99,98,134,138,121,287,293,289,291,292,295,296,294,297,298,132,351,139,136,353,352,354,38,355,356,357,365,358,360,362,361,359,364,363,366,367,368,369,133,137,371,370,372,373,348,299,301,349,302,303,304,305,306,307,308,309,310,311,312,313,314,315,300,345,316,317,318,350,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,347,337,338,339,340,341,342,346,343,344,374,135,36,34,37,375,376,377,39,143,378,379,383,380,384,385,386,387,155,156,157,163,161,152,153,158,154,159,162,160,164,165,166,150,149,145,148,147,146,151,35,140,189,256,255,254,194,210,208,209,195,279,180,182,183,184,187,190,207,185,202,188,203,206,201,204,181,186,205,211,199,193,191,200,197,196,192,198,212,275,269,262,261,270,271,263,276,257,258,259,278,260,264,265,272,273,274,266,277,267,268,213,253,217,218,219,220,221,222,223,224,243,215,225,226,227,228,229,230,250,231,232,233,248,234,249,235,246,247,236,237,238,244,245,239,240,241,242,251,252,216,214,179,96,94,95,93,141,144,142,120,119,114,118,111,117,116,113,115,112,110,109,167,7,8,12,11,3,13,14,15,16,17,18,19,20,4,5,24,21,22,23,25,26,27,6,28,29,30,31,32,2,1,33,10,9,382,381,170,171,168,169,128,129,130,131,282,172,173,280,174,175,281,176,177,125,40,124,286,285,284,283,122,123,127,126],"latestChangedDtsFile":"./lib/index.d.ts"},"version":"4.9.5"}
|