mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 13:31:00 +00:00
1 line
110 KiB
Plaintext
1 line
110 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/objectWithoutPropertiesLoose","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":13,"column":0,"index":225},"end":{"line":13,"column":96,"index":321}}],"key":"h/v2q98AsT4QTiU2QmCS7mQfUgY=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/objectSpread2","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":14,"column":0,"index":322},"end":{"line":14,"column":65,"index":387}}],"key":"SfRhzMj3Ex6qA89WTFEUm9Lj49A=","exportNames":["*"],"imports":1}},{"name":"../../modules/AccessibilityUtil","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":15,"column":0,"index":388},"end":{"line":15,"column":64,"index":452}}],"key":"R+Y/gtGxPP5h0s7mBrfSxbjV1hk=","exportNames":["*"],"imports":1}},{"name":"./BoundingDimensions","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":16,"column":0,"index":453},"end":{"line":16,"column":54,"index":507}}],"key":"wRmmv9+KDtDSt7ts2uoAqCj3gYI=","exportNames":["*"],"imports":1}},{"name":"@react-native/normalize-colors","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":17,"column":0,"index":508},"end":{"line":17,"column":60,"index":568}}],"key":"r6xNj+hfHNSiyr0OqQ2Fc9JYEeE=","exportNames":["*"],"imports":1}},{"name":"./Position","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":18,"column":0,"index":569},"end":{"line":18,"column":34,"index":603}}],"key":"fj/b4dS+Oryk2FPbPGSEKLv9mm0=","exportNames":["*"],"imports":1}},{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":19,"column":0,"index":604},"end":{"line":19,"column":26,"index":630}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"../UIManager","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":20,"column":0,"index":631},"end":{"line":20,"column":37,"index":668}}],"key":"QEvI6Qp5yj0uKHcpJuhn6T7mPD8=","exportNames":["*"],"imports":1}},{"name":"../View","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":21,"column":0,"index":669},"end":{"line":21,"column":27,"index":696}}],"key":"z+h67QhWT4Dd/ILcrpyPJ2FPLGs=","exportNames":["*"],"imports":1}},{"name":"../../modules/warnOnce","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":22,"column":0,"index":697},"end":{"line":22,"column":50,"index":747}}],"key":"C5M71K27EorI3sF0QNcrnJHly9c=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n /**\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @format\n */\n\n 'use strict';\n\n Object.defineProperty(exports, '__esModule', {\n value: true\n });\n function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return _default;\n }\n });\n var _babelRuntimeHelpersObjectWithoutPropertiesLoose = require(_dependencyMap[0], \"@babel/runtime/helpers/objectWithoutPropertiesLoose\");\n var _objectWithoutPropertiesLoose = _interopDefault(_babelRuntimeHelpersObjectWithoutPropertiesLoose);\n var _babelRuntimeHelpersObjectSpread = require(_dependencyMap[1], \"@babel/runtime/helpers/objectSpread2\");\n var _objectSpread = _interopDefault(_babelRuntimeHelpersObjectSpread);\n var _modulesAccessibilityUtil = require(_dependencyMap[2], \"../../modules/AccessibilityUtil\");\n var AccessibilityUtil = _interopDefault(_modulesAccessibilityUtil);\n var _BoundingDimensions = require(_dependencyMap[3], \"./BoundingDimensions\");\n var BoundingDimensions = _interopDefault(_BoundingDimensions);\n var _reactNativeNormalizeColors = require(_dependencyMap[4], \"@react-native/normalize-colors\");\n var normalizeColor = _interopDefault(_reactNativeNormalizeColors);\n var _Position = require(_dependencyMap[5], \"./Position\");\n var Position = _interopDefault(_Position);\n var _react = require(_dependencyMap[6], \"react\");\n var React = _interopDefault(_react);\n var _UIManager = require(_dependencyMap[7], \"../UIManager\");\n var UIManager = _interopDefault(_UIManager);\n var _View = require(_dependencyMap[8], \"../View\");\n var View = _interopDefault(_View);\n var _modulesWarnOnce = require(_dependencyMap[9], \"../../modules/warnOnce\");\n var extractSingleTouch = nativeEvent => {\n var touches = nativeEvent.touches;\n var changedTouches = nativeEvent.changedTouches;\n var hasTouches = touches && touches.length > 0;\n var hasChangedTouches = changedTouches && changedTouches.length > 0;\n return !hasTouches && hasChangedTouches ? changedTouches[0] : hasTouches ? touches[0] : nativeEvent;\n };\n\n /**\n * `Touchable`: Taps done right.\n *\n * You hook your `ResponderEventPlugin` events into `Touchable`. `Touchable`\n * will measure time/geometry and tells you when to give feedback to the user.\n *\n * ====================== Touchable Tutorial ===============================\n * The `Touchable` mixin helps you handle the \"press\" interaction. It analyzes\n * the geometry of elements, and observes when another responder (scroll view\n * etc) has stolen the touch lock. It notifies your component when it should\n * give feedback to the user. (bouncing/highlighting/unhighlighting).\n *\n * - When a touch was activated (typically you highlight)\n * - When a touch was deactivated (typically you unhighlight)\n * - When a touch was \"pressed\" - a touch ended while still within the geometry\n * of the element, and no other element (like scroller) has \"stolen\" touch\n * lock (\"responder\") (Typically you bounce the element).\n *\n * A good tap interaction isn't as simple as you might think. There should be a\n * slight delay before showing a highlight when starting a touch. If a\n * subsequent touch move exceeds the boundary of the element, it should\n * unhighlight, but if that same touch is brought back within the boundary, it\n * should rehighlight again. A touch can move in and out of that boundary\n * several times, each time toggling highlighting, but a \"press\" is only\n * triggered if that touch ends while within the element's boundary and no\n * scroller (or anything else) has stolen the lock on touches.\n *\n * To create a new type of component that handles interaction using the\n * `Touchable` mixin, do the following:\n *\n * - Initialize the `Touchable` state.\n *\n * getInitialState: function() {\n * return merge(this.touchableGetInitialState(), yourComponentState);\n * }\n *\n * - Add a method to get your touchable component's node.\n * getTouchableNode: function() {\n * return this.touchableRef.current\n * }\n *\n * - Choose the rendered component who's touches should start the interactive\n * sequence. On that rendered node, forward all `Touchable` responder\n * handlers. You can choose any rendered node you like. Choose a node whose\n * hit target you'd like to instigate the interaction sequence:\n *\n * // In render function:\n * return (\n * <View\n * ref={this.touchableRef}\n * onStartShouldSetResponder={this.touchableHandleStartShouldSetResponder}\n * onResponderTerminationRequest={this.touchableHandleResponderTerminationRequest}\n * onResponderGrant={this.touchableHandleResponderGrant}\n * onResponderMove={this.touchableHandleResponderMove}\n * onResponderRelease={this.touchableHandleResponderRelease}\n * onResponderTerminate={this.touchableHandleResponderTerminate}>\n * <View>\n * Even though the hit detection/interactions are triggered by the\n * wrapping (typically larger) node, we usually end up implementing\n * custom logic that highlights this inner one.\n * </View>\n * </View>\n * );\n *\n * - You may set up your own handlers for each of these events, so long as you\n * also invoke the `touchable*` handlers inside of your custom handler.\n *\n * - Implement the handlers on your component class in order to provide\n * feedback to the user. See documentation for each of these class methods\n * that you should implement.\n *\n * touchableHandlePress: function() {\n * this.performBounceAnimation(); // or whatever you want to do.\n * },\n * touchableHandleActivePressIn: function() {\n * this.beginHighlighting(...); // Whatever you like to convey activation\n * },\n * touchableHandleActivePressOut: function() {\n * this.endHighlighting(...); // Whatever you like to convey deactivation\n * },\n *\n * - There are more advanced methods you can implement (see documentation below):\n * touchableGetHighlightDelayMS: function() {\n * return 20;\n * }\n * // In practice, *always* use a predeclared constant (conserve memory).\n * touchableGetPressRectOffset: function() {\n * return {top: 20, left: 20, right: 20, bottom: 100};\n * }\n */\n\n /**\n * Touchable states.\n */\n\n var States = {\n NOT_RESPONDER: 'NOT_RESPONDER',\n // Not the responder\n RESPONDER_INACTIVE_PRESS_IN: 'RESPONDER_INACTIVE_PRESS_IN',\n // Responder, inactive, in the `PressRect`\n RESPONDER_INACTIVE_PRESS_OUT: 'RESPONDER_INACTIVE_PRESS_OUT',\n // Responder, inactive, out of `PressRect`\n RESPONDER_ACTIVE_PRESS_IN: 'RESPONDER_ACTIVE_PRESS_IN',\n // Responder, active, in the `PressRect`\n RESPONDER_ACTIVE_PRESS_OUT: 'RESPONDER_ACTIVE_PRESS_OUT',\n // Responder, active, out of `PressRect`\n RESPONDER_ACTIVE_LONG_PRESS_IN: 'RESPONDER_ACTIVE_LONG_PRESS_IN',\n // Responder, active, in the `PressRect`, after long press threshold\n RESPONDER_ACTIVE_LONG_PRESS_OUT: 'RESPONDER_ACTIVE_LONG_PRESS_OUT',\n // Responder, active, out of `PressRect`, after long press threshold\n ERROR: 'ERROR'\n };\n /*\n * Quick lookup map for states that are considered to be \"active\"\n */\n\n var baseStatesConditions = {\n NOT_RESPONDER: false,\n RESPONDER_INACTIVE_PRESS_IN: false,\n RESPONDER_INACTIVE_PRESS_OUT: false,\n RESPONDER_ACTIVE_PRESS_IN: false,\n RESPONDER_ACTIVE_PRESS_OUT: false,\n RESPONDER_ACTIVE_LONG_PRESS_IN: false,\n RESPONDER_ACTIVE_LONG_PRESS_OUT: false,\n ERROR: false\n };\n var IsActive = (0, _objectSpread.default)((0, _objectSpread.default)({}, baseStatesConditions), {}, {\n RESPONDER_ACTIVE_PRESS_OUT: true,\n RESPONDER_ACTIVE_PRESS_IN: true\n });\n\n /**\n * Quick lookup for states that are considered to be \"pressing\" and are\n * therefore eligible to result in a \"selection\" if the press stops.\n */\n var IsPressingIn = (0, _objectSpread.default)((0, _objectSpread.default)({}, baseStatesConditions), {}, {\n RESPONDER_INACTIVE_PRESS_IN: true,\n RESPONDER_ACTIVE_PRESS_IN: true,\n RESPONDER_ACTIVE_LONG_PRESS_IN: true\n });\n var IsLongPressingIn = (0, _objectSpread.default)((0, _objectSpread.default)({}, baseStatesConditions), {}, {\n RESPONDER_ACTIVE_LONG_PRESS_IN: true\n });\n\n /**\n * Inputs to the state machine.\n */\n var Signals = {\n DELAY: 'DELAY',\n RESPONDER_GRANT: 'RESPONDER_GRANT',\n RESPONDER_RELEASE: 'RESPONDER_RELEASE',\n RESPONDER_TERMINATED: 'RESPONDER_TERMINATED',\n ENTER_PRESS_RECT: 'ENTER_PRESS_RECT',\n LEAVE_PRESS_RECT: 'LEAVE_PRESS_RECT',\n LONG_PRESS_DETECTED: 'LONG_PRESS_DETECTED'\n };\n /**\n * Mapping from States x Signals => States\n */\n var Transitions = {\n NOT_RESPONDER: {\n DELAY: States.ERROR,\n RESPONDER_GRANT: States.RESPONDER_INACTIVE_PRESS_IN,\n RESPONDER_RELEASE: States.ERROR,\n RESPONDER_TERMINATED: States.ERROR,\n ENTER_PRESS_RECT: States.ERROR,\n LEAVE_PRESS_RECT: States.ERROR,\n LONG_PRESS_DETECTED: States.ERROR\n },\n RESPONDER_INACTIVE_PRESS_IN: {\n DELAY: States.RESPONDER_ACTIVE_PRESS_IN,\n RESPONDER_GRANT: States.ERROR,\n RESPONDER_RELEASE: States.NOT_RESPONDER,\n RESPONDER_TERMINATED: States.NOT_RESPONDER,\n ENTER_PRESS_RECT: States.RESPONDER_INACTIVE_PRESS_IN,\n LEAVE_PRESS_RECT: States.RESPONDER_INACTIVE_PRESS_OUT,\n LONG_PRESS_DETECTED: States.ERROR\n },\n RESPONDER_INACTIVE_PRESS_OUT: {\n DELAY: States.RESPONDER_ACTIVE_PRESS_OUT,\n RESPONDER_GRANT: States.ERROR,\n RESPONDER_RELEASE: States.NOT_RESPONDER,\n RESPONDER_TERMINATED: States.NOT_RESPONDER,\n ENTER_PRESS_RECT: States.RESPONDER_INACTIVE_PRESS_IN,\n LEAVE_PRESS_RECT: States.RESPONDER_INACTIVE_PRESS_OUT,\n LONG_PRESS_DETECTED: States.ERROR\n },\n RESPONDER_ACTIVE_PRESS_IN: {\n DELAY: States.ERROR,\n RESPONDER_GRANT: States.ERROR,\n RESPONDER_RELEASE: States.NOT_RESPONDER,\n RESPONDER_TERMINATED: States.NOT_RESPONDER,\n ENTER_PRESS_RECT: States.RESPONDER_ACTIVE_PRESS_IN,\n LEAVE_PRESS_RECT: States.RESPONDER_ACTIVE_PRESS_OUT,\n LONG_PRESS_DETECTED: States.RESPONDER_ACTIVE_LONG_PRESS_IN\n },\n RESPONDER_ACTIVE_PRESS_OUT: {\n DELAY: States.ERROR,\n RESPONDER_GRANT: States.ERROR,\n RESPONDER_RELEASE: States.NOT_RESPONDER,\n RESPONDER_TERMINATED: States.NOT_RESPONDER,\n ENTER_PRESS_RECT: States.RESPONDER_ACTIVE_PRESS_IN,\n LEAVE_PRESS_RECT: States.RESPONDER_ACTIVE_PRESS_OUT,\n LONG_PRESS_DETECTED: States.ERROR\n },\n RESPONDER_ACTIVE_LONG_PRESS_IN: {\n DELAY: States.ERROR,\n RESPONDER_GRANT: States.ERROR,\n RESPONDER_RELEASE: States.NOT_RESPONDER,\n RESPONDER_TERMINATED: States.NOT_RESPONDER,\n ENTER_PRESS_RECT: States.RESPONDER_ACTIVE_LONG_PRESS_IN,\n LEAVE_PRESS_RECT: States.RESPONDER_ACTIVE_LONG_PRESS_OUT,\n LONG_PRESS_DETECTED: States.RESPONDER_ACTIVE_LONG_PRESS_IN\n },\n RESPONDER_ACTIVE_LONG_PRESS_OUT: {\n DELAY: States.ERROR,\n RESPONDER_GRANT: States.ERROR,\n RESPONDER_RELEASE: States.NOT_RESPONDER,\n RESPONDER_TERMINATED: States.NOT_RESPONDER,\n ENTER_PRESS_RECT: States.RESPONDER_ACTIVE_LONG_PRESS_IN,\n LEAVE_PRESS_RECT: States.RESPONDER_ACTIVE_LONG_PRESS_OUT,\n LONG_PRESS_DETECTED: States.ERROR\n },\n error: {\n DELAY: States.NOT_RESPONDER,\n RESPONDER_GRANT: States.RESPONDER_INACTIVE_PRESS_IN,\n RESPONDER_RELEASE: States.NOT_RESPONDER,\n RESPONDER_TERMINATED: States.NOT_RESPONDER,\n ENTER_PRESS_RECT: States.NOT_RESPONDER,\n LEAVE_PRESS_RECT: States.NOT_RESPONDER,\n LONG_PRESS_DETECTED: States.NOT_RESPONDER\n }\n };\n\n // ==== Typical Constants for integrating into UI components ====\n // var HIT_EXPAND_PX = 20;\n // var HIT_VERT_OFFSET_PX = 10;\n var HIGHLIGHT_DELAY_MS = 130;\n var PRESS_EXPAND_PX = 20;\n var LONG_PRESS_THRESHOLD = 500;\n var LONG_PRESS_DELAY_MS = LONG_PRESS_THRESHOLD - HIGHLIGHT_DELAY_MS;\n var LONG_PRESS_ALLOWED_MOVEMENT = 10;\n\n // Default amount \"active\" region protrudes beyond box\n\n /**\n * By convention, methods prefixed with underscores are meant to be @private,\n * and not @protected. Mixers shouldn't access them - not even to provide them\n * as callback handlers.\n *\n *\n * ========== Geometry =========\n * `Touchable` only assumes that there exists a `HitRect` node. The `PressRect`\n * is an abstract box that is extended beyond the `HitRect`.\n *\n * +--------------------------+\n * | | - \"Start\" events in `HitRect` cause `HitRect`\n * | +--------------------+ | to become the responder.\n * | | +--------------+ | | - `HitRect` is typically expanded around\n * | | | | | | the `VisualRect`, but shifted downward.\n * | | | VisualRect | | | - After pressing down, after some delay,\n * | | | | | | and before letting up, the Visual React\n * | | +--------------+ | | will become \"active\". This makes it eligible\n * | | HitRect | | for being highlighted (so long as the\n * | +--------------------+ | press remains in the `PressRect`).\n * | PressRect o |\n * +----------------------|---+\n * Out Region |\n * +-----+ This gap between the `HitRect` and\n * `PressRect` allows a touch to move far away\n * from the original hit rect, and remain\n * highlighted, and eligible for a \"Press\".\n * Customize this via\n * `touchableGetPressRectOffset()`.\n *\n *\n *\n * ======= State Machine =======\n *\n * +-------------+ <---+ RESPONDER_RELEASE\n * |NOT_RESPONDER|\n * +-------------+ <---+ RESPONDER_TERMINATED\n * +\n * | RESPONDER_GRANT (HitRect)\n * v\n * +---------------------------+ DELAY +-------------------------+ T + DELAY +------------------------------+\n * |RESPONDER_INACTIVE_PRESS_IN|+-------->|RESPONDER_ACTIVE_PRESS_IN| +------------> |RESPONDER_ACTIVE_LONG_PRESS_IN|\n * +---------------------------+ +-------------------------+ +------------------------------+\n * + ^ + ^ + ^\n * |LEAVE_ |ENTER_ |LEAVE_ |ENTER_ |LEAVE_ |ENTER_\n * |PRESS_RECT |PRESS_RECT |PRESS_RECT |PRESS_RECT |PRESS_RECT |PRESS_RECT\n * | | | | | |\n * v + v + v +\n * +----------------------------+ DELAY +--------------------------+ +-------------------------------+\n * |RESPONDER_INACTIVE_PRESS_OUT|+------->|RESPONDER_ACTIVE_PRESS_OUT| |RESPONDER_ACTIVE_LONG_PRESS_OUT|\n * +----------------------------+ +--------------------------+ +-------------------------------+\n *\n * T + DELAY => LONG_PRESS_DELAY_MS + DELAY\n *\n * Not drawn are the side effects of each transition. The most important side\n * effect is the `touchableHandlePress` abstract method invocation that occurs\n * when a responder is released while in either of the \"Press\" states.\n *\n * The other important side effects are the highlight abstract method\n * invocations (internal callbacks) to be implemented by the mixer.\n *\n *\n * @lends Touchable.prototype\n */\n var TouchableMixin = {\n // HACK (part 1): basic support for touchable interactions using a keyboard\n componentDidMount: function componentDidMount() {\n (0, _modulesWarnOnce.warnOnce)('TouchableMixin', 'TouchableMixin is deprecated. Please use Pressable.');\n var touchableNode = this.getTouchableNode && this.getTouchableNode();\n if (touchableNode && touchableNode.addEventListener) {\n this._touchableBlurListener = e => {\n if (this._isTouchableKeyboardActive) {\n if (this.state.touchable.touchState && this.state.touchable.touchState !== States.NOT_RESPONDER) {\n this.touchableHandleResponderTerminate({\n nativeEvent: e\n });\n }\n this._isTouchableKeyboardActive = false;\n }\n };\n touchableNode.addEventListener('blur', this._touchableBlurListener);\n }\n },\n /**\n * Clear all timeouts on unmount\n */\n componentWillUnmount: function componentWillUnmount() {\n var touchableNode = this.getTouchableNode && this.getTouchableNode();\n if (touchableNode && touchableNode.addEventListener) {\n touchableNode.removeEventListener('blur', this._touchableBlurListener);\n }\n this.touchableDelayTimeout && clearTimeout(this.touchableDelayTimeout);\n this.longPressDelayTimeout && clearTimeout(this.longPressDelayTimeout);\n this.pressOutDelayTimeout && clearTimeout(this.pressOutDelayTimeout);\n // Clear DOM nodes\n this.pressInLocation = null;\n this.state.touchable.responderID = null;\n },\n /**\n * It's prefer that mixins determine state in this way, having the class\n * explicitly mix the state in the one and only `getInitialState` method.\n *\n * @return {object} State object to be placed inside of\n * `this.state.touchable`.\n */\n touchableGetInitialState: function touchableGetInitialState() {\n return {\n touchable: {\n touchState: undefined,\n responderID: null\n }\n };\n },\n // ==== Hooks to Gesture Responder system ====\n /**\n * Must return true if embedded in a native platform scroll view.\n */\n touchableHandleResponderTerminationRequest: function touchableHandleResponderTerminationRequest() {\n return !this.props.rejectResponderTermination;\n },\n /**\n * Must return true to start the process of `Touchable`.\n */\n touchableHandleStartShouldSetResponder: function touchableHandleStartShouldSetResponder() {\n return !this.props.disabled;\n },\n /**\n * Return true to cancel press on long press.\n */\n touchableLongPressCancelsPress: function touchableLongPressCancelsPress() {\n return true;\n },\n /**\n * Place as callback for a DOM element's `onResponderGrant` event.\n * @param {SyntheticEvent} e Synthetic event from event system.\n *\n */\n touchableHandleResponderGrant: function touchableHandleResponderGrant(e) {\n var dispatchID = e.currentTarget;\n // Since e is used in a callback invoked on another event loop\n // (as in setTimeout etc), we need to call e.persist() on the\n // event to make sure it doesn't get reused in the event object pool.\n e.persist();\n this.pressOutDelayTimeout && clearTimeout(this.pressOutDelayTimeout);\n this.pressOutDelayTimeout = null;\n this.state.touchable.touchState = States.NOT_RESPONDER;\n this.state.touchable.responderID = dispatchID;\n this._receiveSignal(Signals.RESPONDER_GRANT, e);\n var delayMS = this.touchableGetHighlightDelayMS !== undefined ? Math.max(this.touchableGetHighlightDelayMS(), 0) : HIGHLIGHT_DELAY_MS;\n delayMS = isNaN(delayMS) ? HIGHLIGHT_DELAY_MS : delayMS;\n if (delayMS !== 0) {\n this.touchableDelayTimeout = setTimeout(this._handleDelay.bind(this, e), delayMS);\n } else {\n this._handleDelay(e);\n }\n var longDelayMS = this.touchableGetLongPressDelayMS !== undefined ? Math.max(this.touchableGetLongPressDelayMS(), 10) : LONG_PRESS_DELAY_MS;\n longDelayMS = isNaN(longDelayMS) ? LONG_PRESS_DELAY_MS : longDelayMS;\n this.longPressDelayTimeout = setTimeout(this._handleLongDelay.bind(this, e), longDelayMS + delayMS);\n },\n /**\n * Place as callback for a DOM element's `onResponderRelease` event.\n */\n touchableHandleResponderRelease: function touchableHandleResponderRelease(e) {\n this.pressInLocation = null;\n this._receiveSignal(Signals.RESPONDER_RELEASE, e);\n },\n /**\n * Place as callback for a DOM element's `onResponderTerminate` event.\n */\n touchableHandleResponderTerminate: function touchableHandleResponderTerminate(e) {\n this.pressInLocation = null;\n this._receiveSignal(Signals.RESPONDER_TERMINATED, e);\n },\n /**\n * Place as callback for a DOM element's `onResponderMove` event.\n */\n touchableHandleResponderMove: function touchableHandleResponderMove(e) {\n // Measurement may not have returned yet.\n if (!this.state.touchable.positionOnActivate) {\n return;\n }\n var positionOnActivate = this.state.touchable.positionOnActivate;\n var dimensionsOnActivate = this.state.touchable.dimensionsOnActivate;\n var pressRectOffset = this.touchableGetPressRectOffset ? this.touchableGetPressRectOffset() : {\n left: PRESS_EXPAND_PX,\n right: PRESS_EXPAND_PX,\n top: PRESS_EXPAND_PX,\n bottom: PRESS_EXPAND_PX\n };\n var pressExpandLeft = pressRectOffset.left;\n var pressExpandTop = pressRectOffset.top;\n var pressExpandRight = pressRectOffset.right;\n var pressExpandBottom = pressRectOffset.bottom;\n var hitSlop = this.touchableGetHitSlop ? this.touchableGetHitSlop() : null;\n if (hitSlop) {\n pressExpandLeft += hitSlop.left || 0;\n pressExpandTop += hitSlop.top || 0;\n pressExpandRight += hitSlop.right || 0;\n pressExpandBottom += hitSlop.bottom || 0;\n }\n var touch = extractSingleTouch(e.nativeEvent);\n var pageX = touch && touch.pageX;\n var pageY = touch && touch.pageY;\n if (this.pressInLocation) {\n var movedDistance = this._getDistanceBetweenPoints(pageX, pageY, this.pressInLocation.pageX, this.pressInLocation.pageY);\n if (movedDistance > LONG_PRESS_ALLOWED_MOVEMENT) {\n this._cancelLongPressDelayTimeout();\n }\n }\n var isTouchWithinActive = pageX > positionOnActivate.left - pressExpandLeft && pageY > positionOnActivate.top - pressExpandTop && pageX < positionOnActivate.left + dimensionsOnActivate.width + pressExpandRight && pageY < positionOnActivate.top + dimensionsOnActivate.height + pressExpandBottom;\n if (isTouchWithinActive) {\n var prevState = this.state.touchable.touchState;\n this._receiveSignal(Signals.ENTER_PRESS_RECT, e);\n var curState = this.state.touchable.touchState;\n if (curState === States.RESPONDER_INACTIVE_PRESS_IN && prevState !== States.RESPONDER_INACTIVE_PRESS_IN) {\n // fix for t7967420\n this._cancelLongPressDelayTimeout();\n }\n } else {\n this._cancelLongPressDelayTimeout();\n this._receiveSignal(Signals.LEAVE_PRESS_RECT, e);\n }\n },\n /**\n * Invoked when the item receives focus. Mixers might override this to\n * visually distinguish the `VisualRect` so that the user knows that it\n * currently has the focus. Most platforms only support a single element being\n * focused at a time, in which case there may have been a previously focused\n * element that was blurred just prior to this. This can be overridden when\n * using `Touchable.Mixin.withoutDefaultFocusAndBlur`.\n */\n touchableHandleFocus: function touchableHandleFocus(e) {\n this.props.onFocus && this.props.onFocus(e);\n },\n /**\n * Invoked when the item loses focus. Mixers might override this to\n * visually distinguish the `VisualRect` so that the user knows that it\n * no longer has focus. Most platforms only support a single element being\n * focused at a time, in which case the focus may have moved to another.\n * This can be overridden when using\n * `Touchable.Mixin.withoutDefaultFocusAndBlur`.\n */\n touchableHandleBlur: function touchableHandleBlur(e) {\n this.props.onBlur && this.props.onBlur(e);\n },\n // ==== Abstract Application Callbacks ====\n\n /**\n * Invoked when the item should be highlighted. Mixers should implement this\n * to visually distinguish the `VisualRect` so that the user knows that\n * releasing a touch will result in a \"selection\" (analog to click).\n *\n * @abstract\n * touchableHandleActivePressIn: function,\n */\n\n /**\n * Invoked when the item is \"active\" (in that it is still eligible to become\n * a \"select\") but the touch has left the `PressRect`. Usually the mixer will\n * want to unhighlight the `VisualRect`. If the user (while pressing) moves\n * back into the `PressRect` `touchableHandleActivePressIn` will be invoked\n * again and the mixer should probably highlight the `VisualRect` again. This\n * event will not fire on an `touchEnd/mouseUp` event, only move events while\n * the user is depressing the mouse/touch.\n *\n * @abstract\n * touchableHandleActivePressOut: function\n */\n\n /**\n * Invoked when the item is \"selected\" - meaning the interaction ended by\n * letting up while the item was either in the state\n * `RESPONDER_ACTIVE_PRESS_IN` or `RESPONDER_INACTIVE_PRESS_IN`.\n *\n * @abstract\n * touchableHandlePress: function\n */\n\n /**\n * Invoked when the item is long pressed - meaning the interaction ended by\n * letting up while the item was in `RESPONDER_ACTIVE_LONG_PRESS_IN`. If\n * `touchableHandleLongPress` is *not* provided, `touchableHandlePress` will\n * be called as it normally is. If `touchableHandleLongPress` is provided, by\n * default any `touchableHandlePress` callback will not be invoked. To\n * override this default behavior, override `touchableLongPressCancelsPress`\n * to return false. As a result, `touchableHandlePress` will be called when\n * lifting up, even if `touchableHandleLongPress` has also been called.\n *\n * @abstract\n * touchableHandleLongPress: function\n */\n\n /**\n * Returns the number of millis to wait before triggering a highlight.\n *\n * @abstract\n * touchableGetHighlightDelayMS: function\n */\n\n /**\n * Returns the amount to extend the `HitRect` into the `PressRect`. Positive\n * numbers mean the size expands outwards.\n *\n * @abstract\n * touchableGetPressRectOffset: function\n */\n\n // ==== Internal Logic ====\n\n /**\n * Measures the `HitRect` node on activation. The Bounding rectangle is with\n * respect to viewport - not page, so adding the `pageXOffset/pageYOffset`\n * should result in points that are in the same coordinate system as an\n * event's `globalX/globalY` data values.\n *\n * - Consider caching this for the lifetime of the component, or possibly\n * being able to share this cache between any `ScrollMap` view.\n *\n * @sideeffects\n * @private\n */\n _remeasureMetricsOnActivation: function _remeasureMetricsOnActivation() {\n var tag = this.state.touchable.responderID;\n if (tag == null) {\n return;\n }\n UIManager.default.measure(tag, this._handleQueryLayout);\n },\n _handleQueryLayout: function _handleQueryLayout(l, t, w, h, globalX, globalY) {\n //don't do anything UIManager failed to measure node\n if (!l && !t && !w && !h && !globalX && !globalY) {\n return;\n }\n this.state.touchable.positionOnActivate && Position.default.release(this.state.touchable.positionOnActivate);\n this.state.touchable.dimensionsOnActivate &&\n // $FlowFixMe\n BoundingDimensions.default.release(this.state.touchable.dimensionsOnActivate);\n this.state.touchable.positionOnActivate = Position.default.getPooled(globalX, globalY);\n // $FlowFixMe\n this.state.touchable.dimensionsOnActivate = BoundingDimensions.default.getPooled(w, h);\n },\n _handleDelay: function _handleDelay(e) {\n this.touchableDelayTimeout = null;\n this._receiveSignal(Signals.DELAY, e);\n },\n _handleLongDelay: function _handleLongDelay(e) {\n this.longPressDelayTimeout = null;\n var curState = this.state.touchable.touchState;\n if (curState !== States.RESPONDER_ACTIVE_PRESS_IN && curState !== States.RESPONDER_ACTIVE_LONG_PRESS_IN) {\n console.error('Attempted to transition from state `' + curState + '` to `' + States.RESPONDER_ACTIVE_LONG_PRESS_IN + '`, which is not supported. This is ' + 'most likely due to `Touchable.longPressDelayTimeout` not being cancelled.');\n } else {\n this._receiveSignal(Signals.LONG_PRESS_DETECTED, e);\n }\n },\n /**\n * Receives a state machine signal, performs side effects of the transition\n * and stores the new state. Validates the transition as well.\n *\n * @param {Signals} signal State machine signal.\n * @throws Error if invalid state transition or unrecognized signal.\n * @sideeffects\n */\n _receiveSignal: function _receiveSignal(signal, e) {\n var responderID = this.state.touchable.responderID;\n var curState = this.state.touchable.touchState;\n var nextState = Transitions[curState] && Transitions[curState][signal];\n if (!responderID && signal === Signals.RESPONDER_RELEASE) {\n return;\n }\n if (!nextState) {\n throw new Error('Unrecognized signal `' + signal + '` or state `' + curState + '` for Touchable responder `' + responderID + '`');\n }\n if (nextState === States.ERROR) {\n throw new Error('Touchable cannot transition from `' + curState + '` to `' + signal + '` for responder `' + responderID + '`');\n }\n if (curState !== nextState) {\n this._performSideEffectsForTransition(curState, nextState, signal, e);\n this.state.touchable.touchState = nextState;\n }\n },\n _cancelLongPressDelayTimeout: function _cancelLongPressDelayTimeout() {\n this.longPressDelayTimeout && clearTimeout(this.longPressDelayTimeout);\n this.longPressDelayTimeout = null;\n },\n _isHighlight: function _isHighlight(state) {\n return state === States.RESPONDER_ACTIVE_PRESS_IN || state === States.RESPONDER_ACTIVE_LONG_PRESS_IN;\n },\n _savePressInLocation: function _savePressInLocation(e) {\n var touch = extractSingleTouch(e.nativeEvent);\n var pageX = touch && touch.pageX;\n var pageY = touch && touch.pageY;\n var locationX = touch && touch.locationX;\n var locationY = touch && touch.locationY;\n this.pressInLocation = {\n pageX,\n pageY,\n locationX,\n locationY\n };\n },\n _getDistanceBetweenPoints: function _getDistanceBetweenPoints(aX, aY, bX, bY) {\n var deltaX = aX - bX;\n var deltaY = aY - bY;\n return Math.sqrt(deltaX * deltaX + deltaY * deltaY);\n },\n /**\n * Will perform a transition between touchable states, and identify any\n * highlighting or unhighlighting that must be performed for this particular\n * transition.\n *\n * @param {States} curState Current Touchable state.\n * @param {States} nextState Next Touchable state.\n * @param {Signal} signal Signal that triggered the transition.\n * @param {Event} e Native event.\n * @sideeffects\n */\n _performSideEffectsForTransition: function _performSideEffectsForTransition(curState, nextState, signal, e) {\n var curIsHighlight = this._isHighlight(curState);\n var newIsHighlight = this._isHighlight(nextState);\n var isFinalSignal = signal === Signals.RESPONDER_TERMINATED || signal === Signals.RESPONDER_RELEASE;\n if (isFinalSignal) {\n this._cancelLongPressDelayTimeout();\n }\n var isInitialTransition = curState === States.NOT_RESPONDER && nextState === States.RESPONDER_INACTIVE_PRESS_IN;\n var isActiveTransition = !IsActive[curState] && IsActive[nextState];\n if (isInitialTransition || isActiveTransition) {\n this._remeasureMetricsOnActivation();\n }\n if (IsPressingIn[curState] && signal === Signals.LONG_PRESS_DETECTED) {\n this.touchableHandleLongPress && this.touchableHandleLongPress(e);\n }\n if (newIsHighlight && !curIsHighlight) {\n this._startHighlight(e);\n } else if (!newIsHighlight && curIsHighlight) {\n this._endHighlight(e);\n }\n if (IsPressingIn[curState] && signal === Signals.RESPONDER_RELEASE) {\n var hasLongPressHandler = !!this.props.onLongPress;\n var pressIsLongButStillCallOnPress = IsLongPressingIn[curState] && (\n // We *are* long pressing.. // But either has no long handler\n !hasLongPressHandler || !this.touchableLongPressCancelsPress()); // or we're told to ignore it.\n\n var shouldInvokePress = !IsLongPressingIn[curState] || pressIsLongButStillCallOnPress;\n if (shouldInvokePress && this.touchableHandlePress) {\n if (!newIsHighlight && !curIsHighlight) {\n // we never highlighted because of delay, but we should highlight now\n this._startHighlight(e);\n this._endHighlight(e);\n }\n this.touchableHandlePress(e);\n }\n }\n this.touchableDelayTimeout && clearTimeout(this.touchableDelayTimeout);\n this.touchableDelayTimeout = null;\n },\n _playTouchSound: function _playTouchSound() {\n UIManager.default.playTouchSound();\n },\n _startHighlight: function _startHighlight(e) {\n this._savePressInLocation(e);\n this.touchableHandleActivePressIn && this.touchableHandleActivePressIn(e);\n },\n _endHighlight: function _endHighlight(e) {\n if (this.touchableHandleActivePressOut) {\n if (this.touchableGetPressOutDelayMS && this.touchableGetPressOutDelayMS()) {\n this.pressOutDelayTimeout = setTimeout(() => {\n this.touchableHandleActivePressOut(e);\n }, this.touchableGetPressOutDelayMS());\n } else {\n this.touchableHandleActivePressOut(e);\n }\n }\n },\n // HACK (part 2): basic support for touchable interactions using a keyboard (including\n // delays and longPress)\n touchableHandleKeyEvent: function touchableHandleKeyEvent(e) {\n var type = e.type,\n key = e.key;\n if (key === 'Enter' || key === ' ') {\n if (type === 'keydown') {\n if (!this._isTouchableKeyboardActive) {\n if (!this.state.touchable.touchState || this.state.touchable.touchState === States.NOT_RESPONDER) {\n this.touchableHandleResponderGrant(e);\n this._isTouchableKeyboardActive = true;\n }\n }\n } else if (type === 'keyup') {\n if (this._isTouchableKeyboardActive) {\n if (this.state.touchable.touchState && this.state.touchable.touchState !== States.NOT_RESPONDER) {\n this.touchableHandleResponderRelease(e);\n this._isTouchableKeyboardActive = false;\n }\n }\n }\n e.stopPropagation();\n // prevent the default behaviour unless the Touchable functions as a link\n // and Enter is pressed\n if (!(key === 'Enter' && AccessibilityUtil.default.propsToAriaRole(this.props) === 'link')) {\n e.preventDefault();\n }\n }\n },\n withoutDefaultFocusAndBlur: {}\n };\n\n /**\n * Provide an optional version of the mixin where `touchableHandleFocus` and\n * `touchableHandleBlur` can be overridden. This allows appropriate defaults to\n * be set on TV platforms, without breaking existing implementations of\n * `Touchable`.\n */\n var touchableHandleFocus = TouchableMixin.touchableHandleFocus,\n touchableHandleBlur = TouchableMixin.touchableHandleBlur,\n TouchableMixinWithoutDefaultFocusAndBlur = (0, _objectWithoutPropertiesLoose.default)(TouchableMixin, [\"touchableHandleFocus\", \"touchableHandleBlur\"]);\n TouchableMixin.withoutDefaultFocusAndBlur = TouchableMixinWithoutDefaultFocusAndBlur;\n var Touchable = {\n Mixin: TouchableMixin,\n TOUCH_TARGET_DEBUG: false,\n // Highlights all touchable targets. Toggle with Inspector.\n /**\n * Renders a debugging overlay to visualize touch target with hitSlop (might not work on Android).\n */\n renderDebugView: _ref => {\n var color = _ref.color,\n hitSlop = _ref.hitSlop;\n if (!Touchable.TOUCH_TARGET_DEBUG) {\n return null;\n }\n if (process.env.NODE_ENV !== 'production') {\n throw Error('Touchable.TOUCH_TARGET_DEBUG should not be enabled in prod!');\n }\n var debugHitSlopStyle = {};\n hitSlop = hitSlop || {\n top: 0,\n bottom: 0,\n left: 0,\n right: 0\n };\n for (var key in hitSlop) {\n debugHitSlopStyle[key] = -hitSlop[key];\n }\n var normalizedColor = (0, normalizeColor.default)(color);\n if (typeof normalizedColor !== 'number') {\n return null;\n }\n var hexColor = '#' + ('00000000' + normalizedColor.toString(16)).substr(-8);\n return /*#__PURE__*/React.default.createElement(View.default, {\n pointerEvents: \"none\",\n style: (0, _objectSpread.default)({\n position: 'absolute',\n borderColor: hexColor.slice(0, -2) + '55',\n // More opaque\n borderWidth: 1,\n borderStyle: 'dashed',\n backgroundColor: hexColor.slice(0, -2) + '0F'\n }, debugHitSlopStyle)\n });\n }\n };\n var _default = Touchable;\n});","lineCount":860,"map":[[2,2,1,0],[3,0,2,0],[4,0,3,0],[5,0,4,0],[6,0,5,0],[7,0,6,0],[8,0,7,0],[9,0,8,0],[10,0,9,0],[12,2,11,0],[12,14,11,12],[14,2,11,13,"Object"],[14,8,11,13],[14,9,11,13,"defineProperty"],[14,23,11,13],[14,24,11,13,"exports"],[14,31,11,13],[15,4,11,13,"value"],[15,9,11,13],[16,2,11,13],[17,2,11,13],[17,11,11,13,"_interopDefault"],[17,27,11,13,"e"],[17,28,11,13],[18,4,11,13],[18,11,11,13,"e"],[18,12,11,13],[18,16,11,13,"e"],[18,17,11,13],[18,18,11,13,"__esModule"],[18,28,11,13],[18,31,11,13,"e"],[18,32,11,13],[19,6,11,13,"default"],[19,13,11,13],[19,15,11,13,"e"],[20,4,11,13],[21,2,11,13],[22,2,835,0,"Object"],[22,8,835,0],[22,9,835,0,"defineProperty"],[22,23,835,0],[22,24,835,0,"exports"],[22,31,835,0],[23,4,835,0,"enumerable"],[23,14,835,0],[24,4,835,0,"get"],[24,7,835,0],[24,18,835,0,"get"],[24,19,835,0],[25,6,835,0],[25,13,835,0,"_default"],[25,21,835,0],[26,4,835,0],[27,2,835,0],[28,2,13,0],[28,6,13,0,"_babelRuntimeHelpersObjectWithoutPropertiesLoose"],[28,54,13,0],[28,57,13,0,"require"],[28,64,13,0],[28,65,13,0,"_dependencyMap"],[28,79,13,0],[29,2,13,0],[29,6,13,0,"_objectWithoutPropertiesLoose"],[29,35,13,0],[29,38,13,0,"_interopDefault"],[29,53,13,0],[29,54,13,0,"_babelRuntimeHelpersObjectWithoutPropertiesLoose"],[29,102,13,0],[30,2,14,0],[30,6,14,0,"_babelRuntimeHelpersObjectSpread"],[30,38,14,0],[30,41,14,0,"require"],[30,48,14,0],[30,49,14,0,"_dependencyMap"],[30,63,14,0],[31,2,14,0],[31,6,14,0,"_objectSpread"],[31,19,14,0],[31,22,14,0,"_interopDefault"],[31,37,14,0],[31,38,14,0,"_babelRuntimeHelpersObjectSpread"],[31,70,14,0],[32,2,15,0],[32,6,15,0,"_modulesAccessibilityUtil"],[32,31,15,0],[32,34,15,0,"require"],[32,41,15,0],[32,42,15,0,"_dependencyMap"],[32,56,15,0],[33,2,15,0],[33,6,15,0,"AccessibilityUtil"],[33,23,15,0],[33,26,15,0,"_interopDefault"],[33,41,15,0],[33,42,15,0,"_modulesAccessibilityUtil"],[33,67,15,0],[34,2,16,0],[34,6,16,0,"_BoundingDimensions"],[34,25,16,0],[34,28,16,0,"require"],[34,35,16,0],[34,36,16,0,"_dependencyMap"],[34,50,16,0],[35,2,16,0],[35,6,16,0,"BoundingDimensions"],[35,24,16,0],[35,27,16,0,"_interopDefault"],[35,42,16,0],[35,43,16,0,"_BoundingDimensions"],[35,62,16,0],[36,2,17,0],[36,6,17,0,"_reactNativeNormalizeColors"],[36,33,17,0],[36,36,17,0,"require"],[36,43,17,0],[36,44,17,0,"_dependencyMap"],[36,58,17,0],[37,2,17,0],[37,6,17,0,"normalizeColor"],[37,20,17,0],[37,23,17,0,"_interopDefault"],[37,38,17,0],[37,39,17,0,"_reactNativeNormalizeColors"],[37,66,17,0],[38,2,18,0],[38,6,18,0,"_Position"],[38,15,18,0],[38,18,18,0,"require"],[38,25,18,0],[38,26,18,0,"_dependencyMap"],[38,40,18,0],[39,2,18,0],[39,6,18,0,"Position"],[39,14,18,0],[39,17,18,0,"_interopDefault"],[39,32,18,0],[39,33,18,0,"_Position"],[39,42,18,0],[40,2,19,0],[40,6,19,0,"_react"],[40,12,19,0],[40,15,19,0,"require"],[40,22,19,0],[40,23,19,0,"_dependencyMap"],[40,37,19,0],[41,2,19,0],[41,6,19,0,"React"],[41,11,19,0],[41,14,19,0,"_interopDefault"],[41,29,19,0],[41,30,19,0,"_react"],[41,36,19,0],[42,2,20,0],[42,6,20,0,"_UIManager"],[42,16,20,0],[42,19,20,0,"require"],[42,26,20,0],[42,27,20,0,"_dependencyMap"],[42,41,20,0],[43,2,20,0],[43,6,20,0,"UIManager"],[43,15,20,0],[43,18,20,0,"_interopDefault"],[43,33,20,0],[43,34,20,0,"_UIManager"],[43,44,20,0],[44,2,21,0],[44,6,21,0,"_View"],[44,11,21,0],[44,14,21,0,"require"],[44,21,21,0],[44,22,21,0,"_dependencyMap"],[44,36,21,0],[45,2,21,0],[45,6,21,0,"View"],[45,10,21,0],[45,13,21,0,"_interopDefault"],[45,28,21,0],[45,29,21,0,"_View"],[45,34,21,0],[46,2,22,0],[46,6,22,0,"_modulesWarnOnce"],[46,22,22,0],[46,25,22,0,"require"],[46,32,22,0],[46,33,22,0,"_dependencyMap"],[46,47,22,0],[47,2,23,0],[47,6,23,4,"extractSingleTouch"],[47,24,23,22],[47,27,23,25,"nativeEvent"],[47,38,23,36],[47,42,23,40],[48,4,24,2],[48,8,24,6,"touches"],[48,15,24,13],[48,18,24,16,"nativeEvent"],[48,29,24,27],[48,30,24,28,"touches"],[48,37,24,35],[49,4,25,2],[49,8,25,6,"changedTouches"],[49,22,25,20],[49,25,25,23,"nativeEvent"],[49,36,25,34],[49,37,25,35,"changedTouches"],[49,51,25,49],[50,4,26,2],[50,8,26,6,"hasTouches"],[50,18,26,16],[50,21,26,19,"touches"],[50,28,26,26],[50,32,26,30,"touches"],[50,39,26,37],[50,40,26,38,"length"],[50,46,26,44],[50,49,26,47],[50,50,26,48],[51,4,27,2],[51,8,27,6,"hasChangedTouches"],[51,25,27,23],[51,28,27,26,"changedTouches"],[51,42,27,40],[51,46,27,44,"changedTouches"],[51,60,27,58],[51,61,27,59,"length"],[51,67,27,65],[51,70,27,68],[51,71,27,69],[52,4,28,2],[52,11,28,9],[52,12,28,10,"hasTouches"],[52,22,28,20],[52,26,28,24,"hasChangedTouches"],[52,43,28,41],[52,46,28,44,"changedTouches"],[52,60,28,58],[52,61,28,59],[52,62,28,60],[52,63,28,61],[52,66,28,64,"hasTouches"],[52,76,28,74],[52,79,28,77,"touches"],[52,86,28,84],[52,87,28,85],[52,88,28,86],[52,89,28,87],[52,92,28,90,"nativeEvent"],[52,103,28,101],[53,2,29,0],[53,3,29,1],[55,2,31,0],[56,0,32,0],[57,0,33,0],[58,0,34,0],[59,0,35,0],[60,0,36,0],[61,0,37,0],[62,0,38,0],[63,0,39,0],[64,0,40,0],[65,0,41,0],[66,0,42,0],[67,0,43,0],[68,0,44,0],[69,0,45,0],[70,0,46,0],[71,0,47,0],[72,0,48,0],[73,0,49,0],[74,0,50,0],[75,0,51,0],[76,0,52,0],[77,0,53,0],[78,0,54,0],[79,0,55,0],[80,0,56,0],[81,0,57,0],[82,0,58,0],[83,0,59,0],[84,0,60,0],[85,0,61,0],[86,0,62,0],[87,0,63,0],[88,0,64,0],[89,0,65,0],[90,0,66,0],[91,0,67,0],[92,0,68,0],[93,0,69,0],[94,0,70,0],[95,0,71,0],[96,0,72,0],[97,0,73,0],[98,0,74,0],[99,0,75,0],[100,0,76,0],[101,0,77,0],[102,0,78,0],[103,0,79,0],[104,0,80,0],[105,0,81,0],[106,0,82,0],[107,0,83,0],[108,0,84,0],[109,0,85,0],[110,0,86,0],[111,0,87,0],[112,0,88,0],[113,0,89,0],[114,0,90,0],[115,0,91,0],[116,0,92,0],[117,0,93,0],[118,0,94,0],[119,0,95,0],[120,0,96,0],[121,0,97,0],[122,0,98,0],[123,0,99,0],[124,0,100,0],[125,0,101,0],[126,0,102,0],[127,0,103,0],[128,0,104,0],[129,0,105,0],[130,0,106,0],[131,0,107,0],[132,0,108,0],[133,0,109,0],[134,0,110,0],[135,0,111,0],[136,0,112,0],[137,0,113,0],[138,0,114,0],[139,0,115,0],[140,0,116,0],[141,0,117,0],[142,0,118,0],[143,0,119,0],[144,0,120,0],[146,2,122,0],[147,0,123,0],[148,0,124,0],[150,2,126,0],[150,6,126,4,"States"],[150,12,126,10],[150,15,126,13],[151,4,127,2,"NOT_RESPONDER"],[151,17,127,15],[151,19,127,17],[151,34,127,32],[152,4,128,2],[153,4,129,2,"RESPONDER_INACTIVE_PRESS_IN"],[153,31,129,29],[153,33,129,31],[153,62,129,60],[154,4,130,2],[155,4,131,2,"RESPONDER_INACTIVE_PRESS_OUT"],[155,32,131,30],[155,34,131,32],[155,64,131,62],[156,4,132,2],[157,4,133,2,"RESPONDER_ACTIVE_PRESS_IN"],[157,29,133,27],[157,31,133,29],[157,58,133,56],[158,4,134,2],[159,4,135,2,"RESPONDER_ACTIVE_PRESS_OUT"],[159,30,135,28],[159,32,135,30],[159,60,135,58],[160,4,136,2],[161,4,137,2,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[161,34,137,32],[161,36,137,34],[161,68,137,66],[162,4,138,2],[163,4,139,2,"RESPONDER_ACTIVE_LONG_PRESS_OUT"],[163,35,139,33],[163,37,139,35],[163,70,139,68],[164,4,140,2],[165,4,141,2,"ERROR"],[165,9,141,7],[165,11,141,9],[166,2,142,0],[166,3,142,1],[167,2,143,0],[168,0,144,0],[169,0,145,0],[171,2,147,0],[171,6,147,4,"baseStatesConditions"],[171,26,147,24],[171,29,147,27],[172,4,148,2,"NOT_RESPONDER"],[172,17,148,15],[172,19,148,17],[172,24,148,22],[173,4,149,2,"RESPONDER_INACTIVE_PRESS_IN"],[173,31,149,29],[173,33,149,31],[173,38,149,36],[174,4,150,2,"RESPONDER_INACTIVE_PRESS_OUT"],[174,32,150,30],[174,34,150,32],[174,39,150,37],[175,4,151,2,"RESPONDER_ACTIVE_PRESS_IN"],[175,29,151,27],[175,31,151,29],[175,36,151,34],[176,4,152,2,"RESPONDER_ACTIVE_PRESS_OUT"],[176,30,152,28],[176,32,152,30],[176,37,152,35],[177,4,153,2,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[177,34,153,32],[177,36,153,34],[177,41,153,39],[178,4,154,2,"RESPONDER_ACTIVE_LONG_PRESS_OUT"],[178,35,154,33],[178,37,154,35],[178,42,154,40],[179,4,155,2,"ERROR"],[179,9,155,7],[179,11,155,9],[180,2,156,0],[180,3,156,1],[181,2,157,0],[181,6,157,4,"IsActive"],[181,14,157,12],[181,17,157,15],[181,21,157,15,"_objectSpread"],[181,34,157,28],[181,35,157,28,"default"],[181,42,157,28],[181,44,157,29],[181,48,157,29,"_objectSpread"],[181,61,157,42],[181,62,157,42,"default"],[181,69,157,42],[181,71,157,43],[181,72,157,44],[181,73,157,45],[181,75,157,47,"baseStatesConditions"],[181,95,157,67],[181,96,157,68],[181,98,157,70],[181,99,157,71],[181,100,157,72],[181,102,157,74],[182,4,158,2,"RESPONDER_ACTIVE_PRESS_OUT"],[182,30,158,28],[182,32,158,30],[182,36,158,34],[183,4,159,2,"RESPONDER_ACTIVE_PRESS_IN"],[183,29,159,27],[183,31,159,29],[184,2,160,0],[184,3,160,1],[184,4,160,2],[186,2,162,0],[187,0,163,0],[188,0,164,0],[189,0,165,0],[190,2,166,0],[190,6,166,4,"IsPressingIn"],[190,18,166,16],[190,21,166,19],[190,25,166,19,"_objectSpread"],[190,38,166,32],[190,39,166,32,"default"],[190,46,166,32],[190,48,166,33],[190,52,166,33,"_objectSpread"],[190,65,166,46],[190,66,166,46,"default"],[190,73,166,46],[190,75,166,47],[190,76,166,48],[190,77,166,49],[190,79,166,51,"baseStatesConditions"],[190,99,166,71],[190,100,166,72],[190,102,166,74],[190,103,166,75],[190,104,166,76],[190,106,166,78],[191,4,167,2,"RESPONDER_INACTIVE_PRESS_IN"],[191,31,167,29],[191,33,167,31],[191,37,167,35],[192,4,168,2,"RESPONDER_ACTIVE_PRESS_IN"],[192,29,168,27],[192,31,168,29],[192,35,168,33],[193,4,169,2,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[193,34,169,32],[193,36,169,34],[194,2,170,0],[194,3,170,1],[194,4,170,2],[195,2,171,0],[195,6,171,4,"IsLongPressingIn"],[195,22,171,20],[195,25,171,23],[195,29,171,23,"_objectSpread"],[195,42,171,36],[195,43,171,36,"default"],[195,50,171,36],[195,52,171,37],[195,56,171,37,"_objectSpread"],[195,69,171,50],[195,70,171,50,"default"],[195,77,171,50],[195,79,171,51],[195,80,171,52],[195,81,171,53],[195,83,171,55,"baseStatesConditions"],[195,103,171,75],[195,104,171,76],[195,106,171,78],[195,107,171,79],[195,108,171,80],[195,110,171,82],[196,4,172,2,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[196,34,172,32],[196,36,172,34],[197,2,173,0],[197,3,173,1],[197,4,173,2],[199,2,175,0],[200,0,176,0],[201,0,177,0],[202,2,178,0],[202,6,178,4,"Signals"],[202,13,178,11],[202,16,178,14],[203,4,179,2,"DELAY"],[203,9,179,7],[203,11,179,9],[203,18,179,16],[204,4,180,2,"RESPONDER_GRANT"],[204,19,180,17],[204,21,180,19],[204,38,180,36],[205,4,181,2,"RESPONDER_RELEASE"],[205,21,181,19],[205,23,181,21],[205,42,181,40],[206,4,182,2,"RESPONDER_TERMINATED"],[206,24,182,22],[206,26,182,24],[206,48,182,46],[207,4,183,2,"ENTER_PRESS_RECT"],[207,20,183,18],[207,22,183,20],[207,40,183,38],[208,4,184,2,"LEAVE_PRESS_RECT"],[208,20,184,18],[208,22,184,20],[208,40,184,38],[209,4,185,2,"LONG_PRESS_DETECTED"],[209,23,185,21],[209,25,185,23],[210,2,186,0],[210,3,186,1],[211,2,187,0],[212,0,188,0],[213,0,189,0],[214,2,190,0],[214,6,190,4,"Transitions"],[214,17,190,15],[214,20,190,18],[215,4,191,2,"NOT_RESPONDER"],[215,17,191,15],[215,19,191,17],[216,6,192,4,"DELAY"],[216,11,192,9],[216,13,192,11,"States"],[216,19,192,17],[216,20,192,18,"ERROR"],[216,25,192,23],[217,6,193,4,"RESPONDER_GRANT"],[217,21,193,19],[217,23,193,21,"States"],[217,29,193,27],[217,30,193,28,"RESPONDER_INACTIVE_PRESS_IN"],[217,57,193,55],[218,6,194,4,"RESPONDER_RELEASE"],[218,23,194,21],[218,25,194,23,"States"],[218,31,194,29],[218,32,194,30,"ERROR"],[218,37,194,35],[219,6,195,4,"RESPONDER_TERMINATED"],[219,26,195,24],[219,28,195,26,"States"],[219,34,195,32],[219,35,195,33,"ERROR"],[219,40,195,38],[220,6,196,4,"ENTER_PRESS_RECT"],[220,22,196,20],[220,24,196,22,"States"],[220,30,196,28],[220,31,196,29,"ERROR"],[220,36,196,34],[221,6,197,4,"LEAVE_PRESS_RECT"],[221,22,197,20],[221,24,197,22,"States"],[221,30,197,28],[221,31,197,29,"ERROR"],[221,36,197,34],[222,6,198,4,"LONG_PRESS_DETECTED"],[222,25,198,23],[222,27,198,25,"States"],[222,33,198,31],[222,34,198,32,"ERROR"],[223,4,199,2],[223,5,199,3],[224,4,200,2,"RESPONDER_INACTIVE_PRESS_IN"],[224,31,200,29],[224,33,200,31],[225,6,201,4,"DELAY"],[225,11,201,9],[225,13,201,11,"States"],[225,19,201,17],[225,20,201,18,"RESPONDER_ACTIVE_PRESS_IN"],[225,45,201,43],[226,6,202,4,"RESPONDER_GRANT"],[226,21,202,19],[226,23,202,21,"States"],[226,29,202,27],[226,30,202,28,"ERROR"],[226,35,202,33],[227,6,203,4,"RESPONDER_RELEASE"],[227,23,203,21],[227,25,203,23,"States"],[227,31,203,29],[227,32,203,30,"NOT_RESPONDER"],[227,45,203,43],[228,6,204,4,"RESPONDER_TERMINATED"],[228,26,204,24],[228,28,204,26,"States"],[228,34,204,32],[228,35,204,33,"NOT_RESPONDER"],[228,48,204,46],[229,6,205,4,"ENTER_PRESS_RECT"],[229,22,205,20],[229,24,205,22,"States"],[229,30,205,28],[229,31,205,29,"RESPONDER_INACTIVE_PRESS_IN"],[229,58,205,56],[230,6,206,4,"LEAVE_PRESS_RECT"],[230,22,206,20],[230,24,206,22,"States"],[230,30,206,28],[230,31,206,29,"RESPONDER_INACTIVE_PRESS_OUT"],[230,59,206,57],[231,6,207,4,"LONG_PRESS_DETECTED"],[231,25,207,23],[231,27,207,25,"States"],[231,33,207,31],[231,34,207,32,"ERROR"],[232,4,208,2],[232,5,208,3],[233,4,209,2,"RESPONDER_INACTIVE_PRESS_OUT"],[233,32,209,30],[233,34,209,32],[234,6,210,4,"DELAY"],[234,11,210,9],[234,13,210,11,"States"],[234,19,210,17],[234,20,210,18,"RESPONDER_ACTIVE_PRESS_OUT"],[234,46,210,44],[235,6,211,4,"RESPONDER_GRANT"],[235,21,211,19],[235,23,211,21,"States"],[235,29,211,27],[235,30,211,28,"ERROR"],[235,35,211,33],[236,6,212,4,"RESPONDER_RELEASE"],[236,23,212,21],[236,25,212,23,"States"],[236,31,212,29],[236,32,212,30,"NOT_RESPONDER"],[236,45,212,43],[237,6,213,4,"RESPONDER_TERMINATED"],[237,26,213,24],[237,28,213,26,"States"],[237,34,213,32],[237,35,213,33,"NOT_RESPONDER"],[237,48,213,46],[238,6,214,4,"ENTER_PRESS_RECT"],[238,22,214,20],[238,24,214,22,"States"],[238,30,214,28],[238,31,214,29,"RESPONDER_INACTIVE_PRESS_IN"],[238,58,214,56],[239,6,215,4,"LEAVE_PRESS_RECT"],[239,22,215,20],[239,24,215,22,"States"],[239,30,215,28],[239,31,215,29,"RESPONDER_INACTIVE_PRESS_OUT"],[239,59,215,57],[240,6,216,4,"LONG_PRESS_DETECTED"],[240,25,216,23],[240,27,216,25,"States"],[240,33,216,31],[240,34,216,32,"ERROR"],[241,4,217,2],[241,5,217,3],[242,4,218,2,"RESPONDER_ACTIVE_PRESS_IN"],[242,29,218,27],[242,31,218,29],[243,6,219,4,"DELAY"],[243,11,219,9],[243,13,219,11,"States"],[243,19,219,17],[243,20,219,18,"ERROR"],[243,25,219,23],[244,6,220,4,"RESPONDER_GRANT"],[244,21,220,19],[244,23,220,21,"States"],[244,29,220,27],[244,30,220,28,"ERROR"],[244,35,220,33],[245,6,221,4,"RESPONDER_RELEASE"],[245,23,221,21],[245,25,221,23,"States"],[245,31,221,29],[245,32,221,30,"NOT_RESPONDER"],[245,45,221,43],[246,6,222,4,"RESPONDER_TERMINATED"],[246,26,222,24],[246,28,222,26,"States"],[246,34,222,32],[246,35,222,33,"NOT_RESPONDER"],[246,48,222,46],[247,6,223,4,"ENTER_PRESS_RECT"],[247,22,223,20],[247,24,223,22,"States"],[247,30,223,28],[247,31,223,29,"RESPONDER_ACTIVE_PRESS_IN"],[247,56,223,54],[248,6,224,4,"LEAVE_PRESS_RECT"],[248,22,224,20],[248,24,224,22,"States"],[248,30,224,28],[248,31,224,29,"RESPONDER_ACTIVE_PRESS_OUT"],[248,57,224,55],[249,6,225,4,"LONG_PRESS_DETECTED"],[249,25,225,23],[249,27,225,25,"States"],[249,33,225,31],[249,34,225,32,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[250,4,226,2],[250,5,226,3],[251,4,227,2,"RESPONDER_ACTIVE_PRESS_OUT"],[251,30,227,28],[251,32,227,30],[252,6,228,4,"DELAY"],[252,11,228,9],[252,13,228,11,"States"],[252,19,228,17],[252,20,228,18,"ERROR"],[252,25,228,23],[253,6,229,4,"RESPONDER_GRANT"],[253,21,229,19],[253,23,229,21,"States"],[253,29,229,27],[253,30,229,28,"ERROR"],[253,35,229,33],[254,6,230,4,"RESPONDER_RELEASE"],[254,23,230,21],[254,25,230,23,"States"],[254,31,230,29],[254,32,230,30,"NOT_RESPONDER"],[254,45,230,43],[255,6,231,4,"RESPONDER_TERMINATED"],[255,26,231,24],[255,28,231,26,"States"],[255,34,231,32],[255,35,231,33,"NOT_RESPONDER"],[255,48,231,46],[256,6,232,4,"ENTER_PRESS_RECT"],[256,22,232,20],[256,24,232,22,"States"],[256,30,232,28],[256,31,232,29,"RESPONDER_ACTIVE_PRESS_IN"],[256,56,232,54],[257,6,233,4,"LEAVE_PRESS_RECT"],[257,22,233,20],[257,24,233,22,"States"],[257,30,233,28],[257,31,233,29,"RESPONDER_ACTIVE_PRESS_OUT"],[257,57,233,55],[258,6,234,4,"LONG_PRESS_DETECTED"],[258,25,234,23],[258,27,234,25,"States"],[258,33,234,31],[258,34,234,32,"ERROR"],[259,4,235,2],[259,5,235,3],[260,4,236,2,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[260,34,236,32],[260,36,236,34],[261,6,237,4,"DELAY"],[261,11,237,9],[261,13,237,11,"States"],[261,19,237,17],[261,20,237,18,"ERROR"],[261,25,237,23],[262,6,238,4,"RESPONDER_GRANT"],[262,21,238,19],[262,23,238,21,"States"],[262,29,238,27],[262,30,238,28,"ERROR"],[262,35,238,33],[263,6,239,4,"RESPONDER_RELEASE"],[263,23,239,21],[263,25,239,23,"States"],[263,31,239,29],[263,32,239,30,"NOT_RESPONDER"],[263,45,239,43],[264,6,240,4,"RESPONDER_TERMINATED"],[264,26,240,24],[264,28,240,26,"States"],[264,34,240,32],[264,35,240,33,"NOT_RESPONDER"],[264,48,240,46],[265,6,241,4,"ENTER_PRESS_RECT"],[265,22,241,20],[265,24,241,22,"States"],[265,30,241,28],[265,31,241,29,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[265,61,241,59],[266,6,242,4,"LEAVE_PRESS_RECT"],[266,22,242,20],[266,24,242,22,"States"],[266,30,242,28],[266,31,242,29,"RESPONDER_ACTIVE_LONG_PRESS_OUT"],[266,62,242,60],[267,6,243,4,"LONG_PRESS_DETECTED"],[267,25,243,23],[267,27,243,25,"States"],[267,33,243,31],[267,34,243,32,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[268,4,244,2],[268,5,244,3],[269,4,245,2,"RESPONDER_ACTIVE_LONG_PRESS_OUT"],[269,35,245,33],[269,37,245,35],[270,6,246,4,"DELAY"],[270,11,246,9],[270,13,246,11,"States"],[270,19,246,17],[270,20,246,18,"ERROR"],[270,25,246,23],[271,6,247,4,"RESPONDER_GRANT"],[271,21,247,19],[271,23,247,21,"States"],[271,29,247,27],[271,30,247,28,"ERROR"],[271,35,247,33],[272,6,248,4,"RESPONDER_RELEASE"],[272,23,248,21],[272,25,248,23,"States"],[272,31,248,29],[272,32,248,30,"NOT_RESPONDER"],[272,45,248,43],[273,6,249,4,"RESPONDER_TERMINATED"],[273,26,249,24],[273,28,249,26,"States"],[273,34,249,32],[273,35,249,33,"NOT_RESPONDER"],[273,48,249,46],[274,6,250,4,"ENTER_PRESS_RECT"],[274,22,250,20],[274,24,250,22,"States"],[274,30,250,28],[274,31,250,29,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[274,61,250,59],[275,6,251,4,"LEAVE_PRESS_RECT"],[275,22,251,20],[275,24,251,22,"States"],[275,30,251,28],[275,31,251,29,"RESPONDER_ACTIVE_LONG_PRESS_OUT"],[275,62,251,60],[276,6,252,4,"LONG_PRESS_DETECTED"],[276,25,252,23],[276,27,252,25,"States"],[276,33,252,31],[276,34,252,32,"ERROR"],[277,4,253,2],[277,5,253,3],[278,4,254,2,"error"],[278,9,254,7],[278,11,254,9],[279,6,255,4,"DELAY"],[279,11,255,9],[279,13,255,11,"States"],[279,19,255,17],[279,20,255,18,"NOT_RESPONDER"],[279,33,255,31],[280,6,256,4,"RESPONDER_GRANT"],[280,21,256,19],[280,23,256,21,"States"],[280,29,256,27],[280,30,256,28,"RESPONDER_INACTIVE_PRESS_IN"],[280,57,256,55],[281,6,257,4,"RESPONDER_RELEASE"],[281,23,257,21],[281,25,257,23,"States"],[281,31,257,29],[281,32,257,30,"NOT_RESPONDER"],[281,45,257,43],[282,6,258,4,"RESPONDER_TERMINATED"],[282,26,258,24],[282,28,258,26,"States"],[282,34,258,32],[282,35,258,33,"NOT_RESPONDER"],[282,48,258,46],[283,6,259,4,"ENTER_PRESS_RECT"],[283,22,259,20],[283,24,259,22,"States"],[283,30,259,28],[283,31,259,29,"NOT_RESPONDER"],[283,44,259,42],[284,6,260,4,"LEAVE_PRESS_RECT"],[284,22,260,20],[284,24,260,22,"States"],[284,30,260,28],[284,31,260,29,"NOT_RESPONDER"],[284,44,260,42],[285,6,261,4,"LONG_PRESS_DETECTED"],[285,25,261,23],[285,27,261,25,"States"],[285,33,261,31],[285,34,261,32,"NOT_RESPONDER"],[286,4,262,2],[287,2,263,0],[287,3,263,1],[289,2,265,0],[290,2,266,0],[291,2,267,0],[292,2,268,0],[292,6,268,4,"HIGHLIGHT_DELAY_MS"],[292,24,268,22],[292,27,268,25],[292,30,268,28],[293,2,269,0],[293,6,269,4,"PRESS_EXPAND_PX"],[293,21,269,19],[293,24,269,22],[293,26,269,24],[294,2,270,0],[294,6,270,4,"LONG_PRESS_THRESHOLD"],[294,26,270,24],[294,29,270,27],[294,32,270,30],[295,2,271,0],[295,6,271,4,"LONG_PRESS_DELAY_MS"],[295,25,271,23],[295,28,271,26,"LONG_PRESS_THRESHOLD"],[295,48,271,46],[295,51,271,49,"HIGHLIGHT_DELAY_MS"],[295,69,271,67],[296,2,272,0],[296,6,272,4,"LONG_PRESS_ALLOWED_MOVEMENT"],[296,33,272,31],[296,36,272,34],[296,38,272,36],[298,2,274,0],[300,2,276,0],[301,0,277,0],[302,0,278,0],[303,0,279,0],[304,0,280,0],[305,0,281,0],[306,0,282,0],[307,0,283,0],[308,0,284,0],[309,0,285,0],[310,0,286,0],[311,0,287,0],[312,0,288,0],[313,0,289,0],[314,0,290,0],[315,0,291,0],[316,0,292,0],[317,0,293,0],[318,0,294,0],[319,0,295,0],[320,0,296,0],[321,0,297,0],[322,0,298,0],[323,0,299,0],[324,0,300,0],[325,0,301,0],[326,0,302,0],[327,0,303,0],[328,0,304,0],[329,0,305,0],[330,0,306,0],[331,0,307,0],[332,0,308,0],[333,0,309,0],[334,0,310,0],[335,0,311,0],[336,0,312,0],[337,0,313,0],[338,0,314,0],[339,0,315,0],[340,0,316,0],[341,0,317,0],[342,0,318,0],[343,0,319,0],[344,0,320,0],[345,0,321,0],[346,0,322,0],[347,0,323,0],[348,0,324,0],[349,0,325,0],[350,0,326,0],[351,0,327,0],[352,0,328,0],[353,0,329,0],[354,0,330,0],[355,0,331,0],[356,0,332,0],[357,0,333,0],[358,0,334,0],[359,0,335,0],[360,0,336,0],[361,0,337,0],[362,0,338,0],[363,0,339,0],[364,2,340,0],[364,6,340,4,"TouchableMixin"],[364,20,340,18],[364,23,340,21],[365,4,341,2],[366,4,342,2,"componentDidMount"],[366,21,342,19],[366,23,342,21],[366,32,342,30,"componentDidMount"],[366,49,342,47,"componentDidMount"],[366,50,342,47],[366,52,342,50],[367,6,343,4],[367,10,343,4,"warnOnce"],[367,26,343,12],[367,27,343,12,"warnOnce"],[367,35,343,12],[367,37,343,13],[367,53,343,29],[367,55,343,31],[367,108,343,84],[367,109,343,85],[368,6,344,4],[368,10,344,8,"touchableNode"],[368,23,344,21],[368,26,344,24],[368,30,344,28],[368,31,344,29,"getTouchableNode"],[368,47,344,45],[368,51,344,49],[368,55,344,53],[368,56,344,54,"getTouchableNode"],[368,72,344,70],[368,73,344,71],[368,74,344,72],[369,6,345,4],[369,10,345,8,"touchableNode"],[369,23,345,21],[369,27,345,25,"touchableNode"],[369,40,345,38],[369,41,345,39,"addEventListener"],[369,57,345,55],[369,59,345,57],[370,8,346,6],[370,12,346,10],[370,13,346,11,"_touchableBlurListener"],[370,35,346,33],[370,38,346,36,"e"],[370,39,346,37],[370,43,346,41],[371,10,347,8],[371,14,347,12],[371,18,347,16],[371,19,347,17,"_isTouchableKeyboardActive"],[371,45,347,43],[371,47,347,45],[372,12,348,10],[372,16,348,14],[372,20,348,18],[372,21,348,19,"state"],[372,26,348,24],[372,27,348,25,"touchable"],[372,36,348,34],[372,37,348,35,"touchState"],[372,47,348,45],[372,51,348,49],[372,55,348,53],[372,56,348,54,"state"],[372,61,348,59],[372,62,348,60,"touchable"],[372,71,348,69],[372,72,348,70,"touchState"],[372,82,348,80],[372,87,348,85,"States"],[372,93,348,91],[372,94,348,92,"NOT_RESPONDER"],[372,107,348,105],[372,109,348,107],[373,14,349,12],[373,18,349,16],[373,19,349,17,"touchableHandleResponderTerminate"],[373,52,349,50],[373,53,349,51],[374,16,350,14,"nativeEvent"],[374,27,350,25],[374,29,350,27,"e"],[375,14,351,12],[375,15,351,13],[375,16,351,14],[376,12,352,10],[377,12,353,10],[377,16,353,14],[377,17,353,15,"_isTouchableKeyboardActive"],[377,43,353,41],[377,46,353,44],[377,51,353,49],[378,10,354,8],[379,8,355,6],[379,9,355,7],[380,8,356,6,"touchableNode"],[380,21,356,19],[380,22,356,20,"addEventListener"],[380,38,356,36],[380,39,356,37],[380,45,356,43],[380,47,356,45],[380,51,356,49],[380,52,356,50,"_touchableBlurListener"],[380,74,356,72],[380,75,356,73],[381,6,357,4],[382,4,358,2],[382,5,358,3],[383,4,359,2],[384,0,360,0],[385,0,361,0],[386,4,362,2,"componentWillUnmount"],[386,24,362,22],[386,26,362,24],[386,35,362,33,"componentWillUnmount"],[386,55,362,53,"componentWillUnmount"],[386,56,362,53],[386,58,362,56],[387,6,363,4],[387,10,363,8,"touchableNode"],[387,23,363,21],[387,26,363,24],[387,30,363,28],[387,31,363,29,"getTouchableNode"],[387,47,363,45],[387,51,363,49],[387,55,363,53],[387,56,363,54,"getTouchableNode"],[387,72,363,70],[387,73,363,71],[387,74,363,72],[388,6,364,4],[388,10,364,8,"touchableNode"],[388,23,364,21],[388,27,364,25,"touchableNode"],[388,40,364,38],[388,41,364,39,"addEventListener"],[388,57,364,55],[388,59,364,57],[389,8,365,6,"touchableNode"],[389,21,365,19],[389,22,365,20,"removeEventListener"],[389,41,365,39],[389,42,365,40],[389,48,365,46],[389,50,365,48],[389,54,365,52],[389,55,365,53,"_touchableBlurListener"],[389,77,365,75],[389,78,365,76],[390,6,366,4],[391,6,367,4],[391,10,367,8],[391,11,367,9,"touchableDelayTimeout"],[391,32,367,30],[391,36,367,34,"clearTimeout"],[391,48,367,46],[391,49,367,47],[391,53,367,51],[391,54,367,52,"touchableDelayTimeout"],[391,75,367,73],[391,76,367,74],[392,6,368,4],[392,10,368,8],[392,11,368,9,"longPressDelayTimeout"],[392,32,368,30],[392,36,368,34,"clearTimeout"],[392,48,368,46],[392,49,368,47],[392,53,368,51],[392,54,368,52,"longPressDelayTimeout"],[392,75,368,73],[392,76,368,74],[393,6,369,4],[393,10,369,8],[393,11,369,9,"pressOutDelayTimeout"],[393,31,369,29],[393,35,369,33,"clearTimeout"],[393,47,369,45],[393,48,369,46],[393,52,369,50],[393,53,369,51,"pressOutDelayTimeout"],[393,73,369,71],[393,74,369,72],[394,6,370,4],[395,6,371,4],[395,10,371,8],[395,11,371,9,"pressInLocation"],[395,26,371,24],[395,29,371,27],[395,33,371,31],[396,6,372,4],[396,10,372,8],[396,11,372,9,"state"],[396,16,372,14],[396,17,372,15,"touchable"],[396,26,372,24],[396,27,372,25,"responderID"],[396,38,372,36],[396,41,372,39],[396,45,372,43],[397,4,373,2],[397,5,373,3],[398,4,374,2],[399,0,375,0],[400,0,376,0],[401,0,377,0],[402,0,378,0],[403,0,379,0],[404,0,380,0],[405,4,381,2,"touchableGetInitialState"],[405,28,381,26],[405,30,381,28],[405,39,381,37,"touchableGetInitialState"],[405,63,381,61,"touchableGetInitialState"],[405,64,381,61],[405,66,381,64],[406,6,382,4],[406,13,382,11],[407,8,383,6,"touchable"],[407,17,383,15],[407,19,383,17],[408,10,384,8,"touchState"],[408,20,384,18],[408,22,384,20,"undefined"],[408,31,384,29],[409,10,385,8,"responderID"],[409,21,385,19],[409,23,385,21],[410,8,386,6],[411,6,387,4],[411,7,387,5],[412,4,388,2],[412,5,388,3],[413,4,389,2],[414,4,390,2],[415,0,391,0],[416,0,392,0],[417,4,393,2,"touchableHandleResponderTerminationRequest"],[417,46,393,44],[417,48,393,46],[417,57,393,55,"touchableHandleResponderTerminationRequest"],[417,99,393,97,"touchableHandleResponderTerminationRequest"],[417,100,393,97],[417,102,393,100],[418,6,394,4],[418,13,394,11],[418,14,394,12],[418,18,394,16],[418,19,394,17,"props"],[418,24,394,22],[418,25,394,23,"rejectResponderTermination"],[418,51,394,49],[419,4,395,2],[419,5,395,3],[420,4,396,2],[421,0,397,0],[422,0,398,0],[423,4,399,2,"touchableHandleStartShouldSetResponder"],[423,42,399,40],[423,44,399,42],[423,53,399,51,"touchableHandleStartShouldSetResponder"],[423,91,399,89,"touchableHandleStartShouldSetResponder"],[423,92,399,89],[423,94,399,92],[424,6,400,4],[424,13,400,11],[424,14,400,12],[424,18,400,16],[424,19,400,17,"props"],[424,24,400,22],[424,25,400,23,"disabled"],[424,33,400,31],[425,4,401,2],[425,5,401,3],[426,4,402,2],[427,0,403,0],[428,0,404,0],[429,4,405,2,"touchableLongPressCancelsPress"],[429,34,405,32],[429,36,405,34],[429,45,405,43,"touchableLongPressCancelsPress"],[429,75,405,73,"touchableLongPressCancelsPress"],[429,76,405,73],[429,78,405,76],[430,6,406,4],[430,13,406,11],[430,17,406,15],[431,4,407,2],[431,5,407,3],[432,4,408,2],[433,0,409,0],[434,0,410,0],[435,0,411,0],[436,0,412,0],[437,4,413,2,"touchableHandleResponderGrant"],[437,33,413,31],[437,35,413,33],[437,44,413,42,"touchableHandleResponderGrant"],[437,73,413,71,"touchableHandleResponderGrant"],[437,74,413,72,"e"],[437,75,413,73],[437,77,413,75],[438,6,414,4],[438,10,414,8,"dispatchID"],[438,20,414,18],[438,23,414,21,"e"],[438,24,414,22],[438,25,414,23,"currentTarget"],[438,38,414,36],[439,6,415,4],[440,6,416,4],[441,6,417,4],[442,6,418,4,"e"],[442,7,418,5],[442,8,418,6,"persist"],[442,15,418,13],[442,16,418,14],[442,17,418,15],[443,6,419,4],[443,10,419,8],[443,11,419,9,"pressOutDelayTimeout"],[443,31,419,29],[443,35,419,33,"clearTimeout"],[443,47,419,45],[443,48,419,46],[443,52,419,50],[443,53,419,51,"pressOutDelayTimeout"],[443,73,419,71],[443,74,419,72],[444,6,420,4],[444,10,420,8],[444,11,420,9,"pressOutDelayTimeout"],[444,31,420,29],[444,34,420,32],[444,38,420,36],[445,6,421,4],[445,10,421,8],[445,11,421,9,"state"],[445,16,421,14],[445,17,421,15,"touchable"],[445,26,421,24],[445,27,421,25,"touchState"],[445,37,421,35],[445,40,421,38,"States"],[445,46,421,44],[445,47,421,45,"NOT_RESPONDER"],[445,60,421,58],[446,6,422,4],[446,10,422,8],[446,11,422,9,"state"],[446,16,422,14],[446,17,422,15,"touchable"],[446,26,422,24],[446,27,422,25,"responderID"],[446,38,422,36],[446,41,422,39,"dispatchID"],[446,51,422,49],[447,6,423,4],[447,10,423,8],[447,11,423,9,"_receiveSignal"],[447,25,423,23],[447,26,423,24,"Signals"],[447,33,423,31],[447,34,423,32,"RESPONDER_GRANT"],[447,49,423,47],[447,51,423,49,"e"],[447,52,423,50],[447,53,423,51],[448,6,424,4],[448,10,424,8,"delayMS"],[448,17,424,15],[448,20,424,18],[448,24,424,22],[448,25,424,23,"touchableGetHighlightDelayMS"],[448,53,424,51],[448,58,424,56,"undefined"],[448,67,424,65],[448,70,424,68,"Math"],[448,74,424,72],[448,75,424,73,"max"],[448,78,424,76],[448,79,424,77],[448,83,424,81],[448,84,424,82,"touchableGetHighlightDelayMS"],[448,112,424,110],[448,113,424,111],[448,114,424,112],[448,116,424,114],[448,117,424,115],[448,118,424,116],[448,121,424,119,"HIGHLIGHT_DELAY_MS"],[448,139,424,137],[449,6,425,4,"delayMS"],[449,13,425,11],[449,16,425,14,"isNaN"],[449,21,425,19],[449,22,425,20,"delayMS"],[449,29,425,27],[449,30,425,28],[449,33,425,31,"HIGHLIGHT_DELAY_MS"],[449,51,425,49],[449,54,425,52,"delayMS"],[449,61,425,59],[450,6,426,4],[450,10,426,8,"delayMS"],[450,17,426,15],[450,22,426,20],[450,23,426,21],[450,25,426,23],[451,8,427,6],[451,12,427,10],[451,13,427,11,"touchableDelayTimeout"],[451,34,427,32],[451,37,427,35,"setTimeout"],[451,47,427,45],[451,48,427,46],[451,52,427,50],[451,53,427,51,"_handleDelay"],[451,65,427,63],[451,66,427,64,"bind"],[451,70,427,68],[451,71,427,69],[451,75,427,73],[451,77,427,75,"e"],[451,78,427,76],[451,79,427,77],[451,81,427,79,"delayMS"],[451,88,427,86],[451,89,427,87],[452,6,428,4],[452,7,428,5],[452,13,428,11],[453,8,429,6],[453,12,429,10],[453,13,429,11,"_handleDelay"],[453,25,429,23],[453,26,429,24,"e"],[453,27,429,25],[453,28,429,26],[454,6,430,4],[455,6,431,4],[455,10,431,8,"longDelayMS"],[455,21,431,19],[455,24,431,22],[455,28,431,26],[455,29,431,27,"touchableGetLongPressDelayMS"],[455,57,431,55],[455,62,431,60,"undefined"],[455,71,431,69],[455,74,431,72,"Math"],[455,78,431,76],[455,79,431,77,"max"],[455,82,431,80],[455,83,431,81],[455,87,431,85],[455,88,431,86,"touchableGetLongPressDelayMS"],[455,116,431,114],[455,117,431,115],[455,118,431,116],[455,120,431,118],[455,122,431,120],[455,123,431,121],[455,126,431,124,"LONG_PRESS_DELAY_MS"],[455,145,431,143],[456,6,432,4,"longDelayMS"],[456,17,432,15],[456,20,432,18,"isNaN"],[456,25,432,23],[456,26,432,24,"longDelayMS"],[456,37,432,35],[456,38,432,36],[456,41,432,39,"LONG_PRESS_DELAY_MS"],[456,60,432,58],[456,63,432,61,"longDelayMS"],[456,74,432,72],[457,6,433,4],[457,10,433,8],[457,11,433,9,"longPressDelayTimeout"],[457,32,433,30],[457,35,433,33,"setTimeout"],[457,45,433,43],[457,46,433,44],[457,50,433,48],[457,51,433,49,"_handleLongDelay"],[457,67,433,65],[457,68,433,66,"bind"],[457,72,433,70],[457,73,433,71],[457,77,433,75],[457,79,433,77,"e"],[457,80,433,78],[457,81,433,79],[457,83,433,81,"longDelayMS"],[457,94,433,92],[457,97,433,95,"delayMS"],[457,104,433,102],[457,105,433,103],[458,4,434,2],[458,5,434,3],[459,4,435,2],[460,0,436,0],[461,0,437,0],[462,4,438,2,"touchableHandleResponderRelease"],[462,35,438,33],[462,37,438,35],[462,46,438,44,"touchableHandleResponderRelease"],[462,77,438,75,"touchableHandleResponderRelease"],[462,78,438,76,"e"],[462,79,438,77],[462,81,438,79],[463,6,439,4],[463,10,439,8],[463,11,439,9,"pressInLocation"],[463,26,439,24],[463,29,439,27],[463,33,439,31],[464,6,440,4],[464,10,440,8],[464,11,440,9,"_receiveSignal"],[464,25,440,23],[464,26,440,24,"Signals"],[464,33,440,31],[464,34,440,32,"RESPONDER_RELEASE"],[464,51,440,49],[464,53,440,51,"e"],[464,54,440,52],[464,55,440,53],[465,4,441,2],[465,5,441,3],[466,4,442,2],[467,0,443,0],[468,0,444,0],[469,4,445,2,"touchableHandleResponderTerminate"],[469,37,445,35],[469,39,445,37],[469,48,445,46,"touchableHandleResponderTerminate"],[469,81,445,79,"touchableHandleResponderTerminate"],[469,82,445,80,"e"],[469,83,445,81],[469,85,445,83],[470,6,446,4],[470,10,446,8],[470,11,446,9,"pressInLocation"],[470,26,446,24],[470,29,446,27],[470,33,446,31],[471,6,447,4],[471,10,447,8],[471,11,447,9,"_receiveSignal"],[471,25,447,23],[471,26,447,24,"Signals"],[471,33,447,31],[471,34,447,32,"RESPONDER_TERMINATED"],[471,54,447,52],[471,56,447,54,"e"],[471,57,447,55],[471,58,447,56],[472,4,448,2],[472,5,448,3],[473,4,449,2],[474,0,450,0],[475,0,451,0],[476,4,452,2,"touchableHandleResponderMove"],[476,32,452,30],[476,34,452,32],[476,43,452,41,"touchableHandleResponderMove"],[476,71,452,69,"touchableHandleResponderMove"],[476,72,452,70,"e"],[476,73,452,71],[476,75,452,73],[477,6,453,4],[478,6,454,4],[478,10,454,8],[478,11,454,9],[478,15,454,13],[478,16,454,14,"state"],[478,21,454,19],[478,22,454,20,"touchable"],[478,31,454,29],[478,32,454,30,"positionOnActivate"],[478,50,454,48],[478,52,454,50],[479,8,455,6],[480,6,456,4],[481,6,457,4],[481,10,457,8,"positionOnActivate"],[481,28,457,26],[481,31,457,29],[481,35,457,33],[481,36,457,34,"state"],[481,41,457,39],[481,42,457,40,"touchable"],[481,51,457,49],[481,52,457,50,"positionOnActivate"],[481,70,457,68],[482,6,458,4],[482,10,458,8,"dimensionsOnActivate"],[482,30,458,28],[482,33,458,31],[482,37,458,35],[482,38,458,36,"state"],[482,43,458,41],[482,44,458,42,"touchable"],[482,53,458,51],[482,54,458,52,"dimensionsOnActivate"],[482,74,458,72],[483,6,459,4],[483,10,459,8,"pressRectOffset"],[483,25,459,23],[483,28,459,26],[483,32,459,30],[483,33,459,31,"touchableGetPressRectOffset"],[483,60,459,58],[483,63,459,61],[483,67,459,65],[483,68,459,66,"touchableGetPressRectOffset"],[483,95,459,93],[483,96,459,94],[483,97,459,95],[483,100,459,98],[484,8,460,6,"left"],[484,12,460,10],[484,14,460,12,"PRESS_EXPAND_PX"],[484,29,460,27],[485,8,461,6,"right"],[485,13,461,11],[485,15,461,13,"PRESS_EXPAND_PX"],[485,30,461,28],[486,8,462,6,"top"],[486,11,462,9],[486,13,462,11,"PRESS_EXPAND_PX"],[486,28,462,26],[487,8,463,6,"bottom"],[487,14,463,12],[487,16,463,14,"PRESS_EXPAND_PX"],[488,6,464,4],[488,7,464,5],[489,6,465,4],[489,10,465,8,"pressExpandLeft"],[489,25,465,23],[489,28,465,26,"pressRectOffset"],[489,43,465,41],[489,44,465,42,"left"],[489,48,465,46],[490,6,466,4],[490,10,466,8,"pressExpandTop"],[490,24,466,22],[490,27,466,25,"pressRectOffset"],[490,42,466,40],[490,43,466,41,"top"],[490,46,466,44],[491,6,467,4],[491,10,467,8,"pressExpandRight"],[491,26,467,24],[491,29,467,27,"pressRectOffset"],[491,44,467,42],[491,45,467,43,"right"],[491,50,467,48],[492,6,468,4],[492,10,468,8,"pressExpandBottom"],[492,27,468,25],[492,30,468,28,"pressRectOffset"],[492,45,468,43],[492,46,468,44,"bottom"],[492,52,468,50],[493,6,469,4],[493,10,469,8,"hitSlop"],[493,17,469,15],[493,20,469,18],[493,24,469,22],[493,25,469,23,"touchableGetHitSlop"],[493,44,469,42],[493,47,469,45],[493,51,469,49],[493,52,469,50,"touchableGetHitSlop"],[493,71,469,69],[493,72,469,70],[493,73,469,71],[493,76,469,74],[493,80,469,78],[494,6,470,4],[494,10,470,8,"hitSlop"],[494,17,470,15],[494,19,470,17],[495,8,471,6,"pressExpandLeft"],[495,23,471,21],[495,27,471,25,"hitSlop"],[495,34,471,32],[495,35,471,33,"left"],[495,39,471,37],[495,43,471,41],[495,44,471,42],[496,8,472,6,"pressExpandTop"],[496,22,472,20],[496,26,472,24,"hitSlop"],[496,33,472,31],[496,34,472,32,"top"],[496,37,472,35],[496,41,472,39],[496,42,472,40],[497,8,473,6,"pressExpandRight"],[497,24,473,22],[497,28,473,26,"hitSlop"],[497,35,473,33],[497,36,473,34,"right"],[497,41,473,39],[497,45,473,43],[497,46,473,44],[498,8,474,6,"pressExpandBottom"],[498,25,474,23],[498,29,474,27,"hitSlop"],[498,36,474,34],[498,37,474,35,"bottom"],[498,43,474,41],[498,47,474,45],[498,48,474,46],[499,6,475,4],[500,6,476,4],[500,10,476,8,"touch"],[500,15,476,13],[500,18,476,16,"extractSingleTouch"],[500,36,476,34],[500,37,476,35,"e"],[500,38,476,36],[500,39,476,37,"nativeEvent"],[500,50,476,48],[500,51,476,49],[501,6,477,4],[501,10,477,8,"pageX"],[501,15,477,13],[501,18,477,16,"touch"],[501,23,477,21],[501,27,477,25,"touch"],[501,32,477,30],[501,33,477,31,"pageX"],[501,38,477,36],[502,6,478,4],[502,10,478,8,"pageY"],[502,15,478,13],[502,18,478,16,"touch"],[502,23,478,21],[502,27,478,25,"touch"],[502,32,478,30],[502,33,478,31,"pageY"],[502,38,478,36],[503,6,479,4],[503,10,479,8],[503,14,479,12],[503,15,479,13,"pressInLocation"],[503,30,479,28],[503,32,479,30],[504,8,480,6],[504,12,480,10,"movedDistance"],[504,25,480,23],[504,28,480,26],[504,32,480,30],[504,33,480,31,"_getDistanceBetweenPoints"],[504,58,480,56],[504,59,480,57,"pageX"],[504,64,480,62],[504,66,480,64,"pageY"],[504,71,480,69],[504,73,480,71],[504,77,480,75],[504,78,480,76,"pressInLocation"],[504,93,480,91],[504,94,480,92,"pageX"],[504,99,480,97],[504,101,480,99],[504,105,480,103],[504,106,480,104,"pressInLocation"],[504,121,480,119],[504,122,480,120,"pageY"],[504,127,480,125],[504,128,480,126],[505,8,481,6],[505,12,481,10,"movedDistance"],[505,25,481,23],[505,28,481,26,"LONG_PRESS_ALLOWED_MOVEMENT"],[505,55,481,53],[505,57,481,55],[506,10,482,8],[506,14,482,12],[506,15,482,13,"_cancelLongPressDelayTimeout"],[506,43,482,41],[506,44,482,42],[506,45,482,43],[507,8,483,6],[508,6,484,4],[509,6,485,4],[509,10,485,8,"isTouchWithinActive"],[509,29,485,27],[509,32,485,30,"pageX"],[509,37,485,35],[509,40,485,38,"positionOnActivate"],[509,58,485,56],[509,59,485,57,"left"],[509,63,485,61],[509,66,485,64,"pressExpandLeft"],[509,81,485,79],[509,85,485,83,"pageY"],[509,90,485,88],[509,93,485,91,"positionOnActivate"],[509,111,485,109],[509,112,485,110,"top"],[509,115,485,113],[509,118,485,116,"pressExpandTop"],[509,132,485,130],[509,136,485,134,"pageX"],[509,141,485,139],[509,144,485,142,"positionOnActivate"],[509,162,485,160],[509,163,485,161,"left"],[509,167,485,165],[509,170,485,168,"dimensionsOnActivate"],[509,190,485,188],[509,191,485,189,"width"],[509,196,485,194],[509,199,485,197,"pressExpandRight"],[509,215,485,213],[509,219,485,217,"pageY"],[509,224,485,222],[509,227,485,225,"positionOnActivate"],[509,245,485,243],[509,246,485,244,"top"],[509,249,485,247],[509,252,485,250,"dimensionsOnActivate"],[509,272,485,270],[509,273,485,271,"height"],[509,279,485,277],[509,282,485,280,"pressExpandBottom"],[509,299,485,297],[510,6,486,4],[510,10,486,8,"isTouchWithinActive"],[510,29,486,27],[510,31,486,29],[511,8,487,6],[511,12,487,10,"prevState"],[511,21,487,19],[511,24,487,22],[511,28,487,26],[511,29,487,27,"state"],[511,34,487,32],[511,35,487,33,"touchable"],[511,44,487,42],[511,45,487,43,"touchState"],[511,55,487,53],[512,8,488,6],[512,12,488,10],[512,13,488,11,"_receiveSignal"],[512,27,488,25],[512,28,488,26,"Signals"],[512,35,488,33],[512,36,488,34,"ENTER_PRESS_RECT"],[512,52,488,50],[512,54,488,52,"e"],[512,55,488,53],[512,56,488,54],[513,8,489,6],[513,12,489,10,"curState"],[513,20,489,18],[513,23,489,21],[513,27,489,25],[513,28,489,26,"state"],[513,33,489,31],[513,34,489,32,"touchable"],[513,43,489,41],[513,44,489,42,"touchState"],[513,54,489,52],[514,8,490,6],[514,12,490,10,"curState"],[514,20,490,18],[514,25,490,23,"States"],[514,31,490,29],[514,32,490,30,"RESPONDER_INACTIVE_PRESS_IN"],[514,59,490,57],[514,63,490,61,"prevState"],[514,72,490,70],[514,77,490,75,"States"],[514,83,490,81],[514,84,490,82,"RESPONDER_INACTIVE_PRESS_IN"],[514,111,490,109],[514,113,490,111],[515,10,491,8],[516,10,492,8],[516,14,492,12],[516,15,492,13,"_cancelLongPressDelayTimeout"],[516,43,492,41],[516,44,492,42],[516,45,492,43],[517,8,493,6],[518,6,494,4],[518,7,494,5],[518,13,494,11],[519,8,495,6],[519,12,495,10],[519,13,495,11,"_cancelLongPressDelayTimeout"],[519,41,495,39],[519,42,495,40],[519,43,495,41],[520,8,496,6],[520,12,496,10],[520,13,496,11,"_receiveSignal"],[520,27,496,25],[520,28,496,26,"Signals"],[520,35,496,33],[520,36,496,34,"LEAVE_PRESS_RECT"],[520,52,496,50],[520,54,496,52,"e"],[520,55,496,53],[520,56,496,54],[521,6,497,4],[522,4,498,2],[522,5,498,3],[523,4,499,2],[524,0,500,0],[525,0,501,0],[526,0,502,0],[527,0,503,0],[528,0,504,0],[529,0,505,0],[530,0,506,0],[531,4,507,2,"touchableHandleFocus"],[531,24,507,22],[531,26,507,24],[531,35,507,33,"touchableHandleFocus"],[531,55,507,53,"touchableHandleFocus"],[531,56,507,54,"e"],[531,57,507,55],[531,59,507,57],[532,6,508,4],[532,10,508,8],[532,11,508,9,"props"],[532,16,508,14],[532,17,508,15,"onFocus"],[532,24,508,22],[532,28,508,26],[532,32,508,30],[532,33,508,31,"props"],[532,38,508,36],[532,39,508,37,"onFocus"],[532,46,508,44],[532,47,508,45,"e"],[532,48,508,46],[532,49,508,47],[533,4,509,2],[533,5,509,3],[534,4,510,2],[535,0,511,0],[536,0,512,0],[537,0,513,0],[538,0,514,0],[539,0,515,0],[540,0,516,0],[541,0,517,0],[542,4,518,2,"touchableHandleBlur"],[542,23,518,21],[542,25,518,23],[542,34,518,32,"touchableHandleBlur"],[542,53,518,51,"touchableHandleBlur"],[542,54,518,52,"e"],[542,55,518,53],[542,57,518,55],[543,6,519,4],[543,10,519,8],[543,11,519,9,"props"],[543,16,519,14],[543,17,519,15,"onBlur"],[543,23,519,21],[543,27,519,25],[543,31,519,29],[543,32,519,30,"props"],[543,37,519,35],[543,38,519,36,"onBlur"],[543,44,519,42],[543,45,519,43,"e"],[543,46,519,44],[543,47,519,45],[544,4,520,2],[544,5,520,3],[545,4,521,2],[547,4,523,2],[548,0,524,0],[549,0,525,0],[550,0,526,0],[551,0,527,0],[552,0,528,0],[553,0,529,0],[554,0,530,0],[556,4,532,2],[557,0,533,0],[558,0,534,0],[559,0,535,0],[560,0,536,0],[561,0,537,0],[562,0,538,0],[563,0,539,0],[564,0,540,0],[565,0,541,0],[566,0,542,0],[567,0,543,0],[569,4,545,2],[570,0,546,0],[571,0,547,0],[572,0,548,0],[573,0,549,0],[574,0,550,0],[575,0,551,0],[576,0,552,0],[578,4,554,2],[579,0,555,0],[580,0,556,0],[581,0,557,0],[582,0,558,0],[583,0,559,0],[584,0,560,0],[585,0,561,0],[586,0,562,0],[587,0,563,0],[588,0,564,0],[589,0,565,0],[590,0,566,0],[592,4,568,2],[593,0,569,0],[594,0,570,0],[595,0,571,0],[596,0,572,0],[597,0,573,0],[599,4,575,2],[600,0,576,0],[601,0,577,0],[602,0,578,0],[603,0,579,0],[604,0,580,0],[605,0,581,0],[607,4,583,2],[609,4,585,2],[610,0,586,0],[611,0,587,0],[612,0,588,0],[613,0,589,0],[614,0,590,0],[615,0,591,0],[616,0,592,0],[617,0,593,0],[618,0,594,0],[619,0,595,0],[620,0,596,0],[621,4,597,2,"_remeasureMetricsOnActivation"],[621,33,597,31],[621,35,597,33],[621,44,597,42,"_remeasureMetricsOnActivation"],[621,73,597,71,"_remeasureMetricsOnActivation"],[621,74,597,71],[621,76,597,74],[622,6,598,4],[622,10,598,8,"tag"],[622,13,598,11],[622,16,598,14],[622,20,598,18],[622,21,598,19,"state"],[622,26,598,24],[622,27,598,25,"touchable"],[622,36,598,34],[622,37,598,35,"responderID"],[622,48,598,46],[623,6,599,4],[623,10,599,8,"tag"],[623,13,599,11],[623,17,599,15],[623,21,599,19],[623,23,599,21],[624,8,600,6],[625,6,601,4],[626,6,602,4,"UIManager"],[626,15,602,13],[626,16,602,13,"default"],[626,23,602,13],[626,24,602,14,"measure"],[626,31,602,21],[626,32,602,22,"tag"],[626,35,602,25],[626,37,602,27],[626,41,602,31],[626,42,602,32,"_handleQueryLayout"],[626,60,602,50],[626,61,602,51],[627,4,603,2],[627,5,603,3],[628,4,604,2,"_handleQueryLayout"],[628,22,604,20],[628,24,604,22],[628,33,604,31,"_handleQueryLayout"],[628,51,604,49,"_handleQueryLayout"],[628,52,604,50,"l"],[628,53,604,51],[628,55,604,53,"t"],[628,56,604,54],[628,58,604,56,"w"],[628,59,604,57],[628,61,604,59,"h"],[628,62,604,60],[628,64,604,62,"globalX"],[628,71,604,69],[628,73,604,71,"globalY"],[628,80,604,78],[628,82,604,80],[629,6,605,4],[630,6,606,4],[630,10,606,8],[630,11,606,9,"l"],[630,12,606,10],[630,16,606,14],[630,17,606,15,"t"],[630,18,606,16],[630,22,606,20],[630,23,606,21,"w"],[630,24,606,22],[630,28,606,26],[630,29,606,27,"h"],[630,30,606,28],[630,34,606,32],[630,35,606,33,"globalX"],[630,42,606,40],[630,46,606,44],[630,47,606,45,"globalY"],[630,54,606,52],[630,56,606,54],[631,8,607,6],[632,6,608,4],[633,6,609,4],[633,10,609,8],[633,11,609,9,"state"],[633,16,609,14],[633,17,609,15,"touchable"],[633,26,609,24],[633,27,609,25,"positionOnActivate"],[633,45,609,43],[633,49,609,47,"Position"],[633,57,609,55],[633,58,609,55,"default"],[633,65,609,55],[633,66,609,56,"release"],[633,73,609,63],[633,74,609,64],[633,78,609,68],[633,79,609,69,"state"],[633,84,609,74],[633,85,609,75,"touchable"],[633,94,609,84],[633,95,609,85,"positionOnActivate"],[633,113,609,103],[633,114,609,104],[634,6,610,4],[634,10,610,8],[634,11,610,9,"state"],[634,16,610,14],[634,17,610,15,"touchable"],[634,26,610,24],[634,27,610,25,"dimensionsOnActivate"],[634,47,610,45],[635,6,611,4],[636,6,612,4,"BoundingDimensions"],[636,24,612,22],[636,25,612,22,"default"],[636,32,612,22],[636,33,612,23,"release"],[636,40,612,30],[636,41,612,31],[636,45,612,35],[636,46,612,36,"state"],[636,51,612,41],[636,52,612,42,"touchable"],[636,61,612,51],[636,62,612,52,"dimensionsOnActivate"],[636,82,612,72],[636,83,612,73],[637,6,613,4],[637,10,613,8],[637,11,613,9,"state"],[637,16,613,14],[637,17,613,15,"touchable"],[637,26,613,24],[637,27,613,25,"positionOnActivate"],[637,45,613,43],[637,48,613,46,"Position"],[637,56,613,54],[637,57,613,54,"default"],[637,64,613,54],[637,65,613,55,"getPooled"],[637,74,613,64],[637,75,613,65,"globalX"],[637,82,613,72],[637,84,613,74,"globalY"],[637,91,613,81],[637,92,613,82],[638,6,614,4],[639,6,615,4],[639,10,615,8],[639,11,615,9,"state"],[639,16,615,14],[639,17,615,15,"touchable"],[639,26,615,24],[639,27,615,25,"dimensionsOnActivate"],[639,47,615,45],[639,50,615,48,"BoundingDimensions"],[639,68,615,66],[639,69,615,66,"default"],[639,76,615,66],[639,77,615,67,"getPooled"],[639,86,615,76],[639,87,615,77,"w"],[639,88,615,78],[639,90,615,80,"h"],[639,91,615,81],[639,92,615,82],[640,4,616,2],[640,5,616,3],[641,4,617,2,"_handleDelay"],[641,16,617,14],[641,18,617,16],[641,27,617,25,"_handleDelay"],[641,39,617,37,"_handleDelay"],[641,40,617,38,"e"],[641,41,617,39],[641,43,617,41],[642,6,618,4],[642,10,618,8],[642,11,618,9,"touchableDelayTimeout"],[642,32,618,30],[642,35,618,33],[642,39,618,37],[643,6,619,4],[643,10,619,8],[643,11,619,9,"_receiveSignal"],[643,25,619,23],[643,26,619,24,"Signals"],[643,33,619,31],[643,34,619,32,"DELAY"],[643,39,619,37],[643,41,619,39,"e"],[643,42,619,40],[643,43,619,41],[644,4,620,2],[644,5,620,3],[645,4,621,2,"_handleLongDelay"],[645,20,621,18],[645,22,621,20],[645,31,621,29,"_handleLongDelay"],[645,47,621,45,"_handleLongDelay"],[645,48,621,46,"e"],[645,49,621,47],[645,51,621,49],[646,6,622,4],[646,10,622,8],[646,11,622,9,"longPressDelayTimeout"],[646,32,622,30],[646,35,622,33],[646,39,622,37],[647,6,623,4],[647,10,623,8,"curState"],[647,18,623,16],[647,21,623,19],[647,25,623,23],[647,26,623,24,"state"],[647,31,623,29],[647,32,623,30,"touchable"],[647,41,623,39],[647,42,623,40,"touchState"],[647,52,623,50],[648,6,624,4],[648,10,624,8,"curState"],[648,18,624,16],[648,23,624,21,"States"],[648,29,624,27],[648,30,624,28,"RESPONDER_ACTIVE_PRESS_IN"],[648,55,624,53],[648,59,624,57,"curState"],[648,67,624,65],[648,72,624,70,"States"],[648,78,624,76],[648,79,624,77,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[648,109,624,107],[648,111,624,109],[649,8,625,6,"console"],[649,15,625,13],[649,16,625,14,"error"],[649,21,625,19],[649,22,625,20],[649,60,625,58],[649,63,625,61,"curState"],[649,71,625,69],[649,74,625,72],[649,82,625,80],[649,85,625,83,"States"],[649,91,625,89],[649,92,625,90,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[649,122,625,120],[649,125,625,123],[649,162,625,160],[649,165,625,163],[649,240,625,238],[649,241,625,239],[650,6,626,4],[650,7,626,5],[650,13,626,11],[651,8,627,6],[651,12,627,10],[651,13,627,11,"_receiveSignal"],[651,27,627,25],[651,28,627,26,"Signals"],[651,35,627,33],[651,36,627,34,"LONG_PRESS_DETECTED"],[651,55,627,53],[651,57,627,55,"e"],[651,58,627,56],[651,59,627,57],[652,6,628,4],[653,4,629,2],[653,5,629,3],[654,4,630,2],[655,0,631,0],[656,0,632,0],[657,0,633,0],[658,0,634,0],[659,0,635,0],[660,0,636,0],[661,0,637,0],[662,4,638,2,"_receiveSignal"],[662,18,638,16],[662,20,638,18],[662,29,638,27,"_receiveSignal"],[662,43,638,41,"_receiveSignal"],[662,44,638,42,"signal"],[662,50,638,48],[662,52,638,50,"e"],[662,53,638,51],[662,55,638,53],[663,6,639,4],[663,10,639,8,"responderID"],[663,21,639,19],[663,24,639,22],[663,28,639,26],[663,29,639,27,"state"],[663,34,639,32],[663,35,639,33,"touchable"],[663,44,639,42],[663,45,639,43,"responderID"],[663,56,639,54],[664,6,640,4],[664,10,640,8,"curState"],[664,18,640,16],[664,21,640,19],[664,25,640,23],[664,26,640,24,"state"],[664,31,640,29],[664,32,640,30,"touchable"],[664,41,640,39],[664,42,640,40,"touchState"],[664,52,640,50],[665,6,641,4],[665,10,641,8,"nextState"],[665,19,641,17],[665,22,641,20,"Transitions"],[665,33,641,31],[665,34,641,32,"curState"],[665,42,641,40],[665,43,641,41],[665,47,641,45,"Transitions"],[665,58,641,56],[665,59,641,57,"curState"],[665,67,641,65],[665,68,641,66],[665,69,641,67,"signal"],[665,75,641,73],[665,76,641,74],[666,6,642,4],[666,10,642,8],[666,11,642,9,"responderID"],[666,22,642,20],[666,26,642,24,"signal"],[666,32,642,30],[666,37,642,35,"Signals"],[666,44,642,42],[666,45,642,43,"RESPONDER_RELEASE"],[666,62,642,60],[666,64,642,62],[667,8,643,6],[668,6,644,4],[669,6,645,4],[669,10,645,8],[669,11,645,9,"nextState"],[669,20,645,18],[669,22,645,20],[670,8,646,6],[670,14,646,12],[670,18,646,16,"Error"],[670,23,646,21],[670,24,646,22],[670,47,646,45],[670,50,646,48,"signal"],[670,56,646,54],[670,59,646,57],[670,73,646,71],[670,76,646,74,"curState"],[670,84,646,82],[670,87,646,85],[670,116,646,114],[670,119,646,117,"responderID"],[670,130,646,128],[670,133,646,131],[670,136,646,134],[670,137,646,135],[671,6,647,4],[672,6,648,4],[672,10,648,8,"nextState"],[672,19,648,17],[672,24,648,22,"States"],[672,30,648,28],[672,31,648,29,"ERROR"],[672,36,648,34],[672,38,648,36],[673,8,649,6],[673,14,649,12],[673,18,649,16,"Error"],[673,23,649,21],[673,24,649,22],[673,60,649,58],[673,63,649,61,"curState"],[673,71,649,69],[673,74,649,72],[673,82,649,80],[673,85,649,83,"signal"],[673,91,649,89],[673,94,649,92],[673,113,649,111],[673,116,649,114,"responderID"],[673,127,649,125],[673,130,649,128],[673,133,649,131],[673,134,649,132],[674,6,650,4],[675,6,651,4],[675,10,651,8,"curState"],[675,18,651,16],[675,23,651,21,"nextState"],[675,32,651,30],[675,34,651,32],[676,8,652,6],[676,12,652,10],[676,13,652,11,"_performSideEffectsForTransition"],[676,45,652,43],[676,46,652,44,"curState"],[676,54,652,52],[676,56,652,54,"nextState"],[676,65,652,63],[676,67,652,65,"signal"],[676,73,652,71],[676,75,652,73,"e"],[676,76,652,74],[676,77,652,75],[677,8,653,6],[677,12,653,10],[677,13,653,11,"state"],[677,18,653,16],[677,19,653,17,"touchable"],[677,28,653,26],[677,29,653,27,"touchState"],[677,39,653,37],[677,42,653,40,"nextState"],[677,51,653,49],[678,6,654,4],[679,4,655,2],[679,5,655,3],[680,4,656,2,"_cancelLongPressDelayTimeout"],[680,32,656,30],[680,34,656,32],[680,43,656,41,"_cancelLongPressDelayTimeout"],[680,71,656,69,"_cancelLongPressDelayTimeout"],[680,72,656,69],[680,74,656,72],[681,6,657,4],[681,10,657,8],[681,11,657,9,"longPressDelayTimeout"],[681,32,657,30],[681,36,657,34,"clearTimeout"],[681,48,657,46],[681,49,657,47],[681,53,657,51],[681,54,657,52,"longPressDelayTimeout"],[681,75,657,73],[681,76,657,74],[682,6,658,4],[682,10,658,8],[682,11,658,9,"longPressDelayTimeout"],[682,32,658,30],[682,35,658,33],[682,39,658,37],[683,4,659,2],[683,5,659,3],[684,4,660,2,"_isHighlight"],[684,16,660,14],[684,18,660,16],[684,27,660,25,"_isHighlight"],[684,39,660,37,"_isHighlight"],[684,40,660,38,"state"],[684,45,660,43],[684,47,660,45],[685,6,661,4],[685,13,661,11,"state"],[685,18,661,16],[685,23,661,21,"States"],[685,29,661,27],[685,30,661,28,"RESPONDER_ACTIVE_PRESS_IN"],[685,55,661,53],[685,59,661,57,"state"],[685,64,661,62],[685,69,661,67,"States"],[685,75,661,73],[685,76,661,74,"RESPONDER_ACTIVE_LONG_PRESS_IN"],[685,106,661,104],[686,4,662,2],[686,5,662,3],[687,4,663,2,"_savePressInLocation"],[687,24,663,22],[687,26,663,24],[687,35,663,33,"_savePressInLocation"],[687,55,663,53,"_savePressInLocation"],[687,56,663,54,"e"],[687,57,663,55],[687,59,663,57],[688,6,664,4],[688,10,664,8,"touch"],[688,15,664,13],[688,18,664,16,"extractSingleTouch"],[688,36,664,34],[688,37,664,35,"e"],[688,38,664,36],[688,39,664,37,"nativeEvent"],[688,50,664,48],[688,51,664,49],[689,6,665,4],[689,10,665,8,"pageX"],[689,15,665,13],[689,18,665,16,"touch"],[689,23,665,21],[689,27,665,25,"touch"],[689,32,665,30],[689,33,665,31,"pageX"],[689,38,665,36],[690,6,666,4],[690,10,666,8,"pageY"],[690,15,666,13],[690,18,666,16,"touch"],[690,23,666,21],[690,27,666,25,"touch"],[690,32,666,30],[690,33,666,31,"pageY"],[690,38,666,36],[691,6,667,4],[691,10,667,8,"locationX"],[691,19,667,17],[691,22,667,20,"touch"],[691,27,667,25],[691,31,667,29,"touch"],[691,36,667,34],[691,37,667,35,"locationX"],[691,46,667,44],[692,6,668,4],[692,10,668,8,"locationY"],[692,19,668,17],[692,22,668,20,"touch"],[692,27,668,25],[692,31,668,29,"touch"],[692,36,668,34],[692,37,668,35,"locationY"],[692,46,668,44],[693,6,669,4],[693,10,669,8],[693,11,669,9,"pressInLocation"],[693,26,669,24],[693,29,669,27],[694,8,670,6,"pageX"],[694,13,670,11],[695,8,671,6,"pageY"],[695,13,671,11],[696,8,672,6,"locationX"],[696,17,672,15],[697,8,673,6,"locationY"],[698,6,674,4],[698,7,674,5],[699,4,675,2],[699,5,675,3],[700,4,676,2,"_getDistanceBetweenPoints"],[700,29,676,27],[700,31,676,29],[700,40,676,38,"_getDistanceBetweenPoints"],[700,65,676,63,"_getDistanceBetweenPoints"],[700,66,676,64,"aX"],[700,68,676,66],[700,70,676,68,"aY"],[700,72,676,70],[700,74,676,72,"bX"],[700,76,676,74],[700,78,676,76,"bY"],[700,80,676,78],[700,82,676,80],[701,6,677,4],[701,10,677,8,"deltaX"],[701,16,677,14],[701,19,677,17,"aX"],[701,21,677,19],[701,24,677,22,"bX"],[701,26,677,24],[702,6,678,4],[702,10,678,8,"deltaY"],[702,16,678,14],[702,19,678,17,"aY"],[702,21,678,19],[702,24,678,22,"bY"],[702,26,678,24],[703,6,679,4],[703,13,679,11,"Math"],[703,17,679,15],[703,18,679,16,"sqrt"],[703,22,679,20],[703,23,679,21,"deltaX"],[703,29,679,27],[703,32,679,30,"deltaX"],[703,38,679,36],[703,41,679,39,"deltaY"],[703,47,679,45],[703,50,679,48,"deltaY"],[703,56,679,54],[703,57,679,55],[704,4,680,2],[704,5,680,3],[705,4,681,2],[706,0,682,0],[707,0,683,0],[708,0,684,0],[709,0,685,0],[710,0,686,0],[711,0,687,0],[712,0,688,0],[713,0,689,0],[714,0,690,0],[715,0,691,0],[716,4,692,2,"_performSideEffectsForTransition"],[716,36,692,34],[716,38,692,36],[716,47,692,45,"_performSideEffectsForTransition"],[716,79,692,77,"_performSideEffectsForTransition"],[716,80,692,78,"curState"],[716,88,692,86],[716,90,692,88,"nextState"],[716,99,692,97],[716,101,692,99,"signal"],[716,107,692,105],[716,109,692,107,"e"],[716,110,692,108],[716,112,692,110],[717,6,693,4],[717,10,693,8,"curIsHighlight"],[717,24,693,22],[717,27,693,25],[717,31,693,29],[717,32,693,30,"_isHighlight"],[717,44,693,42],[717,45,693,43,"curState"],[717,53,693,51],[717,54,693,52],[718,6,694,4],[718,10,694,8,"newIsHighlight"],[718,24,694,22],[718,27,694,25],[718,31,694,29],[718,32,694,30,"_isHighlight"],[718,44,694,42],[718,45,694,43,"nextState"],[718,54,694,52],[718,55,694,53],[719,6,695,4],[719,10,695,8,"isFinalSignal"],[719,23,695,21],[719,26,695,24,"signal"],[719,32,695,30],[719,37,695,35,"Signals"],[719,44,695,42],[719,45,695,43,"RESPONDER_TERMINATED"],[719,65,695,63],[719,69,695,67,"signal"],[719,75,695,73],[719,80,695,78,"Signals"],[719,87,695,85],[719,88,695,86,"RESPONDER_RELEASE"],[719,105,695,103],[720,6,696,4],[720,10,696,8,"isFinalSignal"],[720,23,696,21],[720,25,696,23],[721,8,697,6],[721,12,697,10],[721,13,697,11,"_cancelLongPressDelayTimeout"],[721,41,697,39],[721,42,697,40],[721,43,697,41],[722,6,698,4],[723,6,699,4],[723,10,699,8,"isInitialTransition"],[723,29,699,27],[723,32,699,30,"curState"],[723,40,699,38],[723,45,699,43,"States"],[723,51,699,49],[723,52,699,50,"NOT_RESPONDER"],[723,65,699,63],[723,69,699,67,"nextState"],[723,78,699,76],[723,83,699,81,"States"],[723,89,699,87],[723,90,699,88,"RESPONDER_INACTIVE_PRESS_IN"],[723,117,699,115],[724,6,700,4],[724,10,700,8,"isActiveTransition"],[724,28,700,26],[724,31,700,29],[724,32,700,30,"IsActive"],[724,40,700,38],[724,41,700,39,"curState"],[724,49,700,47],[724,50,700,48],[724,54,700,52,"IsActive"],[724,62,700,60],[724,63,700,61,"nextState"],[724,72,700,70],[724,73,700,71],[725,6,701,4],[725,10,701,8,"isInitialTransition"],[725,29,701,27],[725,33,701,31,"isActiveTransition"],[725,51,701,49],[725,53,701,51],[726,8,702,6],[726,12,702,10],[726,13,702,11,"_remeasureMetricsOnActivation"],[726,42,702,40],[726,43,702,41],[726,44,702,42],[727,6,703,4],[728,6,704,4],[728,10,704,8,"IsPressingIn"],[728,22,704,20],[728,23,704,21,"curState"],[728,31,704,29],[728,32,704,30],[728,36,704,34,"signal"],[728,42,704,40],[728,47,704,45,"Signals"],[728,54,704,52],[728,55,704,53,"LONG_PRESS_DETECTED"],[728,74,704,72],[728,76,704,74],[729,8,705,6],[729,12,705,10],[729,13,705,11,"touchableHandleLongPress"],[729,37,705,35],[729,41,705,39],[729,45,705,43],[729,46,705,44,"touchableHandleLongPress"],[729,70,705,68],[729,71,705,69,"e"],[729,72,705,70],[729,73,705,71],[730,6,706,4],[731,6,707,4],[731,10,707,8,"newIsHighlight"],[731,24,707,22],[731,28,707,26],[731,29,707,27,"curIsHighlight"],[731,43,707,41],[731,45,707,43],[732,8,708,6],[732,12,708,10],[732,13,708,11,"_startHighlight"],[732,28,708,26],[732,29,708,27,"e"],[732,30,708,28],[732,31,708,29],[733,6,709,4],[733,7,709,5],[733,13,709,11],[733,17,709,15],[733,18,709,16,"newIsHighlight"],[733,32,709,30],[733,36,709,34,"curIsHighlight"],[733,50,709,48],[733,52,709,50],[734,8,710,6],[734,12,710,10],[734,13,710,11,"_endHighlight"],[734,26,710,24],[734,27,710,25,"e"],[734,28,710,26],[734,29,710,27],[735,6,711,4],[736,6,712,4],[736,10,712,8,"IsPressingIn"],[736,22,712,20],[736,23,712,21,"curState"],[736,31,712,29],[736,32,712,30],[736,36,712,34,"signal"],[736,42,712,40],[736,47,712,45,"Signals"],[736,54,712,52],[736,55,712,53,"RESPONDER_RELEASE"],[736,72,712,70],[736,74,712,72],[737,8,713,6],[737,12,713,10,"hasLongPressHandler"],[737,31,713,29],[737,34,713,32],[737,35,713,33],[737,36,713,34],[737,40,713,38],[737,41,713,39,"props"],[737,46,713,44],[737,47,713,45,"onLongPress"],[737,58,713,56],[738,8,714,6],[738,12,714,10,"pressIsLongButStillCallOnPress"],[738,42,714,40],[738,45,714,43,"IsLongPressingIn"],[738,61,714,59],[738,62,714,60,"curState"],[738,70,714,68],[738,71,714,69],[739,8,715,6],[740,8,716,6],[740,9,716,7,"hasLongPressHandler"],[740,28,716,26],[740,32,716,30],[740,33,716,31],[740,37,716,35],[740,38,716,36,"touchableLongPressCancelsPress"],[740,68,716,66],[740,69,716,67],[740,70,716,68],[740,71,716,69],[740,72,716,70],[740,73,716,71],[742,8,718,6],[742,12,718,10,"shouldInvokePress"],[742,29,718,27],[742,32,718,30],[742,33,718,31,"IsLongPressingIn"],[742,49,718,47],[742,50,718,48,"curState"],[742,58,718,56],[742,59,718,57],[742,63,718,61,"pressIsLongButStillCallOnPress"],[742,93,718,91],[743,8,719,6],[743,12,719,10,"shouldInvokePress"],[743,29,719,27],[743,33,719,31],[743,37,719,35],[743,38,719,36,"touchableHandlePress"],[743,58,719,56],[743,60,719,58],[744,10,720,8],[744,14,720,12],[744,15,720,13,"newIsHighlight"],[744,29,720,27],[744,33,720,31],[744,34,720,32,"curIsHighlight"],[744,48,720,46],[744,50,720,48],[745,12,721,10],[746,12,722,10],[746,16,722,14],[746,17,722,15,"_startHighlight"],[746,32,722,30],[746,33,722,31,"e"],[746,34,722,32],[746,35,722,33],[747,12,723,10],[747,16,723,14],[747,17,723,15,"_endHighlight"],[747,30,723,28],[747,31,723,29,"e"],[747,32,723,30],[747,33,723,31],[748,10,724,8],[749,10,725,8],[749,14,725,12],[749,15,725,13,"touchableHandlePress"],[749,35,725,33],[749,36,725,34,"e"],[749,37,725,35],[749,38,725,36],[750,8,726,6],[751,6,727,4],[752,6,728,4],[752,10,728,8],[752,11,728,9,"touchableDelayTimeout"],[752,32,728,30],[752,36,728,34,"clearTimeout"],[752,48,728,46],[752,49,728,47],[752,53,728,51],[752,54,728,52,"touchableDelayTimeout"],[752,75,728,73],[752,76,728,74],[753,6,729,4],[753,10,729,8],[753,11,729,9,"touchableDelayTimeout"],[753,32,729,30],[753,35,729,33],[753,39,729,37],[754,4,730,2],[754,5,730,3],[755,4,731,2,"_playTouchSound"],[755,19,731,17],[755,21,731,19],[755,30,731,28,"_playTouchSound"],[755,45,731,43,"_playTouchSound"],[755,46,731,43],[755,48,731,46],[756,6,732,4,"UIManager"],[756,15,732,13],[756,16,732,13,"default"],[756,23,732,13],[756,24,732,14,"playTouchSound"],[756,38,732,28],[756,39,732,29],[756,40,732,30],[757,4,733,2],[757,5,733,3],[758,4,734,2,"_startHighlight"],[758,19,734,17],[758,21,734,19],[758,30,734,28,"_startHighlight"],[758,45,734,43,"_startHighlight"],[758,46,734,44,"e"],[758,47,734,45],[758,49,734,47],[759,6,735,4],[759,10,735,8],[759,11,735,9,"_savePressInLocation"],[759,31,735,29],[759,32,735,30,"e"],[759,33,735,31],[759,34,735,32],[760,6,736,4],[760,10,736,8],[760,11,736,9,"touchableHandleActivePressIn"],[760,39,736,37],[760,43,736,41],[760,47,736,45],[760,48,736,46,"touchableHandleActivePressIn"],[760,76,736,74],[760,77,736,75,"e"],[760,78,736,76],[760,79,736,77],[761,4,737,2],[761,5,737,3],[762,4,738,2,"_endHighlight"],[762,17,738,15],[762,19,738,17],[762,28,738,26,"_endHighlight"],[762,41,738,39,"_endHighlight"],[762,42,738,40,"e"],[762,43,738,41],[762,45,738,43],[763,6,739,4],[763,10,739,8],[763,14,739,12],[763,15,739,13,"touchableHandleActivePressOut"],[763,44,739,42],[763,46,739,44],[764,8,740,6],[764,12,740,10],[764,16,740,14],[764,17,740,15,"touchableGetPressOutDelayMS"],[764,44,740,42],[764,48,740,46],[764,52,740,50],[764,53,740,51,"touchableGetPressOutDelayMS"],[764,80,740,78],[764,81,740,79],[764,82,740,80],[764,84,740,82],[765,10,741,8],[765,14,741,12],[765,15,741,13,"pressOutDelayTimeout"],[765,35,741,33],[765,38,741,36,"setTimeout"],[765,48,741,46],[765,49,741,47],[765,55,741,53],[766,12,742,10],[766,16,742,14],[766,17,742,15,"touchableHandleActivePressOut"],[766,46,742,44],[766,47,742,45,"e"],[766,48,742,46],[766,49,742,47],[767,10,743,8],[767,11,743,9],[767,13,743,11],[767,17,743,15],[767,18,743,16,"touchableGetPressOutDelayMS"],[767,45,743,43],[767,46,743,44],[767,47,743,45],[767,48,743,46],[768,8,744,6],[768,9,744,7],[768,15,744,13],[769,10,745,8],[769,14,745,12],[769,15,745,13,"touchableHandleActivePressOut"],[769,44,745,42],[769,45,745,43,"e"],[769,46,745,44],[769,47,745,45],[770,8,746,6],[771,6,747,4],[772,4,748,2],[772,5,748,3],[773,4,749,2],[774,4,750,2],[775,4,751,2,"touchableHandleKeyEvent"],[775,27,751,25],[775,29,751,27],[775,38,751,36,"touchableHandleKeyEvent"],[775,61,751,59,"touchableHandleKeyEvent"],[775,62,751,60,"e"],[775,63,751,61],[775,65,751,63],[776,6,752,4],[776,10,752,8,"type"],[776,14,752,12],[776,17,752,15,"e"],[776,18,752,16],[776,19,752,17,"type"],[776,23,752,21],[777,8,753,6,"key"],[777,11,753,9],[777,14,753,12,"e"],[777,15,753,13],[777,16,753,14,"key"],[777,19,753,17],[778,6,754,4],[778,10,754,8,"key"],[778,13,754,11],[778,18,754,16],[778,25,754,23],[778,29,754,27,"key"],[778,32,754,30],[778,37,754,35],[778,40,754,38],[778,42,754,40],[779,8,755,6],[779,12,755,10,"type"],[779,16,755,14],[779,21,755,19],[779,30,755,28],[779,32,755,30],[780,10,756,8],[780,14,756,12],[780,15,756,13],[780,19,756,17],[780,20,756,18,"_isTouchableKeyboardActive"],[780,46,756,44],[780,48,756,46],[781,12,757,10],[781,16,757,14],[781,17,757,15],[781,21,757,19],[781,22,757,20,"state"],[781,27,757,25],[781,28,757,26,"touchable"],[781,37,757,35],[781,38,757,36,"touchState"],[781,48,757,46],[781,52,757,50],[781,56,757,54],[781,57,757,55,"state"],[781,62,757,60],[781,63,757,61,"touchable"],[781,72,757,70],[781,73,757,71,"touchState"],[781,83,757,81],[781,88,757,86,"States"],[781,94,757,92],[781,95,757,93,"NOT_RESPONDER"],[781,108,757,106],[781,110,757,108],[782,14,758,12],[782,18,758,16],[782,19,758,17,"touchableHandleResponderGrant"],[782,48,758,46],[782,49,758,47,"e"],[782,50,758,48],[782,51,758,49],[783,14,759,12],[783,18,759,16],[783,19,759,17,"_isTouchableKeyboardActive"],[783,45,759,43],[783,48,759,46],[783,52,759,50],[784,12,760,10],[785,10,761,8],[786,8,762,6],[786,9,762,7],[786,15,762,13],[786,19,762,17,"type"],[786,23,762,21],[786,28,762,26],[786,35,762,33],[786,37,762,35],[787,10,763,8],[787,14,763,12],[787,18,763,16],[787,19,763,17,"_isTouchableKeyboardActive"],[787,45,763,43],[787,47,763,45],[788,12,764,10],[788,16,764,14],[788,20,764,18],[788,21,764,19,"state"],[788,26,764,24],[788,27,764,25,"touchable"],[788,36,764,34],[788,37,764,35,"touchState"],[788,47,764,45],[788,51,764,49],[788,55,764,53],[788,56,764,54,"state"],[788,61,764,59],[788,62,764,60,"touchable"],[788,71,764,69],[788,72,764,70,"touchState"],[788,82,764,80],[788,87,764,85,"States"],[788,93,764,91],[788,94,764,92,"NOT_RESPONDER"],[788,107,764,105],[788,109,764,107],[789,14,765,12],[789,18,765,16],[789,19,765,17,"touchableHandleResponderRelease"],[789,50,765,48],[789,51,765,49,"e"],[789,52,765,50],[789,53,765,51],[790,14,766,12],[790,18,766,16],[790,19,766,17,"_isTouchableKeyboardActive"],[790,45,766,43],[790,48,766,46],[790,53,766,51],[791,12,767,10],[792,10,768,8],[793,8,769,6],[794,8,770,6,"e"],[794,9,770,7],[794,10,770,8,"stopPropagation"],[794,25,770,23],[794,26,770,24],[794,27,770,25],[795,8,771,6],[796,8,772,6],[797,8,773,6],[797,12,773,10],[797,14,773,12,"key"],[797,17,773,15],[797,22,773,20],[797,29,773,27],[797,33,773,31,"AccessibilityUtil"],[797,50,773,48],[797,51,773,48,"default"],[797,58,773,48],[797,59,773,49,"propsToAriaRole"],[797,74,773,64],[797,75,773,65],[797,79,773,69],[797,80,773,70,"props"],[797,85,773,75],[797,86,773,76],[797,91,773,81],[797,97,773,87],[797,98,773,88],[797,100,773,90],[798,10,774,8,"e"],[798,11,774,9],[798,12,774,10,"preventDefault"],[798,26,774,24],[798,27,774,25],[798,28,774,26],[799,8,775,6],[800,6,776,4],[801,4,777,2],[801,5,777,3],[802,4,778,2,"withoutDefaultFocusAndBlur"],[802,30,778,28],[802,32,778,30],[802,33,778,31],[803,2,779,0],[803,3,779,1],[805,2,781,0],[806,0,782,0],[807,0,783,0],[808,0,784,0],[809,0,785,0],[810,0,786,0],[811,2,787,0],[811,6,787,4,"touchableHandleFocus"],[811,26,787,24],[811,29,787,27,"TouchableMixin"],[811,43,787,41],[811,44,787,42,"touchableHandleFocus"],[811,64,787,62],[812,4,788,2,"touchableHandleBlur"],[812,23,788,21],[812,26,788,24,"TouchableMixin"],[812,40,788,38],[812,41,788,39,"touchableHandleBlur"],[812,60,788,58],[813,4,789,2,"TouchableMixinWithoutDefaultFocusAndBlur"],[813,44,789,42],[813,47,789,45],[813,51,789,45,"_objectWithoutPropertiesLoose"],[813,80,789,74],[813,81,789,74,"default"],[813,88,789,74],[813,90,789,75,"TouchableMixin"],[813,104,789,89],[813,106,789,91],[813,107,789,92],[813,129,789,114],[813,131,789,116],[813,152,789,137],[813,153,789,138],[813,154,789,139],[814,2,790,0,"TouchableMixin"],[814,16,790,14],[814,17,790,15,"withoutDefaultFocusAndBlur"],[814,43,790,41],[814,46,790,44,"TouchableMixinWithoutDefaultFocusAndBlur"],[814,86,790,84],[815,2,791,0],[815,6,791,4,"Touchable"],[815,15,791,13],[815,18,791,16],[816,4,792,2,"Mixin"],[816,9,792,7],[816,11,792,9,"TouchableMixin"],[816,25,792,23],[817,4,793,2,"TOUCH_TARGET_DEBUG"],[817,22,793,20],[817,24,793,22],[817,29,793,27],[818,4,794,2],[819,4,795,2],[820,0,796,0],[821,0,797,0],[822,4,798,2,"renderDebugView"],[822,19,798,17],[822,21,798,19,"_ref"],[822,25,798,23],[822,29,798,27],[823,6,799,4],[823,10,799,8,"color"],[823,15,799,13],[823,18,799,16,"_ref"],[823,22,799,20],[823,23,799,21,"color"],[823,28,799,26],[824,8,800,6,"hitSlop"],[824,15,800,13],[824,18,800,16,"_ref"],[824,22,800,20],[824,23,800,21,"hitSlop"],[824,30,800,28],[825,6,801,4],[825,10,801,8],[825,11,801,9,"Touchable"],[825,20,801,18],[825,21,801,19,"TOUCH_TARGET_DEBUG"],[825,39,801,37],[825,41,801,39],[826,8,802,6],[826,15,802,13],[826,19,802,17],[827,6,803,4],[828,6,804,4],[828,10,804,8,"process"],[828,17,804,15],[828,18,804,16,"env"],[828,21,804,19],[828,22,804,20,"NODE_ENV"],[828,30,804,28],[828,35,804,33],[828,47,804,45],[828,49,804,47],[829,8,805,6],[829,14,805,12,"Error"],[829,19,805,17],[829,20,805,18],[829,81,805,79],[829,82,805,80],[830,6,806,4],[831,6,807,4],[831,10,807,8,"debugHitSlopStyle"],[831,27,807,25],[831,30,807,28],[831,31,807,29],[831,32,807,30],[832,6,808,4,"hitSlop"],[832,13,808,11],[832,16,808,14,"hitSlop"],[832,23,808,21],[832,27,808,25],[833,8,809,6,"top"],[833,11,809,9],[833,13,809,11],[833,14,809,12],[834,8,810,6,"bottom"],[834,14,810,12],[834,16,810,14],[834,17,810,15],[835,8,811,6,"left"],[835,12,811,10],[835,14,811,12],[835,15,811,13],[836,8,812,6,"right"],[836,13,812,11],[836,15,812,13],[837,6,813,4],[837,7,813,5],[838,6,814,4],[838,11,814,9],[838,15,814,13,"key"],[838,18,814,16],[838,22,814,20,"hitSlop"],[838,29,814,27],[838,31,814,29],[839,8,815,6,"debugHitSlopStyle"],[839,25,815,23],[839,26,815,24,"key"],[839,29,815,27],[839,30,815,28],[839,33,815,31],[839,34,815,32,"hitSlop"],[839,41,815,39],[839,42,815,40,"key"],[839,45,815,43],[839,46,815,44],[840,6,816,4],[841,6,817,4],[841,10,817,8,"normalizedColor"],[841,25,817,23],[841,28,817,26],[841,32,817,26,"normalizeColor"],[841,46,817,40],[841,47,817,40,"default"],[841,54,817,40],[841,56,817,41,"color"],[841,61,817,46],[841,62,817,47],[842,6,818,4],[842,10,818,8],[842,17,818,15,"normalizedColor"],[842,32,818,30],[842,37,818,35],[842,45,818,43],[842,47,818,45],[843,8,819,6],[843,15,819,13],[843,19,819,17],[844,6,820,4],[845,6,821,4],[845,10,821,8,"hexColor"],[845,18,821,16],[845,21,821,19],[845,24,821,22],[845,27,821,25],[845,28,821,26],[845,38,821,36],[845,41,821,39,"normalizedColor"],[845,56,821,54],[845,57,821,55,"toString"],[845,65,821,63],[845,66,821,64],[845,68,821,66],[845,69,821,67],[845,71,821,69,"substr"],[845,77,821,75],[845,78,821,76],[845,79,821,77],[845,80,821,78],[845,81,821,79],[846,6,822,4],[846,13,822,11],[846,26,822,24,"React"],[846,31,822,29],[846,32,822,29,"default"],[846,39,822,29],[846,40,822,30,"createElement"],[846,53,822,43],[846,54,822,44,"View"],[846,58,822,48],[846,59,822,48,"default"],[846,66,822,48],[846,68,822,50],[847,8,823,6,"pointerEvents"],[847,21,823,19],[847,23,823,21],[847,29,823,27],[848,8,824,6,"style"],[848,13,824,11],[848,15,824,13],[848,19,824,13,"_objectSpread"],[848,32,824,26],[848,33,824,26,"default"],[848,40,824,26],[848,42,824,27],[849,10,825,8,"position"],[849,18,825,16],[849,20,825,18],[849,30,825,28],[850,10,826,8,"borderColor"],[850,21,826,19],[850,23,826,21,"hexColor"],[850,31,826,29],[850,32,826,30,"slice"],[850,37,826,35],[850,38,826,36],[850,39,826,37],[850,41,826,39],[850,42,826,40],[850,43,826,41],[850,44,826,42],[850,47,826,45],[850,51,826,49],[851,10,827,8],[852,10,828,8,"borderWidth"],[852,21,828,19],[852,23,828,21],[852,24,828,22],[853,10,829,8,"borderStyle"],[853,21,829,19],[853,23,829,21],[853,31,829,29],[854,10,830,8,"backgroundColor"],[854,25,830,23],[854,27,830,25,"hexColor"],[854,35,830,33],[854,36,830,34,"slice"],[854,41,830,39],[854,42,830,40],[854,43,830,41],[854,45,830,43],[854,46,830,44],[854,47,830,45],[854,48,830,46],[854,51,830,49],[855,8,831,6],[855,9,831,7],[855,11,831,9,"debugHitSlopStyle"],[855,28,831,26],[856,6,832,4],[856,7,832,5],[856,8,832,6],[857,4,833,2],[858,2,834,0],[858,3,834,1],[859,2,835,0],[859,6,835,0,"_default"],[859,14,835,0],[859,17,835,15,"Touchable"],[859,26,835,24],[860,0,835,25],[860,3]],"functionMap":{"names":["<global>","extractSingleTouch","componentDidMount","_touchableBlurListener","componentWillUnmount","touchableGetInitialState","touchableHandleResponderTerminationRequest","touchableHandleStartShouldSetResponder","touchableLongPressCancelsPress","touchableHandleResponderGrant","touchableHandleResponderRelease","touchableHandleResponderTerminate","touchableHandleResponderMove","touchableHandleFocus","touchableHandleBlur","_remeasureMetricsOnActivation","_handleQueryLayout","_handleDelay","_handleLongDelay","_receiveSignal","_cancelLongPressDelayTimeout","_isHighlight","_savePressInLocation","_getDistanceBetweenPoints","_performSideEffectsForTransition","_playTouchSound","_startHighlight","_endHighlight","setTimeout$argument_0","touchableHandleKeyEvent","Touchable.renderDebugView"],"mappings":"AAA;yBCsB;CDM;qBEyT;oCCI;ODS;GFG;wBII;GJW;4BKQ;GLO;8CMK;GNE;0COI;GPE;kCQI;GRE;iCSM;GTqB;mCUI;GVG;qCWI;GXG;gCYI;GZ8C;wBaS;GbE;uBcS;GdE;iCe6E;GfM;sBgBC;GhBY;gBiBC;GjBG;oBkBC;GlBQ;kBmBS;GnBiB;gCoBC;GpBG;gBqBC;GrBE;wBsBC;GtBY;6BuBC;GvBI;oCwBY;GxBsC;mByBC;GzBE;mB0BC;G1BG;iB2BC;+CCG;SDE;G3BK;2B6BG;G7B0B;mB8BqB;G9BmC"},"hasCjsExports":false},"type":"js/module"}]} |