diff --git a/docs/blueprint-landing.js b/docs/blueprint-landing.js index b407e7b41b..79bc0a7a13 100644 --- a/docs/blueprint-landing.js +++ b/docs/blueprint-landing.js @@ -96,9 +96,9 @@ Object.defineProperty(exports, "__esModule", { value: true }); var core_1 = __webpack_require__(18); core_1.FocusStyleManager.onlyShowFocusOnTabs(); - var Logo = __webpack_require__(291); + var Logo = __webpack_require__(293); Logo.init(document.querySelector("header canvas.pt-logo"), document.querySelector("header canvas.pt-logo-background")); - var SVGs = __webpack_require__(292); + var SVGs = __webpack_require__(294); SVGs.init(document.querySelector(".pt-wireframes")); var copyright = ".pt-copyright .pt-container > div:first-child"; document.querySelector(copyright).innerHTML = "\u00A9 2014\u2013" + new Date().getFullYear() + " Palantir Technologies"; @@ -4931,6 +4931,15 @@ } } exports.safeInvoke = safeInvoke; + // tslint:disable-next-line:ban-types + function safeInvokeOrValue(funcOrValue) { + var args = []; + for (var _i = 1; _i < arguments.length; _i++) { + args[_i - 1] = arguments[_i]; + } + return isFunction(funcOrValue) ? funcOrValue.apply(void 0, args) : funcOrValue; + } + exports.safeInvokeOrValue = safeInvokeOrValue; function elementIsOrContains(element, testElement) { return element === testElement || element.contains(testElement); } @@ -6745,42 +6754,44 @@ __export(__webpack_require__(243)); __export(__webpack_require__(249)); __export(__webpack_require__(250)); - __export(__webpack_require__(253)); - __export(__webpack_require__(247)); + __export(__webpack_require__(251)); __export(__webpack_require__(254)); - __export(__webpack_require__(257)); + __export(__webpack_require__(247)); + __export(__webpack_require__(255)); __export(__webpack_require__(258)); __export(__webpack_require__(259)); __export(__webpack_require__(260)); __export(__webpack_require__(261)); + __export(__webpack_require__(262)); + __export(__webpack_require__(263)); __export(__webpack_require__(245)); - __export(__webpack_require__(251)); - __export(__webpack_require__(268)); __export(__webpack_require__(252)); - __export(__webpack_require__(269)); - __export(__webpack_require__(225)); __export(__webpack_require__(270)); - __export(__webpack_require__(221)); + __export(__webpack_require__(253)); __export(__webpack_require__(271)); - __export(__webpack_require__(239)); + __export(__webpack_require__(225)); __export(__webpack_require__(272)); + __export(__webpack_require__(221)); __export(__webpack_require__(273)); + __export(__webpack_require__(239)); __export(__webpack_require__(274)); - __export(__webpack_require__(277)); - __export(__webpack_require__(246)); - __export(__webpack_require__(278)); + __export(__webpack_require__(275)); + __export(__webpack_require__(276)); __export(__webpack_require__(279)); + __export(__webpack_require__(246)); __export(__webpack_require__(280)); __export(__webpack_require__(281)); __export(__webpack_require__(282)); __export(__webpack_require__(283)); __export(__webpack_require__(284)); + __export(__webpack_require__(285)); __export(__webpack_require__(286)); - __export(__webpack_require__(287)); __export(__webpack_require__(288)); - __export(__webpack_require__(240)); __export(__webpack_require__(289)); __export(__webpack_require__(290)); + __export(__webpack_require__(240)); + __export(__webpack_require__(291)); + __export(__webpack_require__(292)); //# sourceMappingURL=index.js.map @@ -27851,7 +27862,7 @@ document.addEventListener("focus", lastOpenedOverlay.handleDocumentFocus, /* useCapture */ true); } } - else { + if (openStack.filter(function (o) { return !o.props.inline && o.props.hasBackdrop; }).length === 0) { document.body.classList.remove(Classes.OVERLAY_OPEN); } } @@ -30743,6 +30754,45 @@ /***/ }), /* 249 */ +/***/ (function(module, exports, __webpack_require__) { + + /* + * Copyright 2017 Palantir Technologies, Inc. All rights reserved. + * Licensed under the BSD-3 License as modified (the “License”); you may obtain a copy + * of the license at https://github.com/palantir/blueprint/blob/master/LICENSE + * and https://github.com/palantir/blueprint/blob/master/PATENTS + */ + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + var tslib_1 = __webpack_require__(24); + var classNames = __webpack_require__(222); + var PureRender = __webpack_require__(223); + var React = __webpack_require__(25); + var common_1 = __webpack_require__(22); + var Callout = (function (_super) { + tslib_1.__extends(Callout, _super); + function Callout() { + return _super !== null && _super.apply(this, arguments) || this; + } + Callout.prototype.render = function () { + var _a = this.props, className = _a.className, children = _a.children, iconName = _a.iconName, intent = _a.intent, title = _a.title, htmlProps = tslib_1.__rest(_a, ["className", "children", "iconName", "intent", "title"]); + var classes = classNames(common_1.Classes.CALLOUT, common_1.Classes.intentClass(intent), common_1.Classes.iconClass(iconName), className); + return (React.createElement("div", tslib_1.__assign({ className: classes }, htmlProps), + title && React.createElement("h5", null, title), + children)); + }; + return Callout; + }(React.Component)); + Callout = tslib_1.__decorate([ + PureRender + ], Callout); + exports.Callout = Callout; + + //# sourceMappingURL=callout.js.map + + +/***/ }), +/* 250 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30904,7 +30954,7 @@ /***/ }), -/* 250 */ +/* 251 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30921,8 +30971,8 @@ var Classes = __webpack_require__(68); var Errors = __webpack_require__(61); var position_1 = __webpack_require__(65); - var menu_1 = __webpack_require__(251); - var menuItem_1 = __webpack_require__(252); + var menu_1 = __webpack_require__(252); + var menuItem_1 = __webpack_require__(253); var popover_1 = __webpack_require__(221); var CollapseFrom; (function (CollapseFrom) { @@ -30993,7 +31043,7 @@ /***/ }), -/* 251 */ +/* 252 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31026,7 +31076,7 @@ /***/ }), -/* 252 */ +/* 253 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31046,7 +31096,7 @@ var Errors = __webpack_require__(61); var position_1 = __webpack_require__(65); var popover_1 = __webpack_require__(221); - var menu_1 = __webpack_require__(251); + var menu_1 = __webpack_require__(252); var REACT_CONTEXT_TYPES = { alignLeft: function (obj, key) { if (obj[key] != null && typeof obj[key] !== "boolean") { @@ -31200,7 +31250,7 @@ /***/ }), -/* 253 */ +/* 254 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31255,7 +31305,7 @@ /***/ }), -/* 254 */ +/* 255 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31274,7 +31324,7 @@ var Classes = __webpack_require__(68); var Keys = __webpack_require__(69); var utils_1 = __webpack_require__(60); - var compatibility_1 = __webpack_require__(255); + var compatibility_1 = __webpack_require__(256); var BUFFER_WIDTH_EDGE = 5; var BUFFER_WIDTH_IE = 30; var EditableText = (function (_super) { @@ -31526,7 +31576,7 @@ /***/ }), -/* 255 */ +/* 256 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31540,13 +31590,13 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(256)); + __export(__webpack_require__(257)); //# sourceMappingURL=index.js.map /***/ }), -/* 256 */ +/* 257 */ /***/ (function(module, exports) { /* @@ -31573,7 +31623,7 @@ /***/ }), -/* 257 */ +/* 258 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31690,7 +31740,76 @@ /***/ }), -/* 258 */ +/* 259 */ +/***/ (function(module, exports, __webpack_require__) { + + /* + * Copyright 2017 Palantir Technologies, Inc. All rights reserved. + * Licensed under the BSD-3 License as modified (the “License”); you may obtain a copy + * of the license at https://github.com/palantir/blueprint/blob/master/LICENSE + * and https://github.com/palantir/blueprint/blob/master/PATENTS + */ + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + var tslib_1 = __webpack_require__(24); + var classNames = __webpack_require__(222); + var PureRender = __webpack_require__(223); + var React = __webpack_require__(25); + var Classes = __webpack_require__(68); + var FormGroup = FormGroup_1 = (function (_super) { + tslib_1.__extends(FormGroup, _super); + function FormGroup() { + return _super !== null && _super.apply(this, arguments) || this; + } + FormGroup.prototype.render = function () { + var _a = this.props, children = _a.children, label = _a.label, labelFor = _a.labelFor; + return (React.createElement("div", { className: this.getClassName() }, + React.createElement("label", { className: Classes.LABEL, htmlFor: labelFor }, + label, + this.maybeRenderRequiredLabel()), + React.createElement("div", { className: Classes.FORM_CONTENT }, + children, + this.maybeRenderHelperText()))); + }; + FormGroup.prototype.getClassName = function () { + var _a = this.props, className = _a.className, disabled = _a.disabled, inline = _a.inline, intent = _a.intent; + return classNames(Classes.FORM_GROUP, Classes.intentClass(intent), (_b = {}, + _b[Classes.DISABLED] = disabled, + _b[Classes.INLINE] = inline, + _b), className); + var _b; + }; + FormGroup.prototype.maybeRenderRequiredLabel = function () { + var requiredLabel = this.props.requiredLabel; + return requiredLabel === true ? FormGroup_1.DEFAULT_REQUIRED_CONTENT : requiredLabel; + }; + FormGroup.prototype.maybeRenderHelperText = function () { + var helperText = this.props.helperText; + if (!helperText) { + return null; + } + return React.createElement("div", { className: Classes.FORM_HELPER_TEXT }, helperText); + }; + return FormGroup; + }(React.Component)); + /** + * Element used to render `required` message when a boolean value is provided for that prop. + * Modifying the value of this property will change the default globally in your app. + * + * Defaults to `(required)`. + */ + FormGroup.DEFAULT_REQUIRED_CONTENT = React.createElement("span", { className: Classes.TEXT_MUTED }, "(required)"); + FormGroup = FormGroup_1 = tslib_1.__decorate([ + PureRender + ], FormGroup); + exports.FormGroup = FormGroup; + var FormGroup_1; + + //# sourceMappingURL=formGroup.js.map + + +/***/ }), +/* 260 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31770,7 +31889,7 @@ /***/ }), -/* 259 */ +/* 261 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31788,7 +31907,7 @@ var common_1 = __webpack_require__(22); var Errors = __webpack_require__(61); var buttons_1 = __webpack_require__(243); - var inputGroup_1 = __webpack_require__(258); + var inputGroup_1 = __webpack_require__(260); var IncrementDirection; (function (IncrementDirection) { IncrementDirection[IncrementDirection["DOWN"] = -1] = "DOWN"; @@ -32161,7 +32280,7 @@ /***/ }), -/* 260 */ +/* 262 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32177,7 +32296,7 @@ var abstractComponent_1 = __webpack_require__(23); var Classes = __webpack_require__(68); var Errors = __webpack_require__(61); - var controls_1 = __webpack_require__(257); + var controls_1 = __webpack_require__(258); var counter = 0; function nextName() { return RadioGroup.displayName + "-" + counter++; @@ -32239,7 +32358,7 @@ /***/ }), -/* 261 */ +/* 263 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32254,19 +32373,19 @@ var React = __webpack_require__(25); var common_1 = __webpack_require__(22); var errors_1 = __webpack_require__(61); - var hotkey_1 = __webpack_require__(262); - var hotkey_2 = __webpack_require__(262); + var hotkey_1 = __webpack_require__(264); + var hotkey_2 = __webpack_require__(264); exports.Hotkey = hotkey_2.Hotkey; - var keyCombo_1 = __webpack_require__(263); + var keyCombo_1 = __webpack_require__(265); exports.KeyCombo = keyCombo_1.KeyCombo; - var hotkeysTarget_1 = __webpack_require__(265); + var hotkeysTarget_1 = __webpack_require__(267); exports.HotkeysTarget = hotkeysTarget_1.HotkeysTarget; - var hotkeyParser_1 = __webpack_require__(264); + var hotkeyParser_1 = __webpack_require__(266); exports.comboMatches = hotkeyParser_1.comboMatches; exports.getKeyCombo = hotkeyParser_1.getKeyCombo; exports.getKeyComboString = hotkeyParser_1.getKeyComboString; exports.parseKeyCombo = hotkeyParser_1.parseKeyCombo; - var hotkeysDialog_1 = __webpack_require__(267); + var hotkeysDialog_1 = __webpack_require__(269); exports.hideHotkeysDialog = hotkeysDialog_1.hideHotkeysDialog; exports.setHotkeysDialogProps = hotkeysDialog_1.setHotkeysDialogProps; var Hotkeys = (function (_super) { @@ -32317,7 +32436,7 @@ /***/ }), -/* 262 */ +/* 264 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32331,7 +32450,7 @@ var tslib_1 = __webpack_require__(24); var React = __webpack_require__(25); var common_1 = __webpack_require__(22); - var keyCombo_1 = __webpack_require__(263); + var keyCombo_1 = __webpack_require__(265); var Hotkey = (function (_super) { tslib_1.__extends(Hotkey, _super); function Hotkey() { @@ -32366,7 +32485,7 @@ /***/ }), -/* 263 */ +/* 265 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -32379,7 +32498,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(24); var React = __webpack_require__(25); - var hotkeyParser_1 = __webpack_require__(264); + var hotkeyParser_1 = __webpack_require__(266); var KeyIcons = { alt: "pt-icon-key-option", cmd: "pt-icon-key-command", @@ -32426,7 +32545,7 @@ /***/ }), -/* 264 */ +/* 266 */ /***/ (function(module, exports) { /* @@ -32709,7 +32828,7 @@ /***/ }), -/* 265 */ +/* 267 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32722,7 +32841,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); var React = __webpack_require__(25); var utils_1 = __webpack_require__(60); - var hotkeysEvents_1 = __webpack_require__(266); + var hotkeysEvents_1 = __webpack_require__(268); function HotkeysTarget(constructor) { var _a = constructor.prototype, componentWillMount = _a.componentWillMount, componentDidMount = _a.componentDidMount, componentWillUnmount = _a.componentWillUnmount, render = _a.render, renderHotkeys = _a.renderHotkeys; if (!utils_1.isFunction(renderHotkeys)) { @@ -32787,7 +32906,7 @@ /***/ }), -/* 266 */ +/* 268 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32800,9 +32919,9 @@ Object.defineProperty(exports, "__esModule", { value: true }); var react_1 = __webpack_require__(25); var utils_1 = __webpack_require__(60); - var hotkey_1 = __webpack_require__(262); - var hotkeyParser_1 = __webpack_require__(264); - var hotkeysDialog_1 = __webpack_require__(267); + var hotkey_1 = __webpack_require__(264); + var hotkeyParser_1 = __webpack_require__(266); + var hotkeysDialog_1 = __webpack_require__(269); var SHOW_DIALOG_KEY = "?"; var HotkeyScope; (function (HotkeyScope) { @@ -32910,7 +33029,7 @@ /***/ }), -/* 267 */ +/* 269 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32927,8 +33046,8 @@ var ReactDOM = __webpack_require__(75); var common_1 = __webpack_require__(22); var components_1 = __webpack_require__(72); - var hotkey_1 = __webpack_require__(262); - var hotkeys_1 = __webpack_require__(261); + var hotkey_1 = __webpack_require__(264); + var hotkeys_1 = __webpack_require__(263); /** * The delay before showing or hiding the dialog. Should be long enough to * allow all registered hotkey listeners to execute first. @@ -33050,7 +33169,7 @@ /***/ }), -/* 268 */ +/* 270 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33092,7 +33211,7 @@ /***/ }), -/* 269 */ +/* 271 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33164,7 +33283,7 @@ /***/ }), -/* 270 */ +/* 272 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33224,7 +33343,7 @@ /***/ }), -/* 271 */ +/* 273 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33255,7 +33374,7 @@ /***/ }), -/* 272 */ +/* 274 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33298,7 +33417,7 @@ /***/ }), -/* 273 */ +/* 275 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33329,7 +33448,7 @@ /***/ }), -/* 274 */ +/* 276 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33346,8 +33465,8 @@ var Classes = __webpack_require__(68); var Errors = __webpack_require__(61); var utils_1 = __webpack_require__(60); - var coreSlider_1 = __webpack_require__(275); - var handle_1 = __webpack_require__(276); + var coreSlider_1 = __webpack_require__(277); + var handle_1 = __webpack_require__(278); var RangeEnd; (function (RangeEnd) { RangeEnd[RangeEnd["LEFT"] = 0] = "LEFT"; @@ -33453,7 +33572,7 @@ /***/ }), -/* 275 */ +/* 277 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33589,7 +33708,7 @@ /***/ }), -/* 276 */ +/* 278 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33744,7 +33863,7 @@ /***/ }), -/* 277 */ +/* 279 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33759,8 +33878,8 @@ var React = __webpack_require__(25); var Classes = __webpack_require__(68); var utils_1 = __webpack_require__(60); - var coreSlider_1 = __webpack_require__(275); - var handle_1 = __webpack_require__(276); + var coreSlider_1 = __webpack_require__(277); + var handle_1 = __webpack_require__(278); var Slider = (function (_super) { tslib_1.__extends(Slider, _super); function Slider() { @@ -33813,7 +33932,7 @@ /***/ }), -/* 278 */ +/* 280 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33848,7 +33967,7 @@ /***/ }), -/* 279 */ +/* 281 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33889,7 +34008,7 @@ /***/ }), -/* 280 */ +/* 282 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33910,9 +34029,9 @@ var Errors = __webpack_require__(61); var Keys = __webpack_require__(69); var Utils = __webpack_require__(60); - var tab_1 = __webpack_require__(279); - var tabList_1 = __webpack_require__(281); - var tabPanel_1 = __webpack_require__(282); + var tab_1 = __webpack_require__(281); + var tabList_1 = __webpack_require__(283); + var tabPanel_1 = __webpack_require__(284); var TAB_CSS_SELECTOR = "li[role=tab]"; var Tabs = (function (_super) { tslib_1.__extends(Tabs, _super); @@ -34200,7 +34319,7 @@ /***/ }), -/* 281 */ +/* 283 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34251,7 +34370,7 @@ /***/ }), -/* 282 */ +/* 284 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34288,7 +34407,7 @@ /***/ }), -/* 283 */ +/* 285 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34332,7 +34451,7 @@ /***/ }), -/* 284 */ +/* 286 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34351,8 +34470,8 @@ var Classes = __webpack_require__(68); var Keys = __webpack_require__(69); var Utils = __webpack_require__(60); - var tab2_1 = __webpack_require__(283); - var tabTitle_1 = __webpack_require__(285); + var tab2_1 = __webpack_require__(285); + var tabTitle_1 = __webpack_require__(287); exports.Expander = function () { return React.createElement("div", { className: "pt-flex-expander" }); }; var TAB_SELECTOR = "." + Classes.TAB; var Tabs2 = (function (_super) { @@ -34415,15 +34534,15 @@ var tabPanels = this.getTabChildren() .filter(this.props.renderActiveTabPanelOnly ? function (tab) { return tab.props.id === selectedTabId; } : function () { return true; }) .map(this.renderTabPanel); - var tabIndicator = (React.createElement("div", { className: "pt-tab-indicator-wrapper", style: indicatorWrapperStyle }, - React.createElement("div", { className: "pt-tab-indicator" }))); + var tabIndicator = this.props.animate ? (React.createElement("div", { className: "pt-tab-indicator-wrapper", style: indicatorWrapperStyle }, + React.createElement("div", { className: "pt-tab-indicator" }))) : (undefined); var classes = classNames(Classes.TABS, (_b = {}, _b[Classes.VERTICAL] = this.props.vertical, _b), this.props.className); var tabListClasses = classNames(Classes.TAB_LIST, (_c = {}, _c[Classes.LARGE] = this.props.large, _c)); return (React.createElement("div", { className: classes }, React.createElement("div", { className: tabListClasses, onKeyDown: this.handleKeyDown, onKeyPress: this.handleKeyPress, ref: this.refHandlers.tablist, role: "tablist" }, - this.props.animate ? tabIndicator : undefined, + tabIndicator, tabTitles), tabPanels)); var _b, _c; @@ -34497,7 +34616,7 @@ * Store the CSS values so the transition animation can start. */ Tabs2.prototype.moveSelectionIndicator = function () { - if (this.tablistElement === undefined) { + if (this.tablistElement === undefined || !this.props.animate) { return; } var tabIdSelector = TAB_SELECTOR + "[data-tab-id=\"" + this.state.selectedTabId + "\"]"; @@ -34545,7 +34664,7 @@ /***/ }), -/* 285 */ +/* 287 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34594,7 +34713,7 @@ /***/ }), -/* 286 */ +/* 288 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34646,7 +34765,7 @@ /***/ }), -/* 287 */ +/* 289 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34736,7 +34855,7 @@ /***/ }), -/* 288 */ +/* 290 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34759,7 +34878,7 @@ var position_1 = __webpack_require__(65); var utils_1 = __webpack_require__(60); var overlay_1 = __webpack_require__(225); - var toast_1 = __webpack_require__(287); + var toast_1 = __webpack_require__(289); var Toaster = Toaster_1 = (function (_super) { tslib_1.__extends(Toaster, _super); function Toaster() { @@ -34869,7 +34988,7 @@ /***/ }), -/* 289 */ +/* 291 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34885,7 +35004,7 @@ var React = __webpack_require__(25); var Classes = __webpack_require__(68); var utils_1 = __webpack_require__(60); - var treeNode_1 = __webpack_require__(290); + var treeNode_1 = __webpack_require__(292); var Tree = (function (_super) { tslib_1.__extends(Tree, _super); function Tree() { @@ -34962,7 +35081,7 @@ /***/ }), -/* 290 */ +/* 292 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34978,7 +35097,7 @@ var React = __webpack_require__(25); var Classes = __webpack_require__(68); var utils_1 = __webpack_require__(60); - var collapse_1 = __webpack_require__(249); + var collapse_1 = __webpack_require__(250); var icon_1 = __webpack_require__(245); var TreeNode = (function (_super) { tslib_1.__extends(TreeNode, _super); @@ -35041,7 +35160,7 @@ /***/ }), -/* 291 */ +/* 293 */ /***/ (function(module, exports) { /** @@ -36167,7 +36286,7 @@ /***/ }), -/* 292 */ +/* 294 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -36180,20 +36299,20 @@ Object.defineProperty(exports, "__esModule", { value: true }); // tslint:disable no-var-requires no-submodule-imports var HERO_SVGS = { - alert: __webpack_require__(293), - buttons: __webpack_require__(294), - calendar: __webpack_require__(295), - checkboxes: __webpack_require__(296), - "file-upload": __webpack_require__(297), - "input-groups": __webpack_require__(298), - inputs: __webpack_require__(299), - labels: __webpack_require__(300), - radios: __webpack_require__(301), - "select-menus": __webpack_require__(302), - sliders: __webpack_require__(303), - switches: __webpack_require__(304), - "time-selections": __webpack_require__(305), - toggles: __webpack_require__(306), + alert: __webpack_require__(295), + buttons: __webpack_require__(296), + calendar: __webpack_require__(297), + checkboxes: __webpack_require__(298), + "file-upload": __webpack_require__(299), + "input-groups": __webpack_require__(300), + inputs: __webpack_require__(301), + labels: __webpack_require__(302), + radios: __webpack_require__(303), + "select-menus": __webpack_require__(304), + sliders: __webpack_require__(305), + switches: __webpack_require__(306), + "time-selections": __webpack_require__(307), + toggles: __webpack_require__(308), }; var injectSVG = function (elem, id) { var wrapper = document.createElement("div"); @@ -36210,85 +36329,85 @@ /***/ }), -/* 293 */ +/* 295 */ /***/ (function(module, exports) { module.exports = "\n \n ALERT\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 294 */ +/* 296 */ /***/ (function(module, exports) { module.exports = "\n \n BUTTONS\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 295 */ +/* 297 */ /***/ (function(module, exports) { module.exports = "\n \n CALENDAR\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 296 */ +/* 298 */ /***/ (function(module, exports) { module.exports = "\n \n CHECKBOXES\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 297 */ +/* 299 */ /***/ (function(module, exports) { module.exports = "\n \n UPLOAD\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 298 */ +/* 300 */ /***/ (function(module, exports) { module.exports = "\n \n INPUTS\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 299 */ +/* 301 */ /***/ (function(module, exports) { module.exports = "\n \n INPUTS\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 300 */ +/* 302 */ /***/ (function(module, exports) { module.exports = "\n \n LABELS\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 301 */ +/* 303 */ /***/ (function(module, exports) { module.exports = "\n \n RADIOS\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 302 */ +/* 304 */ /***/ (function(module, exports) { module.exports = "\n \n SELECT MENUS\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 303 */ +/* 305 */ /***/ (function(module, exports) { module.exports = "\n \n SLIDERS\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 304 */ +/* 306 */ /***/ (function(module, exports) { module.exports = "\n \n SWITCHES\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 305 */ +/* 307 */ /***/ (function(module, exports) { module.exports = "\n \n TIME SELECTIONS\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" /***/ }), -/* 306 */ +/* 308 */ /***/ (function(module, exports) { module.exports = "\n \n TOGGLES\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n" diff --git a/docs/docs/site-docs.css b/docs/docs/site-docs.css index 92e3ae4772..4da3b3a736 100644 --- a/docs/docs/site-docs.css +++ b/docs/docs/site-docs.css @@ -7100,16 +7100,16 @@ table.pt-table.pt-interactive tbody tr:hover td { .bp-table-container { box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.15); } .bp-table-menu { - box-shadow: 1px 0 0 rgba(16, 22, 26, 0.15), 0 1px 0 rgba(16, 22, 26, 0.15); } + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15), 1px 0 0 rgba(16, 22, 26, 0.15); } .bp-table-header { box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15); } .bp-table-cell { - box-shadow: inset -1px 0 0 rgba(16, 22, 26, 0.15), inset 0 -1px 0 rgba(16, 22, 26, 0.15); } + box-shadow: inset 0 -1px 0 rgba(16, 22, 26, 0.15), inset -1px 0 0 rgba(16, 22, 26, 0.15); } .bp-table-horizontal-cell-divider { box-shadow: inset 0 1px 0 rgba(16, 22, 26, 0.15); height: 1px; } .bp-table-column-headers .bp-table-header { - box-shadow: inset -1px 0 0 rgba(16, 22, 26, 0.15), 0 1px 0 rgba(16, 22, 26, 0.15); } + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15), inset -1px 0 0 rgba(16, 22, 26, 0.15); } .bp-table-column-headers .bp-table-header::before { right: 1px; bottom: 0; } @@ -7121,22 +7121,42 @@ table.pt-table.pt-interactive tbody tr:hover td { .bp-table-body .bp-table-last-in-row { box-shadow: inset 0 -1px 0 rgba(16, 22, 26, 0.15), 1px 0 0 rgba(16, 22, 26, 0.15); } .bp-table-body .bp-table-last-in-column { - box-shadow: inset -1px 0 0 rgba(16, 22, 26, 0.15), 0 1px 0 rgba(16, 22, 26, 0.15); } + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15), inset -1px 0 0 rgba(16, 22, 26, 0.15); } .bp-table-body .bp-table-last-in-row.bp-table-last-in-column { - box-shadow: 1px 0 0 rgba(16, 22, 26, 0.15), 0 1px 0 rgba(16, 22, 26, 0.15); } + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15), 1px 0 0 rgba(16, 22, 26, 0.15); } +.bp-table-quadrant-top-left .bp-table-cell.bp-table-last-in-row { + box-shadow: inset 0 -1px 0 rgba(16, 22, 26, 0.15), inset -3px 0 0 rgba(16, 22, 26, 0.15); } +.bp-table-quadrant-top-left .bp-table-cell.bp-table-last-in-column { + box-shadow: inset 0 -3px 0 rgba(16, 22, 26, 0.15), inset -1px 0 0 rgba(16, 22, 26, 0.15); } +.bp-table-quadrant-top-left .bp-table-cell.bp-table-last-in-column.bp-table-last-in-row { + box-shadow: inset 0 -3px 0 rgba(16, 22, 26, 0.15), inset -3px 0 0 rgba(16, 22, 26, 0.15); } +.bp-table-quadrant-top-left .bp-table-header.bp-table-last-in-row { + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.15), inset -3px 0 0 rgba(16, 22, 26, 0.15); } +.bp-table-quadrant-top-left .bp-table-header.bp-table-last-in-row::before { + right: 3px; + bottom: 0; } +.bp-table-quadrant-top-left .bp-table-header.bp-table-last-in-column { + box-shadow: inset 0 -3px 0 rgba(16, 22, 26, 0.15), 1px 0 0 rgba(16, 22, 26, 0.15); } +.bp-table-quadrant-top-left .bp-table-header.bp-table-last-in-column::before { + right: 0; + bottom: 3px; } +.bp-table-quadrant-left .bp-table-cell.bp-table-last-in-row { + box-shadow: inset 0 -1px 0 rgba(16, 22, 26, 0.15), inset -3px 0 0 rgba(16, 22, 26, 0.15); } +.bp-table-quadrant-top .bp-table-cell.bp-table-last-in-column { + box-shadow: inset 0 -3px 0 rgba(16, 22, 26, 0.15), inset -1px 0 0 rgba(16, 22, 26, 0.15); } .pt-dark .bp-table-container { box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.4); } .pt-dark .bp-table-menu { - box-shadow: 1px 0 0 rgba(16, 22, 26, 0.4), 0 1px 0 rgba(16, 22, 26, 0.4); } + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4), 1px 0 0 rgba(16, 22, 26, 0.4); } .pt-dark .bp-table-header { box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4); } .pt-dark .bp-table-cell { - box-shadow: inset -1px 0 0 rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.4); } + box-shadow: inset 0 -1px 0 rgba(16, 22, 26, 0.4), inset -1px 0 0 rgba(16, 22, 26, 0.4); } .pt-dark .bp-table-horizontal-cell-divider { box-shadow: inset 0 1px 0 rgba(16, 22, 26, 0.4); height: 1px; } .pt-dark .bp-table-column-headers .bp-table-header { - box-shadow: inset -1px 0 0 rgba(16, 22, 26, 0.4), 0 1px 0 rgba(16, 22, 26, 0.4); } + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4), inset -1px 0 0 rgba(16, 22, 26, 0.4); } .pt-dark .bp-table-column-headers .bp-table-header::before { right: 1px; bottom: 0; } @@ -7148,9 +7168,29 @@ table.pt-table.pt-interactive tbody tr:hover td { .pt-dark .bp-table-body .bp-table-last-in-row { box-shadow: inset 0 -1px 0 rgba(16, 22, 26, 0.4), 1px 0 0 rgba(16, 22, 26, 0.4); } .pt-dark .bp-table-body .bp-table-last-in-column { - box-shadow: inset -1px 0 0 rgba(16, 22, 26, 0.4), 0 1px 0 rgba(16, 22, 26, 0.4); } + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4), inset -1px 0 0 rgba(16, 22, 26, 0.4); } .pt-dark .bp-table-body .bp-table-last-in-row.bp-table-last-in-column { - box-shadow: 1px 0 0 rgba(16, 22, 26, 0.4), 0 1px 0 rgba(16, 22, 26, 0.4); } + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4), 1px 0 0 rgba(16, 22, 26, 0.4); } +.pt-dark .bp-table-quadrant-top-left .bp-table-cell.bp-table-last-in-row { + box-shadow: inset 0 -1px 0 rgba(16, 22, 26, 0.4), inset -3px 0 0 rgba(16, 22, 26, 0.4); } +.pt-dark .bp-table-quadrant-top-left .bp-table-cell.bp-table-last-in-column { + box-shadow: inset 0 -3px 0 rgba(16, 22, 26, 0.4), inset -1px 0 0 rgba(16, 22, 26, 0.4); } +.pt-dark .bp-table-quadrant-top-left .bp-table-cell.bp-table-last-in-column.bp-table-last-in-row { + box-shadow: inset 0 -3px 0 rgba(16, 22, 26, 0.4), inset -3px 0 0 rgba(16, 22, 26, 0.4); } +.pt-dark .bp-table-quadrant-top-left .bp-table-header.bp-table-last-in-row { + box-shadow: 0 1px 0 rgba(16, 22, 26, 0.4), inset -3px 0 0 rgba(16, 22, 26, 0.4); } +.pt-dark .bp-table-quadrant-top-left .bp-table-header.bp-table-last-in-row::before { + right: 3px; + bottom: 0; } +.pt-dark .bp-table-quadrant-top-left .bp-table-header.bp-table-last-in-column { + box-shadow: inset 0 -3px 0 rgba(16, 22, 26, 0.4), 1px 0 0 rgba(16, 22, 26, 0.4); } +.pt-dark .bp-table-quadrant-top-left .bp-table-header.bp-table-last-in-column::before { + right: 0; + bottom: 3px; } +.pt-dark .bp-table-quadrant-left .bp-table-cell.bp-table-last-in-row { + box-shadow: inset 0 -1px 0 rgba(16, 22, 26, 0.4), inset -3px 0 0 rgba(16, 22, 26, 0.4); } +.pt-dark .bp-table-quadrant-top .bp-table-cell.bp-table-last-in-column { + box-shadow: inset 0 -3px 0 rgba(16, 22, 26, 0.4), inset -1px 0 0 rgba(16, 22, 26, 0.4); } @keyframes skeleton-fade-in { 0% { opacity: 0; } @@ -8062,11 +8102,12 @@ input[type="search"] { .docs-prop-description p:last-child { margin: 0; } .docs-prop-tags { - margin: 10px 0 0; } + margin: 7px 0 0; } .docs-prop-tags:empty { display: none; } -.docs-prop-tags .pt-tag + .pt-tag { - margin-left: 10px; } +.docs-prop-tags .pt-tag { + margin-top: 3px; + margin-right: 10px; } .docs-prop-name code::after { line-height: 1; font-family: "Icons16", sans-serif; diff --git a/docs/docs/site-docs.js b/docs/docs/site-docs.js index ae91c92527..69920aa9ab 100644 --- a/docs/docs/site-docs.js +++ b/docs/docs/site-docs.js @@ -51,15 +51,15 @@ var React = __webpack_require__(3); var ReactDOM = __webpack_require__(33); var docs_1 = __webpack_require__(172); - var blueprintDocs_1 = __webpack_require__(299); - var ReactDocs = __webpack_require__(468); - var reactExamples_1 = __webpack_require__(476); - var docs = __webpack_require__(658); - var releases = __webpack_require__(659).map(function (pkg) { + var blueprintDocs_1 = __webpack_require__(301); + var ReactDocs = __webpack_require__(470); + var reactExamples_1 = __webpack_require__(478); + var docs = __webpack_require__(664); + var releases = __webpack_require__(665).map(function (pkg) { pkg.url = "https://www.npmjs.com/package/" + pkg.name; return pkg; }); - var versions = __webpack_require__(660).map(function (version) { return ({ + var versions = __webpack_require__(666).map(function (version) { return ({ url: "https://palantir.github.io/blueprint/docs/" + version, version: version, }); }); @@ -22058,8 +22058,8 @@ __webpack_require__(2); __export(__webpack_require__(173)); __export(__webpack_require__(176)); - __export(__webpack_require__(287)); __export(__webpack_require__(289)); + __export(__webpack_require__(291)); @@ -22423,10 +22423,10 @@ var client_1 = __webpack_require__(177); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var utils_1 = __webpack_require__(276); - var navigator_1 = __webpack_require__(277); - var navMenu_1 = __webpack_require__(284); - var page_1 = __webpack_require__(285); + var utils_1 = __webpack_require__(278); + var navigator_1 = __webpack_require__(279); + var navMenu_1 = __webpack_require__(286); + var page_1 = __webpack_require__(287); var Documentation = (function (_super) { tslib_1.__extends(Documentation, _super); function Documentation(props) { @@ -23154,6 +23154,15 @@ } } exports.safeInvoke = safeInvoke; + // tslint:disable-next-line:ban-types + function safeInvokeOrValue(funcOrValue) { + var args = []; + for (var _i = 1; _i < arguments.length; _i++) { + args[_i - 1] = arguments[_i]; + } + return isFunction(funcOrValue) ? funcOrValue.apply(void 0, args) : funcOrValue; + } + exports.safeInvokeOrValue = safeInvokeOrValue; function elementIsOrContains(element, testElement) { return element === testElement || element.contains(testElement); } @@ -24956,42 +24965,44 @@ __export(__webpack_require__(228)); __export(__webpack_require__(234)); __export(__webpack_require__(235)); - __export(__webpack_require__(238)); - __export(__webpack_require__(232)); + __export(__webpack_require__(236)); __export(__webpack_require__(239)); - __export(__webpack_require__(242)); + __export(__webpack_require__(232)); + __export(__webpack_require__(240)); __export(__webpack_require__(243)); __export(__webpack_require__(244)); __export(__webpack_require__(245)); __export(__webpack_require__(246)); + __export(__webpack_require__(247)); + __export(__webpack_require__(248)); __export(__webpack_require__(230)); - __export(__webpack_require__(236)); - __export(__webpack_require__(253)); __export(__webpack_require__(237)); - __export(__webpack_require__(254)); - __export(__webpack_require__(207)); __export(__webpack_require__(255)); - __export(__webpack_require__(200)); + __export(__webpack_require__(238)); __export(__webpack_require__(256)); - __export(__webpack_require__(224)); + __export(__webpack_require__(207)); __export(__webpack_require__(257)); + __export(__webpack_require__(200)); __export(__webpack_require__(258)); + __export(__webpack_require__(224)); __export(__webpack_require__(259)); - __export(__webpack_require__(262)); - __export(__webpack_require__(231)); - __export(__webpack_require__(263)); + __export(__webpack_require__(260)); + __export(__webpack_require__(261)); __export(__webpack_require__(264)); + __export(__webpack_require__(231)); __export(__webpack_require__(265)); __export(__webpack_require__(266)); __export(__webpack_require__(267)); __export(__webpack_require__(268)); __export(__webpack_require__(269)); + __export(__webpack_require__(270)); __export(__webpack_require__(271)); - __export(__webpack_require__(272)); __export(__webpack_require__(273)); - __export(__webpack_require__(225)); __export(__webpack_require__(274)); __export(__webpack_require__(275)); + __export(__webpack_require__(225)); + __export(__webpack_require__(276)); + __export(__webpack_require__(277)); @@ -27809,7 +27820,7 @@ document.addEventListener("focus", lastOpenedOverlay.handleDocumentFocus, /* useCapture */ true); } } - else { + if (openStack.filter(function (o) { return !o.props.inline && o.props.hasBackdrop; }).length === 0) { document.body.classList.remove(Classes.OVERLAY_OPEN); } } @@ -29734,6 +29745,44 @@ /***/ }), /* 234 */ +/***/ (function(module, exports, __webpack_require__) { + + /* + * Copyright 2017 Palantir Technologies, Inc. All rights reserved. + * Licensed under the BSD-3 License as modified (the “License”); you may obtain a copy + * of the license at https://github.com/palantir/blueprint/blob/master/LICENSE + * and https://github.com/palantir/blueprint/blob/master/PATENTS + */ + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + var tslib_1 = __webpack_require__(185); + var classNames = __webpack_require__(201); + var PureRender = __webpack_require__(202); + var React = __webpack_require__(3); + var common_1 = __webpack_require__(183); + var Callout = (function (_super) { + tslib_1.__extends(Callout, _super); + function Callout() { + return _super !== null && _super.apply(this, arguments) || this; + } + Callout.prototype.render = function () { + var _a = this.props, className = _a.className, children = _a.children, iconName = _a.iconName, intent = _a.intent, title = _a.title, htmlProps = tslib_1.__rest(_a, ["className", "children", "iconName", "intent", "title"]); + var classes = classNames(common_1.Classes.CALLOUT, common_1.Classes.intentClass(intent), common_1.Classes.iconClass(iconName), className); + return (React.createElement("div", tslib_1.__assign({ className: classes }, htmlProps), + title && React.createElement("h5", null, title), + children)); + }; + return Callout; + }(React.Component)); + Callout = tslib_1.__decorate([ + PureRender + ], Callout); + exports.Callout = Callout; + + + +/***/ }), +/* 235 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -29894,7 +29943,7 @@ /***/ }), -/* 235 */ +/* 236 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -29911,8 +29960,8 @@ var Classes = __webpack_require__(194); var Errors = __webpack_require__(187); var position_1 = __webpack_require__(191); - var menu_1 = __webpack_require__(236); - var menuItem_1 = __webpack_require__(237); + var menu_1 = __webpack_require__(237); + var menuItem_1 = __webpack_require__(238); var popover_1 = __webpack_require__(200); var CollapseFrom; (function (CollapseFrom) { @@ -29982,7 +30031,7 @@ /***/ }), -/* 236 */ +/* 237 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30014,7 +30063,7 @@ /***/ }), -/* 237 */ +/* 238 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30034,7 +30083,7 @@ var Errors = __webpack_require__(187); var position_1 = __webpack_require__(191); var popover_1 = __webpack_require__(200); - var menu_1 = __webpack_require__(236); + var menu_1 = __webpack_require__(237); var REACT_CONTEXT_TYPES = { alignLeft: function (obj, key) { if (obj[key] != null && typeof obj[key] !== "boolean") { @@ -30187,7 +30236,7 @@ /***/ }), -/* 238 */ +/* 239 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30241,7 +30290,7 @@ /***/ }), -/* 239 */ +/* 240 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30260,7 +30309,7 @@ var Classes = __webpack_require__(194); var Keys = __webpack_require__(195); var utils_1 = __webpack_require__(186); - var compatibility_1 = __webpack_require__(240); + var compatibility_1 = __webpack_require__(241); var BUFFER_WIDTH_EDGE = 5; var BUFFER_WIDTH_IE = 30; var EditableText = (function (_super) { @@ -30511,7 +30560,7 @@ /***/ }), -/* 240 */ +/* 241 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30525,12 +30574,12 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(241)); + __export(__webpack_require__(242)); /***/ }), -/* 241 */ +/* 242 */ /***/ (function(module, exports) { /* @@ -30556,7 +30605,7 @@ /***/ }), -/* 242 */ +/* 243 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30672,7 +30721,75 @@ /***/ }), -/* 243 */ +/* 244 */ +/***/ (function(module, exports, __webpack_require__) { + + /* + * Copyright 2017 Palantir Technologies, Inc. All rights reserved. + * Licensed under the BSD-3 License as modified (the “License”); you may obtain a copy + * of the license at https://github.com/palantir/blueprint/blob/master/LICENSE + * and https://github.com/palantir/blueprint/blob/master/PATENTS + */ + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + var tslib_1 = __webpack_require__(185); + var classNames = __webpack_require__(201); + var PureRender = __webpack_require__(202); + var React = __webpack_require__(3); + var Classes = __webpack_require__(194); + var FormGroup = FormGroup_1 = (function (_super) { + tslib_1.__extends(FormGroup, _super); + function FormGroup() { + return _super !== null && _super.apply(this, arguments) || this; + } + FormGroup.prototype.render = function () { + var _a = this.props, children = _a.children, label = _a.label, labelFor = _a.labelFor; + return (React.createElement("div", { className: this.getClassName() }, + React.createElement("label", { className: Classes.LABEL, htmlFor: labelFor }, + label, + this.maybeRenderRequiredLabel()), + React.createElement("div", { className: Classes.FORM_CONTENT }, + children, + this.maybeRenderHelperText()))); + }; + FormGroup.prototype.getClassName = function () { + var _a = this.props, className = _a.className, disabled = _a.disabled, inline = _a.inline, intent = _a.intent; + return classNames(Classes.FORM_GROUP, Classes.intentClass(intent), (_b = {}, + _b[Classes.DISABLED] = disabled, + _b[Classes.INLINE] = inline, + _b), className); + var _b; + }; + FormGroup.prototype.maybeRenderRequiredLabel = function () { + var requiredLabel = this.props.requiredLabel; + return requiredLabel === true ? FormGroup_1.DEFAULT_REQUIRED_CONTENT : requiredLabel; + }; + FormGroup.prototype.maybeRenderHelperText = function () { + var helperText = this.props.helperText; + if (!helperText) { + return null; + } + return React.createElement("div", { className: Classes.FORM_HELPER_TEXT }, helperText); + }; + return FormGroup; + }(React.Component)); + /** + * Element used to render `required` message when a boolean value is provided for that prop. + * Modifying the value of this property will change the default globally in your app. + * + * Defaults to `(required)`. + */ + FormGroup.DEFAULT_REQUIRED_CONTENT = React.createElement("span", { className: Classes.TEXT_MUTED }, "(required)"); + FormGroup = FormGroup_1 = tslib_1.__decorate([ + PureRender + ], FormGroup); + exports.FormGroup = FormGroup; + var FormGroup_1; + + + +/***/ }), +/* 245 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30751,7 +30868,7 @@ /***/ }), -/* 244 */ +/* 246 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -30769,7 +30886,7 @@ var common_1 = __webpack_require__(183); var Errors = __webpack_require__(187); var buttons_1 = __webpack_require__(228); - var inputGroup_1 = __webpack_require__(243); + var inputGroup_1 = __webpack_require__(245); var IncrementDirection; (function (IncrementDirection) { IncrementDirection[IncrementDirection["DOWN"] = -1] = "DOWN"; @@ -31141,7 +31258,7 @@ /***/ }), -/* 245 */ +/* 247 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31157,7 +31274,7 @@ var abstractComponent_1 = __webpack_require__(184); var Classes = __webpack_require__(194); var Errors = __webpack_require__(187); - var controls_1 = __webpack_require__(242); + var controls_1 = __webpack_require__(243); var counter = 0; function nextName() { return RadioGroup.displayName + "-" + counter++; @@ -31218,7 +31335,7 @@ /***/ }), -/* 246 */ +/* 248 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31233,19 +31350,19 @@ var React = __webpack_require__(3); var common_1 = __webpack_require__(183); var errors_1 = __webpack_require__(187); - var hotkey_1 = __webpack_require__(247); - var hotkey_2 = __webpack_require__(247); + var hotkey_1 = __webpack_require__(249); + var hotkey_2 = __webpack_require__(249); exports.Hotkey = hotkey_2.Hotkey; - var keyCombo_1 = __webpack_require__(248); + var keyCombo_1 = __webpack_require__(250); exports.KeyCombo = keyCombo_1.KeyCombo; - var hotkeysTarget_1 = __webpack_require__(250); + var hotkeysTarget_1 = __webpack_require__(252); exports.HotkeysTarget = hotkeysTarget_1.HotkeysTarget; - var hotkeyParser_1 = __webpack_require__(249); + var hotkeyParser_1 = __webpack_require__(251); exports.comboMatches = hotkeyParser_1.comboMatches; exports.getKeyCombo = hotkeyParser_1.getKeyCombo; exports.getKeyComboString = hotkeyParser_1.getKeyComboString; exports.parseKeyCombo = hotkeyParser_1.parseKeyCombo; - var hotkeysDialog_1 = __webpack_require__(252); + var hotkeysDialog_1 = __webpack_require__(254); exports.hideHotkeysDialog = hotkeysDialog_1.hideHotkeysDialog; exports.setHotkeysDialogProps = hotkeysDialog_1.setHotkeysDialogProps; var Hotkeys = (function (_super) { @@ -31295,7 +31412,7 @@ /***/ }), -/* 247 */ +/* 249 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31309,7 +31426,7 @@ var tslib_1 = __webpack_require__(185); var React = __webpack_require__(3); var common_1 = __webpack_require__(183); - var keyCombo_1 = __webpack_require__(248); + var keyCombo_1 = __webpack_require__(250); var Hotkey = (function (_super) { tslib_1.__extends(Hotkey, _super); function Hotkey() { @@ -31343,7 +31460,7 @@ /***/ }), -/* 248 */ +/* 250 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -31356,7 +31473,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(185); var React = __webpack_require__(3); - var hotkeyParser_1 = __webpack_require__(249); + var hotkeyParser_1 = __webpack_require__(251); var KeyIcons = { alt: "pt-icon-key-option", cmd: "pt-icon-key-command", @@ -31402,7 +31519,7 @@ /***/ }), -/* 249 */ +/* 251 */ /***/ (function(module, exports) { /* @@ -31684,7 +31801,7 @@ /***/ }), -/* 250 */ +/* 252 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31697,7 +31814,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); var React = __webpack_require__(3); var utils_1 = __webpack_require__(186); - var hotkeysEvents_1 = __webpack_require__(251); + var hotkeysEvents_1 = __webpack_require__(253); function HotkeysTarget(constructor) { var _a = constructor.prototype, componentWillMount = _a.componentWillMount, componentDidMount = _a.componentDidMount, componentWillUnmount = _a.componentWillUnmount, render = _a.render, renderHotkeys = _a.renderHotkeys; if (!utils_1.isFunction(renderHotkeys)) { @@ -31761,7 +31878,7 @@ /***/ }), -/* 251 */ +/* 253 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31774,9 +31891,9 @@ Object.defineProperty(exports, "__esModule", { value: true }); var react_1 = __webpack_require__(3); var utils_1 = __webpack_require__(186); - var hotkey_1 = __webpack_require__(247); - var hotkeyParser_1 = __webpack_require__(249); - var hotkeysDialog_1 = __webpack_require__(252); + var hotkey_1 = __webpack_require__(249); + var hotkeyParser_1 = __webpack_require__(251); + var hotkeysDialog_1 = __webpack_require__(254); var SHOW_DIALOG_KEY = "?"; var HotkeyScope; (function (HotkeyScope) { @@ -31883,7 +32000,7 @@ /***/ }), -/* 252 */ +/* 254 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -31900,8 +32017,8 @@ var ReactDOM = __webpack_require__(33); var common_1 = __webpack_require__(183); var components_1 = __webpack_require__(198); - var hotkey_1 = __webpack_require__(247); - var hotkeys_1 = __webpack_require__(246); + var hotkey_1 = __webpack_require__(249); + var hotkeys_1 = __webpack_require__(248); /** * The delay before showing or hiding the dialog. Should be long enough to * allow all registered hotkey listeners to execute first. @@ -32022,7 +32139,7 @@ /***/ }), -/* 253 */ +/* 255 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32063,7 +32180,7 @@ /***/ }), -/* 254 */ +/* 256 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32134,7 +32251,7 @@ /***/ }), -/* 255 */ +/* 257 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32193,7 +32310,7 @@ /***/ }), -/* 256 */ +/* 258 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32223,7 +32340,7 @@ /***/ }), -/* 257 */ +/* 259 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32265,7 +32382,7 @@ /***/ }), -/* 258 */ +/* 260 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32295,7 +32412,7 @@ /***/ }), -/* 259 */ +/* 261 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32312,8 +32429,8 @@ var Classes = __webpack_require__(194); var Errors = __webpack_require__(187); var utils_1 = __webpack_require__(186); - var coreSlider_1 = __webpack_require__(260); - var handle_1 = __webpack_require__(261); + var coreSlider_1 = __webpack_require__(262); + var handle_1 = __webpack_require__(263); var RangeEnd; (function (RangeEnd) { RangeEnd[RangeEnd["LEFT"] = 0] = "LEFT"; @@ -32418,7 +32535,7 @@ /***/ }), -/* 260 */ +/* 262 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32553,7 +32670,7 @@ /***/ }), -/* 261 */ +/* 263 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32707,7 +32824,7 @@ /***/ }), -/* 262 */ +/* 264 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32722,8 +32839,8 @@ var React = __webpack_require__(3); var Classes = __webpack_require__(194); var utils_1 = __webpack_require__(186); - var coreSlider_1 = __webpack_require__(260); - var handle_1 = __webpack_require__(261); + var coreSlider_1 = __webpack_require__(262); + var handle_1 = __webpack_require__(263); var Slider = (function (_super) { tslib_1.__extends(Slider, _super); function Slider() { @@ -32775,7 +32892,7 @@ /***/ }), -/* 263 */ +/* 265 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32809,7 +32926,7 @@ /***/ }), -/* 264 */ +/* 266 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32849,7 +32966,7 @@ /***/ }), -/* 265 */ +/* 267 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -32870,9 +32987,9 @@ var Errors = __webpack_require__(187); var Keys = __webpack_require__(195); var Utils = __webpack_require__(186); - var tab_1 = __webpack_require__(264); - var tabList_1 = __webpack_require__(266); - var tabPanel_1 = __webpack_require__(267); + var tab_1 = __webpack_require__(266); + var tabList_1 = __webpack_require__(268); + var tabPanel_1 = __webpack_require__(269); var TAB_CSS_SELECTOR = "li[role=tab]"; var Tabs = (function (_super) { tslib_1.__extends(Tabs, _super); @@ -33159,7 +33276,7 @@ /***/ }), -/* 266 */ +/* 268 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33209,7 +33326,7 @@ /***/ }), -/* 267 */ +/* 269 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33245,7 +33362,7 @@ /***/ }), -/* 268 */ +/* 270 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33288,7 +33405,7 @@ /***/ }), -/* 269 */ +/* 271 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33307,8 +33424,8 @@ var Classes = __webpack_require__(194); var Keys = __webpack_require__(195); var Utils = __webpack_require__(186); - var tab2_1 = __webpack_require__(268); - var tabTitle_1 = __webpack_require__(270); + var tab2_1 = __webpack_require__(270); + var tabTitle_1 = __webpack_require__(272); exports.Expander = function () { return React.createElement("div", { className: "pt-flex-expander" }); }; var TAB_SELECTOR = "." + Classes.TAB; var Tabs2 = (function (_super) { @@ -33371,15 +33488,15 @@ var tabPanels = this.getTabChildren() .filter(this.props.renderActiveTabPanelOnly ? function (tab) { return tab.props.id === selectedTabId; } : function () { return true; }) .map(this.renderTabPanel); - var tabIndicator = (React.createElement("div", { className: "pt-tab-indicator-wrapper", style: indicatorWrapperStyle }, - React.createElement("div", { className: "pt-tab-indicator" }))); + var tabIndicator = this.props.animate ? (React.createElement("div", { className: "pt-tab-indicator-wrapper", style: indicatorWrapperStyle }, + React.createElement("div", { className: "pt-tab-indicator" }))) : (undefined); var classes = classNames(Classes.TABS, (_b = {}, _b[Classes.VERTICAL] = this.props.vertical, _b), this.props.className); var tabListClasses = classNames(Classes.TAB_LIST, (_c = {}, _c[Classes.LARGE] = this.props.large, _c)); return (React.createElement("div", { className: classes }, React.createElement("div", { className: tabListClasses, onKeyDown: this.handleKeyDown, onKeyPress: this.handleKeyPress, ref: this.refHandlers.tablist, role: "tablist" }, - this.props.animate ? tabIndicator : undefined, + tabIndicator, tabTitles), tabPanels)); var _b, _c; @@ -33453,7 +33570,7 @@ * Store the CSS values so the transition animation can start. */ Tabs2.prototype.moveSelectionIndicator = function () { - if (this.tablistElement === undefined) { + if (this.tablistElement === undefined || !this.props.animate) { return; } var tabIdSelector = TAB_SELECTOR + "[data-tab-id=\"" + this.state.selectedTabId + "\"]"; @@ -33500,7 +33617,7 @@ /***/ }), -/* 270 */ +/* 272 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33548,7 +33665,7 @@ /***/ }), -/* 271 */ +/* 273 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33599,7 +33716,7 @@ /***/ }), -/* 272 */ +/* 274 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33688,7 +33805,7 @@ /***/ }), -/* 273 */ +/* 275 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33711,7 +33828,7 @@ var position_1 = __webpack_require__(191); var utils_1 = __webpack_require__(186); var overlay_1 = __webpack_require__(207); - var toast_1 = __webpack_require__(272); + var toast_1 = __webpack_require__(274); var Toaster = Toaster_1 = (function (_super) { tslib_1.__extends(Toaster, _super); function Toaster() { @@ -33820,7 +33937,7 @@ /***/ }), -/* 274 */ +/* 276 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33836,7 +33953,7 @@ var React = __webpack_require__(3); var Classes = __webpack_require__(194); var utils_1 = __webpack_require__(186); - var treeNode_1 = __webpack_require__(275); + var treeNode_1 = __webpack_require__(277); var Tree = (function (_super) { tslib_1.__extends(Tree, _super); function Tree() { @@ -33912,7 +34029,7 @@ /***/ }), -/* 275 */ +/* 277 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -33928,7 +34045,7 @@ var React = __webpack_require__(3); var Classes = __webpack_require__(194); var utils_1 = __webpack_require__(186); - var collapse_1 = __webpack_require__(234); + var collapse_1 = __webpack_require__(235); var icon_1 = __webpack_require__(230); var TreeNode = (function (_super) { tslib_1.__extends(TreeNode, _super); @@ -33990,7 +34107,7 @@ /***/ }), -/* 276 */ +/* 278 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34069,7 +34186,7 @@ /***/ }), -/* 277 */ +/* 279 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -34083,10 +34200,10 @@ var tslib_1 = __webpack_require__(174); var core_1 = __webpack_require__(179); var classNames = __webpack_require__(175); - var fuzzaldrin_plus_1 = __webpack_require__(278); + var fuzzaldrin_plus_1 = __webpack_require__(280); var React = __webpack_require__(3); var react_dom_1 = __webpack_require__(33); - var utils_1 = __webpack_require__(276); + var utils_1 = __webpack_require__(278); var baseExample_1 = __webpack_require__(173); var MENU_PADDING = 5; // $pt-grid-size / 2; var Navigator = (function (_super) { @@ -34227,21 +34344,21 @@ /***/ }), -/* 278 */ +/* 280 */ /***/ (function(module, exports, __webpack_require__) { (function() { var PathSeparator, filter, legacy_scorer, matcher, prepQueryCache, scorer; - scorer = __webpack_require__(279); + scorer = __webpack_require__(281); - legacy_scorer = __webpack_require__(281); + legacy_scorer = __webpack_require__(283); - filter = __webpack_require__(282); + filter = __webpack_require__(284); - matcher = __webpack_require__(283); + matcher = __webpack_require__(285); - PathSeparator = __webpack_require__(280).sep; + PathSeparator = __webpack_require__(282).sep; prepQueryCache = null; @@ -34316,13 +34433,13 @@ /***/ }), -/* 279 */ +/* 281 */ /***/ (function(module, exports, __webpack_require__) { (function() { var AcronymResult, PathSeparator, Query, basenameScore, coreChars, countDir, doScore, emptyAcronymResult, file_coeff, isMatch, isSeparator, isWordEnd, isWordStart, miss_coeff, opt_char_re, pos_bonus, scoreAcronyms, scoreCharacter, scoreConsecutives, scoreExact, scoreExactMatch, scorePattern, scorePosition, scoreSize, tau_depth, tau_size, truncatedUpperCase, wm; - PathSeparator = __webpack_require__(280).sep; + PathSeparator = __webpack_require__(282).sep; wm = 150; @@ -34709,7 +34826,7 @@ /***/ }), -/* 280 */ +/* 282 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(process) {// Copyright Joyent, Inc. and other Node contributors. @@ -34940,13 +35057,13 @@ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(115))) /***/ }), -/* 281 */ +/* 283 */ /***/ (function(module, exports, __webpack_require__) { (function() { var PathSeparator, queryIsLastPathSegment; - PathSeparator = __webpack_require__(280).sep; + PathSeparator = __webpack_require__(282).sep; exports.basenameScore = function(string, query, score) { var base, depth, index, lastCharacter, segmentCount, slashCount; @@ -35074,15 +35191,15 @@ /***/ }), -/* 282 */ +/* 284 */ /***/ (function(module, exports, __webpack_require__) { (function() { var PathSeparator, legacy_scorer, pluckCandidates, scorer, sortCandidates; - scorer = __webpack_require__(279); + scorer = __webpack_require__(281); - legacy_scorer = __webpack_require__(281); + legacy_scorer = __webpack_require__(283); pluckCandidates = function(a) { return a.candidate; @@ -35092,7 +35209,7 @@ return b.score - a.score; }; - PathSeparator = __webpack_require__(280).sep; + PathSeparator = __webpack_require__(282).sep; module.exports = function(candidates, query, _arg) { var allowErrors, bAllowErrors, bKey, candidate, coreQuery, key, legacy, maxInners, maxResults, prepQuery, queryHasSlashes, score, scoredCandidates, spotLeft, string, _i, _j, _len, _len1, _ref; @@ -35153,15 +35270,15 @@ /***/ }), -/* 283 */ +/* 285 */ /***/ (function(module, exports, __webpack_require__) { (function() { var PathSeparator, scorer; - PathSeparator = __webpack_require__(280).sep; + PathSeparator = __webpack_require__(282).sep; - scorer = __webpack_require__(279); + scorer = __webpack_require__(281); exports.basenameMatch = function(subject, subject_lw, prepQuery) { var basePos, depth, end; @@ -35306,7 +35423,7 @@ /***/ }), -/* 284 */ +/* 286 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35357,7 +35474,7 @@ /***/ }), -/* 285 */ +/* 287 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35369,7 +35486,7 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var React = __webpack_require__(3); - var block_1 = __webpack_require__(286); + var block_1 = __webpack_require__(288); exports.Page = function (_a) { var tagRenderers = _a.tagRenderers, page = _a.page; var pageContents = block_1.renderContentsBlock(page.contents, tagRenderers, page); @@ -35379,7 +35496,7 @@ /***/ }), -/* 286 */ +/* 288 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35415,7 +35532,7 @@ /***/ }), -/* 287 */ +/* 289 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35429,13 +35546,13 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(288)); - __export(__webpack_require__(276)); + __export(__webpack_require__(290)); + __export(__webpack_require__(278)); /***/ }), -/* 288 */ +/* 290 */ /***/ (function(module, exports) { /* @@ -35490,7 +35607,7 @@ /***/ }), -/* 289 */ +/* 291 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35504,18 +35621,18 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(290)); __export(__webpack_require__(292)); - __export(__webpack_require__(293)); __export(__webpack_require__(294)); + __export(__webpack_require__(295)); __export(__webpack_require__(296)); - __export(__webpack_require__(297)); __export(__webpack_require__(298)); + __export(__webpack_require__(299)); + __export(__webpack_require__(300)); /***/ }), -/* 290 */ +/* 292 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35528,7 +35645,7 @@ Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(174); var React = __webpack_require__(3); - var modifierTable_1 = __webpack_require__(291); + var modifierTable_1 = __webpack_require__(293); var MODIFIER_PLACEHOLDER = /\{\{([\.\:]?)modifier\}\}/g; var DEFAULT_MODIFIER = { documentation: "Default", @@ -35580,7 +35697,7 @@ /***/ }), -/* 291 */ +/* 293 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35612,7 +35729,7 @@ /***/ }), -/* 292 */ +/* 294 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35623,7 +35740,7 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tags = __webpack_require__(289); + var tags = __webpack_require__(291); function createDefaultRenderers(docs) { var css = new tags.CssTagRenderer(docs); var heading = new tags.HeadingTagRenderer(); @@ -35641,7 +35758,7 @@ /***/ }), -/* 293 */ +/* 295 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35672,7 +35789,7 @@ /***/ }), -/* 294 */ +/* 296 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35684,8 +35801,8 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var React = __webpack_require__(3); - var propsStore_1 = __webpack_require__(288); - var interfaceTable_1 = __webpack_require__(295); + var propsStore_1 = __webpack_require__(290); + var interfaceTable_1 = __webpack_require__(297); var InterfaceTagRenderer = (function () { function InterfaceTagRenderer(docs) { var _this = this; @@ -35707,7 +35824,7 @@ /***/ }), -/* 295 */ +/* 297 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35721,7 +35838,7 @@ var core_1 = __webpack_require__(179); var classNames = __webpack_require__(175); var React = __webpack_require__(3); - var block_1 = __webpack_require__(286); + var block_1 = __webpack_require__(288); // HACKHACK support `code` blocks until we get real markdown parsing in ts-quick-docs function dirtyMarkdown(text) { return { @@ -35793,7 +35910,7 @@ /***/ }), -/* 296 */ +/* 298 */ /***/ (function(module, exports) { /* @@ -35815,7 +35932,7 @@ /***/ }), -/* 297 */ +/* 299 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35855,7 +35972,7 @@ /***/ }), -/* 298 */ +/* 300 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -35901,7 +36018,7 @@ /***/ }), -/* 299 */ +/* 301 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -35910,7 +36027,7 @@ var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); var React = __webpack_require__(3); - var navbarActions_1 = __webpack_require__(300); + var navbarActions_1 = __webpack_require__(302); var DARK_THEME = "pt-dark"; var LIGHT_THEME = ""; var THEME_LOCAL_STORAGE_KEY = "pt-blueprint-theme"; @@ -35957,15 +36074,15 @@ /***/ }), -/* 300 */ +/* 302 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(1); var core_1 = __webpack_require__(179); - var labs_1 = __webpack_require__(301); - var classNames = __webpack_require__(467); + var labs_1 = __webpack_require__(303); + var classNames = __webpack_require__(469); var React = __webpack_require__(3); var NavbarActions = (function (_super) { tslib_1.__extends(NavbarActions, _super); @@ -36003,7 +36120,7 @@ /***/ }), -/* 301 */ +/* 303 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -36017,13 +36134,13 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(302)); __export(__webpack_require__(304)); + __export(__webpack_require__(306)); /***/ }), -/* 302 */ +/* 304 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -36034,13 +36151,13 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var classes = __webpack_require__(303); + var classes = __webpack_require__(305); exports.Classes = classes; /***/ }), -/* 303 */ +/* 305 */ /***/ (function(module, exports) { /* @@ -36066,7 +36183,7 @@ /***/ }), -/* 304 */ +/* 306 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -36080,20 +36197,20 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(305)); - __export(__webpack_require__(313)); - __export(__webpack_require__(327)); - __export(__webpack_require__(312)); - __export(__webpack_require__(331)); + __export(__webpack_require__(307)); + __export(__webpack_require__(315)); + __export(__webpack_require__(329)); + __export(__webpack_require__(314)); __export(__webpack_require__(333)); - __export(__webpack_require__(334)); - __export(__webpack_require__(332)); __export(__webpack_require__(335)); + __export(__webpack_require__(336)); + __export(__webpack_require__(334)); + __export(__webpack_require__(337)); /***/ }), -/* 305 */ +/* 307 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -36104,13 +36221,13 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(303); - var queryList_1 = __webpack_require__(312); + var Classes = __webpack_require__(305); + var queryList_1 = __webpack_require__(314); var Omnibox = Omnibox_1 = (function (_super) { tslib_1.__extends(Omnibox, _super); function Omnibox() { @@ -36206,7 +36323,7 @@ /***/ }), -/* 306 */ +/* 308 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global) {/*! ***************************************************************************** @@ -36422,7 +36539,7 @@ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()))) /***/ }), -/* 307 */ +/* 309 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*! @@ -36476,7 +36593,7 @@ /***/ }), -/* 308 */ +/* 310 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -36485,8 +36602,8 @@ */ 'use strict'; - var warning = __webpack_require__(309); - var shallowEqual = __webpack_require__(311); + var warning = __webpack_require__(311); + var shallowEqual = __webpack_require__(313); @@ -36548,7 +36665,7 @@ /***/ }), -/* 309 */ +/* 311 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -36563,7 +36680,7 @@ 'use strict'; - var emptyFunction = __webpack_require__(310); + var emptyFunction = __webpack_require__(312); /** * Similar to invariant but only logs a warning if the condition is not met. @@ -36619,7 +36736,7 @@ module.exports = warning; /***/ }), -/* 310 */ +/* 312 */ /***/ (function(module, exports) { "use strict"; @@ -36662,7 +36779,7 @@ module.exports = emptyFunction; /***/ }), -/* 311 */ +/* 313 */ /***/ (function(module, exports) { /** @@ -36734,7 +36851,7 @@ module.exports = shallowEqual; /***/ }), -/* 312 */ +/* 314 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -36745,7 +36862,7 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); + var tslib_1 = __webpack_require__(308); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var QueryList = (function (_super) { @@ -36891,7 +37008,7 @@ /***/ }), -/* 313 */ +/* 315 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -36902,17 +37019,17 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); - var react_popper_1 = __webpack_require__(314); + var react_popper_1 = __webpack_require__(316); var core_1 = __webpack_require__(179); - var Errors = __webpack_require__(326); - var tooltip2_1 = __webpack_require__(327); - var arrow_1 = __webpack_require__(328); - var popoverMigrationUtils_1 = __webpack_require__(330); - var popperUtils_1 = __webpack_require__(329); + var Errors = __webpack_require__(328); + var tooltip2_1 = __webpack_require__(329); + var arrow_1 = __webpack_require__(330); + var popoverMigrationUtils_1 = __webpack_require__(332); + var popperUtils_1 = __webpack_require__(331); var Popover2 = (function (_super) { tslib_1.__extends(Popover2, _super); function Popover2(props, context) { @@ -37250,7 +37367,7 @@ /***/ }), -/* 314 */ +/* 316 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -37260,19 +37377,19 @@ }); exports.Arrow = exports.Popper = exports.Target = exports.Manager = undefined; - var _Manager2 = __webpack_require__(315); + var _Manager2 = __webpack_require__(317); var _Manager3 = _interopRequireDefault(_Manager2); - var _Target2 = __webpack_require__(320); + var _Target2 = __webpack_require__(322); var _Target3 = _interopRequireDefault(_Target2); - var _Popper2 = __webpack_require__(321); + var _Popper2 = __webpack_require__(323); var _Popper3 = _interopRequireDefault(_Popper2); - var _Arrow2 = __webpack_require__(325); + var _Arrow2 = __webpack_require__(327); var _Arrow3 = _interopRequireDefault(_Arrow2); @@ -37284,7 +37401,7 @@ exports.Arrow = _Arrow3.default; /***/ }), -/* 315 */ +/* 317 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -37299,7 +37416,7 @@ var _react2 = _interopRequireDefault(_react); - var _propTypes = __webpack_require__(316); + var _propTypes = __webpack_require__(318); var _propTypes2 = _interopRequireDefault(_propTypes); @@ -37375,7 +37492,7 @@ exports.default = Manager; /***/ }), -/* 316 */ +/* 318 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -37406,12 +37523,12 @@ } else { // By explicitly using `prop-types` you are opting into new production behavior. // http://fb.me/prop-types-in-prod - module.exports = __webpack_require__(317)(); + module.exports = __webpack_require__(319)(); } /***/ }), -/* 317 */ +/* 319 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -37425,9 +37542,9 @@ 'use strict'; - var emptyFunction = __webpack_require__(310); - var invariant = __webpack_require__(318); - var ReactPropTypesSecret = __webpack_require__(319); + var emptyFunction = __webpack_require__(312); + var invariant = __webpack_require__(320); + var ReactPropTypesSecret = __webpack_require__(321); module.exports = function() { function shim(props, propName, componentName, location, propFullName, secret) { @@ -37476,7 +37593,7 @@ /***/ }), -/* 318 */ +/* 320 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -37536,7 +37653,7 @@ module.exports = invariant; /***/ }), -/* 319 */ +/* 321 */ /***/ (function(module, exports) { /** @@ -37556,7 +37673,7 @@ /***/ }), -/* 320 */ +/* 322 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -37571,7 +37688,7 @@ var _react2 = _interopRequireDefault(_react); - var _propTypes = __webpack_require__(316); + var _propTypes = __webpack_require__(318); var _propTypes2 = _interopRequireDefault(_propTypes); @@ -37624,7 +37741,7 @@ exports.default = Target; /***/ }), -/* 321 */ +/* 323 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -37641,15 +37758,15 @@ var _react2 = _interopRequireDefault(_react); - var _propTypes = __webpack_require__(316); + var _propTypes = __webpack_require__(318); var _propTypes2 = _interopRequireDefault(_propTypes); - var _popper = __webpack_require__(322); + var _popper = __webpack_require__(324); var _popper2 = _interopRequireDefault(_popper); - var _isEqualShallow = __webpack_require__(323); + var _isEqualShallow = __webpack_require__(325); var _isEqualShallow2 = _interopRequireDefault(_isEqualShallow); @@ -37884,7 +38001,7 @@ exports.default = Popper; /***/ }), -/* 322 */ +/* 324 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(global) {/**! @@ -40328,7 +40445,7 @@ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()))) /***/ }), -/* 323 */ +/* 325 */ /***/ (function(module, exports, __webpack_require__) { /*! @@ -40340,7 +40457,7 @@ 'use strict'; - var isPrimitive = __webpack_require__(324); + var isPrimitive = __webpack_require__(326); module.exports = function isEqual(a, b) { if (!a && !b) { return true; } @@ -40361,7 +40478,7 @@ /***/ }), -/* 324 */ +/* 326 */ /***/ (function(module, exports) { /*! @@ -40380,7 +40497,7 @@ /***/ }), -/* 325 */ +/* 327 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -40395,7 +40512,7 @@ var _react2 = _interopRequireDefault(_react); - var _propTypes = __webpack_require__(316); + var _propTypes = __webpack_require__(318); var _propTypes2 = _interopRequireDefault(_propTypes); @@ -40454,7 +40571,7 @@ exports.default = Arrow; /***/ }), -/* 326 */ +/* 328 */ /***/ (function(module, exports) { /* @@ -40474,7 +40591,7 @@ /***/ }), -/* 327 */ +/* 329 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -40485,12 +40602,12 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var popover2_1 = __webpack_require__(313); + var popover2_1 = __webpack_require__(315); var Tooltip2 = (function (_super) { tslib_1.__extends(Tooltip2, _super); function Tooltip2() { @@ -40520,7 +40637,7 @@ /***/ }), -/* 328 */ +/* 330 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -40532,9 +40649,9 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var React = __webpack_require__(3); - var react_popper_1 = __webpack_require__(314); + var react_popper_1 = __webpack_require__(316); var core_1 = __webpack_require__(179); - var popperUtils_1 = __webpack_require__(329); + var popperUtils_1 = __webpack_require__(331); // these paths come from the Core Kit Sketch file // https://github.com/palantir/blueprint/blob/master/resources/sketch/Core%20Kit.sketch var SVG_SHADOW_PATH = "M8.11 6.302c1.015-.936 1.887-2.922 1.887-4.297v26c0-1.378" + @@ -40568,7 +40685,7 @@ /***/ }), -/* 329 */ +/* 331 */ /***/ (function(module, exports) { /* @@ -40671,7 +40788,7 @@ /***/ }), -/* 330 */ +/* 332 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -40725,7 +40842,7 @@ /***/ }), -/* 331 */ +/* 333 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -40736,14 +40853,14 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(303); - var queryList_1 = __webpack_require__(312); - var tagInput_1 = __webpack_require__(332); + var Classes = __webpack_require__(305); + var queryList_1 = __webpack_require__(314); + var tagInput_1 = __webpack_require__(334); var MultiSelect = MultiSelect_1 = (function (_super) { tslib_1.__extends(MultiSelect, _super); function MultiSelect() { @@ -40887,7 +41004,7 @@ /***/ }), -/* 332 */ +/* 334 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -40898,12 +41015,12 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(303); + var Classes = __webpack_require__(305); /** special value for absence of active tag */ var NONE = -1; var TagInput = (function (_super) { @@ -41083,7 +41200,7 @@ /***/ }), -/* 333 */ +/* 335 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -41094,28 +41211,35 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(303); - var queryList_1 = __webpack_require__(312); + var Classes = __webpack_require__(305); + var popover2_1 = __webpack_require__(315); + var queryList_1 = __webpack_require__(314); var Select = Select_1 = (function (_super) { tslib_1.__extends(Select, _super); function Select(props, context) { var _this = _super.call(this, props, context) || this; + _this.state = { isOpen: false, query: "" }; _this.TypedQueryList = queryList_1.QueryList.ofType(); _this.refHandlers = { + input: function (ref) { + _this.input = ref; + var _a = _this.props.inputProps, inputProps = _a === void 0 ? {} : _a; + core_1.Utils.safeInvoke(inputProps.inputRef, ref); + }, queryList: function (ref) { return (_this.list = ref); }, }; _this.renderQueryList = function (listProps) { // not using defaultProps cuz they're hard to type with generics (can't use on static members) var _a = _this.props, _b = _a.filterable, filterable = _b === void 0 ? true : _b, _c = _a.disabled, disabled = _c === void 0 ? false : _c, _d = _a.inputProps, inputProps = _d === void 0 ? {} : _d, _e = _a.popoverProps, popoverProps = _e === void 0 ? {} : _e; var ref = inputProps.ref, htmlInputProps = tslib_1.__rest(inputProps, ["ref"]); - var input = (React.createElement(core_1.InputGroup, tslib_1.__assign({ autoFocus: true, leftIconName: "search", placeholder: "Filter...", rightElement: _this.maybeRenderInputClearButton(), value: listProps.query }, htmlInputProps, { onChange: _this.handleQueryChange }))); + var input = (React.createElement(core_1.InputGroup, tslib_1.__assign({ leftIconName: "search", placeholder: "Filter...", rightElement: _this.maybeRenderInputClearButton(), value: listProps.query }, htmlInputProps, { inputRef: _this.refHandlers.input, onChange: _this.handleQueryChange }))); var handleKeyDown = listProps.handleKeyDown, handleKeyUp = listProps.handleKeyUp; - return (React.createElement(core_1.Popover, tslib_1.__assign({ autoFocus: false, enforceFocus: false, isOpen: _this.state.isOpen, position: core_1.Position.BOTTOM_LEFT, isDisabled: disabled }, popoverProps, { className: classNames(listProps.className, popoverProps.className), onInteraction: _this.handlePopoverInteraction, popoverClassName: classNames(Classes.SELECT_POPOVER, popoverProps.popoverClassName), popoverWillOpen: _this.handlePopoverWillOpen, popoverDidOpen: _this.handlePopoverDidOpen, popoverWillClose: _this.handlePopoverWillClose }), + return (React.createElement(popover2_1.Popover2, tslib_1.__assign({ autoFocus: false, enforceFocus: false, isOpen: _this.state.isOpen, placement: "bottom-start", disabled: disabled }, popoverProps, { className: classNames(listProps.className, popoverProps.className), onInteraction: _this.handlePopoverInteraction, popoverClassName: classNames(Classes.SELECT_POPOVER, popoverProps.popoverClassName), popoverWillOpen: _this.handlePopoverWillOpen, popoverDidOpen: _this.handlePopoverDidOpen, popoverWillClose: _this.handlePopoverWillClose }), React.createElement("div", { onKeyDown: _this.state.isOpen ? handleKeyDown : _this.handleTargetKeyDown, onKeyUp: _this.state.isOpen ? handleKeyUp : undefined }, _this.props.children), React.createElement("div", { onKeyDown: handleKeyDown, onKeyUp: handleKeyUp }, filterable ? input : undefined, @@ -41155,6 +41279,13 @@ if (_this.list != null) { _this.list.scrollActiveItemIntoView(); } + requestAnimationFrame(function () { + var _a = _this.props.inputProps, inputProps = _a === void 0 ? {} : _a; + // autofocus is enabled by default + if (inputProps.autoFocus !== false && _this.input != null) { + _this.input.focus(); + } + }); var _a = _this.props.popoverProps, popoverProps = _a === void 0 ? {} : _a; core_1.Utils.safeInvoke(popoverProps.popoverDidOpen); }; @@ -41239,7 +41370,7 @@ /***/ }), -/* 334 */ +/* 336 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -41250,13 +41381,13 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(303); - var queryList_1 = __webpack_require__(312); + var Classes = __webpack_require__(305); + var queryList_1 = __webpack_require__(314); var Suggest = Suggest_1 = (function (_super) { tslib_1.__extends(Suggest, _super); function Suggest() { @@ -41440,7 +41571,7 @@ /***/ }), -/* 335 */ +/* 337 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -41451,17 +41582,17 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(303); - var select_1 = __webpack_require__(333); - var timezoneDisplayFormat_1 = __webpack_require__(336); + var Classes = __webpack_require__(305); + var select_1 = __webpack_require__(335); + var timezoneDisplayFormat_1 = __webpack_require__(338); exports.TimezoneDisplayFormat = timezoneDisplayFormat_1.TimezoneDisplayFormat; - var timezoneItems_1 = __webpack_require__(459); - var timezoneUtils_1 = __webpack_require__(460); + var timezoneItems_1 = __webpack_require__(461); + var timezoneUtils_1 = __webpack_require__(462); var TypedSelect = select_1.Select.ofType(); var TimezonePicker = (function (_super) { tslib_1.__extends(TimezonePicker, _super); @@ -41552,7 +41683,7 @@ /***/ }), -/* 336 */ +/* 338 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -41563,8 +41694,8 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var moment = __webpack_require__(337); - var timezoneMetadata_1 = __webpack_require__(458); + var moment = __webpack_require__(339); + var timezoneMetadata_1 = __webpack_require__(460); exports.TimezoneDisplayFormat = { /** Abbreviation format i.e. "HST" */ ABBREVIATION: "abbreviation", @@ -41603,15 +41734,15 @@ /***/ }), -/* 337 */ +/* 339 */ /***/ (function(module, exports, __webpack_require__) { - var moment = module.exports = __webpack_require__(338); - moment.tz.load(__webpack_require__(457)); + var moment = module.exports = __webpack_require__(340); + moment.tz.load(__webpack_require__(459)); /***/ }), -/* 338 */ +/* 340 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;//! moment-timezone.js @@ -41625,7 +41756,7 @@ /*global define*/ if (true) { - !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(339)], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); // AMD + !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(341)], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__)); // AMD } else if (typeof module === 'object' && module.exports) { module.exports = factory(require('moment')); // Node } else { @@ -42218,7 +42349,7 @@ /***/ }), -/* 339 */ +/* 341 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(module) {//! moment.js @@ -44050,7 +44181,7 @@ module && module.exports) { try { oldLocale = globalLocale._abbr; - __webpack_require__(341)("./" + name); + __webpack_require__(343)("./" + name); // because defineLocale currently also sets the global locale, we // want to undo that for lazy loaded locales getSetGlobalLocale(oldLocale); @@ -46685,10 +46816,10 @@ }))); - /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(340)(module))) + /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(342)(module))) /***/ }), -/* 340 */ +/* 342 */ /***/ (function(module, exports) { module.exports = function(module) { @@ -46704,240 +46835,240 @@ /***/ }), -/* 341 */ +/* 343 */ /***/ (function(module, exports, __webpack_require__) { var map = { - "./af": 342, - "./af.js": 342, - "./ar": 343, - "./ar-dz": 344, - "./ar-dz.js": 344, - "./ar-kw": 345, - "./ar-kw.js": 345, - "./ar-ly": 346, - "./ar-ly.js": 346, - "./ar-ma": 347, - "./ar-ma.js": 347, - "./ar-sa": 348, - "./ar-sa.js": 348, - "./ar-tn": 349, - "./ar-tn.js": 349, - "./ar.js": 343, - "./az": 350, - "./az.js": 350, - "./be": 351, - "./be.js": 351, - "./bg": 352, - "./bg.js": 352, - "./bn": 353, - "./bn.js": 353, - "./bo": 354, - "./bo.js": 354, - "./br": 355, - "./br.js": 355, - "./bs": 356, - "./bs.js": 356, - "./ca": 357, - "./ca.js": 357, - "./cs": 358, - "./cs.js": 358, - "./cv": 359, - "./cv.js": 359, - "./cy": 360, - "./cy.js": 360, - "./da": 361, - "./da.js": 361, - "./de": 362, - "./de-at": 363, - "./de-at.js": 363, - "./de-ch": 364, - "./de-ch.js": 364, - "./de.js": 362, - "./dv": 365, - "./dv.js": 365, - "./el": 366, - "./el.js": 366, - "./en-au": 367, - "./en-au.js": 367, - "./en-ca": 368, - "./en-ca.js": 368, - "./en-gb": 369, - "./en-gb.js": 369, - "./en-ie": 370, - "./en-ie.js": 370, - "./en-nz": 371, - "./en-nz.js": 371, - "./eo": 372, - "./eo.js": 372, - "./es": 373, - "./es-do": 374, - "./es-do.js": 374, - "./es.js": 373, - "./et": 375, - "./et.js": 375, - "./eu": 376, - "./eu.js": 376, - "./fa": 377, - "./fa.js": 377, - "./fi": 378, - "./fi.js": 378, - "./fo": 379, - "./fo.js": 379, - "./fr": 380, - "./fr-ca": 381, - "./fr-ca.js": 381, - "./fr-ch": 382, - "./fr-ch.js": 382, - "./fr.js": 380, - "./fy": 383, - "./fy.js": 383, - "./gd": 384, - "./gd.js": 384, - "./gl": 385, - "./gl.js": 385, - "./gom-latn": 386, - "./gom-latn.js": 386, - "./he": 387, - "./he.js": 387, - "./hi": 388, - "./hi.js": 388, - "./hr": 389, - "./hr.js": 389, - "./hu": 390, - "./hu.js": 390, - "./hy-am": 391, - "./hy-am.js": 391, - "./id": 392, - "./id.js": 392, - "./is": 393, - "./is.js": 393, - "./it": 394, - "./it.js": 394, - "./ja": 395, - "./ja.js": 395, - "./jv": 396, - "./jv.js": 396, - "./ka": 397, - "./ka.js": 397, - "./kk": 398, - "./kk.js": 398, - "./km": 399, - "./km.js": 399, - "./kn": 400, - "./kn.js": 400, - "./ko": 401, - "./ko.js": 401, - "./ky": 402, - "./ky.js": 402, - "./lb": 403, - "./lb.js": 403, - "./lo": 404, - "./lo.js": 404, - "./lt": 405, - "./lt.js": 405, - "./lv": 406, - "./lv.js": 406, - "./me": 407, - "./me.js": 407, - "./mi": 408, - "./mi.js": 408, - "./mk": 409, - "./mk.js": 409, - "./ml": 410, - "./ml.js": 410, - "./mr": 411, - "./mr.js": 411, - "./ms": 412, - "./ms-my": 413, - "./ms-my.js": 413, - "./ms.js": 412, - "./my": 414, - "./my.js": 414, - "./nb": 415, - "./nb.js": 415, - "./ne": 416, - "./ne.js": 416, - "./nl": 417, - "./nl-be": 418, - "./nl-be.js": 418, - "./nl.js": 417, - "./nn": 419, - "./nn.js": 419, - "./pa-in": 420, - "./pa-in.js": 420, - "./pl": 421, - "./pl.js": 421, - "./pt": 422, - "./pt-br": 423, - "./pt-br.js": 423, - "./pt.js": 422, - "./ro": 424, - "./ro.js": 424, - "./ru": 425, - "./ru.js": 425, - "./sd": 426, - "./sd.js": 426, - "./se": 427, - "./se.js": 427, - "./si": 428, - "./si.js": 428, - "./sk": 429, - "./sk.js": 429, - "./sl": 430, - "./sl.js": 430, - "./sq": 431, - "./sq.js": 431, - "./sr": 432, - "./sr-cyrl": 433, - "./sr-cyrl.js": 433, - "./sr.js": 432, - "./ss": 434, - "./ss.js": 434, - "./sv": 435, - "./sv.js": 435, - "./sw": 436, - "./sw.js": 436, - "./ta": 437, - "./ta.js": 437, - "./te": 438, - "./te.js": 438, - "./tet": 439, - "./tet.js": 439, - "./th": 440, - "./th.js": 440, - "./tl-ph": 441, - "./tl-ph.js": 441, - "./tlh": 442, - "./tlh.js": 442, - "./tr": 443, - "./tr.js": 443, - "./tzl": 444, - "./tzl.js": 444, - "./tzm": 445, - "./tzm-latn": 446, - "./tzm-latn.js": 446, - "./tzm.js": 445, - "./uk": 447, - "./uk.js": 447, - "./ur": 448, - "./ur.js": 448, - "./uz": 449, - "./uz-latn": 450, - "./uz-latn.js": 450, - "./uz.js": 449, - "./vi": 451, - "./vi.js": 451, - "./x-pseudo": 452, - "./x-pseudo.js": 452, - "./yo": 453, - "./yo.js": 453, - "./zh-cn": 454, - "./zh-cn.js": 454, - "./zh-hk": 455, - "./zh-hk.js": 455, - "./zh-tw": 456, - "./zh-tw.js": 456 + "./af": 344, + "./af.js": 344, + "./ar": 345, + "./ar-dz": 346, + "./ar-dz.js": 346, + "./ar-kw": 347, + "./ar-kw.js": 347, + "./ar-ly": 348, + "./ar-ly.js": 348, + "./ar-ma": 349, + "./ar-ma.js": 349, + "./ar-sa": 350, + "./ar-sa.js": 350, + "./ar-tn": 351, + "./ar-tn.js": 351, + "./ar.js": 345, + "./az": 352, + "./az.js": 352, + "./be": 353, + "./be.js": 353, + "./bg": 354, + "./bg.js": 354, + "./bn": 355, + "./bn.js": 355, + "./bo": 356, + "./bo.js": 356, + "./br": 357, + "./br.js": 357, + "./bs": 358, + "./bs.js": 358, + "./ca": 359, + "./ca.js": 359, + "./cs": 360, + "./cs.js": 360, + "./cv": 361, + "./cv.js": 361, + "./cy": 362, + "./cy.js": 362, + "./da": 363, + "./da.js": 363, + "./de": 364, + "./de-at": 365, + "./de-at.js": 365, + "./de-ch": 366, + "./de-ch.js": 366, + "./de.js": 364, + "./dv": 367, + "./dv.js": 367, + "./el": 368, + "./el.js": 368, + "./en-au": 369, + "./en-au.js": 369, + "./en-ca": 370, + "./en-ca.js": 370, + "./en-gb": 371, + "./en-gb.js": 371, + "./en-ie": 372, + "./en-ie.js": 372, + "./en-nz": 373, + "./en-nz.js": 373, + "./eo": 374, + "./eo.js": 374, + "./es": 375, + "./es-do": 376, + "./es-do.js": 376, + "./es.js": 375, + "./et": 377, + "./et.js": 377, + "./eu": 378, + "./eu.js": 378, + "./fa": 379, + "./fa.js": 379, + "./fi": 380, + "./fi.js": 380, + "./fo": 381, + "./fo.js": 381, + "./fr": 382, + "./fr-ca": 383, + "./fr-ca.js": 383, + "./fr-ch": 384, + "./fr-ch.js": 384, + "./fr.js": 382, + "./fy": 385, + "./fy.js": 385, + "./gd": 386, + "./gd.js": 386, + "./gl": 387, + "./gl.js": 387, + "./gom-latn": 388, + "./gom-latn.js": 388, + "./he": 389, + "./he.js": 389, + "./hi": 390, + "./hi.js": 390, + "./hr": 391, + "./hr.js": 391, + "./hu": 392, + "./hu.js": 392, + "./hy-am": 393, + "./hy-am.js": 393, + "./id": 394, + "./id.js": 394, + "./is": 395, + "./is.js": 395, + "./it": 396, + "./it.js": 396, + "./ja": 397, + "./ja.js": 397, + "./jv": 398, + "./jv.js": 398, + "./ka": 399, + "./ka.js": 399, + "./kk": 400, + "./kk.js": 400, + "./km": 401, + "./km.js": 401, + "./kn": 402, + "./kn.js": 402, + "./ko": 403, + "./ko.js": 403, + "./ky": 404, + "./ky.js": 404, + "./lb": 405, + "./lb.js": 405, + "./lo": 406, + "./lo.js": 406, + "./lt": 407, + "./lt.js": 407, + "./lv": 408, + "./lv.js": 408, + "./me": 409, + "./me.js": 409, + "./mi": 410, + "./mi.js": 410, + "./mk": 411, + "./mk.js": 411, + "./ml": 412, + "./ml.js": 412, + "./mr": 413, + "./mr.js": 413, + "./ms": 414, + "./ms-my": 415, + "./ms-my.js": 415, + "./ms.js": 414, + "./my": 416, + "./my.js": 416, + "./nb": 417, + "./nb.js": 417, + "./ne": 418, + "./ne.js": 418, + "./nl": 419, + "./nl-be": 420, + "./nl-be.js": 420, + "./nl.js": 419, + "./nn": 421, + "./nn.js": 421, + "./pa-in": 422, + "./pa-in.js": 422, + "./pl": 423, + "./pl.js": 423, + "./pt": 424, + "./pt-br": 425, + "./pt-br.js": 425, + "./pt.js": 424, + "./ro": 426, + "./ro.js": 426, + "./ru": 427, + "./ru.js": 427, + "./sd": 428, + "./sd.js": 428, + "./se": 429, + "./se.js": 429, + "./si": 430, + "./si.js": 430, + "./sk": 431, + "./sk.js": 431, + "./sl": 432, + "./sl.js": 432, + "./sq": 433, + "./sq.js": 433, + "./sr": 434, + "./sr-cyrl": 435, + "./sr-cyrl.js": 435, + "./sr.js": 434, + "./ss": 436, + "./ss.js": 436, + "./sv": 437, + "./sv.js": 437, + "./sw": 438, + "./sw.js": 438, + "./ta": 439, + "./ta.js": 439, + "./te": 440, + "./te.js": 440, + "./tet": 441, + "./tet.js": 441, + "./th": 442, + "./th.js": 442, + "./tl-ph": 443, + "./tl-ph.js": 443, + "./tlh": 444, + "./tlh.js": 444, + "./tr": 445, + "./tr.js": 445, + "./tzl": 446, + "./tzl.js": 446, + "./tzm": 447, + "./tzm-latn": 448, + "./tzm-latn.js": 448, + "./tzm.js": 447, + "./uk": 449, + "./uk.js": 449, + "./ur": 450, + "./ur.js": 450, + "./uz": 451, + "./uz-latn": 452, + "./uz-latn.js": 452, + "./uz.js": 451, + "./vi": 453, + "./vi.js": 453, + "./x-pseudo": 454, + "./x-pseudo.js": 454, + "./yo": 455, + "./yo.js": 455, + "./zh-cn": 456, + "./zh-cn.js": 456, + "./zh-hk": 457, + "./zh-hk.js": 457, + "./zh-tw": 458, + "./zh-tw.js": 458 }; function webpackContext(req) { return __webpack_require__(webpackContextResolve(req)); @@ -46950,11 +47081,11 @@ }; webpackContext.resolve = webpackContextResolve; module.exports = webpackContext; - webpackContext.id = 341; + webpackContext.id = 343; /***/ }), -/* 342 */ +/* 344 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -46962,7 +47093,7 @@ //! author : Werner Mollentze : https://github.com/wernerm ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47032,7 +47163,7 @@ /***/ }), -/* 343 */ +/* 345 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47042,7 +47173,7 @@ //! author : forabi https://github.com/forabi ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47179,7 +47310,7 @@ /***/ }), -/* 344 */ +/* 346 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47187,7 +47318,7 @@ //! author : Noureddine LOUAHEDJ : https://github.com/noureddineme ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47243,7 +47374,7 @@ /***/ }), -/* 345 */ +/* 347 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47251,7 +47382,7 @@ //! author : Nusret Parlak: https://github.com/nusretparlak ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47307,7 +47438,7 @@ /***/ }), -/* 346 */ +/* 348 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47315,7 +47446,7 @@ //! author : Ali Hmer: https://github.com/kikoanis ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47438,7 +47569,7 @@ /***/ }), -/* 347 */ +/* 349 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47447,7 +47578,7 @@ //! author : Abdel Said : https://github.com/abdelsaid ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47503,7 +47634,7 @@ /***/ }), -/* 348 */ +/* 350 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47511,7 +47642,7 @@ //! author : Suhail Alkowaileet : https://github.com/xsoh ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47613,7 +47744,7 @@ /***/ }), -/* 349 */ +/* 351 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47621,7 +47752,7 @@ //! author : Nader Toukabri : https://github.com/naderio ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47677,7 +47808,7 @@ /***/ }), -/* 350 */ +/* 352 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47685,7 +47816,7 @@ //! author : topchiyev : https://github.com/topchiyev ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47787,7 +47918,7 @@ /***/ }), -/* 351 */ +/* 353 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47797,7 +47928,7 @@ //! Author : Menelion Elensúle : https://github.com/Oire ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -47926,7 +48057,7 @@ /***/ }), -/* 352 */ +/* 354 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -47934,7 +48065,7 @@ //! author : Krasen Borisov : https://github.com/kraz ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -48021,7 +48152,7 @@ /***/ }), -/* 353 */ +/* 355 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -48029,7 +48160,7 @@ //! author : Kaushik Gandhi : https://github.com/kaushikgandhi ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -48145,7 +48276,7 @@ /***/ }), -/* 354 */ +/* 356 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -48153,7 +48284,7 @@ //! author : Thupten N. Chakrishar : https://github.com/vajradog ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -48269,7 +48400,7 @@ /***/ }), -/* 355 */ +/* 357 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -48277,7 +48408,7 @@ //! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -48382,7 +48513,7 @@ /***/ }), -/* 356 */ +/* 358 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -48391,7 +48522,7 @@ //! based on (hr) translation by Bojan Marković ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -48530,7 +48661,7 @@ /***/ }), -/* 357 */ +/* 359 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -48538,7 +48669,7 @@ //! author : Juan G. Hurtado : https://github.com/juanghurtado ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -48623,7 +48754,7 @@ /***/ }), -/* 358 */ +/* 360 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -48631,7 +48762,7 @@ //! author : petrbela : https://github.com/petrbela ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -48800,7 +48931,7 @@ /***/ }), -/* 359 */ +/* 361 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -48808,7 +48939,7 @@ //! author : Anatoly Mironov : https://github.com/mirontoli ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -48868,7 +48999,7 @@ /***/ }), -/* 360 */ +/* 362 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -48877,7 +49008,7 @@ //! author : https://github.com/ryangreaves ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -48954,7 +49085,7 @@ /***/ }), -/* 361 */ +/* 363 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -48962,7 +49093,7 @@ //! author : Ulrik Nielsen : https://github.com/mrbase ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49019,7 +49150,7 @@ /***/ }), -/* 362 */ +/* 364 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49029,7 +49160,7 @@ //! author : Mikolaj Dadela : https://github.com/mik01aj ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49102,7 +49233,7 @@ /***/ }), -/* 363 */ +/* 365 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49113,7 +49244,7 @@ //! author : Mikolaj Dadela : https://github.com/mik01aj ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49186,7 +49317,7 @@ /***/ }), -/* 364 */ +/* 366 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49194,7 +49325,7 @@ //! author : sschueller : https://github.com/sschueller ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49269,7 +49400,7 @@ /***/ }), -/* 365 */ +/* 367 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49277,7 +49408,7 @@ //! author : Jawish Hameed : https://github.com/jawish ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49374,7 +49505,7 @@ /***/ }), -/* 366 */ +/* 368 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49382,7 +49513,7 @@ //! author : Aggelos Karalias : https://github.com/mehiel ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49479,7 +49610,7 @@ /***/ }), -/* 367 */ +/* 369 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49487,7 +49618,7 @@ //! author : Jared Morse : https://github.com/jarcoal ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49551,7 +49682,7 @@ /***/ }), -/* 368 */ +/* 370 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49559,7 +49690,7 @@ //! author : Jonathan Abourbih : https://github.com/jonbca ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49619,7 +49750,7 @@ /***/ }), -/* 369 */ +/* 371 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49627,7 +49758,7 @@ //! author : Chris Gedrim : https://github.com/chrisgedrim ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49691,7 +49822,7 @@ /***/ }), -/* 370 */ +/* 372 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49699,7 +49830,7 @@ //! author : Chris Cartlidge : https://github.com/chriscartlidge ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49763,7 +49894,7 @@ /***/ }), -/* 371 */ +/* 373 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49771,7 +49902,7 @@ //! author : Luke McGregor : https://github.com/lukemcgregor ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49835,7 +49966,7 @@ /***/ }), -/* 372 */ +/* 374 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49845,7 +49976,7 @@ //! comment : miestasmia corrected the translation by colindean ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -49913,7 +50044,7 @@ /***/ }), -/* 373 */ +/* 375 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -49921,7 +50052,7 @@ //! author : Julio Napurí : https://github.com/julionc ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50001,14 +50132,14 @@ /***/ }), -/* 374 */ +/* 376 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration //! locale : Spanish (Dominican Republic) [es-do] ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50088,7 +50219,7 @@ /***/ }), -/* 375 */ +/* 377 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50097,7 +50228,7 @@ //! improvements : Illimar Tambek : https://github.com/ragulka ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50173,7 +50304,7 @@ /***/ }), -/* 376 */ +/* 378 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50181,7 +50312,7 @@ //! author : Eneko Illarramendi : https://github.com/eillarra ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50244,7 +50375,7 @@ /***/ }), -/* 377 */ +/* 379 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50252,7 +50383,7 @@ //! author : Ebrahim Byagowi : https://github.com/ebraminio ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50356,7 +50487,7 @@ /***/ }), -/* 378 */ +/* 380 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50364,7 +50495,7 @@ //! author : Tarmo Aidantausta : https://github.com/bleadof ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50468,7 +50599,7 @@ /***/ }), -/* 379 */ +/* 381 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50476,7 +50607,7 @@ //! author : Ragnar Johannesen : https://github.com/ragnar123 ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50533,7 +50664,7 @@ /***/ }), -/* 380 */ +/* 382 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50541,7 +50672,7 @@ //! author : John Fischer : https://github.com/jfroffice ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50621,7 +50752,7 @@ /***/ }), -/* 381 */ +/* 383 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50629,7 +50760,7 @@ //! author : Jonathan Abourbih : https://github.com/jonbca ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50700,7 +50831,7 @@ /***/ }), -/* 382 */ +/* 384 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50708,7 +50839,7 @@ //! author : Gaspard Bucher : https://github.com/gaspard ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50783,7 +50914,7 @@ /***/ }), -/* 383 */ +/* 385 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50791,7 +50922,7 @@ //! author : Robin van der Vliet : https://github.com/robin0van0der0v ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50863,7 +50994,7 @@ /***/ }), -/* 384 */ +/* 386 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50871,7 +51002,7 @@ //! author : Jon Ashdown : https://github.com/jonashdown ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -50944,7 +51075,7 @@ /***/ }), -/* 385 */ +/* 387 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -50952,7 +51083,7 @@ //! author : Juan G. Hurtado : https://github.com/juanghurtado ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -51026,7 +51157,7 @@ /***/ }), -/* 386 */ +/* 388 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -51034,7 +51165,7 @@ //! author : The Discoverer : https://github.com/WikiDiscoverer ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -51153,7 +51284,7 @@ /***/ }), -/* 387 */ +/* 389 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -51163,7 +51294,7 @@ //! author : Tal Ater : https://github.com/TalAter ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -51257,7 +51388,7 @@ /***/ }), -/* 388 */ +/* 390 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -51265,7 +51396,7 @@ //! author : Mayank Singhal : https://github.com/mayanksinghal ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -51386,7 +51517,7 @@ /***/ }), -/* 389 */ +/* 391 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -51394,7 +51525,7 @@ //! author : Bojan Marković : https://github.com/bmarkovic ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -51536,7 +51667,7 @@ /***/ }), -/* 390 */ +/* 392 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -51544,7 +51675,7 @@ //! author : Adam Brunner : https://github.com/adambrunner ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -51650,7 +51781,7 @@ /***/ }), -/* 391 */ +/* 393 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -51658,7 +51789,7 @@ //! author : Armendarabyan : https://github.com/armendarabyan ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -51750,7 +51881,7 @@ /***/ }), -/* 392 */ +/* 394 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -51759,7 +51890,7 @@ //! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -51838,7 +51969,7 @@ /***/ }), -/* 393 */ +/* 395 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -51846,7 +51977,7 @@ //! author : Hinrik Örn Sigurðsson : https://github.com/hinrik ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -51970,7 +52101,7 @@ /***/ }), -/* 394 */ +/* 396 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -51979,7 +52110,7 @@ //! author: Mattia Larentis: https://github.com/nostalgiaz ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52045,7 +52176,7 @@ /***/ }), -/* 395 */ +/* 397 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52053,7 +52184,7 @@ //! author : LI Long : https://github.com/baryon ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52130,7 +52261,7 @@ /***/ }), -/* 396 */ +/* 398 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52139,7 +52270,7 @@ //! reference: http://jv.wikipedia.org/wiki/Basa_Jawa ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52218,7 +52349,7 @@ /***/ }), -/* 397 */ +/* 399 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52226,7 +52357,7 @@ //! author : Irakli Janiashvili : https://github.com/irakli-janiashvili ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52312,7 +52443,7 @@ /***/ }), -/* 398 */ +/* 400 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52320,7 +52451,7 @@ //! authors : Nurlan Rakhimzhanov : https://github.com/nurlan ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52404,7 +52535,7 @@ /***/ }), -/* 399 */ +/* 401 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52412,7 +52543,7 @@ //! author : Kruy Vanna : https://github.com/kruyvanna ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52467,7 +52598,7 @@ /***/ }), -/* 400 */ +/* 402 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52475,7 +52606,7 @@ //! author : Rajeev Naik : https://github.com/rajeevnaikte ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52598,7 +52729,7 @@ /***/ }), -/* 401 */ +/* 403 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52607,7 +52738,7 @@ //! author : Jeeeyul Lee ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52672,7 +52803,7 @@ /***/ }), -/* 402 */ +/* 404 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52680,7 +52811,7 @@ //! author : Chyngyz Arystan uulu : https://github.com/chyngyz ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52765,7 +52896,7 @@ /***/ }), -/* 403 */ +/* 405 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52774,7 +52905,7 @@ //! author : David Raison : https://github.com/kwisatz ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52907,7 +53038,7 @@ /***/ }), -/* 404 */ +/* 406 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52915,7 +53046,7 @@ //! author : Ryan Hart : https://github.com/ryanhart2 ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -52982,7 +53113,7 @@ /***/ }), -/* 405 */ +/* 407 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -52990,7 +53121,7 @@ //! author : Mindaugas Mozūras : https://github.com/mmozuras ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -53104,7 +53235,7 @@ /***/ }), -/* 406 */ +/* 408 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -53113,7 +53244,7 @@ //! author : Jānis Elmeris : https://github.com/JanisE ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -53206,7 +53337,7 @@ /***/ }), -/* 407 */ +/* 409 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -53214,7 +53345,7 @@ //! author : Miodrag Nikač : https://github.com/miodragnikac ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -53322,7 +53453,7 @@ /***/ }), -/* 408 */ +/* 410 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -53330,7 +53461,7 @@ //! author : John Corrigan : https://github.com/johnideal ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -53391,7 +53522,7 @@ /***/ }), -/* 409 */ +/* 411 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -53399,7 +53530,7 @@ //! author : Borislav Mickov : https://github.com/B0k0 ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -53486,7 +53617,7 @@ /***/ }), -/* 410 */ +/* 412 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -53494,7 +53625,7 @@ //! author : Floyd Pink : https://github.com/floydpink ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -53572,7 +53703,7 @@ /***/ }), -/* 411 */ +/* 413 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -53581,7 +53712,7 @@ //! author : Vivek Athalye : https://github.com/vnathalye ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -53736,7 +53867,7 @@ /***/ }), -/* 412 */ +/* 414 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -53744,7 +53875,7 @@ //! author : Weldan Jamili : https://github.com/weldan ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -53823,7 +53954,7 @@ /***/ }), -/* 413 */ +/* 415 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -53832,7 +53963,7 @@ //! author : Weldan Jamili : https://github.com/weldan ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -53911,7 +54042,7 @@ /***/ }), -/* 414 */ +/* 416 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -53921,7 +54052,7 @@ //! author : Tin Aung Lin : https://github.com/thanyawzinmin ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54012,7 +54143,7 @@ /***/ }), -/* 415 */ +/* 417 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54021,7 +54152,7 @@ //! Sigurd Gartmann : https://github.com/sigurdga ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54080,7 +54211,7 @@ /***/ }), -/* 416 */ +/* 418 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54088,7 +54219,7 @@ //! author : suvash : https://github.com/suvash ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54208,7 +54339,7 @@ /***/ }), -/* 417 */ +/* 419 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54217,7 +54348,7 @@ //! author : Jacob Middag : https://github.com/middagj ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54301,7 +54432,7 @@ /***/ }), -/* 418 */ +/* 420 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54310,7 +54441,7 @@ //! author : Jacob Middag : https://github.com/middagj ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54394,7 +54525,7 @@ /***/ }), -/* 419 */ +/* 421 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54402,7 +54533,7 @@ //! author : https://github.com/mechuwind ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54459,7 +54590,7 @@ /***/ }), -/* 420 */ +/* 422 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54467,7 +54598,7 @@ //! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54588,7 +54719,7 @@ /***/ }), -/* 421 */ +/* 423 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54596,7 +54727,7 @@ //! author : Rafal Hirsz : https://github.com/evoL ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54700,7 +54831,7 @@ /***/ }), -/* 422 */ +/* 424 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54708,7 +54839,7 @@ //! author : Jefferson : https://github.com/jalex79 ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54770,7 +54901,7 @@ /***/ }), -/* 423 */ +/* 425 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54778,7 +54909,7 @@ //! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54836,7 +54967,7 @@ /***/ }), -/* 424 */ +/* 426 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54845,7 +54976,7 @@ //! author : Valentin Agachi : https://github.com/avaly ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -54916,7 +55047,7 @@ /***/ }), -/* 425 */ +/* 427 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -54926,7 +55057,7 @@ //! author : Коренберг Марк : https://github.com/socketpair ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -55104,7 +55235,7 @@ /***/ }), -/* 426 */ +/* 428 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -55112,7 +55243,7 @@ //! author : Narain Sagar : https://github.com/narainsagar ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -55207,7 +55338,7 @@ /***/ }), -/* 427 */ +/* 429 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -55215,7 +55346,7 @@ //! authors : Bård Rolstad Henriksen : https://github.com/karamell ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -55273,7 +55404,7 @@ /***/ }), -/* 428 */ +/* 430 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -55281,7 +55412,7 @@ //! author : Sampath Sitinamaluwa : https://github.com/sampathsris ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -55349,7 +55480,7 @@ /***/ }), -/* 429 */ +/* 431 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -55358,7 +55489,7 @@ //! based on work of petrbela : https://github.com/petrbela ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -55504,7 +55635,7 @@ /***/ }), -/* 430 */ +/* 432 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -55512,7 +55643,7 @@ //! author : Robert Sedovšek : https://github.com/sedovsek ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -55671,7 +55802,7 @@ /***/ }), -/* 431 */ +/* 433 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -55681,7 +55812,7 @@ //! author : Oerd Cukalla : https://github.com/oerd ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -55746,7 +55877,7 @@ /***/ }), -/* 432 */ +/* 434 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -55754,7 +55885,7 @@ //! author : Milan Janačković : https://github.com/milan-j ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -55861,7 +55992,7 @@ /***/ }), -/* 433 */ +/* 435 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -55869,7 +56000,7 @@ //! author : Milan Janačković : https://github.com/milan-j ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -55976,7 +56107,7 @@ /***/ }), -/* 434 */ +/* 436 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -55984,7 +56115,7 @@ //! author : Nicolai Davies : https://github.com/nicolaidavies ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56070,7 +56201,7 @@ /***/ }), -/* 435 */ +/* 437 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56078,7 +56209,7 @@ //! author : Jens Alm : https://github.com/ulmus ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56144,7 +56275,7 @@ /***/ }), -/* 436 */ +/* 438 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56152,7 +56283,7 @@ //! author : Fahad Kassim : https://github.com/fadsel ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56208,7 +56339,7 @@ /***/ }), -/* 437 */ +/* 439 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56216,7 +56347,7 @@ //! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404 ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56343,7 +56474,7 @@ /***/ }), -/* 438 */ +/* 440 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56351,7 +56482,7 @@ //! author : Krishna Chaitanya Thota : https://github.com/kcthota ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56437,7 +56568,7 @@ /***/ }), -/* 439 */ +/* 441 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56446,7 +56577,7 @@ //! author : Onorio De J. Afonso : https://github.com/marobo ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56510,7 +56641,7 @@ /***/ }), -/* 440 */ +/* 442 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56518,7 +56649,7 @@ //! author : Kridsada Thanabulpong : https://github.com/sirn ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56582,7 +56713,7 @@ /***/ }), -/* 441 */ +/* 443 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56590,7 +56721,7 @@ //! author : Dan Hagman : https://github.com/hagmandan ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56649,7 +56780,7 @@ /***/ }), -/* 442 */ +/* 444 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56657,7 +56788,7 @@ //! author : Dominika Kruk : https://github.com/amaranthrose ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56774,7 +56905,7 @@ /***/ }), -/* 443 */ +/* 445 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56783,7 +56914,7 @@ //! Burak Yiğit Kaya: https://github.com/BYK ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56869,7 +57000,7 @@ /***/ }), -/* 444 */ +/* 446 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56878,7 +57009,7 @@ //! author : Iustì Canun ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -56965,7 +57096,7 @@ /***/ }), -/* 445 */ +/* 447 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -56973,7 +57104,7 @@ //! author : Abdel Said : https://github.com/abdelsaid ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57028,7 +57159,7 @@ /***/ }), -/* 446 */ +/* 448 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57036,7 +57167,7 @@ //! author : Abdel Said : https://github.com/abdelsaid ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57091,7 +57222,7 @@ /***/ }), -/* 447 */ +/* 449 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57100,7 +57231,7 @@ //! Author : Menelion Elensúle : https://github.com/Oire ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57247,7 +57378,7 @@ /***/ }), -/* 448 */ +/* 450 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57256,7 +57387,7 @@ //! author : Zack : https://github.com/ZackVision ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57351,7 +57482,7 @@ /***/ }), -/* 449 */ +/* 451 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57359,7 +57490,7 @@ //! author : Sardor Muminov : https://github.com/muminoff ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57414,7 +57545,7 @@ /***/ }), -/* 450 */ +/* 452 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57422,7 +57553,7 @@ //! author : Rasulbek Mirzayev : github.com/Rasulbeeek ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57477,7 +57608,7 @@ /***/ }), -/* 451 */ +/* 453 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57485,7 +57616,7 @@ //! author : Bang Nguyen : https://github.com/bangnk ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57561,7 +57692,7 @@ /***/ }), -/* 452 */ +/* 454 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57569,7 +57700,7 @@ //! author : Andrew Hood : https://github.com/andrewhood125 ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57634,7 +57765,7 @@ /***/ }), -/* 453 */ +/* 455 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57642,7 +57773,7 @@ //! author : Atolagbe Abisoye : https://github.com/andela-batolagbe ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57699,7 +57830,7 @@ /***/ }), -/* 454 */ +/* 456 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57708,7 +57839,7 @@ //! author : Zeno Zeng : https://github.com/zenozeng ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57815,7 +57946,7 @@ /***/ }), -/* 455 */ +/* 457 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57825,7 +57956,7 @@ //! author : Konstantin : https://github.com/skfd ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -57925,7 +58056,7 @@ /***/ }), -/* 456 */ +/* 458 */ /***/ (function(module, exports, __webpack_require__) { //! moment.js locale configuration @@ -57934,7 +58065,7 @@ //! author : Chris Lam : https://github.com/hehachris ;(function (global, factory) { - true ? factory(__webpack_require__(339)) : + true ? factory(__webpack_require__(341)) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment) }(this, (function (moment) { 'use strict'; @@ -58034,13 +58165,13 @@ /***/ }), -/* 457 */ +/* 459 */ /***/ (function(module, exports) { module.exports = {"version":"2017b","zones":["Africa/Abidjan|LMT GMT|g.8 0|01|-2ldXH.Q|48e5","Africa/Accra|LMT GMT +0020|.Q 0 -k|012121212121212121212121212121212121212121212121|-26BbX.8 6tzX.8 MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE 1BAk MnE 1C0k MnE 1BAk MnE 1BAk MnE|41e5","Africa/Nairobi|LMT EAT +0230 +0245|-2r.g -30 -2u -2J|01231|-1F3Cr.g 3Dzr.g okMu MFXJ|47e5","Africa/Algiers|PMT WET WEST CET CEST|-9.l 0 -10 -10 -20|0121212121212121343431312123431213|-2nco9.l cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 DA0 Imo0 rd0 De0 9Xz0 1fb0 1ap0 16K0 2yo0 mEp0 hwL0 jxA0 11A0 dDd0 17b0 11B0 1cN0 2Dy0 1cN0 1fB0 1cL0|26e5","Africa/Lagos|LMT WAT|-d.A -10|01|-22y0d.A|17e6","Africa/Bissau|LMT -01 GMT|12.k 10 0|012|-2ldWV.E 2xonV.E|39e4","Africa/Maputo|LMT CAT|-2a.k -20|01|-2GJea.k|26e5","Africa/Cairo|EET EEST|-20 -30|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1bIO0 vb0 1ip0 11z0 1iN0 1nz0 12p0 1pz0 10N0 1pz0 16p0 1jz0 s3d0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1WL0 rd0 1Rz0 wp0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1qL0 Xd0 1oL0 11d0 1oL0 11d0 1pb0 11d0 1oL0 11d0 1oL0 11d0 1ny0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 WL0 1qN0 Rb0 1wp0 On0 1zd0 Lz0 1EN0 Fb0 c10 8n0 8Nd0 gL0 e10 mn0|15e6","Africa/Casablanca|LMT WET WEST CET|u.k 0 -10 -10|0121212121212121213121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2gMnt.E 130Lt.E rb0 Dd0 dVb0 b6p0 TX0 EoB0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4mn0 SyN0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 Rc0 11A0 e00 e00 U00 11A0 8o0 e00 11A0 11A0 5A0 e00 17c0 1fA0 1a00 1a00 1fA0 17c0 1io0 14o0 1lc0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1lc0 14o0 1fA0|32e5","Africa/Ceuta|WET WEST CET CEST|0 -10 -10 -20|010101010101010101010232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-25KN0 11z0 drd0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1y7o0 LL0 gnd0 rz0 43d0 AL0 1Nd0 XX0 1Cp0 pz0 dEp0 4VB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|85e3","Africa/El_Aaiun|LMT -01 WET WEST|Q.M 10 0 -10|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1rDz7.c 1GVA7.c 6L0 AL0 1Nd0 XX0 1Cp0 pz0 1cBB0 AL0 1Nd0 wn0 1FB0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 Rc0 11A0 e00 e00 U00 11A0 8o0 e00 11A0 11A0 5A0 e00 17c0 1fA0 1a00 1a00 1fA0 17c0 1io0 14o0 1lc0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1lc0 14o0 1fA0|20e4","Africa/Johannesburg|SAST SAST SAST|-1u -20 -30|012121|-2GJdu 1Ajdu 1cL0 1cN0 1cL0|84e5","Africa/Khartoum|LMT CAT CAST EAT|-2a.8 -20 -30 -30|01212121212121212121212121212121213|-1yW2a.8 1zK0a.8 16L0 1iN0 17b0 1jd0 17b0 1ip0 17z0 1i10 17X0 1hB0 18n0 1hd0 19b0 1gp0 19z0 1iN0 17b0 1ip0 17z0 1i10 18n0 1hd0 18L0 1gN0 19b0 1gp0 19z0 1iN0 17z0 1i10 17X0 yGd0|51e5","Africa/Monrovia|MMT MMT GMT|H.8 I.u 0|012|-23Lzg.Q 28G01.m|11e5","Africa/Ndjamena|LMT WAT WAST|-10.c -10 -20|0121|-2le10.c 2J3c0.c Wn0|13e5","Africa/Tripoli|LMT CET CEST EET|-Q.I -10 -20 -20|012121213121212121212121213123123|-21JcQ.I 1hnBQ.I vx0 4iP0 xx0 4eN0 Bb0 7ip0 U0n0 A10 1db0 1cN0 1db0 1dd0 1db0 1eN0 1bb0 1e10 1cL0 1c10 1db0 1dd0 1db0 1cN0 1db0 1q10 fAn0 1ep0 1db0 AKq0 TA0 1o00|11e5","Africa/Tunis|PMT CET CEST|-9.l -10 -20|0121212121212121212121212121212121|-2nco9.l 18pa9.l 1qM0 DA0 3Tc0 11B0 1ze0 WM0 7z0 3d0 14L0 1cN0 1f90 1ar0 16J0 1gXB0 WM0 1rA0 11c0 nwo0 Ko0 1cM0 1cM0 1rA0 10M0 zuM0 10N0 1aN0 1qM0 WM0 1qM0 11A0 1o00|20e5","Africa/Windhoek|+0130 SAST SAST CAT WAT WAST|-1u -20 -30 -20 -10 -20|012134545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-2GJdu 1Ajdu 1cL0 1SqL0 9NA0 11D0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 11B0 1nX0 11B0|32e4","America/Adak|NST NWT NPT BST BDT AHST HST HDT|b0 a0 a0 b0 a0 a0 a0 90|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17SX0 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|326","America/Anchorage|AST AWT APT AHST AHDT YST AKST AKDT|a0 90 90 a0 90 90 90 80|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17T00 8wX0 iA0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cm0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|30e4","America/Port_of_Spain|LMT AST|46.4 40|01|-2kNvR.U|43e3","America/Araguaina|LMT -03 -02|3c.M 30 20|0121212121212121212121212121212121212121212121212121|-2glwL.c HdKL.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 ny10 Lz0|14e4","America/Argentina/Buenos_Aires|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 A4p0 uL0 1qN0 WL0","America/Argentina/Catamarca|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323132321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 7B0 8zb0 uL0","America/Argentina/Cordoba|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323132323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0 1qN0 WL0","America/Argentina/Jujuy|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323121323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1ze0 TX0 1ld0 WK0 1wp0 TX0 A4p0 uL0","America/Argentina/La_Rioja|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0","America/Argentina/Mendoza|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232312121321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1u20 SL0 1vd0 Tb0 1wp0 TW0 ri10 Op0 7TX0 uL0","America/Argentina/Rio_Gallegos|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rlB0 7B0 8zb0 uL0","America/Argentina/Salta|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231323232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 A4p0 uL0","America/Argentina/San_Juan|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323231232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Qn0 qO0 16n0 Rb0 1wp0 TX0 rld0 m10 8lb0 uL0","America/Argentina/San_Luis|CMT -04 -03 -02|4g.M 40 30 20|012121212121212121212121212121212121212121232323121212321212|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 XX0 1q20 SL0 AN0 vDb0 m10 8lb0 8L0 jd0 1qN0 WL0 1qN0","America/Argentina/Tucuman|CMT -04 -03 -02|4g.M 40 30 20|0121212121212121212121212121212121212121212323232313232123232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wq0 Ra0 1wp0 TX0 rlB0 4N0 8BX0 uL0 1qN0 WL0","America/Argentina/Ushuaia|CMT -04 -03 -02|4g.M 40 30 20|01212121212121212121212121212121212121212123232323232321232|-20UHH.c pKnH.c Mn0 1iN0 Tb0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 1C10 LX0 1C10 LX0 1C10 LX0 1C10 Mn0 MN0 2jz0 MN0 4lX0 u10 5Lb0 1pB0 Fnz0 u10 uL0 1vd0 SL0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 zvd0 Bz0 1tB0 TX0 1wp0 Rb0 1wp0 Rb0 1wp0 TX0 rkN0 8p0 8zb0 uL0","America/Curacao|LMT -0430 AST|4z.L 4u 40|012|-2kV7o.d 28KLS.d|15e4","America/Asuncion|AMT -04 -03|3O.E 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-1x589.k 1DKM9.k 3CL0 3Dd0 10L0 1pB0 10n0 1pB0 10n0 1pB0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1dd0 1cL0 1dd0 1cL0 1dd0 1db0 1dd0 1cL0 1lB0 14n0 1dd0 1cL0 1fd0 WL0 1rd0 1aL0 1dB0 Xz0 1qp0 Xb0 1qN0 10L0 1rB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 WN0 1qL0 11B0 1nX0 1ip0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 TX0 1tB0 19X0 1a10 1fz0 1a10 1fz0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0|28e5","America/Atikokan|CST CDT CWT CPT EST|60 50 50 50 50|0101234|-25TQ0 1in0 Rnb0 3je0 8x30 iw0|28e2","America/Bahia|LMT -03 -02|2y.4 30 20|01212121212121212121212121212121212121212121212121212121212121|-2glxp.U HdLp.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 l5B0 Rb0|27e5","America/Bahia_Banderas|LMT MST CST PST MDT CDT|71 70 60 80 60 50|0121212131414141414141414141414141414152525252525252525252525252525252525252525252525252525252|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nW0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|84e3","America/Barbados|LMT BMT AST ADT|3W.t 3W.t 40 30|01232323232|-1Q0I1.v jsM0 1ODC1.v IL0 1ip0 17b0 1ip0 17b0 1ld0 13b0|28e4","America/Belem|LMT -03 -02|3d.U 30 20|012121212121212121212121212121|-2glwK.4 HdKK.4 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|20e5","America/Belize|LMT CST -0530 CDT|5Q.M 60 5u 50|01212121212121212121212121212121212121212121212121213131|-2kBu7.c fPA7.c Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1wou Rbu 1zcu Onu 1zcu Onu 1zcu Rbu 1wou Rbu 1f0Mu qn0 lxB0 mn0|57e3","America/Blanc-Sablon|AST ADT AWT APT|40 30 30 30|010230|-25TS0 1in0 UGp0 8x50 iu0|11e2","America/Boa_Vista|LMT -04 -03|42.E 40 30|0121212121212121212121212121212121|-2glvV.k HdKV.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 smp0 WL0 1tB0 2L0|62e2","America/Bogota|BMT -05 -04|4U.g 50 40|0121|-2eb73.I 38yo3.I 2en0|90e5","America/Boise|PST PDT MST MWT MPT MDT|80 70 70 60 60 60|0101023425252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-261q0 1nX0 11B0 1nX0 8C10 JCL0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 Dd0 1Kn0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e4","America/Cambridge_Bay|-00 MST MWT MPT MDDT MDT CST CDT EST|0 70 60 60 50 60 60 50 50|0123141515151515151515151515151515151515151515678651515151515151515151515151515151515151515151515151515151515151515151515151|-21Jc0 RO90 8x20 ix0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11A0 1nX0 2K0 WQ0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e2","America/Campo_Grande|LMT -04 -03|3C.s 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2glwl.w HdLl.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0|77e4","America/Cancun|LMT CST EST EDT CDT|5L.4 60 50 40 50|0123232341414141414141414141414141414141412|-1UQG0 2q2o0 yLB0 1lb0 14p0 1lb0 14p0 Lz0 xB0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4","America/Caracas|CMT -0430 -04|4r.E 4u 40|01212|-2kV7w.k 28KM2.k 1IwOu kqo0|29e5","America/Cayenne|LMT -04 -03|3t.k 40 30|012|-2mrwu.E 2gWou.E|58e3","America/Panama|CMT EST|5j.A 50|01|-2uduE.o|15e5","America/Chicago|CST CDT EST CWT CPT|60 50 50 50 50|01010101010101010101010101010101010102010101010103401010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 1wp0 TX0 WN0 1qL0 1cN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 11B0 1Hz0 14p0 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|92e5","America/Chihuahua|LMT MST CST CDT MDT|74.k 70 60 50 60|0121212323241414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|81e4","America/Costa_Rica|SJMT CST CDT|5A.d 60 50|0121212121|-1Xd6n.L 2lu0n.L Db0 1Kp0 Db0 pRB0 15b0 1kp0 mL0|12e5","America/Creston|MST PST|70 80|010|-29DR0 43B0|53e2","America/Cuiaba|LMT -04 -03|3I.k 40 30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2glwf.E HdLf.E 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 4a10 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0|54e4","America/Danmarkshavn|LMT -03 -02 GMT|1e.E 30 20 0|01212121212121212121212121212121213|-2a5WJ.k 2z5fJ.k 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 DC0|8","America/Dawson|YST YDT YWT YPT YDDT PST PDT|90 80 80 80 70 80 70|0101023040565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-25TN0 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 jrA0 fNd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|13e2","America/Dawson_Creek|PST PDT PWT PPT MST|80 70 70 70 70|0102301010101010101010101010101010101010101010101010101014|-25TO0 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 ML0|12e3","America/Denver|MST MDT MWT MPT|70 60 60 60|01010101023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261r0 1nX0 11B0 1nX0 11B0 1qL0 WN0 mn0 Ord0 8x20 ix0 LCN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e5","America/Detroit|LMT CST EST EWT EPT EDT|5w.b 60 50 40 40 40|01234252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2Cgir.N peqr.N 156L0 8x40 iv0 6fd0 11z0 Jy10 SL0 dnB0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e5","America/Edmonton|LMT MST MDT MWT MPT|7x.Q 70 60 60 60|01212121212121341212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2yd4q.8 shdq.8 1in0 17d0 hz0 2dB0 1fz0 1a10 11z0 1qN0 WL0 1qN0 11z0 IGN0 8x20 ix0 3NB0 11z0 LFB0 1cL0 3Cp0 1cL0 66N0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|10e5","America/Eirunepe|LMT -05 -04|4D.s 50 40|0121212121212121212121212121212121|-2glvk.w HdLk.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0 yTd0 d5X0|31e3","America/El_Salvador|LMT CST CDT|5U.M 60 50|012121|-1XiG3.c 2Fvc3.c WL0 1qN0 WL0|11e5","America/Tijuana|LMT MST PST PDT PWT PPT|7M.4 70 80 70 70 70|012123245232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQE0 4PX0 8mM0 8lc0 SN0 1cL0 pHB0 83r0 zI0 5O10 1Rz0 cOO0 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 BUp0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|20e5","America/Fort_Nelson|PST PDT PWT PPT MST|80 70 70 70 70|01023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010104|-25TO0 1in0 UGp0 8x10 iy0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2","America/Fort_Wayne|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|010101023010101010101010101040454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 QI10 Db0 RB0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 5Tz0 1o10 qLb0 1cL0 1cN0 1cL0 1qhd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Fortaleza|LMT -03 -02|2y 30 20|0121212121212121212121212121212121212121|-2glxq HdLq 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 5z0 2mN0 On0|34e5","America/Glace_Bay|LMT AST ADT AWT APT|3X.M 40 30 30 30|012134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsI0.c CwO0.c 1in0 UGp0 8x50 iu0 iq10 11z0 Jg10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3","America/Godthab|LMT -03 -02|3q.U 30 20|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5Ux.4 2z5dx.4 19U0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e3","America/Goose_Bay|NST NDT NST NDT NWT NPT AST ADT ADDT|3u.Q 2u.Q 3u 2u 2u 2u 40 30 20|010232323232323245232323232323232323232323232323232323232326767676767676767676767676767676767676767676768676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-25TSt.8 1in0 DXb0 2HbX.8 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 S10 g0u 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|76e2","America/Grand_Turk|KMT EST EDT AST|57.b 50 40 40|0121212121212121212121212121212121212121212121212121212121212121212121212123|-2l1uQ.N 2HHBQ.N 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e2","America/Guatemala|LMT CST CDT|62.4 60 50|0121212121|-24KhV.U 2efXV.U An0 mtd0 Nz0 ifB0 17b0 zDB0 11z0|13e5","America/Guayaquil|QMT -05 -04|5e 50 40|0121|-1yVSK 2uILK rz0|27e5","America/Guyana|LMT -0345 -03 -04|3Q.E 3J 30 40|0123|-2dvU7.k 2r6LQ.k Bxbf|80e4","America/Halifax|LMT AST ADT AWT APT|4e.o 40 30 30 30|0121212121212121212121212121212121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsHJ.A xzzJ.A 1db0 3I30 1in0 3HX0 IL0 1E10 ML0 1yN0 Pb0 1Bd0 Mn0 1Bd0 Rz0 1w10 Xb0 1w10 LX0 1w10 Xb0 1w10 Lz0 1C10 Jz0 1E10 OL0 1yN0 Un0 1qp0 Xb0 1qp0 11X0 1w10 Lz0 1HB0 LX0 1C10 FX0 1w10 Xb0 1qp0 Xb0 1BB0 LX0 1td0 Xb0 1qp0 Xb0 Rf0 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 3Qp0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 6i10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|39e4","America/Havana|HMT CST CDT|5t.A 50 40|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Meuu.o 72zu.o ML0 sld0 An0 1Nd0 Db0 1Nd0 An0 6Ep0 An0 1Nd0 An0 JDd0 Mn0 1Ap0 On0 1fd0 11X0 1qN0 WL0 1wp0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 14n0 1ld0 14L0 1kN0 15b0 1kp0 1cL0 1cN0 1fz0 1a10 1fz0 1fB0 11z0 14p0 1nX0 11B0 1nX0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 1a10 1in0 1a10 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 17c0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 11A0 6i00 Rc0 1wo0 U00 1tA0 Rc0 1wo0 U00 1wo0 U00 1zc0 U00 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0|21e5","America/Hermosillo|LMT MST CST PST MDT|7n.Q 70 60 80 60|0121212131414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0|64e4","America/Indiana/Knox|CST CDT CWT CPT EST|60 50 50 50 50|0101023010101010101010101010101010101040101010101010101010101010101010101010101010101010141010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 3NB0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 3Cn0 8wp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 z8o0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Indiana/Marengo|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101023010101010101010104545454545414545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 dyN0 11z0 6fd0 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1e6p0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Indiana/Petersburg|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010104010101010101010101010141014545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 njX0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 3Fb0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 19co0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Indiana/Tell_City|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010454541010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 g0p0 11z0 1o10 11z0 1qL0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 caL0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Indiana/Vevay|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|010102304545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 kPB0 Awn0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1lnd0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Indiana/Vincennes|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010454541014545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 g0p0 11z0 1o10 11z0 1qL0 WN0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 caL0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Indiana/Winamac|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|01010230101010101010101010101010101010454541054545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 jrz0 1cL0 1cN0 1cL0 1qhd0 1o00 Rd0 1za0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Inuvik|-00 PST PDDT MST MDT|0 80 60 70 60|0121343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-FnA0 tWU0 1fA0 wPe0 2pz0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|35e2","America/Iqaluit|-00 EWT EPT EST EDDT EDT CST CDT|0 40 40 50 30 40 60 50|01234353535353535353535353535353535353535353567353535353535353535353535353535353535353535353535353535353535353535353535353|-16K00 7nX0 iv0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|67e2","America/Jamaica|KMT EST EDT|57.b 50 40|0121212121212121212121|-2l1uQ.N 2uM1Q.N 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0|94e4","America/Juneau|PST PWT PPT PDT YDT YST AKST AKDT|80 70 70 70 80 90 90 80|01203030303030303030303030403030356767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cM0 1cM0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|33e3","America/Kentucky/Louisville|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101010102301010101010101010101010101454545454545414545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 3Fd0 Nb0 LPd0 11z0 RB0 8x30 iw0 Bb0 10N0 2bB0 8in0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 xz0 gso0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1VA0 LA0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Kentucky/Monticello|CST CDT CWT CPT EST EDT|60 50 50 50 50 40|0101023010101010101010101010101010101010101010101010101010101010101010101454545454545454545454545454545454545454545454545454545454545454545454545454|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 SWp0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/La_Paz|CMT BOST -04|4w.A 3w.A 40|012|-1x37r.o 13b0|19e5","America/Lima|LMT -05 -04|58.A 50 40|0121212121212121|-2tyGP.o 1bDzP.o zX0 1aN0 1cL0 1cN0 1cL0 1PrB0 zX0 1O10 zX0 6Gp0 zX0 98p0 zX0|11e6","America/Los_Angeles|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 5Wp1 1VaX 3dA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e6","America/Maceio|LMT -03 -02|2m.Q 30 20|012121212121212121212121212121212121212121|-2glxB.8 HdLB.8 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 dMN0 Lz0 8Q10 WL0 1tB0 5z0 2mN0 On0|93e4","America/Managua|MMT CST EST CDT|5J.c 60 50 50|0121313121213131|-1quie.M 1yAMe.M 4mn0 9Up0 Dz0 1K10 Dz0 s3F0 1KH0 DB0 9In0 k8p0 19X0 1o30 11y0|22e5","America/Manaus|LMT -04 -03|40.4 40 30|01212121212121212121212121212121|-2glvX.U HdKX.U 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 dPB0 On0|19e5","America/Martinique|FFMT AST ADT|44.k 40 30|0121|-2mPTT.E 2LPbT.E 19X0|39e4","America/Matamoros|LMT CST CDT|6E 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|45e4","America/Mazatlan|LMT MST CST PST MDT|75.E 70 60 80 60|0121212131414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 otX0 gmN0 P2N0 13Vd0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|44e4","America/Menominee|CST CDT CWT CPT EST|60 50 50 50 50|01010230101041010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 1o10 11z0 LCN0 1fz0 6410 9Jb0 1cM0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|85e2","America/Merida|LMT CST EST CDT|5W.s 60 50 50|0121313131313131313131313131313131313131313131313131313131313131313131313131313131313131|-1UQG0 2q2o0 2hz0 wu30 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|11e5","America/Metlakatla|PST PWT PPT PDT AKST AKDT|80 70 70 70 90 80|0120303030303030303030303030303030454545454545454545454545454545454545454545454|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1hU10 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2","America/Mexico_City|LMT MST CST CDT CWT|6A.A 70 60 50 50|012121232324232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 gEn0 TX0 3xd0 Jb0 6zB0 SL0 e5d0 17b0 1Pff0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|20e6","America/Miquelon|LMT AST -03 -02|3I.E 40 30 20|012323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2mKkf.k 2LTAf.k gQ10 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|61e2","America/Moncton|EST AST ADT AWT APT|50 40 30 30 30|012121212121212121212134121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2IsH0 CwN0 1in0 zAo0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1Nd0 An0 1K10 Lz0 1zB0 NX0 1u10 Wn0 S20 8x50 iu0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14n1 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 ReX 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|64e3","America/Monterrey|LMT CST CDT|6F.g 60 50|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1UQG0 2FjC0 1nX0 i6p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|41e5","America/Montevideo|MMT -0330 -03 -02 -0230|3I.I 3u 30 20 2u|012121212121212121212121213232323232324242423243232323232323232323232323232323232323232|-20UIf.g 8jzJ.g 1cLu 1dcu 1cLu 1dcu 1cLu ircu 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu WLu 1qMu WLu 1qMu 11zu 1o0u 11zu NAu 11bu 2iMu zWu Dq10 19X0 pd0 jz0 cm10 19X0 1fB0 1on0 11d0 1oL0 1nB0 1fzu 1aou 1fzu 1aou 1fzu 3nAu Jb0 3MN0 1SLu 4jzu 2PB0 Lb0 3Dd0 1pb0 ixd0 An0 1MN0 An0 1wp0 On0 1wp0 Rb0 1zd0 On0 1wp0 Rb0 s8p0 1fB0 1ip0 11z0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 14n0 1ld0 14n0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 11z0|17e5","America/Toronto|EST EDT EWT EPT|50 40 40 40|01010101010101010101010101010101010101010101012301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TR0 1in0 11Wu 1nzu 1fD0 WJ0 1wr0 Nb0 1Ap0 On0 1zd0 On0 1wp0 TX0 1tB0 TX0 1tB0 TX0 1tB0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 4kM0 8x40 iv0 1o10 11z0 1nX0 11z0 1o10 11z0 1o10 1qL0 11D0 1nX0 11B0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e5","America/Nassau|LMT EST EDT|59.u 50 40|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2kNuO.u 26XdO.u 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|24e4","America/New_York|EST EDT EWT EPT|50 40 40 40|01010101010101010101010101010101010101010101010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261t0 1nX0 11B0 1nX0 11B0 1qL0 1a10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 RB0 8x40 iv0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e6","America/Nipigon|EST EDT EWT EPT|50 40 40 40|010123010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TR0 1in0 Rnb0 3je0 8x40 iv0 19yN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|16e2","America/Nome|NST NWT NPT BST BDT YST AKST AKDT|b0 a0 a0 b0 a0 90 90 80|012034343434343434343434343434343456767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676767676|-17SX0 8wW0 iB0 Qlb0 52O0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cl0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|38e2","America/Noronha|LMT -02 -01|29.E 20 10|0121212121212121212121212121212121212121|-2glxO.k HdKO.k 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|30e2","America/North_Dakota/Beulah|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101014545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Oo0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/North_Dakota/Center|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101014545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/North_Dakota/New_Salem|MST MDT MWT MPT CST CDT|70 60 60 60 60 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101454545454545454545454545454545454545454545454545454545454545454545454|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14o0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","America/Ojinaga|LMT MST CST CDT MDT|6V.E 70 60 50 60|0121212323241414141414141414141414141414141414141414141414141414141414141414141414141414141|-1UQF0 deL0 8lc0 17c0 10M0 1dd0 2zQN0 1lb0 14p0 1lb0 14q0 1lb0 14p0 1nX0 11B0 1nX0 1fB0 WL0 1fB0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 U10 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e3","America/Pangnirtung|-00 AST AWT APT ADDT ADT EDT EST CST CDT|0 40 30 30 20 30 40 50 60 50|012314151515151515151515151515151515167676767689767676767676767676767676767676767676767676767676767676767676767676767676767|-1XiM0 PnG0 8x50 iu0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1o00 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11C0 1nX0 11A0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2","America/Paramaribo|LMT PMT PMT -0330 -03|3E.E 3E.Q 3E.A 3u 30|01234|-2nDUj.k Wqo0.c qanX.I 1yVXN.o|24e4","America/Phoenix|MST MDT MWT|70 60 60|01010202010|-261r0 1nX0 11B0 1nX0 SgN0 4Al1 Ap0 1db0 SWqX 1cL0|42e5","America/Port-au-Prince|PPMT EST EDT|4N 50 40|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-28RHb 2FnMb 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14q0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 i6n0 1nX0 11B0 1nX0 d430 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 3iN0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Rio_Branco|LMT -05 -04|4v.c 50 40|01212121212121212121212121212121|-2glvs.M HdLs.M 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0 d5X0|31e4","America/Porto_Velho|LMT -04 -03|4f.A 40 30|012121212121212121212121212121|-2glvI.o HdKI.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0|37e4","America/Puerto_Rico|AST AWT APT|40 30 30|0120|-17lU0 7XT0 iu0|24e5","America/Punta_Arenas|SMT -05 -04 -03|4G.K 50 40 30|0102021212121212121232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-2q2jh.e fJAh.e 5knG.K 1Vzh.e jRAG.K 1pbh.e 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 blz0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0","America/Rainy_River|CST CDT CWT CPT|60 50 50 50|010123010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TQ0 1in0 Rnb0 3je0 8x30 iw0 19yN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|842","America/Rankin_Inlet|-00 CST CDDT CDT EST|0 60 40 50 50|012131313131313131313131313131313131313131313431313131313131313131313131313131313131313131313131313131313131313131313131|-vDc0 keu0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e2","America/Recife|LMT -03 -02|2j.A 30 20|0121212121212121212121212121212121212121|-2glxE.o HdLE.o 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 nsp0 WL0 1tB0 2L0 2pB0 On0|33e5","America/Regina|LMT MST MDT MWT MPT CST|6W.A 70 60 60 60 60|012121212121212121212121341212121212121212121212121215|-2AD51.o uHe1.o 1in0 s2L0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 66N0 1cL0 1cN0 19X0 1fB0 1cL0 1fB0 1cL0 1cN0 1cL0 M30 8x20 ix0 1ip0 1cL0 1ip0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 3NB0 1cL0 1cN0|19e4","America/Resolute|-00 CST CDDT CDT EST|0 60 40 50 50|012131313131313131313131313131313131313131313431313131313431313131313131313131313131313131313131313131313131313131313131|-SnA0 GWS0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|229","America/Santarem|LMT -04 -03|3C.M 40 30|0121212121212121212121212121212|-2glwl.c HdLl.c 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 qe10 xb0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 NBd0|21e4","America/Santiago|SMT -05 -04 -03|4G.K 50 40 30|010202121212121212321232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-2q2jh.e fJAh.e 5knG.K 1Vzh.e jRAG.K 1pbh.e 11d0 1oL0 11d0 1oL0 11d0 1oL0 11d0 1pb0 11d0 nHX0 op0 9Bz0 jb0 1oN0 ko0 Qeo0 WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0|62e5","America/Santo_Domingo|SDMT EST EDT -0430 AST|4E 50 40 4u 40|01213131313131414|-1ttjk 1lJMk Mn0 6sp0 Lbu 1Cou yLu 1RAu wLu 1QMu xzu 1Q0u xXu 1PAu 13jB0 e00|29e5","America/Sao_Paulo|LMT -03 -02|36.s 30 20|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-2glwR.w HdKR.w 1cc0 1e10 1bX0 Ezd0 So0 1vA0 Mn0 1BB0 ML0 1BB0 zX0 pTd0 PX0 2ep0 nz0 1C10 zX0 1C10 LX0 1C10 Mn0 H210 Rb0 1tB0 IL0 1Fd0 FX0 1EN0 FX0 1HB0 Lz0 1EN0 Lz0 1C10 IL0 1HB0 Db0 1HB0 On0 1zd0 On0 1zd0 Lz0 1zd0 Rb0 1wN0 Wn0 1tB0 Rb0 1tB0 WL0 1tB0 Rb0 1zd0 On0 1HB0 FX0 1C10 Lz0 1Ip0 HX0 1zd0 On0 1HB0 IL0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10 Lz0 1C10 On0 1zd0 Rb0 1wp0 On0 1C10 Lz0 1C10 On0 1zd0|20e6","America/Scoresbysund|LMT -02 -01 +00|1r.Q 20 10 0|0121323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2a5Ww.8 2z5ew.8 1a00 1cK0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|452","America/Sitka|PST PWT PPT PDT YST AKST AKDT|80 70 70 70 90 90 80|01203030303030303030303030303030345656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-17T20 8x10 iy0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 co0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|90e2","America/St_Johns|NST NDT NST NDT NWT NPT NDDT|3u.Q 2u.Q 3u 2u 2u 2u 1u|01010101010101010101010101010101010102323232323232324523232323232323232323232323232323232323232323232323232323232323232323232323232323232326232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-28oit.8 14L0 1nB0 1in0 1gm0 Dz0 1JB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 19X0 1fB0 1cL0 1fB0 19X0 1fB0 19X0 10O0 eKX.8 19X0 1iq0 WL0 1qN0 WL0 1qN0 WL0 1tB0 TX0 1tB0 WL0 1qN0 WL0 1qN0 7UHu itu 1tB0 WL0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1tB0 WL0 1ld0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14n1 1lb0 14p0 1nW0 11C0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4","America/Swift_Current|LMT MST MDT MWT MPT CST|7b.k 70 60 60 60 60|012134121212121212121215|-2AD4M.E uHdM.E 1in0 UGp0 8x20 ix0 1o10 17b0 1ip0 11z0 1o10 11z0 1o10 11z0 isN0 1cL0 3Cp0 1cL0 1cN0 11z0 1qN0 WL0 pMp0|16e3","America/Tegucigalpa|LMT CST CDT|5M.Q 60 50|01212121|-1WGGb.8 2ETcb.8 WL0 1qN0 WL0 GRd0 AL0|11e5","America/Thule|LMT AST ADT|4z.8 40 30|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a5To.Q 31NBo.Q 1cL0 1cN0 1cL0 1fB0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|656","America/Thunder_Bay|CST EST EWT EPT EDT|60 50 40 40 40|0123141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141414141|-2q5S0 1iaN0 8x40 iv0 XNB0 1cL0 1cN0 1fz0 1cN0 1cL0 3Cp0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4","America/Vancouver|PST PDT PWT PPT|80 70 70 70|0102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-25TO0 1in0 UGp0 8x10 iy0 1o10 17b0 1ip0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5","America/Whitehorse|YST YDT YWT YPT YDDT PST PDT|90 80 80 80 70 80 70|0101023040565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565656565|-25TN0 1in0 1o10 13V0 Ser0 8x00 iz0 LCL0 1fA0 3NA0 vrd0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e3","America/Winnipeg|CST CDT CWT CPT|60 50 50 50|010101023010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aIi0 WL0 3ND0 1in0 Jap0 Rb0 aCN0 8x30 iw0 1tB0 11z0 1ip0 11z0 1o10 11z0 1o10 11z0 1rd0 10L0 1op0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 1cL0 1cN0 11z0 6i10 WL0 6i10 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1o00 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1o00 11A0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|66e4","America/Yakutat|YST YWT YPT YDT AKST AKDT|90 80 80 80 90 80|01203030303030303030303030303030304545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-17T10 8x00 iz0 Vo10 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 cn0 10q0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|642","America/Yellowknife|-00 MST MWT MPT MDDT MDT|0 70 60 60 50 60|012314151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151515151|-1pdA0 hix0 8x20 ix0 LCL0 1fA0 zgO0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|19e3","Antarctica/Casey|-00 +08 +11|0 -80 -b0|0121212|-2q00 1DjS0 T90 40P0 KL0 blz0|10","Antarctica/Davis|-00 +07 +05|0 -70 -50|01012121|-vyo0 iXt0 alj0 1D7v0 VB0 3Wn0 KN0|70","Antarctica/DumontDUrville|-00 +10|0 -a0|0101|-U0o0 cfq0 bFm0|80","Antarctica/Macquarie|AEST AEDT -00 +11|-a0 -b0 0 -b0|0102010101010101010101010101010101010101010101010101010101010101010101010101010101010101013|-29E80 19X0 4SL0 1ayy0 Lvs0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0|1","Antarctica/Mawson|-00 +06 +05|0 -60 -50|012|-CEo0 2fyk0|60","Pacific/Auckland|NZMT NZST NZST NZDT|-bu -cu -c0 -d0|01020202020202020202020202023232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1GCVu Lz0 1tB0 11zu 1o0u 11zu 1o0u 11zu 1o0u 14nu 1lcu 14nu 1lcu 1lbu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1nXu 11Au 1qLu WMu 1qLu 11Au 1n1bu IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|14e5","Antarctica/Palmer|-00 -03 -04 -02|0 30 40 20|0121212121213121212121212121212121212121212121212121212121212121212121212121212121|-cao0 nD0 1vd0 SL0 1vd0 17z0 1cN0 1fz0 1cN0 1cL0 1cN0 asn0 Db0 jsN0 14N0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0|40","Antarctica/Rothera|-00 -03|0 30|01|gOo0|130","Antarctica/Syowa|-00 +03|0 -30|01|-vs00|20","Antarctica/Troll|-00 +00 +02|0 0 -20|01212121212121212121212121212121212121212121212121212121212121212121|1puo0 hd0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|40","Antarctica/Vostok|-00 +06|0 -60|01|-tjA0|25","Europe/Oslo|CET CEST|-10 -20|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2awM0 Qm0 W6o0 5pf0 WM0 1fA0 1cM0 1cM0 1cM0 1cM0 wJc0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1qM0 WM0 zpc0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|62e4","Asia/Riyadh|LMT +03|-36.Q -30|01|-TvD6.Q|57e5","Asia/Almaty|LMT +05 +06 +07|-57.M -50 -60 -70|012323232323232323232321232323232323232323232323232|-1Pc57.M eUo7.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|15e5","Asia/Amman|LMT EET EEST|-2n.I -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1yW2n.I 1HiMn.I KL0 1oN0 11b0 1oN0 11b0 1pd0 1dz0 1cp0 11b0 1op0 11b0 fO10 1db0 1e10 1cL0 1cN0 1cL0 1cN0 1fz0 1pd0 10n0 1ld0 14n0 1hB0 15b0 1ip0 19X0 1cN0 1cL0 1cN0 17b0 1ld0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1So0 y00 1fc0 1dc0 1co0 1dc0 1cM0 1cM0 1cM0 1o00 11A0 1lc0 17c0 1cM0 1cM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|25e5","Asia/Anadyr|LMT +12 +13 +14 +11|-bN.U -c0 -d0 -e0 -b0|01232121212121212121214121212121212121212121212121212121212141|-1PcbN.U eUnN.U 23CL0 1db0 2q10 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|13e3","Asia/Aqtau|LMT +04 +05 +06|-3l.4 -40 -50 -60|012323232323232323232123232312121212121212121212|-1Pc3l.4 eUnl.4 24PX0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|15e4","Asia/Aqtobe|LMT +04 +05 +06|-3M.E -40 -50 -60|0123232323232323232321232323232323232323232323232|-1Pc3M.E eUnM.E 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0|27e4","Asia/Ashgabat|LMT +04 +05 +06|-3R.w -40 -50 -60|0123232323232323232323212|-1Pc3R.w eUnR.w 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0|41e4","Asia/Atyrau|LMT +03 +05 +06 +04|-3r.I -30 -50 -60 -40|01232323232323232323242323232323232324242424242|-1Pc3r.I eUor.I 24PW0 2pX0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 2sp0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0","Asia/Baghdad|BMT +03 +04|-2V.A -30 -40|012121212121212121212121212121212121212121212121212121|-26BeV.A 2ACnV.A 11b0 1cp0 1dz0 1dd0 1db0 1cN0 1cp0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1de0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0 1dc0 1dc0 1cM0 1dc0 1cM0 1dc0 1cM0 1dc0|66e5","Asia/Qatar|LMT +04 +03|-3q.8 -40 -30|012|-21Jfq.8 27BXq.8|96e4","Asia/Baku|LMT +03 +04 +05|-3j.o -30 -40 -50|01232323232323232323232123232323232323232323232323232323232323232|-1Pc3j.o 1jUoj.o WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 9Je0 1o00 11z0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5","Asia/Bangkok|BMT +07|-6G.4 -70|01|-218SG.4|15e6","Asia/Barnaul|LMT +06 +07 +08|-5z -60 -70 -80|0123232323232323232323212323232321212121212121212121212121212121212|-21S5z pCnz 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 p90 LE0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0","Asia/Beirut|EET EEST|-20 -30|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-21aq0 1on0 1410 1db0 19B0 1in0 1ip0 WL0 1lQp0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 q6N0 En0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1op0 11b0 dA10 17b0 1iN0 17b0 1iN0 17b0 1iN0 17b0 1vB0 SL0 1mp0 13z0 1iN0 17b0 1iN0 17b0 1jd0 12n0 1a10 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0|22e5","Asia/Bishkek|LMT +05 +06 +07|-4W.o -50 -60 -70|012323232323232323232321212121212121212121212121212|-1Pc4W.o eUnW.o 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2e00 1tX0 17b0 1ip0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1cPu 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0|87e4","Asia/Brunei|LMT +0730 +08|-7D.E -7u -80|012|-1KITD.E gDc9.E|42e4","Asia/Kolkata|HMT +0630 IST|-5R.k -6u -5u|01212|-18LFR.k 1unn.k HB0 7zX0|15e6","Asia/Chita|LMT +08 +09 +10|-7x.Q -80 -90 -a0|012323232323232323232321232323232323232323232323232323232323232312|-21Q7x.Q pAnx.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3re0|33e4","Asia/Choibalsan|LMT +07 +08 +10 +09|-7C -70 -80 -a0 -90|0123434343434343434343434343434343434343434343424242|-2APHC 2UkoC cKn0 1da0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 3Db0 h1f0 1cJ0 1cP0 1cJ0|38e3","Asia/Shanghai|CST CDT|-80 -90|01010101010101010|-1c1I0 LX0 16p0 1jz0 1Myp0 Rb0 1o10 11z0 1o10 11z0 1qN0 11z0 1o10 11z0 1o10 11z0|23e6","Asia/Colombo|MMT +0530 +06 +0630|-5j.w -5u -60 -6u|01231321|-2zOtj.w 1rFbN.w 1zzu 7Apu 23dz0 11zu n3cu|22e5","Asia/Dhaka|HMT +0630 +0530 +06 +07|-5R.k -6u -5u -60 -70|0121343|-18LFR.k 1unn.k HB0 m6n0 2kxbu 1i00|16e6","Asia/Damascus|LMT EET EEST|-2p.c -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-21Jep.c Hep.c 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1xRB0 11X0 1oN0 10L0 1pB0 11b0 1oN0 10L0 1mp0 13X0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 1pd0 11b0 1oN0 Nb0 1AN0 Nb0 bcp0 19X0 1gp0 19X0 3ld0 1xX0 Vd0 1Bz0 Sp0 1vX0 10p0 1dz0 1cN0 1cL0 1db0 1db0 1g10 1an0 1ap0 1db0 1fd0 1db0 1cN0 1db0 1dd0 1db0 1cp0 1dz0 1c10 1dX0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1db0 1cN0 1db0 1cN0 19z0 1fB0 1qL0 11B0 1on0 Wp0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0|26e5","Asia/Dili|LMT +08 +09|-8m.k -80 -90|01212|-2le8m.k 1dnXm.k 1nfA0 Xld0|19e4","Asia/Dubai|LMT +04|-3F.c -40|01|-21JfF.c|39e5","Asia/Dushanbe|LMT +05 +06 +07|-4z.c -50 -60 -70|012323232323232323232321|-1Pc4z.c eUnz.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2hB0|76e4","Asia/Famagusta|LMT EET EEST +03|-2f.M -20 -30 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212123|-1Vc2f.M 2a3cf.M 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0","Asia/Gaza|EET EEST IST IDT|-20 -30 -20 -30|010101010101010101010101010101012323232323232323232323232320101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1c2q0 5Rb0 10r0 1px0 10N0 1pz0 16p0 1jB0 16p0 1jx0 pBd0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 npB0 11z0 1C10 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 11z0 1o10 14o0 1lA1 SKX 1xd1 MKX 1AN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nz0 1220 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0|18e5","Asia/Hebron|EET EEST IST IDT|-20 -30 -20 -30|01010101010101010101010101010101232323232323232323232323232010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-1c2q0 5Rb0 10r0 1px0 10N0 1pz0 16p0 1jB0 16p0 1jx0 pBd0 Vz0 1oN0 11b0 1oO0 10N0 1pz0 10N0 1pb0 10N0 1pb0 10N0 1pb0 10N0 1pz0 10N0 1pb0 10N0 1pb0 11d0 1oL0 dW0 hfB0 Db0 1fB0 Rb0 npB0 11z0 1C10 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 M10 C00 17c0 1io0 17c0 1io0 17c0 1o00 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 17c0 1io0 18N0 1bz0 19z0 1gp0 1610 1iL0 12L0 1mN0 14o0 1lc0 Tb0 1xd1 MKX bB0 cn0 1cN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nz0 1220 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0|25e4","Asia/Ho_Chi_Minh|LMT PLMT +07 +08 +09|-76.E -76.u -70 -80 -90|0123423232|-2yC76.E bK00.a 1h7b6.u 5lz0 18o0 3Oq0 k5b0 aW00 BAM0|90e5","Asia/Hong_Kong|LMT HKT HKST JST|-7A.G -80 -90 -90|0121312121212121212121212121212121212121212121212121212121212121212121|-2CFHA.G 1sEP6.G 1cL0 ylu 93X0 1qQu 1tX0 Rd0 1In0 NB0 1cL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1kL0 14N0 1nX0 U10 1tz0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 Rd0 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 17d0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 s10 1Vz0 1cN0 1cL0 1cN0 1cL0 6fd0 14n0|73e5","Asia/Hovd|LMT +06 +07 +08|-66.A -60 -70 -80|012323232323232323232323232323232323232323232323232|-2APG6.A 2Uko6.A cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|81e3","Asia/Irkutsk|IMT +07 +08 +09|-6V.5 -70 -80 -90|01232323232323232323232123232323232323232323232323232323232323232|-21zGV.5 pjXV.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Europe/Istanbul|IMT EET EEST +04 +03|-1U.U -20 -30 -40 -30|012121212121212121212121212121212121212121212121212121234343434342121212121212121212121212121212121212121212121212121212121212124|-2ogNU.U dzzU.U 11b0 8tB0 1on0 1410 1db0 19B0 1in0 3Rd0 Un0 1oN0 11b0 zSp0 CL0 mN0 1Vz0 1gN0 1pz0 5Rd0 1fz0 1yp0 ML0 1kp0 17b0 1ip0 17b0 1fB0 19X0 1jB0 18L0 1ip0 17z0 qdd0 xX0 3S10 Tz0 dA10 11z0 1o10 11z0 1qN0 11z0 1ze0 11B0 WM0 1qO0 WI0 1nX0 1rB0 10L0 11B0 1in0 17d0 1in0 2pX0 19E0 1fU0 16Q0 1iI0 16Q0 1iI0 1Vd0 pb0 3Kp0 14o0 1de0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1a00 1fA0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WO0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 Xc0 1qo0 WM0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6","Asia/Jakarta|BMT +0720 +0730 +09 +08 WIB|-77.c -7k -7u -90 -80 -70|01232425|-1Q0Tk luM0 mPzO 8vWu 6kpu 4PXu xhcu|31e6","Asia/Jayapura|LMT +09 +0930 WIT|-9m.M -90 -9u -90|0123|-1uu9m.M sMMm.M L4nu|26e4","Asia/Jerusalem|JMT IST IDT IDDT|-2k.E -20 -30 -40|01212121212132121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-26Bek.E SyMk.E 5Rb0 10r0 1px0 10N0 1pz0 16p0 1jB0 16p0 1jx0 3LB0 Em0 or0 1cn0 1dB0 16n0 10O0 1ja0 1tC0 14o0 1cM0 1a00 11A0 1Na0 An0 1MP0 AJ0 1Kp0 LC0 1oo0 Wl0 EQN0 Db0 1fB0 Rb0 npB0 11z0 1C10 IL0 1s10 10n0 1o10 WL0 1zd0 On0 1ld0 11z0 1o10 14n0 1o10 14n0 1nd0 12n0 1nd0 Xz0 1q10 12n0 1hB0 1dX0 1ep0 1aL0 1eN0 17X0 1nf0 11z0 1tB0 19W0 1e10 17b0 1ep0 1gL0 18N0 1fz0 1eN0 17b0 1gq0 1gn0 19d0 1dz0 1c10 17X0 1hB0 1gn0 19d0 1dz0 1c10 17X0 1kp0 1dz0 1c10 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0|81e4","Asia/Kabul|+04 +0430|-40 -4u|01|-10Qs0|46e5","Asia/Kamchatka|LMT +11 +12 +13|-ay.A -b0 -c0 -d0|012323232323232323232321232323232323232323232323232323232323212|-1SLKy.A ivXy.A 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|18e4","Asia/Karachi|LMT +0530 +0630 +05 PKT PKST|-4s.c -5u -6u -50 -50 -60|012134545454|-2xoss.c 1qOKW.c 7zX0 eup0 LqMu 1fy00 1cL0 dK10 11b0 1610 1jX0|24e6","Asia/Urumqi|LMT +06|-5O.k -60|01|-1GgtO.k|32e5","Asia/Kathmandu|LMT +0530 +0545|-5F.g -5u -5J|012|-21JhF.g 2EGMb.g|12e5","Asia/Khandyga|LMT +08 +09 +10 +11|-92.d -80 -90 -a0 -b0|0123232323232323232323212323232323232323232323232343434343434343432|-21Q92.d pAp2.d 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 qK0 yN0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|66e2","Asia/Krasnoyarsk|LMT +06 +07 +08|-6b.q -60 -70 -80|01232323232323232323232123232323232323232323232323232323232323232|-21Hib.q prAb.q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|10e5","Asia/Kuala_Lumpur|SMT +07 +0720 +0730 +09 +08|-6T.p -70 -7k -7u -90 -80|0123435|-2Bg6T.p 17anT.p l5XE 17bO 8Fyu 1so1u|71e5","Asia/Kuching|LMT +0730 +08 +0820 +09|-7l.k -7u -80 -8k -90|0123232323232323242|-1KITl.k gDbP.k 6ynu AnE 1O0k AnE 1NAk AnE 1NAk AnE 1NAk AnE 1O0k AnE 1NAk AnE pAk 8Fz0|13e4","Asia/Macau|LMT CST CDT|-7y.k -80 -90|012121212121212121212121212121212121212121|-2le7y.k 1XO34.k 1wn0 Rd0 1wn0 R9u 1wqu U10 1tz0 TVu 1tz0 17gu 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cJu 1cL0 1cN0 1fz0 1cN0 1cOu 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cJu 1cL0 1cN0 1fz0 1cN0 1cL0|57e4","Asia/Magadan|LMT +10 +11 +12|-a3.c -a0 -b0 -c0|012323232323232323232321232323232323232323232323232323232323232312|-1Pca3.c eUo3.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Cq0|95e3","Asia/Makassar|LMT MMT +08 +09 WITA|-7V.A -7V.A -80 -90 -80|01234|-21JjV.A vfc0 myLV.A 8ML0|15e5","Asia/Manila|+08 +09|-80 -90|010101010|-1kJI0 AL0 cK10 65X0 mXB0 vX0 VK10 1db0|24e6","Asia/Nicosia|LMT EET EEST|-2d.s -20 -30|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1Vc2d.s 2a3cd.s 1cL0 1qp0 Xz0 19B0 19X0 1fB0 1db0 1cp0 1cL0 1fB0 19X0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1o30 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|32e4","Asia/Novokuznetsk|LMT +06 +07 +08|-5M.M -60 -70 -80|012323232323232323232321232323232323232323232323232323232323212|-1PctM.M eULM.M 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|55e4","Asia/Novosibirsk|LMT +06 +07 +08|-5v.E -60 -70 -80|0123232323232323232323212323212121212121212121212121212121212121212|-21Qnv.E pAFv.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 ml0 Os0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 4eN0|15e5","Asia/Omsk|LMT +05 +06 +07|-4R.u -50 -60 -70|01232323232323232323232123232323232323232323232323232323232323232|-224sR.u pMLR.u 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|12e5","Asia/Oral|LMT +03 +05 +06 +04|-3p.o -30 -50 -60 -40|01232323232323232424242424242424242424242424242|-1Pc3p.o eUop.o 23CK0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 1cM0 IM0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|27e4","Asia/Pontianak|LMT PMT +0730 +09 +08 WITA WIB|-7h.k -7h.k -7u -90 -80 -80 -70|012324256|-2ua7h.k XE00 munL.k 8Rau 6kpu 4PXu xhcu Wqnu|23e4","Asia/Pyongyang|LMT KST JST KST|-8n -8u -90 -90|01231|-2um8n 97XR 1lTzu 2Onc0|29e5","Asia/Qyzylorda|LMT +04 +05 +06|-4l.Q -40 -50 -60|0123232323232323232323232323232323232323232323|-1Pc4l.Q eUol.Q 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 3ao0 1EM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0|73e4","Asia/Rangoon|RMT +0630 +09|-6o.E -6u -90|0121|-21Jio.E SmnS.E 7j9u|48e5","Asia/Sakhalin|LMT +09 +11 +12 +10|-9u.M -90 -b0 -c0 -a0|01232323232323232323232423232323232424242424242424242424242424242|-2AGVu.M 1BoMu.M 1qFa0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 2pB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0|58e4","Asia/Samarkand|LMT +04 +05 +06|-4r.R -40 -50 -60|01232323232323232323232|-1Pc4r.R eUor.R 23CL0 3Db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0|36e4","Asia/Seoul|LMT KST JST KST KDT KDT|-8r.Q -8u -90 -90 -9u -a0|0123141414141414135353|-2um8r.Q 97XV.Q 1m1zu kKo0 2I0u OL0 1FB0 Rb0 1qN0 TX0 1tB0 TX0 1tB0 TX0 1tB0 TX0 2ap0 12FBu 11A0 1o00 11A0|23e6","Asia/Srednekolymsk|LMT +10 +11 +12|-ae.Q -a0 -b0 -c0|01232323232323232323232123232323232323232323232323232323232323232|-1Pcae.Q eUoe.Q 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|35e2","Asia/Taipei|CST JST CDT|-80 -90 -90|01020202020202020202020202020202020202020|-1iw80 joM0 1yo0 Tz0 1ip0 1jX0 1cN0 11b0 1oN0 11b0 1oN0 11b0 1oN0 11b0 10N0 1BX0 10p0 1pz0 10p0 1pz0 10p0 1db0 1dd0 1db0 1cN0 1db0 1cN0 1db0 1cN0 1db0 1BB0 ML0 1Bd0 ML0 uq10 1db0 1cN0 1db0 97B0 AL0|74e5","Asia/Tashkent|LMT +05 +06 +07|-4B.b -50 -60 -70|012323232323232323232321|-1Pc4B.b eUnB.b 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0|23e5","Asia/Tbilisi|TBMT +03 +04 +05|-2X.b -30 -40 -50|0123232323232323232323212121232323232323232323212|-1Pc2X.b 1jUnX.b WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cK0 1cL0 1cN0 1cL0 1cN0 2pz0 1cL0 1fB0 3Nz0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 An0 Os0 WM0|11e5","Asia/Tehran|LMT TMT +0330 +04 +05 +0430|-3p.I -3p.I -3u -40 -50 -4u|01234325252525252525252525252525252525252525252525252525252525252525252525252525252525252525252525252|-2btDp.I 1d3c0 1huLT.I TXu 1pz0 sN0 vAu 1cL0 1dB0 1en0 pNB0 UL0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 64p0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0|14e6","Asia/Thimphu|LMT +0530 +06|-5W.A -5u -60|012|-Su5W.A 1BGMs.A|79e3","Asia/Tokyo|JST JDT|-90 -a0|010101010|-QJH0 QL0 1lB0 13X0 1zB0 NX0 1zB0 NX0|38e6","Asia/Tomsk|LMT +06 +07 +08|-5D.P -60 -70 -80|0123232323232323232323212323232323232323232323212121212121212121212|-21NhD.P pxzD.P 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 co0 1bB0 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3Qp0|10e5","Asia/Ulaanbaatar|LMT +07 +08 +09|-77.w -70 -80 -90|012323232323232323232323232323232323232323232323232|-2APH7.w 2Uko7.w cKn0 1db0 1dd0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 6hD0 11z0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 kEp0 1cJ0 1cP0 1cJ0|12e5","Asia/Ust-Nera|LMT +08 +09 +12 +11 +10|-9w.S -80 -90 -c0 -b0 -a0|012343434343434343434345434343434343434343434343434343434343434345|-21Q9w.S pApw.S 23CL0 1d90 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 17V0 7zD0|65e2","Asia/Vladivostok|LMT +09 +10 +11|-8L.v -90 -a0 -b0|01232323232323232323232123232323232323232323232323232323232323232|-1SJIL.v itXL.v 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|60e4","Asia/Yakutsk|LMT +08 +09 +10|-8C.W -80 -90 -a0|01232323232323232323232123232323232323232323232323232323232323232|-21Q8C.W pAoC.W 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|28e4","Asia/Yekaterinburg|LMT PMT +04 +05 +06|-42.x -3J.5 -40 -50 -60|012343434343434343434343234343434343434343434343434343434343434343|-2ag42.x 7mQh.s qBvJ.5 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|14e5","Asia/Yerevan|LMT +03 +04 +05|-2W -30 -40 -50|0123232323232323232323212121212323232323232323232323232323232|-1Pc2W 1jUnW WCL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 2pB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 4RX0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0|13e5","Atlantic/Azores|HMT -02 -01 +00 WET|1S.w 20 10 0 0|01212121212121212121212121212121212121212121232123212321232121212121212121212121212121212121212121232323232323232323232323232323234323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-2ldW5.s aPX5.s Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cL0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|25e4","Atlantic/Bermuda|LMT AST ADT|4j.i 40 30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1BnRE.G 1LTbE.G 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|65e3","Atlantic/Canary|LMT -01 WET WEST|11.A 10 0 -10|01232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-1UtaW.o XPAW.o 1lAK0 1a10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4","Atlantic/Cape_Verde|LMT -02 -01|1y.4 20 10|01212|-2xomp.U 1qOMp.U 7zX0 1djf0|50e4","Atlantic/Faroe|LMT WET WEST|r.4 0 -10|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2uSnw.U 2Wgow.U 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|49e3","Atlantic/Madeira|FMT -01 +00 +01 WET WEST|17.A 10 0 -10 0 -10|01212121212121212121212121212121212121212121232123212321232121212121212121212121212121212121212121454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2ldWQ.o aPWQ.o Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 qIl0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e4","Atlantic/Reykjavik|LMT -01 +00 GMT|1s 10 0 0|012121212121212121212121212121212121212121212121212121212121212121213|-2uWmw mfaw 1Bd0 ML0 1LB0 Cn0 1LB0 3fX0 C10 HrX0 1cO0 LB0 1EL0 LA0 1C00 Oo0 1wo0 Rc0 1wo0 Rc0 1wo0 Rc0 1zc0 Oo0 1zc0 14o0 1lc0 14o0 1lc0 14o0 1o00 11A0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1lc0 14o0 1o00 14o0|12e4","Atlantic/South_Georgia|-02|20|0||30","Atlantic/Stanley|SMT -04 -03 -02|3P.o 40 30 20|012121212121212323212121212121212121212121212121212121212121212121212|-2kJw8.A 12bA8.A 19X0 1fB0 19X0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1fB0 Cn0 1Cc10 WL0 1qL0 U10 1tz0 2mN0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 U10 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1tz0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qL0 WN0 1qN0 U10 1wn0 Rd0 1wn0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1tz0 U10 1wn0 U10 1tz0 U10 1tz0 U10|21e2","Australia/Sydney|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293lX xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|40e5","Australia/Adelaide|ACST ACDT|-9u -au|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293lt xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 WM0 1qM0 Rc0 1zc0 U00 1tA0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|11e5","Australia/Brisbane|AEST AEDT|-a0 -b0|01010101010101010|-293lX xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0|20e5","Australia/Broken_Hill|ACST ACDT|-9u -au|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293lt xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 14o0 1o00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1tA0 WM0 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|18e3","Australia/Currie|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-29E80 19X0 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|746","Australia/Darwin|ACST ACDT|-9u -au|010101010|-293lt xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0|12e4","Australia/Eucla|+0845 +0945|-8J -9J|0101010101010101010|-293kI xcX 10jd0 yL0 1cN0 1cL0 1gSp0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|368","Australia/Hobart|AEST AEDT|-a0 -b0|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-29E80 19X0 10jd0 yL0 1cN0 1cL0 1fB0 19X0 VfB0 1cM0 1o00 Rc0 1wo0 Rc0 1wo0 U00 1wo0 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 11A0 1qM0 WM0 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1wo0 WM0 1tA0 WM0 1tA0 U00 1tA0 U00 1tA0 11A0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 11A0 1o00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|21e4","Australia/Lord_Howe|AEST +1030 +1130 +11|-a0 -au -bu -b0|0121212121313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313131313|raC0 1zdu Rb0 1zd0 On0 1zd0 On0 1zd0 On0 1zd0 TXu 1qMu WLu 1tAu WLu 1tAu TXu 1tAu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu 11zu 1o0u 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 11Au 1nXu 1qMu 11zu 1o0u 11zu 1o0u 11zu 1qMu WLu 1qMu 11zu 1o0u WLu 1qMu 14nu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1fzu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu|347","Australia/Lindeman|AEST AEDT|-a0 -b0|010101010101010101010|-293lX xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 H1A0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0|10","Australia/Melbourne|AEST AEDT|-a0 -b0|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101|-293lX xcX 10jd0 yL0 1cN0 1cL0 1fB0 19X0 17c10 LA0 1C00 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 U00 1qM0 WM0 1qM0 11A0 1tA0 U00 1tA0 U00 1tA0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 11A0 1o00 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 14o0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|39e5","Australia/Perth|AWST AWDT|-80 -90|0101010101010101010|-293jX xcX 10jd0 yL0 1cN0 1cL0 1gSp0 Oo0 l5A0 Oo0 iJA0 G00 zU00 IM0 1qM0 11A0 1o00 11A0|18e5","CET|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00","CST6CDT|CST CDT CWT CPT|60 50 50 50|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261s0 1nX0 11B0 1nX0 SgN0 8x30 iw0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","Pacific/Easter|EMT -07 -06 -05|7h.s 70 60 50|012121212121212121212121212123232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323|-1uSgG.w 1s4IG.w WL0 1zd0 On0 1ip0 11z0 1o10 11z0 1qN0 WL0 1ld0 14n0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 2pA0 11z0 1o10 11z0 1qN0 WL0 1qN0 WL0 1qN0 1cL0 1cN0 11z0 1o10 11z0 1qN0 WL0 1fB0 19X0 1qN0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1ip0 1fz0 1fB0 11z0 1qN0 WL0 1qN0 WL0 1qN0 WL0 1qN0 11z0 1o10 11z0 1o10 11z0 1qN0 WL0 1qN0 17b0 1ip0 11z0 1o10 19X0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Dd0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0|30e2","EET|EET EEST|-20 -30|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00","EST|EST|50|0|","EST5EDT|EST EDT EWT EPT|50 40 40 40|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261t0 1nX0 11B0 1nX0 SgN0 8x40 iv0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","Europe/Dublin|DMT IST GMT BST IST|p.l -y.D 0 -10 -10|01232323232324242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242424242|-2ax9y.D Rc0 1fzy.D 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 g5X0 14p0 1wn0 17d0 1io0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","Etc/GMT+0|GMT|0|0|","Etc/GMT+1|-01|10|0|","Etc/GMT+10|-10|a0|0|","Etc/GMT+11|-11|b0|0|","Etc/GMT+12|-12|c0|0|","Etc/GMT+3|-03|30|0|","Etc/GMT+4|-04|40|0|","Etc/GMT+5|-05|50|0|","Etc/GMT+6|-06|60|0|","Etc/GMT+7|-07|70|0|","Etc/GMT+8|-08|80|0|","Etc/GMT+9|-09|90|0|","Etc/GMT-1|+01|-10|0|","Pacific/Port_Moresby|+10|-a0|0||25e4","Pacific/Pohnpei|+11|-b0|0||34e3","Pacific/Tarawa|+12|-c0|0||29e3","Etc/GMT-13|+13|-d0|0|","Etc/GMT-14|+14|-e0|0|","Etc/GMT-2|+02|-20|0|","Etc/GMT-3|+03|-30|0|","Etc/GMT-4|+04|-40|0|","Etc/GMT-5|+05|-50|0|","Etc/GMT-6|+06|-60|0|","Indian/Christmas|+07|-70|0||21e2","Etc/GMT-8|+08|-80|0|","Pacific/Palau|+09|-90|0||21e3","Etc/UCT|UCT|0|0|","Etc/UTC|UTC|0|0|","Europe/Amsterdam|AMT NST +0120 +0020 CEST CET|-j.w -1j.w -1k -k -20 -10|010101010101010101010101010101010101010101012323234545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545|-2aFcj.w 11b0 1iP0 11A0 1io0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1co0 1io0 1yo0 Pc0 1a00 1fA0 1Bc0 Mo0 1tc0 Uo0 1tA0 U00 1uo0 W00 1s00 VA0 1so0 Vc0 1sM0 UM0 1wo0 Rc0 1u00 Wo0 1rA0 W00 1s00 VA0 1sM0 UM0 1w00 fV0 BCX.w 1tA0 U00 1u00 Wo0 1sm0 601k WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|16e5","Europe/Andorra|WET CET CEST|0 -10 -20|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-UBA0 1xIN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|79e3","Europe/Astrakhan|LMT +03 +04 +05|-3c.c -30 -40 -50|012323232323232323212121212121212121212121212121212121212121212|-1Pcrc.c eUMc.c 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0","Europe/Athens|AMT EET EEST CEST CET|-1y.Q -20 -30 -20 -10|012123434121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2a61x.Q CNbx.Q mn0 kU10 9b0 3Es0 Xa0 1fb0 1dd0 k3X0 Nz0 SCp0 1vc0 SO0 1cM0 1a00 1ao0 1fc0 1a10 1fG0 1cg0 1dX0 1bX0 1cQ0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|35e5","Europe/London|GMT BST BDST|0 -10 -20|0101010101010101010101010101010101010101010101010121212121210101210101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2axa0 Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1a00 1qM0 WM0 1qM0 11A0 1o00 WM0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1tA0 IM0 90o0 U00 1tA0 U00 1tA0 U00 1tA0 U00 1tA0 WM0 1qM0 WM0 1qM0 WM0 1tA0 U00 1tA0 U00 1tA0 11z0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 14o0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|10e6","Europe/Belgrade|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-19RC0 3IP0 WM0 1fA0 1cM0 1cM0 1rc0 Qo0 1vmo0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","Europe/Berlin|CET CEST CEMT|-10 -20 -30|01010101010101210101210101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 kL0 Nc0 m10 WM0 1ao0 1cp0 dX0 jz0 Dd0 1io0 17c0 1fA0 1a00 1ehA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|41e5","Europe/Prague|CET CEST|-10 -20|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 16M0 1lc0 1tA0 17A0 11c0 1io0 17c0 1io0 17c0 1fc0 1ao0 1bNc0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|13e5","Europe/Brussels|WET CET CEST WEST|0 -10 -20 -10|0121212103030303030303030303030303030303030303030303212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ehc0 3zX0 11c0 1iO0 11A0 1o00 11A0 my0 Ic0 1qM0 Rc0 1EM0 UM0 1u00 10o0 1io0 1io0 17c0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a30 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 y00 5Wn0 WM0 1fA0 1cM0 16M0 1iM0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|21e5","Europe/Bucharest|BMT EET EEST|-1I.o -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1xApI.o 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Axc0 On0 1fA0 1a10 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|19e5","Europe/Budapest|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1ip0 17b0 1op0 1tb0 Q2m0 3Ne0 WM0 1fA0 1cM0 1cM0 1oJ0 1dc0 1030 1fA0 1cM0 1cM0 1cM0 1cM0 1fA0 1a00 1iM0 1fA0 8Ha0 Rb0 1wN0 Rb0 1BB0 Lz0 1C20 LB0 SNX0 1a10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e5","Europe/Zurich|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-19Lc0 11A0 1o00 11A0 1xG10 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|38e4","Europe/Chisinau|CMT BMT EET EEST CEST CET MSK MSD|-1T -1I.o -20 -30 -20 -10 -30 -40|012323232323232323234545467676767676767676767323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232323232|-26jdT wGMa.A 20LI.o RA0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 27A0 2en0 39g0 WM0 1fA0 1cM0 V90 1t7z0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 gL0 WO0 1cM0 1cM0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11D0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|67e4","Europe/Copenhagen|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2azC0 Tz0 VuO0 60q0 WM0 1fA0 1cM0 1cM0 1cM0 S00 1HA0 Nc0 1C00 Dc0 1Nc0 Ao0 1h5A0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","Europe/Gibraltar|GMT BST BDST CET CEST|0 -10 -20 -10 -20|010101010101010101010101010101010101010101010101012121212121010121010101010101010101034343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-2axa0 Rc0 1fA0 14M0 1fc0 1g00 1co0 1dc0 1co0 1oo0 1400 1dc0 19A0 1io0 1io0 WM0 1o00 14o0 1o00 17c0 1io0 17c0 1fA0 1a00 1lc0 17c0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1cM0 1io0 17c0 1fA0 1a00 1io0 17c0 1io0 17c0 1fA0 1a00 1io0 1qM0 Dc0 2Rz0 Dc0 1zc0 Oo0 1zc0 Rc0 1wo0 17c0 1iM0 FA0 xB0 1fA0 1a00 14o0 bb0 LA0 xB0 Rc0 1wo0 11A0 1o00 17c0 1fA0 1a00 1fA0 1cM0 1fA0 1a00 17c0 1fA0 1a00 1io0 17c0 1lc0 17c0 1fA0 10Jz0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|30e3","Europe/Helsinki|HMT EET EEST|-1D.N -20 -30|0121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-1WuND.N OULD.N 1dA0 1xGq0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","Europe/Kaliningrad|CET CEST CET CEST MSK MSD EEST EET +03|-10 -20 -20 -30 -30 -40 -30 -20 -30|0101010101010232454545454545454546767676767676767676767676767676767676767676787|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 Am0 Lb0 1en0 op0 1pNz0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|44e4","Europe/Kiev|KMT EET MSK CEST CET MSD EEST|-22.4 -20 -30 -20 -10 -40 -30|0123434252525252525252525256161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161|-1Pc22.4 eUo2.4 rnz0 2Hg0 WM0 1fA0 da0 1v4m0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 Db0 3220 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|34e5","Europe/Kirov|LMT +03 +04 +05|-3i.M -30 -40 -50|01232323232323232321212121212121212121212121212121212121212121|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|48e4","Europe/Lisbon|LMT WET WEST WEMT CET CEST|A.J 0 -10 -20 -10 -20|012121212121212121212121212121212121212121212321232123212321212121212121212121212121212121212121214121212121212121212121212121212124545454212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ldXn.f aPWn.f Sp0 LX0 1vc0 Tc0 1uM0 SM0 1vc0 Tc0 1vc0 SM0 1vc0 6600 1co0 3E00 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 3I00 17c0 1cM0 1cM0 3Fc0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 1tA0 1cM0 1dc0 1400 gL0 IM0 s10 U00 dX0 Rc0 pd0 Rc0 gL0 Oo0 pd0 Rc0 gL0 Oo0 pd0 14o0 1cM0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 3Co0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 pvy0 1cM0 1cM0 1fA0 1cM0 1cM0 1cN0 1cL0 1cN0 1cM0 1cM0 1cM0 1cM0 1cN0 1cL0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e5","Europe/Luxembourg|LMT CET CEST WET WEST WEST WET|-o.A -10 -20 0 -10 -20 -10|0121212134343434343434343434343434343434343434343434565651212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2DG0o.A t6mo.A TB0 1nX0 Up0 1o20 11A0 rW0 CM0 1qP0 R90 1EO0 UK0 1u20 10m0 1ip0 1in0 17e0 19W0 1fB0 1db0 1cp0 1in0 17d0 1fz0 1a10 1in0 1a10 1in0 17f0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Dc0 vA0 60L0 WM0 1fA0 1cM0 17c0 1io0 16M0 1C00 Uo0 1eeo0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4","Europe/Madrid|WET WEST WEMT CET CEST|0 -10 -20 -10 -20|010101010101010101210343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343|-25Td0 19B0 1cL0 1dd0 b1z0 18p0 3HX0 17d0 1fz0 1a10 1io0 1a00 1in0 17d0 iIn0 Hd0 1cL0 bb0 1200 2s20 14n0 5aL0 Mp0 1vz0 17d0 1in0 17d0 1in0 17d0 1in0 17d0 6hX0 11B0 XHX0 1a10 1fz0 1a10 19X0 1cN0 1fz0 1a10 1fC0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|62e5","Europe/Malta|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2arB0 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1co0 17c0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1co0 1cM0 1lA0 Xc0 1qq0 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1o10 11z0 1iN0 19z0 1fB0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|42e4","Europe/Minsk|MMT EET MSK CEST CET MSD EEST +03|-1O -20 -30 -20 -10 -40 -30 -30|01234343252525252525252525261616161616161616161616161616161616161617|-1Pc1O eUnO qNX0 3gQ0 WM0 1fA0 1cM0 Al0 1tsn0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 3Fc0 1cN0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0|19e5","Europe/Monaco|PMT WET WEST WEMT CET CEST|-9.l 0 -10 -20 -10 -20|01212121212121212121212121212121212121212121212121232323232345454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-2nco9.l cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 2RV0 11z0 11B0 1ze0 WM0 1fA0 1cM0 1fa0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|38e3","Europe/Moscow|MMT MMT MST MDST MSD MSK +05 EET EEST MSK|-2u.h -2v.j -3v.j -4v.j -40 -30 -50 -20 -30 -40|012132345464575454545454545454545458754545454545454545454545454545454545454595|-2ag2u.h 2pyW.W 1bA0 11X0 GN0 1Hb0 c4v.j ik0 3DA0 dz0 15A0 c10 2q10 iM10 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|16e6","Europe/Paris|PMT WET WEST CEST CET WEMT|-9.l 0 -10 -20 -10 -20|0121212121212121212121212121212121212121212121212123434352543434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434343434|-2nco8.l cNb8.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 1u00 10o0 1io0 1wo0 Rc0 1a00 1fA0 1cM0 1cM0 1io0 17c0 1fA0 1a00 1io0 1a00 1io0 17c0 1fA0 1a00 1io0 17c0 1cM0 1cM0 1a00 1io0 1cM0 1cM0 1a00 1fA0 1io0 17c0 1cM0 1cM0 1a00 1fA0 1io0 1qM0 Df0 Ik0 5M30 WM0 1fA0 1cM0 Vx0 hB0 1aq0 16M0 1ekn0 1cL0 1fC0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e6","Europe/Riga|RMT LST EET MSK CEST CET MSD EEST|-1A.y -2A.y -20 -30 -20 -10 -40 -30|010102345454536363636363636363727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272727272|-25TzA.y 11A0 1iM0 ko0 gWm0 yDXA.y 2bX0 3fE0 WM0 1fA0 1cM0 1cM0 4m0 1sLy0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cN0 1o00 11A0 1o00 11A0 1qM0 3oo0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|64e4","Europe/Rome|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2arB0 Lz0 1cN0 1db0 1410 1on0 Wp0 1qL0 17d0 1cL0 M3B0 5M20 WM0 1fA0 1cM0 16M0 1iM0 16m0 1de0 1lc0 14m0 1lc0 WO0 1qM0 GTW0 On0 1C10 LA0 1C00 LA0 1EM0 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1C00 LA0 1zc0 Oo0 1C00 LA0 1C00 LA0 1zc0 Oo0 1C00 Oo0 1zc0 Oo0 1fC0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|39e5","Europe/Samara|LMT +03 +04 +05|-3k.k -30 -40 -50|0123232323232323232121232323232323232323232323232323232323212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2y10 14m0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 2sp0 WM0|12e5","Europe/Saratov|LMT +03 +04 +05|-34.i -30 -40 -50|012323232323232321212121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 5810","Europe/Simferopol|SMT EET MSK CEST CET MSD EEST MSK|-2g -20 -30 -20 -10 -40 -30 -40|012343432525252525252525252161616525252616161616161616161616161616161616172|-1Pc2g eUog rEn0 2qs0 WM0 1fA0 1cM0 3V0 1u0L0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 4eL0 1cL0 1cN0 1cL0 1cN0 dX0 WL0 1cN0 1cL0 1fB0 1o30 11B0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11z0 1nW0|33e4","Europe/Sofia|EET CET CEST EEST|-20 -10 -20 -30|01212103030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030|-168L0 WM0 1fA0 1cM0 1cM0 1cN0 1mKH0 1dd0 1fb0 1ap0 1fb0 1a20 1fy0 1a30 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cK0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 1nX0 11E0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5","Europe/Stockholm|CET CEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2azC0 TB0 2yDe0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|15e5","Europe/Tallinn|TMT CET CEST EET MSK MSD EEST|-1D -10 -20 -20 -30 -40 -30|012103421212454545454545454546363636363636363636363636363636363636363636363636363636363636363636363636363636363636363636363|-26oND teD 11A0 1Ta0 4rXl KSLD 2FX0 2Jg0 WM0 1fA0 1cM0 18J0 1sTX0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o10 11A0 1qM0 5QM0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|41e4","Europe/Tirane|LMT CET CEST|-1j.k -10 -20|01212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2glBj.k 14pcj.k 5LC0 WM0 4M0 1fCK0 10n0 1op0 11z0 1pd0 11z0 1qN0 WL0 1qp0 Xb0 1qp0 Xb0 1qp0 11z0 1lB0 11z0 1qN0 11z0 1iN0 16n0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|42e4","Europe/Ulyanovsk|LMT +03 +04 +05 +02|-3d.A -30 -40 -50 -20|01232323232323232321214121212121212121212121212121212121212121212|-22WM0 qH90 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1fA0 2pB0 IM0 rX0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0 3rd0","Europe/Uzhgorod|CET CEST MSK MSD EET EEST|-10 -20 -30 -40 -20 -30|010101023232323232323232320454545454545454545454545454545454545454545454545454545454545454545454545454545454545454545454|-1cqL0 6i00 WM0 1fA0 1cM0 1ml0 1Cp0 1r3W0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1Q00 1Nf0 2pw0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e4","Europe/Vienna|CET CEST|-10 -20|0101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 3KM0 14o0 LA00 6i00 WM0 1fA0 1cM0 1cM0 1cM0 400 2qM0 1a00 1cM0 1cM0 1io0 17c0 1gHa0 19X0 1cP0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|18e5","Europe/Vilnius|WMT KMT CET EET MSK CEST MSD EEST|-1o -1z.A -10 -20 -30 -20 -40 -30|012324525254646464646464646473737373737373737352537373737373737373737373737373737373737373737373737373737373737373737373|-293do 6ILM.o 1Ooz.A zz0 Mfd0 29W0 3is0 WM0 1fA0 1cM0 LV0 1tgL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11B0 1o00 11A0 1qM0 8io0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|54e4","Europe/Volgograd|LMT +03 +04 +05|-2V.E -30 -40 -50|01232323232323232121212121212121212121212121212121212121212121|-21IqV.E psLV.E 23CL0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 2pB0 1cM0 1cM0 1cM0 1fA0 1cM0 3Co0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 8Hz0|10e5","Europe/Warsaw|WMT CET CEST EET EEST|-1o -10 -20 -20 -30|012121234312121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121|-2ctdo 1LXo 11d0 1iO0 11A0 1o00 11A0 1on0 11A0 6zy0 HWP0 5IM0 WM0 1fA0 1cM0 1dz0 1mL0 1en0 15B0 1aq0 1nA0 11A0 1io0 17c0 1fA0 1a00 iDX0 LA0 1cM0 1cM0 1C00 Oo0 1cM0 1cM0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1C00 LA0 uso0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cN0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e5","Europe/Zaporozhye|+0220 EET MSK CEST CET MSD EEST|-2k -20 -30 -20 -10 -40 -30|01234342525252525252525252526161616161616161616161616161616161616161616161616161616161616161616161616161616161616161616161|-1Pc2k eUok rdb0 2RE0 WM0 1fA0 8m0 1v9a0 1db0 1cN0 1db0 1cN0 1db0 1dd0 1cO0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cK0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cQ0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|77e4","HST|HST|a0|0|","Indian/Chagos|LMT +05 +06|-4N.E -50 -60|012|-2xosN.E 3AGLN.E|30e2","Indian/Cocos|+0630|-6u|0||596","Indian/Kerguelen|-00 +05|0 -50|01|-MG00|130","Indian/Mahe|LMT +04|-3F.M -40|01|-2yO3F.M|79e3","Indian/Maldives|MMT +05|-4S -50|01|-olgS|35e4","Indian/Mauritius|LMT +04 +05|-3O -40 -50|012121|-2xorO 34unO 14L0 12kr0 11z0|15e4","Indian/Reunion|LMT +04|-3F.Q -40|01|-2mDDF.Q|84e4","Pacific/Kwajalein|+11 -12 +12|-b0 c0 -c0|012|-AX0 W9X0|14e3","MET|MET MEST|-10 -20|01010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-2aFe0 11d0 1iO0 11A0 1o00 11A0 Qrc0 6i00 WM0 1fA0 1cM0 1cM0 1cM0 16M0 1gMM0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00","MST|MST|70|0|","MST7MDT|MST MDT MWT MPT|70 60 60 60|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261r0 1nX0 11B0 1nX0 SgN0 8x20 ix0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","Pacific/Chatham|+1215 +1245 +1345|-cf -cJ -dJ|012121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212|-WqAf 1adef IM0 1C00 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1qM0 14o0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1lc0 14o0 1lc0 14o0 1lc0 17c0 1io0 17c0 1io0 17c0 1io0 17c0 1io0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|600","PST8PDT|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0","Pacific/Apia|LMT -1130 -11 -10 +14 +13|bq.U bu b0 a0 -e0 -d0|01232345454545454545454545454545454545454545454545454545454|-2nDMx.4 1yW03.4 2rRbu 1ff0 1a00 CI0 AQ0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1io0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|37e3","Pacific/Bougainville|+10 +09 +11|-a0 -90 -b0|0102|-16Wy0 7CN0 2MQp0|18e4","Pacific/Efate|LMT +11 +12|-bd.g -b0 -c0|0121212121212121212121|-2l9nd.g 2Szcd.g 1cL0 1oN0 10L0 1fB0 19X0 1fB0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1fB0 Lz0 1Nd0 An0|66e3","Pacific/Enderbury|-12 -11 +13|c0 b0 -d0|012|nIc0 B8n0|1","Pacific/Fakaofo|-11 +13|b0 -d0|01|1Gfn0|483","Pacific/Fiji|LMT +12 +13|-bT.I -c0 -d0|0121212121212121212121212121212121212121212121212121212121212121|-2bUzT.I 3m8NT.I LA0 1EM0 IM0 nJc0 LA0 1o00 Rc0 1wo0 Ao0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0 uM0 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0 uM0|88e4","Pacific/Galapagos|LMT -05 -06|5W.o 50 60|01212|-1yVS1.A 2dTz1.A gNd0 rz0|25e3","Pacific/Gambier|LMT -09|8X.M 90|01|-2jof0.c|125","Pacific/Guadalcanal|LMT +11|-aD.M -b0|01|-2joyD.M|11e4","Pacific/Guam|GST ChST|-a0 -a0|01|1fpq0|17e4","Pacific/Honolulu|HST HDT HST|au 9u a0|010102|-1thLu 8x0 lef0 8Pz0 46p0|37e4","Pacific/Kiritimati|-1040 -10 +14|aE a0 -e0|012|nIaE B8nk|51e2","Pacific/Kosrae|+11 +12|-b0 -c0|010|-AX0 1bdz0|66e2","Pacific/Majuro|+11 +12|-b0 -c0|01|-AX0|28e3","Pacific/Marquesas|LMT -0930|9i 9u|01|-2joeG|86e2","Pacific/Pago_Pago|LMT SST|bm.M b0|01|-2nDMB.c|37e2","Pacific/Nauru|LMT +1130 +09 +12|-b7.E -bu -90 -c0|01213|-1Xdn7.E PvzB.E 5RCu 1ouJu|10e3","Pacific/Niue|-1120 -1130 -11|bk bu b0|012|-KfME 17y0a|12e2","Pacific/Norfolk|+1112 +1130 +1230 +11|-bc -bu -cu -b0|01213|-Kgbc W01G On0 1COp0|25e4","Pacific/Noumea|LMT +11 +12|-b5.M -b0 -c0|01212121|-2l9n5.M 2EqM5.M xX0 1PB0 yn0 HeP0 Ao0|98e3","Pacific/Pitcairn|-0830 -08|8u 80|01|18Vku|56","Pacific/Rarotonga|-1030 -0930 -10|au 9u a0|012121212121212121212121212|lyWu IL0 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Onu 1zcu Rbu 1zcu Onu 1zcu Onu 1zcu Onu|13e3","Pacific/Tahiti|LMT -10|9W.g a0|01|-2joe1.I|18e4","Pacific/Tongatapu|+1220 +13 +14|-ck -d0 -e0|0121212121212121212121212121212121212121212121212121|-1aB0k 2n5dk 15A0 1wo0 xz0 1Q10 xz0 zWN0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0 uM0 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0 uM0 1VA0 s00 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0 uM0|75e3","WET|WET WEST|0 -10|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00"],"links":["Africa/Abidjan|Africa/Bamako","Africa/Abidjan|Africa/Banjul","Africa/Abidjan|Africa/Conakry","Africa/Abidjan|Africa/Dakar","Africa/Abidjan|Africa/Freetown","Africa/Abidjan|Africa/Lome","Africa/Abidjan|Africa/Nouakchott","Africa/Abidjan|Africa/Ouagadougou","Africa/Abidjan|Africa/Sao_Tome","Africa/Abidjan|Africa/Timbuktu","Africa/Abidjan|Atlantic/St_Helena","Africa/Cairo|Egypt","Africa/Johannesburg|Africa/Maseru","Africa/Johannesburg|Africa/Mbabane","Africa/Khartoum|Africa/Juba","Africa/Lagos|Africa/Bangui","Africa/Lagos|Africa/Brazzaville","Africa/Lagos|Africa/Douala","Africa/Lagos|Africa/Kinshasa","Africa/Lagos|Africa/Libreville","Africa/Lagos|Africa/Luanda","Africa/Lagos|Africa/Malabo","Africa/Lagos|Africa/Niamey","Africa/Lagos|Africa/Porto-Novo","Africa/Maputo|Africa/Blantyre","Africa/Maputo|Africa/Bujumbura","Africa/Maputo|Africa/Gaborone","Africa/Maputo|Africa/Harare","Africa/Maputo|Africa/Kigali","Africa/Maputo|Africa/Lubumbashi","Africa/Maputo|Africa/Lusaka","Africa/Nairobi|Africa/Addis_Ababa","Africa/Nairobi|Africa/Asmara","Africa/Nairobi|Africa/Asmera","Africa/Nairobi|Africa/Dar_es_Salaam","Africa/Nairobi|Africa/Djibouti","Africa/Nairobi|Africa/Kampala","Africa/Nairobi|Africa/Mogadishu","Africa/Nairobi|Indian/Antananarivo","Africa/Nairobi|Indian/Comoro","Africa/Nairobi|Indian/Mayotte","Africa/Tripoli|Libya","America/Adak|America/Atka","America/Adak|US/Aleutian","America/Anchorage|US/Alaska","America/Argentina/Buenos_Aires|America/Buenos_Aires","America/Argentina/Catamarca|America/Argentina/ComodRivadavia","America/Argentina/Catamarca|America/Catamarca","America/Argentina/Cordoba|America/Cordoba","America/Argentina/Cordoba|America/Rosario","America/Argentina/Jujuy|America/Jujuy","America/Argentina/Mendoza|America/Mendoza","America/Atikokan|America/Coral_Harbour","America/Chicago|US/Central","America/Curacao|America/Aruba","America/Curacao|America/Kralendijk","America/Curacao|America/Lower_Princes","America/Denver|America/Shiprock","America/Denver|Navajo","America/Denver|US/Mountain","America/Detroit|US/Michigan","America/Edmonton|Canada/Mountain","America/Fort_Wayne|America/Indiana/Indianapolis","America/Fort_Wayne|America/Indianapolis","America/Fort_Wayne|US/East-Indiana","America/Halifax|Canada/Atlantic","America/Havana|Cuba","America/Indiana/Knox|America/Knox_IN","America/Indiana/Knox|US/Indiana-Starke","America/Jamaica|Jamaica","America/Kentucky/Louisville|America/Louisville","America/Los_Angeles|US/Pacific","America/Los_Angeles|US/Pacific-New","America/Manaus|Brazil/West","America/Mazatlan|Mexico/BajaSur","America/Mexico_City|Mexico/General","America/New_York|US/Eastern","America/Noronha|Brazil/DeNoronha","America/Panama|America/Cayman","America/Phoenix|US/Arizona","America/Port_of_Spain|America/Anguilla","America/Port_of_Spain|America/Antigua","America/Port_of_Spain|America/Dominica","America/Port_of_Spain|America/Grenada","America/Port_of_Spain|America/Guadeloupe","America/Port_of_Spain|America/Marigot","America/Port_of_Spain|America/Montserrat","America/Port_of_Spain|America/St_Barthelemy","America/Port_of_Spain|America/St_Kitts","America/Port_of_Spain|America/St_Lucia","America/Port_of_Spain|America/St_Thomas","America/Port_of_Spain|America/St_Vincent","America/Port_of_Spain|America/Tortola","America/Port_of_Spain|America/Virgin","America/Regina|Canada/East-Saskatchewan","America/Regina|Canada/Saskatchewan","America/Rio_Branco|America/Porto_Acre","America/Rio_Branco|Brazil/Acre","America/Santiago|Chile/Continental","America/Sao_Paulo|Brazil/East","America/St_Johns|Canada/Newfoundland","America/Tijuana|America/Ensenada","America/Tijuana|America/Santa_Isabel","America/Tijuana|Mexico/BajaNorte","America/Toronto|America/Montreal","America/Toronto|Canada/Eastern","America/Vancouver|Canada/Pacific","America/Whitehorse|Canada/Yukon","America/Winnipeg|Canada/Central","Asia/Ashgabat|Asia/Ashkhabad","Asia/Bangkok|Asia/Phnom_Penh","Asia/Bangkok|Asia/Vientiane","Asia/Dhaka|Asia/Dacca","Asia/Dubai|Asia/Muscat","Asia/Ho_Chi_Minh|Asia/Saigon","Asia/Hong_Kong|Hongkong","Asia/Jerusalem|Asia/Tel_Aviv","Asia/Jerusalem|Israel","Asia/Kathmandu|Asia/Katmandu","Asia/Kolkata|Asia/Calcutta","Asia/Kuala_Lumpur|Asia/Singapore","Asia/Kuala_Lumpur|Singapore","Asia/Macau|Asia/Macao","Asia/Makassar|Asia/Ujung_Pandang","Asia/Nicosia|Europe/Nicosia","Asia/Qatar|Asia/Bahrain","Asia/Rangoon|Asia/Yangon","Asia/Riyadh|Asia/Aden","Asia/Riyadh|Asia/Kuwait","Asia/Seoul|ROK","Asia/Shanghai|Asia/Chongqing","Asia/Shanghai|Asia/Chungking","Asia/Shanghai|Asia/Harbin","Asia/Shanghai|PRC","Asia/Taipei|ROC","Asia/Tehran|Iran","Asia/Thimphu|Asia/Thimbu","Asia/Tokyo|Japan","Asia/Ulaanbaatar|Asia/Ulan_Bator","Asia/Urumqi|Asia/Kashgar","Atlantic/Faroe|Atlantic/Faeroe","Atlantic/Reykjavik|Iceland","Atlantic/South_Georgia|Etc/GMT+2","Australia/Adelaide|Australia/South","Australia/Brisbane|Australia/Queensland","Australia/Broken_Hill|Australia/Yancowinna","Australia/Darwin|Australia/North","Australia/Hobart|Australia/Tasmania","Australia/Lord_Howe|Australia/LHI","Australia/Melbourne|Australia/Victoria","Australia/Perth|Australia/West","Australia/Sydney|Australia/ACT","Australia/Sydney|Australia/Canberra","Australia/Sydney|Australia/NSW","Etc/GMT+0|Etc/GMT","Etc/GMT+0|Etc/GMT-0","Etc/GMT+0|Etc/GMT0","Etc/GMT+0|Etc/Greenwich","Etc/GMT+0|GMT","Etc/GMT+0|GMT+0","Etc/GMT+0|GMT-0","Etc/GMT+0|GMT0","Etc/GMT+0|Greenwich","Etc/UCT|UCT","Etc/UTC|Etc/Universal","Etc/UTC|Etc/Zulu","Etc/UTC|UTC","Etc/UTC|Universal","Etc/UTC|Zulu","Europe/Belgrade|Europe/Ljubljana","Europe/Belgrade|Europe/Podgorica","Europe/Belgrade|Europe/Sarajevo","Europe/Belgrade|Europe/Skopje","Europe/Belgrade|Europe/Zagreb","Europe/Chisinau|Europe/Tiraspol","Europe/Dublin|Eire","Europe/Helsinki|Europe/Mariehamn","Europe/Istanbul|Asia/Istanbul","Europe/Istanbul|Turkey","Europe/Lisbon|Portugal","Europe/London|Europe/Belfast","Europe/London|Europe/Guernsey","Europe/London|Europe/Isle_of_Man","Europe/London|Europe/Jersey","Europe/London|GB","Europe/London|GB-Eire","Europe/Moscow|W-SU","Europe/Oslo|Arctic/Longyearbyen","Europe/Oslo|Atlantic/Jan_Mayen","Europe/Prague|Europe/Bratislava","Europe/Rome|Europe/San_Marino","Europe/Rome|Europe/Vatican","Europe/Warsaw|Poland","Europe/Zurich|Europe/Busingen","Europe/Zurich|Europe/Vaduz","Indian/Christmas|Etc/GMT-7","Pacific/Auckland|Antarctica/McMurdo","Pacific/Auckland|Antarctica/South_Pole","Pacific/Auckland|NZ","Pacific/Chatham|NZ-CHAT","Pacific/Easter|Chile/EasterIsland","Pacific/Guam|Pacific/Saipan","Pacific/Honolulu|Pacific/Johnston","Pacific/Honolulu|US/Hawaii","Pacific/Kwajalein|Kwajalein","Pacific/Pago_Pago|Pacific/Midway","Pacific/Pago_Pago|Pacific/Samoa","Pacific/Pago_Pago|US/Samoa","Pacific/Palau|Etc/GMT-9","Pacific/Pohnpei|Etc/GMT-11","Pacific/Pohnpei|Pacific/Ponape","Pacific/Port_Moresby|Etc/GMT-10","Pacific/Port_Moresby|Pacific/Chuuk","Pacific/Port_Moresby|Pacific/Truk","Pacific/Port_Moresby|Pacific/Yap","Pacific/Tarawa|Etc/GMT-12","Pacific/Tarawa|Pacific/Funafuti","Pacific/Tarawa|Pacific/Wake","Pacific/Tarawa|Pacific/Wallis"]} /***/ }), -/* 458 */ +/* 460 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -58051,7 +58182,7 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var moment = __webpack_require__(337); + var moment = __webpack_require__(339); function getTimezoneMetadata(timezone, date) { var timestamp = date.getTime(); var zone = moment.tz.zone(timezone); @@ -58089,7 +58220,7 @@ /***/ }), -/* 459 */ +/* 461 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -58100,9 +58231,9 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var moment = __webpack_require__(337); - var timezoneMetadata_1 = __webpack_require__(458); - var timezoneUtils_1 = __webpack_require__(460); + var moment = __webpack_require__(339); + var timezoneMetadata_1 = __webpack_require__(460); + var timezoneUtils_1 = __webpack_require__(462); /** * Get a list of all timezone items. * @param date the date to use when determining timezone offsets @@ -58201,7 +58332,7 @@ /***/ }), -/* 460 */ +/* 462 */ /***/ (function(module, exports, __webpack_require__) { /* @@ -58212,9 +58343,9 @@ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var fuzzaldrin_plus_1 = __webpack_require__(461); - var moment = __webpack_require__(337); - var timezoneMetadata_1 = __webpack_require__(458); + var fuzzaldrin_plus_1 = __webpack_require__(463); + var moment = __webpack_require__(339); + var timezoneMetadata_1 = __webpack_require__(460); /** * Get the user's local timezone. * Note that we are not guaranteed to get the correct timezone in all browsers, @@ -58260,21 +58391,21 @@ /***/ }), -/* 461 */ +/* 463 */ /***/ (function(module, exports, __webpack_require__) { /* WEBPACK VAR INJECTION */(function(process) {(function() { var Query, defaultPathSeparator, filter, matcher, parseOptions, pathScorer, preparedQueryCache, scorer; - filter = __webpack_require__(462); + filter = __webpack_require__(464); - matcher = __webpack_require__(466); + matcher = __webpack_require__(468); - scorer = __webpack_require__(463); + scorer = __webpack_require__(465); - pathScorer = __webpack_require__(464); + pathScorer = __webpack_require__(466); - Query = __webpack_require__(465); + Query = __webpack_require__(467); preparedQueryCache = null; @@ -58378,17 +58509,17 @@ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(115))) /***/ }), -/* 462 */ +/* 464 */ /***/ (function(module, exports, __webpack_require__) { (function() { var Query, pathScorer, pluckCandidates, scorer, sortCandidates; - scorer = __webpack_require__(463); + scorer = __webpack_require__(465); - pathScorer = __webpack_require__(464); + pathScorer = __webpack_require__(466); - Query = __webpack_require__(465); + Query = __webpack_require__(467); pluckCandidates = function(a) { return a.candidate; @@ -58434,7 +58565,7 @@ /***/ }), -/* 463 */ +/* 465 */ /***/ (function(module, exports) { (function() { @@ -58764,13 +58895,13 @@ /***/ }), -/* 464 */ +/* 466 */ /***/ (function(module, exports, __webpack_require__) { (function() { var computeScore, countDir, file_coeff, getExtension, getExtensionScore, isMatch, scorePath, scoreSize, tau_depth, _ref; - _ref = __webpack_require__(463), isMatch = _ref.isMatch, computeScore = _ref.computeScore, scoreSize = _ref.scoreSize; + _ref = __webpack_require__(465), isMatch = _ref.isMatch, computeScore = _ref.computeScore, scoreSize = _ref.scoreSize; tau_depth = 13; @@ -58880,13 +59011,13 @@ /***/ }), -/* 465 */ +/* 467 */ /***/ (function(module, exports, __webpack_require__) { (function() { var Query, coreChars, countDir, getCharCodes, getExtension, opt_char_re, truncatedUpperCase, _ref; - _ref = __webpack_require__(464), countDir = _ref.countDir, getExtension = _ref.getExtension; + _ref = __webpack_require__(466), countDir = _ref.countDir, getExtension = _ref.getExtension; module.exports = Query = (function() { function Query(query, _arg) { @@ -58943,13 +59074,13 @@ /***/ }), -/* 466 */ +/* 468 */ /***/ (function(module, exports, __webpack_require__) { (function() { var basenameMatch, computeMatch, isMatch, isWordStart, match, mergeMatches, scoreAcronyms, scoreCharacter, scoreConsecutives, _ref; - _ref = __webpack_require__(463), isMatch = _ref.isMatch, isWordStart = _ref.isWordStart, scoreConsecutives = _ref.scoreConsecutives, scoreCharacter = _ref.scoreCharacter, scoreAcronyms = _ref.scoreAcronyms; + _ref = __webpack_require__(465), isMatch = _ref.isMatch, isWordStart = _ref.isWordStart, scoreConsecutives = _ref.scoreConsecutives, scoreCharacter = _ref.scoreCharacter, scoreAcronyms = _ref.scoreAcronyms; exports.match = match = function(string, query, options) { var allowErrors, baseMatches, matches, pathSeparator, preparedQuery, string_lw; @@ -59164,7 +59295,7 @@ /***/ }), -/* 467 */ +/* 469 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*! @@ -59218,7 +59349,7 @@ /***/ }), -/* 468 */ +/* 470 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -59226,21 +59357,21 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(469)); __export(__webpack_require__(471)); __export(__webpack_require__(473)); + __export(__webpack_require__(475)); /***/ }), -/* 469 */ +/* 471 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var classNames = __webpack_require__(467); + var classNames = __webpack_require__(469); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var clickToCopy_1 = __webpack_require__(470); + var clickToCopy_1 = __webpack_require__(472); function expand(color) { return [color + "1", color + "2", color + "3", color + "4", color + "5"]; } @@ -59307,13 +59438,13 @@ /***/ }), -/* 470 */ +/* 472 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(1); - var classNames = __webpack_require__(467); + var classNames = __webpack_require__(469); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); @@ -59363,18 +59494,18 @@ /***/ }), -/* 471 */ +/* 473 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(1); - var chroma = __webpack_require__(472); - var classNames = __webpack_require__(467); + var chroma = __webpack_require__(474); + var classNames = __webpack_require__(469); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var colorPalettes_1 = __webpack_require__(469); + var colorPalettes_1 = __webpack_require__(471); var MIN_STEPS = 3; var MAX_STEPS = 20; var QUALITATIVE = [ @@ -59529,7 +59660,7 @@ /***/ }), -/* 472 */ +/* 474 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module) { @@ -62240,10 +62371,10 @@ }).call(this); - /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(340)(module))) + /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(342)(module))) /***/ }), -/* 473 */ +/* 475 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62251,7 +62382,7 @@ var tslib_1 = __webpack_require__(1); var React = __webpack_require__(3); var docs_1 = __webpack_require__(172); - var docsIcon_1 = __webpack_require__(474); + var docsIcon_1 = __webpack_require__(476); var ICONS_PER_ROW = 5; var Icons = (function (_super) { tslib_1.__extends(Icons, _super); @@ -62312,7 +62443,7 @@ Icons.defaultProps = { iconFilter: isIconFiltered, iconRenderer: renderIcon, - icons: __webpack_require__(475), + icons: __webpack_require__(477), }; exports.Icons = Icons; function isIconFiltered(query, icon) { @@ -62324,7 +62455,7 @@ /***/ }), -/* 474 */ +/* 476 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62332,7 +62463,7 @@ var tslib_1 = __webpack_require__(1); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var clickToCopy_1 = __webpack_require__(470); + var clickToCopy_1 = __webpack_require__(472); var GITHUB_PATH = "https://github.com/palantir/blueprint/blob/master/resources/icons"; var DocsIcon = (function (_super) { tslib_1.__extends(DocsIcon, _super); @@ -62366,24 +62497,24 @@ /***/ }), -/* 475 */ +/* 477 */ /***/ (function(module, exports) { module.exports = [{"name":"Blank","className":"pt-icon-blank","tags":"empty, placeholder","group":"miscellaneous","content":"\\e900"},{"name":"Style","className":"pt-icon-style","tags":"visual style, editor","group":"editor","content":"\\e601"},{"name":"Align: left","className":"pt-icon-align-left","tags":"text flow, alignment, justification, range, flush left","group":"editor","content":"\\e602"},{"name":"Align: center","className":"pt-icon-align-center","tags":"text flow, alignment, justification, range, centered","group":"editor","content":"\\e603"},{"name":"Align: right","className":"pt-icon-align-right","tags":"text flow, alignment, justification, range, flush right","group":"editor","content":"\\e604"},{"name":"Align: justify","className":"pt-icon-align-justify","tags":"text flow, alignment, justification, range, justified","group":"editor","content":"\\e605"},{"name":"Bold","className":"pt-icon-bold","tags":"typography, text, font style, weight, bold","group":"editor","content":"\\e606"},{"name":"Italic","className":"pt-icon-italic","tags":"typography, text, font style, italic, cursive","group":"editor","content":"\\e607"},{"name":"Underline","className":"pt-icon-underline","tags":"typography, text, font style, underline, underscore","group":"editor","content":"\\2381"},{"name":"Search around","className":"pt-icon-search-around","tags":"search, exploration, information, area, graph","group":"action","content":"\\e608"},{"name":"Remove from graph","className":"pt-icon-graph-remove","tags":"circle, remove, delete, clear, graph","group":"action","content":"\\e609"},{"name":"Group objects","className":"pt-icon-group-objects","tags":"group, alignment, organization, arrangement, classification, objects","group":"action","content":"\\e60a"},{"name":"Merge into links","className":"pt-icon-merge-links","tags":"merge, combine, consolidate, jointment, links","group":"action","content":"\\e60b"},{"name":"Layout","className":"pt-icon-layout","tags":"layout, presentation, arrangement, graph","group":"data","content":"\\e60c"},{"name":"Layout: auto","className":"pt-icon-layout-auto","tags":"layout, presentation, arrangement, auto, graph, grid","group":"data","content":"\\e60d"},{"name":"Layout: circle","className":"pt-icon-layout-circle","tags":"layout, presentation, arrangement, circle, graph, grid","group":"data","content":"\\e60e"},{"name":"Layout: hierarchy","className":"pt-icon-layout-hierarchy","tags":"layout, presentation, arrangement, hierarchy, order, graph, grid","group":"data","content":"\\e60f"},{"name":"Layout: grid","className":"pt-icon-layout-grid","tags":"layout, presentation, arrangement, grid, graph, grid","group":"data","content":"\\e610"},{"name":"Layout: group by","className":"pt-icon-layout-group-by","tags":"layout, presentation, arrangement, group by, graph, grid","group":"data","content":"\\e611"},{"name":"Layout: skew grid","className":"pt-icon-layout-skew-grid","tags":"layout, presentation, arrangement, skew, graph, grid","group":"data","content":"\\e612"},{"name":"Geosearch","className":"pt-icon-geosearch","tags":"search, exploration, topography, geography, location, area, magnifying glass, globe","group":"action","content":"\\e613"},{"name":"Heatmap","className":"pt-icon-heatmap","tags":"hierarchy, matrix, heat map","group":"data","content":"\\e614"},{"name":"Drive time","className":"pt-icon-drive-time","tags":"car, automobile, vehicle, van, drive, ride, distance, navigation, directions","group":"interface","content":"\\e615"},{"name":"Select","className":"pt-icon-select","tags":"selection, arrow, cursor, area, range","group":"action","content":"\\e616"},{"name":"Predictive analysis","className":"pt-icon-predictive-analysis","tags":"analysis, investigation, search, study, test, brain","group":"action","content":"\\e617"},{"name":"Layers","className":"pt-icon-layers","tags":"layers, levels, stack, cards","group":"interface","content":"\\e618"},{"name":"Locate","className":"pt-icon-locate","tags":"target, location, destination, mark, map, area","group":"action","content":"\\e619"},{"name":"Bookmark","className":"pt-icon-bookmark","tags":"bookmark, marker, holder, section, identifier, favorites","group":"action","content":"\\e61a"},{"name":"Citation","className":"pt-icon-citation","tags":"quotation, citation, marks, excerpt","group":"editor","content":"\\e61b"},{"name":"Tag","className":"pt-icon-tag","tags":"tag, label, badge, identification","group":"action","content":"\\e61c"},{"name":"Clipboard","className":"pt-icon-clipboard","tags":"clipboard, notepad, notebook, copy, paste, transfer, storage","group":"action","content":"\\e61d"},{"name":"Selection","className":"pt-icon-selection","tags":"selection, collection, circle, ring","group":"action","content":"\\29bf"},{"name":"Events","className":"pt-icon-timeline-events","tags":"calendar, timeframe, agenda, diary, day, week, month","group":"interface","content":"\\e61e"},{"name":"Line chart","className":"pt-icon-timeline-line-chart","tags":"graph, line, chart","group":"data","content":"\\e61f"},{"name":"Bar chart","className":"pt-icon-timeline-bar-chart","tags":"graph, bar, chart","group":"data","content":"\\e620"},{"name":"Applications","className":"pt-icon-applications","tags":"application, browser, windows, platforms","group":"interface","content":"\\e621"},{"name":"Projects","className":"pt-icon-projects","tags":"drawer, sections","group":"interface","content":"\\e622"},{"name":"Changes","className":"pt-icon-changes","tags":"arrows, direction, switch","group":"action","content":"\\e623"},{"name":"Notifications","className":"pt-icon-notifications","tags":"notifications, bell, alarm, notice, warning","group":"interface","content":"\\e624"},{"name":"Lock","className":"pt-icon-lock","tags":"lock, engage, connect, join, close","group":"action","content":"\\e625"},{"name":"Unlock","className":"pt-icon-unlock","tags":"unlock, disengage, disconnect, separate, open","group":"action","content":"\\e626"},{"name":"User","className":"pt-icon-user","tags":"person, human, male, female, character, customer, individual","group":"interface","content":"\\e627"},{"name":"Search template","className":"pt-icon-search-template","tags":"search, text, magnifying glass","group":"action","content":"\\e628"},{"name":"Inbox","className":"pt-icon-inbox","tags":"folder, mail, file, message","group":"file","content":"\\e629"},{"name":"More","className":"pt-icon-more","tags":"dots, three, extra, new, options","group":"interface","content":"\\e62a"},{"name":"Help","className":"pt-icon-help","tags":"question mark, aid, advice, circle","group":"action","content":"\\003F"},{"name":"Calendar","className":"pt-icon-calendar","tags":"calendar, timeframe, agenda, diary, day, week, month","group":"interface","content":"\\e62b"},{"name":"Media","className":"pt-icon-media","tags":"audio, video, media, picture, image, drawing, illustration","group":"media","content":"\\e62c"},{"name":"Link","className":"pt-icon-link","tags":"link, connection, network","group":"interface","content":"\\e62d"},{"name":"Share","className":"pt-icon-share","tags":"share, square, arrow","group":"action","content":"\\e62e"},{"name":"Download","className":"pt-icon-download","tags":"circle, arrow, down, downloading","group":"action","content":"\\e62f"},{"name":"Document","className":"pt-icon-document","tags":"document, paper, page, file","group":"file","content":"\\e630"},{"name":"Properties","className":"pt-icon-properties","tags":"lines, dots, three, list","group":"interface","content":"\\e631"},{"name":"Import","className":"pt-icon-import","tags":"arrow, down, importing,","group":"action","content":"\\e632"},{"name":"Export","className":"pt-icon-export","tags":"arrow, up, exporting","group":"action","content":"\\e633"},{"name":"Minimize","className":"pt-icon-minimize","tags":"arrows, decrease, smaller","group":"action","content":"\\e634"},{"name":"Maximize","className":"pt-icon-maximize","tags":"arrows, increase, bigger","group":"action","content":"\\e635"},{"name":"Tick","className":"pt-icon-tick","tags":"mark, sign, ok, approved, success","group":"action","content":"\\2713"},{"name":"Cross","className":"pt-icon-cross","tags":"cross mark, fail, delete, no, close, remove","group":"action","content":"\\2717"},{"name":"Plus","className":"pt-icon-plus","tags":"sign, add, maximize, zoom in","group":"action","content":"\\002b"},{"name":"Minus","className":"pt-icon-minus","tags":"sign, remove, minimize, zoom out","group":"action","content":"\\2212"},{"name":"Arrow: left","className":"pt-icon-arrow-left","tags":"arrow, direction, left","group":"interface","content":"\\2190"},{"name":"Arrow: right","className":"pt-icon-arrow-right","tags":"arrow, direction, right","group":"interface","content":"\\2192"},{"name":"Exchange","className":"pt-icon-exchange","tags":"arrows, direction, exchange, network, swap, transfer, transaction","group":"action","content":"\\e636"},{"name":"Comparison","className":"pt-icon-comparison","tags":"comparison, analogy, layout, contrast","group":"action","content":"\\e637"},{"name":"List","className":"pt-icon-list","tags":"agenda, four lines, table","group":"table","content":"\\2630"},{"name":"Filter","className":"pt-icon-filter","tags":"filtering, funnel, tube, pipe","group":"action","content":"\\e638"},{"name":"Confirm","className":"pt-icon-confirm","tags":"circle, tick, confirmation, acceptance, approval, authorization","group":"action","content":"\\e639"},{"name":"Fork","className":"pt-icon-fork","tags":"divide, split, break, arrows, direction","group":"action","content":"\\e63a"},{"name":"Trash","className":"pt-icon-trash","tags":"bin, rubbish, junk, remove, delete","group":"action","content":"\\e63b"},{"name":"Person","className":"pt-icon-person","tags":"person, human, male, female, character, customer, individual","group":"interface","content":"\\e63c"},{"name":"People","className":"pt-icon-people","tags":"people, humans, males, females, characters, customers, individuals","group":"interface","content":"\\e63d"},{"name":"Add","className":"pt-icon-add","tags":"circle, plus, symbol, join","group":"action","content":"\\e63e"},{"name":"Remove","className":"pt-icon-remove","tags":"circle, minus, symbol, remove","group":"action","content":"\\e63f"},{"name":"Geolocation","className":"pt-icon-geolocation","tags":"geography, location, position, map, direction","group":"interface","content":"\\e640"},{"name":"Zoom in","className":"pt-icon-zoom-in","tags":"search, magnifying glass, plus","group":"action","content":"\\e641"},{"name":"Zoom out","className":"pt-icon-zoom-out","tags":"search, magnifying glass, minus","group":"action","content":"\\e642"},{"name":"Refresh","className":"pt-icon-refresh","tags":"circle, arrows, rotation","group":"action","content":"\\e643"},{"name":"Delete","className":"pt-icon-delete","tags":"circle, remove, cross","group":"action","content":"\\e644"},{"name":"Cog","className":"pt-icon-cog","tags":"settings, circle,","group":"interface","content":"\\e645"},{"name":"Flag","className":"pt-icon-flag","tags":"map, position, country, nationality","group":"interface","content":"\\2691"},{"name":"Pin","className":"pt-icon-pin","tags":"map, position, safety pin, attach","group":"action","content":"\\e646"},{"name":"Warning","className":"pt-icon-warning-sign","tags":"notification, warning, triangle, exclamation mark, sign","group":"interface","content":"\\e647"},{"name":"Error","className":"pt-icon-error","tags":"notification, failure, circle, exclamation mark, sign","group":"interface","content":"\\e648"},{"name":"Info","className":"pt-icon-info-sign","tags":"notification, information, circle, message, sign","group":"interface","content":"\\2139"},{"name":"Credit card","className":"pt-icon-credit-card","tags":"payment, bank, transaction","group":"action","content":"\\e649"},{"name":"Edit","className":"pt-icon-edit","tags":"annotate, pen, modify","group":"action","content":"\\270E"},{"name":"History","className":"pt-icon-history","tags":"past, reverse, circle, arrow","group":"action","content":"\\e64a"},{"name":"Search","className":"pt-icon-search","tags":"inspection, exploration, magnifying glass","group":"action","content":"\\e64b"},{"name":"Logout","className":"pt-icon-log-out","tags":"arrow, leave","group":"action","content":"\\e64c"},{"name":"Star: filled","className":"pt-icon-star","tags":"shape, pin, mark, pro","group":"interface","content":"\\2605"},{"name":"Star: empty","className":"pt-icon-star-empty","tags":"shape, unpin, mark","group":"interface","content":"\\2606"},{"name":"Sort: alphabetical","className":"pt-icon-sort-alphabetical","tags":"ascending, array, arrange","group":"action","content":"\\e64d"},{"name":"Sort: numerical","className":"pt-icon-sort-numerical","tags":"ascending, array, arrange","group":"action","content":"\\e64e"},{"name":"Sort","className":"pt-icon-sort","tags":"ascending, array, arrange","group":"action","content":"\\e64f"},{"name":"Folder: opened","className":"pt-icon-folder-open","tags":"file, portfolio, case","group":"file","content":"\\e651"},{"name":"Folder: closed","className":"pt-icon-folder-close","tags":"file, portfolio, case","group":"file","content":"\\e652"},{"name":"Folder: shared","className":"pt-icon-folder-shared","tags":"file, portfolio, case","group":"file","content":"\\e653"},{"name":"Caret: up","className":"pt-icon-caret-up","tags":"direction, order, up","group":"interface","content":"\\2303"},{"name":"Caret: right","className":"pt-icon-caret-right","tags":"direction, order, right","group":"interface","content":"\\232A"},{"name":"Caret: down","className":"pt-icon-caret-down","tags":"direction, order, down","group":"interface","content":"\\2304"},{"name":"Caret: left","className":"pt-icon-caret-left","tags":"direction, order, left","group":"interface","content":"\\2329"},{"name":"Menu: opened","className":"pt-icon-menu-open","tags":"show, navigation","group":"interface","content":"\\e654"},{"name":"Menu: closed","className":"pt-icon-menu-closed","tags":"hide, navigation","group":"interface","content":"\\e655"},{"name":"Feed","className":"pt-icon-feed","tags":"rss, feed","group":"interface","content":"\\e656"},{"name":"Two columns","className":"pt-icon-two-columns","tags":"layout, columns, switch, change, two","group":"action","content":"\\e657"},{"name":"One column","className":"pt-icon-one-column","tags":"layout, columns, switch, change, one","group":"action","content":"\\e658"},{"name":"Dot","className":"pt-icon-dot","tags":"point, circle, small","group":"miscellaneous","content":"\\2022"},{"name":"Property","className":"pt-icon-property","tags":"list, order","group":"interface","content":"\\e65a"},{"name":"Time","className":"pt-icon-time","tags":"clock, day, hours, minutes, seconds","group":"interface","content":"\\23F2"},{"name":"Disable","className":"pt-icon-disable","tags":"off, circle, remove","group":"action","content":"\\e600"},{"name":"Unpin","className":"pt-icon-unpin","tags":"map, position, safety pin, detach","group":"action","content":"\\e650"},{"name":"Flows","className":"pt-icon-flows","tags":"arrows, direction, links","group":"data","content":"\\e659"},{"name":"New text box","className":"pt-icon-new-text-box","tags":"text box, edit, new, create","group":"action","content":"\\e65b"},{"name":"New link","className":"pt-icon-new-link","tags":"create, add, plus, links","group":"action","content":"\\e65c"},{"name":"New object","className":"pt-icon-new-object","tags":"create, add, plus, objects, circle","group":"action","content":"\\e65d"},{"name":"Path search","className":"pt-icon-path-search","tags":"map, magnifying glass, position, location","group":"action","content":"\\e65e"},{"name":"Automatic updates","className":"pt-icon-automatic-updates","tags":"circle, arrows, tick, amends, updates","group":"action","content":"\\e65f"},{"name":"Page layout","className":"pt-icon-page-layout","tags":"browser, table, design, columns","group":"table","content":"\\e660"},{"name":"Code","className":"pt-icon-code","tags":"code, markup, language, tag","group":"action","content":"\\e661"},{"name":"Map","className":"pt-icon-map","tags":"map, location, position, geography, world","group":"interface","content":"\\e662"},{"name":"Search text","className":"pt-icon-search-text","tags":"magnifying glass, exploration","group":"action","content":"\\e663"},{"name":"Envelope","className":"pt-icon-envelope","tags":"post, mail, send, email","group":"interface","content":"\\2709"},{"name":"Paperclip","className":"pt-icon-paperclip","tags":"attachments, add","group":"action","content":"\\e664"},{"name":"Label","className":"pt-icon-label","tags":"text, tag, ticket","group":"interface","content":"\\e665"},{"name":"Globe","className":"pt-icon-globe","tags":"planet, earth, map, location, geography, world","group":"miscellaneous","content":"\\e666"},{"name":"Home","className":"pt-icon-home","tags":"house, building, destination","group":"miscellaneous","content":"\\2302"},{"name":"Table","className":"pt-icon-th","tags":"index, rows, columns, agenda, list, spreadsheet","group":"table","content":"\\e667"},{"name":"Table: list","className":"pt-icon-th-list","tags":"index, rows, list, order, series","group":"table","content":"\\e668"},{"name":"Table: derived","className":"pt-icon-th-derived","tags":"get, obtain, take, acquire, index, rows, columns, list","group":"table","content":"\\e669"},{"name":"Radial","className":"pt-icon-circle","tags":"circle, empty, area, radius, selection","group":"action","content":"\\e66a"},{"name":"Draw","className":"pt-icon-draw","tags":"selection, area, highlight, sketch","group":"action","content":"\\e66b"},{"name":"Insert","className":"pt-icon-insert","tags":"square, plus, add, embed, include, inject","group":"action","content":"\\e66c"},{"name":"Helper management","className":"pt-icon-helper-management","tags":"square, widget","group":"interface","content":"\\e66d"},{"name":"Send to","className":"pt-icon-send-to","tags":"circle, export, arrow","group":"action","content":"\\e66e"},{"name":"Eye","className":"pt-icon-eye-open","tags":"show, visible, clear, view, vision","group":"interface","content":"\\e66f"},{"name":"Folder: shared open","className":"pt-icon-folder-shared-open","tags":"file, portfolio, case","group":"file","content":"\\e670"},{"name":"Social media","className":"pt-icon-social-media","tags":"circle, rotate, share","group":"action","content":"\\e671"},{"name":"Arrow: up","className":"pt-icon-arrow-up","tags":"direction, north","group":"interface","content":"\\2191 "},{"name":"Arrow: down","className":"pt-icon-arrow-down","tags":"direction, south","group":"interface","content":"\\2193 "},{"name":"Arrows: horizontal","className":"pt-icon-arrows-horizontal","tags":"direction, level","group":"interface","content":"\\2194 "},{"name":"Arrows: vertical","className":"pt-icon-arrows-vertical","tags":"direction, level","group":"interface","content":"\\2195 "},{"name":"Resolve","className":"pt-icon-resolve","tags":"circles, divide, split","group":"action","content":"\\e672"},{"name":"Graph","className":"pt-icon-graph","tags":"graph, diagram","group":"data","content":"\\e673"},{"name":"Briefcase","className":"pt-icon-briefcase","tags":"suitcase, business, case, baggage,","group":"miscellaneous","content":"\\e674"},{"name":"Dollar","className":"pt-icon-dollar","tags":"currency, money","group":"miscellaneous","content":"\\0024"},{"name":"Ninja","className":"pt-icon-ninja","tags":"star, fighter, symbol","group":"miscellaneous","content":"\\e675"},{"name":"Delta","className":"pt-icon-delta","tags":"alt j, symbol","group":"miscellaneous","content":"\\0394"},{"name":"Barcode","className":"pt-icon-barcode","tags":"product, scan,","group":"miscellaneous","content":"\\e676"},{"name":"Torch","className":"pt-icon-torch","tags":"light, flashlight, tool","group":"miscellaneous","content":"\\e677"},{"name":"Widget","className":"pt-icon-widget","tags":"square, corners","group":"interface","content":"\\e678"},{"name":"Unresolve","className":"pt-icon-unresolve","tags":"split, divide, disconnect, separate","group":"action","content":"\\e679"},{"name":"Offline","className":"pt-icon-offline","tags":"circle, lightning, disconnected, down","group":"interface","content":"\\e67a"},{"name":"Zoom to fit","className":"pt-icon-zoom-to-fit","tags":"fit, scale, resize, adjust","group":"action","content":"\\e67b"},{"name":"Add to artifact","className":"pt-icon-add-to-artifact","tags":"list, plus","group":"action","content":"\\e67c"},{"name":"Map marker","className":"pt-icon-map-marker","tags":"pin, map, location, position, geography, world","group":"interface","content":"\\e67d"},{"name":"Chart","className":"pt-icon-chart","tags":"arrow, increase, up, line, bar, graph","group":"data","content":"\\e67e"},{"name":"Control","className":"pt-icon-control","tags":"squares, layout","group":"interface","content":"\\e67f"},{"name":"Multi select","className":"pt-icon-multi-select","tags":"layers, selection","group":"interface","content":"\\e680"},{"name":"Direction: left","className":"pt-icon-direction-left","tags":"pointer, west","group":"interface","content":"\\e681"},{"name":"Direction: right","className":"pt-icon-direction-right","tags":"pointer, east","group":"interface","content":"\\e682"},{"name":"Database","className":"pt-icon-database","tags":"stack, storage","group":"data","content":"\\e683"},{"name":"Pie chart","className":"pt-icon-pie-chart","tags":"circle, part, section","group":"data","content":"\\e684"},{"name":"Full circle","className":"pt-icon-full-circle","tags":"dot, point","group":"miscellaneous","content":"\\e685"},{"name":"Square","className":"pt-icon-square","tags":"empty, outline","group":"miscellaneous","content":"\\e686"},{"name":"Print","className":"pt-icon-print","tags":"printer, paper","group":"action","content":"\\2399"},{"name":"Presentation","className":"pt-icon-presentation","tags":"display, presentation","group":"interface","content":"\\e687"},{"name":"Ungroup objects","className":"pt-icon-ungroup-objects","tags":"split, divide, disconnect, separate","group":"action","content":"\\e688"},{"name":"Chat","className":"pt-icon-chat","tags":"speech, conversation, communication, talk","group":"action","content":"\\e689"},{"name":"Comment","className":"pt-icon-comment","tags":"statement, discussion, opinion, view","group":"action","content":"\\e68a"},{"name":"Circle arrow: right","className":"pt-icon-circle-arrow-right","tags":"direction, east","group":"interface","content":"\\e68b"},{"name":"Circle arrow: left","className":"pt-icon-circle-arrow-left","tags":"direction, west","group":"interface","content":"\\e68c"},{"name":"Circle arrow: up","className":"pt-icon-circle-arrow-up","tags":"direction, north","group":"interface","content":"\\e68d"},{"name":"Circle arrow: down","className":"pt-icon-circle-arrow-down","tags":"direction, south","group":"interface","content":"\\e68e"},{"name":"Upload","className":"pt-icon-upload","tags":"arrow, circle, up, transfer","group":"action","content":"\\e68f"},{"name":"Asterisk","className":"pt-icon-asterisk","tags":"note, symbol, starred, marked","group":"miscellaneous","content":"\\002a"},{"name":"Cloud","className":"pt-icon-cloud","tags":"file, storage, weather","group":"file","content":"\\2601"},{"name":"Cloud: download","className":"pt-icon-cloud-download","tags":"file, storage, transfer","group":"file","content":"\\e690"},{"name":"Cloud: upload","className":"pt-icon-cloud-upload","tags":"file, storage, transfer","group":"file","content":"\\e691"},{"name":"Repeat","className":"pt-icon-repeat","tags":"circle, arrow","group":"action","content":"\\e692"},{"name":"Move","className":"pt-icon-move","tags":"arrows, directions, position, location","group":"action","content":"\\e693"},{"name":"Chevron: left","className":"pt-icon-chevron-left","tags":"arrow, direction","group":"interface","content":"\\e694"},{"name":"Chevron: right","className":"pt-icon-chevron-right","tags":"arrow, direction","group":"interface","content":"\\e695"},{"name":"Chevron: up","className":"pt-icon-chevron-up","tags":"arrow, direction","group":"interface","content":"\\e696"},{"name":"Chevron: down","className":"pt-icon-chevron-down","tags":"arrow, direction","group":"interface","content":"\\e697"},{"name":"Random","className":"pt-icon-random","tags":"arrows, aim","group":"interface","content":"\\e698"},{"name":"Fullscreen","className":"pt-icon-fullscreen","tags":"size, arrows, increase, proportion, width, height","group":"media","content":"\\e699"},{"name":"Login","className":"pt-icon-log-in","tags":"arrow, sign in","group":"action","content":"\\e69a"},{"name":"Heart","className":"pt-icon-heart","tags":"love, like, organ, human, feelings","group":"miscellaneous","content":"\\2665"},{"name":"Office","className":"pt-icon-office","tags":"building, business, location, street","group":"miscellaneous","content":"\\e69b"},{"name":"Duplicate","className":"pt-icon-duplicate","tags":"copy, square, two","group":"action","content":"\\e69c"},{"name":"Ban circle","className":"pt-icon-ban-circle","tags":"circle, refusal","group":"action","content":"\\e69d"},{"name":"Camera","className":"pt-icon-camera","tags":"photograph, picture, video","group":"media","content":"\\e69e"},{"name":"Mobile video","className":"pt-icon-mobile-video","tags":"film, broadcast, television","group":"media","content":"\\e69f"},{"name":"Video","className":"pt-icon-video","tags":"film, broadcast, television","group":"media","content":"\\e6a0"},{"name":"Film","className":"pt-icon-film","tags":"movie, cinema, theatre","group":"media","content":"\\e6a1"},{"name":"Settings","className":"pt-icon-settings","tags":"controls, knobs","group":"media","content":"\\e6a2"},{"name":"Volume: off","className":"pt-icon-volume-off","tags":"audio, video, speaker, music, sound, low","group":"media","content":"\\e6a3"},{"name":"Volume: down","className":"pt-icon-volume-down","tags":"audio, video, speaker, music, sound","group":"media","content":"\\e6a4"},{"name":"Volume: up","className":"pt-icon-volume-up","tags":"audio, video, speaker, music, sound, high","group":"media","content":"\\e6a5"},{"name":"Music","className":"pt-icon-music","tags":"audio, video, note, sound","group":"media","content":"\\e6a6"},{"name":"Step backward","className":"pt-icon-step-backward","tags":"player, media, controls, digital, analogue, film, audio, video","group":"media","content":"\\e6a7"},{"name":"Fast backward","className":"pt-icon-fast-backward","tags":"player, media, controls, digital, analogue, film, audio, video","group":"media","content":"\\e6a8"},{"name":"Pause","className":"pt-icon-pause","tags":"player, media, controls, digital, analogue, film, audio, video","group":"media","content":"\\e6a9"},{"name":"Stop","className":"pt-icon-stop","tags":"player, media, controls, digital, analogue, film, audio, video","group":"media","content":"\\e6aa"},{"name":"Play","className":"pt-icon-play","tags":"player, media, controls, digital, analogue, film, audio, video","group":"media","content":"\\e6ab"},{"name":"Fast forward","className":"pt-icon-fast-forward","tags":"player, media, controls, digital, analogue, film, audio, video","group":"media","content":"\\e6ac"},{"name":"Step forward","className":"pt-icon-step-forward","tags":"player, media, controls, digital, analogue, film, audio, video","group":"media","content":"\\e6ad"},{"name":"Eject","className":"pt-icon-eject","tags":"player, media, controls, digital, analogue, film, audio, video","group":"media","content":"\\23cf"},{"name":"Record","className":"pt-icon-record","tags":"player, media, controls, digital, analogue, film, audio, video","group":"media","content":"\\e6ae"},{"name":"Desktop","className":"pt-icon-desktop","tags":"screen, monitor, display","group":"media","content":"\\e6af"},{"name":"Phone","className":"pt-icon-phone","tags":"telephone, call, ring","group":"media","content":"\\260e"},{"name":"Lightbulb","className":"pt-icon-lightbulb","tags":"idea, glow, lamp","group":"miscellaneous","content":"\\e6b0"},{"name":"Glass","className":"pt-icon-glass","tags":"glassware, drink","group":"miscellaneous","content":"\\e6b1"},{"name":"Tint","className":"pt-icon-tint","tags":"drop, color, coloration, hue","group":"media","content":"\\e6b2"},{"name":"Flash","className":"pt-icon-flash","tags":"light, contrast, photograph, picture","group":"media","content":"\\e6b3"},{"name":"Font","className":"pt-icon-font","tags":"scale, typography, size","group":"editor","content":"\\e6b4"},{"name":"Header","className":"pt-icon-header","tags":"typography, section, layout","group":"editor","content":"\\e6b5"},{"name":"Saved","className":"pt-icon-saved","tags":"document, check mark, tick","group":"file","content":"\\e6b6"},{"name":"Floppy disk","className":"pt-icon-floppy-disk","tags":"save","group":"interface","content":"\\e6b7"},{"name":"Book","className":"pt-icon-book","tags":"pages, album, brochure, manual","group":"miscellaneous","content":"\\e6b8"},{"name":"Hand: right","className":"pt-icon-hand-right","tags":"gesture, direction","group":"interface","content":"\\e6b9"},{"name":"Hand: up","className":"pt-icon-hand-up","tags":"gesture, direction","group":"interface","content":"\\e6ba"},{"name":"Hand: down","className":"pt-icon-hand-down","tags":"gesture, direction","group":"interface","content":"\\e6bb"},{"name":"Hand: left","className":"pt-icon-hand-left","tags":"gesture, direction","group":"interface","content":"\\e6bc"},{"name":"Thumbs: up","className":"pt-icon-thumbs-up","tags":"hand, like, ok","group":"interface","content":"\\e6bd"},{"name":"Thumbs: down","className":"pt-icon-thumbs-down","tags":"hand, dislike, bad","group":"interface","content":"\\e6be"},{"name":"Box","className":"pt-icon-box","tags":"folder, carton, pack","group":"file","content":"\\e6bf"},{"name":"Compressed","className":"pt-icon-compressed","tags":"folder, carton, pack, shrink, wrap, shorten","group":"file","content":"\\e6c0"},{"name":"Shopping cart","className":"pt-icon-shopping-cart","tags":"trolley, mall, online, store, business","group":"miscellaneous","content":"\\e6c1"},{"name":"Shop","className":"pt-icon-shop","tags":"store, business, shopping","group":"miscellaneous","content":"\\e6c2"},{"name":"Layout: linear","className":"pt-icon-layout-linear","tags":"dots, connection, line","group":"data","content":"\\e6c3"},{"name":"Undo","className":"pt-icon-undo","tags":"back, cancel, reverse, revoke,","group":"action","content":"\\238c"},{"name":"Redo","className":"pt-icon-redo","tags":"forward, push","group":"action","content":"\\e6c4"},{"name":"Code block","className":"pt-icon-code-block","tags":"code, markup, language, tag","group":"file","content":"\\e6c5"},{"name":"Double caret: vertical","className":"pt-icon-double-caret-vertical","tags":"sort, arrow, list","group":"interface","content":"\\e6c6"},{"name":"Double caret: horizontal","className":"pt-icon-double-caret-horizontal","tags":"sort, arrow, list","group":"interface","content":"\\e6c7"},{"name":"Sort: alphabetical descending","className":"pt-icon-sort-alphabetical-desc","tags":"order, list, array, arrange","group":"action","content":"\\e6c8"},{"name":"Sort: numerical descending","className":"pt-icon-sort-numerical-desc","tags":"order, list, array, arrange","group":"action","content":"\\e6c9"},{"name":"Take action","className":"pt-icon-take-action","tags":"case, court, deal, gavel","group":"action","content":"\\e6ca"},{"name":"Contrast","className":"pt-icon-contrast","tags":"color, brightness","group":"media","content":"\\e6cb"},{"name":"Eye: off","className":"pt-icon-eye-off","tags":"visibility, hide","group":"interface","content":"\\e6cc"},{"name":"Area chart","className":"pt-icon-timeline-area-chart","tags":"graph, line, diagram","group":"data","content":"\\e6cd"},{"name":"Doughnut chart","className":"pt-icon-doughnut-chart","tags":"circle, section, part, graph","group":"data","content":"\\e6ce"},{"name":"Layer","className":"pt-icon-layer","tags":"zone, level","group":"interface","content":"\\e6cf"},{"name":"Grid","className":"pt-icon-grid","tags":"layout, arrangement","group":"data","content":"\\e6d0"},{"name":"Polygon filter","className":"pt-icon-polygon-filter","tags":"shape, form","group":"data","content":"\\e6d1"},{"name":"Add to folder","className":"pt-icon-add-to-folder","tags":"file, portfolio, case, import","group":"file","content":"\\e6d2"},{"name":"Layout: balloon","className":"pt-icon-layout-balloon","tags":"layout, presentation, arrangement, graph","group":"data","content":"\\e6d3"},{"name":"Layout: sorted clusters","className":"pt-icon-layout-sorted-clusters","tags":"layout, presentation, arrangement, graph","group":"data","content":"\\e6d4"},{"name":"Sort: ascending","className":"pt-icon-sort-asc","tags":"order, list, array, arrange","group":"action","content":"\\e6d5"},{"name":"Sort: descending","className":"pt-icon-sort-desc","tags":"order, list, array, arrange","group":"action","content":"\\e6d6"},{"name":"Small cross","className":"pt-icon-small-cross","tags":"cross mark, fail, delete, no, close, remove","group":"action","content":"\\e6d7"},{"name":"Small tick","className":"pt-icon-small-tick","tags":"mark, sign, ok, approved, success","group":"action","content":"\\e6d8"},{"name":"Power","className":"pt-icon-power","tags":"button, on, off","group":"media","content":"\\e6d9"},{"name":"Column layout","className":"pt-icon-column-layout","tags":"layout, arrangement","group":"table","content":"\\e6da"},{"name":"Arrow: top left","className":"pt-icon-arrow-top-left","tags":"direction, north west","group":"interface","content":"\\2196"},{"name":"Arrow: top right","className":"pt-icon-arrow-top-right","tags":"direction, north east","group":"interface","content":"\\2197"},{"name":"Arrow: bottom right","className":"pt-icon-arrow-bottom-right","tags":"direction, south east","group":"interface","content":"\\2198"},{"name":"Arrow: bottom left","className":"pt-icon-arrow-bottom-left","tags":"direction, south west","group":"interface","content":"\\2199"},{"name":"Mugshot","className":"pt-icon-mugshot","tags":"person, photograph, picture,","group":"interface","content":"\\e6db"},{"name":"Headset","className":"pt-icon-headset","tags":"headphones, call, communication","group":"media","content":"\\e6dc"},{"name":"Text highlight","className":"pt-icon-text-highlight","tags":"selector, content","group":"editor","content":"\\e6dd"},{"name":"Hand","className":"pt-icon-hand","tags":"gesture, fingers","group":"interface","content":"\\e6de"},{"name":"Chevron: backward","className":"pt-icon-chevron-backward","tags":"skip, direction","group":"interface","content":"\\e6df"},{"name":"Chevron: forward","className":"pt-icon-chevron-forward","tags":"skip, direction","group":"interface","content":"\\e6e0"},{"name":"Rotate: document","className":"pt-icon-rotate-document","tags":"turn, anti clockwise","group":"editor","content":"\\e6e1"},{"name":"Rotate: page","className":"pt-icon-rotate-page","tags":"turn, anti clockwise","group":"editor","content":"\\e6e2"},{"name":"Badge","className":"pt-icon-badge","tags":"emblem, symbol, identification, insignia, marker","group":"miscellaneous","content":"\\e6e3"},{"name":"Grid view","className":"pt-icon-grid-view","tags":"layout, arrangement","group":"editor","content":"\\e6e4"},{"name":"Function","className":"pt-icon-function","tags":"math, calculation","group":"table","content":"\\e6e5"},{"name":"Waterfall chart","className":"pt-icon-waterfall-chart","tags":"graph, diagram","group":"data","content":"\\e6e6"},{"name":"Stacked chart","className":"pt-icon-stacked-chart","tags":"bar chart","group":"data","content":"\\e6e7"},{"name":"Pulse","className":"pt-icon-pulse","tags":"medical, life, heartbeat, hospital","group":"miscellaneous","content":"\\e6e8"},{"name":"New person","className":"pt-icon-new-person","tags":"person, human, male, female, character, customer, individual, add","group":"interface","content":"\\e6e9"},{"name":"Exclude row","className":"pt-icon-exclude-row","tags":"delete, remove, table","group":"table","content":"\\e6ea"},{"name":"Pivot table","className":"pt-icon-pivot-table","tags":"rotate, axis","group":"table","content":"\\e6eb"},{"name":"Segmented control","className":"pt-icon-segmented-control","tags":"button, switch, option","group":"interface","content":"\\e6ec"},{"name":"Highlight","className":"pt-icon-highlight","tags":"select, text","group":"action","content":"\\e6ed"},{"name":"Filter: list","className":"pt-icon-filter-list","tags":"filtering, funnel, tube, pipe","group":"action","content":"\\e6ee"},{"name":"Cut","className":"pt-icon-cut","tags":"scissors","group":"action","content":"\\e6ef"},{"name":"Annotation","className":"pt-icon-annotation","tags":"note, comment, edit,","group":"editor","content":"\\e6f0"},{"name":"Pivot","className":"pt-icon-pivot","tags":"rotate, axis","group":"action","content":"\\e6f1"},{"name":"Ring","className":"pt-icon-ring","tags":"empty, circle, selection","group":"miscellaneous","content":"\\e6f2"},{"name":"Heat grid","className":"pt-icon-heat-grid","tags":"chart","group":"data","content":"\\e6f3"},{"name":"Gantt chart","className":"pt-icon-gantt-chart","tags":"bar chart, schedule, project","group":"data","content":"\\e6f4"},{"name":"Variable","className":"pt-icon-variable","tags":"math, calculation","group":"table","content":"\\e6f5"},{"name":"Manual","className":"pt-icon-manual","tags":"guide, instruction","group":"interface","content":"\\e6f6"},{"name":"Add row: top","className":"pt-icon-add-row-top","tags":"table, attach, join","group":"table","content":"\\e6f7"},{"name":"Add row: bottom","className":"pt-icon-add-row-bottom","tags":"table, attach, join","group":"table","content":"\\e6f8"},{"name":"Add column: left","className":"pt-icon-add-column-left","tags":"table, attach, join","group":"table","content":"\\e6f9"},{"name":"Add column: right","className":"pt-icon-add-column-right","tags":"table, attach, join","group":"table","content":"\\e6fa"},{"name":"Remove row: top","className":"pt-icon-remove-row-top","tags":"table, detach, delete","group":"table","content":"\\e6fb"},{"name":"Remove row: bottom","className":"pt-icon-remove-row-bottom","tags":"table, detach, delete","group":"table","content":"\\e6fc"},{"name":"Remove column: left","className":"pt-icon-remove-column-left","tags":"table, detach, delete","group":"table","content":"\\e6fd"},{"name":"Remove column: right","className":"pt-icon-remove-column-right","tags":"table, detach, delete","group":"table","content":"\\e6fe"},{"name":"Double chevron: left","className":"pt-icon-double-chevron-left","tags":"arrows, multiple, direction","group":"interface","content":"\\e6ff"},{"name":"Double chevron: right","className":"pt-icon-double-chevron-right","tags":"arrows, multiple, direction","group":"interface","content":"\\e701"},{"name":"Double chevron: up","className":"pt-icon-double-chevron-up","tags":"arrows, multiple, direction","group":"interface","content":"\\e702"},{"name":"Double chevron: down","className":"pt-icon-double-chevron-down","tags":"arrows, multiple, direction","group":"interface","content":"\\e703"},{"name":"Key: control","className":"pt-icon-key-control","tags":"interface, shortcuts, buttons","group":"media","content":"\\e704"},{"name":"Key: command","className":"pt-icon-key-command","tags":"interface, shortcuts, buttons","group":"media","content":"\\e705"},{"name":"Key: shift","className":"pt-icon-key-shift","tags":"interface, shortcuts, buttons","group":"media","content":"\\e706"},{"name":"Key: backspace","className":"pt-icon-key-backspace","tags":"interface, shortcuts, buttons","group":"media","content":"\\e707"},{"name":"Key: delete","className":"pt-icon-key-delete","tags":"interface, shortcuts, buttons","group":"media","content":"\\e708"},{"name":"Key: escape","className":"pt-icon-key-escape","tags":"interface, shortcuts, buttons","group":"media","content":"\\e709"},{"name":"Key: enter","className":"pt-icon-key-enter","tags":"interface, shortcuts, buttons","group":"media","content":"\\e70a"},{"name":"Calculator","className":"pt-icon-calculator","tags":"math, device, value, numbers, total","group":"miscellaneous","content":"\\e70b"},{"name":"Horizontal bar chart","className":"pt-icon-horizontal-bar-chart","tags":"graph, diagram","group":"data","content":"\\e70c"},{"name":"Small plus","className":"pt-icon-small-plus","tags":"sign, add, maximize, zoom in","group":"action","content":"\\e70d"},{"name":"Small minus","className":"pt-icon-small-minus","tags":"sign, remove, minimize, zoom out","group":"action","content":"\\e70e"},{"name":"Step chart","className":"pt-icon-step-chart","tags":"graph, diagram","group":"data","content":"\\e70f"},{"name":"Euro","className":"pt-icon-euro","tags":"currency, money","group":"miscellaneous","content":"\\20ac"},{"name":"Drag handle: vertical","className":"pt-icon-drag-handle-vertical","tags":"move, pull","group":"action","content":"\\e715"},{"name":"Drag handle: horizontal","className":"pt-icon-drag-handle-horizontal","tags":"move, pull","group":"action","content":"\\e716"},{"name":"Mobile phone","className":"pt-icon-mobile-phone","tags":"cellular, device, call","group":"media","content":"\\e717"},{"name":"Sim card","className":"pt-icon-sim-card","tags":"phone, cellular","group":"media","content":"\\e718"},{"name":"Trending: up","className":"pt-icon-trending-up","tags":"growth, incline, progress","group":"data","content":"\\e719"},{"name":"Trending: down","className":"pt-icon-trending-down","tags":"decrease, decline, loss","group":"data","content":"\\e71a"},{"name":"Curved range chart","className":"pt-icon-curved-range-chart","tags":"graph, diagram","group":"data","content":"\\e71b"},{"name":"Vertical bar chart: descending","className":"pt-icon-vertical-bar-chart-desc","tags":"graph, bar, histogram","group":"data","content":"\\e71c"},{"name":"Horizontal bar chart: descending","className":"pt-icon-horizontal-bar-chart-desc","tags":"graph, bar, histogram","group":"data","content":"\\e71d"},{"name":"Document: open","className":"pt-icon-document-open","tags":"paper, access","group":"file","content":"\\e71e"},{"name":"Document: share","className":"pt-icon-document-share","tags":"paper, send","group":"file","content":"\\e71f"},{"name":"Distribution: horizontal","className":"pt-icon-horizontal-distribution","tags":"alignment, layout, position","group":"editor","content":"\\e720"},{"name":"Distribution: vertical","className":"pt-icon-vertical-distribution","tags":"alignment, layout, position","group":"editor","content":"\\e721"},{"name":"Alignment: left","className":"pt-icon-alignment-left","tags":"layout, position","group":"editor","content":"\\e722"},{"name":"Alignment: vertical center","className":"pt-icon-alignment-vertical-center","tags":"layout, position","group":"editor","content":"\\e723"},{"name":"Alignment: right","className":"pt-icon-alignment-right","tags":"layout, position","group":"editor","content":"\\e724"},{"name":"Alignment: top","className":"pt-icon-alignment-top","tags":"layout, position","group":"editor","content":"\\e725"},{"name":"Alignment: horizontal center","className":"pt-icon-alignment-horizontal-center","tags":"layout, position","group":"editor","content":"\\e726"},{"name":"Alignment: bottom","className":"pt-icon-alignment-bottom","tags":"layout, position","group":"editor","content":"\\e727"},{"name":"Git: pull","className":"pt-icon-git-pull","tags":"github, repository, code, command","group":"action","content":"\\e728"},{"name":"Git: merge","className":"pt-icon-git-merge","tags":"github, repository, code, command","group":"action","content":"\\e729"},{"name":"Git: branch","className":"pt-icon-git-branch","tags":"github, repository, code, command","group":"action","content":"\\e72a"},{"name":"Git: commit","className":"pt-icon-git-commit","tags":"github, repository, code, command","group":"action","content":"\\e72b"},{"name":"Git: push","className":"pt-icon-git-push","tags":"github, repository, code, command","group":"action","content":"\\e72c"},{"name":"Build","className":"pt-icon-build","tags":"hammer, tool","group":"action","content":"\\e72d"},{"name":"Symbol: circle","className":"pt-icon-symbol-circle","tags":"shape, figure","group":"interface","content":"\\e72e"},{"name":"Symbol: square","className":"pt-icon-symbol-square","tags":"shape, figure","group":"interface","content":"\\e72f"},{"name":"Symbol: diamond","className":"pt-icon-symbol-diamond","tags":"shape, figure","group":"interface","content":"\\e730"},{"name":"Symbol: cross","className":"pt-icon-symbol-cross","tags":"shape, figure","group":"interface","content":"\\e731"},{"name":"Symbol: triangle up","className":"pt-icon-symbol-triangle-up","tags":"shape, figure","group":"interface","content":"\\e732"},{"name":"Symbol: triangle down","className":"pt-icon-symbol-triangle-down","tags":"shape, figure","group":"interface","content":"\\e733"},{"name":"Wrench","className":"pt-icon-wrench","tags":"tool, repair","group":"miscellaneous","content":"\\e734"},{"name":"Application","className":"pt-icon-application","tags":"application, browser, windows, platform","group":"interface","content":"\\e735"},{"name":"Send to graph","className":"pt-icon-send-to-graph","tags":"transfer, move","group":"action","content":"\\e736"},{"name":"Send to map","className":"pt-icon-send-to-map","tags":"transfer, move","group":"action","content":"\\e737"},{"name":"Join table","className":"pt-icon-join-table","tags":"combine, attach, connect, link, unite","group":"table","content":"\\e738"},{"name":"Derive column","className":"pt-icon-derive-column","tags":"table, obtain, get, take, develop","group":"action","content":"\\e739"},{"name":"Rotate image: left","className":"pt-icon-image-rotate-left","tags":"picture, turn, alternate","group":"media","content":"\\e73a"},{"name":"Rotate image: right","className":"pt-icon-image-rotate-right","tags":"picture, turn, alternate","group":"media","content":"\\e73b"},{"name":"Known vehicle","className":"pt-icon-known-vehicle","tags":"car, automobile, vehicle, van, drive, ride, distance, navigation, directions","group":"interface","content":"\\e73c"},{"name":"Unknown vehicle","className":"pt-icon-unknown-vehicle","tags":"car, automobile, vehicle, van, drive, ride, distance, navigation, directions","group":"interface","content":"\\e73d"},{"name":"Scatter plot","className":"pt-icon-scatter-plot","tags":"graph, diagram","group":"data","content":"\\e73e"},{"name":"Oil field","className":"pt-icon-oil-field","tags":"fuel, petroleum, gas, well, drilling, pump","group":"interface","content":"\\e73f"},{"name":"Rig","className":"pt-icon-rig","tags":"fuel, petroleum, gas, well, drilling","group":"interface","content":"\\e740"},{"name":"New map","className":"pt-icon-map-create","tags":"map, location, position, geography, world","group":"interface","content":"\\e741"},{"name":"Key: option","className":"pt-icon-key-option","tags":"interface, shortcuts, buttons","group":"media","content":"\\e742"},{"name":"List: detail view","className":"pt-icon-list-detail-view","tags":"agenda, four lines, table","group":"table","content":"\\e743"},{"name":"Swap: vertical","className":"pt-icon-swap-vertical","tags":"direction, position, opposite, inverse","group":"interface","content":"\\e744"},{"name":"Swap: horizontal","className":"pt-icon-swap-horizontal","tags":"direction, position, opposite, inverse","group":"interface","content":"\\e745"},{"name":"Numbered list","className":"pt-icon-numbered-list","tags":"order, list, array, arrange","group":"action","content":"\\e746"},{"name":"New grid item","className":"pt-icon-new-grid-item","tags":"layout, arrangement, add","group":"editor","content":"\\e747"},{"name":"Git: repo","className":"pt-icon-git-repo","tags":"github, repository, code, command","group":"action","content":"\\e748"},{"name":"Git: new branch","className":"pt-icon-git-new-branch","tags":"github, repository, code, command","group":"action","content":"\\e749"},{"name":"Manually entered data","className":"pt-icon-manually-entered-data","tags":"input, human","group":"editor","content":"\\e74a"},{"name":"Airplane","className":"pt-icon-airplane","tags":"flight, jet, travel, trip, transport, take-off","group":"interface","content":"\\e74b"},{"name":"Merge columns","className":"pt-icon-merge-columns","tags":"layout, change, two, combine, unite","group":"table","content":"\\e74f"},{"name":"Split columns","className":"pt-icon-split-columns","tags":"layout, change, two, break, divide","group":"table","content":"\\e750"},{"name":"Dashboard","className":"pt-icon-dashboard","tags":"panel, control, gauge, instrument, meter","group":"interface","content":"\\e751"},{"name":"Publish function","className":"pt-icon-publish-function","tags":"math, calculation, share","group":"table","content":"\\e752"},{"name":"Path","className":"pt-icon-path","tags":"hierarchy, trail, steps","group":"interface","content":"\\e753"},{"name":"Moon","className":"pt-icon-moon","tags":"night, sky, dark","group":"miscellaneous","content":"\\e754"},{"name":"Remove column","className":"pt-icon-remove-column","tags":"table, detach, delete","group":"table","content":"\\e755"},{"name":"Numerical","className":"pt-icon-numerical","tags":"numbers, order, sort, arrange, array","group":"action","content":"\\e756"},{"name":"Key: tab","className":"pt-icon-key-tab","tags":"interface, shortcuts, buttons","group":"media","content":"\\e757"},{"name":"Regression chart","className":"pt-icon-regression-chart","tags":"graph, line, chart","group":"data","content":"\\e758"},{"name":"Translate","className":"pt-icon-translate","tags":"language, convert","group":"action","content":"\\e759"},{"name":"Eye: on","className":"pt-icon-eye-on","tags":"visibility, show","group":"interface","content":"\\e75a"},{"name":"Vertical bar chart: ascending","className":"pt-icon-vertical-bar-chart-asc","tags":"graph, bar, histogram","group":"data","content":"\\e75b"},{"name":"Horizontal bar chart: ascending","className":"pt-icon-horizontal-bar-chart-asc","tags":"graph, bar, histogram","group":"data","content":"\\e75c"},{"name":"Grouped bar chart","className":"pt-icon-grouped-bar-chart","tags":"graph, bar, chart","group":"data","content":"\\e75d"},{"name":"Full stacked chart","className":"pt-icon-full-stacked-chart","tags":"graph, bar, chart","group":"data","content":"\\e75e"},{"name":"Endorsed","className":"pt-icon-endorsed","tags":"tick, mark, sign, ok, approved, success","group":"action","content":"\\e75f"},{"name":"Follower","className":"pt-icon-follower","tags":"person, human, male, female, character, customer, individual, social","group":"interface","content":"\\e760"},{"name":"Following","className":"pt-icon-following","tags":"person, human, male, female, character, customer, individual, social","group":"interface","content":"\\e761"},{"name":"Menu","className":"pt-icon-menu","tags":"navigation, lines, list","group":"interface","content":"\\e762"},{"name":"Collapse all","className":"pt-icon-collapse-all","tags":"arrows, chevron, reduce","group":"interface","content":"\\e763"},{"name":"Expand all","className":"pt-icon-expand-all","tags":"arrows, chevron, enlarge","group":"interface","content":"\\e764"},{"name":"Intersection","className":"pt-icon-intersection","tags":"circles, combine, cross","group":"action","content":"\\e765"},{"name":"Blocked person","className":"pt-icon-blocked-person","tags":"person, human, male, female, character, customer, individual, social, banned, prohibited","group":"interface","content":"\\e768"},{"name":"Slash","className":"pt-icon-slash","tags":"divide, separate","group":"action","content":"\\e769"},{"name":"Percentage","className":"pt-icon-percentage","tags":"modulo, modulus","group":"action","content":"\\e76a"},{"name":"Satellite","className":"pt-icon-satellite","tags":"communication, space","group":"miscellaneous","content":"\\e76b"},{"name":"Paragraph","className":"pt-icon-paragraph","tags":"text, chapter, division, part","group":"editor","content":"\\e76c"},{"name":"Bank account","className":"pt-icon-bank-account","tags":"money, finance, funds","group":"miscellaneous","content":"\\e76f"},{"name":"Cell tower","className":"pt-icon-cell-tower","tags":"signal, communication, radio, mast","group":"miscellaneous","content":"\\e770"},{"name":"ID number","className":"pt-icon-id-number","tags":"identification, person, document","group":"miscellaneous","content":"\\e771"},{"name":"IP address","className":"pt-icon-ip-address","tags":"internet, protocol, number, id, network","group":"miscellaneous","content":"\\e772"},{"name":"Eraser","className":"pt-icon-eraser","tags":"delete, remove","group":"editor","content":"\\e773"},{"name":"Issue","className":"pt-icon-issue","tags":"circle, notification, failure, circle, exclamation mark, sign, problem","group":"interface","content":"\\e774"},{"name":"Issue: new","className":"pt-icon-issue-new","tags":"circle, notification, failure, circle, exclamation mark, sign, problem","group":"interface","content":"\\e775"},{"name":"Issue: closed","className":"pt-icon-issue-closed","tags":"circle, notification, failure, circle, exclamation mark, sign, problem","group":"interface","content":"\\e776"},{"name":"Panel: stats","className":"pt-icon-panel-stats","tags":"sidebar, layout, list","group":"table","content":"\\e777"},{"name":"Panel: table","className":"pt-icon-panel-table","tags":"sidebar, layout, spreadsheet","group":"table","content":"\\e778"},{"name":"Tick circle","className":"pt-icon-tick-circle","tags":"mark, sign, ok, approved, success","group":"action","content":"\\e779"},{"name":"Prescription","className":"pt-icon-prescription","tags":"instruction, direction, medicine, drug, medication, mixture","group":"miscellaneous","content":"\\e78a"},{"name":"Prescription: new","className":"pt-icon-new-prescription","tags":"instruction, direction, medicine, drug, medication, mixture","group":"miscellaneous","content":"\\e78b"},{"name":"Filter: keep","className":"pt-icon-filter-keep","tags":"filtering, funnel, tube, pipe, retain, stay","group":"action","content":"\\e78c"},{"name":"Filter: remove","className":"pt-icon-filter-remove","tags":"filtering, funnel, tube, pipe, delete, detach, discard, dismiss","group":"action","content":"\\e78d"},{"name":"Key","className":"pt-icon-key","tags":"lock, unlock, open, security, password, access","group":"interface","content":"\\e78e"},{"name":"Feed: subscribed","className":"pt-icon-feed-subscribed","tags":"rss, feed, tick, check","group":"interface","content":"\\e78f"},{"name":"Widget: button","className":"pt-icon-widget-button","tags":"element, click, press","group":"interface","content":"\\e790"},{"name":"Widget: header","className":"pt-icon-widget-header","tags":"element, layout, top","group":"interface","content":"\\e791"},{"name":"Widget: footer","className":"pt-icon-widget-footer","tags":"element, layout, bottom","group":"interface","content":"\\e792"},{"name":"Header: one","className":"pt-icon-header-one","tags":"paragraph styling, formatting","group":"editor","content":"\\e793"},{"name":"Header: two","className":"pt-icon-header-two","tags":"paragraph styling, formatting","group":"editor","content":"\\e794"},{"name":"Form","className":"pt-icon-form","tags":"response, fill","group":"data","content":"\\e795"},{"name":"Series: add","className":"pt-icon-series-add","tags":"timeseries, plot, line, data, chart, new, create","group":"data","content":"\\e796"},{"name":"Series: search","className":"pt-icon-series-search","tags":"timeseries, plot, line, data, chart, find, filter","group":"data","content":"\\e797"},{"name":"Series: filtered","className":"pt-icon-series-filtered","tags":"timeseries, plot, line, data, chart, reduce, reduced, search","group":"data","content":"\\e798"},{"name":"Series: derived","className":"pt-icon-series-derived","tags":"timeseries, plot, line, data, chart, transform, transformed, compute, computed, modify, modified, alter, altered, adjust, adjusted","group":"data","content":"\\e799"},{"name":"Series: configuration","className":"pt-icon-series-configuration","tags":" timeseries, plot, line, data, chart, edit, modify, customize, adjust, alter, transform","group":"data","content":"\\e79a"},{"name":"Console","className":"pt-icon-console","tags":"terminal, coding","group":"interface","content":"\\e79b"},{"name":"Compass","className":"pt-icon-compass","tags":"map, direction","group":"interface","content":"\\e79c"},{"name":"Walk","className":"pt-icon-walk","tags":"transportation, run, move","group":"interface","content":"\\e79d"},{"name":"Taxi","className":"pt-icon-taxi","tags":"transportation, car, move","group":"interface","content":"\\e79e"},{"name":"Train","className":"pt-icon-train","tags":"transportation, public, move","group":"interface","content":"\\e79f"}] /***/ }), -/* 476 */ +/* 478 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = __webpack_require__(1); var React = __webpack_require__(3); - var CoreExamples = __webpack_require__(477); - var DateExamples = __webpack_require__(514); - var LabsExamples = __webpack_require__(560); - var TableExamples = __webpack_require__(591); - var blueprintDocs_1 = __webpack_require__(299); + var CoreExamples = __webpack_require__(479); + var DateExamples = __webpack_require__(516); + var LabsExamples = __webpack_require__(562); + var TableExamples = __webpack_require__(593); + var blueprintDocs_1 = __webpack_require__(301); var SRC_HREF_BASE = "https://github.com/palantir/blueprint/blob/master/packages"; exports.reactExamples = {}; function addPackageExamples(packageName, packageExamples) { @@ -62407,7 +62538,7 @@ /***/ }), -/* 477 */ +/* 479 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62415,14 +62546,12 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(478)); - __export(__webpack_require__(479)); + __export(__webpack_require__(480)); __export(__webpack_require__(481)); - __export(__webpack_require__(482)); __export(__webpack_require__(483)); __export(__webpack_require__(484)); + __export(__webpack_require__(485)); __export(__webpack_require__(486)); - __export(__webpack_require__(487)); __export(__webpack_require__(488)); __export(__webpack_require__(489)); __export(__webpack_require__(490)); @@ -62431,26 +62560,28 @@ __export(__webpack_require__(493)); __export(__webpack_require__(494)); __export(__webpack_require__(495)); - __export(__webpack_require__(485)); __export(__webpack_require__(496)); __export(__webpack_require__(497)); + __export(__webpack_require__(487)); __export(__webpack_require__(498)); __export(__webpack_require__(499)); __export(__webpack_require__(500)); __export(__webpack_require__(501)); __export(__webpack_require__(502)); - __export(__webpack_require__(506)); - __export(__webpack_require__(507)); + __export(__webpack_require__(503)); + __export(__webpack_require__(504)); __export(__webpack_require__(508)); __export(__webpack_require__(509)); __export(__webpack_require__(510)); __export(__webpack_require__(511)); __export(__webpack_require__(512)); __export(__webpack_require__(513)); + __export(__webpack_require__(514)); + __export(__webpack_require__(515)); /***/ }), -/* 478 */ +/* 480 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62504,7 +62635,7 @@ /***/ }), -/* 479 */ +/* 481 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62514,7 +62645,7 @@ var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var intentSelect_1 = __webpack_require__(480); + var intentSelect_1 = __webpack_require__(482); var ButtonsExample = (function (_super) { tslib_1.__extends(ButtonsExample, _super); function ButtonsExample() { @@ -62558,7 +62689,7 @@ React.createElement("code", null, "AnchorButton"), React.createElement("br", null), React.createElement("br", null), - React.createElement(core_1.AnchorButton, { className: classes, disabled: this.state.disabled, active: this.state.active, href: "./", iconName: "duplicate", intent: this.state.intent, loading: this.state.loading, rightIconName: "share", target: "_blank", text: "Duplicate this page" })))); + React.createElement(core_1.AnchorButton, { className: classes, disabled: this.state.disabled, active: this.state.active, href: "./#core/components/button.javascript-api", iconName: "duplicate", intent: this.state.intent, loading: this.state.loading, rightIconName: "share", target: "_blank", text: "Duplicate this page" })))); var _a; }; ButtonsExample.prototype.renderOptions = function () { @@ -62580,7 +62711,7 @@ /***/ }), -/* 480 */ +/* 482 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62601,7 +62732,7 @@ /***/ }), -/* 481 */ +/* 483 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62628,7 +62759,7 @@ /***/ }), -/* 482 */ +/* 484 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62672,7 +62803,7 @@ /***/ }), -/* 483 */ +/* 485 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62732,7 +62863,7 @@ /***/ }), -/* 484 */ +/* 486 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62740,7 +62871,7 @@ var tslib_1 = __webpack_require__(185); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var overlayExample_1 = __webpack_require__(485); + var overlayExample_1 = __webpack_require__(487); var DialogExample = (function (_super) { tslib_1.__extends(DialogExample, _super); function DialogExample() { @@ -62768,7 +62899,7 @@ /***/ }), -/* 485 */ +/* 487 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62843,7 +62974,7 @@ /***/ }), -/* 486 */ +/* 488 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62917,7 +63048,7 @@ /***/ }), -/* 487 */ +/* 489 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62950,7 +63081,7 @@ /***/ }), -/* 488 */ +/* 490 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -62960,7 +63091,7 @@ var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var intentSelect_1 = __webpack_require__(480); + var intentSelect_1 = __webpack_require__(482); var INPUT_ID = "EditableTextExample-max-length"; var EditableTextExample = (function (_super) { tslib_1.__extends(EditableTextExample, _super); @@ -63012,7 +63143,7 @@ /***/ }), -/* 489 */ +/* 491 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63058,7 +63189,7 @@ /***/ }), -/* 490 */ +/* 492 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63263,7 +63394,7 @@ /***/ }), -/* 491 */ +/* 493 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63306,7 +63437,7 @@ /***/ }), -/* 492 */ +/* 494 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63362,7 +63493,7 @@ /***/ }), -/* 493 */ +/* 495 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63372,7 +63503,7 @@ var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var intentSelect_1 = __webpack_require__(480); + var intentSelect_1 = __webpack_require__(482); var MIN_VALUES = [ { label: "None", value: null }, { label: "-10", value: -10 }, @@ -63481,7 +63612,7 @@ /***/ }), -/* 494 */ +/* 496 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63605,7 +63736,7 @@ /***/ }), -/* 495 */ +/* 497 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63632,7 +63763,7 @@ /***/ }), -/* 496 */ +/* 498 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63809,7 +63940,7 @@ /***/ }), -/* 497 */ +/* 499 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63818,7 +63949,7 @@ var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var intentSelect_1 = __webpack_require__(480); + var intentSelect_1 = __webpack_require__(482); var ProgressExample = (function (_super) { tslib_1.__extends(ProgressExample, _super); function ProgressExample() { @@ -63853,7 +63984,7 @@ /***/ }), -/* 498 */ +/* 500 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63882,7 +64013,7 @@ /***/ }), -/* 499 */ +/* 501 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63911,7 +64042,7 @@ /***/ }), -/* 500 */ +/* 502 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63956,7 +64087,7 @@ /***/ }), -/* 501 */ +/* 503 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63987,7 +64118,7 @@ /***/ }), -/* 502 */ +/* 504 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -63996,8 +64127,8 @@ var classNames = __webpack_require__(201); var React = __webpack_require__(3); var docs_1 = __webpack_require__(172); - var Classes = __webpack_require__(503); - var text_1 = __webpack_require__(505); + var Classes = __webpack_require__(505); + var text_1 = __webpack_require__(507); var TextExample = (function (_super) { tslib_1.__extends(TextExample, _super); function TextExample() { @@ -64023,12 +64154,12 @@ /***/ }), -/* 503 */ +/* 505 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var intent_1 = __webpack_require__(504); + var intent_1 = __webpack_require__(506); exports.DARK = "pt-dark"; exports.ACTIVE = "pt-active"; exports.MINIMAL = "pt-minimal"; @@ -64190,7 +64321,7 @@ /***/ }), -/* 504 */ +/* 506 */ /***/ (function(module, exports) { "use strict"; @@ -64206,7 +64337,7 @@ /***/ }), -/* 505 */ +/* 507 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64215,7 +64346,7 @@ var classNames = __webpack_require__(201); var PureRender = __webpack_require__(202); var React = __webpack_require__(3); - var Classes = __webpack_require__(503); + var Classes = __webpack_require__(505); var Text = (function (_super) { tslib_1.__extends(Text, _super); function Text() { @@ -64258,7 +64389,7 @@ /***/ }), -/* 506 */ +/* 508 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64267,7 +64398,7 @@ var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var progressExample_1 = __webpack_require__(497); + var progressExample_1 = __webpack_require__(499); var SIZES = [ { label: "Default", value: "" }, { label: "Small", value: core_1.Classes.SMALL }, @@ -64300,7 +64431,7 @@ /***/ }), -/* 507 */ +/* 509 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64352,7 +64483,7 @@ /***/ }), -/* 508 */ +/* 510 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64425,7 +64556,7 @@ /***/ }), -/* 509 */ +/* 511 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64487,7 +64618,7 @@ /***/ }), -/* 510 */ +/* 512 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64531,7 +64662,7 @@ /***/ }), -/* 511 */ +/* 513 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64669,7 +64800,7 @@ /***/ }), -/* 512 */ +/* 514 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64727,7 +64858,7 @@ /***/ }), -/* 513 */ +/* 515 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64821,7 +64952,7 @@ /***/ }), -/* 514 */ +/* 516 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -64829,27 +64960,27 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(515)); - __export(__webpack_require__(555)); - __export(__webpack_require__(556)); + __export(__webpack_require__(517)); __export(__webpack_require__(557)); __export(__webpack_require__(558)); __export(__webpack_require__(559)); + __export(__webpack_require__(560)); + __export(__webpack_require__(561)); /***/ }), -/* 515 */ +/* 517 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); var React = __webpack_require__(3); - var src_1 = __webpack_require__(517); - var formatSelect_1 = __webpack_require__(553); - var precisionSelect_1 = __webpack_require__(554); + var src_1 = __webpack_require__(519); + var formatSelect_1 = __webpack_require__(555); + var precisionSelect_1 = __webpack_require__(556); var DateInputExample = (function (_super) { tslib_1.__extends(DateInputExample, _super); function DateInputExample() { @@ -64891,7 +65022,7 @@ /***/ }), -/* 516 */ +/* 518 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global) {/*! ***************************************************************************** @@ -65107,37 +65238,37 @@ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()))) /***/ }), -/* 517 */ +/* 519 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var classes = __webpack_require__(518); - var react_day_picker_1 = __webpack_require__(519); + var classes = __webpack_require__(520); + var react_day_picker_1 = __webpack_require__(521); exports.IDatePickerLocaleUtils = react_day_picker_1.LocaleUtils; exports.Classes = classes; - var dateUtils_1 = __webpack_require__(539); + var dateUtils_1 = __webpack_require__(541); exports.DateRangeBoundary = dateUtils_1.DateRangeBoundary; - var dateInput_1 = __webpack_require__(540); + var dateInput_1 = __webpack_require__(542); exports.DateInput = dateInput_1.DateInput; - var datePicker_1 = __webpack_require__(543); + var datePicker_1 = __webpack_require__(545); exports.DatePicker = datePicker_1.DatePicker; exports.DatePickerFactory = datePicker_1.DatePickerFactory; - var dateTimePicker_1 = __webpack_require__(547); + var dateTimePicker_1 = __webpack_require__(549); exports.DateTimePicker = dateTimePicker_1.DateTimePicker; - var dateRangeInput_1 = __webpack_require__(549); + var dateRangeInput_1 = __webpack_require__(551); exports.DateRangeInput = dateRangeInput_1.DateRangeInput; - var dateRangePicker_1 = __webpack_require__(550); + var dateRangePicker_1 = __webpack_require__(552); exports.DateRangePicker = dateRangePicker_1.DateRangePicker; exports.DateRangePickerFactory = dateRangePicker_1.DateRangePickerFactory; - var timePicker_1 = __webpack_require__(548); + var timePicker_1 = __webpack_require__(550); exports.TimePicker = timePicker_1.TimePicker; exports.TimePickerFactory = timePicker_1.TimePickerFactory; exports.TimePickerPrecision = timePicker_1.TimePickerPrecision; /***/ }), -/* 518 */ +/* 520 */ /***/ (function(module, exports) { "use strict"; @@ -65173,19 +65304,19 @@ /***/ }), -/* 519 */ +/* 521 */ /***/ (function(module, exports, __webpack_require__) { /* eslint-disable no-var */ /* eslint-env node */ - var DayPicker = __webpack_require__(520); - var DateUtils = __webpack_require__(533); - var LocaleUtils = __webpack_require__(534); - var ModifiersUtils = __webpack_require__(537); - var Weekday = __webpack_require__(536); - var Navbar = __webpack_require__(528); - var PropTypes = __webpack_require__(522); + var DayPicker = __webpack_require__(522); + var DateUtils = __webpack_require__(535); + var LocaleUtils = __webpack_require__(536); + var ModifiersUtils = __webpack_require__(539); + var Weekday = __webpack_require__(538); + var Navbar = __webpack_require__(530); + var PropTypes = __webpack_require__(524); module.exports = DayPicker.default || DayPicker; module.exports.DateUtils = DateUtils.default || DateUtils; @@ -65197,7 +65328,7 @@ /***/ }), -/* 520 */ +/* 522 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -65214,51 +65345,51 @@ var _react2 = _interopRequireDefault(_react); - var _Caption = __webpack_require__(521); + var _Caption = __webpack_require__(523); var _Caption2 = _interopRequireDefault(_Caption); - var _Navbar = __webpack_require__(528); + var _Navbar = __webpack_require__(530); var _Navbar2 = _interopRequireDefault(_Navbar); - var _Month = __webpack_require__(530); + var _Month = __webpack_require__(532); var _Month2 = _interopRequireDefault(_Month); - var _Day = __webpack_require__(535); + var _Day = __webpack_require__(537); var _Day2 = _interopRequireDefault(_Day); - var _Weekday = __webpack_require__(536); + var _Weekday = __webpack_require__(538); var _Weekday2 = _interopRequireDefault(_Weekday); - var _Helpers = __webpack_require__(532); + var _Helpers = __webpack_require__(534); var Helpers = _interopRequireWildcard(_Helpers); - var _DateUtils = __webpack_require__(533); + var _DateUtils = __webpack_require__(535); var DateUtils = _interopRequireWildcard(_DateUtils); - var _LocaleUtils = __webpack_require__(534); + var _LocaleUtils = __webpack_require__(536); var LocaleUtils = _interopRequireWildcard(_LocaleUtils); - var _ModifiersUtils = __webpack_require__(537); + var _ModifiersUtils = __webpack_require__(539); var ModifiersUtils = _interopRequireWildcard(_ModifiersUtils); - var _classNames = __webpack_require__(529); + var _classNames = __webpack_require__(531); var _classNames2 = _interopRequireDefault(_classNames); - var _keys = __webpack_require__(538); + var _keys = __webpack_require__(540); var _keys2 = _interopRequireDefault(_keys); - var _PropTypes = __webpack_require__(522); + var _PropTypes = __webpack_require__(524); var _PropTypes2 = _interopRequireDefault(_PropTypes); @@ -65885,7 +66016,7 @@ /***/ }), -/* 521 */ +/* 523 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -65899,7 +66030,7 @@ var _react2 = _interopRequireDefault(_react); - var _PropTypes = __webpack_require__(522); + var _PropTypes = __webpack_require__(524); var _PropTypes2 = _interopRequireDefault(_PropTypes); @@ -65933,7 +66064,7 @@ /***/ }), -/* 522 */ +/* 524 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -65945,7 +66076,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; - var _propTypes = __webpack_require__(523); + var _propTypes = __webpack_require__(525); var _propTypes2 = _interopRequireDefault(_propTypes); @@ -65976,7 +66107,7 @@ /***/ }), -/* 523 */ +/* 525 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -66007,12 +66138,12 @@ } else { // By explicitly using `prop-types` you are opting into new production behavior. // http://fb.me/prop-types-in-prod - module.exports = __webpack_require__(524)(); + module.exports = __webpack_require__(526)(); } /***/ }), -/* 524 */ +/* 526 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -66026,9 +66157,9 @@ 'use strict'; - var emptyFunction = __webpack_require__(525); - var invariant = __webpack_require__(526); - var ReactPropTypesSecret = __webpack_require__(527); + var emptyFunction = __webpack_require__(527); + var invariant = __webpack_require__(528); + var ReactPropTypesSecret = __webpack_require__(529); module.exports = function() { function shim(props, propName, componentName, location, propFullName, secret) { @@ -66077,7 +66208,7 @@ /***/ }), -/* 525 */ +/* 527 */ /***/ (function(module, exports) { "use strict"; @@ -66120,7 +66251,7 @@ module.exports = emptyFunction; /***/ }), -/* 526 */ +/* 528 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -66180,7 +66311,7 @@ module.exports = invariant; /***/ }), -/* 527 */ +/* 529 */ /***/ (function(module, exports) { /** @@ -66200,7 +66331,7 @@ /***/ }), -/* 528 */ +/* 530 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -66215,11 +66346,11 @@ var _react2 = _interopRequireDefault(_react); - var _PropTypes = __webpack_require__(522); + var _PropTypes = __webpack_require__(524); var _PropTypes2 = _interopRequireDefault(_PropTypes); - var _classNames = __webpack_require__(529); + var _classNames = __webpack_require__(531); var _classNames2 = _interopRequireDefault(_classNames); @@ -66298,7 +66429,7 @@ /***/ }), -/* 529 */ +/* 531 */ /***/ (function(module, exports) { 'use strict'; @@ -66335,7 +66466,7 @@ /***/ }), -/* 530 */ +/* 532 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -66349,17 +66480,17 @@ var _react2 = _interopRequireDefault(_react); - var _PropTypes = __webpack_require__(522); + var _PropTypes = __webpack_require__(524); var _PropTypes2 = _interopRequireDefault(_PropTypes); - var _Weekdays = __webpack_require__(531); + var _Weekdays = __webpack_require__(533); var _Weekdays2 = _interopRequireDefault(_Weekdays); - var _Helpers = __webpack_require__(532); + var _Helpers = __webpack_require__(534); - var _DateUtils = __webpack_require__(533); + var _DateUtils = __webpack_require__(535); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -66477,7 +66608,7 @@ /***/ }), -/* 531 */ +/* 533 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -66491,7 +66622,7 @@ var _react2 = _interopRequireDefault(_react); - var _PropTypes = __webpack_require__(522); + var _PropTypes = __webpack_require__(524); var _PropTypes2 = _interopRequireDefault(_PropTypes); @@ -66553,7 +66684,7 @@ /***/ }), -/* 532 */ +/* 534 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -66574,9 +66705,9 @@ exports.getWeekArray = getWeekArray; exports.startOfMonth = startOfMonth; - var _DateUtils = __webpack_require__(533); + var _DateUtils = __webpack_require__(535); - var _LocaleUtils = __webpack_require__(534); + var _LocaleUtils = __webpack_require__(536); function cancelEvent(e) { e.preventDefault(); @@ -66703,7 +66834,7 @@ /***/ }), -/* 533 */ +/* 535 */ /***/ (function(module, exports) { "use strict"; @@ -66914,7 +67045,7 @@ /***/ }), -/* 534 */ +/* 536 */ /***/ (function(module, exports) { 'use strict'; @@ -66969,7 +67100,7 @@ /***/ }), -/* 535 */ +/* 537 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -66983,11 +67114,11 @@ var _react2 = _interopRequireDefault(_react); - var _classNames = __webpack_require__(529); + var _classNames = __webpack_require__(531); var _classNames2 = _interopRequireDefault(_classNames); - var _PropTypes = __webpack_require__(522); + var _PropTypes = __webpack_require__(524); var _PropTypes2 = _interopRequireDefault(_PropTypes); @@ -67098,7 +67229,7 @@ /***/ }), -/* 536 */ +/* 538 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -67113,7 +67244,7 @@ var _react2 = _interopRequireDefault(_react); - var _PropTypes = __webpack_require__(522); + var _PropTypes = __webpack_require__(524); var _PropTypes2 = _interopRequireDefault(_PropTypes); @@ -67165,7 +67296,7 @@ /***/ }), -/* 537 */ +/* 539 */ /***/ (function(module, exports, __webpack_require__) { 'use strict'; @@ -67176,9 +67307,9 @@ exports.dayMatchesModifier = dayMatchesModifier; exports.getModifiersForDay = getModifiersForDay; - var _DateUtils = __webpack_require__(533); + var _DateUtils = __webpack_require__(535); - var _Helpers = __webpack_require__(532); + var _Helpers = __webpack_require__(534); /** * Return `true` if a date matches the specified modifier. @@ -67246,7 +67377,7 @@ /***/ }), -/* 538 */ +/* 540 */ /***/ (function(module, exports) { "use strict"; @@ -67266,12 +67397,12 @@ /***/ }), -/* 539 */ +/* 541 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var moment = __webpack_require__(339); + var moment = __webpack_require__(341); var DateRangeBoundary; (function (DateRangeBoundary) { DateRangeBoundary[DateRangeBoundary["START"] = 0] = "START"; @@ -67505,21 +67636,21 @@ /***/ }), -/* 540 */ +/* 542 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); - var classNames = __webpack_require__(541); - var moment = __webpack_require__(339); + var tslib_1 = __webpack_require__(518); + var classNames = __webpack_require__(543); + var moment = __webpack_require__(341); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var dateUtils_1 = __webpack_require__(539); - var errors_1 = __webpack_require__(542); - var datePicker_1 = __webpack_require__(543); - var datePickerCore_1 = __webpack_require__(546); - var dateTimePicker_1 = __webpack_require__(547); + var dateUtils_1 = __webpack_require__(541); + var errors_1 = __webpack_require__(544); + var datePicker_1 = __webpack_require__(545); + var datePickerCore_1 = __webpack_require__(548); + var dateTimePicker_1 = __webpack_require__(549); var DateInput = (function (_super) { tslib_1.__extends(DateInput, _super); function DateInput(props, context) { @@ -67707,6 +67838,7 @@ }(core_1.AbstractComponent)); DateInput.defaultProps = { closeOnSelection: true, + dayPickerProps: {}, disabled: false, format: "YYYY-MM-DD", invalidDateMessage: "Invalid date", @@ -67721,7 +67853,7 @@ /***/ }), -/* 541 */ +/* 543 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*! @@ -67775,7 +67907,7 @@ /***/ }), -/* 542 */ +/* 544 */ /***/ (function(module, exports) { "use strict"; @@ -67797,29 +67929,34 @@ /***/ }), -/* 543 */ +/* 545 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(541); + var classNames = __webpack_require__(543); var React = __webpack_require__(3); - var ReactDayPicker = __webpack_require__(519); - var Classes = __webpack_require__(518); - var DateUtils = __webpack_require__(539); - var Errors = __webpack_require__(542); - var datePickerCaption_1 = __webpack_require__(544); - var datePickerCore_1 = __webpack_require__(546); + var ReactDayPicker = __webpack_require__(521); + var Classes = __webpack_require__(520); + var DateUtils = __webpack_require__(541); + var Errors = __webpack_require__(544); + var datePickerCaption_1 = __webpack_require__(546); + var datePickerCore_1 = __webpack_require__(548); var DatePicker = (function (_super) { tslib_1.__extends(DatePicker, _super); function DatePicker(props, context) { var _this = _super.call(this, props, context) || this; _this.ignoreNextMonthChange = false; _this.disabledDays = function (day) { return !DateUtils.isDayInRange(day, [_this.props.minDate, _this.props.maxDate]); }; + _this.getDisabledDaysModifier = function () { + var disabledDays = _this.props.dayPickerProps.disabledDays; + return disabledDays instanceof Array ? [_this.disabledDays].concat(disabledDays) : [_this.disabledDays, disabledDays]; + }; _this.renderCaption = function (props) { return (React.createElement(datePickerCaption_1.DatePickerCaption, tslib_1.__assign({}, props, { maxDate: _this.props.maxDate, minDate: _this.props.minDate, onMonthChange: _this.handleMonthSelectChange, onYearChange: _this.handleYearSelectChange }))); }; - _this.handleDayClick = function (day, modifiers) { + _this.handleDayClick = function (day, modifiers, e) { + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onDayClick, day, modifiers, e); var newValue = day; if (_this.props.canClearSelection && modifiers.selected) { newValue = null; @@ -67860,6 +67997,7 @@ core_1.Utils.safeInvoke(_this.props.onChange, value, false); } } + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onMonthChange, value); _this.setStateWithValueIfUncontrolled({ displayMonth: displayMonth, displayYear: displayYear }, value); }; _this.handleMonthSelectChange = function (displayMonth) { @@ -67868,6 +68006,7 @@ value = _this.computeValidDateInSpecifiedMonthYear(value.getFullYear(), displayMonth); core_1.Utils.safeInvoke(_this.props.onChange, value, false); } + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onMonthChange, value); _this.setStateWithValueIfUncontrolled({ displayMonth: displayMonth }, value); }; _this.handleYearSelectChange = function (displayYear) { @@ -67890,6 +68029,7 @@ displayMonth = maxMonth; } } + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onMonthChange, value); _this.setStateWithValueIfUncontrolled({ displayMonth: displayMonth, displayYear: displayYear }, value); }; _this.handleClearClick = function () { @@ -67945,10 +68085,10 @@ return _this; } DatePicker.prototype.render = function () { - var _a = this.props, className = _a.className, locale = _a.locale, localeUtils = _a.localeUtils, maxDate = _a.maxDate, minDate = _a.minDate, showActionsBar = _a.showActionsBar; + var _a = this.props, className = _a.className, dayPickerProps = _a.dayPickerProps, locale = _a.locale, localeUtils = _a.localeUtils, maxDate = _a.maxDate, minDate = _a.minDate, modifiers = _a.modifiers, showActionsBar = _a.showActionsBar; var _b = this.state, displayMonth = _b.displayMonth, displayYear = _b.displayYear; return (React.createElement("div", { className: classNames(Classes.DATEPICKER, className) }, - React.createElement(ReactDayPicker, { canChangeMonth: true, captionElement: this.renderCaption, disabledDays: this.disabledDays, enableOutsideDays: true, fromMonth: minDate, locale: locale, localeUtils: localeUtils, modifiers: this.props.modifiers, month: new Date(displayYear, displayMonth), onDayClick: this.handleDayClick, onMonthChange: this.handleMonthChange, selectedDays: this.state.value, toMonth: maxDate }), + React.createElement(ReactDayPicker, tslib_1.__assign({ enableOutsideDays: true, locale: locale, localeUtils: localeUtils, modifiers: modifiers }, dayPickerProps, { canChangeMonth: true, captionElement: this.renderCaption, disabledDays: this.getDisabledDaysModifier(), fromMonth: minDate, month: new Date(displayYear, displayMonth), onDayClick: this.handleDayClick, onMonthChange: this.handleMonthChange, selectedDays: this.state.value, toMonth: maxDate })), showActionsBar ? this.renderOptionsBar() : null)); }; DatePicker.prototype.componentWillReceiveProps = function (nextProps) { @@ -68014,6 +68154,7 @@ }(core_1.AbstractComponent)); DatePicker.defaultProps = { canClearSelection: true, + dayPickerProps: {}, maxDate: datePickerCore_1.getDefaultMaxDate(), minDate: datePickerCore_1.getDefaultMinDate(), showActionsBar: false, @@ -68024,17 +68165,17 @@ /***/ }), -/* 544 */ +/* 546 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(541); + var classNames = __webpack_require__(543); var React = __webpack_require__(3); - var Classes = __webpack_require__(518); - var Utils = __webpack_require__(545); + var Classes = __webpack_require__(520); + var Utils = __webpack_require__(547); var DatePickerCaption = (function (_super) { tslib_1.__extends(DatePickerCaption, _super); function DatePickerCaption() { @@ -68106,7 +68247,7 @@ /***/ }), -/* 545 */ +/* 547 */ /***/ (function(module, exports) { "use strict"; @@ -68138,7 +68279,7 @@ /***/ }), -/* 546 */ +/* 548 */ /***/ (function(module, exports) { "use strict"; @@ -68190,19 +68331,19 @@ /***/ }), -/* 547 */ +/* 549 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); - var classNames = __webpack_require__(541); + var tslib_1 = __webpack_require__(518); + var classNames = __webpack_require__(543); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(518); - var DateUtils = __webpack_require__(539); - var datePicker_1 = __webpack_require__(543); - var timePicker_1 = __webpack_require__(548); + var Classes = __webpack_require__(520); + var DateUtils = __webpack_require__(541); + var datePicker_1 = __webpack_require__(545); + var timePicker_1 = __webpack_require__(550); var DateTimePicker = (function (_super) { tslib_1.__extends(DateTimePicker, _super); function DateTimePicker(props, context) { @@ -68259,18 +68400,18 @@ /***/ }), -/* 548 */ +/* 550 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(541); + var classNames = __webpack_require__(543); var React = __webpack_require__(3); - var Classes = __webpack_require__(518); - var DateUtils = __webpack_require__(539); - var Utils = __webpack_require__(545); + var Classes = __webpack_require__(520); + var DateUtils = __webpack_require__(541); + var Utils = __webpack_require__(547); var TimePickerPrecision; (function (TimePickerPrecision) { TimePickerPrecision[TimePickerPrecision["MINUTE"] = 0] = "MINUTE"; @@ -68623,20 +68764,20 @@ /***/ }), -/* 549 */ +/* 551 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); - var classNames = __webpack_require__(541); - var moment = __webpack_require__(339); + var tslib_1 = __webpack_require__(518); + var classNames = __webpack_require__(543); + var moment = __webpack_require__(341); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var dateUtils_1 = __webpack_require__(539); - var Errors = __webpack_require__(542); - var datePickerCore_1 = __webpack_require__(546); - var dateRangePicker_1 = __webpack_require__(550); + var dateUtils_1 = __webpack_require__(541); + var Errors = __webpack_require__(544); + var datePickerCore_1 = __webpack_require__(548); + var dateRangePicker_1 = __webpack_require__(552); var DateRangeInput = (function (_super) { tslib_1.__extends(DateRangeInput, _super); function DateRangeInput(props, context) { @@ -69184,6 +69325,7 @@ allowSingleDayRange: false, closeOnSelection: true, contiguousCalendarMonths: true, + dayPickerProps: {}, disabled: false, endInputProps: {}, format: "YYYY-MM-DD", @@ -69202,24 +69344,24 @@ /***/ }), -/* 550 */ +/* 552 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(541); + var classNames = __webpack_require__(543); var React = __webpack_require__(3); - var DayPicker = __webpack_require__(519); - var DateClasses = __webpack_require__(518); - var DateUtils = __webpack_require__(539); + var ReactDayPicker = __webpack_require__(521); + var DateClasses = __webpack_require__(520); + var DateUtils = __webpack_require__(541); var DateRangeBoundary = DateUtils.DateRangeBoundary; - var Errors = __webpack_require__(542); - var monthAndYear_1 = __webpack_require__(551); - var datePickerCaption_1 = __webpack_require__(544); - var datePickerCore_1 = __webpack_require__(546); - var dateRangeSelectionStrategy_1 = __webpack_require__(552); + var Errors = __webpack_require__(544); + var monthAndYear_1 = __webpack_require__(553); + var datePickerCaption_1 = __webpack_require__(546); + var datePickerCore_1 = __webpack_require__(548); + var dateRangeSelectionStrategy_1 = __webpack_require__(554); var DateRangePicker = (function (_super) { tslib_1.__extends(DateRangePicker, _super); function DateRangePicker(props, context) { @@ -69257,10 +69399,16 @@ return DateUtils.areSameDay(hoverValue[1], day); }, _a); + _this.disabledDays = function (day) { return !DateUtils.isDayInRange(day, [_this.props.minDate, _this.props.maxDate]); }; + _this.getDisabledDaysModifier = function () { + var disabledDays = _this.props.dayPickerProps.disabledDays; + return disabledDays instanceof Array ? [_this.disabledDays].concat(disabledDays) : [_this.disabledDays, disabledDays]; + }; _this.renderSingleCaption = function (captionProps) { return (React.createElement(datePickerCaption_1.DatePickerCaption, tslib_1.__assign({}, captionProps, { maxDate: _this.props.maxDate, minDate: _this.props.minDate, onMonthChange: _this.handleLeftMonthSelectChange, onYearChange: _this.handleLeftYearSelectChange }))); }; _this.renderLeftCaption = function (captionProps) { return (React.createElement(datePickerCaption_1.DatePickerCaption, tslib_1.__assign({}, captionProps, { maxDate: DateUtils.getDatePreviousMonth(_this.props.maxDate), minDate: _this.props.minDate, onMonthChange: _this.handleLeftMonthSelectChange, onYearChange: _this.handleLeftYearSelectChange }))); }; _this.renderRightCaption = function (captionProps) { return (React.createElement(datePickerCaption_1.DatePickerCaption, tslib_1.__assign({}, captionProps, { maxDate: _this.props.maxDate, minDate: DateUtils.getDateNextMonth(_this.props.minDate), onMonthChange: _this.handleRightMonthSelectChange, onYearChange: _this.handleRightYearSelectChange }))); }; - _this.handleDayMouseEnter = function (day, modifiers) { + _this.handleDayMouseEnter = function (day, modifiers, e) { + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onDayMouseEnter, day, modifiers, e); if (modifiers.disabled) { return; } @@ -69268,40 +69416,47 @@ _this.setState({ hoverValue: dateRange }); core_1.Utils.safeInvoke(_this.props.onHoverChange, dateRange, day, boundary); }; - _this.handleDayMouseLeave = function (day, modifiers) { + _this.handleDayMouseLeave = function (day, modifiers, e) { + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onDayMouseLeave, day, modifiers, e); if (modifiers.disabled) { return; } _this.setState({ hoverValue: undefined }); core_1.Utils.safeInvoke(_this.props.onHoverChange, undefined, day, undefined); }; - _this.handleDayClick = function (day, modifiers) { + _this.handleDayClick = function (day, modifiers, e) { + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onDayClick, day, modifiers, e); if (modifiers.disabled) { _this.forceUpdate(); return; } var nextValue = dateRangeSelectionStrategy_1.DateRangeSelectionStrategy.getNextState(_this.state.value, day, _this.props.allowSingleDayRange, _this.props.boundaryToModify).dateRange; - _this.handleDayMouseEnter(day, modifiers); + _this.handleDayMouseEnter(day, modifiers, e); _this.handleNextState(nextValue); }; _this.handleLeftMonthChange = function (newDate) { var leftView = new monthAndYear_1.MonthAndYear(newDate.getMonth(), newDate.getFullYear()); + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onMonthChange, leftView.getFullDate()); _this.updateLeftView(leftView); }; _this.handleRightMonthChange = function (newDate) { var rightView = new monthAndYear_1.MonthAndYear(newDate.getMonth(), newDate.getFullYear()); + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onMonthChange, rightView.getFullDate()); _this.updateRightView(rightView); }; _this.handleLeftMonthSelectChange = function (leftMonth) { var leftView = new monthAndYear_1.MonthAndYear(leftMonth, _this.state.leftView.getYear()); + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onMonthChange, leftView.getFullDate()); _this.updateLeftView(leftView); }; _this.handleRightMonthSelectChange = function (rightMonth) { var rightView = new monthAndYear_1.MonthAndYear(rightMonth, _this.state.rightView.getYear()); + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onMonthChange, rightView.getFullDate()); _this.updateRightView(rightView); }; _this.handleLeftYearSelectChange = function (leftDisplayYear) { var leftView = new monthAndYear_1.MonthAndYear(_this.state.leftView.getMonth(), leftDisplayYear); + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onMonthChange, leftView.getFullDate()); var _a = _this.props, minDate = _a.minDate, maxDate = _a.maxDate; var adjustedMaxDate = DateUtils.getDatePreviousMonth(maxDate); var minMonthAndYear = new monthAndYear_1.MonthAndYear(minDate.getMonth(), minDate.getFullYear()); @@ -69320,6 +69475,7 @@ }; _this.handleRightYearSelectChange = function (rightDisplayYear) { var rightView = new monthAndYear_1.MonthAndYear(_this.state.rightView.getMonth(), rightDisplayYear); + core_1.Utils.safeInvoke(_this.props.dayPickerProps.onMonthChange, rightView.getFullDate()); var _a = _this.props, minDate = _a.minDate, maxDate = _a.maxDate; var adjustedMinDate = DateUtils.getDateNextMonth(minDate); var minMonthAndYear = new monthAndYear_1.MonthAndYear(adjustedMinDate.getMonth(), adjustedMinDate.getFullYear()); @@ -69377,20 +69533,13 @@ }); DateRangePicker.prototype.render = function () { var modifiers = datePickerCore_1.combineModifiers(this.modifiers, this.props.modifiers); - var _a = this.props, className = _a.className, contiguousCalendarMonths = _a.contiguousCalendarMonths, locale = _a.locale, localeUtils = _a.localeUtils, maxDate = _a.maxDate, minDate = _a.minDate; + var _a = this.props, className = _a.className, contiguousCalendarMonths = _a.contiguousCalendarMonths, dayPickerProps = _a.dayPickerProps, locale = _a.locale, localeUtils = _a.localeUtils, maxDate = _a.maxDate, minDate = _a.minDate; var isShowingOneMonth = DateUtils.areSameMonth(this.props.minDate, this.props.maxDate); var _b = this.state, leftView = _b.leftView, rightView = _b.rightView; - var disabledDays = [{ before: this.props.minDate }, { after: this.props.maxDate }]; - var dayPickerBaseProps = { - disabledDays: disabledDays, - locale: locale, + var disabledDays = this.getDisabledDaysModifier(); + var dayPickerBaseProps = tslib_1.__assign({ enableOutsideDays: true, locale: locale, localeUtils: localeUtils, - modifiers: modifiers, - onDayClick: this.handleDayClick, - onDayMouseEnter: this.handleDayMouseEnter, - onDayMouseLeave: this.handleDayMouseLeave, - selectedDays: this.state.value, - }; + modifiers: modifiers }, dayPickerProps, { disabledDays: disabledDays, onDayClick: this.handleDayClick, onDayMouseEnter: this.handleDayMouseEnter, onDayMouseLeave: this.handleDayMouseLeave, selectedDays: this.state.value }); if (contiguousCalendarMonths || isShowingOneMonth) { var classes = classNames(DateClasses.DATEPICKER, DateClasses.DATERANGEPICKER, className, (_c = {}, _c[DateClasses.DATERANGEPICKER_CONTIGUOUS] = contiguousCalendarMonths, @@ -69398,13 +69547,13 @@ _c)); return (React.createElement("div", { className: classes }, this.maybeRenderShortcuts(), - React.createElement(DayPicker, tslib_1.__assign({}, dayPickerBaseProps, { captionElement: this.renderSingleCaption, fromMonth: minDate, month: leftView.getFullDate(), numberOfMonths: isShowingOneMonth ? 1 : 2, onMonthChange: this.handleLeftMonthChange, toMonth: maxDate })))); + React.createElement(ReactDayPicker, tslib_1.__assign({}, dayPickerBaseProps, { captionElement: this.renderSingleCaption, fromMonth: minDate, month: leftView.getFullDate(), numberOfMonths: isShowingOneMonth ? 1 : 2, onMonthChange: this.handleLeftMonthChange, toMonth: maxDate })))); } else { return (React.createElement("div", { className: classNames(DateClasses.DATEPICKER, DateClasses.DATERANGEPICKER, className) }, this.maybeRenderShortcuts(), - React.createElement(DayPicker, tslib_1.__assign({}, dayPickerBaseProps, { canChangeMonth: true, captionElement: this.renderLeftCaption, fromMonth: minDate, month: leftView.getFullDate(), onMonthChange: this.handleLeftMonthChange, toMonth: DateUtils.getDatePreviousMonth(maxDate) })), - React.createElement(DayPicker, tslib_1.__assign({}, dayPickerBaseProps, { canChangeMonth: true, captionElement: this.renderRightCaption, fromMonth: DateUtils.getDateNextMonth(minDate), month: rightView.getFullDate(), onMonthChange: this.handleRightMonthChange, toMonth: maxDate })))); + React.createElement(ReactDayPicker, tslib_1.__assign({}, dayPickerBaseProps, { canChangeMonth: true, captionElement: this.renderLeftCaption, fromMonth: minDate, month: leftView.getFullDate(), onMonthChange: this.handleLeftMonthChange, toMonth: DateUtils.getDatePreviousMonth(maxDate) })), + React.createElement(ReactDayPicker, tslib_1.__assign({}, dayPickerBaseProps, { canChangeMonth: true, captionElement: this.renderRightCaption, fromMonth: DateUtils.getDateNextMonth(minDate), month: rightView.getFullDate(), onMonthChange: this.handleRightMonthChange, toMonth: maxDate })))); } var _c; }; @@ -69485,6 +69634,7 @@ DateRangePicker.defaultProps = { allowSingleDayRange: false, contiguousCalendarMonths: true, + dayPickerProps: {}, maxDate: datePickerCore_1.getDefaultMaxDate(), minDate: datePickerCore_1.getDefaultMinDate(), shortcuts: true, @@ -69582,12 +69732,12 @@ /***/ }), -/* 551 */ +/* 553 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var dateUtils_1 = __webpack_require__(539); + var dateUtils_1 = __webpack_require__(541); var MonthAndYear = (function () { function MonthAndYear(month, year) { if (month !== null && year !== null) { @@ -69644,12 +69794,12 @@ /***/ }), -/* 552 */ +/* 554 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var dateUtils_1 = __webpack_require__(539); + var dateUtils_1 = __webpack_require__(541); var DateRangeSelectionStrategy = (function () { function DateRangeSelectionStrategy() { } @@ -69781,7 +69931,7 @@ /***/ }), -/* 553 */ +/* 555 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -69793,14 +69943,14 @@ /***/ }), -/* 554 */ +/* 556 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var core_1 = __webpack_require__(179); var React = __webpack_require__(3); - var src_1 = __webpack_require__(517); + var src_1 = __webpack_require__(519); exports.PrecisionSelect = function (props) { return (React.createElement("label", { className: core_1.Classes.LABEL }, props.label == null ? props.label : "Precision", React.createElement("div", { className: core_1.Classes.SELECT }, @@ -69812,18 +69962,18 @@ /***/ }), -/* 555 */ +/* 557 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var classNames = __webpack_require__(541); - var moment = __webpack_require__(339); + var classNames = __webpack_require__(543); + var moment = __webpack_require__(341); var React = __webpack_require__(3); - var src_1 = __webpack_require__(517); + var src_1 = __webpack_require__(519); var FORMAT = "dddd, LL"; exports.Moment = function (_a) { var date = _a.date, _b = _a.format, format = _b === void 0 ? FORMAT : _b; @@ -69865,17 +70015,17 @@ /***/ }), -/* 556 */ +/* 558 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); var React = __webpack_require__(3); - var src_1 = __webpack_require__(517); - var formatSelect_1 = __webpack_require__(553); + var src_1 = __webpack_require__(519); + var formatSelect_1 = __webpack_require__(555); var DateRangeInputExample = (function (_super) { tslib_1.__extends(DateRangeInputExample, _super); function DateRangeInputExample() { @@ -69920,18 +70070,18 @@ /***/ }), -/* 557 */ +/* 559 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var moment = __webpack_require__(339); + var moment = __webpack_require__(341); var React = __webpack_require__(3); - var src_1 = __webpack_require__(517); - var datePickerExample_1 = __webpack_require__(555); + var src_1 = __webpack_require__(519); + var datePickerExample_1 = __webpack_require__(557); var MIN_DATE_OPTIONS = [ { label: "None", value: undefined }, { @@ -70021,17 +70171,17 @@ /***/ }), -/* 558 */ +/* 560 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); var React = __webpack_require__(3); - var src_1 = __webpack_require__(517); - var datePickerExample_1 = __webpack_require__(555); + var src_1 = __webpack_require__(519); + var datePickerExample_1 = __webpack_require__(557); var DateTimePickerExample = (function (_super) { tslib_1.__extends(DateTimePickerExample, _super); function DateTimePickerExample() { @@ -70053,18 +70203,18 @@ /***/ }), -/* 559 */ +/* 561 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(516); + var tslib_1 = __webpack_require__(518); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); var React = __webpack_require__(3); - var precisionSelect_1 = __webpack_require__(554); - var src_1 = __webpack_require__(517); - var timePicker_1 = __webpack_require__(548); + var precisionSelect_1 = __webpack_require__(556); + var src_1 = __webpack_require__(519); + var timePicker_1 = __webpack_require__(550); var MinimumHours; (function (MinimumHours) { MinimumHours[MinimumHours["NONE"] = 0] = "NONE"; @@ -70148,7 +70298,7 @@ /***/ }), -/* 560 */ +/* 562 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -70156,29 +70306,29 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(561)); - __export(__webpack_require__(584)); - __export(__webpack_require__(585)); + __export(__webpack_require__(563)); __export(__webpack_require__(586)); __export(__webpack_require__(587)); __export(__webpack_require__(588)); __export(__webpack_require__(589)); __export(__webpack_require__(590)); + __export(__webpack_require__(591)); + __export(__webpack_require__(592)); /***/ }), -/* 561 */ +/* 563 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(562); - var data_1 = __webpack_require__(583); + var src_1 = __webpack_require__(564); + var data_1 = __webpack_require__(585); var FilmMultiSelect = src_1.MultiSelect.ofType(); var INTENTS = [core_1.Intent.NONE, core_1.Intent.PRIMARY, core_1.Intent.SUCCESS, core_1.Intent.DANGER, core_1.Intent.WARNING]; var MultiSelectExample = (function (_super) { @@ -70277,7 +70427,7 @@ /***/ }), -/* 562 */ +/* 564 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -70285,22 +70435,22 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(563)); __export(__webpack_require__(565)); + __export(__webpack_require__(567)); /***/ }), -/* 563 */ +/* 565 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var classes = __webpack_require__(564); + var classes = __webpack_require__(566); exports.Classes = classes; /***/ }), -/* 564 */ +/* 566 */ /***/ (function(module, exports) { "use strict"; @@ -70319,7 +70469,7 @@ /***/ }), -/* 565 */ +/* 567 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -70327,30 +70477,30 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(566)); __export(__webpack_require__(568)); __export(__webpack_require__(570)); - __export(__webpack_require__(567)); - __export(__webpack_require__(574)); + __export(__webpack_require__(572)); + __export(__webpack_require__(569)); __export(__webpack_require__(576)); - __export(__webpack_require__(577)); - __export(__webpack_require__(575)); __export(__webpack_require__(578)); + __export(__webpack_require__(579)); + __export(__webpack_require__(577)); + __export(__webpack_require__(580)); /***/ }), -/* 566 */ +/* 568 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(564); - var queryList_1 = __webpack_require__(567); + var Classes = __webpack_require__(566); + var queryList_1 = __webpack_require__(569); var Omnibox = Omnibox_1 = (function (_super) { tslib_1.__extends(Omnibox, _super); function Omnibox() { @@ -70444,12 +70594,12 @@ /***/ }), -/* 567 */ +/* 569 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); + var tslib_1 = __webpack_require__(308); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var QueryList = (function (_super) { @@ -70578,22 +70728,22 @@ /***/ }), -/* 568 */ +/* 570 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); - var react_popper_1 = __webpack_require__(314); + var react_popper_1 = __webpack_require__(316); var core_1 = __webpack_require__(179); - var Errors = __webpack_require__(569); - var tooltip2_1 = __webpack_require__(570); - var arrow_1 = __webpack_require__(571); - var popoverMigrationUtils_1 = __webpack_require__(573); - var popperUtils_1 = __webpack_require__(572); + var Errors = __webpack_require__(571); + var tooltip2_1 = __webpack_require__(572); + var arrow_1 = __webpack_require__(573); + var popoverMigrationUtils_1 = __webpack_require__(575); + var popperUtils_1 = __webpack_require__(574); var Popover2 = (function (_super) { tslib_1.__extends(Popover2, _super); function Popover2(props, context) { @@ -70899,7 +71049,7 @@ /***/ }), -/* 569 */ +/* 571 */ /***/ (function(module, exports) { "use strict"; @@ -70912,17 +71062,17 @@ /***/ }), -/* 570 */ +/* 572 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var popover2_1 = __webpack_require__(568); + var popover2_1 = __webpack_require__(570); var Tooltip2 = (function (_super) { tslib_1.__extends(Tooltip2, _super); function Tooltip2() { @@ -70951,15 +71101,15 @@ /***/ }), -/* 571 */ +/* 573 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var React = __webpack_require__(3); - var react_popper_1 = __webpack_require__(314); + var react_popper_1 = __webpack_require__(316); var core_1 = __webpack_require__(179); - var popperUtils_1 = __webpack_require__(572); + var popperUtils_1 = __webpack_require__(574); var SVG_SHADOW_PATH = "M8.11 6.302c1.015-.936 1.887-2.922 1.887-4.297v26c0-1.378" + "-.868-3.357-1.888-4.297L.925 17.09c-1.237-1.14-1.233-3.034 0-4.17L8.11 6.302z"; var SVG_ARROW_PATH = "M8.787 7.036c1.22-1.125 2.21-3.376 2.21-5.03V0v30-2.005" + @@ -70988,7 +71138,7 @@ /***/ }), -/* 572 */ +/* 574 */ /***/ (function(module, exports) { "use strict"; @@ -71066,7 +71216,7 @@ /***/ }), -/* 573 */ +/* 575 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -71109,19 +71259,19 @@ /***/ }), -/* 574 */ +/* 576 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(564); - var queryList_1 = __webpack_require__(567); - var tagInput_1 = __webpack_require__(575); + var Classes = __webpack_require__(566); + var queryList_1 = __webpack_require__(569); + var tagInput_1 = __webpack_require__(577); var MultiSelect = MultiSelect_1 = (function (_super) { tslib_1.__extends(MultiSelect, _super); function MultiSelect() { @@ -71256,17 +71406,17 @@ /***/ }), -/* 575 */ +/* 577 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(564); + var Classes = __webpack_require__(566); var NONE = -1; var TagInput = (function (_super) { tslib_1.__extends(TagInput, _super); @@ -71418,32 +71568,39 @@ /***/ }), -/* 576 */ +/* 578 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(564); - var queryList_1 = __webpack_require__(567); + var Classes = __webpack_require__(566); + var popover2_1 = __webpack_require__(570); + var queryList_1 = __webpack_require__(569); var Select = Select_1 = (function (_super) { tslib_1.__extends(Select, _super); function Select(props, context) { var _this = _super.call(this, props, context) || this; + _this.state = { isOpen: false, query: "" }; _this.TypedQueryList = queryList_1.QueryList.ofType(); _this.refHandlers = { + input: function (ref) { + _this.input = ref; + var _a = _this.props.inputProps, inputProps = _a === void 0 ? {} : _a; + core_1.Utils.safeInvoke(inputProps.inputRef, ref); + }, queryList: function (ref) { return (_this.list = ref); }, }; _this.renderQueryList = function (listProps) { var _a = _this.props, _b = _a.filterable, filterable = _b === void 0 ? true : _b, _c = _a.disabled, disabled = _c === void 0 ? false : _c, _d = _a.inputProps, inputProps = _d === void 0 ? {} : _d, _e = _a.popoverProps, popoverProps = _e === void 0 ? {} : _e; var ref = inputProps.ref, htmlInputProps = tslib_1.__rest(inputProps, ["ref"]); - var input = (React.createElement(core_1.InputGroup, tslib_1.__assign({ autoFocus: true, leftIconName: "search", placeholder: "Filter...", rightElement: _this.maybeRenderInputClearButton(), value: listProps.query }, htmlInputProps, { onChange: _this.handleQueryChange }))); + var input = (React.createElement(core_1.InputGroup, tslib_1.__assign({ leftIconName: "search", placeholder: "Filter...", rightElement: _this.maybeRenderInputClearButton(), value: listProps.query }, htmlInputProps, { inputRef: _this.refHandlers.input, onChange: _this.handleQueryChange }))); var handleKeyDown = listProps.handleKeyDown, handleKeyUp = listProps.handleKeyUp; - return (React.createElement(core_1.Popover, tslib_1.__assign({ autoFocus: false, enforceFocus: false, isOpen: _this.state.isOpen, position: core_1.Position.BOTTOM_LEFT, isDisabled: disabled }, popoverProps, { className: classNames(listProps.className, popoverProps.className), onInteraction: _this.handlePopoverInteraction, popoverClassName: classNames(Classes.SELECT_POPOVER, popoverProps.popoverClassName), popoverWillOpen: _this.handlePopoverWillOpen, popoverDidOpen: _this.handlePopoverDidOpen, popoverWillClose: _this.handlePopoverWillClose }), + return (React.createElement(popover2_1.Popover2, tslib_1.__assign({ autoFocus: false, enforceFocus: false, isOpen: _this.state.isOpen, placement: "bottom-start", disabled: disabled }, popoverProps, { className: classNames(listProps.className, popoverProps.className), onInteraction: _this.handlePopoverInteraction, popoverClassName: classNames(Classes.SELECT_POPOVER, popoverProps.popoverClassName), popoverWillOpen: _this.handlePopoverWillOpen, popoverDidOpen: _this.handlePopoverDidOpen, popoverWillClose: _this.handlePopoverWillClose }), React.createElement("div", { onKeyDown: _this.state.isOpen ? handleKeyDown : _this.handleTargetKeyDown, onKeyUp: _this.state.isOpen ? handleKeyUp : undefined }, _this.props.children), React.createElement("div", { onKeyDown: handleKeyDown, onKeyUp: handleKeyUp }, filterable ? input : undefined, @@ -71480,6 +71637,12 @@ if (_this.list != null) { _this.list.scrollActiveItemIntoView(); } + requestAnimationFrame(function () { + var _a = _this.props.inputProps, inputProps = _a === void 0 ? {} : _a; + if (inputProps.autoFocus !== false && _this.input != null) { + _this.input.focus(); + } + }); var _a = _this.props.popoverProps, popoverProps = _a === void 0 ? {} : _a; core_1.Utils.safeInvoke(popoverProps.popoverDidOpen); }; @@ -71560,18 +71723,18 @@ /***/ }), -/* 577 */ +/* 579 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(564); - var queryList_1 = __webpack_require__(567); + var Classes = __webpack_require__(566); + var queryList_1 = __webpack_require__(569); var Suggest = Suggest_1 = (function (_super) { tslib_1.__extends(Suggest, _super); function Suggest() { @@ -71743,22 +71906,22 @@ /***/ }), -/* 578 */ +/* 580 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PureRender = __webpack_require__(308); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PureRender = __webpack_require__(310); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(564); - var select_1 = __webpack_require__(576); - var timezoneDisplayFormat_1 = __webpack_require__(579); + var Classes = __webpack_require__(566); + var select_1 = __webpack_require__(578); + var timezoneDisplayFormat_1 = __webpack_require__(581); exports.TimezoneDisplayFormat = timezoneDisplayFormat_1.TimezoneDisplayFormat; - var timezoneItems_1 = __webpack_require__(581); - var timezoneUtils_1 = __webpack_require__(582); + var timezoneItems_1 = __webpack_require__(583); + var timezoneUtils_1 = __webpack_require__(584); var TypedSelect = select_1.Select.ofType(); var TimezonePicker = (function (_super) { tslib_1.__extends(TimezonePicker, _super); @@ -71848,13 +72011,13 @@ /***/ }), -/* 579 */ +/* 581 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var moment = __webpack_require__(337); - var timezoneMetadata_1 = __webpack_require__(580); + var moment = __webpack_require__(339); + var timezoneMetadata_1 = __webpack_require__(582); exports.TimezoneDisplayFormat = { ABBREVIATION: "abbreviation", COMPOSITE: "composite", @@ -71887,12 +72050,12 @@ /***/ }), -/* 580 */ +/* 582 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var moment = __webpack_require__(337); + var moment = __webpack_require__(339); function getTimezoneMetadata(timezone, date) { var timestamp = date.getTime(); var zone = moment.tz.zone(timezone); @@ -71922,14 +72085,14 @@ /***/ }), -/* 581 */ +/* 583 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var moment = __webpack_require__(337); - var timezoneMetadata_1 = __webpack_require__(580); - var timezoneUtils_1 = __webpack_require__(582); + var moment = __webpack_require__(339); + var timezoneMetadata_1 = __webpack_require__(582); + var timezoneUtils_1 = __webpack_require__(584); function getTimezoneItems(date) { return moment.tz.names().map(function (timezone) { return toTimezoneItem(timezone, date); }); } @@ -72001,14 +72164,14 @@ /***/ }), -/* 582 */ +/* 584 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var fuzzaldrin_plus_1 = __webpack_require__(461); - var moment = __webpack_require__(337); - var timezoneMetadata_1 = __webpack_require__(580); + var fuzzaldrin_plus_1 = __webpack_require__(463); + var moment = __webpack_require__(339); + var timezoneMetadata_1 = __webpack_require__(582); function getLocalTimezone() { return moment.tz.guess(); } @@ -72031,12 +72194,12 @@ /***/ }), -/* 583 */ +/* 585 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); + var tslib_1 = __webpack_require__(308); exports.TOP_100_FILMS = [ { title: "The Shawshank Redemption", year: 1994 }, { title: "The Godfather", year: 1972 }, @@ -72142,18 +72305,18 @@ /***/ }), -/* 584 */ +/* 586 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(562); - var data_1 = __webpack_require__(583); + var src_1 = __webpack_require__(564); + var data_1 = __webpack_require__(585); var FilmOmnibox = src_1.Omnibox.ofType(); var OmniboxExample = (function (_super) { tslib_1.__extends(OmniboxExample, _super); @@ -72236,18 +72399,18 @@ /***/ }), -/* 585 */ +/* 587 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); - var PopperJS = __webpack_require__(322); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); + var PopperJS = __webpack_require__(324); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(562); + var src_1 = __webpack_require__(564); var INTERACTION_KINDS = [ { label: "Click", value: core_1.PopoverInteractionKind.CLICK.toString() }, { label: "Click (target only)", value: core_1.PopoverInteractionKind.CLICK_TARGET_ONLY.toString() }, @@ -72423,18 +72586,18 @@ /***/ }), -/* 586 */ +/* 588 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(562); - var data_1 = __webpack_require__(583); + var src_1 = __webpack_require__(564); + var data_1 = __webpack_require__(585); var FilmSelect = src_1.Select.ofType(); var SelectExample = (function (_super) { tslib_1.__extends(SelectExample, _super); @@ -72461,7 +72624,7 @@ SelectExample.prototype.renderExample = function () { var _a = this.state, disabled = _a.disabled, film = _a.film, minimal = _a.minimal, flags = tslib_1.__rest(_a, ["disabled", "film", "minimal"]); var initialContent = this.state.hasInitialContent ? (React.createElement(core_1.MenuItem, { disabled: true, text: data_1.TOP_100_FILMS.length + " items loaded." })) : (undefined); - return (React.createElement(FilmSelect, tslib_1.__assign({}, flags, { disabled: disabled, initialContent: initialContent, items: data_1.TOP_100_FILMS, itemPredicate: this.filterFilm, itemRenderer: this.renderFilm, noResults: React.createElement(core_1.MenuItem, { disabled: true, text: "No results." }), onItemSelect: this.handleValueChange, popoverProps: { popoverClassName: minimal ? core_1.Classes.MINIMAL : "" } }), + return (React.createElement(FilmSelect, tslib_1.__assign({}, flags, { disabled: disabled, initialContent: initialContent, items: data_1.TOP_100_FILMS, itemPredicate: this.filterFilm, itemRenderer: this.renderFilm, noResults: React.createElement(core_1.MenuItem, { disabled: true, text: "No results." }), onItemSelect: this.handleValueChange, popoverProps: { minimal: minimal } }), React.createElement(core_1.Button, { rightIconName: "caret-down", text: film ? film.title : "(No selection)", disabled: disabled }))); }; SelectExample.prototype.renderOptions = function () { @@ -72501,18 +72664,18 @@ /***/ }), -/* 587 */ +/* 589 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(562); - var data_1 = __webpack_require__(583); + var src_1 = __webpack_require__(564); + var data_1 = __webpack_require__(585); var FilmSuggest = src_1.Suggest.ofType(); var SuggestExample = (function (_super) { tslib_1.__extends(SuggestExample, _super); @@ -72571,17 +72734,17 @@ /***/ }), -/* 588 */ +/* 590 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); - var classNames = __webpack_require__(307); + var tslib_1 = __webpack_require__(308); + var classNames = __webpack_require__(309); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(562); + var src_1 = __webpack_require__(564); var INTENTS = [core_1.Intent.NONE, core_1.Intent.PRIMARY, core_1.Intent.SUCCESS, core_1.Intent.DANGER, core_1.Intent.WARNING]; var VALUES = [ React.createElement("strong", null, "Albert"), @@ -72642,16 +72805,16 @@ /***/ }), -/* 589 */ +/* 591 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); + var tslib_1 = __webpack_require__(308); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(562); + var src_1 = __webpack_require__(564); var Tooltip2Example = (function (_super) { tslib_1.__extends(Tooltip2Example, _super); function Tooltip2Example() { @@ -72701,16 +72864,16 @@ /***/ }), -/* 590 */ +/* 592 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(306); + var tslib_1 = __webpack_require__(308); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(562); + var src_1 = __webpack_require__(564); var TimezonePickerExample = (function (_super) { tslib_1.__extends(TimezonePickerExample, _super); function TimezonePickerExample() { @@ -72760,7 +72923,7 @@ /***/ }), -/* 591 */ +/* 593 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -72768,29 +72931,29 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(592)); - __export(__webpack_require__(649)); - __export(__webpack_require__(650)); - __export(__webpack_require__(651)); - __export(__webpack_require__(652)); - __export(__webpack_require__(653)); - __export(__webpack_require__(654)); + __export(__webpack_require__(594)); __export(__webpack_require__(655)); __export(__webpack_require__(656)); + __export(__webpack_require__(657)); + __export(__webpack_require__(658)); + __export(__webpack_require__(659)); + __export(__webpack_require__(660)); + __export(__webpack_require__(661)); + __export(__webpack_require__(662)); /***/ }), -/* 592 */ +/* 594 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(594); - var bigSpaceRocks = __webpack_require__(648); + var src_1 = __webpack_require__(596); + var bigSpaceRocks = __webpack_require__(654); exports.CellsLoadingConfiguration = { ALL: "all", FIRST_COLUMN: "first-column", @@ -72880,7 +73043,7 @@ /***/ }), -/* 593 */ +/* 595 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global) {/*! ***************************************************************************** @@ -73096,58 +73259,58 @@ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()))) /***/ }), -/* 594 */ +/* 596 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - __webpack_require__(595); - var cell_1 = __webpack_require__(596); + __webpack_require__(597); + var cell_1 = __webpack_require__(598); exports.Cell = cell_1.Cell; - var editableCell_1 = __webpack_require__(604); + var editableCell_1 = __webpack_require__(608); exports.EditableCell = editableCell_1.EditableCell; - var jsonFormat_1 = __webpack_require__(607); + var jsonFormat_1 = __webpack_require__(606); exports.JSONFormat = jsonFormat_1.JSONFormat; - var truncatedFormat_1 = __webpack_require__(608); + var truncatedFormat_1 = __webpack_require__(607); exports.TruncatedPopoverMode = truncatedFormat_1.TruncatedPopoverMode; exports.TruncatedFormat = truncatedFormat_1.TruncatedFormat; - var column_1 = __webpack_require__(609); + var column_1 = __webpack_require__(611); exports.Column = column_1.Column; - var index_1 = __webpack_require__(610); + var index_1 = __webpack_require__(612); exports.Clipboard = index_1.Clipboard; exports.Grid = index_1.Grid; exports.Rect = index_1.Rect; exports.RenderMode = index_1.RenderMode; exports.Utils = index_1.Utils; - var draggable_1 = __webpack_require__(605); + var draggable_1 = __webpack_require__(609); exports.Draggable = draggable_1.Draggable; - var menus_1 = __webpack_require__(618); + var menus_1 = __webpack_require__(620); exports.CopyCellsMenuItem = menus_1.CopyCellsMenuItem; - var resizeHandle_1 = __webpack_require__(621); + var resizeHandle_1 = __webpack_require__(623); exports.Orientation = resizeHandle_1.Orientation; exports.ResizeHandle = resizeHandle_1.ResizeHandle; - var selectable_1 = __webpack_require__(622); + var selectable_1 = __webpack_require__(624); exports.DragSelectable = selectable_1.DragSelectable; - var columnHeaderCell_1 = __webpack_require__(625); + var columnHeaderCell_1 = __webpack_require__(628); exports.ColumnHeaderCell = columnHeaderCell_1.ColumnHeaderCell; exports.HorizontalCellDivider = columnHeaderCell_1.HorizontalCellDivider; - var rowHeaderCell_1 = __webpack_require__(627); + var rowHeaderCell_1 = __webpack_require__(630); exports.RowHeaderCell = rowHeaderCell_1.RowHeaderCell; - var editableName_1 = __webpack_require__(628); + var editableName_1 = __webpack_require__(631); exports.EditableName = editableName_1.EditableName; - var regions_1 = __webpack_require__(613); + var regions_1 = __webpack_require__(615); exports.ColumnLoadingOption = regions_1.ColumnLoadingOption; exports.RegionCardinality = regions_1.RegionCardinality; exports.Regions = regions_1.Regions; exports.RowLoadingOption = regions_1.RowLoadingOption; exports.SelectionModes = regions_1.SelectionModes; exports.TableLoadingOption = regions_1.TableLoadingOption; - var table_1 = __webpack_require__(629); + var table_1 = __webpack_require__(632); exports.Table = table_1.Table; /***/ }), -/* 595 */ +/* 597 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(global, process) { /*! @@ -76996,17 +77159,19 @@ /* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(115))) /***/ }), -/* 596 */ +/* 598 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var classNames = __webpack_require__(597); + var tslib_1 = __webpack_require__(595); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); + var Classes = __webpack_require__(600); var core_1 = __webpack_require__(179); - var loadableContent_1 = __webpack_require__(599); + var loadableContent_1 = __webpack_require__(601); + var jsonFormat_1 = __webpack_require__(606); + var truncatedFormat_1 = __webpack_require__(607); exports.emptyCellRenderer = function () { return React.createElement(Cell, null); }; var Cell = (function (_super) { tslib_1.__extends(Cell, _super); @@ -77030,10 +77195,22 @@ _c)); var modifiedChildren = React.Children.map(this.props.children, function (child) { if (style != null && React.isValidElement(child)) { - return React.cloneElement(child, { - parentCellHeight: style.height, - parentCellWidth: style.width, - }); + var childType = child.type; + if (typeof child === "string" || typeof childType === "string") { + return child; + } + else { + var isTruncatedFormat = childType.prototype === truncatedFormat_1.TruncatedFormat.prototype || + truncatedFormat_1.TruncatedFormat.prototype.isPrototypeOf(childType) || + childType.prototype === jsonFormat_1.JSONFormat.prototype || + jsonFormat_1.JSONFormat.prototype.isPrototypeOf(childType); + if (isTruncatedFormat) { + return React.cloneElement(child, { + parentCellHeight: style.height, + parentCellWidth: style.width, + }); + } + } } return child; }); @@ -77052,7 +77229,7 @@ /***/ }), -/* 597 */ +/* 599 */ /***/ (function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*! @@ -77106,7 +77283,7 @@ /***/ }), -/* 598 */ +/* 600 */ /***/ (function(module, exports) { "use strict"; @@ -77223,13 +77400,13 @@ /***/ }), -/* 599 */ +/* 601 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var PureRender = __webpack_require__(600); + var tslib_1 = __webpack_require__(595); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var LoadableContent = (function (_super) { @@ -77263,7 +77440,7 @@ /***/ }), -/* 600 */ +/* 602 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -77272,8 +77449,8 @@ */ 'use strict'; - var warning = __webpack_require__(601); - var shallowEqual = __webpack_require__(603); + var warning = __webpack_require__(603); + var shallowEqual = __webpack_require__(605); @@ -77335,7 +77512,7 @@ /***/ }), -/* 601 */ +/* 603 */ /***/ (function(module, exports, __webpack_require__) { /** @@ -77350,7 +77527,7 @@ 'use strict'; - var emptyFunction = __webpack_require__(602); + var emptyFunction = __webpack_require__(604); /** * Similar to invariant but only logs a warning if the condition is not met. @@ -77406,7 +77583,7 @@ module.exports = warning; /***/ }), -/* 602 */ +/* 604 */ /***/ (function(module, exports) { "use strict"; @@ -77449,7 +77626,7 @@ module.exports = emptyFunction; /***/ }), -/* 603 */ +/* 605 */ /***/ (function(module, exports) { /** @@ -77521,18 +77698,188 @@ module.exports = shallowEqual; /***/ }), -/* 604 */ +/* 606 */ +/***/ (function(module, exports, __webpack_require__) { + + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + var tslib_1 = __webpack_require__(595); + var classNames = __webpack_require__(599); + var React = __webpack_require__(3); + var Classes = __webpack_require__(600); + var truncatedFormat_1 = __webpack_require__(607); + var JSONFormat = (function (_super) { + tslib_1.__extends(JSONFormat, _super); + function JSONFormat() { + return _super !== null && _super.apply(this, arguments) || this; + } + JSONFormat.prototype.render = function () { + var _a = this.props, children = _a.children, omitQuotesOnStrings = _a.omitQuotesOnStrings, stringify = _a.stringify; + var showPopover = this.props.showPopover; + var isNully = children == null; + if (isNully) { + showPopover = truncatedFormat_1.TruncatedPopoverMode.NEVER; + } + var className = classNames(this.props.className, (_b = {}, + _b[Classes.TABLE_NULL] = isNully, + _b)); + var displayValue = ""; + if (omitQuotesOnStrings && typeof children === "string") { + displayValue = children; + } + else { + displayValue = stringify(children); + } + return (React.createElement(truncatedFormat_1.TruncatedFormat, tslib_1.__assign({}, this.props, { className: className, showPopover: showPopover }), displayValue)); + var _b; + }; + return JSONFormat; + }(React.Component)); + JSONFormat.defaultProps = { + omitQuotesOnStrings: true, + stringify: function (obj) { return JSON.stringify(obj, null, 2); }, + }; + exports.JSONFormat = JSONFormat; + + +/***/ }), +/* 607 */ +/***/ (function(module, exports, __webpack_require__) { + + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + var tslib_1 = __webpack_require__(595); + var core_1 = __webpack_require__(179); + var classNames = __webpack_require__(599); + var PureRender = __webpack_require__(602); + var React = __webpack_require__(3); + var Classes = __webpack_require__(600); + var CONTENT_DIV_WIDTH_DELTA = 25; + var TruncatedPopoverMode; + (function (TruncatedPopoverMode) { + TruncatedPopoverMode[TruncatedPopoverMode["ALWAYS"] = 0] = "ALWAYS"; + TruncatedPopoverMode[TruncatedPopoverMode["NEVER"] = 1] = "NEVER"; + TruncatedPopoverMode[TruncatedPopoverMode["WHEN_TRUNCATED"] = 2] = "WHEN_TRUNCATED"; + })(TruncatedPopoverMode = exports.TruncatedPopoverMode || (exports.TruncatedPopoverMode = {})); + var TruncatedFormat = (function (_super) { + tslib_1.__extends(TruncatedFormat, _super); + function TruncatedFormat() { + var _this = _super !== null && _super.apply(this, arguments) || this; + _this.state = { + isPopoverOpen: false, + isTruncated: false, + }; + _this.handleContentDivRef = function (ref) { return (_this.contentDiv = ref); }; + _this.handlePopoverOpen = function () { + _this.setState({ isPopoverOpen: true }); + }; + _this.handlePopoverClose = function () { + _this.setState({ isPopoverOpen: false }); + }; + return _this; + } + TruncatedFormat.prototype.componentDidMount = function () { + this.setTruncationState(); + }; + TruncatedFormat.prototype.componentDidUpdate = function () { + this.setTruncationState(); + }; + TruncatedFormat.prototype.render = function () { + var _a = this.props, children = _a.children, detectTruncation = _a.detectTruncation, truncateLength = _a.truncateLength, truncationSuffix = _a.truncationSuffix; + var content = "" + children; + var cellContent = content; + if (!detectTruncation && truncateLength > 0 && cellContent.length > truncateLength) { + cellContent = cellContent.substring(0, truncateLength) + truncationSuffix; + } + if (this.shouldShowPopover(content)) { + var className = classNames(this.props.className, Classes.TABLE_TRUNCATED_FORMAT); + return (React.createElement("div", { className: className }, + React.createElement("div", { className: Classes.TABLE_TRUNCATED_VALUE, ref: this.handleContentDivRef }, cellContent), + this.renderPopover())); + } + else { + var className = classNames(this.props.className, Classes.TABLE_TRUNCATED_FORMAT_TEXT); + return (React.createElement("div", { className: className, ref: this.handleContentDivRef }, cellContent)); + } + }; + TruncatedFormat.prototype.renderPopover = function () { + var _a = this.props, children = _a.children, preformatted = _a.preformatted; + if (this.state.isPopoverOpen) { + var popoverClasses = classNames(Classes.TABLE_TRUNCATED_POPOVER, preformatted ? Classes.TABLE_POPOVER_WHITESPACE_PRE : Classes.TABLE_POPOVER_WHITESPACE_NORMAL); + var popoverContent = React.createElement("div", { className: popoverClasses }, children); + var constraints = [ + { + attachment: "together", + to: "window", + }, + ]; + return (React.createElement(core_1.Popover, { className: Classes.TABLE_TRUNCATED_POPOVER_TARGET, tetherOptions: { constraints: constraints }, content: popoverContent, position: core_1.Position.BOTTOM, isOpen: true, onClose: this.handlePopoverClose, useSmartArrowPositioning: true }, + React.createElement(core_1.Icon, { iconName: "more" }))); + } + else { + return (React.createElement("span", { className: Classes.TABLE_TRUNCATED_POPOVER_TARGET, onClick: this.handlePopoverOpen }, + React.createElement(core_1.Icon, { iconName: "more" }))); + } + }; + TruncatedFormat.prototype.shouldShowPopover = function (content) { + var _a = this.props, detectTruncation = _a.detectTruncation, showPopover = _a.showPopover, truncateLength = _a.truncateLength; + switch (showPopover) { + case TruncatedPopoverMode.ALWAYS: + return true; + case TruncatedPopoverMode.NEVER: + return false; + case TruncatedPopoverMode.WHEN_TRUNCATED: + return detectTruncation + ? this.state.isTruncated + : truncateLength > 0 && content.length > truncateLength; + default: + return false; + } + }; + TruncatedFormat.prototype.setTruncationState = function () { + if (!this.props.detectTruncation || this.props.showPopover !== TruncatedPopoverMode.WHEN_TRUNCATED) { + return; + } + if (this.contentDiv === undefined) { + this.setState({ isTruncated: false }); + return; + } + var isTruncated = this.state.isTruncated; + var _a = this.contentDiv, containerHeight = _a.clientHeight, containerWidth = _a.clientWidth, actualContentHeight = _a.scrollHeight, contentWidth = _a.scrollWidth; + var actualContentWidth = isTruncated ? contentWidth - CONTENT_DIV_WIDTH_DELTA : contentWidth; + var shouldTruncate = (isTruncated && actualContentWidth === containerWidth) || + actualContentWidth > containerWidth || + actualContentHeight > containerHeight; + this.setState({ isTruncated: shouldTruncate }); + }; + return TruncatedFormat; + }(React.Component)); + TruncatedFormat.defaultProps = { + detectTruncation: false, + preformatted: false, + showPopover: TruncatedPopoverMode.WHEN_TRUNCATED, + truncateLength: 2000, + truncationSuffix: "...", + }; + TruncatedFormat = tslib_1.__decorate([ + PureRender + ], TruncatedFormat); + exports.TruncatedFormat = TruncatedFormat; + + +/***/ }), +/* 608 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var classNames = __webpack_require__(597); + var tslib_1 = __webpack_require__(595); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(598); - var draggable_1 = __webpack_require__(605); - var cell_1 = __webpack_require__(596); + var Classes = __webpack_require__(600); + var draggable_1 = __webpack_require__(609); + var cell_1 = __webpack_require__(598); var EditableCell = (function (_super) { tslib_1.__extends(EditableCell, _super); function EditableCell(props, context) { @@ -77608,17 +77955,17 @@ /***/ }), -/* 605 */ +/* 609 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var PureRender = __webpack_require__(600); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); var ReactDOM = __webpack_require__(33); - var dragEvents_1 = __webpack_require__(606); + var dragEvents_1 = __webpack_require__(610); var REATTACH_PROPS_KEYS = ["stopPropagation", "preventDefault"]; var Draggable = (function (_super) { tslib_1.__extends(Draggable, _super); @@ -77655,7 +78002,7 @@ /***/ }), -/* 606 */ +/* 610 */ /***/ (function(module, exports) { "use strict"; @@ -77799,185 +78146,15 @@ /***/ }), -/* 607 */ -/***/ (function(module, exports, __webpack_require__) { - - "use strict"; - Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var classNames = __webpack_require__(597); - var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var truncatedFormat_1 = __webpack_require__(608); - var JSONFormat = (function (_super) { - tslib_1.__extends(JSONFormat, _super); - function JSONFormat() { - return _super !== null && _super.apply(this, arguments) || this; - } - JSONFormat.prototype.render = function () { - var _a = this.props, children = _a.children, omitQuotesOnStrings = _a.omitQuotesOnStrings, stringify = _a.stringify; - var showPopover = this.props.showPopover; - var isNully = children == null; - if (isNully) { - showPopover = truncatedFormat_1.TruncatedPopoverMode.NEVER; - } - var className = classNames(this.props.className, (_b = {}, - _b[Classes.TABLE_NULL] = isNully, - _b)); - var displayValue = ""; - if (omitQuotesOnStrings && typeof children === "string") { - displayValue = children; - } - else { - displayValue = stringify(children); - } - return (React.createElement(truncatedFormat_1.TruncatedFormat, tslib_1.__assign({}, this.props, { className: className, showPopover: showPopover }), displayValue)); - var _b; - }; - return JSONFormat; - }(React.Component)); - JSONFormat.defaultProps = { - omitQuotesOnStrings: true, - stringify: function (obj) { return JSON.stringify(obj, null, 2); }, - }; - exports.JSONFormat = JSONFormat; - - -/***/ }), -/* 608 */ -/***/ (function(module, exports, __webpack_require__) { - - "use strict"; - Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); - var PureRender = __webpack_require__(600); - var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var CONTENT_DIV_WIDTH_DELTA = 25; - var TruncatedPopoverMode; - (function (TruncatedPopoverMode) { - TruncatedPopoverMode[TruncatedPopoverMode["ALWAYS"] = 0] = "ALWAYS"; - TruncatedPopoverMode[TruncatedPopoverMode["NEVER"] = 1] = "NEVER"; - TruncatedPopoverMode[TruncatedPopoverMode["WHEN_TRUNCATED"] = 2] = "WHEN_TRUNCATED"; - })(TruncatedPopoverMode = exports.TruncatedPopoverMode || (exports.TruncatedPopoverMode = {})); - var TruncatedFormat = (function (_super) { - tslib_1.__extends(TruncatedFormat, _super); - function TruncatedFormat() { - var _this = _super !== null && _super.apply(this, arguments) || this; - _this.state = { - isPopoverOpen: false, - isTruncated: false, - }; - _this.handleContentDivRef = function (ref) { return (_this.contentDiv = ref); }; - _this.handlePopoverOpen = function () { - _this.setState({ isPopoverOpen: true }); - }; - _this.handlePopoverClose = function () { - _this.setState({ isPopoverOpen: false }); - }; - return _this; - } - TruncatedFormat.prototype.componentDidMount = function () { - this.setTruncationState(); - }; - TruncatedFormat.prototype.componentDidUpdate = function () { - this.setTruncationState(); - }; - TruncatedFormat.prototype.render = function () { - var _a = this.props, children = _a.children, detectTruncation = _a.detectTruncation, truncateLength = _a.truncateLength, truncationSuffix = _a.truncationSuffix; - var content = "" + children; - var cellContent = content; - if (!detectTruncation && truncateLength > 0 && cellContent.length > truncateLength) { - cellContent = cellContent.substring(0, truncateLength) + truncationSuffix; - } - if (this.shouldShowPopover(content)) { - var className = classNames(this.props.className, Classes.TABLE_TRUNCATED_FORMAT); - return (React.createElement("div", { className: className }, - React.createElement("div", { className: Classes.TABLE_TRUNCATED_VALUE, ref: this.handleContentDivRef }, cellContent), - this.renderPopover())); - } - else { - var className = classNames(this.props.className, Classes.TABLE_TRUNCATED_FORMAT_TEXT); - return (React.createElement("div", { className: className, ref: this.handleContentDivRef }, cellContent)); - } - }; - TruncatedFormat.prototype.renderPopover = function () { - var _a = this.props, children = _a.children, preformatted = _a.preformatted; - if (this.state.isPopoverOpen) { - var popoverClasses = classNames(Classes.TABLE_TRUNCATED_POPOVER, preformatted ? Classes.TABLE_POPOVER_WHITESPACE_PRE : Classes.TABLE_POPOVER_WHITESPACE_NORMAL); - var popoverContent = React.createElement("div", { className: popoverClasses }, children); - var constraints = [ - { - attachment: "together", - to: "window", - }, - ]; - return (React.createElement(core_1.Popover, { className: Classes.TABLE_TRUNCATED_POPOVER_TARGET, tetherOptions: { constraints: constraints }, content: popoverContent, position: core_1.Position.BOTTOM, isOpen: true, onClose: this.handlePopoverClose, useSmartArrowPositioning: true }, - React.createElement(core_1.Icon, { iconName: "more" }))); - } - else { - return (React.createElement("span", { className: Classes.TABLE_TRUNCATED_POPOVER_TARGET, onClick: this.handlePopoverOpen }, - React.createElement(core_1.Icon, { iconName: "more" }))); - } - }; - TruncatedFormat.prototype.shouldShowPopover = function (content) { - var _a = this.props, detectTruncation = _a.detectTruncation, showPopover = _a.showPopover, truncateLength = _a.truncateLength; - switch (showPopover) { - case TruncatedPopoverMode.ALWAYS: - return true; - case TruncatedPopoverMode.NEVER: - return false; - case TruncatedPopoverMode.WHEN_TRUNCATED: - return detectTruncation - ? this.state.isTruncated - : truncateLength > 0 && content.length > truncateLength; - default: - return false; - } - }; - TruncatedFormat.prototype.setTruncationState = function () { - if (!this.props.detectTruncation || this.props.showPopover !== TruncatedPopoverMode.WHEN_TRUNCATED) { - return; - } - if (this.contentDiv === undefined) { - this.setState({ isTruncated: false }); - return; - } - var isTruncated = this.state.isTruncated; - var _a = this.contentDiv, containerHeight = _a.clientHeight, containerWidth = _a.clientWidth, actualContentHeight = _a.scrollHeight, contentWidth = _a.scrollWidth; - var actualContentWidth = isTruncated ? contentWidth - CONTENT_DIV_WIDTH_DELTA : contentWidth; - var shouldTruncate = (isTruncated && actualContentWidth === containerWidth) || - actualContentWidth > containerWidth || - actualContentHeight > containerHeight; - this.setState({ isTruncated: shouldTruncate }); - }; - return TruncatedFormat; - }(React.Component)); - TruncatedFormat.defaultProps = { - detectTruncation: false, - preformatted: false, - showPopover: TruncatedPopoverMode.WHEN_TRUNCATED, - truncateLength: 2000, - truncationSuffix: "...", - }; - TruncatedFormat = tslib_1.__decorate([ - PureRender - ], TruncatedFormat); - exports.TruncatedFormat = TruncatedFormat; - - -/***/ }), -/* 609 */ +/* 611 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var PureRender = __webpack_require__(600); + var tslib_1 = __webpack_require__(595); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); - var cell_1 = __webpack_require__(596); + var cell_1 = __webpack_require__(598); var Column = (function (_super) { tslib_1.__extends(Column, _super); function Column() { @@ -77995,27 +78172,27 @@ /***/ }), -/* 610 */ +/* 612 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var clipboard_1 = __webpack_require__(611); + var clipboard_1 = __webpack_require__(613); exports.Clipboard = clipboard_1.Clipboard; - var grid_1 = __webpack_require__(612); + var grid_1 = __webpack_require__(614); exports.Grid = grid_1.Grid; - var rect_1 = __webpack_require__(615); + var rect_1 = __webpack_require__(617); exports.Rect = rect_1.Rect; - var renderMode_1 = __webpack_require__(616); + var renderMode_1 = __webpack_require__(618); exports.RenderMode = renderMode_1.RenderMode; - var roundSize_1 = __webpack_require__(617); + var roundSize_1 = __webpack_require__(619); exports.RoundSize = roundSize_1.RoundSize; - var utils_1 = __webpack_require__(614); + var utils_1 = __webpack_require__(616); exports.Utils = utils_1.Utils; /***/ }), -/* 611 */ +/* 613 */ /***/ (function(module, exports) { "use strict"; @@ -78084,16 +78261,16 @@ /***/ }), -/* 612 */ +/* 614 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var regions_1 = __webpack_require__(613); - var Classes = __webpack_require__(598); - var rect_1 = __webpack_require__(615); - var utils_1 = __webpack_require__(614); + var tslib_1 = __webpack_require__(595); + var regions_1 = __webpack_require__(615); + var Classes = __webpack_require__(600); + var rect_1 = __webpack_require__(617); + var utils_1 = __webpack_require__(616); var Grid = (function () { function Grid(rowHeights, columnWidths, bleed, ghostHeight, ghostWidth) { if (bleed === void 0) { bleed = Grid.DEFAULT_BLEED; } @@ -78358,13 +78535,13 @@ /***/ }), -/* 613 */ +/* 615 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var Classes = __webpack_require__(598); - var utils_1 = __webpack_require__(614); + var Classes = __webpack_require__(600); + var utils_1 = __webpack_require__(616); var RegionCardinality; (function (RegionCardinality) { RegionCardinality[RegionCardinality["CELLS"] = 0] = "CELLS"; @@ -78430,6 +78607,21 @@ return null; } }; + Regions.copy = function (region) { + var cardinality = Regions.getRegionCardinality(region); + if (cardinality === RegionCardinality.CELLS) { + return Regions.cell(region.rows[0], region.cols[0], region.rows[1], region.cols[1]); + } + else if (cardinality === RegionCardinality.FULL_COLUMNS) { + return Regions.column(region.cols[0], region.cols[1]); + } + else if (cardinality === RegionCardinality.FULL_ROWS) { + return Regions.row(region.rows[0], region.rows[1]); + } + else { + return Regions.table(); + } + }; Regions.cell = function (row, col, row2, col2) { return { cols: this.normalizeInterval(col, col2), @@ -78450,12 +78642,29 @@ copy.push(region); return copy; }; - Regions.update = function (regions, region) { + Regions.update = function (regions, region, index) { var copy = regions.slice(); - copy.pop(); - copy.push(region); + if (index != null) { + copy.splice(index, 1, region); + } + else { + copy.pop(); + copy.push(region); + } return copy; }; + Regions.clampRegion = function (region, maxRowIndex, maxColumnIndex) { + var nextRegion = Regions.copy(region); + if (region.rows != null) { + nextRegion.rows[0] = utils_1.Utils.clamp(region.rows[0], 0, maxRowIndex); + nextRegion.rows[1] = utils_1.Utils.clamp(region.rows[1], 0, maxRowIndex); + } + if (region.cols != null) { + nextRegion.cols[0] = utils_1.Utils.clamp(region.cols[0], 0, maxColumnIndex); + nextRegion.cols[1] = utils_1.Utils.clamp(region.cols[1], 0, maxColumnIndex); + } + return nextRegion; + }; Regions.lastRegionIsEqual = function (regions, region) { if (regions == null || regions.length === 0) { return false; @@ -78840,13 +79049,13 @@ /***/ }), -/* 614 */ +/* 616 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); var CSS_FONT_PROPERTIES = ["font-style", "font-variant", "font-weight", "font-size", "font-family"]; exports.Utils = { @@ -79020,7 +79229,7 @@ /***/ }), -/* 615 */ +/* 617 */ /***/ (function(module, exports) { "use strict"; @@ -79100,7 +79309,7 @@ /***/ }), -/* 616 */ +/* 618 */ /***/ (function(module, exports) { "use strict"; @@ -79108,19 +79317,20 @@ var RenderMode; (function (RenderMode) { RenderMode[RenderMode["BATCH"] = 0] = "BATCH"; - RenderMode[RenderMode["NONE"] = 1] = "NONE"; + RenderMode[RenderMode["BATCH_ON_UPDATE"] = 1] = "BATCH_ON_UPDATE"; + RenderMode[RenderMode["NONE"] = 2] = "NONE"; })(RenderMode = exports.RenderMode || (exports.RenderMode = {})); /***/ }), -/* 617 */ +/* 619 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); + var Classes = __webpack_require__(600); var RoundSize = (function (_super) { tslib_1.__extends(RoundSize, _super); function RoundSize() { @@ -79154,7 +79364,7 @@ /***/ }), -/* 618 */ +/* 620 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; @@ -79162,22 +79372,22 @@ for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; } Object.defineProperty(exports, "__esModule", { value: true }); - __export(__webpack_require__(619)); - __export(__webpack_require__(620)); + __export(__webpack_require__(621)); + __export(__webpack_require__(622)); /***/ }), -/* 619 */ +/* 621 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var PureRender = __webpack_require__(600); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); - var clipboard_1 = __webpack_require__(611); - var regions_1 = __webpack_require__(613); + var clipboard_1 = __webpack_require__(613); + var regions_1 = __webpack_require__(615); var CopyCellsMenuItem = (function (_super) { tslib_1.__extends(CopyCellsMenuItem, _super); function CopyCellsMenuItem() { @@ -79205,12 +79415,12 @@ /***/ }), -/* 620 */ +/* 622 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var regions_1 = __webpack_require__(613); + var regions_1 = __webpack_require__(615); var MenuContext = (function () { function MenuContext(target, selectedRegions, numRows, numCols) { this.target = target; @@ -79237,17 +79447,17 @@ /***/ }), -/* 621 */ +/* 623 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var classNames = __webpack_require__(597); - var PureRender = __webpack_require__(600); + var tslib_1 = __webpack_require__(595); + var classNames = __webpack_require__(599); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var draggable_1 = __webpack_require__(605); + var Classes = __webpack_require__(600); + var draggable_1 = __webpack_require__(609); var Orientation; (function (Orientation) { Orientation[Orientation["HORIZONTAL"] = 1] = "HORIZONTAL"; @@ -79324,20 +79534,21 @@ /***/ }), -/* 622 */ +/* 624 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var PureRender = __webpack_require__(600); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); - var FocusedCellUtils = __webpack_require__(623); - var utils_1 = __webpack_require__(614); - var regions_1 = __webpack_require__(613); - var dragEvents_1 = __webpack_require__(606); - var draggable_1 = __webpack_require__(605); + var FocusedCellUtils = __webpack_require__(625); + var PlatformUtils = __webpack_require__(627); + var utils_1 = __webpack_require__(616); + var regions_1 = __webpack_require__(615); + var dragEvents_1 = __webpack_require__(610); + var draggable_1 = __webpack_require__(609); var DragSelectable = (function (_super) { tslib_1.__extends(DragSelectable, _super); function DragSelectable() { @@ -79357,10 +79568,13 @@ } var foundIndex = regions_1.Regions.findMatchingRegion(selectedRegions, region); var matchesExistingSelection = foundIndex !== -1; - if (matchesExistingSelection) { - _this.handleUpdateExistingSelection(foundIndex, event); + if (matchesExistingSelection && dragEvents_1.DragEvents.isAdditive(event)) { + _this.handleClearSelectionAtIndex(foundIndex); return false; } + if (matchesExistingSelection) { + _this.handleClearAllSelectionsNotAtIndex(foundIndex); + } else if (_this.shouldExpandSelection(event)) { _this.handleExpandSelection(region); } @@ -79407,21 +79621,22 @@ var allowMultipleSelection = _this.props.allowMultipleSelection; return allowMultipleSelection && dragEvents_1.DragEvents.isAdditive(event); }; - _this.handleUpdateExistingSelection = function (selectedRegionIndex, event) { + _this.handleClearSelectionAtIndex = function (selectedRegionIndex) { var selectedRegions = _this.props.selectedRegions; - if (dragEvents_1.DragEvents.isAdditive(event)) { - var nextSelectedRegions = selectedRegions.slice(); - nextSelectedRegions.splice(selectedRegionIndex, 1); - _this.maybeInvokeSelectionCallback(nextSelectedRegions); - if (nextSelectedRegions.length > 0) { - var lastIndex = nextSelectedRegions.length - 1; - _this.invokeOnFocusCallbackForRegion(nextSelectedRegions[lastIndex], lastIndex); - } - } - else { - _this.maybeInvokeSelectionCallback([]); + var nextSelectedRegions = selectedRegions.slice(); + nextSelectedRegions.splice(selectedRegionIndex, 1); + _this.maybeInvokeSelectionCallback(nextSelectedRegions); + if (nextSelectedRegions.length > 0) { + var lastIndex = nextSelectedRegions.length - 1; + _this.invokeOnFocusCallbackForRegion(nextSelectedRegions[lastIndex], lastIndex); } }; + _this.handleClearAllSelectionsNotAtIndex = function (selectedRegionIndex) { + var selectedRegions = _this.props.selectedRegions; + var nextSelectedRegion = selectedRegions[selectedRegionIndex]; + _this.maybeInvokeSelectionCallback([nextSelectedRegion]); + _this.invokeOnFocusCallbackForRegion(nextSelectedRegion, 0); + }; _this.handleExpandSelection = function (region) { var _a = _this.props, focusedCell = _a.focusedCell, selectedRegions = _a.selectedRegions; _this.didExpandSelectionOnActivate = true; @@ -79470,13 +79685,14 @@ }; }; DragSelectable.prototype.shouldIgnoreMouseDown = function (event) { - var _a = this.props.ignoredSelectors, ignoredSelectors = _a === void 0 ? [] : _a; + var _a = this.props, disabled = _a.disabled, _b = _a.ignoredSelectors, ignoredSelectors = _b === void 0 ? [] : _b; var element = event.target; var isLeftClick = utils_1.Utils.isLeftClick(event); - var isContextMenuTrigger = isLeftClick && event.ctrlKey; + var isContextMenuTrigger = isLeftClick && event.ctrlKey && PlatformUtils.isMac(); + var isDisabled = core_1.Utils.safeInvokeOrValue(disabled, event); return (!isLeftClick || isContextMenuTrigger || - this.props.disabled || + isDisabled || ignoredSelectors.some(function (selector) { return element.closest(selector) != null; })); }; DragSelectable.prototype.maybeInvokeSelectionCallback = function (nextSelectedRegions) { @@ -79514,14 +79730,26 @@ /***/ }), -/* 623 */ +/* 625 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var regions_1 = __webpack_require__(613); - var Errors = __webpack_require__(624); + var tslib_1 = __webpack_require__(595); + var regions_1 = __webpack_require__(615); + var Errors = __webpack_require__(626); + function getFocusedOrLastSelectedIndex(selectedRegions, focusedCell) { + if (selectedRegions.length === 0) { + return undefined; + } + else if (focusedCell != null) { + return focusedCell.focusSelectionIndex; + } + else { + return selectedRegions.length - 1; + } + } + exports.getFocusedOrLastSelectedIndex = getFocusedOrLastSelectedIndex; function getInitialFocusedCell(enableFocus, focusedCellFromProps, focusedCellFromState, selectedRegions) { if (!enableFocus) { return undefined; @@ -79541,6 +79769,22 @@ } } exports.getInitialFocusedCell = getInitialFocusedCell; + function isFocusedCellAtRegionTop(region, focusedCell) { + return region.rows != null && focusedCell.row === region.rows[0]; + } + exports.isFocusedCellAtRegionTop = isFocusedCellAtRegionTop; + function isFocusedCellAtRegionBottom(region, focusedCell) { + return region.rows != null && focusedCell.row === region.rows[1]; + } + exports.isFocusedCellAtRegionBottom = isFocusedCellAtRegionBottom; + function isFocusedCellAtRegionLeft(region, focusedCell) { + return region.cols != null && focusedCell.col === region.cols[0]; + } + exports.isFocusedCellAtRegionLeft = isFocusedCellAtRegionLeft; + function isFocusedCellAtRegionRight(region, focusedCell) { + return region.cols != null && focusedCell.col === region.cols[1]; + } + exports.isFocusedCellAtRegionRight = isFocusedCellAtRegionRight; function toFullCoordinates(cellCoords, focusSelectionIndex) { if (focusSelectionIndex === void 0) { focusSelectionIndex = 0; } return tslib_1.__assign({}, cellCoords, { focusSelectionIndex: focusSelectionIndex }); @@ -79581,7 +79825,7 @@ /***/ }), -/* 624 */ +/* 626 */ /***/ (function(module, exports) { "use strict"; @@ -79605,19 +79849,37 @@ /***/ }), -/* 625 */ +/* 627 */ +/***/ (function(module, exports) { + + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + function isMac(platformOverride) { + var platformActual = typeof navigator !== "undefined" ? navigator.platform : undefined; + var platform = platformOverride != null ? platformOverride : platformActual; + return platform == null ? false : /Mac|iPod|iPhone|iPad/.test(platform); + } + exports.isMac = isMac; + exports.isModKeyPressed = function (event, platformOverride) { + var isMacPlatform = isMac(platformOverride); + return (isMacPlatform && event.metaKey) || (!isMacPlatform && event.ctrlKey); + }; + + +/***/ }), +/* 628 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var classNames = __webpack_require__(597); + var tslib_1 = __webpack_require__(595); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(598); - var Errors = __webpack_require__(624); - var loadableContent_1 = __webpack_require__(599); - var headerCell_1 = __webpack_require__(626); + var Classes = __webpack_require__(600); + var Errors = __webpack_require__(626); + var loadableContent_1 = __webpack_require__(601); + var headerCell_1 = __webpack_require__(629); function HorizontalCellDivider() { return React.createElement("div", { className: Classes.TABLE_HORIZONTAL_CELL_DIVIDER }); } @@ -79719,16 +79981,16 @@ /***/ }), -/* 626 */ +/* 629 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var classNames = __webpack_require__(597); + var tslib_1 = __webpack_require__(595); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(598); + var Classes = __webpack_require__(600); var HeaderCell = (function (_super) { tslib_1.__extends(HeaderCell, _super); function HeaderCell() { @@ -79769,18 +80031,18 @@ /***/ }), -/* 627 */ +/* 630 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); - var Classes = __webpack_require__(598); - var Errors = __webpack_require__(624); - var loadableContent_1 = __webpack_require__(599); - var headerCell_1 = __webpack_require__(626); + var Classes = __webpack_require__(600); + var Errors = __webpack_require__(626); + var loadableContent_1 = __webpack_require__(601); + var headerCell_1 = __webpack_require__(629); var RowHeaderCell = (function (_super) { tslib_1.__extends(RowHeaderCell, _super); function RowHeaderCell() { @@ -79806,17 +80068,17 @@ /***/ }), -/* 628 */ +/* 631 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); - var PureRender = __webpack_require__(600); + var classNames = __webpack_require__(599); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); + var Classes = __webpack_require__(600); var EditableName = (function (_super) { tslib_1.__extends(EditableName, _super); function EditableName() { @@ -79835,36 +80097,38 @@ /***/ }), -/* 629 */ +/* 632 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var column_1 = __webpack_require__(609); - var Classes = __webpack_require__(598); - var clipboard_1 = __webpack_require__(611); - var Errors = __webpack_require__(624); - var grid_1 = __webpack_require__(612); - var FocusedCellUtils = __webpack_require__(623); - var ScrollUtils = __webpack_require__(630); - var rect_1 = __webpack_require__(615); - var renderMode_1 = __webpack_require__(616); - var utils_1 = __webpack_require__(614); - var columnHeader_1 = __webpack_require__(631); - var columnHeaderCell_1 = __webpack_require__(625); - var rowHeader_1 = __webpack_require__(635); - var resizeSensor_1 = __webpack_require__(636); - var guides_1 = __webpack_require__(637); - var regions_1 = __webpack_require__(638); - var locator_1 = __webpack_require__(639); - var tableQuadrant_1 = __webpack_require__(640); - var tableQuadrantStack_1 = __webpack_require__(641); - var regions_2 = __webpack_require__(613); - var tableBody_1 = __webpack_require__(643); + var column_1 = __webpack_require__(611); + var Classes = __webpack_require__(600); + var clipboard_1 = __webpack_require__(613); + var direction_1 = __webpack_require__(633); + var Errors = __webpack_require__(626); + var grid_1 = __webpack_require__(614); + var FocusedCellUtils = __webpack_require__(625); + var ScrollUtils = __webpack_require__(634); + var SelectionUtils = __webpack_require__(635); + var rect_1 = __webpack_require__(617); + var renderMode_1 = __webpack_require__(618); + var utils_1 = __webpack_require__(616); + var columnHeader_1 = __webpack_require__(637); + var columnHeaderCell_1 = __webpack_require__(628); + var rowHeader_1 = __webpack_require__(641); + var resizeSensor_1 = __webpack_require__(642); + var guides_1 = __webpack_require__(643); + var regions_1 = __webpack_require__(644); + var locator_1 = __webpack_require__(645); + var tableQuadrant_1 = __webpack_require__(646); + var tableQuadrantStack_1 = __webpack_require__(647); + var regions_2 = __webpack_require__(615); + var tableBody_1 = __webpack_require__(649); var Table = Table_1 = (function (_super) { tslib_1.__extends(Table, _super); function Table(props, context) { @@ -79879,6 +80143,23 @@ scrollContainer: function (ref) { return (_this.scrollContainerElement = ref); }, }; _this.didUpdateColumnOrRowSizes = false; + _this.didCompletelyMount = false; + _this.handleSelectionResizeUp = function (e) { return _this.handleSelectionResize(e, direction_1.Direction.UP); }; + _this.handleSelectionResizeDown = function (e) { return _this.handleSelectionResize(e, direction_1.Direction.DOWN); }; + _this.handleSelectionResizeLeft = function (e) { return _this.handleSelectionResize(e, direction_1.Direction.LEFT); }; + _this.handleSelectionResizeRight = function (e) { return _this.handleSelectionResize(e, direction_1.Direction.RIGHT); }; + _this.handleSelectionResize = function (e, direction) { + e.preventDefault(); + e.stopPropagation(); + var _a = _this.state, focusedCell = _a.focusedCell, selectedRegions = _a.selectedRegions; + if (selectedRegions.length === 0) { + return; + } + var index = FocusedCellUtils.getFocusedOrLastSelectedIndex(selectedRegions, focusedCell); + var region = selectedRegions[index]; + var nextRegion = SelectionUtils.resizeRegion(region, direction, focusedCell); + _this.updateSelectedRegionAtIndex(nextRegion, index); + }; _this.handleCopy = function (e) { var _a = _this.props, getCellClipboardData = _a.getCellClipboardData, onCopy = _a.onCopy; var selectedRegions = _this.state.selectedRegions; @@ -79982,24 +80263,23 @@ _this.renderBody = function (quadrantType, showFrozenRowsOnly, showFrozenColumnsOnly) { if (showFrozenRowsOnly === void 0) { showFrozenRowsOnly = false; } if (showFrozenColumnsOnly === void 0) { showFrozenColumnsOnly = false; } - var _a = _this.state, focusedCell = _a.focusedCell, selectedRegions = _a.selectedRegions, viewportRect = _a.viewportRect; - var _b = _this.props, allowMultipleSelection = _b.allowMultipleSelection, fillBodyWithGhostCells = _b.fillBodyWithGhostCells, loadingOptions = _b.loadingOptions, renderBodyContextMenu = _b.renderBodyContextMenu, renderMode = _b.renderMode, selectedRegionTransform = _b.selectedRegionTransform; - var numFrozenColumns = _this.getNumFrozenColumnsClamped(); - var numFrozenRows = _this.getNumFrozenRowsClamped(); + var _a = _this.state, focusedCell = _a.focusedCell, numFrozenColumns = _a.numFrozenColumnsClamped, numFrozenRows = _a.numFrozenRowsClamped, selectedRegions = _a.selectedRegions, viewportRect = _a.viewportRect; + var _b = _this.props, allowMultipleSelection = _b.allowMultipleSelection, fillBodyWithGhostCells = _b.fillBodyWithGhostCells, loadingOptions = _b.loadingOptions, renderBodyContextMenu = _b.renderBodyContextMenu, selectedRegionTransform = _b.selectedRegionTransform; var rowIndices = _this.grid.getRowIndicesInRect(viewportRect, fillBodyWithGhostCells); var columnIndices = _this.grid.getColumnIndicesInRect(viewportRect, fillBodyWithGhostCells); - var columnIndexStart = showFrozenColumnsOnly ? 0 : columnIndices.columnIndexStart; - var columnIndexEnd = showFrozenColumnsOnly ? numFrozenColumns : columnIndices.columnIndexEnd; - var rowIndexStart = showFrozenRowsOnly ? 0 : rowIndices.rowIndexStart; - var rowIndexEnd = showFrozenRowsOnly ? numFrozenRows : rowIndices.rowIndexEnd; + var columnIndexStart = showFrozenColumnsOnly ? 0 : columnIndices.columnIndexStart + numFrozenColumns; + var rowIndexStart = showFrozenRowsOnly ? 0 : rowIndices.rowIndexStart + numFrozenRows; + var columnIndexEnd = showFrozenColumnsOnly ? numFrozenColumns - 1 : columnIndices.columnIndexEnd; + var rowIndexEnd = showFrozenRowsOnly ? numFrozenRows - 1 : rowIndices.rowIndexEnd; var onCompleteRender = quadrantType === tableQuadrant_1.QuadrantType.MAIN ? _this.handleCompleteRender : undefined; return (React.createElement("div", null, - React.createElement(tableBody_1.TableBody, { allowMultipleSelection: allowMultipleSelection, cellRenderer: _this.bodyCellRenderer, focusedCell: focusedCell, grid: _this.grid, loading: _this.hasLoadingOption(loadingOptions, regions_2.TableLoadingOption.CELLS), locator: _this.locator, onCompleteRender: onCompleteRender, onFocus: _this.handleFocus, onSelection: _this.getEnabledSelectionHandler(regions_2.RegionCardinality.CELLS), renderBodyContextMenu: renderBodyContextMenu, renderMode: renderMode, selectedRegions: selectedRegions, selectedRegionTransform: selectedRegionTransform, viewportRect: viewportRect, columnIndexStart: columnIndexStart, columnIndexEnd: columnIndexEnd, rowIndexStart: rowIndexStart, rowIndexEnd: rowIndexEnd, numFrozenColumns: showFrozenColumnsOnly ? numFrozenColumns : undefined, numFrozenRows: showFrozenRowsOnly ? numFrozenRows : undefined }), + React.createElement(tableBody_1.TableBody, { allowMultipleSelection: allowMultipleSelection, cellRenderer: _this.bodyCellRenderer, focusedCell: focusedCell, grid: _this.grid, loading: _this.hasLoadingOption(loadingOptions, regions_2.TableLoadingOption.CELLS), locator: _this.locator, onCompleteRender: onCompleteRender, onFocus: _this.handleFocus, onSelection: _this.getEnabledSelectionHandler(regions_2.RegionCardinality.CELLS), renderBodyContextMenu: renderBodyContextMenu, renderMode: _this.getNormalizedRenderMode(), selectedRegions: selectedRegions, selectedRegionTransform: selectedRegionTransform, viewportRect: viewportRect, columnIndexStart: columnIndexStart, columnIndexEnd: columnIndexEnd, rowIndexStart: rowIndexStart, rowIndexEnd: rowIndexEnd, numFrozenColumns: showFrozenColumnsOnly ? numFrozenColumns : undefined, numFrozenRows: showFrozenRowsOnly ? numFrozenRows : undefined }), _this.maybeRenderRegions(_this.styleBodyRegion, quadrantType))); }; _this.handleCompleteRender = function () { if (_this.state.viewportRect != null) { core_1.Utils.safeInvoke(_this.props.onCompleteRender); + _this.didCompletelyMount = true; } }; _this.handleFocusMoveLeft = function (e) { return _this.handleFocusMove(e, "left"); }; @@ -80354,11 +80634,11 @@ } }; _this.getMaxFrozenColumnIndex = function () { - var numFrozenColumns = _this.getNumFrozenColumnsClamped(); + var numFrozenColumns = _this.state.numFrozenColumnsClamped; return numFrozenColumns != null ? numFrozenColumns - 1 : undefined; }; _this.getMaxFrozenRowIndex = function () { - var numFrozenRows = _this.getNumFrozenRowsClamped(); + var numFrozenRows = _this.state.numFrozenRowsClamped; return numFrozenRows != null ? numFrozenRows - 1 : undefined; }; _this.handleColumnResizeGuide = function (verticalGuides) { @@ -80381,6 +80661,8 @@ focusedCell: focusedCell, isLayoutLocked: false, isReordering: false, + numFrozenColumnsClamped: clampNumFrozenColumns(props), + numFrozenRowsClamped: clampNumFrozenRows(props), rowHeights: newRowHeights, selectedRegions: selectedRegions, }; @@ -80396,6 +80678,32 @@ } return columnIdToIndex; }; + Table.prototype.resizeRowsByApproximateHeight = function (getCellText, options) { + var numRows = this.props.numRows; + var columnWidths = this.state.columnWidths; + var numColumns = columnWidths.length; + var rowHeights = []; + for (var rowIndex = 0; rowIndex < numRows; rowIndex++) { + var maxCellHeightInRow = 0; + for (var columnIndex = 0; columnIndex < numColumns; columnIndex++) { + var _a = this.resolveResizeRowsByApproximateHeightOptions(options, rowIndex, columnIndex), approxCharWidth = _a.getApproximateCharWidth, approxLineHeight = _a.getApproximateLineHeight, horizontalPadding = _a.getCellHorizontalPadding, numBufferLines = _a.getNumBufferLines; + var cellText = getCellText(rowIndex, columnIndex); + var numCharsInCell = cellText == null ? 0 : cellText.length; + var actualCellWidth = columnWidths[columnIndex]; + var availableCellWidth = actualCellWidth - horizontalPadding; + var approxCharsPerLine = availableCellWidth / approxCharWidth; + var approxNumLinesDesired = Math.ceil(numCharsInCell / approxCharsPerLine) + numBufferLines; + var approxCellHeight = approxNumLinesDesired * approxLineHeight; + if (approxCellHeight > maxCellHeightInRow) { + maxCellHeightInRow = approxCellHeight; + } + } + rowHeights.push(maxCellHeightInRow); + } + this.invalidateGrid(); + this.didUpdateColumnOrRowSizes = true; + this.setState({ rowHeights: rowHeights }); + }; Table.prototype.resizeRowsByTallestCell = function (columnIndices) { var _this = this; var tallest = 0; @@ -80416,10 +80724,9 @@ this.setState({ rowHeights: rowHeights }); }; Table.prototype.scrollToRegion = function (region) { - var _a = this.state.viewportRect, currScrollLeft = _a.left, currScrollTop = _a.top; - var numFrozenRows = this.getNumFrozenRowsClamped(); - var numFrozenColumns = this.getNumFrozenColumnsClamped(); - var _b = ScrollUtils.getScrollPositionForRegion(region, currScrollLeft, currScrollTop, this.grid.getCumulativeWidthBefore, this.grid.getCumulativeHeightBefore, numFrozenRows, numFrozenColumns), scrollLeft = _b.scrollLeft, scrollTop = _b.scrollTop; + var _a = this.state, numFrozenColumns = _a.numFrozenColumnsClamped, numFrozenRows = _a.numFrozenRowsClamped; + var _b = this.state.viewportRect, currScrollLeft = _b.left, currScrollTop = _b.top; + var _c = ScrollUtils.getScrollPositionForRegion(region, currScrollLeft, currScrollTop, this.grid.getCumulativeWidthBefore, this.grid.getCumulativeHeightBefore, numFrozenRows, numFrozenColumns), scrollLeft = _c.scrollLeft, scrollTop = _c.scrollTop; var correctedScrollLeft = this.shouldDisableHorizontalScroll() ? 0 : scrollLeft; var correctedScrollTop = this.shouldDisableVerticalScroll() ? 0 : scrollTop; this.quadrantStackInstance.scrollToPosition(correctedScrollLeft, correctedScrollTop); @@ -80464,13 +80771,15 @@ this.setState({ columnWidths: newColumnWidths, focusedCell: newFocusedCell, + numFrozenColumnsClamped: clampNumFrozenColumns(nextProps), + numFrozenRowsClamped: clampNumFrozenRows(nextProps), rowHeights: newRowHeights, selectedRegions: newSelectedRegions, }); }; Table.prototype.render = function () { var _a = this.props, children = _a.children, className = _a.className, isRowHeaderShown = _a.isRowHeaderShown, loadingOptions = _a.loadingOptions, numRows = _a.numRows, useInteractionBar = _a.useInteractionBar; - var _b = this.state, horizontalGuides = _b.horizontalGuides, verticalGuides = _b.verticalGuides; + var _b = this.state, horizontalGuides = _b.horizontalGuides, numFrozenColumnsClamped = _b.numFrozenColumnsClamped, numFrozenRowsClamped = _b.numFrozenRowsClamped, verticalGuides = _b.verticalGuides; this.validateGrid(); var classes = classNames(Classes.TABLE_CONTAINER, (_c = {}, _c[Classes.TABLE_REORDERING] = this.state.isReordering, @@ -80480,7 +80789,7 @@ _c[Classes.TABLE_NO_ROWS] = numRows === 0, _c), className); return (React.createElement("div", { className: classes, ref: this.refHandlers.rootTable, onScroll: this.handleRootScroll }, - React.createElement(tableQuadrantStack_1.TableQuadrantStack, { bodyRef: this.refHandlers.cellContainer, columnHeaderRef: this.refHandlers.columnHeader, grid: this.grid, handleColumnResizeGuide: this.handleColumnResizeGuide, handleColumnsReordering: this.handleColumnsReordering, handleRowResizeGuide: this.handleRowResizeGuide, handleRowsReordering: this.handleRowsReordering, isHorizontalScrollDisabled: this.shouldDisableHorizontalScroll(), isRowHeaderShown: isRowHeaderShown, isVerticalScrollDisabled: this.shouldDisableVerticalScroll(), loadingOptions: loadingOptions, numColumns: React.Children.count(children), numFrozenColumns: this.getNumFrozenColumnsClamped(), numFrozenRows: this.getNumFrozenRowsClamped(), numRows: numRows, onScroll: this.handleBodyScroll, quadrantRef: this.refHandlers.mainQuadrant, ref: this.refHandlers.quadrantStack, renderBody: this.renderBody, renderColumnHeader: this.renderColumnHeader, renderMenu: this.renderMenu, renderRowHeader: this.renderRowHeader, rowHeaderRef: this.refHandlers.rowHeader, scrollContainerRef: this.refHandlers.scrollContainer, useInteractionBar: useInteractionBar }), + React.createElement(tableQuadrantStack_1.TableQuadrantStack, { bodyRef: this.refHandlers.cellContainer, columnHeaderRef: this.refHandlers.columnHeader, grid: this.grid, handleColumnResizeGuide: this.handleColumnResizeGuide, handleColumnsReordering: this.handleColumnsReordering, handleRowResizeGuide: this.handleRowResizeGuide, handleRowsReordering: this.handleRowsReordering, isHorizontalScrollDisabled: this.shouldDisableHorizontalScroll(), isRowHeaderShown: isRowHeaderShown, isVerticalScrollDisabled: this.shouldDisableVerticalScroll(), loadingOptions: loadingOptions, numColumns: React.Children.count(children), numFrozenColumns: numFrozenColumnsClamped, numFrozenRows: numFrozenRowsClamped, numRows: numRows, onScroll: this.handleBodyScroll, quadrantRef: this.refHandlers.mainQuadrant, ref: this.refHandlers.quadrantStack, renderBody: this.renderBody, renderColumnHeader: this.renderColumnHeader, renderMenu: this.renderMenu, renderRowHeader: this.renderRowHeader, rowHeaderRef: this.refHandlers.rowHeader, scrollContainerRef: this.refHandlers.scrollContainer, useInteractionBar: useInteractionBar }), React.createElement("div", { className: classNames(Classes.TABLE_OVERLAY_LAYER, "bp-table-reordering-cursor-overlay") }), React.createElement(guides_1.GuideLayer, { className: Classes.TABLE_RESIZE_GUIDES, verticalGuides: verticalGuides, horizontalGuides: horizontalGuides }))); var _c; @@ -80490,6 +80799,7 @@ this.maybeRenderCopyHotkey(), this.maybeRenderSelectAllHotkey(), this.maybeRenderFocusHotkeys(), + this.maybeRenderSelectionResizeHotkeys(), ]; return React.createElement(core_1.Hotkeys, null, hotkeys.filter(function (element) { return element !== undefined; })); }; @@ -80510,6 +80820,7 @@ this.resizeSensorDetach(); delete this.resizeSensorDetach; } + this.didCompletelyMount = false; }; Table.prototype.componentDidUpdate = function () { if (this.locator != null) { @@ -80559,6 +80870,66 @@ console.warn(Errors.TABLE_NUM_FROZEN_COLUMNS_BOUND_WARNING); } }; + Table.prototype.maybeRenderCopyHotkey = function () { + var getCellClipboardData = this.props.getCellClipboardData; + if (getCellClipboardData != null) { + return (React.createElement(core_1.Hotkey, { key: "copy-hotkey", label: "Copy selected table cells", group: "Table", combo: "mod+c", onKeyDown: this.handleCopy })); + } + else { + return undefined; + } + }; + Table.prototype.maybeRenderSelectionResizeHotkeys = function () { + var _a = this.props, allowMultipleSelection = _a.allowMultipleSelection, selectionModes = _a.selectionModes; + var isSomeSelectionModeEnabled = selectionModes.length > 0; + if (allowMultipleSelection && isSomeSelectionModeEnabled) { + return [ + React.createElement(core_1.Hotkey, { key: "resize-selection-up", label: "Resize selection upward", group: "Table", combo: "shift+up", onKeyDown: this.handleSelectionResizeUp }), + React.createElement(core_1.Hotkey, { key: "resize-selection-down", label: "Resize selection downward", group: "Table", combo: "shift+down", onKeyDown: this.handleSelectionResizeDown }), + React.createElement(core_1.Hotkey, { key: "resize-selection-left", label: "Resize selection leftward", group: "Table", combo: "shift+left", onKeyDown: this.handleSelectionResizeLeft }), + React.createElement(core_1.Hotkey, { key: "resize-selection-right", label: "Resize selection rightward", group: "Table", combo: "shift+right", onKeyDown: this.handleSelectionResizeRight }), + ]; + } + else { + return undefined; + } + }; + Table.prototype.maybeRenderFocusHotkeys = function () { + var enableFocus = this.props.enableFocus; + if (enableFocus != null) { + return [ + React.createElement(core_1.Hotkey, { key: "move left", label: "Move focus cell left", group: "Table", combo: "left", onKeyDown: this.handleFocusMoveLeft }), + React.createElement(core_1.Hotkey, { key: "move right", label: "Move focus cell right", group: "Table", combo: "right", onKeyDown: this.handleFocusMoveRight }), + React.createElement(core_1.Hotkey, { key: "move up", label: "Move focus cell up", group: "Table", combo: "up", onKeyDown: this.handleFocusMoveUp }), + React.createElement(core_1.Hotkey, { key: "move down", label: "Move focus cell down", group: "Table", combo: "down", onKeyDown: this.handleFocusMoveDown }), + React.createElement(core_1.Hotkey, { key: "move tab", label: "Move focus cell tab", group: "Table", combo: "tab", onKeyDown: this.handleFocusMoveRightInternal }), + React.createElement(core_1.Hotkey, { key: "move shift-tab", label: "Move focus cell shift tab", group: "Table", combo: "shift+tab", onKeyDown: this.handleFocusMoveLeftInternal }), + React.createElement(core_1.Hotkey, { key: "move enter", label: "Move focus cell enter", group: "Table", combo: "enter", onKeyDown: this.handleFocusMoveDownInternal }), + React.createElement(core_1.Hotkey, { key: "move shift-enter", label: "Move focus cell shift enter", group: "Table", combo: "shift+enter", onKeyDown: this.handleFocusMoveUpInternal }), + ]; + } + else { + return []; + } + }; + Table.prototype.maybeRenderSelectAllHotkey = function () { + if (this.isSelectionModeEnabled(regions_2.RegionCardinality.FULL_TABLE)) { + return (React.createElement(core_1.Hotkey, { key: "select-all-hotkey", label: "Select all", group: "Table", combo: "mod+a", onKeyDown: this.handleSelectAllHotkey })); + } + else { + return undefined; + } + }; + Table.prototype.updateSelectedRegionAtIndex = function (region, index) { + var _a = this.props, children = _a.children, numRows = _a.numRows; + var selectedRegions = this.state.selectedRegions; + var numColumns = React.Children.count(children); + var maxRowIndex = Math.max(0, numRows - 1); + var maxColumnIndex = Math.max(0, numColumns - 1); + var clampedNextRegion = regions_2.Regions.clampRegion(region, maxRowIndex, maxColumnIndex); + var nextSelectedRegions = regions_2.Regions.update(selectedRegions, clampedNextRegion, index); + this.handleSelection(nextSelectedRegions); + }; Table.prototype.moveFocusCell = function (primaryAxis, secondaryAxis, isUpOrLeft, newFocusedCell, focusCellRegion) { var selectedRegions = this.state.selectedRegions; var primaryAxisPlural = primaryAxis === "row" ? "rows" : "cols"; @@ -80664,41 +81035,6 @@ return (React.createElement(regions_1.RegionLayer, { className: classNames(regionGroup.className), key: index, regions: regionGroup.regions, regionStyles: regionStyles })); }); }; - Table.prototype.maybeRenderCopyHotkey = function () { - var getCellClipboardData = this.props.getCellClipboardData; - if (getCellClipboardData != null) { - return (React.createElement(core_1.Hotkey, { key: "copy-hotkey", label: "Copy selected table cells", group: "Table", combo: "mod+c", onKeyDown: this.handleCopy })); - } - else { - return undefined; - } - }; - Table.prototype.maybeRenderFocusHotkeys = function () { - var enableFocus = this.props.enableFocus; - if (enableFocus != null) { - return [ - React.createElement(core_1.Hotkey, { key: "move left", label: "Move focus cell left", group: "Table", combo: "left", onKeyDown: this.handleFocusMoveLeft }), - React.createElement(core_1.Hotkey, { key: "move right", label: "Move focus cell right", group: "Table", combo: "right", onKeyDown: this.handleFocusMoveRight }), - React.createElement(core_1.Hotkey, { key: "move up", label: "Move focus cell up", group: "Table", combo: "up", onKeyDown: this.handleFocusMoveUp }), - React.createElement(core_1.Hotkey, { key: "move down", label: "Move focus cell down", group: "Table", combo: "down", onKeyDown: this.handleFocusMoveDown }), - React.createElement(core_1.Hotkey, { key: "move tab", label: "Move focus cell tab", group: "Table", combo: "tab", onKeyDown: this.handleFocusMoveRightInternal }), - React.createElement(core_1.Hotkey, { key: "move shift-tab", label: "Move focus cell shift tab", group: "Table", combo: "shift+tab", onKeyDown: this.handleFocusMoveLeftInternal }), - React.createElement(core_1.Hotkey, { key: "move enter", label: "Move focus cell enter", group: "Table", combo: "enter", onKeyDown: this.handleFocusMoveDownInternal }), - React.createElement(core_1.Hotkey, { key: "move shift-enter", label: "Move focus cell shift enter", group: "Table", combo: "shift+enter", onKeyDown: this.handleFocusMoveUpInternal }), - ]; - } - else { - return []; - } - }; - Table.prototype.maybeRenderSelectAllHotkey = function () { - if (this.isSelectionModeEnabled(regions_2.RegionCardinality.FULL_TABLE)) { - return (React.createElement(core_1.Hotkey, { key: "select-all-hotkey", label: "Select all", group: "Table", combo: "mod+a", onKeyDown: this.handleSelectAllHotkey })); - } - else { - return undefined; - } - }; Table.prototype.syncViewportPosition = function (nextScrollLeft, nextScrollTop) { var viewportRect = this.state.viewportRect; var didScrollTopChange = nextScrollTop !== viewportRect.top; @@ -80719,24 +81055,30 @@ Table.prototype.updateLocator = function () { this.locator .setGrid(this.grid) - .setNumFrozenRows(this.getNumFrozenRowsClamped()) - .setNumFrozenColumns(this.getNumFrozenColumnsClamped()); + .setNumFrozenRows(this.state.numFrozenRowsClamped) + .setNumFrozenColumns(this.state.numFrozenColumnsClamped); }; Table.prototype.invokeOnVisibleCellsChangeCallback = function (viewportRect) { var columnIndices = this.grid.getColumnIndicesInRect(viewportRect); var rowIndices = this.grid.getRowIndicesInRect(viewportRect); core_1.Utils.safeInvoke(this.props.onVisibleCellsChange, rowIndices, columnIndices); }; - Table.prototype.getNumFrozenColumnsClamped = function (props) { - if (props === void 0) { props = this.props; } - var numFrozenColumns = props.numFrozenColumns; - var numColumns = React.Children.count(props.children); - return utils_1.Utils.clamp(numFrozenColumns, 0, numColumns); - }; - Table.prototype.getNumFrozenRowsClamped = function (props) { - if (props === void 0) { props = this.props; } - var numFrozenRows = props.numFrozenRows, numRows = props.numRows; - return utils_1.Utils.clamp(numFrozenRows, 0, numRows); + Table.prototype.getNormalizedRenderMode = function () { + var renderMode = this.props.renderMode; + var shouldBatchRender = renderMode === renderMode_1.RenderMode.BATCH || (renderMode === renderMode_1.RenderMode.BATCH_ON_UPDATE && this.didCompletelyMount); + return shouldBatchRender ? renderMode_1.RenderMode.BATCH : renderMode_1.RenderMode.NONE; + }; + Table.prototype.resolveResizeRowsByApproximateHeightOptions = function (options, rowIndex, columnIndex) { + var optionKeys = Object.keys(Table_1.resizeRowsByApproximateHeightDefaults); + var optionReducer = function (agg, key) { + agg[key] = + options != null && options[key] != null + ? core_1.Utils.safeInvokeOrValue(options[key], rowIndex, columnIndex) + : Table_1.resizeRowsByApproximateHeightDefaults[key]; + return agg; + }; + var resolvedOptions = optionKeys.reduce(optionReducer, {}); + return resolvedOptions; }; return Table; }(core_1.AbstractComponent)); @@ -80750,11 +81092,19 @@ loadingOptions: [], minColumnWidth: 50, minRowHeight: 20, + numFrozenColumns: 0, + numFrozenRows: 0, numRows: 0, - renderMode: renderMode_1.RenderMode.BATCH, + renderMode: renderMode_1.RenderMode.BATCH_ON_UPDATE, renderRowHeader: rowHeader_1.renderDefaultRowHeader, selectionModes: regions_2.SelectionModes.ALL, }; + Table.resizeRowsByApproximateHeightDefaults = { + getApproximateCharWidth: 8, + getApproximateLineHeight: 18, + getCellHorizontalPadding: 2 * locator_1.Locator.CELL_HORIZONTAL_PADDING, + getNumBufferLines: 1, + }; Table.SHALLOW_COMPARE_PROP_KEYS_BLACKLIST = [ "selectedRegions", ]; @@ -80766,16 +81116,43 @@ core_1.HotkeysTarget ], Table); exports.Table = Table; + function clampNumFrozenColumns(props) { + var numFrozenColumns = props.numFrozenColumns; + var numColumns = React.Children.count(props.children); + return clampPotentiallyNullValue(numFrozenColumns, numColumns); + } + function clampNumFrozenRows(props) { + var numFrozenRows = props.numFrozenRows, numRows = props.numRows; + return clampPotentiallyNullValue(numFrozenRows, numRows); + } + function clampPotentiallyNullValue(value, max) { + return value == null ? 0 : utils_1.Utils.clamp(value, 0, max); + } var Table_1; /***/ }), -/* 630 */ +/* 633 */ +/***/ (function(module, exports) { + + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + var Direction; + (function (Direction) { + Direction[Direction["UP"] = 0] = "UP"; + Direction[Direction["DOWN"] = 1] = "DOWN"; + Direction[Direction["LEFT"] = 2] = "LEFT"; + Direction[Direction["RIGHT"] = 3] = "RIGHT"; + })(Direction = exports.Direction || (exports.Direction = {})); + + +/***/ }), +/* 634 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var regions_1 = __webpack_require__(613); + var regions_1 = __webpack_require__(615); function getScrollPositionForRegion(region, currScrollLeft, currScrollTop, getLeftOffset, getTopOffset, numFrozenRows, numFrozenColumns) { if (numFrozenRows === void 0) { numFrozenRows = 0; } if (numFrozenColumns === void 0) { numFrozenColumns = 0; } @@ -80823,20 +81200,95 @@ /***/ }), -/* 631 */ +/* 635 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var classNames = __webpack_require__(597); + var regions_1 = __webpack_require__(615); + var direction_1 = __webpack_require__(633); + var DirectionUtils = __webpack_require__(636); + var FocusedCellUtils = __webpack_require__(625); + function resizeRegion(region, direction, focusedCell) { + if (regions_1.Regions.getRegionCardinality(region) === regions_1.RegionCardinality.FULL_TABLE) { + return region; + } + var nextRegion = regions_1.Regions.copy(region); + var affectedRowIndex = 0; + var affectedColumnIndex = 0; + if (focusedCell != null) { + var isAtTop = FocusedCellUtils.isFocusedCellAtRegionTop(nextRegion, focusedCell); + var isAtBottom = FocusedCellUtils.isFocusedCellAtRegionBottom(nextRegion, focusedCell); + var isAtLeft = FocusedCellUtils.isFocusedCellAtRegionLeft(nextRegion, focusedCell); + var isAtRight = FocusedCellUtils.isFocusedCellAtRegionRight(nextRegion, focusedCell); + if (direction === direction_1.Direction.UP) { + affectedRowIndex = isAtTop && !isAtBottom ? 1 : 0; + } + else if (direction === direction_1.Direction.DOWN) { + affectedRowIndex = isAtBottom && !isAtTop ? 0 : 1; + } + else if (direction === direction_1.Direction.LEFT) { + affectedColumnIndex = isAtLeft && !isAtRight ? 1 : 0; + } + else { + affectedColumnIndex = isAtRight && !isAtLeft ? 0 : 1; + } + } + else { + affectedRowIndex = direction === direction_1.Direction.DOWN ? 1 : 0; + affectedColumnIndex = direction === direction_1.Direction.RIGHT ? 1 : 0; + } + var delta = DirectionUtils.directionToDelta(direction); + if (nextRegion.rows != null) { + nextRegion.rows[affectedRowIndex] += delta.rows; + } + if (nextRegion.cols != null) { + nextRegion.cols[affectedColumnIndex] += delta.cols; + } + return nextRegion; + } + exports.resizeRegion = resizeRegion; + + +/***/ }), +/* 636 */ +/***/ (function(module, exports, __webpack_require__) { + + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + var direction_1 = __webpack_require__(633); + function directionToDelta(direction) { + switch (direction) { + case direction_1.Direction.UP: + return { rows: -1, cols: 0 }; + case direction_1.Direction.DOWN: + return { rows: +1, cols: 0 }; + case direction_1.Direction.LEFT: + return { rows: 0, cols: -1 }; + case direction_1.Direction.RIGHT: + return { rows: 0, cols: +1 }; + default: + return undefined; + } + } + exports.directionToDelta = directionToDelta; + + +/***/ }), +/* 637 */ +/***/ (function(module, exports, __webpack_require__) { + + "use strict"; + Object.defineProperty(exports, "__esModule", { value: true }); + var tslib_1 = __webpack_require__(595); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var index_1 = __webpack_require__(610); - var resizeHandle_1 = __webpack_require__(621); - var regions_1 = __webpack_require__(613); - var columnHeaderCell_1 = __webpack_require__(625); - var header_1 = __webpack_require__(632); + var Classes = __webpack_require__(600); + var index_1 = __webpack_require__(612); + var resizeHandle_1 = __webpack_require__(623); + var regions_1 = __webpack_require__(615); + var columnHeaderCell_1 = __webpack_require__(628); + var header_1 = __webpack_require__(638); var ColumnHeader = (function (_super) { tslib_1.__extends(ColumnHeader, _super); function ColumnHeader() { @@ -80919,31 +81371,32 @@ /***/ }), -/* 632 */ +/* 638 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var reorderable_1 = __webpack_require__(633); - var resizable_1 = __webpack_require__(634); - var selectable_1 = __webpack_require__(622); - var regions_1 = __webpack_require__(613); + var Classes = __webpack_require__(600); + var dragEvents_1 = __webpack_require__(610); + var reorderable_1 = __webpack_require__(639); + var resizable_1 = __webpack_require__(640); + var selectable_1 = __webpack_require__(624); + var regions_1 = __webpack_require__(615); var SHALLOW_COMPARE_PROP_KEYS_BLACKLIST = ["focusedCell", "selectedRegions"]; var Header = (function (_super) { tslib_1.__extends(Header, _super); function Header(props, context) { var _this = _super.call(this, props, context) || this; - _this.state = { - hasSelectionEnded: false, + _this.convertEventToIndex = function (event) { + var coord = _this.props.getMouseCoordinate(event); + return _this.props.convertPointToIndex(coord); }; _this.locateClick = function (event) { - var coord = _this.props.getMouseCoordinate(event); - _this.activationIndex = _this.props.convertPointToIndex(coord); + _this.activationIndex = _this.convertEventToIndex(event); return _this.props.toRegion(_this.activationIndex); }; _this.locateDragForSelection = function (_event, coords, returnEndOnly) { @@ -80976,7 +81429,7 @@ var cell = _this.props.renderHeaderCell(index); var isLoading = cell.props.loading != null ? cell.props.loading : _this.props.loading; var isSelected = _this.props.isCellSelected(index); - var isEntireCellTargetReorderable = _this.isEntireCellTargetReorderable(isSelected); + var isEntireCellTargetReorderable = _this.isEntireCellTargetReorderable(index); var className = classNames(extremaClasses, (_b = {}, _b[Classes.TABLE_HEADER_REORDERABLE] = isEntireCellTargetReorderable, _b), _this.props.getCellIndexClass(index), cell.props.className); @@ -80994,44 +81447,50 @@ var modifiedHandleResizeHandleDoubleClick = function () { return core_1.Utils.safeInvoke(_this.props.handleResizeDoubleClick, index); }; - var baseChildren = (React.createElement(selectable_1.DragSelectable, { allowMultipleSelection: _this.props.allowMultipleSelection, disabled: isEntireCellTargetReorderable, focusedCell: _this.props.focusedCell, ignoredSelectors: ["." + Classes.TABLE_REORDER_HANDLE_TARGET], key: getIndexClass(index), locateClick: _this.locateClick, locateDrag: _this.locateDragForSelection, onFocus: _this.props.onFocus, onSelection: _this.handleDragSelectableSelection, onSelectionEnd: _this.handleDragSelectableSelectionEnd, selectedRegions: selectedRegions, selectedRegionTransform: _this.props.selectedRegionTransform }, + var baseChildren = (React.createElement(selectable_1.DragSelectable, { allowMultipleSelection: _this.props.allowMultipleSelection, disabled: _this.isDragSelectableDisabled, focusedCell: _this.props.focusedCell, ignoredSelectors: ["." + Classes.TABLE_REORDER_HANDLE_TARGET], key: getIndexClass(index), locateClick: _this.locateClick, locateDrag: _this.locateDragForSelection, onFocus: _this.props.onFocus, onSelection: _this.handleDragSelectableSelection, onSelectionEnd: _this.handleDragSelectableSelectionEnd, selectedRegions: selectedRegions, selectedRegionTransform: _this.props.selectedRegionTransform }, React.createElement(resizable_1.Resizable, { isResizable: _this.props.isResizable, maxSize: _this.props.maxSize, minSize: _this.props.minSize, onDoubleClick: modifiedHandleResizeHandleDoubleClick, onLayoutLock: _this.props.onLayoutLock, onResizeEnd: modifiedHandleResizeEnd, onSizeChanged: modifiedHandleSizeChanged, orientation: _this.props.resizeOrientation, size: _this.props.getCellSize(index) }, React.cloneElement(cell, cellProps)))); return _this.isReorderHandleEnabled() ? baseChildren - : _this.wrapInDragReorderable(index, baseChildren, !isEntireCellTargetReorderable); + : _this.wrapInDragReorderable(index, baseChildren, _this.isDragReorderableDisabled); var _b, _c; }; _this.handleDragSelectableSelection = function (selectedRegions) { _this.props.onSelection(selectedRegions); - _this.setState({ hasSelectionEnded: false }); + _this.setState({ hasValidSelection: false }); }; _this.handleDragSelectableSelectionEnd = function () { _this.activationIndex = null; - _this.setState({ hasSelectionEnded: true }); + _this.setState({ hasValidSelection: true }); + }; + _this.isDragSelectableDisabled = function (event) { + if (dragEvents_1.DragEvents.isAdditive(event)) { + return false; + } + var cellIndex = _this.convertEventToIndex(event); + return _this.isEntireCellTargetReorderable(cellIndex); + }; + _this.isDragReorderableDisabled = function (event) { + var isSelectionEnabled = !_this.isDragSelectableDisabled(event); + if (isSelectionEnabled) { + return true; + } + var cellIndex = _this.convertEventToIndex(event); + return !_this.isEntireCellTargetReorderable(cellIndex); }; - _this.isEntireCellTargetReorderable = function (isSelected) { + _this.isEntireCellTargetReorderable = function (index) { var selectedRegions = _this.props.selectedRegions; return (_this.props.isReorderable && - isSelected && - _this.state.hasSelectionEnded && + _this.props.isCellSelected(index) && + _this.state.hasValidSelection && regions_1.Regions.getRegionCardinality(selectedRegions[0]) === _this.props.fullRegionCardinality && selectedRegions.length === 1 && !_this.isReorderHandleEnabled()); }; + _this.state = { hasValidSelection: _this.isSelectedRegionsControlledAndNonEmpty(props) }; return _this; } - Header.prototype.componentDidMount = function () { - if (this.props.selectedRegions != null && this.props.selectedRegions.length > 0) { - this.setState({ hasSelectionEnded: true }); - } - }; Header.prototype.componentWillReceiveProps = function (nextProps) { - if (nextProps.selectedRegions != null && nextProps.selectedRegions.length > 0) { - this.setState({ hasSelectionEnded: true }); - } - else { - this.setState({ hasSelectionEnded: false }); - } + this.setState({ hasValidSelection: this.isSelectedRegionsControlledAndNonEmpty(nextProps) }); }; Header.prototype.shouldComponentUpdate = function (nextProps, nextState) { return (!core_1.Utils.shallowCompareKeys(this.state, nextState) || @@ -81041,6 +81500,10 @@ Header.prototype.render = function () { return this.props.wrapCells(this.renderCells()); }; + Header.prototype.isSelectedRegionsControlledAndNonEmpty = function (props) { + if (props === void 0) { props = this.props; } + return props.selectedRegions != null && props.selectedRegions.length > 0; + }; Header.prototype.isReorderHandleEnabled = function () { return this.isColumnHeader() && this.props.isReorderable; }; @@ -81049,7 +81512,7 @@ ? undefined : this.wrapInDragReorderable(index, React.createElement("div", { className: Classes.TABLE_REORDER_HANDLE_TARGET }, React.createElement("div", { className: Classes.TABLE_REORDER_HANDLE }, - React.createElement("span", { className: classNames(core_1.Classes.ICON_STANDARD, core_1.IconClasses.DRAG_HANDLE_VERTICAL) })))); + React.createElement("span", { className: classNames(core_1.Classes.ICON_STANDARD, core_1.IconClasses.DRAG_HANDLE_VERTICAL) }))), false); }; Header.prototype.isColumnHeader = function () { return this.props.fullRegionCardinality === regions_1.RegionCardinality.FULL_COLUMNS; @@ -81063,24 +81526,24 @@ /***/ }), -/* 633 */ +/* 639 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var PureRender = __webpack_require__(600); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); - var utils_1 = __webpack_require__(614); - var regions_1 = __webpack_require__(613); - var draggable_1 = __webpack_require__(605); + var utils_1 = __webpack_require__(616); + var regions_1 = __webpack_require__(615); + var draggable_1 = __webpack_require__(609); var DragReorderable = (function (_super) { tslib_1.__extends(DragReorderable, _super); function DragReorderable() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.handleActivate = function (event) { - if (!utils_1.Utils.isLeftClick(event) || _this.props.disabled) { + if (_this.shouldIgnoreMouseDown(event)) { return false; } var region = _this.props.locateClick(event); @@ -81145,6 +81608,11 @@ onDragMove: this.handleDragMove, }; }; + DragReorderable.prototype.shouldIgnoreMouseDown = function (event) { + var disabled = this.props.disabled; + var isDisabled = core_1.Utils.isFunction(disabled) ? core_1.Utils.safeInvoke(disabled, event) : disabled; + return !utils_1.Utils.isLeftClick(event) || isDisabled; + }; DragReorderable.prototype.maybeSelectRegion = function (region) { var nextSelectedRegions = [region]; if (!core_1.Utils.deepCompareKeys(nextSelectedRegions, this.props.selectedRegions)) { @@ -81164,16 +81632,16 @@ /***/ }), -/* 634 */ +/* 640 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var PureRender = __webpack_require__(600); + var tslib_1 = __webpack_require__(595); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); - var index_1 = __webpack_require__(610); - var resizeHandle_1 = __webpack_require__(621); + var index_1 = __webpack_require__(612); + var resizeHandle_1 = __webpack_require__(623); var Resizable = (function (_super) { tslib_1.__extends(Resizable, _super); function Resizable(props, context) { @@ -81253,26 +81721,23 @@ /***/ }), -/* 635 */ +/* 641 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); - var classNames = __webpack_require__(597); + var tslib_1 = __webpack_require__(595); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var resizeHandle_1 = __webpack_require__(621); - var regions_1 = __webpack_require__(613); - var header_1 = __webpack_require__(632); - var rowHeaderCell_1 = __webpack_require__(627); + var Classes = __webpack_require__(600); + var resizeHandle_1 = __webpack_require__(623); + var regions_1 = __webpack_require__(615); + var header_1 = __webpack_require__(638); + var rowHeaderCell_1 = __webpack_require__(630); var RowHeader = (function (_super) { tslib_1.__extends(RowHeader, _super); function RowHeader() { var _this = _super !== null && _super.apply(this, arguments) || this; - _this.defaultProps = { - renderRowHeader: renderDefaultRowHeader, - }; _this.wrapCells = function (cells) { var _a = _this.props, rowIndexStart = _a.rowIndexStart, grid = _a.grid; var tableHeight = grid.getRect().height; @@ -81329,6 +81794,9 @@ }; return RowHeader; }(React.Component)); + RowHeader.defaultProps = { + renderRowHeader: renderDefaultRowHeader, + }; exports.RowHeader = RowHeader; function renderDefaultRowHeader(rowIndex) { return React.createElement(rowHeaderCell_1.RowHeaderCell, { index: rowIndex, name: "" + (rowIndex + 1) }); @@ -81337,12 +81805,12 @@ /***/ }), -/* 636 */ +/* 642 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var Classes = __webpack_require__(598); + var Classes = __webpack_require__(600); var ResizeSensor = (function () { function ResizeSensor() { } @@ -81415,16 +81883,16 @@ /***/ }), -/* 637 */ +/* 643 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); + var Classes = __webpack_require__(600); var GuideLayer = (function (_super) { tslib_1.__extends(GuideLayer, _super); function GuideLayer() { @@ -81470,17 +81938,17 @@ /***/ }), -/* 638 */ +/* 644 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var regions_1 = __webpack_require__(613); + var Classes = __webpack_require__(600); + var regions_1 = __webpack_require__(615); var UPDATE_PROPS_KEYS = ["className"]; var RegionLayer = (function (_super) { tslib_1.__extends(RegionLayer, _super); @@ -81513,14 +81981,14 @@ /***/ }), -/* 639 */ +/* 645 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var Classes = __webpack_require__(598); - var rect_1 = __webpack_require__(615); - var utils_1 = __webpack_require__(614); + var Classes = __webpack_require__(600); + var rect_1 = __webpack_require__(617); + var utils_1 = __webpack_require__(616); var Locator = (function () { function Locator(tableElement, scrollContainerElement, cellContainerElement) { var _this = this; @@ -81665,17 +82133,17 @@ /***/ }), -/* 640 */ +/* 646 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var Errors = __webpack_require__(624); + var Classes = __webpack_require__(600); + var Errors = __webpack_require__(626); var QuadrantType; (function (QuadrantType) { QuadrantType[QuadrantType["MAIN"] = 0] = "MAIN"; @@ -81739,19 +82207,19 @@ /***/ }), -/* 641 */ +/* 647 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var ScrollUtils = __webpack_require__(630); - var utils_1 = __webpack_require__(614); - var tableQuadrant_1 = __webpack_require__(640); - var tableQuadrantStackCache_1 = __webpack_require__(642); + var Classes = __webpack_require__(600); + var ScrollUtils = __webpack_require__(634); + var utils_1 = __webpack_require__(616); + var tableQuadrant_1 = __webpack_require__(646); + var tableQuadrantStackCache_1 = __webpack_require__(648); var DEFAULT_COLUMN_HEADER_HEIGHT = 30; var DEFAULT_VIEW_SYNC_DELAY = 500; var QUADRANT_MIN_SIZE = 1; @@ -82159,7 +82627,7 @@ /***/ }), -/* 642 */ +/* 648 */ /***/ (function(module, exports) { "use strict"; @@ -82215,22 +82683,22 @@ /***/ }), -/* 643 */ +/* 649 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var Classes = __webpack_require__(598); - var contextMenuTargetWrapper_1 = __webpack_require__(644); - var renderMode_1 = __webpack_require__(616); - var menus_1 = __webpack_require__(618); - var selectable_1 = __webpack_require__(622); - var regions_1 = __webpack_require__(613); - var tableBodyCells_1 = __webpack_require__(645); + var Classes = __webpack_require__(600); + var contextMenuTargetWrapper_1 = __webpack_require__(650); + var renderMode_1 = __webpack_require__(618); + var menus_1 = __webpack_require__(620); + var selectable_1 = __webpack_require__(624); + var regions_1 = __webpack_require__(615); + var tableBodyCells_1 = __webpack_require__(651); var DEEP_COMPARE_KEYS = ["selectedRegions"]; var TableBody = (function (_super) { tslib_1.__extends(TableBody, _super); @@ -82298,14 +82766,14 @@ /***/ }), -/* 644 */ +/* 650 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var PureRender = __webpack_require__(600); + var PureRender = __webpack_require__(602); var React = __webpack_require__(3); var ContextMenuTargetWrapper = (function (_super) { tslib_1.__extends(ContextMenuTargetWrapper, _super); @@ -82329,21 +82797,21 @@ /***/ }), -/* 645 */ +/* 651 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var core_1 = __webpack_require__(179); - var classNames = __webpack_require__(597); + var classNames = __webpack_require__(599); var React = __webpack_require__(3); - var cell_1 = __webpack_require__(596); - var batcher_1 = __webpack_require__(646); - var Classes = __webpack_require__(598); - var rect_1 = __webpack_require__(615); - var renderMode_1 = __webpack_require__(616); - var utils_1 = __webpack_require__(614); + var cell_1 = __webpack_require__(598); + var batcher_1 = __webpack_require__(652); + var Classes = __webpack_require__(600); + var rect_1 = __webpack_require__(617); + var renderMode_1 = __webpack_require__(618); + var utils_1 = __webpack_require__(616); var SHALLOW_COMPARE_BLACKLIST = ["viewportRect"]; var BATCHER_RESET_PROP_KEYS_BLACKLIST = [ "columnIndexEnd", @@ -82356,11 +82824,11 @@ function TableBodyCells() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.batcher = new batcher_1.Batcher(); - _this.renderNewCell = function (row, col) { + _this.renderNewCell = function (rowIndex, columnIndex) { var _a = _this.props, columnIndexEnd = _a.columnIndexEnd, grid = _a.grid, rowIndexEnd = _a.rowIndexEnd; - var extremaClasses = grid.getExtremaClasses(row, col, rowIndexEnd, columnIndexEnd); - var isGhost = grid.isGhostIndex(row, col); - return _this.renderCell(row, col, extremaClasses, isGhost); + var extremaClasses = grid.getExtremaClasses(rowIndex, columnIndex, rowIndexEnd, columnIndexEnd); + var isGhost = grid.isGhostIndex(rowIndex, columnIndex); + return _this.renderCell(rowIndex, columnIndex, extremaClasses, isGhost); }; _this.renderCell = function (rowIndex, columnIndex, extremaClasses, isGhost) { var _a = _this.props, cellRenderer = _a.cellRenderer, loading = _a.loading, grid = _a.grid; @@ -82435,15 +82903,16 @@ return cells; }; TableBodyCells.prototype.renderAllCells = function () { - var _a = this.props, columnIndexEnd = _a.columnIndexEnd, columnIndexStart = _a.columnIndexStart, grid = _a.grid, rowIndexEnd = _a.rowIndexEnd, rowIndexStart = _a.rowIndexStart; + var _a = this.props, columnIndexEnd = _a.columnIndexEnd, columnIndexStart = _a.columnIndexStart, rowIndexEnd = _a.rowIndexEnd, rowIndexStart = _a.rowIndexStart; var cells = []; + var cellsArgs = []; for (var rowIndex = rowIndexStart; rowIndex <= rowIndexEnd; rowIndex++) { for (var columnIndex = columnIndexStart; columnIndex <= columnIndexEnd; columnIndex++) { - var extremaClasses = grid.getExtremaClasses(rowIndex, columnIndex, rowIndexEnd, columnIndexEnd); - var isGhost = grid.isGhostIndex(rowIndex, columnIndex); - cells.push(this.renderCell(rowIndex, columnIndex, extremaClasses, isGhost)); + cells.push(this.renderNewCell(rowIndex, columnIndex)); + cellsArgs.push([rowIndex, columnIndex]); } } + this.batcher.setList(cellsArgs, cells); return cells; }; TableBodyCells.prototype.maybeInvokeOnCompleteRender = function () { @@ -82465,13 +82934,13 @@ /***/ }), -/* 646 */ +/* 652 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var core_1 = __webpack_require__(179); - var requestIdleCallback_1 = __webpack_require__(647); + var requestIdleCallback_1 = __webpack_require__(653); var Batcher = (function () { function Batcher() { var _this = this; @@ -82501,7 +82970,7 @@ for (var _i = 0; _i < arguments.length; _i++) { args[_i] = arguments[_i]; } - this.batchArgs[args.join(Batcher.ARG_DELIMITER)] = args; + this.batchArgs[this.getKey(args)] = args; }; Batcher.prototype.removeOldAddNew = function (callback, addNewLimit, removeOldLimit, updateLimit) { var _this = this; @@ -82543,6 +83012,18 @@ Batcher.prototype.cancelOutstandingCallback = function () { delete this.callback; }; + Batcher.prototype.setList = function (objectsArgs, objects) { + var _this = this; + this.reset(); + objectsArgs.forEach(function (args, i) { + _this.addArgsToBatch.apply(_this, args); + _this.currentObjects[_this.getKey(args)] = objects[i]; + }); + this.done = true; + }; + Batcher.prototype.getKey = function (args) { + return args.join(Batcher.ARG_DELIMITER); + }; Batcher.prototype.setKeysDifference = function (a, b, limit) { return this.setKeysOperation(a, b, "difference", limit); }; @@ -82584,7 +83065,7 @@ /***/ }), -/* 647 */ +/* 653 */ /***/ (function(module, exports) { "use strict"; @@ -82633,23 +83114,23 @@ /***/ }), -/* 648 */ +/* 654 */ /***/ (function(module, exports) { module.exports = [{"number":4179,"name":"Toutatis","year":1989,"absoluteMagnitude":15.3,"discoverer":"Pollas, C.","observatory":"Caussols"},{"number":4953,"name":"1990 MU","year":1990,"absoluteMagnitude":14.1,"discoverer":"McNaught, R. H.","observatory":"Siding Spring"},{"number":7341,"name":"1991 VK","year":1991,"absoluteMagnitude":16.7,"discoverer":"Helin, E. F., Lawrence, K. J.","observatory":"Palomar"},{"number":5604,"name":"1992 FE","year":1992,"absoluteMagnitude":16.4,"discoverer":"McNaught, R. H","observatory":"Siding Spring"},{"number":39572,"name":"1993 DQ1","year":1993,"absoluteMagnitude":16.4,"discoverer":"Spacewatch","observatory":"Kitt Peak"},{"number":136618,"name":"1994 CN2","year":1994,"absoluteMagnitude":16.6,"discoverer":"Spacewatch","observatory":"Kitt Peak"},{"number":243556,"name":"1995 SA","year":1995,"absoluteMagnitude":17.3,"discoverer":"Spacewatch","observatory":"Kitt Peak"},{"number":8566,"name":"1996 EN","year":1996,"absoluteMagnitude":16.5,"discoverer":"JPL/GEODSS NEAT","observatory":"Haleakala"},{"number":35396,"name":"1996 XF11","year":1997,"absoluteMagnitude":16.9,"discoverer":"Spacewatch","observatory":"Kitt Peak"},{"number":16960,"name":"1998 QS52","year":1998,"absoluteMagnitude":14.3,"discoverer":"LINEAR","observatory":"Socorro"},{"number":137427,"name":"1999 TF211","year":1999,"absoluteMagnitude":15,"discoverer":"LINEAR","observatory":"Socorro"},{"number":23187,"name":"2000 PN9","year":2000,"absoluteMagnitude":16.1,"discoverer":"LINEAR","observatory":"Socorro"},{"number":111253,"name":"2001 XU10","year":2001,"absoluteMagnitude":14.9,"discoverer":"LINEAR","observatory":"Socorro"},{"number":89830,"name":"2002 CE","year":2002,"absoluteMagnitude":14.7,"discoverer":"LINEAR","observatory":"Socorro"},{"number":242216,"name":"2003 RN10","year":2003,"absoluteMagnitude":15.7,"discoverer":"LONEOS","observatory":"Anderson Mesa"},{"number":242450,"name":"2004 QY2","year":2004,"absoluteMagnitude":14.7,"discoverer":"Siding Spring Survey","observatory":"Siding Spring"},{"number":308242,"name":"2005 GO21","year":2005,"absoluteMagnitude":16.4,"discoverer":"Siding Spring Survey","observatory":"Siding Spring"},{"number":374851,"name":"2006 VV2","year":2006,"absoluteMagnitude":16.8,"discoverer":"LINEAR","observatory":"Socorro"},{"number":214869,"name":"2007 PA8","year":2007,"absoluteMagnitude":16.2,"discoverer":"LINEAR","observatory":"Socorro"},{"number":294739,"name":"2008 CM","year":2008,"absoluteMagnitude":17.2,"discoverer":"CSS","observatory":"Catalina"},{"number":369264,"name":"2009 MS","year":2009,"absoluteMagnitude":16,"discoverer":"Mt. Lemmon Survey","observatory":"Mount Lemmon"},{"number":381906,"name":"2010 CL19","year":2010,"absoluteMagnitude":17.6,"discoverer":"Mt. Lemmon Survey","observatory":"Mount Lemmon"}] /***/ }), -/* 649 */ +/* 655 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(594); - var bigSpaceRocks = __webpack_require__(648); + var src_1 = __webpack_require__(596); + var bigSpaceRocks = __webpack_require__(654); var ColumnLoadingExample = (function (_super) { tslib_1.__extends(ColumnLoadingExample, _super); function ColumnLoadingExample() { @@ -82702,15 +83183,15 @@ /***/ }), -/* 650 */ +/* 656 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(594); + var src_1 = __webpack_require__(596); var TableDollarExample = (function (_super) { tslib_1.__extends(TableDollarExample, _super); function TableDollarExample() { @@ -82727,16 +83208,16 @@ /***/ }), -/* 651 */ +/* 657 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(594); + var src_1 = __webpack_require__(596); var TableEditableExample = (function (_super) { tslib_1.__extends(TableEditableExample, _super); function TableEditableExample() { @@ -82824,15 +83305,15 @@ /***/ }), -/* 652 */ +/* 658 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(594); + var src_1 = __webpack_require__(596); var LOCAL_TIMEZONE_OFFSET_MSEC = new Date().getTimezoneOffset() * 60 * 1000; var TIME_ZONES = [ ["-12:00", -12.0, "Etc/GMT+12"], @@ -82922,15 +83403,15 @@ /***/ }), -/* 653 */ +/* 659 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(594); + var src_1 = __webpack_require__(596); var NUM_ROWS = 20; var NUM_COLUMNS = 20; var NUM_FROZEN_ROWS = 2; @@ -82958,17 +83439,17 @@ /***/ }), -/* 654 */ +/* 660 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(594); - var bigSpaceRocks = __webpack_require__(648); + var src_1 = __webpack_require__(596); + var bigSpaceRocks = __webpack_require__(654); var TableLoadingExample = (function (_super) { tslib_1.__extends(TableLoadingExample, _super); function TableLoadingExample() { @@ -83029,16 +83510,16 @@ /***/ }), -/* 655 */ +/* 661 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(594); + var src_1 = __webpack_require__(596); var REORDERABLE_TABLE_DATA = [ ["A", "Apple", "Ape", "Albania", "Anchorage"], ["B", "Banana", "Boa", "Brazil", "Boston"], @@ -83110,17 +83591,17 @@ /***/ }), -/* 656 */ +/* 662 */ /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); - var tslib_1 = __webpack_require__(593); + var tslib_1 = __webpack_require__(595); var React = __webpack_require__(3); var core_1 = __webpack_require__(179); var docs_1 = __webpack_require__(172); - var src_1 = __webpack_require__(594); - var sumo = __webpack_require__(657); + var src_1 = __webpack_require__(596); + var sumo = __webpack_require__(663); var AbstractSortableColumn = (function () { function AbstractSortableColumn(name, index) { this.name = name; @@ -83282,28 +83763,28 @@ /***/ }), -/* 657 */ +/* 663 */ /***/ (function(module, exports) { module.exports = [["Hakuho","Y1e","15-0 Y","Y1e","14-1 Y","Y1e","11-4 J","Y1e","14-1 Y","Y1e","0-3-12","Y1w","12-3 J"],["Kakuryu","Y1w","10-5","Y2e","0-1-14","Y2e","0-0-15","Y2e","12-3 J","Y1w","12-3 Y","Y1e","9-6"],["Harumafuji","Y2e","11-4 J","Y1w","10-5","Y1w","11-4 J","Y1w","1-1-13","Y2e","0-0-15","Y2e","13-2 Y"],["Kisenosato","O1e","11-4 J","O1e","9-6","O1e","11-4 J","O1e","10-5","O1w","11-4","O1w","10-5"],["Kotoshogiku","O1w","9-6","O1w","8-7","O1w","6-9","O2e","8-7","O2w","11-4","O2e","8-6-1"],["Goeido","O2w","8-7","O2w","8-7","O2w","8-6-1","O1w","9-6","O2e","7-8","O2w","8-7"],["Aoiyama","S1e","5-10","M3w","5-10","M6w","9-6","M2w","8-7","M1e","7-8","M2e","7-8"],["Ichinojo","S1w","6-9","M1w","9-6","K1w","8-7","S1w","4-11","M4e","9-6","M1e","6-9"],["Takayasu","K1e","6-9","M3e","3-12","M8w","10-5","M2e","6-9","M3w","1-3-11","M12w","9-6"],["Tochiozan","K1w","7-8","M1e","10-5","K1e","8-7","S1e","10-5","S1e","8-7","S1e","8-7"],["Takarafuji","M1e","7-8","M2w","8-7","M1e","9-6","K1e","4-11","M4w","4-11","M8w","10-5"],["Tochinoshin","M1w","6-9","M4w","8-7","M1w","9-6","M1e","8-7","K1e","10-5","K1e","7-8"],["Terunofuji","M2e","8-7","S1e","13-2 J","S1e","12-3 Y","O2w","11-4","O1e","12-3 D","O1e","9-6"],["Ikioi","M2w","1-14","M13e","8-7","M10e","10-5","M3e","2-13","M12e","11-4","M4e","12-3 J"],["Endo","M3e","6-9","M5w","4-2-9","M9w","6-9","M12e","10-5","M7e","8-7","M4w","4-11"],["Aminishiki","M3w","6-9","M6e","8-3-4","M2w","6-9","M4e","6-9","M6e","8-7","M3w","8-7"],["Toyonoshima","M4e","7-8","M5e","8-7","M2e","4-11","M7w","7-8","M8w","10-5","M3e","5-9-1"],["Jokoryu","M4w","5-7-3","M9w","5-10","M15e","5-10","J3e","7-8","J4e","8-7","J3w","9-6"],["Kaisei","M5e","7-8","M6w","5-10","M11e","10-5","M3w","6-9","M5w","6-9","M7e","9-6"],["Chiyotairyu","M5w","1-6-8","J1w","7-8","J2w","9-6","M13w","8-4-3","M11e","6-9","M13e","8-7"],["Okinoumi","M6e","9-6","S1w","0-4-11","M10w","9-6","M5e","11-4","K1w","6-9","M2w","5-10"],["Toyohibiki","M6w","3-12","M15e","8-7","M12w","6-9","M14e","5-10","J3e","10-5","M13w","7-8"],["Kyokutenho","M7e","5-10","M11w","6-9","M14w","8-7","M11w","3-12","","","",""],["Chiyootori","M7w","5-8-2","M12e","11-4","M4e","0-2-13","J1e","9-6","M12w","6-9","M15w","10-5"],["Myogiryu","M8e","9-6","K1w","8-7","S1w","7-8","K1w","8-7","S1w","8-7","S1w","2-13"],["Sadanoumi","M8w","9-6","M2e","7-8","M3e","8-7","M1w","6-9","M3e","6-9","M5w","5-10"],["Tamawashi","M9e","10-5","K1e","4-11","M5w","6-9","M7e","8-7","M5e","4-11","M9e","8-7"],["Takekaze","M9w","9-6","M4e","4-11","M8e","8-7","M4w","5-10","M8e","5-10","M12e","7-8"],["Sokokurai","M10e","6-9","M13w","9-6","M7e","1-4-10","J2e","9-6","M14w","8-7","M10e","9-6"],["Homarefuji","M10w","8-7","M7e","6-9","M9e","7-8","M9w","6-9","M11w","9-6","M6w","3-12"],["Shohozan","M11e","8-7","M8e","1-14","J3w","7-8","J4w","6-9","J6w","13-2 Y","M10w","12-3 J"],["Yoshikaze","M11w","8-7","M9e","5-10","M14e","10-5","M8e","12-3 J","M1w","11-4","K1w","8-7"],["Kyokushuho","M12e","8-7","M10e","7-8","M11w","9-6","M6e","5-10","M10w","8-7","M7w","9-6"],["Arawashi","M12w","7-8","M14w","8-7","M12e","2-13","J7e","9-6","J3w","7-8","J5e","8-7"],["Osunaarashi","M13e","8-7","M11e","11-4","M3w","4-4-7","M8w","11-4","M2e","8-7","M1w","5-9-1"],["Tokitenku","M13w","9-6","M8w","3-12","J1e","10-5","M11e","6-9","M13w","7-8","M14w","0-0-15"],["Kotoyuki","M14e","8-7","M12w","6-9","M15w","8-7","M12w","8-7","M10e","9-6","M6e","8-7"],["Chiyomaru","M14w","7-8","M16w","8-7","M13w","3-12","J5w","9-6","J1w","1-8-6","J14e","9-6"],["Sadanofuji","M15e","8-7","M14e","9-6","M7w","6-9","M9e","10-5","M2w","2-13","M9w","4-11"],["Kagamio","M15w","7-8","J1e","4-11","J9e","12-3 Y","M14w","9-6","M9w","4-11","J1w","6-9"],["Tokushoryu","M16e","11-4 J","M7w","8-7","M4w","6-9","M5w","7-8","M6w","6-9","M8e","8-7"],["Tosayutaka","M16w","0-2-13","J11e","6-9","J14w","7-8","Ms1w","1-6","Ms20w","0-0-7","Ms60w","0-0-7"],["Amuru","J1e","8-7","M16e","7-8","M16w","9-6","M10w","8-7","M7w","8-7","M5e","4-11"],["Wakanosato","J1w","5-10","J4w","6-9","J7w","5-10","J11w","4-11","Ms4e","0-0","",""],["Asasekiryu","J2e","5-10","J5w","8-7","J3e","7-8","J4e","10-5","M15e","7-8","M16e","3-12"],["Gagamaru","J2w","11-4","M15w","11-4","M6e","7-8","M6w","6-9","M9e","6-9","M11e","8-7"],["Kitataiki","J3e","13-2 Y","M10w","9-6","M5e","4-11","M10e","5-10","M14e","7-8","M15e","7-8"],["Daido","J3w","6-9","J5e","6-9","J8w","6-9","J11e","4-11","Ms3e","5-2","J13w","6-9"],["Asahisho","J4e","9-6","J2w","5-10","J8e","9-6","J3w","6-9","J6e","6-9","J8w","6-9"],["Takanoiwa","J4w","6-9","J6w","11-4","M16e","7-8","M16e","6-9","J2w","9-6","J1e","8-7"]] /***/ }), -/* 658 */ +/* 664 */ /***/ (function(module, exports) { - module.exports = {"nav":[{"children":[{"title":"Browser support","level":2,"route":"blueprint.browser-support"},{"title":"Usage","level":2,"route":"blueprint.usage"},{"title":"NPM installation","level":3,"route":"blueprint.npm-installation"},{"title":"CDN consumption","level":3,"route":"blueprint.cdn-consumption"},{"title":"DOM4","level":3,"route":"blueprint.dom4"},{"title":"TypeScript","level":3,"route":"blueprint.typescript"},{"title":"Vanilla JS APIs","level":3,"route":"blueprint.vanilla-js-apis"},{"title":"Understanding TypeScript","level":2,"route":"blueprint.understanding-typescript"},{"title":"Development & contributions","level":2,"route":"blueprint.development---contributions"}],"level":1,"reference":"blueprint","route":"blueprint","title":"Blueprint"},{"children":[{"children":[{"title":"Focus management","level":3,"route":"core/accessibility.focus-management"},{"title":"JavaScript API","level":4,"route":"core/accessibility.javascript-api"},{"title":"Color contrast","level":3,"route":"core/accessibility.color-contrast"}],"level":2,"reference":"accessibility","route":"core/accessibility","title":"Accessibility"},{"children":[{"title":"Gray scale","level":3,"route":"core/colors.gray-scale"},{"title":"Core colors","level":3,"route":"core/colors.core-colors"},{"title":"Extended colors","level":3,"route":"core/colors.extended-colors"},{"title":"Color schemes","level":3,"route":"core/colors.color-schemes"},{"title":"Sequential color schemes","level":4,"route":"core/colors.sequential-color-schemes"},{"title":"Diverging color schemes","level":4,"route":"core/colors.diverging-color-schemes"},{"title":"Qualitative color schemes","level":4,"route":"core/colors.qualitative-color-schemes"},{"title":"Color aliases","level":3,"route":"core/colors.color-aliases"}],"level":2,"reference":"colors","route":"core/colors","title":"Colors"},{"children":[{"title":"Usage","level":3,"route":"core/typography.usage"},{"title":"Fonts","level":3,"route":"core/typography.fonts"},{"title":"Headings","level":3,"route":"core/typography.headings"},{"title":"UI text","level":3,"route":"core/typography.ui-text"},{"title":"Running text","level":3,"route":"core/typography.running-text"},{"title":"Links","level":3,"route":"core/typography.links"},{"title":"Preformatted text","level":3,"route":"core/typography.preformatted-text"},{"title":"Block quotes","level":3,"route":"core/typography.block-quotes"},{"title":"Lists","level":3,"route":"core/typography.lists"},{"title":"Text utilities","level":3,"route":"core/typography.text-utilities"},{"title":"Internationalization","level":3,"route":"core/typography.internationalization"},{"title":"Right-to-left text","level":4,"route":"core/typography.right-to-left-text"},{"title":"Dark theme","level":3,"route":"core/typography.dark-theme"}],"level":2,"reference":"typography","route":"core/typography","title":"Typography"},{"children":[],"level":2,"reference":"icons","route":"core/icons","title":"Icons"},{"children":[{"title":"Font variables","level":3,"route":"core/variables.font-variables"},{"title":"Icon variables","level":3,"route":"core/variables.icon-variables"},{"title":"Grids & dimensions","level":3,"route":"core/variables.grids---dimensions"},{"title":"Grid system","level":4,"route":"core/variables.grid-system"},{"title":"Layering","level":3,"route":"core/variables.layering"},{"title":"Light theme styles","level":3,"route":"core/variables.light-theme-styles"},{"title":"Dark theme styles","level":3,"route":"core/variables.dark-theme-styles"}],"level":2,"reference":"variables","route":"core/variables","title":"Variables"},{"children":[{"children":[{"title":"JavaScript API","level":4,"route":"core/components/alert.javascript-api"}],"level":3,"reference":"alert","route":"core/components/alert","title":"Alerts"},{"children":[{"title":"CSS API","level":4,"route":"core/components/breadcrumbs.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/breadcrumbs.javascript-api"}],"level":3,"reference":"breadcrumbs","route":"core/components/breadcrumbs","title":"Breadcrumbs"},{"children":[{"title":"CSS API","level":4,"route":"core/components/button.css-api"},{"title":"Buttons with icons","level":5,"route":"core/components/button.buttons-with-icons"},{"title":"Advanced icon layout","level":5,"route":"core/components/button.advanced-icon-layout"},{"title":"Minimal buttons","level":5,"route":"core/components/button.minimal-buttons"},{"title":"JavaScript API","level":4,"route":"core/components/button.javascript-api"},{"title":"Anchor button","level":5,"route":"core/components/button.anchor-button"},{"title":"Button","level":5,"route":"core/components/button.button"}],"level":3,"reference":"button","route":"core/components/button","title":"Buttons"},{"children":[{"title":"CSS API","level":4,"route":"core/components/button-group.css-api"},{"title":"Responsive button groups","level":5,"route":"core/components/button-group.responsive-button-groups"},{"title":"Vertical button groups","level":5,"route":"core/components/button-group.vertical-button-groups"}],"level":3,"reference":"button-group","route":"core/components/button-group","title":"Button groups"},{"children":[{"title":"CSS API","level":4,"route":"core/components/callout.css-api"}],"level":3,"reference":"callout","route":"core/components/callout","title":"Callouts"},{"children":[{"title":"CSS API","level":4,"route":"core/components/card.css-api"},{"title":"Interactive cards","level":5,"route":"core/components/card.interactive-cards"}],"level":3,"reference":"card","route":"core/components/card","title":"Cards"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/collapse.javascript-api"}],"level":3,"reference":"collapse","route":"core/components/collapse","title":"Collapse"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/collapsible-list.javascript-api"},{"title":"Separators","level":4,"route":"core/components/collapsible-list.separators"}],"level":3,"reference":"collapsible-list","route":"core/components/collapsible-list","title":"Collapsible list"},{"children":[{"title":"JavaScript API: decorator","level":4,"route":"core/components/context-menu.javascript-api--decorator"},{"title":"JavaScript API: imperative","level":4,"route":"core/components/context-menu.javascript-api--imperative"}],"level":3,"reference":"context-menu","route":"core/components/context-menu","title":"Context menus"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/dialog.javascript-api"},{"title":"CSS API","level":4,"route":"core/components/dialog.css-api"}],"level":3,"reference":"dialog","route":"core/components/dialog","title":"Dialogs"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/editable-text.javascript-api"},{"title":"Multiline mode","level":4,"route":"core/components/editable-text.multiline-mode"}],"level":3,"reference":"editable-text","route":"core/components/editable-text","title":"Editable text"},{"children":[{"children":[{"title":"Simple labels","level":5,"route":"core/components/forms/label.simple-labels"},{"title":"Disabled labels","level":5,"route":"core/components/forms/label.disabled-labels"}],"level":4,"reference":"label","route":"core/components/forms/label","title":"Labels"},{"children":[],"level":4,"reference":"form-group","route":"core/components/forms/form-group","title":"Form groups"},{"children":[{"title":"CSS API","level":5,"route":"core/components/forms/checkbox.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/forms/checkbox.javascript-api"},{"title":"Inline controls","level":5,"route":"core/components/forms/checkbox.inline-controls"}],"level":4,"reference":"checkbox","route":"core/components/forms/checkbox","title":"Checkboxes"},{"children":[{"title":"CSS API","level":5,"route":"core/components/forms/switch.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/forms/switch.javascript-api"}],"level":4,"reference":"switch","route":"core/components/forms/switch","title":"Switches"},{"children":[{"title":"CSS API","level":5,"route":"core/components/forms/radio.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/forms/radio.javascript-api"},{"title":"RadioGroup","level":6,"route":"core/components/forms/radio.radiogroup"}],"level":4,"reference":"radio","route":"core/components/forms/radio","title":"Radios"},{"children":[],"level":4,"reference":"text-area","route":"core/components/forms/text-area","title":"Text areas"},{"children":[{"title":"Search field","level":5,"route":"core/components/forms/input.search-field"}],"level":4,"reference":"input","route":"core/components/forms/input","title":"Text inputs"},{"children":[{"title":"CSS API","level":5,"route":"core/components/forms/input-group.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/forms/input-group.javascript-api"}],"level":4,"reference":"input-group","route":"core/components/forms/input-group","title":"Text input groups"},{"children":[{"title":"Responsive control groups","level":5,"route":"core/components/forms/control-group.responsive-control-groups"},{"title":"Vertical control groups","level":5,"route":"core/components/forms/control-group.vertical-control-groups"}],"level":4,"reference":"control-group","route":"core/components/forms/control-group","title":"Control groups"},{"children":[{"title":"Labeled static dropdown","level":5,"route":"core/components/forms/select.labeled-static-dropdown"}],"level":4,"reference":"select","route":"core/components/forms/select","title":"Selects"},{"children":[],"level":4,"reference":"file-upload","route":"core/components/forms/file-upload","title":"File upload"},{"children":[{"title":"Interactions","level":5,"route":"core/components/forms/numeric-input.interactions"},{"title":"Basic example","level":5,"route":"core/components/forms/numeric-input.basic-example"},{"title":"Extended example","level":5,"route":"core/components/forms/numeric-input.extended-example"},{"title":"JavaScript API","level":5,"route":"core/components/forms/numeric-input.javascript-api"},{"title":"Responsive numeric inputs","level":6,"route":"core/components/forms/numeric-input.responsive-numeric-inputs"},{"title":"Uncontrolled mode","level":6,"route":"core/components/forms/numeric-input.uncontrolled-mode"},{"title":"Controlled mode","level":6,"route":"core/components/forms/numeric-input.controlled-mode"}],"level":4,"reference":"numeric-input","route":"core/components/forms/numeric-input","title":"Numeric inputs"}],"level":3,"reference":"forms","route":"core/components/forms","title":"Form controls"},{"children":[{"title":"Hotkey scope","level":4,"route":"core/components/hotkeys.hotkey-scope"},{"title":"Hotkey dialog","level":4,"route":"core/components/hotkeys.hotkey-dialog"},{"title":"Piano example","level":4,"route":"core/components/hotkeys.piano-example"},{"title":"JavaScript API","level":4,"route":"core/components/hotkeys.javascript-api"},{"title":"Decorator","level":5,"route":"core/components/hotkeys.decorator"},{"title":"Hotkeys","level":5,"route":"core/components/hotkeys.hotkeys"},{"title":"Hotkey","level":5,"route":"core/components/hotkeys.hotkey"},{"title":"Key combos","level":5,"route":"core/components/hotkeys.key-combos"}],"level":3,"reference":"hotkeys","route":"core/components/hotkeys","title":"Hotkeys"},{"children":[{"title":"CSS API","level":4,"route":"core/components/icon.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/icon.javascript-api"}],"level":3,"reference":"icon","route":"core/components/icon","title":"Icon"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/menu.javascript-api"},{"title":"Sample usage","level":5,"route":"core/components/menu.sample-usage"},{"title":"Menu","level":5,"route":"core/components/menu.menu"},{"title":"Menu item","level":5,"route":"core/components/menu.menu-item"},{"title":"Menu divider","level":5,"route":"core/components/menu.menu-divider"},{"title":"Submenus","level":5,"route":"core/components/menu.submenus"},{"title":"Dropdown menus","level":5,"route":"core/components/menu.dropdown-menus"},{"title":"CSS API","level":4,"route":"core/components/menu.css-api"},{"title":"Section headers","level":5,"route":"core/components/menu.section-headers"}],"level":3,"reference":"menu","route":"core/components/menu","title":"Menus"},{"children":[{"title":"CSS API","level":4,"route":"core/components/navbar.css-api"},{"title":"Fixed to viewport top","level":5,"route":"core/components/navbar.fixed-to-viewport-top"},{"title":"Fixed width","level":5,"route":"core/components/navbar.fixed-width"}],"level":3,"reference":"navbar","route":"core/components/navbar","title":"Navbars"},{"children":[{"title":"CSS API","level":4,"route":"core/components/non-ideal-state.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/non-ideal-state.javascript-api"}],"level":3,"reference":"non-ideal-state","route":"core/components/non-ideal-state","title":"Non-ideal state"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/overlay.javascript-api"},{"title":"Scrollable overlays","level":4,"route":"core/components/overlay.scrollable-overlays"}],"level":3,"reference":"overlay","route":"core/components/overlay","title":"Overlays"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/popover.javascript-api"},{"title":"Controlled mode","level":5,"route":"core/components/popover.controlled-mode"},{"title":"Inline popovers","level":5,"route":"core/components/popover.inline-popovers"},{"title":"Opening & closing popovers","level":5,"route":"core/components/popover.opening---closing-popovers"},{"title":"Modal popovers","level":5,"route":"core/components/popover.modal-popovers"},{"title":"Sizing popovers","level":5,"route":"core/components/popover.sizing-popovers"},{"title":"SVG popover","level":5,"route":"core/components/popover.svg-popover"},{"title":"Minimal popovers","level":5,"route":"core/components/popover.minimal-popovers"},{"title":"Dark theme","level":5,"route":"core/components/popover.dark-theme"},{"title":"Testing popovers","level":5,"route":"core/components/popover.testing-popovers"}],"level":3,"reference":"popover","route":"core/components/popover","title":"Popovers"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/portal.javascript-api"},{"title":"React context","level":5,"route":"core/components/portal.react-context"}],"level":3,"reference":"portal","route":"core/components/portal","title":"Portals"},{"children":[{"children":[{"title":"CSS API","level":5,"route":"core/components/progress/progress-bar.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/progress/progress-bar.javascript-api"}],"level":4,"reference":"progress-bar","route":"core/components/progress/progress-bar","title":"Progress bars"},{"children":[{"title":"CSS API","level":5,"route":"core/components/progress/spinner.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/progress/spinner.javascript-api"},{"title":"SVG spinner","level":6,"route":"core/components/progress/spinner.svg-spinner"}],"level":4,"reference":"spinner","route":"core/components/progress/spinner","title":"Spinners"},{"children":[{"title":"CSS API","level":5,"route":"core/components/progress/skeleton.css-api"}],"level":4,"reference":"skeleton","route":"core/components/progress/skeleton","title":"Skeletons"}],"level":3,"reference":"progress","route":"core/components/progress","title":"Progress"},{"children":[{"title":"Single slider","level":4,"route":"core/components/sliders.single-slider"},{"title":"Range slider","level":4,"route":"core/components/sliders.range-slider"}],"level":3,"reference":"sliders","route":"core/components/sliders","title":"Sliders"},{"children":[{"title":"CSS API","level":4,"route":"core/components/table.css-api"}],"level":3,"reference":"table","route":"core/components/table","title":"Table (HTML)"},{"children":[{"title":"CSS API","level":4,"route":"core/components/tabs.css-api"},{"title":"Deprecated JavaScript API","level":4,"route":"core/components/tabs.deprecated-javascript-api"},{"title":"Sample usage","level":5,"route":"core/components/tabs.sample-usage"},{"title":"Tabs props","level":5,"route":"core/components/tabs.tabs-props"},{"title":"Tab props","level":5,"route":"core/components/tabs.tab-props"},{"title":"Usage with React Router","level":5,"route":"core/components/tabs.usage-with-react-router"}],"level":3,"reference":"tabs","route":"core/components/tabs","title":"Tabs"},{"children":[{"title":"CSS API","level":4,"route":"core/components/tabs2.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/tabs2.javascript-api"},{"title":"Tabs2","level":5,"route":"core/components/tabs2.tabs2"},{"title":"Tab2","level":5,"route":"core/components/tabs2.tab2"}],"level":3,"reference":"tabs2","route":"core/components/tabs2","title":"Tabs2"},{"children":[{"title":"CSS API","level":4,"route":"core/components/tag.css-api"},{"title":"Minimal tags","level":5,"route":"core/components/tag.minimal-tags"},{"title":"JavaScript API","level":4,"route":"core/components/tag.javascript-api"}],"level":3,"reference":"tag","route":"core/components/tag","title":"Tags"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/text.javascript-api"}],"level":3,"reference":"text","route":"core/components/text","title":"Text"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/toast.javascript-api"},{"title":"Static method","level":5,"route":"core/components/toast.static-method"},{"title":"Instance methods","level":5,"route":"core/components/toast.instance-methods"},{"title":"React component","level":5,"route":"core/components/toast.react-component"}],"level":3,"reference":"toast","route":"core/components/toast","title":"Toasts"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/tooltip.javascript-api"},{"title":"Controlled mode","level":5,"route":"core/components/tooltip.controlled-mode"},{"title":"Inline tooltips","level":5,"route":"core/components/tooltip.inline-tooltips"},{"title":"Combining with popover","level":5,"route":"core/components/tooltip.combining-with-popover"},{"title":"SVG tooltip","level":5,"route":"core/components/tooltip.svg-tooltip"},{"title":"Dark theme","level":5,"route":"core/components/tooltip.dark-theme"}],"level":3,"reference":"tooltip","route":"core/components/tooltip","title":"Tooltips"},{"children":[{"title":"CSS API","level":4,"route":"core/components/tree.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/tree.javascript-api"},{"title":"Instance methods","level":5,"route":"core/components/tree.instance-methods"},{"title":"Tree node interface","level":5,"route":"core/components/tree.tree-node-interface"}],"level":3,"reference":"tree","route":"core/components/tree","title":"Trees"}],"level":2,"reference":"components","route":"core/components","title":"Components"},{"children":[{"title":"Sketch assets","level":3,"route":"core/resources.sketch-assets"}],"level":2,"reference":"resources","route":"core/resources","title":"Resources"}],"level":1,"reference":"core","route":"core","title":"Core"},{"children":[{"children":[{"title":"JavaScript API","level":3,"route":"datetime/datepicker.javascript-api"},{"title":"Using modifiers","level":3,"route":"datetime/datepicker.using-modifiers"}],"level":2,"reference":"datepicker","route":"datetime/datepicker","title":"Date picker"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/daterangepicker.javascript-api"}],"level":2,"reference":"daterangepicker","route":"datetime/daterangepicker","title":"Date range picker"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/timepicker.javascript-api"}],"level":2,"reference":"timepicker","route":"datetime/timepicker","title":"Time picker"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/datetimepicker.javascript-api"}],"level":2,"reference":"datetimepicker","route":"datetime/datetimepicker","title":"Date time picker"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/dateinput.javascript-api"}],"level":2,"reference":"dateinput","route":"datetime/dateinput","title":"Date input"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/daterangeinput.javascript-api"}],"level":2,"reference":"daterangeinput","route":"datetime/daterangeinput","title":"Date range input"}],"level":1,"reference":"datetime","route":"datetime","title":"Datetime"},{"children":[{"title":"Installation","level":2,"route":"table-js.installation"},{"title":"Basic usage","level":2,"route":"table-js.basic-usage"},{"title":"Features","level":2,"route":"table-js.features"},{"title":"Sorting","level":3,"route":"table-js.sorting"},{"title":"Editing","level":3,"route":"table-js.editing"},{"title":"Reordering","level":3,"route":"table-js.reordering"},{"title":"Loading states","level":3,"route":"table-js.loading-states"},{"title":"Table loading states","level":4,"route":"table-js.table-loading-states"},{"title":"Column loading states","level":4,"route":"table-js.column-loading-states"},{"title":"Cells","level":4,"route":"table-js.cells"},{"title":"Formatting","level":3,"route":"table-js.formatting"},{"title":"Freezing","level":3,"route":"table-js.freezing"},{"title":"JavaScript API","level":2,"route":"table-js.javascript-api"},{"title":"Table","level":3,"route":"table-js.table"},{"title":"Instance methods","level":4,"route":"table-js.instance-methods"},{"title":"Column","level":3,"route":"table-js.column"},{"title":"Cell","level":3,"route":"table-js.cell"},{"title":"ColumnHeaderCell","level":3,"route":"table-js.columnheadercell"},{"title":"EditableName","level":3,"route":"table-js.editablename"},{"title":"EditableCell","level":3,"route":"table-js.editablecell"},{"title":"Region","level":3,"route":"table-js.region"},{"title":"TruncatedFormat","level":3,"route":"table-js.truncatedformat"},{"title":"JSONFormat","level":3,"route":"table-js.jsonformat"}],"level":1,"reference":"table-js","route":"table-js","title":"Table"},{"children":[{"children":[{"title":"Querying","level":3,"route":"labs/select-component.querying"},{"title":"Non-ideal states","level":4,"route":"labs/select-component.non-ideal-states"},{"title":"Controlled usage","level":3,"route":"labs/select-component.controlled-usage"},{"title":"JavaScript API","level":3,"route":"labs/select-component.javascript-api"},{"title":"Item Renderer API","level":4,"route":"labs/select-component.item-renderer-api"}],"level":2,"reference":"select-component","route":"labs/select-component","title":"Select"},{"children":[],"level":2,"reference":"suggest","route":"labs/suggest","title":"Suggest"},{"children":[],"level":2,"reference":"multi-select","route":"labs/multi-select","title":"MultiSelect"},{"children":[],"level":2,"reference":"omnibox","route":"labs/omnibox","title":"Omnibox"},{"children":[{"title":"Renderer API","level":3,"route":"labs/query-list.renderer-api"}],"level":2,"reference":"query-list","route":"labs/query-list","title":"QueryList"},{"children":[],"level":2,"reference":"tag-input","route":"labs/tag-input","title":"TagInput"},{"children":[{"title":"Placement","level":3,"route":"labs/popover2.placement"},{"title":"Modifiers","level":3,"route":"labs/popover2.modifiers"}],"level":2,"reference":"popover2","route":"labs/popover2","title":"Popover2"},{"children":[],"level":2,"reference":"tooltip2","route":"labs/tooltip2","title":"Tooltip2"},{"children":[{"title":"JavaScript API","level":3,"route":"labs/timezone-picker.javascript-api"}],"level":2,"reference":"timezone-picker","route":"labs/timezone-picker","title":"TimezonePicker"}],"level":1,"reference":"labs","route":"labs","title":"Labs"}],"pages":{"alert":{"reference":"alert","route":"core/components/alert","title":"Alerts","contents":[{"tag":"heading","value":"Alerts","level":1,"route":"core/components/alert"},"

Alerts notify users of important information and force them to acknowledge the alert content before\ncontinuing.

\n

Although similar to dialogs, alerts are more restrictive and should only be\nused for important informations. The user can only exit the alert by clicking one of the\nconfirmation buttons—clicking the overlay or pressing the esc key will not close the alert.

\n

You can only use this component in controlled mode. Use the onClick handlers in the primary and\nsecondary action props to handle closing the Alert. Optionally, display an icon next to the body\nto show the type of the alert.

\n",{"tag":"reactExample","value":"AlertExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/alert.javascript-api"},"

The Alert component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n",{"tag":"interface","value":"IAlertProps"}],"contentsRaw":"@# Alerts\n\nAlerts notify users of important information and force them to acknowledge the alert content before\ncontinuing.\n\nAlthough similar to [dialogs](#core/components/dialog), alerts are more restrictive and should only be\nused for important informations. The user can only exit the alert by clicking one of the\nconfirmation buttons—clicking the overlay or pressing the `esc` key will not close the alert.\n\nYou can only use this component in controlled mode. Use the `onClick` handlers in the primary and\nsecondary action props to handle closing the `Alert`. Optionally, display an icon next to the body\nto show the type of the alert.\n\n@reactExample AlertExample\n\n@## JavaScript API\n\nThe `Alert` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\n@interface IAlertProps\n","metadata":{}},"breadcrumbs":{"reference":"breadcrumbs","route":"core/components/breadcrumbs","title":"Breadcrumbs","contents":[{"tag":"heading","value":"Breadcrumbs","level":1,"route":"core/components/breadcrumbs"},"

Breadcrumbs identify the current resource in an application.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/breadcrumbs.css-api"},"
    \n
  • Begin with a ul.pt-breadcrumbs; each crumb should be in its own li as a direct descendant.
  • \n
  • Breadcrumbs are typically navigation links (for example, to the parent folder in a file path), and\ntherefore should use <a> tags (except for the final breadcrumb).
  • \n
  • Each navigation breadcrumb should use .pt-breadcrumb.
  • \n
  • Make a breadcrumb non-interactive with the .pt-disabled class. You should only use this\nstate when you want to indicate that the user cannot navigate to the breadcrumb (for example, if\nthe user does not have permission to access it). Otherwise, clicking a breadcrumb should take the\nuser to that resource.
  • \n
  • Mark the final breadcrumb .pt-breadcrumb-current for an emphasized appearance.
  • \n
  • The .pt-breadcrumbs-collapsed button-like element can be used as the target for a dropdown menu\ncontaining breadcrumbs that are collapsed due to layout constraints.
  • \n
  • When adding another element (such as a tooltip or\npopover) to a breadcrumb, wrap it around the contents of the li.
  • \n
\n",{"tag":"css","value":"pt-breadcrumbs"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/breadcrumbs.javascript-api"},"

The Breadcrumb component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

The component renders an a.pt-breadcrumb. You are responsible for constructing\nthe ul.pt-breadcrumbs list. CollapsibleList\nworks nicely with this component because its props are a subset of IMenuItemProps.

\n",{"tag":"interface","value":"IBreadcrumbProps"}],"contentsRaw":"@# Breadcrumbs\n\nBreadcrumbs identify the current resource in an application.\n\n@## CSS API\n\n* Begin with a `ul.pt-breadcrumbs`; each crumb should be in its own `li` as a direct descendant.\n* Breadcrumbs are typically navigation links (for example, to the parent folder in a file path), and\ntherefore should use `` tags (except for the final breadcrumb).\n* Each navigation breadcrumb should use `.pt-breadcrumb`.\n* Make a breadcrumb non-interactive with the `.pt-disabled` class. You should only use this\nstate when you want to indicate that the user cannot navigate to the breadcrumb (for example, if\nthe user does not have permission to access it). Otherwise, clicking a breadcrumb should take the\nuser to that resource.\n* Mark the final breadcrumb `.pt-breadcrumb-current` for an emphasized appearance.\n* The `.pt-breadcrumbs-collapsed` button-like element can be used as the target for a dropdown menu\ncontaining breadcrumbs that are collapsed due to layout constraints.\n* When adding another element (such as a [tooltip](#core/components/tooltip) or\n[popover](#core/components/popover)) to a breadcrumb, wrap it around the contents of the `li`.\n\n@css pt-breadcrumbs\n\n@## JavaScript API\n\nThe `Breadcrumb` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nThe component renders an `a.pt-breadcrumb`. You are responsible for constructing\nthe `ul.pt-breadcrumbs` list. [`CollapsibleList`](#core/components/collapsiblelist)\nworks nicely with this component because its props are a subset of `IMenuItemProps`.\n\n@interface IBreadcrumbProps\n","metadata":{}},"button-group":{"reference":"button-group","route":"core/components/button-group","title":"Button groups","contents":[{"tag":"heading","value":"Button groups","level":1,"route":"core/components/button-group"},"

Button groups arrange multiple buttons in a horizontal or vertical group.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/button-group.css-api"},"

Arrange multiple buttons in a group by wrapping them in .pt-button-group.\nYou can apply sizing directly on the button group container element.

\n

You should implement interactive segmented controls as button groups.

\n",{"tag":"css","value":"pt-button-group"},{"tag":"heading","value":"Responsive button groups","level":3,"route":"core/components/button-group.responsive-button-groups"},"

Add the class pt-fill to a button group to make all buttons expand equally to fill the\navailable space. Then add the class pt-fixed to individual buttons to revert them to their\noriginal default sizes.

\n

Alternatively, add the class pt-fill to an individual button (instead of to the container)\nto expand it to fill the available space while other buttons retain their original sizes.

\n

You can adjust the specific size of a button with the flex-basis CSS property.

\n",{"tag":"css","value":"pt-button-group.pt-fill"},{"tag":"heading","value":"Vertical button groups","level":3,"route":"core/components/button-group.vertical-button-groups"},"

Add the class pt-vertical to create a vertical button group. The buttons in a vertical\ngroup all have the same size as the widest button in the group.

\n

Add the modifier class pt-align-left to left-align all button text and icons.

\n

You can also combine vertical groups with the pt-fill and pt-minimal class modifiers.

\n",{"tag":"css","value":"pt-button-group.pt-vertical"}],"contentsRaw":"@# Button groups\n\nButton groups arrange multiple buttons in a horizontal or vertical group.\n\n@## CSS API\n\nArrange multiple buttons in a group by wrapping them in `.pt-button-group`.\nYou can apply sizing directly on the button group container element.\n\nYou should implement interactive segmented controls as button groups.\n\n@css pt-button-group\n\n@### Responsive button groups\n\nAdd the class `pt-fill` to a button group to make all buttons expand equally to fill the\navailable space. Then add the class `pt-fixed` to individual buttons to revert them to their\noriginal default sizes.\n\nAlternatively, add the class `pt-fill` to an individual button (instead of to the container)\nto expand it to fill the available space while other buttons retain their original sizes.\n\nYou can adjust the specific size of a button with the `flex-basis` CSS property.\n\n@css pt-button-group.pt-fill\n\n@### Vertical button groups\n\nAdd the class `pt-vertical` to create a vertical button group. The buttons in a vertical\ngroup all have the same size as the widest button in the group.\n\nAdd the modifier class `pt-align-left` to left-align all button text and icons.\n\nYou can also combine vertical groups with the `pt-fill` and `pt-minimal` class modifiers.\n\n@css pt-button-group.pt-vertical\n","metadata":{}},"button":{"reference":"button","route":"core/components/button","title":"Buttons","contents":[{"tag":"heading","value":"Buttons","level":1,"route":"core/components/button"},"

Buttons trigger actions when clicked.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/button.css-api"},"

Use the pt-button class to access button styles. You should implement buttons using the\n<button> or <a> tags rather than <div> for the purposes of HTML accessibility and semantics.

\n
    \n
  • Make sure to include type="button" on <button> tags (use type="submit" when used in a\n<form>) and role="button" on <a> tags for accessibility.
  • \n
  • Add the attribute tabindex="0" to make <a> tags focusable. <button> elements are\nfocusable by default.
  • \n
  • For buttons implemented with <a> tags, add tabindex="-1" to disabled buttons to prevent the\nuser from focusing them by pressing tab on the keyboard.
  • \n
  • Note that <a> tags do not respond to the :disabled attribute; use .pt-disabled instead.
  • \n
\n",{"tag":"css","value":"pt-button"},{"tag":"heading","value":"Buttons with icons","level":3,"route":"core/components/button.buttons-with-icons"},"

Add an icon before the button text with pt-icon-* classes.\nYou do not need to include an icon sizing class.

\n",{"tag":"css","value":"pt-button.pt-icon"},{"tag":"heading","value":"Advanced icon layout","level":3,"route":"core/components/button.advanced-icon-layout"},"

You can use a pt-icon-* class on a button to add a single icon before the button\ntext, but for more advanced icon layouts, use <span> tags inside the button.\nAdd multiple icons to the same button, or move icons after the text.

\n

To adjust margins on right-aligned icons, add the class pt-align-right to the icon.

\n",{"tag":"css","value":"pt-button.pt-icon-advanced"},{"tag":"heading","value":"Minimal buttons","level":3,"route":"core/components/button.minimal-buttons"},"

For a subtler button that appears to fade into the UI, add the .pt-minimal modifier\nto any .pt-button. pt-minimal is compatible with all other button modifiers,\nexcept for .pt-fill (due to lack of visual affordances).

\n

Note that minimal buttons are not supported in button groups at this time.

\n",{"tag":"css","value":"pt-button.pt-minimal"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/button.javascript-api"},"

The Button and AnchorButton components are available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

Button components render buttons with Blueprint classes and attributes.\nSee the Buttons CSS docs for styling options.

\n

You can provide your own props to these components as if they were regular JSX HTML elements. If you\nprovide a className prop, the class names you provide will be added alongside of the default\nBlueprint class name. If you specify other attributes that the component provides, such as a role\nfor an <AnchorButton>, you'll overide the default value.

\n
\n
Interactions with disabled buttons
\n Use AnchorButton if you need mouse interaction events (such as hovering) on a disabled button.\n This is because Button and AnchorButton handle the disabled prop differently: Button uses\n the native disabled attribute on the <button> tag so the browser disables all interactions,\n but AnchorButton uses the class .pt-disabled because <a> tags do not support the disabled\n attribute. As a result, the AnchorButton component will prevent only the onClick handler\n when disabled but permit other events.\n
\n\n",{"tag":"reactExample","value":"ButtonsExample"},{"tag":"heading","value":"Anchor button","level":3,"route":"core/components/button.anchor-button"},"
<AnchorButton text="Click" />
// renders:
<a class="pt-button" role="button" tabIndex={0}>Click</a>
",{"tag":"heading","value":"Button","level":3,"route":"core/components/button.button"},"
<Button iconName="refresh" />
// renders:
<button class="pt-button pt-icon-refresh" type="button"></button>
",{"tag":"interface","value":"IButtonProps"}],"contentsRaw":"@# Buttons\n\nButtons trigger actions when clicked.\n\n@## CSS API\n\nUse the `pt-button` class to access button styles. You should implement buttons using the\n`\n```\n\n@interface IButtonProps\n","metadata":{}},"callout":{"reference":"callout","route":"core/components/callout","title":"Callouts","contents":[{"tag":"heading","value":"Callouts","level":1,"route":"core/components/callout"},"

Callouts visually highlight important content for the user.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/callout.css-api"},"

Callouts use the same visual intent modifier classes as buttons. If you need a\nheading, use the <h5> element.

\n
\n Note that the <h5> heading is entirely optional.\n
\n\n",{"tag":"css","value":"pt-callout"}],"contentsRaw":"@# Callouts\n\nCallouts visually highlight important content for the user.\n\n@## CSS API\n\nCallouts use the same visual intent modifier classes as buttons. If you need a\nheading, use the `
` element.\n\n
\n Note that the `
` heading is entirely optional.\n
\n\n@css pt-callout\n","metadata":{}},"card":{"reference":"card","route":"core/components/card","title":"Cards","contents":[{"tag":"heading","value":"Cards","level":1,"route":"core/components/card"},"

A card is a bounded unit of UI content with a solid background color.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/card.css-api"},"

Start with .pt-card and add an elevation modifier class to apply a drop shadow that simulates\nheight in the UI.

\n

You can also use the .pt-elevation-* classes by themselves to apply shadows to any arbitrary\nelement.

\n",{"tag":"css","value":"pt-card"},{"tag":"heading","value":"Interactive cards","level":3,"route":"core/components/card.interactive-cards"},"

Add the .pt-interactive modifier class to make a .pt-card respond to user interactions. When you\nhover over cards with this class applied, the mouse changes to a pointer and the elevation shadow on\nthe card increases by two levels.

\n

Users expect an interactive card to be a single clickable unit.

\n",{"tag":"css","value":"pt-card.pt-interactive"}],"contentsRaw":"@# Cards\n\nA card is a bounded unit of UI content with a solid background color.\n\n@## CSS API\n\nStart with `.pt-card` and add an elevation modifier class to apply a drop shadow that simulates\nheight in the UI.\n\nYou can also use the `.pt-elevation-*` classes by themselves to apply shadows to any arbitrary\nelement.\n\n@css pt-card\n\n@### Interactive cards\n\nAdd the `.pt-interactive` modifier class to make a `.pt-card` respond to user interactions. When you\nhover over cards with this class applied, the mouse changes to a pointer and the elevation shadow on\nthe card increases by two levels.\n\nUsers expect an interactive card to be a single clickable unit.\n\n@css pt-card.pt-interactive\n","metadata":{}},"collapse":{"reference":"collapse","route":"core/components/collapse","title":"Collapse","contents":[{"tag":"heading","value":"Collapse","level":1,"route":"core/components/collapse"},"

The Collapse element shows and hides content with a built-in slide in/out animation.\nYou might use this to create a panel of settings for your application, with sub-sections\nthat can be expanded and collapsed.

\n",{"tag":"reactExample","value":"CollapseExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/collapse.javascript-api"},"

The Collapse component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

Any content should be a child of the Collapse element. Content must be in the document\nflow (e.g. position: absolute; wouldn't work, as the parent element would inherit a height of 0).

\n

Toggling the isOpen prop triggers the open and close animations.\nOnce the component is in the closed state, the children are no longer rendered.

\n
export interface ICollapseExampleState {
    isOpen?: boolean;
};
 
export class CollapseExample extends React.Component<{}, ICollapseExampleState> {
    public state = {
        isOpen: false,
    };
 
    public render() {
        return (
            <div>
                <Button onClick={this.handleClick}>
                    {this.state.isOpen ? "Hide" : "Show"} build logs
                </Button>
                <Collapse isOpen={this.state.isOpen}>
                    <pre>
                        Dummy text.
                    </pre>
                </Collapse>
            </div>
        );
    }
 
    private handleClick = () => {
        this.setState({ isOpen: !this.state.isOpen });
    }
}
",{"tag":"interface","value":"ICollapseProps"}],"contentsRaw":"@# Collapse\n\nThe `Collapse` element shows and hides content with a built-in slide in/out animation.\nYou might use this to create a panel of settings for your application, with sub-sections\nthat can be expanded and collapsed.\n\n@reactExample CollapseExample\n\n@## JavaScript API\n\nThe `Collapse` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nAny content should be a child of the `Collapse` element. Content must be in the document\nflow (e.g. `position: absolute;` wouldn't work, as the parent element would inherit a height of 0).\n\nToggling the `isOpen` prop triggers the open and close animations.\nOnce the component is in the closed state, the children are no longer rendered.\n\n```tsx\nexport interface ICollapseExampleState {\n isOpen?: boolean;\n};\n\nexport class CollapseExample extends React.Component<{}, ICollapseExampleState> {\n public state = {\n isOpen: false,\n };\n\n public render() {\n return (\n
\n \n \n
\n                        Dummy text.\n                    
\n
\n
\n );\n }\n\n private handleClick = () => {\n this.setState({ isOpen: !this.state.isOpen });\n }\n}\n```\n\n@interface ICollapseProps\n","metadata":{}},"collapsible-list":{"reference":"collapsible-list","route":"core/components/collapsible-list","title":"Collapsible list","contents":[{"tag":"heading","value":"Collapsible list","level":1,"route":"core/components/collapsible-list"},"

The CollapsibleList React component accepts a list of menu items and a count of visible items. It\nshows precisely that many items and collapses the rest into a dropdown menu. The required\nrenderVisibleItem callback prop allows for customizing the appearance of visible items, using the\nprops from the MenuItem children.

\n",{"tag":"reactExample","value":"CollapsibleListExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/collapsible-list.javascript-api"},"

The CollapsibleList component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

Children of the CollapsibleList component must be MenuItems so they can be easily rendered\nin the dropdown. Define a renderVisibleItem callback to customize the appearance of visible\nitems using their IMenuItemProps.

\n",{"tag":"interface","value":"ICollapsibleListProps"},{"tag":"heading","value":"Separators","level":2,"route":"core/components/collapsible-list.separators"},"

Often a list of items calls for separators between each item.\nAdding separators to a CollapsibleList is easily achieved via CSS using ::after pseudo-elements.

\n
// pass `visibleItemClassName="my-list-item"` to component, then... 
 
.my-list-item::after {
    display: inline-block;
    content: "";
    // custom separator styles... 
}
 
// remove separator after the last item 
.my-list-item:last-child::after {
    display: none;
}
"],"contentsRaw":"@# Collapsible list\n\nThe `CollapsibleList` React component accepts a list of menu items and a count of visible items. It\nshows precisely that many items and collapses the rest into a dropdown menu. The required\n`renderVisibleItem` callback prop allows for customizing the appearance of visible items, using the\nprops from the `MenuItem` children.\n\n@reactExample CollapsibleListExample\n\n@## JavaScript API\n\nThe `CollapsibleList` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nChildren of the `CollapsibleList` component _must_ be `MenuItem`s so they can be easily rendered\nin the dropdown. Define a `renderVisibleItem` callback to customize the appearance of visible\nitems using their [`IMenuItemProps`](#core/components/menu.menu-item).\n\n@interface ICollapsibleListProps\n\n@## Separators\n\nOften a list of items calls for separators between each item.\nAdding separators to a `CollapsibleList` is easily achieved via CSS using `::after` pseudo-elements.\n\n```css.scss\n// pass `visibleItemClassName=\"my-list-item\"` to component, then...\n\n.my-list-item::after {\n display: inline-block;\n content: \"\";\n // custom separator styles...\n}\n\n// remove separator after the last item\n.my-list-item:last-child::after {\n display: none;\n}\n```\n","metadata":{}},"components":{"reference":"components","route":"core/components","title":"Components","contents":[{"tag":"heading","value":"Components","level":1,"route":"core/components"},"\n",{"tag":"page","value":"alert"},{"tag":"page","value":"breadcrumbs"},{"tag":"page","value":"button"},{"tag":"page","value":"button-group"},{"tag":"page","value":"callout"},{"tag":"page","value":"card"},{"tag":"page","value":"collapse"},{"tag":"page","value":"collapsible-list"},{"tag":"page","value":"context-menu"},{"tag":"page","value":"dialog"},{"tag":"page","value":"editable-text"},{"tag":"page","value":"forms"},{"tag":"page","value":"hotkeys"},{"tag":"page","value":"icon"},{"tag":"page","value":"menu"},{"tag":"page","value":"navbar"},{"tag":"page","value":"non-ideal-state"},{"tag":"page","value":"overlay"},{"tag":"page","value":"popover"},{"tag":"page","value":"portal"},{"tag":"page","value":"progress"},{"tag":"page","value":"sliders"},{"tag":"page","value":"table"},{"tag":"page","value":"tabs"},{"tag":"page","value":"tabs2"},{"tag":"page","value":"tag"},{"tag":"page","value":"text"},{"tag":"page","value":"toast"},{"tag":"page","value":"tooltip"},{"tag":"page","value":"tree"}],"contentsRaw":"@# Components\n\n\n\n@page alert\n@page breadcrumbs\n@page button\n@page button-group\n@page callout\n@page card\n@page collapse\n@page collapsible-list\n@page context-menu\n@page dialog\n@page editable-text\n@page forms\n@page hotkeys\n@page icon\n@page menu\n@page navbar\n@page non-ideal-state\n@page overlay\n@page popover\n@page portal\n@page progress\n@page sliders\n@page table\n@page tabs\n@page tabs2\n@page tag\n@page text\n@page toast\n@page tooltip\n@page tree\n","metadata":{}},"context-menu":{"reference":"context-menu","route":"core/components/context-menu","title":"Context menus","contents":[{"tag":"heading","value":"Context menus","level":1,"route":"core/components/context-menu"},"

Context menus present the user with a custom list of actions upon right-click.

\n

You can create context menus in either of the following ways:

\n
    \n
  • by adding the @ContextMenuTarget decorator\nto a React component that implements renderContextMenu(): JSX.Element.
  • \n
  • via the imperative ContextMenu.show\nand ContextMenu.hide API methods, ideal for non-React-based applications.
  • \n
\n",{"tag":"reactExample","value":"ContextMenuExample"},{"tag":"heading","value":"JavaScript API: decorator","level":2,"route":"core/components/context-menu.javascript-api--decorator"},"

The ContextMenuTarget decorator is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

The @ContextMenuTarget class decorator can be applied to any React.Component\nclass that meets the following requirements:

\n
    \n
  • It defines an instance method called renderContextMenu() that returns a single JSX.Element\n(most likely a Menu).
  • \n
  • Its root element supports the "contextmenu" event and the onContextMenu prop.
  • \n
\n

This is always true if the decorated class uses an intrinsic element, such as <div>, as its\nroot. If it uses a custom element as its root, you must ensure that the prop is implemented\ncorrectly for that element.

\n

When the user triggers the "contextmenu" event on the decorated class, renderContextMenu() is\ncalled. If renderContextMenu() returns an element, the browser's native context menu is\nblocked and the returned element is displayed instead in a Popover at the cursor's location.

\n

If the instance has a onContextMenuClose method, the decorator will call this function when\nthe context menu is closed.

\n
import { ContextMenuTarget, Menu, MenuItem } from "@blueprintjs/core";
 
@ContextMenuTarget
class RightClickMe extends React.Component<{}, {}> {
    public render() {
        // root element must support `onContextMenu`
        return <div>{...}</div>;
    }
 
    public renderContextMenu() {
        // return a single element, or nothing to use default browser behavior
        return (
            <Menu>
                <MenuItem onClick={this.handleSave} text="Save" />
                <MenuItem onClick={this.handleDelete} text="Delete" />
            </Menu>
        );
    }
 
    public onContextMenuClose() {
        // Optional method called once the context menu is closed.
    }
}
",{"tag":"heading","value":"JavaScript API: imperative","level":2,"route":"core/components/context-menu.javascript-api--imperative"},"

The ContextMenu component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

The imperative API provides a single static ContextMenu object, enforcing the principle that only\none context menu can be open at a time.

\n
    \n
  • ContextMenu.show(menu: JSX.Element, offset: IOffset, onClose?: () => void): void –\nShow the given element at the given offset from the top-left corner of the viewport.\nShowing a menu closes the previously shown one automatically.
  • \n
\n

The menu appears below-right of this point, but will flip to below-left instead if there is not\nenough room onscreen. The optional callback is invoked when this menu closes.

\n
    \n
  • ContextMenu.hide(): void – Hide the context menu, if it is open.
  • \n
  • ContextMenu.isOpen(): boolean – Whether a context menu is currently visible.
  • \n
\n

This API is ideal for non-React-based apps or for programmatically triggered menus.

\n
import { ContextMenu, MenuFactory, MenuItemFactory } from "@blueprintjs/core";
 
const rightClickMe = document.query("#right-click-me") as HTMLElement;
rightClickMe.oncontextmenu = (e: MouseEvent) => {
    // prevent the browser's native context menu
    e.preventDefault();
 
    // render a Menu without JSX...
    const menu = MenuFactory({
        children: [
            MenuItemFactory({ onClick: handleSave, text: "Save" }),
            MenuItemFactory({ onClick: handleDelete, text: "Delete" }),
        ]
    });
 
    // mouse position is available on event
    ContextMenu.show(menu, { left: e.clientX, top: e.clientY }, () => {
        // menu was closed; callback optional
    });
};
"],"contentsRaw":"@# Context menus\n\nContext menus present the user with a custom list of actions upon right-click.\n\nYou can create context menus in either of the following ways:\n\n- by adding the `@ContextMenuTarget` [decorator](#core/components/context-menu.javascript-api--decorator)\n to a React component that implements `renderContextMenu(): JSX.Element`.\n- via the [imperative](#core/components/context-menu.javascript-api--imperative) `ContextMenu.show`\n and `ContextMenu.hide` API methods, ideal for non-React-based applications.\n\n@reactExample ContextMenuExample\n\n@## JavaScript API: decorator\n\nThe `ContextMenuTarget` decorator is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nThe `@ContextMenuTarget` [class decorator][ts-decorator] can be applied to any `React.Component`\nclass that meets the following requirements:\n\n- It defines an instance method called `renderContextMenu()` that returns a single `JSX.Element`\n(most likely a [`Menu`](#core/components/menu)).\n- Its root element supports the `\"contextmenu\"` event and the `onContextMenu` prop.\n\nThis is always true if the decorated class uses an intrinsic element, such as `
`, as its\nroot. If it uses a custom element as its root, you must ensure that the prop is implemented\ncorrectly for that element.\n\nWhen the user triggers the `\"contextmenu\"` event on the decorated class, `renderContextMenu()` is\ncalled. If `renderContextMenu()` returns an element, the browser's native [context menu][wiki-cm] is\nblocked and the returned element is displayed instead in a `Popover` at the cursor's location.\n\nIf the instance has a `onContextMenuClose` method, the decorator will call this function when\nthe context menu is closed.\n\n```tsx\nimport { ContextMenuTarget, Menu, MenuItem } from \"@blueprintjs/core\";\n\n@ContextMenuTarget\nclass RightClickMe extends React.Component<{}, {}> {\n public render() {\n // root element must support `onContextMenu`\n return
{...}
;\n }\n\n public renderContextMenu() {\n // return a single element, or nothing to use default browser behavior\n return (\n \n \n \n \n );\n }\n\n public onContextMenuClose() {\n // Optional method called once the context menu is closed.\n }\n}\n```\n\n[ts-decorator]: https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Decorators.md\n[wiki-cm]: https://en.wikipedia.org/wiki/Context_menu\n\n@## JavaScript API: imperative\n\nThe `ContextMenu` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nThe imperative API provides a single static `ContextMenu` object, enforcing the principle that only\none context menu can be open at a time.\n\n- `ContextMenu.show(menu: JSX.Element, offset: IOffset, onClose?: () => void): void` –\nShow the given element at the given offset from the top-left corner of the viewport.\nShowing a menu closes the previously shown one automatically.\n\nThe menu appears below-right of this point, but will flip to below-left instead if there is not\nenough room onscreen. The optional callback is invoked when this menu closes.\n\n- `ContextMenu.hide(): void` – Hide the context menu, if it is open.\n- `ContextMenu.isOpen(): boolean` – Whether a context menu is currently visible.\n\nThis API is ideal for non-React-based apps or for programmatically triggered menus.\n\n```tsx\nimport { ContextMenu, MenuFactory, MenuItemFactory } from \"@blueprintjs/core\";\n\nconst rightClickMe = document.query(\"#right-click-me\") as HTMLElement;\nrightClickMe.oncontextmenu = (e: MouseEvent) => {\n // prevent the browser's native context menu\n e.preventDefault();\n\n // render a Menu without JSX...\n const menu = MenuFactory({\n children: [\n MenuItemFactory({ onClick: handleSave, text: \"Save\" }),\n MenuItemFactory({ onClick: handleDelete, text: \"Delete\" }),\n ]\n });\n\n // mouse position is available on event\n ContextMenu.show(menu, { left: e.clientX, top: e.clientY }, () => {\n // menu was closed; callback optional\n });\n};\n```\n","metadata":{}},"dialog":{"reference":"dialog","route":"core/components/dialog","title":"Dialogs","contents":[{"tag":"heading","value":"Dialogs","level":1,"route":"core/components/dialog"},"

Dialogs present content overlaid over other parts of the UI.

\n
\n
Terminology note
\n The term "modal" is sometimes used to mean "dialog," but this is a misnomer.\n Modal is an adjective that describes parts of a UI.\n An element is considered modal if it\n blocks interaction with the rest of the application.\n We use the term "dialog" to avoid confusion with the adjective.\n
\n\n",{"tag":"reactExample","value":"DialogExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/dialog.javascript-api"},"

The Dialog component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

There are two ways to render dialogs:

\n
    \n
  • injected into a newly created element attached to document.body using <Portal>.\nThis is the default behavior.
  • \n
  • in-place in the DOM tree. Set inline={true} to enable this behavior.
  • \n
\n

Dialog is a stateless React component. The children you provide to this component\nare rendered as contents inside the .pt-dialog element.

\n
interface IDialogExampleState {
    isOpen: boolean;
}
 
class DialogExample extends React.Component<{}, IDialogExampleState> {
    public state = { isOpen: false };
 
    public render() {
        return (
            <div>
                <Button onClick={this.toggleDialog} text="Show dialog" />
                <Dialog
                    iconName="inbox"
                    isOpen={this.state.isOpen}
                    onClose={this.toggleDialog}
                    title="Dialog header"
                >
                    <div className="pt-dialog-body">
                        Some content
                    </div>
                    <div className="pt-dialog-footer">
                        <div className="pt-dialog-footer-actions">
                            <Button text="Secondary" />
                            <Button
                                intent={Intent.PRIMARY}
                                onClick={this.toggleDialog}
                                text="Primary"
                            />
                        </div>
                    </div>
                </Dialog>
            </div>
        );
    }
 
    private toggleDialog = () => this.setState({ isOpen: !this.state.isOpen });
}
",{"tag":"interface","value":"IDialogProps"},{"tag":"heading","value":"CSS API","level":2,"route":"core/components/dialog.css-api"},"

You can create dialogs manually using the HTML markup and pt-dialog-* classes below.\nHowever, you should use the dialog JavaScript APIs whenever possible,\nas they automatically generate some of this markup.

\n

More examples of dialog content are shown below.

\n",{"tag":"css","value":"pt-dialog"}],"contentsRaw":"@# Dialogs\n\nDialogs present content overlaid over other parts of the UI.\n\n
\n
Terminology note
\n The term \"modal\" is sometimes used to mean \"dialog,\" but this is a misnomer.\n _Modal_ is an adjective that describes parts of a UI.\n An element is considered modal if it\n [blocks interaction with the rest of the application](https://en.wikipedia.org/wiki/Modal_window).\n We use the term \"dialog\" to avoid confusion with the adjective.\n
\n\n@reactExample DialogExample\n\n@## JavaScript API\n\nThe `Dialog` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nThere are two ways to render dialogs:\n\n- injected into a newly created element attached to `document.body` using ``.\n This is the default behavior.\n- in-place in the DOM tree. Set `inline={true}` to enable this behavior.\n\n`Dialog` is a stateless React component. The children you provide to this component\nare rendered as contents inside the `.pt-dialog` element.\n\n```tsx\ninterface IDialogExampleState {\n isOpen: boolean;\n}\n\nclass DialogExample extends React.Component<{}, IDialogExampleState> {\n public state = { isOpen: false };\n\n public render() {\n return (\n
\n
\n
\n \n \n );\n }\n\n private toggleDialog = () => this.setState({ isOpen: !this.state.isOpen });\n}\n```\n\n@interface IDialogProps\n\n@## CSS API\n\nYou can create dialogs manually using the HTML markup and `pt-dialog-*` classes below.\nHowever, you should use the dialog [JavaScript APIs](#core/components/dialog.javascript-api) whenever possible,\nas they automatically generate some of this markup.\n\nMore examples of dialog content are shown below.\n\n@css pt-dialog\n","metadata":{}},"editable-text":{"reference":"editable-text","route":"core/components/editable-text","title":"Editable text","contents":[{"tag":"heading","value":"Editable text","level":1,"route":"core/components/editable-text"},"

EditableText looks like normal UI text, but transforms into a text input field when the user\nfocuses it.

\n

The text input inherits all font styling from its ancestors, making the transition between reading\nand editing text seamless.

\n

You might use this component for inline renaming, or for an\neditable multiline description.\nYou should not use EditableText when a static always-editable <input> or\n<textarea> tag would suffice.

\n
\n
Centering the component
\n Do not center this component using text-align: center, as it will cause an infinite loop\n in the browser (more details). Instead,\n you should center the component via flexbox or with position and transform: translateX(-50%).\n
\n\n",{"tag":"reactExample","value":"EditableTextExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/editable-text.javascript-api"},"

The EditableText component is available in the @blueprintjs/core package. Make sure to review\nthe general usage docs for JS components.

\n

EditableText can be used like an input\nelement and supports controlled or uncontrolled\nusage through the value or defaultValue props, respectively.

\n

The onConfirm and onCancel callbacks are invoked based on user interaction. The user presses\nenter or blurs the input to confirm the current value, or presses esc to cancel. Canceling resets\nthe field to the last confirmed value. Neither callback is invoked if the value is unchanged.

\n

EditableText by default supports exactly one line of text and will grow or shrink horizontally\nbased on the length of text. See below for information on multiline\nsupport.

\n",{"tag":"interface","value":"IEditableTextProps"},{"tag":"heading","value":"Multiline mode","level":2,"route":"core/components/editable-text.multiline-mode"},"
<EditableText multiline minLines={3} maxLines={12} {...props} />

Provide the multiline prop to create an EditableText field that spans multiple lines. Multiline\nmode uses a <textarea> instead of an <input type="text"> to support multiple lines of text.

\n

Users confirm text in multiline mode by pressing ctrl enter or cmd enter rather than\nsimply enter. (Pressing the enter key by itself moves the cursor to the next line.)

\n

Additionally, in multiline mode the component's width is fixed at 100%. It grows or shrinks\nvertically instead, based on the number of lines of text. You can use the minLines and\nmaxLines props to constrain the vertical size of the component.

\n
\n
Multiline prop format
\n You should declare multiline as a valueless boolean prop, as in the example above\n (<EditableText multiline ...>). This prevents you from changing the value after declaring it,\n which would provide a sub-optimal experience for users (multiline text does not always render\n cleanly into a single line).\n
\n"],"contentsRaw":"@# Editable text\n\n`EditableText` looks like normal UI text, but transforms into a text input field when the user\nfocuses it.\n\nThe text input inherits all font styling from its ancestors, making the transition between reading\nand editing text seamless.\n\nYou might use this component for inline renaming, or for an\n[editable multiline description](#core/components/editable-text.multiline-mode).\nYou should not use `EditableText` when a static always-editable `` or\n`","markupHtml":"
<textarea class="pt-input {{.modifier}}" {{:modifier}} dir="auto"></textarea>
","modifiers":[{"documentation":"

Disabled

\n","name":":disabled"},{"documentation":"

Readonly

\n","name":":readonly"},{"documentation":"

Larger font size

\n","name":".pt-large"},{"documentation":"

Primary intent

\n","name":".pt-intent-primary"},{"documentation":"

Danger intent

\n","name":".pt-intent-danger"},{"documentation":"

Take up full width of parent element

\n","name":".pt-fill"}],"reference":"pt-textarea"},"pt-tree":{"documentation":"","markup":"
\n
    \n
  • \n
    \n \n \n Label\n Secondary label\n
    \n
      \n
    • \n
      \n \n \n A Document\n
      \n
    • \n
    • \n
      \n \n \n Another Document\n
      \n
    • \n
    \n
  • \n
\n
","markupHtml":"
<div class="pt-tree pt-elevation-0">
  <ul class="pt-tree-node-list pt-tree-root">
    <li class="pt-tree-node pt-tree-node-expanded">
      <div class="pt-tree-node-content">
        <span class="pt-tree-node-caret pt-tree-node-caret-open pt-icon-standard"></span>
        <span class="pt-tree-node-icon pt-icon-standard pt-icon-folder-close"></span>
        <span class="pt-tree-node-label">Label</span>
        <span class="pt-tree-node-secondary-label">Secondary label</span>
      </div>
      <ul class="pt-tree-node-list">
        <li class="pt-tree-node">
          <div class="pt-tree-node-content">
            <span class="pt-tree-node-caret-none pt-icon-standard"></span>
            <span class="pt-tree-node-icon pt-icon-standard pt-icon-document"></span>
          <span class="pt-tree-node-label">A Document</span>
          </div>
        </li>
        <li class="pt-tree-node">
          <div class="pt-tree-node-content">
            <span class="pt-tree-node-caret-none pt-icon-standard"></span>
            <span class="pt-tree-node-icon pt-icon-standard pt-icon-document"></span>
            <span class="pt-tree-node-label">Another Document</span>
          </div>
        </li>
      </ul>
    </li>
  </ul>
</div>
","modifiers":[],"reference":"pt-tree"},"pt-ui-text":{"documentation":"","markup":"
Blueprint components react overlay date picker.
","markupHtml":"
<div class="{{.modifier}}">Blueprint components react overlay date picker.</div>
","modifiers":[{"documentation":"

Default UI text. This is applied to the document body as part of core styles.

\n","name":".pt-ui-text"},{"documentation":"

Larger UI text.

\n","name":".pt-ui-text-large"}],"reference":"pt-ui-text"},"typography.links":{"documentation":"

Simply use an <a href=""> tag as you normally would. No class is necessary for Blueprint styles.\nLinks are underlined only when hovered.

\n

Putting an icon inside a link will cause it to inherit the link's text color.

\n","markup":"","markupHtml":"undefined","modifiers":[],"reference":"typography.links"},"utilities":{"documentation":"","markup":"
\n Blueprint components react overlay date picker. Breadcrumbs dialog progress non-ideal state.\n
","markupHtml":"
<div class="{{.modifier}}" style="width: 320px;">
  Blueprint components react overlay date picker. Breadcrumbs dialog progress non-ideal state.
</div>
","modifiers":[{"documentation":"

Changes text color to a gentler gray.

\n","name":".pt-text-muted"},{"documentation":"

Truncates a single line of text with an ellipsis if it overflows its container.

\n","name":".pt-text-overflow-ellipsis"}],"reference":"utilities"},"variables.colors":{"documentation":"

These variables are semantic aliases of our colors. They are used throughout Blueprint\nitself to ensure consistent color usage across components.

\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
VariableDescription
$pt-intent-primaryPrimary intent color
$pt-intent-successSuccess intent color
$pt-intent-warningWarning intent color
$pt-intent-dangerDanger intent color
$pt-app-background-colorApplication background color
$pt-dark-app-background-colorDark theme application background color
$pt-text-colorDefault text color
$pt-text-color-mutedMuted text color
$pt-text-color-disabledDisabled text color
$pt-heading-colorText color for headers
$pt-link-colorText color for links
$pt-dark-text-colorDark theme default text color
$pt-dark-text-color-mutedDark theme muted text color
$pt-dark-text-color-disabledDark theme disabled text color
$pt-dark-heading-colorDark theme text color for headers
$pt-dark-link-colorDark theme text color for links
$pt-text-selection-colorText selection color
$pt-icon-colorDefault icon color
$pt-icon-color-hoverHovered icon color
$pt-icon-color-disabledDisabled icon color
$pt-icon-color-selectedSelected icon color
$pt-dark-icon-colorDark theme default icon color
$pt-dark-icon-color-hoverDark theme hovered icon color
$pt-dark-icon-color-disabledDark theme disabled icon color
$pt-dark-icon-color-selectedDark theme selected icon color
$pt-divider-blackBlack divider color
$pt-dark-divider-blackDark theme black divider color
$pt-dark-divider-whiteDark theme white divider color
$pt-code-text-colorCode text color
$pt-code-background-colorCode background color
$pt-dark-code-text-colorDark theme code text color
$pt-dark-code-background-colorDark theme code background color
","markup":"","markupHtml":"undefined","modifiers":[],"reference":"variables.colors"}}} + module.exports = {"nav":[{"children":[{"title":"Browser support","level":2,"route":"blueprint.browser-support"},{"title":"Usage","level":2,"route":"blueprint.usage"},{"title":"NPM installation","level":3,"route":"blueprint.npm-installation"},{"title":"CDN consumption","level":3,"route":"blueprint.cdn-consumption"},{"title":"DOM4","level":3,"route":"blueprint.dom4"},{"title":"TypeScript","level":3,"route":"blueprint.typescript"},{"title":"Vanilla JS APIs","level":3,"route":"blueprint.vanilla-js-apis"},{"title":"Understanding TypeScript","level":2,"route":"blueprint.understanding-typescript"},{"title":"Development & contributions","level":2,"route":"blueprint.development---contributions"}],"level":1,"reference":"blueprint","route":"blueprint","title":"Blueprint"},{"children":[{"children":[{"title":"Focus management","level":3,"route":"core/accessibility.focus-management"},{"title":"JavaScript API","level":4,"route":"core/accessibility.javascript-api"},{"title":"Color contrast","level":3,"route":"core/accessibility.color-contrast"}],"level":2,"reference":"accessibility","route":"core/accessibility","title":"Accessibility"},{"children":[{"title":"Gray scale","level":3,"route":"core/colors.gray-scale"},{"title":"Core colors","level":3,"route":"core/colors.core-colors"},{"title":"Extended colors","level":3,"route":"core/colors.extended-colors"},{"title":"Color schemes","level":3,"route":"core/colors.color-schemes"},{"title":"Sequential color schemes","level":4,"route":"core/colors.sequential-color-schemes"},{"title":"Diverging color schemes","level":4,"route":"core/colors.diverging-color-schemes"},{"title":"Qualitative color schemes","level":4,"route":"core/colors.qualitative-color-schemes"},{"title":"Color aliases","level":3,"route":"core/colors.color-aliases"}],"level":2,"reference":"colors","route":"core/colors","title":"Colors"},{"children":[{"title":"Usage","level":3,"route":"core/typography.usage"},{"title":"Fonts","level":3,"route":"core/typography.fonts"},{"title":"Headings","level":3,"route":"core/typography.headings"},{"title":"UI text","level":3,"route":"core/typography.ui-text"},{"title":"Running text","level":3,"route":"core/typography.running-text"},{"title":"Links","level":3,"route":"core/typography.links"},{"title":"Preformatted text","level":3,"route":"core/typography.preformatted-text"},{"title":"Block quotes","level":3,"route":"core/typography.block-quotes"},{"title":"Lists","level":3,"route":"core/typography.lists"},{"title":"Text utilities","level":3,"route":"core/typography.text-utilities"},{"title":"Internationalization","level":3,"route":"core/typography.internationalization"},{"title":"Right-to-left text","level":4,"route":"core/typography.right-to-left-text"},{"title":"Dark theme","level":3,"route":"core/typography.dark-theme"}],"level":2,"reference":"typography","route":"core/typography","title":"Typography"},{"children":[],"level":2,"reference":"icons","route":"core/icons","title":"Icons"},{"children":[{"title":"Font variables","level":3,"route":"core/variables.font-variables"},{"title":"Icon variables","level":3,"route":"core/variables.icon-variables"},{"title":"Grids & dimensions","level":3,"route":"core/variables.grids---dimensions"},{"title":"Grid system","level":4,"route":"core/variables.grid-system"},{"title":"Layering","level":3,"route":"core/variables.layering"},{"title":"Light theme styles","level":3,"route":"core/variables.light-theme-styles"},{"title":"Dark theme styles","level":3,"route":"core/variables.dark-theme-styles"}],"level":2,"reference":"variables","route":"core/variables","title":"Variables"},{"children":[{"children":[{"title":"JavaScript API","level":4,"route":"core/components/alert.javascript-api"}],"level":3,"reference":"alert","route":"core/components/alert","title":"Alerts"},{"children":[{"title":"CSS API","level":4,"route":"core/components/breadcrumbs.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/breadcrumbs.javascript-api"}],"level":3,"reference":"breadcrumbs","route":"core/components/breadcrumbs","title":"Breadcrumbs"},{"children":[{"title":"CSS API","level":4,"route":"core/components/button.css-api"},{"title":"Buttons with icons","level":5,"route":"core/components/button.buttons-with-icons"},{"title":"Advanced icon layout","level":5,"route":"core/components/button.advanced-icon-layout"},{"title":"Minimal buttons","level":5,"route":"core/components/button.minimal-buttons"},{"title":"JavaScript API","level":4,"route":"core/components/button.javascript-api"},{"title":"Anchor button","level":5,"route":"core/components/button.anchor-button"},{"title":"Button","level":5,"route":"core/components/button.button"}],"level":3,"reference":"button","route":"core/components/button","title":"Buttons"},{"children":[{"title":"CSS API","level":4,"route":"core/components/button-group.css-api"},{"title":"Responsive button groups","level":5,"route":"core/components/button-group.responsive-button-groups"},{"title":"Vertical button groups","level":5,"route":"core/components/button-group.vertical-button-groups"}],"level":3,"reference":"button-group","route":"core/components/button-group","title":"Button groups"},{"children":[{"title":"CSS API","level":4,"route":"core/components/callout.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/callout.javascript-api"}],"level":3,"reference":"callout","route":"core/components/callout","title":"Callouts"},{"children":[{"title":"CSS API","level":4,"route":"core/components/card.css-api"},{"title":"Interactive cards","level":5,"route":"core/components/card.interactive-cards"}],"level":3,"reference":"card","route":"core/components/card","title":"Cards"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/collapse.javascript-api"}],"level":3,"reference":"collapse","route":"core/components/collapse","title":"Collapse"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/collapsible-list.javascript-api"},{"title":"Separators","level":4,"route":"core/components/collapsible-list.separators"}],"level":3,"reference":"collapsible-list","route":"core/components/collapsible-list","title":"Collapsible list"},{"children":[{"title":"JavaScript API: decorator","level":4,"route":"core/components/context-menu.javascript-api--decorator"},{"title":"JavaScript API: imperative","level":4,"route":"core/components/context-menu.javascript-api--imperative"}],"level":3,"reference":"context-menu","route":"core/components/context-menu","title":"Context menus"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/dialog.javascript-api"},{"title":"CSS API","level":4,"route":"core/components/dialog.css-api"}],"level":3,"reference":"dialog","route":"core/components/dialog","title":"Dialogs"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/editable-text.javascript-api"},{"title":"Multiline mode","level":4,"route":"core/components/editable-text.multiline-mode"}],"level":3,"reference":"editable-text","route":"core/components/editable-text","title":"Editable text"},{"children":[{"children":[{"title":"Simple labels","level":5,"route":"core/components/forms/label.simple-labels"},{"title":"Disabled labels","level":5,"route":"core/components/forms/label.disabled-labels"}],"level":4,"reference":"label","route":"core/components/forms/label","title":"Labels"},{"children":[{"title":"CSS API","level":5,"route":"core/components/forms/form-group.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/forms/form-group.javascript-api"}],"level":4,"reference":"form-group","route":"core/components/forms/form-group","title":"Form groups"},{"children":[{"title":"CSS API","level":5,"route":"core/components/forms/checkbox.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/forms/checkbox.javascript-api"},{"title":"Inline controls","level":5,"route":"core/components/forms/checkbox.inline-controls"}],"level":4,"reference":"checkbox","route":"core/components/forms/checkbox","title":"Checkboxes"},{"children":[{"title":"CSS API","level":5,"route":"core/components/forms/switch.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/forms/switch.javascript-api"}],"level":4,"reference":"switch","route":"core/components/forms/switch","title":"Switches"},{"children":[{"title":"CSS API","level":5,"route":"core/components/forms/radio.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/forms/radio.javascript-api"},{"title":"RadioGroup","level":6,"route":"core/components/forms/radio.radiogroup"}],"level":4,"reference":"radio","route":"core/components/forms/radio","title":"Radios"},{"children":[],"level":4,"reference":"text-area","route":"core/components/forms/text-area","title":"Text areas"},{"children":[{"title":"Search field","level":5,"route":"core/components/forms/input.search-field"}],"level":4,"reference":"input","route":"core/components/forms/input","title":"Text inputs"},{"children":[{"title":"CSS API","level":5,"route":"core/components/forms/input-group.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/forms/input-group.javascript-api"}],"level":4,"reference":"input-group","route":"core/components/forms/input-group","title":"Text input groups"},{"children":[{"title":"Responsive control groups","level":5,"route":"core/components/forms/control-group.responsive-control-groups"},{"title":"Vertical control groups","level":5,"route":"core/components/forms/control-group.vertical-control-groups"}],"level":4,"reference":"control-group","route":"core/components/forms/control-group","title":"Control groups"},{"children":[{"title":"Labeled static dropdown","level":5,"route":"core/components/forms/select.labeled-static-dropdown"}],"level":4,"reference":"select","route":"core/components/forms/select","title":"Selects"},{"children":[],"level":4,"reference":"file-upload","route":"core/components/forms/file-upload","title":"File upload"},{"children":[{"title":"Interactions","level":5,"route":"core/components/forms/numeric-input.interactions"},{"title":"Basic example","level":5,"route":"core/components/forms/numeric-input.basic-example"},{"title":"Extended example","level":5,"route":"core/components/forms/numeric-input.extended-example"},{"title":"JavaScript API","level":5,"route":"core/components/forms/numeric-input.javascript-api"},{"title":"Responsive numeric inputs","level":6,"route":"core/components/forms/numeric-input.responsive-numeric-inputs"},{"title":"Uncontrolled mode","level":6,"route":"core/components/forms/numeric-input.uncontrolled-mode"},{"title":"Controlled mode","level":6,"route":"core/components/forms/numeric-input.controlled-mode"}],"level":4,"reference":"numeric-input","route":"core/components/forms/numeric-input","title":"Numeric inputs"}],"level":3,"reference":"forms","route":"core/components/forms","title":"Form controls"},{"children":[{"title":"Hotkey scope","level":4,"route":"core/components/hotkeys.hotkey-scope"},{"title":"Hotkey dialog","level":4,"route":"core/components/hotkeys.hotkey-dialog"},{"title":"Piano example","level":4,"route":"core/components/hotkeys.piano-example"},{"title":"JavaScript API","level":4,"route":"core/components/hotkeys.javascript-api"},{"title":"Decorator","level":5,"route":"core/components/hotkeys.decorator"},{"title":"Hotkeys","level":5,"route":"core/components/hotkeys.hotkeys"},{"title":"Hotkey","level":5,"route":"core/components/hotkeys.hotkey"},{"title":"Key combos","level":5,"route":"core/components/hotkeys.key-combos"}],"level":3,"reference":"hotkeys","route":"core/components/hotkeys","title":"Hotkeys"},{"children":[{"title":"CSS API","level":4,"route":"core/components/icon.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/icon.javascript-api"}],"level":3,"reference":"icon","route":"core/components/icon","title":"Icon"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/menu.javascript-api"},{"title":"Sample usage","level":5,"route":"core/components/menu.sample-usage"},{"title":"Menu","level":5,"route":"core/components/menu.menu"},{"title":"Menu item","level":5,"route":"core/components/menu.menu-item"},{"title":"Menu divider","level":5,"route":"core/components/menu.menu-divider"},{"title":"Submenus","level":5,"route":"core/components/menu.submenus"},{"title":"Dropdown menus","level":5,"route":"core/components/menu.dropdown-menus"},{"title":"CSS API","level":4,"route":"core/components/menu.css-api"},{"title":"Section headers","level":5,"route":"core/components/menu.section-headers"}],"level":3,"reference":"menu","route":"core/components/menu","title":"Menus"},{"children":[{"title":"CSS API","level":4,"route":"core/components/navbar.css-api"},{"title":"Fixed to viewport top","level":5,"route":"core/components/navbar.fixed-to-viewport-top"},{"title":"Fixed width","level":5,"route":"core/components/navbar.fixed-width"}],"level":3,"reference":"navbar","route":"core/components/navbar","title":"Navbars"},{"children":[{"title":"CSS API","level":4,"route":"core/components/non-ideal-state.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/non-ideal-state.javascript-api"}],"level":3,"reference":"non-ideal-state","route":"core/components/non-ideal-state","title":"Non-ideal state"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/overlay.javascript-api"},{"title":"Scrollable overlays","level":4,"route":"core/components/overlay.scrollable-overlays"}],"level":3,"reference":"overlay","route":"core/components/overlay","title":"Overlays"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/popover.javascript-api"},{"title":"Controlled mode","level":5,"route":"core/components/popover.controlled-mode"},{"title":"Inline popovers","level":5,"route":"core/components/popover.inline-popovers"},{"title":"Opening & closing popovers","level":5,"route":"core/components/popover.opening---closing-popovers"},{"title":"Modal popovers","level":5,"route":"core/components/popover.modal-popovers"},{"title":"Sizing popovers","level":5,"route":"core/components/popover.sizing-popovers"},{"title":"SVG popover","level":5,"route":"core/components/popover.svg-popover"},{"title":"Minimal popovers","level":5,"route":"core/components/popover.minimal-popovers"},{"title":"Dark theme","level":5,"route":"core/components/popover.dark-theme"},{"title":"Testing popovers","level":5,"route":"core/components/popover.testing-popovers"}],"level":3,"reference":"popover","route":"core/components/popover","title":"Popovers"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/portal.javascript-api"},{"title":"React context","level":5,"route":"core/components/portal.react-context"}],"level":3,"reference":"portal","route":"core/components/portal","title":"Portals"},{"children":[{"children":[{"title":"CSS API","level":5,"route":"core/components/progress/progress-bar.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/progress/progress-bar.javascript-api"}],"level":4,"reference":"progress-bar","route":"core/components/progress/progress-bar","title":"Progress bars"},{"children":[{"title":"CSS API","level":5,"route":"core/components/progress/spinner.css-api"},{"title":"JavaScript API","level":5,"route":"core/components/progress/spinner.javascript-api"},{"title":"SVG spinner","level":6,"route":"core/components/progress/spinner.svg-spinner"}],"level":4,"reference":"spinner","route":"core/components/progress/spinner","title":"Spinners"},{"children":[{"title":"CSS API","level":5,"route":"core/components/progress/skeleton.css-api"}],"level":4,"reference":"skeleton","route":"core/components/progress/skeleton","title":"Skeletons"}],"level":3,"reference":"progress","route":"core/components/progress","title":"Progress"},{"children":[{"title":"Single slider","level":4,"route":"core/components/sliders.single-slider"},{"title":"Range slider","level":4,"route":"core/components/sliders.range-slider"}],"level":3,"reference":"sliders","route":"core/components/sliders","title":"Sliders"},{"children":[{"title":"CSS API","level":4,"route":"core/components/table.css-api"}],"level":3,"reference":"table","route":"core/components/table","title":"Table (HTML)"},{"children":[{"title":"CSS API","level":4,"route":"core/components/tabs.css-api"},{"title":"Deprecated JavaScript API","level":4,"route":"core/components/tabs.deprecated-javascript-api"},{"title":"Sample usage","level":5,"route":"core/components/tabs.sample-usage"},{"title":"Tabs props","level":5,"route":"core/components/tabs.tabs-props"},{"title":"Tab props","level":5,"route":"core/components/tabs.tab-props"},{"title":"Usage with React Router","level":5,"route":"core/components/tabs.usage-with-react-router"}],"level":3,"reference":"tabs","route":"core/components/tabs","title":"Tabs"},{"children":[{"title":"CSS API","level":4,"route":"core/components/tabs2.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/tabs2.javascript-api"},{"title":"Tabs2","level":5,"route":"core/components/tabs2.tabs2"},{"title":"Tab2","level":5,"route":"core/components/tabs2.tab2"}],"level":3,"reference":"tabs2","route":"core/components/tabs2","title":"Tabs2"},{"children":[{"title":"CSS API","level":4,"route":"core/components/tag.css-api"},{"title":"Minimal tags","level":5,"route":"core/components/tag.minimal-tags"},{"title":"JavaScript API","level":4,"route":"core/components/tag.javascript-api"}],"level":3,"reference":"tag","route":"core/components/tag","title":"Tags"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/text.javascript-api"}],"level":3,"reference":"text","route":"core/components/text","title":"Text"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/toast.javascript-api"},{"title":"Static method","level":5,"route":"core/components/toast.static-method"},{"title":"Instance methods","level":5,"route":"core/components/toast.instance-methods"},{"title":"React component","level":5,"route":"core/components/toast.react-component"}],"level":3,"reference":"toast","route":"core/components/toast","title":"Toasts"},{"children":[{"title":"JavaScript API","level":4,"route":"core/components/tooltip.javascript-api"},{"title":"Controlled mode","level":5,"route":"core/components/tooltip.controlled-mode"},{"title":"Inline tooltips","level":5,"route":"core/components/tooltip.inline-tooltips"},{"title":"Combining with popover","level":5,"route":"core/components/tooltip.combining-with-popover"},{"title":"SVG tooltip","level":5,"route":"core/components/tooltip.svg-tooltip"},{"title":"Dark theme","level":5,"route":"core/components/tooltip.dark-theme"}],"level":3,"reference":"tooltip","route":"core/components/tooltip","title":"Tooltips"},{"children":[{"title":"CSS API","level":4,"route":"core/components/tree.css-api"},{"title":"JavaScript API","level":4,"route":"core/components/tree.javascript-api"},{"title":"Instance methods","level":5,"route":"core/components/tree.instance-methods"},{"title":"Tree node interface","level":5,"route":"core/components/tree.tree-node-interface"}],"level":3,"reference":"tree","route":"core/components/tree","title":"Trees"}],"level":2,"reference":"components","route":"core/components","title":"Components"},{"children":[{"title":"Sketch assets","level":3,"route":"core/resources.sketch-assets"}],"level":2,"reference":"resources","route":"core/resources","title":"Resources"}],"level":1,"reference":"core","route":"core","title":"Core"},{"children":[{"children":[{"title":"JavaScript API","level":3,"route":"datetime/datepicker.javascript-api"},{"title":"Using modifiers","level":3,"route":"datetime/datepicker.using-modifiers"}],"level":2,"reference":"datepicker","route":"datetime/datepicker","title":"Date picker"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/daterangepicker.javascript-api"}],"level":2,"reference":"daterangepicker","route":"datetime/daterangepicker","title":"Date range picker"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/timepicker.javascript-api"}],"level":2,"reference":"timepicker","route":"datetime/timepicker","title":"Time picker"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/datetimepicker.javascript-api"}],"level":2,"reference":"datetimepicker","route":"datetime/datetimepicker","title":"Date time picker"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/dateinput.javascript-api"}],"level":2,"reference":"dateinput","route":"datetime/dateinput","title":"Date input"},{"children":[{"title":"JavaScript API","level":3,"route":"datetime/daterangeinput.javascript-api"}],"level":2,"reference":"daterangeinput","route":"datetime/daterangeinput","title":"Date range input"}],"level":1,"reference":"datetime","route":"datetime","title":"Datetime"},{"children":[{"title":"Installation","level":2,"route":"table-js.installation"},{"title":"Basic usage","level":2,"route":"table-js.basic-usage"},{"title":"Features","level":2,"route":"table-js.features"},{"title":"Sorting","level":3,"route":"table-js.sorting"},{"title":"Editing","level":3,"route":"table-js.editing"},{"title":"Reordering","level":3,"route":"table-js.reordering"},{"title":"Loading states","level":3,"route":"table-js.loading-states"},{"title":"Table loading states","level":4,"route":"table-js.table-loading-states"},{"title":"Column loading states","level":4,"route":"table-js.column-loading-states"},{"title":"Cells","level":4,"route":"table-js.cells"},{"title":"Formatting","level":3,"route":"table-js.formatting"},{"title":"Freezing","level":3,"route":"table-js.freezing"},{"title":"JavaScript API","level":2,"route":"table-js.javascript-api"},{"title":"Table","level":3,"route":"table-js.table"},{"title":"Instance methods","level":4,"route":"table-js.instance-methods"},{"title":"Column","level":3,"route":"table-js.column"},{"title":"Cell","level":3,"route":"table-js.cell"},{"title":"ColumnHeaderCell","level":3,"route":"table-js.columnheadercell"},{"title":"EditableName","level":3,"route":"table-js.editablename"},{"title":"EditableCell","level":3,"route":"table-js.editablecell"},{"title":"Region","level":3,"route":"table-js.region"},{"title":"TruncatedFormat","level":3,"route":"table-js.truncatedformat"},{"title":"JSONFormat","level":3,"route":"table-js.jsonformat"}],"level":1,"reference":"table-js","route":"table-js","title":"Table"},{"children":[{"children":[{"title":"Querying","level":3,"route":"labs/select-component.querying"},{"title":"Non-ideal states","level":4,"route":"labs/select-component.non-ideal-states"},{"title":"Controlled usage","level":3,"route":"labs/select-component.controlled-usage"},{"title":"JavaScript API","level":3,"route":"labs/select-component.javascript-api"},{"title":"Item Renderer API","level":4,"route":"labs/select-component.item-renderer-api"}],"level":2,"reference":"select-component","route":"labs/select-component","title":"Select"},{"children":[],"level":2,"reference":"suggest","route":"labs/suggest","title":"Suggest"},{"children":[],"level":2,"reference":"multi-select","route":"labs/multi-select","title":"MultiSelect"},{"children":[],"level":2,"reference":"omnibox","route":"labs/omnibox","title":"Omnibox"},{"children":[{"title":"Renderer API","level":3,"route":"labs/query-list.renderer-api"}],"level":2,"reference":"query-list","route":"labs/query-list","title":"QueryList"},{"children":[],"level":2,"reference":"tag-input","route":"labs/tag-input","title":"TagInput"},{"children":[{"title":"Placement","level":3,"route":"labs/popover2.placement"},{"title":"Modifiers","level":3,"route":"labs/popover2.modifiers"}],"level":2,"reference":"popover2","route":"labs/popover2","title":"Popover2"},{"children":[],"level":2,"reference":"tooltip2","route":"labs/tooltip2","title":"Tooltip2"},{"children":[{"title":"JavaScript API","level":3,"route":"labs/timezone-picker.javascript-api"}],"level":2,"reference":"timezone-picker","route":"labs/timezone-picker","title":"TimezonePicker"}],"level":1,"reference":"labs","route":"labs","title":"Labs"}],"pages":{"alert":{"reference":"alert","route":"core/components/alert","title":"Alerts","contents":[{"tag":"heading","value":"Alerts","level":1,"route":"core/components/alert"},"

Alerts notify users of important information and force them to acknowledge the alert content before\ncontinuing.

\n

Although similar to dialogs, alerts are more restrictive and should only be\nused for important information. The user can only exit the alert by clicking one of the\nconfirmation buttons—clicking the overlay or pressing the esc key will not close the alert.

\n

You can only use this component in controlled mode. Use the onClick handlers in the primary and\nsecondary action props to handle closing the Alert. Optionally, display an icon next to the body\nto show the type of the alert.

\n",{"tag":"reactExample","value":"AlertExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/alert.javascript-api"},"

The Alert component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n",{"tag":"interface","value":"IAlertProps"}],"contentsRaw":"@# Alerts\n\nAlerts notify users of important information and force them to acknowledge the alert content before\ncontinuing.\n\nAlthough similar to [dialogs](#core/components/dialog), alerts are more restrictive and should only be\nused for important information. The user can only exit the alert by clicking one of the\nconfirmation buttons—clicking the overlay or pressing the `esc` key will not close the alert.\n\nYou can only use this component in controlled mode. Use the `onClick` handlers in the primary and\nsecondary action props to handle closing the `Alert`. Optionally, display an icon next to the body\nto show the type of the alert.\n\n@reactExample AlertExample\n\n@## JavaScript API\n\nThe `Alert` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\n@interface IAlertProps\n","metadata":{}},"breadcrumbs":{"reference":"breadcrumbs","route":"core/components/breadcrumbs","title":"Breadcrumbs","contents":[{"tag":"heading","value":"Breadcrumbs","level":1,"route":"core/components/breadcrumbs"},"

Breadcrumbs identify the current resource in an application.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/breadcrumbs.css-api"},"
    \n
  • Begin with a ul.pt-breadcrumbs; each crumb should be in its own li as a direct descendant.
  • \n
  • Breadcrumbs are typically navigation links (for example, to the parent folder in a file path), and\ntherefore should use <a> tags (except for the final breadcrumb).
  • \n
  • Each navigation breadcrumb should use .pt-breadcrumb.
  • \n
  • Make a breadcrumb non-interactive with the .pt-disabled class. You should only use this\nstate when you want to indicate that the user cannot navigate to the breadcrumb (for example, if\nthe user does not have permission to access it). Otherwise, clicking a breadcrumb should take the\nuser to that resource.
  • \n
  • Mark the final breadcrumb .pt-breadcrumb-current for an emphasized appearance.
  • \n
  • The .pt-breadcrumbs-collapsed button-like element can be used as the target for a dropdown menu\ncontaining breadcrumbs that are collapsed due to layout constraints.
  • \n
  • When adding another element (such as a tooltip or\npopover) to a breadcrumb, wrap it around the contents of the li.
  • \n
\n",{"tag":"css","value":"pt-breadcrumbs"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/breadcrumbs.javascript-api"},"

The Breadcrumb component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

The component renders an a.pt-breadcrumb. You are responsible for constructing\nthe ul.pt-breadcrumbs list. CollapsibleList\nworks nicely with this component because its props are a subset of IMenuItemProps.

\n",{"tag":"interface","value":"IBreadcrumbProps"}],"contentsRaw":"@# Breadcrumbs\n\nBreadcrumbs identify the current resource in an application.\n\n@## CSS API\n\n* Begin with a `ul.pt-breadcrumbs`; each crumb should be in its own `li` as a direct descendant.\n* Breadcrumbs are typically navigation links (for example, to the parent folder in a file path), and\ntherefore should use `` tags (except for the final breadcrumb).\n* Each navigation breadcrumb should use `.pt-breadcrumb`.\n* Make a breadcrumb non-interactive with the `.pt-disabled` class. You should only use this\nstate when you want to indicate that the user cannot navigate to the breadcrumb (for example, if\nthe user does not have permission to access it). Otherwise, clicking a breadcrumb should take the\nuser to that resource.\n* Mark the final breadcrumb `.pt-breadcrumb-current` for an emphasized appearance.\n* The `.pt-breadcrumbs-collapsed` button-like element can be used as the target for a dropdown menu\ncontaining breadcrumbs that are collapsed due to layout constraints.\n* When adding another element (such as a [tooltip](#core/components/tooltip) or\n[popover](#core/components/popover)) to a breadcrumb, wrap it around the contents of the `li`.\n\n@css pt-breadcrumbs\n\n@## JavaScript API\n\nThe `Breadcrumb` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nThe component renders an `a.pt-breadcrumb`. You are responsible for constructing\nthe `ul.pt-breadcrumbs` list. [`CollapsibleList`](#core/components/collapsiblelist)\nworks nicely with this component because its props are a subset of `IMenuItemProps`.\n\n@interface IBreadcrumbProps\n","metadata":{}},"button-group":{"reference":"button-group","route":"core/components/button-group","title":"Button groups","contents":[{"tag":"heading","value":"Button groups","level":1,"route":"core/components/button-group"},"

Button groups arrange multiple buttons in a horizontal or vertical group.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/button-group.css-api"},"

Arrange multiple buttons in a group by wrapping them in .pt-button-group.\nYou can apply sizing directly on the button group container element.

\n

You should implement interactive segmented controls as button groups.

\n",{"tag":"css","value":"pt-button-group"},{"tag":"heading","value":"Responsive button groups","level":3,"route":"core/components/button-group.responsive-button-groups"},"

Add the class pt-fill to a button group to make all buttons expand equally to fill the\navailable space. Then add the class pt-fixed to individual buttons to revert them to their\noriginal default sizes.

\n

Alternatively, add the class pt-fill to an individual button (instead of to the container)\nto expand it to fill the available space while other buttons retain their original sizes.

\n

You can adjust the specific size of a button with the flex-basis CSS property.

\n",{"tag":"css","value":"pt-button-group.pt-fill"},{"tag":"heading","value":"Vertical button groups","level":3,"route":"core/components/button-group.vertical-button-groups"},"

Add the class pt-vertical to create a vertical button group. The buttons in a vertical\ngroup all have the same size as the widest button in the group.

\n

Add the modifier class pt-align-left to left-align all button text and icons.

\n

You can also combine vertical groups with the pt-fill and pt-minimal class modifiers.

\n",{"tag":"css","value":"pt-button-group.pt-vertical"}],"contentsRaw":"@# Button groups\n\nButton groups arrange multiple buttons in a horizontal or vertical group.\n\n@## CSS API\n\nArrange multiple buttons in a group by wrapping them in `.pt-button-group`.\nYou can apply sizing directly on the button group container element.\n\nYou should implement interactive segmented controls as button groups.\n\n@css pt-button-group\n\n@### Responsive button groups\n\nAdd the class `pt-fill` to a button group to make all buttons expand equally to fill the\navailable space. Then add the class `pt-fixed` to individual buttons to revert them to their\noriginal default sizes.\n\nAlternatively, add the class `pt-fill` to an individual button (instead of to the container)\nto expand it to fill the available space while other buttons retain their original sizes.\n\nYou can adjust the specific size of a button with the `flex-basis` CSS property.\n\n@css pt-button-group.pt-fill\n\n@### Vertical button groups\n\nAdd the class `pt-vertical` to create a vertical button group. The buttons in a vertical\ngroup all have the same size as the widest button in the group.\n\nAdd the modifier class `pt-align-left` to left-align all button text and icons.\n\nYou can also combine vertical groups with the `pt-fill` and `pt-minimal` class modifiers.\n\n@css pt-button-group.pt-vertical\n","metadata":{}},"button":{"reference":"button","route":"core/components/button","title":"Buttons","contents":[{"tag":"heading","value":"Buttons","level":1,"route":"core/components/button"},"

Buttons trigger actions when clicked.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/button.css-api"},"

Use the pt-button class to access button styles. You should implement buttons using the\n<button> or <a> tags rather than <div> for the purposes of HTML accessibility and semantics.

\n
    \n
  • Make sure to include type="button" on <button> tags (use type="submit" when used in a\n<form>) and role="button" on <a> tags for accessibility.
  • \n
  • Add the attribute tabindex="0" to make <a> tags focusable. <button> elements are\nfocusable by default.
  • \n
  • For buttons implemented with <a> tags, add tabindex="-1" to disabled buttons to prevent the\nuser from focusing them by pressing tab on the keyboard.
  • \n
  • Note that <a> tags do not respond to the :disabled attribute; use .pt-disabled instead.
  • \n
\n",{"tag":"css","value":"pt-button"},{"tag":"heading","value":"Buttons with icons","level":3,"route":"core/components/button.buttons-with-icons"},"

Add an icon before the button text with pt-icon-* classes.\nYou do not need to include an icon sizing class.

\n",{"tag":"css","value":"pt-button.pt-icon"},{"tag":"heading","value":"Advanced icon layout","level":3,"route":"core/components/button.advanced-icon-layout"},"

You can use a pt-icon-* class on a button to add a single icon before the button\ntext, but for more advanced icon layouts, use <span> tags inside the button.\nAdd multiple icons to the same button, or move icons after the text.

\n

To adjust margins on right-aligned icons, add the class pt-align-right to the icon.

\n",{"tag":"css","value":"pt-button.pt-icon-advanced"},{"tag":"heading","value":"Minimal buttons","level":3,"route":"core/components/button.minimal-buttons"},"

For a subtler button that appears to fade into the UI, add the .pt-minimal modifier\nto any .pt-button. pt-minimal is compatible with all other button modifiers,\nexcept for .pt-fill (due to lack of visual affordances).

\n",{"tag":"css","value":"pt-button.pt-minimal"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/button.javascript-api"},"

The Button and AnchorButton components are available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

Button components render buttons with Blueprint classes and attributes.\nSee the Buttons CSS docs for styling options.

\n

You can provide your own props to these components as if they were regular JSX HTML elements. If you\nprovide a className prop, the class names you provide will be added alongside of the default\nBlueprint class name. If you specify other attributes that the component provides, such as a role\nfor an <AnchorButton>, you'll overide the default value.

\n
\n
Interactions with disabled buttons
\n Use AnchorButton if you need mouse interaction events (such as hovering) on a disabled button.\n This is because Button and AnchorButton handle the disabled prop differently: Button uses\n the native disabled attribute on the <button> tag so the browser disables all interactions,\n but AnchorButton uses the class .pt-disabled because <a> tags do not support the disabled\n attribute. As a result, the AnchorButton component will prevent only the onClick handler\n when disabled but permit other events.\n
\n\n",{"tag":"reactExample","value":"ButtonsExample"},{"tag":"heading","value":"Anchor button","level":3,"route":"core/components/button.anchor-button"},"
<AnchorButton text="Click" />
// renders:
<a class="pt-button" role="button" tabIndex={0}>Click</a>
",{"tag":"heading","value":"Button","level":3,"route":"core/components/button.button"},"
<Button iconName="refresh" />
// renders:
<button class="pt-button pt-icon-refresh" type="button"></button>
",{"tag":"interface","value":"IButtonProps"}],"contentsRaw":"@# Buttons\n\nButtons trigger actions when clicked.\n\n@## CSS API\n\nUse the `pt-button` class to access button styles. You should implement buttons using the\n`\n```\n\n@interface IButtonProps\n","metadata":{}},"callout":{"reference":"callout","route":"core/components/callout","title":"Callouts","contents":[{"tag":"heading","value":"Callouts","level":1,"route":"core/components/callout"},"

Callouts visually highlight important content for the user.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/callout.css-api"},"

Callouts use the same visual intent modifier classes as buttons. If you need a\nheading, use the <h5> element.

\n
\n Note that the <h5> heading is entirely optional.\n
\n\n",{"tag":"css","value":"pt-callout"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/callout.javascript-api"},"

The Callout component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

The component is a simple wrapper around the CSS API that provides props for modifiers and optional title element.\nAny additional HTML props will be spread to the rendered <div> element.

\n",{"tag":"interface","value":"ICalloutProps"}],"contentsRaw":"@# Callouts\n\nCallouts visually highlight important content for the user.\n\n@## CSS API\n\nCallouts use the same visual intent modifier classes as buttons. If you need a\nheading, use the `
` element.\n\n
\n Note that the `
` heading is entirely optional.\n
\n\n@css pt-callout\n\n@## JavaScript API\n\nThe `Callout` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nThe component is a simple wrapper around the CSS API that provides props for modifiers and optional title element.\nAny additional HTML props will be spread to the rendered `
` element.\n\n@interface ICalloutProps\n","metadata":{}},"card":{"reference":"card","route":"core/components/card","title":"Cards","contents":[{"tag":"heading","value":"Cards","level":1,"route":"core/components/card"},"

A card is a bounded unit of UI content with a solid background color.

\n",{"tag":"heading","value":"CSS API","level":2,"route":"core/components/card.css-api"},"

Start with .pt-card and add an elevation modifier class to apply a drop shadow that simulates\nheight in the UI.

\n

You can also use the .pt-elevation-* classes by themselves to apply shadows to any arbitrary\nelement.

\n",{"tag":"css","value":"pt-card"},{"tag":"heading","value":"Interactive cards","level":3,"route":"core/components/card.interactive-cards"},"

Add the .pt-interactive modifier class to make a .pt-card respond to user interactions. When you\nhover over cards with this class applied, the mouse changes to a pointer and the elevation shadow on\nthe card increases by two levels.

\n

Users expect an interactive card to be a single clickable unit.

\n",{"tag":"css","value":"pt-card.pt-interactive"}],"contentsRaw":"@# Cards\n\nA card is a bounded unit of UI content with a solid background color.\n\n@## CSS API\n\nStart with `.pt-card` and add an elevation modifier class to apply a drop shadow that simulates\nheight in the UI.\n\nYou can also use the `.pt-elevation-*` classes by themselves to apply shadows to any arbitrary\nelement.\n\n@css pt-card\n\n@### Interactive cards\n\nAdd the `.pt-interactive` modifier class to make a `.pt-card` respond to user interactions. When you\nhover over cards with this class applied, the mouse changes to a pointer and the elevation shadow on\nthe card increases by two levels.\n\nUsers expect an interactive card to be a single clickable unit.\n\n@css pt-card.pt-interactive\n","metadata":{}},"collapse":{"reference":"collapse","route":"core/components/collapse","title":"Collapse","contents":[{"tag":"heading","value":"Collapse","level":1,"route":"core/components/collapse"},"

The Collapse element shows and hides content with a built-in slide in/out animation.\nYou might use this to create a panel of settings for your application, with sub-sections\nthat can be expanded and collapsed.

\n",{"tag":"reactExample","value":"CollapseExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/collapse.javascript-api"},"

The Collapse component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

Any content should be a child of the Collapse element. Content must be in the document\nflow (e.g. position: absolute; wouldn't work, as the parent element would inherit a height of 0).

\n

Toggling the isOpen prop triggers the open and close animations.\nOnce the component is in the closed state, the children are no longer rendered.

\n
export interface ICollapseExampleState {
    isOpen?: boolean;
};
 
export class CollapseExample extends React.Component<{}, ICollapseExampleState> {
    public state = {
        isOpen: false,
    };
 
    public render() {
        return (
            <div>
                <Button onClick={this.handleClick}>
                    {this.state.isOpen ? "Hide" : "Show"} build logs
                </Button>
                <Collapse isOpen={this.state.isOpen}>
                    <pre>
                        Dummy text.
                    </pre>
                </Collapse>
            </div>
        );
    }
 
    private handleClick = () => {
        this.setState({ isOpen: !this.state.isOpen });
    }
}
",{"tag":"interface","value":"ICollapseProps"}],"contentsRaw":"@# Collapse\n\nThe `Collapse` element shows and hides content with a built-in slide in/out animation.\nYou might use this to create a panel of settings for your application, with sub-sections\nthat can be expanded and collapsed.\n\n@reactExample CollapseExample\n\n@## JavaScript API\n\nThe `Collapse` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nAny content should be a child of the `Collapse` element. Content must be in the document\nflow (e.g. `position: absolute;` wouldn't work, as the parent element would inherit a height of 0).\n\nToggling the `isOpen` prop triggers the open and close animations.\nOnce the component is in the closed state, the children are no longer rendered.\n\n```tsx\nexport interface ICollapseExampleState {\n isOpen?: boolean;\n};\n\nexport class CollapseExample extends React.Component<{}, ICollapseExampleState> {\n public state = {\n isOpen: false,\n };\n\n public render() {\n return (\n
\n \n \n
\n                        Dummy text.\n                    
\n
\n
\n );\n }\n\n private handleClick = () => {\n this.setState({ isOpen: !this.state.isOpen });\n }\n}\n```\n\n@interface ICollapseProps\n","metadata":{}},"collapsible-list":{"reference":"collapsible-list","route":"core/components/collapsible-list","title":"Collapsible list","contents":[{"tag":"heading","value":"Collapsible list","level":1,"route":"core/components/collapsible-list"},"

The CollapsibleList React component accepts a list of menu items and a count of visible items. It\nshows precisely that many items and collapses the rest into a dropdown menu. The required\nrenderVisibleItem callback prop allows for customizing the appearance of visible items, using the\nprops from the MenuItem children.

\n",{"tag":"reactExample","value":"CollapsibleListExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/collapsible-list.javascript-api"},"

The CollapsibleList component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

Children of the CollapsibleList component must be MenuItems so they can be easily rendered\nin the dropdown. Define a renderVisibleItem callback to customize the appearance of visible\nitems using their IMenuItemProps.

\n",{"tag":"interface","value":"ICollapsibleListProps"},{"tag":"heading","value":"Separators","level":2,"route":"core/components/collapsible-list.separators"},"

Often a list of items calls for separators between each item.\nAdding separators to a CollapsibleList is easily achieved via CSS using ::after pseudo-elements.

\n
// pass `visibleItemClassName="my-list-item"` to component, then... 
 
.my-list-item::after {
    display: inline-block;
    content: "";
    // custom separator styles... 
}
 
// remove separator after the last item 
.my-list-item:last-child::after {
    display: none;
}
"],"contentsRaw":"@# Collapsible list\n\nThe `CollapsibleList` React component accepts a list of menu items and a count of visible items. It\nshows precisely that many items and collapses the rest into a dropdown menu. The required\n`renderVisibleItem` callback prop allows for customizing the appearance of visible items, using the\nprops from the `MenuItem` children.\n\n@reactExample CollapsibleListExample\n\n@## JavaScript API\n\nThe `CollapsibleList` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nChildren of the `CollapsibleList` component _must_ be `MenuItem`s so they can be easily rendered\nin the dropdown. Define a `renderVisibleItem` callback to customize the appearance of visible\nitems using their [`IMenuItemProps`](#core/components/menu.menu-item).\n\n@interface ICollapsibleListProps\n\n@## Separators\n\nOften a list of items calls for separators between each item.\nAdding separators to a `CollapsibleList` is easily achieved via CSS using `::after` pseudo-elements.\n\n```css.scss\n// pass `visibleItemClassName=\"my-list-item\"` to component, then...\n\n.my-list-item::after {\n display: inline-block;\n content: \"\";\n // custom separator styles...\n}\n\n// remove separator after the last item\n.my-list-item:last-child::after {\n display: none;\n}\n```\n","metadata":{}},"components":{"reference":"components","route":"core/components","title":"Components","contents":[{"tag":"heading","value":"Components","level":1,"route":"core/components"},"\n",{"tag":"page","value":"alert"},{"tag":"page","value":"breadcrumbs"},{"tag":"page","value":"button"},{"tag":"page","value":"button-group"},{"tag":"page","value":"callout"},{"tag":"page","value":"card"},{"tag":"page","value":"collapse"},{"tag":"page","value":"collapsible-list"},{"tag":"page","value":"context-menu"},{"tag":"page","value":"dialog"},{"tag":"page","value":"editable-text"},{"tag":"page","value":"forms"},{"tag":"page","value":"hotkeys"},{"tag":"page","value":"icon"},{"tag":"page","value":"menu"},{"tag":"page","value":"navbar"},{"tag":"page","value":"non-ideal-state"},{"tag":"page","value":"overlay"},{"tag":"page","value":"popover"},{"tag":"page","value":"portal"},{"tag":"page","value":"progress"},{"tag":"page","value":"sliders"},{"tag":"page","value":"table"},{"tag":"page","value":"tabs"},{"tag":"page","value":"tabs2"},{"tag":"page","value":"tag"},{"tag":"page","value":"text"},{"tag":"page","value":"toast"},{"tag":"page","value":"tooltip"},{"tag":"page","value":"tree"}],"contentsRaw":"@# Components\n\n\n\n@page alert\n@page breadcrumbs\n@page button\n@page button-group\n@page callout\n@page card\n@page collapse\n@page collapsible-list\n@page context-menu\n@page dialog\n@page editable-text\n@page forms\n@page hotkeys\n@page icon\n@page menu\n@page navbar\n@page non-ideal-state\n@page overlay\n@page popover\n@page portal\n@page progress\n@page sliders\n@page table\n@page tabs\n@page tabs2\n@page tag\n@page text\n@page toast\n@page tooltip\n@page tree\n","metadata":{}},"context-menu":{"reference":"context-menu","route":"core/components/context-menu","title":"Context menus","contents":[{"tag":"heading","value":"Context menus","level":1,"route":"core/components/context-menu"},"

Context menus present the user with a custom list of actions upon right-click.

\n

You can create context menus in either of the following ways:

\n
    \n
  • by adding the @ContextMenuTarget decorator\nto a React component that implements renderContextMenu(): JSX.Element.
  • \n
  • via the imperative ContextMenu.show\nand ContextMenu.hide API methods, ideal for non-React-based applications.
  • \n
\n",{"tag":"reactExample","value":"ContextMenuExample"},{"tag":"heading","value":"JavaScript API: decorator","level":2,"route":"core/components/context-menu.javascript-api--decorator"},"

The ContextMenuTarget decorator is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

The @ContextMenuTarget class decorator can be applied to any React.Component\nclass that meets the following requirements:

\n
    \n
  • It defines an instance method called renderContextMenu() that returns a single JSX.Element\n(most likely a Menu).
  • \n
  • Its root element supports the "contextmenu" event and the onContextMenu prop.
  • \n
\n

This is always true if the decorated class uses an intrinsic element, such as <div>, as its\nroot. If it uses a custom element as its root, you must ensure that the prop is implemented\ncorrectly for that element.

\n

When the user triggers the "contextmenu" event on the decorated class, renderContextMenu() is\ncalled. If renderContextMenu() returns an element, the browser's native context menu is\nblocked and the returned element is displayed instead in a Popover at the cursor's location.

\n

If the instance has a onContextMenuClose method, the decorator will call this function when\nthe context menu is closed.

\n
import { ContextMenuTarget, Menu, MenuItem } from "@blueprintjs/core";
 
@ContextMenuTarget
class RightClickMe extends React.Component<{}, {}> {
    public render() {
        // root element must support `onContextMenu`
        return <div>{...}</div>;
    }
 
    public renderContextMenu() {
        // return a single element, or nothing to use default browser behavior
        return (
            <Menu>
                <MenuItem onClick={this.handleSave} text="Save" />
                <MenuItem onClick={this.handleDelete} text="Delete" />
            </Menu>
        );
    }
 
    public onContextMenuClose() {
        // Optional method called once the context menu is closed.
    }
}
",{"tag":"heading","value":"JavaScript API: imperative","level":2,"route":"core/components/context-menu.javascript-api--imperative"},"

The ContextMenu component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

The imperative API provides a single static ContextMenu object, enforcing the principle that only\none context menu can be open at a time.

\n
    \n
  • ContextMenu.show(menu: JSX.Element, offset: IOffset, onClose?: () => void): void –\nShow the given element at the given offset from the top-left corner of the viewport.\nShowing a menu closes the previously shown one automatically.
  • \n
\n

The menu appears below-right of this point, but will flip to below-left instead if there is not\nenough room onscreen. The optional callback is invoked when this menu closes.

\n
    \n
  • ContextMenu.hide(): void – Hide the context menu, if it is open.
  • \n
  • ContextMenu.isOpen(): boolean – Whether a context menu is currently visible.
  • \n
\n

This API is ideal for non-React-based apps or for programmatically triggered menus.

\n
import { ContextMenu, MenuFactory, MenuItemFactory } from "@blueprintjs/core";
 
const rightClickMe = document.query("#right-click-me") as HTMLElement;
rightClickMe.oncontextmenu = (e: MouseEvent) => {
    // prevent the browser's native context menu
    e.preventDefault();
 
    // render a Menu without JSX...
    const menu = MenuFactory({
        children: [
            MenuItemFactory({ onClick: handleSave, text: "Save" }),
            MenuItemFactory({ onClick: handleDelete, text: "Delete" }),
        ]
    });
 
    // mouse position is available on event
    ContextMenu.show(menu, { left: e.clientX, top: e.clientY }, () => {
        // menu was closed; callback optional
    });
};
"],"contentsRaw":"@# Context menus\n\nContext menus present the user with a custom list of actions upon right-click.\n\nYou can create context menus in either of the following ways:\n\n- by adding the `@ContextMenuTarget` [decorator](#core/components/context-menu.javascript-api--decorator)\n to a React component that implements `renderContextMenu(): JSX.Element`.\n- via the [imperative](#core/components/context-menu.javascript-api--imperative) `ContextMenu.show`\n and `ContextMenu.hide` API methods, ideal for non-React-based applications.\n\n@reactExample ContextMenuExample\n\n@## JavaScript API: decorator\n\nThe `ContextMenuTarget` decorator is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nThe `@ContextMenuTarget` [class decorator][ts-decorator] can be applied to any `React.Component`\nclass that meets the following requirements:\n\n- It defines an instance method called `renderContextMenu()` that returns a single `JSX.Element`\n(most likely a [`Menu`](#core/components/menu)).\n- Its root element supports the `\"contextmenu\"` event and the `onContextMenu` prop.\n\nThis is always true if the decorated class uses an intrinsic element, such as `
`, as its\nroot. If it uses a custom element as its root, you must ensure that the prop is implemented\ncorrectly for that element.\n\nWhen the user triggers the `\"contextmenu\"` event on the decorated class, `renderContextMenu()` is\ncalled. If `renderContextMenu()` returns an element, the browser's native [context menu][wiki-cm] is\nblocked and the returned element is displayed instead in a `Popover` at the cursor's location.\n\nIf the instance has a `onContextMenuClose` method, the decorator will call this function when\nthe context menu is closed.\n\n```tsx\nimport { ContextMenuTarget, Menu, MenuItem } from \"@blueprintjs/core\";\n\n@ContextMenuTarget\nclass RightClickMe extends React.Component<{}, {}> {\n public render() {\n // root element must support `onContextMenu`\n return
{...}
;\n }\n\n public renderContextMenu() {\n // return a single element, or nothing to use default browser behavior\n return (\n \n \n \n \n );\n }\n\n public onContextMenuClose() {\n // Optional method called once the context menu is closed.\n }\n}\n```\n\n[ts-decorator]: https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/Decorators.md\n[wiki-cm]: https://en.wikipedia.org/wiki/Context_menu\n\n@## JavaScript API: imperative\n\nThe `ContextMenu` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nThe imperative API provides a single static `ContextMenu` object, enforcing the principle that only\none context menu can be open at a time.\n\n- `ContextMenu.show(menu: JSX.Element, offset: IOffset, onClose?: () => void): void` –\nShow the given element at the given offset from the top-left corner of the viewport.\nShowing a menu closes the previously shown one automatically.\n\nThe menu appears below-right of this point, but will flip to below-left instead if there is not\nenough room onscreen. The optional callback is invoked when this menu closes.\n\n- `ContextMenu.hide(): void` – Hide the context menu, if it is open.\n- `ContextMenu.isOpen(): boolean` – Whether a context menu is currently visible.\n\nThis API is ideal for non-React-based apps or for programmatically triggered menus.\n\n```tsx\nimport { ContextMenu, MenuFactory, MenuItemFactory } from \"@blueprintjs/core\";\n\nconst rightClickMe = document.query(\"#right-click-me\") as HTMLElement;\nrightClickMe.oncontextmenu = (e: MouseEvent) => {\n // prevent the browser's native context menu\n e.preventDefault();\n\n // render a Menu without JSX...\n const menu = MenuFactory({\n children: [\n MenuItemFactory({ onClick: handleSave, text: \"Save\" }),\n MenuItemFactory({ onClick: handleDelete, text: \"Delete\" }),\n ]\n });\n\n // mouse position is available on event\n ContextMenu.show(menu, { left: e.clientX, top: e.clientY }, () => {\n // menu was closed; callback optional\n });\n};\n```\n","metadata":{}},"dialog":{"reference":"dialog","route":"core/components/dialog","title":"Dialogs","contents":[{"tag":"heading","value":"Dialogs","level":1,"route":"core/components/dialog"},"

Dialogs present content overlaid over other parts of the UI.

\n
\n
Terminology note
\n The term "modal" is sometimes used to mean "dialog," but this is a misnomer.\n Modal is an adjective that describes parts of a UI.\n An element is considered modal if it\n blocks interaction with the rest of the application.\n We use the term "dialog" to avoid confusion with the adjective.\n
\n\n",{"tag":"reactExample","value":"DialogExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/dialog.javascript-api"},"

The Dialog component is available in the @blueprintjs/core package.\nMake sure to review the general usage docs for JS components.

\n

There are two ways to render dialogs:

\n
    \n
  • injected into a newly created element attached to document.body using <Portal>.\nThis is the default behavior.
  • \n
  • in-place in the DOM tree. Set inline={true} to enable this behavior.
  • \n
\n

Dialog is a stateless React component. The children you provide to this component\nare rendered as contents inside the .pt-dialog element.

\n
interface IDialogExampleState {
    isOpen: boolean;
}
 
class DialogExample extends React.Component<{}, IDialogExampleState> {
    public state = { isOpen: false };
 
    public render() {
        return (
            <div>
                <Button onClick={this.toggleDialog} text="Show dialog" />
                <Dialog
                    iconName="inbox"
                    isOpen={this.state.isOpen}
                    onClose={this.toggleDialog}
                    title="Dialog header"
                >
                    <div className="pt-dialog-body">
                        Some content
                    </div>
                    <div className="pt-dialog-footer">
                        <div className="pt-dialog-footer-actions">
                            <Button text="Secondary" />
                            <Button
                                intent={Intent.PRIMARY}
                                onClick={this.toggleDialog}
                                text="Primary"
                            />
                        </div>
                    </div>
                </Dialog>
            </div>
        );
    }
 
    private toggleDialog = () => this.setState({ isOpen: !this.state.isOpen });
}
",{"tag":"interface","value":"IDialogProps"},{"tag":"heading","value":"CSS API","level":2,"route":"core/components/dialog.css-api"},"

You can create dialogs manually using the HTML markup and pt-dialog-* classes below.\nHowever, you should use the dialog JavaScript APIs whenever possible,\nas they automatically generate some of this markup.

\n

More examples of dialog content are shown below.

\n",{"tag":"css","value":"pt-dialog"}],"contentsRaw":"@# Dialogs\n\nDialogs present content overlaid over other parts of the UI.\n\n
\n
Terminology note
\n The term \"modal\" is sometimes used to mean \"dialog,\" but this is a misnomer.\n _Modal_ is an adjective that describes parts of a UI.\n An element is considered modal if it\n [blocks interaction with the rest of the application](https://en.wikipedia.org/wiki/Modal_window).\n We use the term \"dialog\" to avoid confusion with the adjective.\n
\n\n@reactExample DialogExample\n\n@## JavaScript API\n\nThe `Dialog` component is available in the __@blueprintjs/core__ package.\nMake sure to review the [general usage docs for JS components](#blueprint.usage).\n\nThere are two ways to render dialogs:\n\n- injected into a newly created element attached to `document.body` using ``.\n This is the default behavior.\n- in-place in the DOM tree. Set `inline={true}` to enable this behavior.\n\n`Dialog` is a stateless React component. The children you provide to this component\nare rendered as contents inside the `.pt-dialog` element.\n\n```tsx\ninterface IDialogExampleState {\n isOpen: boolean;\n}\n\nclass DialogExample extends React.Component<{}, IDialogExampleState> {\n public state = { isOpen: false };\n\n public render() {\n return (\n
\n
\n
\n \n
\n );\n }\n\n private toggleDialog = () => this.setState({ isOpen: !this.state.isOpen });\n}\n```\n\n@interface IDialogProps\n\n@## CSS API\n\nYou can create dialogs manually using the HTML markup and `pt-dialog-*` classes below.\nHowever, you should use the dialog [JavaScript APIs](#core/components/dialog.javascript-api) whenever possible,\nas they automatically generate some of this markup.\n\nMore examples of dialog content are shown below.\n\n@css pt-dialog\n","metadata":{}},"editable-text":{"reference":"editable-text","route":"core/components/editable-text","title":"Editable text","contents":[{"tag":"heading","value":"Editable text","level":1,"route":"core/components/editable-text"},"

EditableText looks like normal UI text, but transforms into a text input field when the user\nfocuses it.

\n

The text input inherits all font styling from its ancestors, making the transition between reading\nand editing text seamless.

\n

You might use this component for inline renaming, or for an\neditable multiline description.\nYou should not use EditableText when a static always-editable <input> or\n<textarea> tag would suffice.

\n
\n
Centering the component
\n Do not center this component using text-align: center, as it will cause an infinite loop\n in the browser (more details). Instead,\n you should center the component via flexbox or with position and transform: translateX(-50%).\n
\n\n",{"tag":"reactExample","value":"EditableTextExample"},{"tag":"heading","value":"JavaScript API","level":2,"route":"core/components/editable-text.javascript-api"},"

The EditableText component is available in the @blueprintjs/core package. Make sure to review\nthe general usage docs for JS components.

\n

EditableText can be used like an input\nelement and supports controlled or uncontrolled\nusage through the value or defaultValue props, respectively.

\n

The onConfirm and onCancel callbacks are invoked based on user interaction. The user presses\nenter or blurs the input to confirm the current value, or presses esc to cancel. Canceling resets\nthe field to the last confirmed value. Neither callback is invoked if the value is unchanged.

\n

EditableText by default supports exactly one line of text and will grow or shrink horizontally\nbased on the length of text. See below for information on multiline\nsupport.

\n",{"tag":"interface","value":"IEditableTextProps"},{"tag":"heading","value":"Multiline mode","level":2,"route":"core/components/editable-text.multiline-mode"},"
<EditableText multiline minLines={3} maxLines={12} {...props} />

Provide the multiline prop to create an EditableText field that spans multiple lines. Multiline\nmode uses a <textarea> instead of an <input type="text"> to support multiple lines of text.

\n

Users confirm text in multiline mode by pressing ctrl enter or cmd enter rather than\nsimply enter. (Pressing the enter key by itself moves the cursor to the next line.)

\n

Additionally, in multiline mode the component's width is fixed at 100%. It grows or shrinks\nvertically instead, based on the number of lines of text. You can use the minLines and\nmaxLines props to constrain the vertical size of the component.

\n
\n
Multiline prop format
\n You should declare multiline as a valueless boolean prop, as in the example above\n (<EditableText multiline ...>). This prevents you from changing the value after declaring it,\n which would provide a sub-optimal experience for users (multiline text does not always render\n cleanly into a single line).\n
\n"],"contentsRaw":"@# Editable text\n\n`EditableText` looks like normal UI text, but transforms into a text input field when the user\nfocuses it.\n\nThe text input inherits all font styling from its ancestors, making the transition between reading\nand editing text seamless.\n\nYou might use this component for inline renaming, or for an\n[editable multiline description](#core/components/editable-text.multiline-mode).\nYou should not use `EditableText` when a static always-editable `` or\n`","markupHtml":"
<textarea class="pt-input {{.modifier}}" {{:modifier}} dir="auto"></textarea>
","modifiers":[{"documentation":"

Disabled

\n","name":":disabled"},{"documentation":"

Readonly

\n","name":":readonly"},{"documentation":"

Larger font size

\n","name":".pt-large"},{"documentation":"

Primary intent

\n","name":".pt-intent-primary"},{"documentation":"

Danger intent

\n","name":".pt-intent-danger"},{"documentation":"

Take up full width of parent element

\n","name":".pt-fill"}],"reference":"pt-textarea"},"pt-tree":{"documentation":"","markup":"
\n
    \n
  • \n
    \n \n \n Label\n Secondary label\n
    \n
      \n
    • \n
      \n \n \n A Document\n
      \n
    • \n
    • \n
      \n \n \n Another Document\n
      \n
    • \n
    \n
  • \n
\n
","markupHtml":"
<div class="pt-tree pt-elevation-0">
  <ul class="pt-tree-node-list pt-tree-root">
    <li class="pt-tree-node pt-tree-node-expanded">
      <div class="pt-tree-node-content">
        <span class="pt-tree-node-caret pt-tree-node-caret-open pt-icon-standard"></span>
        <span class="pt-tree-node-icon pt-icon-standard pt-icon-folder-close"></span>
        <span class="pt-tree-node-label">Label</span>
        <span class="pt-tree-node-secondary-label">Secondary label</span>
      </div>
      <ul class="pt-tree-node-list">
        <li class="pt-tree-node">
          <div class="pt-tree-node-content">
            <span class="pt-tree-node-caret-none pt-icon-standard"></span>
            <span class="pt-tree-node-icon pt-icon-standard pt-icon-document"></span>
          <span class="pt-tree-node-label">A Document</span>
          </div>
        </li>
        <li class="pt-tree-node">
          <div class="pt-tree-node-content">
            <span class="pt-tree-node-caret-none pt-icon-standard"></span>
            <span class="pt-tree-node-icon pt-icon-standard pt-icon-document"></span>
            <span class="pt-tree-node-label">Another Document</span>
          </div>
        </li>
      </ul>
    </li>
  </ul>
</div>
","modifiers":[],"reference":"pt-tree"},"pt-ui-text":{"documentation":"","markup":"
Blueprint components react overlay date picker.
","markupHtml":"
<div class="{{.modifier}}">Blueprint components react overlay date picker.</div>
","modifiers":[{"documentation":"

Default UI text. This is applied to the document body as part of core styles.

\n","name":".pt-ui-text"},{"documentation":"

Larger UI text.

\n","name":".pt-ui-text-large"}],"reference":"pt-ui-text"},"typography.links":{"documentation":"

Simply use an <a href=""> tag as you normally would. No class is necessary for Blueprint styles.\nLinks are underlined only when hovered.

\n

Putting an icon inside a link will cause it to inherit the link's text color.

\n","markup":"","markupHtml":"undefined","modifiers":[],"reference":"typography.links"},"utilities":{"documentation":"","markup":"
\n Blueprint components react overlay date picker. Breadcrumbs dialog progress non-ideal state.\n
","markupHtml":"
<div class="{{.modifier}}" style="width: 320px;">
  Blueprint components react overlay date picker. Breadcrumbs dialog progress non-ideal state.
</div>
","modifiers":[{"documentation":"

Changes text color to a gentler gray.

\n","name":".pt-text-muted"},{"documentation":"

Truncates a single line of text with an ellipsis if it overflows its container.

\n","name":".pt-text-overflow-ellipsis"}],"reference":"utilities"},"variables.colors":{"documentation":"

These variables are semantic aliases of our colors. They are used throughout Blueprint\nitself to ensure consistent color usage across components.

\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
VariableDescription
$pt-intent-primaryPrimary intent color
$pt-intent-successSuccess intent color
$pt-intent-warningWarning intent color
$pt-intent-dangerDanger intent color
$pt-app-background-colorApplication background color
$pt-dark-app-background-colorDark theme application background color
$pt-text-colorDefault text color
$pt-text-color-mutedMuted text color
$pt-text-color-disabledDisabled text color
$pt-heading-colorText color for headers
$pt-link-colorText color for links
$pt-dark-text-colorDark theme default text color
$pt-dark-text-color-mutedDark theme muted text color
$pt-dark-text-color-disabledDark theme disabled text color
$pt-dark-heading-colorDark theme text color for headers
$pt-dark-link-colorDark theme text color for links
$pt-text-selection-colorText selection color
$pt-icon-colorDefault icon color
$pt-icon-color-hoverHovered icon color
$pt-icon-color-disabledDisabled icon color
$pt-icon-color-selectedSelected icon color
$pt-dark-icon-colorDark theme default icon color
$pt-dark-icon-color-hoverDark theme hovered icon color
$pt-dark-icon-color-disabledDark theme disabled icon color
$pt-dark-icon-color-selectedDark theme selected icon color
$pt-divider-blackBlack divider color
$pt-dark-divider-blackDark theme black divider color
$pt-dark-divider-whiteDark theme white divider color
$pt-code-text-colorCode text color
$pt-code-background-colorCode background color
$pt-dark-code-text-colorDark theme code text color
$pt-dark-code-background-colorDark theme code background color
","markup":"","markupHtml":"undefined","modifiers":[],"reference":"variables.colors"}}} /***/ }), -/* 659 */ +/* 665 */ /***/ (function(module, exports) { - module.exports = [{"name":"@blueprintjs/core","version":"1.31.0"},{"name":"@blueprintjs/datetime","version":"1.22.0"},{"name":"@blueprintjs/docs","version":"1.1.1"},{"name":"@blueprintjs/labs","version":"0.11.0"},{"name":"@blueprintjs/table","version":"1.28.0"}] + module.exports = [{"name":"@blueprintjs/core","version":"1.32.0"},{"name":"@blueprintjs/datetime","version":"1.23.0"},{"name":"@blueprintjs/docs","version":"1.1.1"},{"name":"@blueprintjs/labs","version":"0.12.0"},{"name":"@blueprintjs/table","version":"1.29.0"}] /***/ }), -/* 660 */ +/* 666 */ /***/ (function(module, exports) { - module.exports = ["1.31.0"] + module.exports = ["1.32.0"] /***/ }) /******/ ]); diff --git a/package.json b/package.json index a8c5d5d8f5..c1d72f484e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "blueprint-monorepo", - "version": "1.31.0", + "version": "1.32.0", "private": true, "description": "A React UI toolkit for the web.", "scripts": { diff --git a/packages/core/package.json b/packages/core/package.json index 21f6a2733f..1dc5b36c0e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@blueprintjs/core", - "version": "1.31.0", + "version": "1.32.0", "description": "Core styles & components", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/datetime/package.json b/packages/datetime/package.json index ab441c9e39..0ab9642e9b 100644 --- a/packages/datetime/package.json +++ b/packages/datetime/package.json @@ -1,6 +1,6 @@ { "name": "@blueprintjs/datetime", - "version": "1.22.0", + "version": "1.23.0", "description": "Components for interacting with dates and times", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/labs/package.json b/packages/labs/package.json index 9e23577718..4ad0ea8fdf 100644 --- a/packages/labs/package.json +++ b/packages/labs/package.json @@ -1,6 +1,6 @@ { "name": "@blueprintjs/labs", - "version": "0.11.0", + "version": "0.12.0", "description": "Incubator for unstable and in-development Blueprint components", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/packages/site-docs/package.json b/packages/site-docs/package.json index 766c0bb2fc..218090ef65 100644 --- a/packages/site-docs/package.json +++ b/packages/site-docs/package.json @@ -1,14 +1,14 @@ { "name": "blueprintjs.com/docs", - "version": "1.31.0", + "version": "1.32.0", "description": "Blueprint Docs", "private": true, "dependencies": { - "@blueprintjs/core": "^1.31.0", - "@blueprintjs/datetime": "^1.22.0", + "@blueprintjs/core": "^1.32.0", + "@blueprintjs/datetime": "^1.23.0", "@blueprintjs/docs": "^1.1.1", - "@blueprintjs/labs": "^0.11.0", - "@blueprintjs/table": "^1.28.0", + "@blueprintjs/labs": "^0.12.0", + "@blueprintjs/table": "^1.29.0", "bourbon": "^4.2.2", "chroma-js": "^1.3.4", "classnames": "^2.2.5", diff --git a/packages/table/package.json b/packages/table/package.json index 004c577355..c68f4786a7 100644 --- a/packages/table/package.json +++ b/packages/table/package.json @@ -1,6 +1,6 @@ { "name": "@blueprintjs/table", - "version": "1.28.0", + "version": "1.29.0", "description": "Scalable interactive table component", "main": "dist/index.js", "typings": "dist/index.d.ts", @@ -20,7 +20,7 @@ "watch": "onchange 'src/**' 'preview/*.ts*' -- npm-run-all build:gulp build:preview" }, "dependencies": { - "@blueprintjs/core": "^1.30.0", + "@blueprintjs/core": "^1.32.0", "classnames": "^2.2", "es6-shim": "^0.35", "pure-render-decorator": "^1.1",