diff --git a/README.md b/README.md index e863878..5c0ae99 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Webpage Playground is a lightweight, responsive web application for managing and - **Dynamic Navigation** — Easy page switching with a responsive navbar - **Inventory Demo** — Display items using reusable item components - **Advanced Search** — Filter inventory by name, location, quantity range, and expiry date -- **Barcode Scanner** — Scan barcodes for inventory management (keyboard and hardware scanner support) +- **Barcode Scanner** — Scan barcodes using camera or keyboard (hardware scanner support) - **Data Visualization** — Pie chart showing inventory distribution - **Responsive Design** — Works on desktop, tablet, and mobile devices @@ -18,7 +18,7 @@ Webpage Playground is a lightweight, responsive web application for managing and ### Pages - `index.html` — Homepage with item component demo and inventory pie chart - `search.html` — Search and filter inventory by name, location, quantity, and expiry date -- `barcode.html` — Barcode scanner with console logging for testing +- `barcode.html` — Barcode scanner with camera and keyboard input modes - `pantry.html` — Pantry inventory container - `fridge.html` — Fridge inventory container - `freezer.html` — Freezer inventory container @@ -55,7 +55,7 @@ Advanced inventory search and filtering interface. - Search by item name (case-insensitive) - Filter by storage location (All, Pantry, Fridge, Freezer) - Filter by quantity range (min/max values) -- **NEW: Filter by expiry date range (start date and end date)** +- Filter by expiry date range (start date and end date) - Real-time result display with item cards - Visual expiry status indicators (Fresh, Expiring Soon, Expired) - Reset button to clear all filters @@ -78,38 +78,61 @@ Results show all items with expiry dates in that range Items display formatted dates and expiry status badges ``` -**Available Items (20 total across all locations):** -- Pantry: Pasta (120 days), Rice (180 days), Cereal (60 days), Flour (150 days), Sugar (200 days), Salt (365 days), Olive Oil (90 days), Canned Beans (EXPIRED -10 days) -- Fridge: Milk (5 days), Cheese (30 days), Greek Yogurt (7 days), Eggs (21 days), Butter (45 days), Chicken Salad (EXPIRED -2 days) -- Freezer: Ice Cream (90 days), Frozen Vegetables (180 days), Chicken Breast (120 days), Ground Beef (150 days), Pizza (200 days), Ice (365 days) - ### 📱 Barcode Scanner (`barcode.html`) -Barcode capture interface with console logging for testing. +Dual-mode barcode scanning interface with keyboard input and camera scanning. **Features:** -- Keyboard input simulation (type barcode + press Enter) -- Hardware barcode scanner device support (ready for integration) -- Paste support (Ctrl/Cmd+V) -- Console logging with formatted output including: - - Timestamp (HH:MM:SS.mmm format) - - Barcode value - - Input type detection (keyboard, hardware-scanner, keyboard-paste) - - Metadata for debugging -- Auto-focus input field after each scan -- Visual status indicator -- Helper instructions and "Open Console" button + +#### Keyboard Input Mode +- Type or paste barcode values +- Hardware barcode scanner device support +- Real-time console logging +- Auto-focus field for seamless entry +- Enter key to scan + +#### Camera Scanning Mode (**NEW**) +- **Real-time barcode detection** using device camera +- **Supported formats:** UPC-A, UPC-E, EAN-13, EAN-8, Code-128, Code-39, and more +- **Browser-based detection** (uses Quagga2 library - local version) +- **Mode toggle** between keyboard and camera input +- **Camera controls** with start/stop buttons +- **Real-time feedback** showing detected barcodes +- **Error handling** with user-friendly messages +- **Mobile support** — Works on iOS and Android devices with camera access +- **Console logging** of all detections with metadata + +**Camera Usage:** +1. Switch to "Camera Scan" mode by clicking the button +2. Click "Start Camera" to begin +3. Browser will request camera permission (grant access) +4. Position barcode in front of camera +5. Barcode is detected automatically in real-time +6. Detected barcodes logged to console (press F12) +7. Click "Stop Camera" to end scanning + +**Keyboard Usage:** +1. Stay in "Keyboard Input" mode +2. Type barcode value or paste from clipboard +3. Press Enter to complete scan +4. Barcode logged to console **Console Output Format:** ``` [Barcode Scanned] 14:07:32.456 | Barcode: 5901234123457 | Input: keyboard +[Barcode Scanned] 14:07:45.123 | Barcode: 123456789012 | Input: camera ``` +**Browser Support:** +- Chrome 53+, Firefox 55+, Safari 11+, Edge 79+ +- Camera access requires HTTPS or localhost +- Mobile browsers support camera scanning + **Testing Instructions:** 1. Navigate to the Barcode Scanner page via navbar -2. Type a barcode value or use a barcode scanner device -3. Press Enter to complete the scan -4. Press F12 to open Developer Tools -5. Switch to the Console tab to view scanned barcodes with metadata +2. Try keyboard input mode: Type a barcode and press Enter +3. Try camera mode: Switch to "Camera Scan" and point at a barcode +4. Press F12 to open DevTools Console +5. View logged barcodes with timestamps and input type ### 📦 Storage Location Pages - `pantry.html` — Pantry inventory (expandable for displaying specific items) @@ -143,7 +166,7 @@ python -m http.server 8000 The navbar appears at the top of every page and provides links to: - Homepage — Main demo page with pie chart - Search — Advanced inventory search and filtering with expiry date support -- Barcode Scanner — Barcode capture interface (testing via console) +- Barcode Scanner — Barcode capture with camera and keyboard modes - Pantry, Fridge, Freezer — Individual storage location pages ### Using the Search Page @@ -152,7 +175,7 @@ The navbar appears at the top of every page and provides links to: - Item name (optional) - Storage location (optional, defaults to "All") - Quantity range (optional, defaults to 0-999) - - **Expiry date range (optional) — Leave blank to ignore** + - Expiry date range (optional) — Leave blank to ignore 3. Click "Search" or press Enter 4. Results display as item cards using the item component with expiry status badges 5. Click "Reset" to clear all filters @@ -163,14 +186,33 @@ The navbar appears at the top of every page and provides links to: - Find fresh items: Set start date to tomorrow, end date to 90 days from today ### Using the Barcode Scanner + +#### Keyboard Mode 1. Open the Barcode Scanner page from the navbar -2. Click in the input field (auto-focused) -3. Enter a barcode: +2. Make sure "Keyboard Input" mode is selected +3. Click in the input field (auto-focused) +4. Enter a barcode: - Type manually and press Enter - Scan with a barcode scanner device - Paste a value (Ctrl/Cmd+V) -4. Press F12 to open Developer Tools Console -5. View scanned barcodes in the Console tab with timestamp and metadata +5. Press F12 to open Developer Tools Console +6. View scanned barcodes in the Console tab with metadata + +#### Camera Mode +1. Open the Barcode Scanner page from the navbar +2. Click "Camera Scan" to switch to camera mode +3. Click "Start Camera" +4. Browser will request camera permission (grant access) +5. Position barcode in front of camera lens +6. Barcode is detected automatically and displayed +7. Press F12 to view console logs +8. Click "Stop Camera" to end + +**Tips:** +- Ensure good lighting for better barcode detection +- Hold barcode steady and clearly in frame +- Device must have a working camera +- Camera mode requires HTTPS or localhost ### The Item Component The `item-component` is a reusable UI building block used throughout the app. See `ITEM_COMPONENT.md` for detailed documentation on using it in your own pages. @@ -251,10 +293,34 @@ export const inventoryData = [ - Implement backend storage (currently using static data) - Add user authentication - Integrate with real barcode/UPC database +- Deploy camera barcode detection to server (for performance optimization) - Consider a frontend framework (React, Vue, etc.) for scale - Add unit/integration tests - Set up CI/CD pipeline -- Implement database for persistent storage and expiry date tracking +- Implement database for persistent storage and inventory tracking + +## Technical Notes + +### Barcode Scanning Library +- **Library:** Quagga2 (local version v1.12.1) +- **Location:** `./quagga2/quagga2-1.12.1/docs/examples/dist/quagga.min.js` (153 KB) +- **Why Quagga2:** Improved barcode detection accuracy and performance compared to original Quagga +- **Supported Formats:** UPC-A, UPC-E, EAN-13, EAN-8, Code-128, Code-39 +- **API:** Backward compatible with original Quagga.js; no code changes needed +- **Initialization:** See `barcode.html` lines 268-290 for camera initialization logic + +### Camera Access +- Requires browser permission (user must grant access) +- Works over HTTPS or localhost only (security requirement) +- Uses HTML5 MediaDevices API (`getUserMedia`) +- Video constraints: 800x600 resolution, environment-facing camera +- Real-time frame processing for barcode detection + +### Performance Considerations +- Camera scanning is CPU-intensive on older devices +- Frame processing happens in real-time on main thread +- Consider WebWorkers for production optimization +- Network-free operation: all detection happens client-side ## Contributing @@ -267,7 +333,8 @@ Contributions are welcome! Suggested improvements: - [ ] Implement item editing/deletion on storage pages - [ ] Add barcode/UPC lookup for real products - [ ] Convert item-component to custom element (``) -- [ ] Add more detailed inventory tracking (expiration dates calculations, locations within rooms, batch numbers, etc.) +- [ ] Optimize camera barcode detection for performance +- [ ] Add more barcode format support - [ ] Add email/notification alerts for items expiring soon - [ ] Implement CSV import/export for inventory diff --git a/barcode-scanner.js b/barcode-scanner.js index 0def9bc..6189de7 100644 --- a/barcode-scanner.js +++ b/barcode-scanner.js @@ -145,3 +145,13 @@ export function getScanningStats() { message: 'Barcode scanner is active. Check console for scanned barcodes.' }; } + +/** + * Log camera-detected barcode to console + * Camera detection is already included in logBarcodeToConsole with inputType = 'camera' + * This function maintains backward compatibility + * @param {string} barcode - The camera-detected barcode + */ +export function logCameraDetectedBarcode(barcode) { + logBarcodeToConsole(barcode, 'camera-device'); +} diff --git a/barcode.html b/barcode.html index 93b258b..b229668 100644 --- a/barcode.html +++ b/barcode.html @@ -5,12 +5,13 @@ Barcode Scanner + @@ -191,33 +319,82 @@

📱 Barcode Scanner

-

Scan a barcode or manually enter one below

+

Scan barcodes using camera or keyboard input

-
- ✓ Scanner Ready - Click below and scan a barcode + +
+ +
-
- - + +
+ + +
+
+ ✓ Scanner Ready - Click below and scan a barcode +
+ +
+ + +
+ +
+

How to Use (Keyboard):

+
    +
  • Keyboard Entry: Type or paste a barcode and press Enter
  • +
  • Hardware Scanner: Plug in a barcode scanner and scan directly
  • +
  • Testing: Scanned barcodes are logged to the browser console (Press F12)
  • +
+
-
-

How to Use:

-
    -
  • Keyboard Entry: Type or paste a barcode and press Enter
  • -
  • Hardware Scanner: Plug in a barcode scanner and scan directly
  • -
  • Testing: Scanned barcodes are logged to the browser console (Press F12)
  • -
  • Input Focus: The input field automatically refocuses after each scan
  • -
+ +
+
+ 📷 Camera Ready - Click "Start Camera" to begin scanning +
+ + + +
+ + +
+ +
+
Detected Barcode:
+
-
+
+ +
+

How to Use (Camera):

+
    +
  • Permission: Browser will request camera access on first use
  • +
  • Position: Hold barcode in front of camera lens
  • +
  • Detection: Barcode is detected automatically in real-time
  • +
  • Supported: UPC, EAN, Code-128, Code-39, and more
  • +
  • Console: All detections logged to console (Press F12)
  • +
+
@@ -240,31 +417,183 @@ +``` + +You can get the `quagga.js` file in the following ways: + +By [installing the npm module](https://github.com/ericblade/quagga2#npm) and copying the `quagga.js` file from the `dist` folder. + +(OR) + +You can also build the library yourself and copy `quagga.js` file from the `dist` folder(refer to the [building](https://github.com/ericblade/quagga2#building) section for more details) + +(OR) + +You can include the following script tags with CDN links: + +a) `quagga.js` + +```html + +``` + +b) `quagga.min.js` (minified version) + +```html + +``` + +*Note: You can include a specific version of the library by including the version as shown below.* + +```html + + +``` + +## Getting Started + +For starters, have a look at the [examples][github_examples] to get an idea +where to go from here. + +## Using with React + +There is a separate [example][reactExample] for using quagga2 with ReactJS + +## Using with External Readers + +New in Quagga2 is the ability to specify external reader modules. Please see [quagga2-reader-qr](https://github.com/ericblade/quagga2-reader-qr). This repository includes a sample external reader that can +read complete images, and decode QR codes. A test script is included to demonstrate how to use an +external reader in your project. + +Quagga2 exports the BarcodeReader prototype, which should also allow you to create new barcode +reader implementations using the base BarcodeReader implementation inside Quagga2. The QR reader +does not make use of this functionality, as QR is not picked up as a barcode in BarcodeReader. + +### External Reader Priority + +External readers follow the same priority rules as built-in readers. Once registered with +`Quagga.registerReader()`, an external reader can be placed anywhere in the `readers` array, +and its position determines when it attempts to decode relative to other readers. + +```javascript +// Register external reader first +Quagga.registerReader('my_custom_reader', MyCustomReader); + +// Use in config - position determines priority +Quagga.init({ + decoder: { + // External reader tried first, then built-in readers + readers: ['my_custom_reader', 'ean_reader', 'code_128_reader'] + } +}); +``` + +## Building + +You can build the library yourself by simply cloning the repo and typing: + +```console +> npm install +> npm run build +``` + +or using Docker: + +```console +> docker build --tag quagga2/build . +> docker run -v $(pwd):/quagga2 quagga2/build npm install +> docker run -v $(pwd):/quagga2 quagga2/build npm run build +``` + +it's also possible to use docker-compose: + +```console +> docker-compose run nodejs npm install +> docker-compose run nodejs npm run build +``` + +*Note: when using Docker or docker-compose the build artifacts will end up in `dist/` as usual thanks to the bind-mount.* + +This npm script builds a non optimized version `quagga.js` and a minified +version `quagga.min.js` and places both files in the `dist` folder. +Additionally, a `quagga.map` source-map is placed alongside these files. This +file is only valid for the non-uglified version `quagga.js` because the +minified version is altered after compression and does not align with the map +file any more. + +## Working with a development version from another project + +If you are working on a project that includes quagga, but you need to use a development version of +quagga, then you can run from the quagga directory: + +```bash +npm install && npm run build && npm link +``` + +then from the other project directory that needs this quagga, do + +```bash +npm link @ericblade/quagga2 +``` + +When linking is successful, all future runs of 'npm run build' will update the version that is +linked in the project. When combined with an application using webpack-dev-server or some other +hot-reload system, you can do very rapid iteration this way. + +### Node + +The code in the `dist` folder is only targeted to the browser and won't work in +node due to the dependency on the DOM. For the use in node, the `build` command +also creates a `quagga.js` file in the `lib` folder. + +## API + +You can check out the [examples][github_examples] to get an idea of how to +use QuaggaJS. Basically the library exposes the following API: + +### Quagga.init(config, callback) + +This method initializes the library for a given configuration `config` (see +below) and invokes the `callback(err)` when Quagga has finished its +bootstrapping phase. The initialization process also requests for camera +access if real-time detection is configured. In case of an error, the `err` +parameter is set and contains information about the cause. A potential cause +may be the `inputStream.type` is set to `LiveStream`, but the browser does +not support this API, or simply if the user denies the permission to use the +camera. + +If you do not specify a target, QuaggaJS would look for an element that matches +the CSS selector `#interactive.viewport` (for backwards compatibility). +`target` can be a string (CSS selector matching one of your DOM node) or a DOM +node. + +```javascript +Quagga.init({ + inputStream : { + name : "Live", + type : "LiveStream", + target: document.querySelector('#yourElement') // Or '#yourElement' (optional) + }, + decoder : { + readers : ["code_128_reader"] + } + }, function(err) { + if (err) { + console.log(err); + return + } + console.log("Initialization finished. Ready to start"); + Quagga.start(); + }); +``` + +### Quagga.start() + +When the library is initialized, the `start()` method starts the video-stream +and begins locating and decoding the images. + +### Quagga.stop() + +If the decoder is currently running, after calling `stop()` the decoder does not +process any more images. Additionally, if a camera-stream was requested upon +initialization, this operation also disconnects the camera. + +### Quagga.onProcessed(callback) + +This method registers a `callback(data)` function that is called for each frame +after the processing is done. The `data` object contains detailed information +about the success/failure of the operation. The output varies, depending whether +the detection and/or decoding were successful or not. + +### Quagga.onDetected(callback) + +Registers a `callback(data)` function which is triggered whenever a barcode- +pattern has been located and decoded successfully. The passed `data` object +contains information about the decoding process including the detected code +which can be obtained by calling `data.codeResult.code`. + +### Quagga.decodeSingle(config, callback) + +In contrast to the calls described above, this method does not rely on +`getUserMedia` and operates on a single image instead. The provided callback +is the same as in `onDetected` and contains the result `data` object. + +**Important**: `decodeSingle` has a built-in default of `inputStream.size: 800`. +This means images are automatically scaled to 800px on their longest side (both +larger images scaled down AND smaller images scaled up). The `box`, `boxes`, and +`line` coordinates in the result are returned in this scaled coordinate space, +not the original image dimensions. To disable scaling and use original dimensions, +set `inputStream.size` to `0`. + +### Quagga.offProcessed(handler) + +In case the `onProcessed` event is no longer relevant, `offProcessed` removes +the given `handler` from the event-queue. When no handler is passed, all handlers are removed. + +### Quagga.offDetected(handler) + +In case the `onDetected` event is no longer relevant, `offDetected` removes +the given `handler` from the event-queue. When no handler is passed, all handlers are removed. + +## The result object + +The callbacks passed into `onProcessed`, `onDetected` and `decodeSingle` +receive a `data` object upon execution. The `data` object contains the following +information. Depending on the success, some fields may be `undefined` or just +empty. + +```javascript +{ + "codeResult": { + "code": "FANAVF1461710", // the decoded code as a string + "format": "code_128", // or code_39, codabar, ean_13, ean_8, upc_a, upc_e + "start": 355, + "end": 26, + "codeset": 100, + "startInfo": { + "error": 1.0000000000000002, + "code": 104, + "start": 21, + "end": 41 + }, + "decodedCodes": [{ + "code": 104, + "start": 21, + "end": 41 + }, + // stripped for brevity + { + "error": 0.8888888888888893, + "code": 106, + "start": 328, + "end": 350 + }], + "endInfo": { + "error": 0.8888888888888893, + "code": 106, + "start": 328, + "end": 350 + }, + "direction": -1 + }, + "line": [{ + "x": 25.97278706156836, + "y": 360.5616435369468 + }, { + "x": 401.9220519377024, + "y": 70.87524989906444 + }], + "angle": -0.6565217179979483, + "pattern": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, /* ... */ 1], + "box": [ + [77.4074243622672, 410.9288668804402], + [0.050203235235130705, 310.53619724086366], + [360.15706727788256, 33.05711026051813], + [437.5142884049146, 133.44977990009465] + ], + "boxes": [ + [ + [77.4074243622672, 410.9288668804402], + [0.050203235235130705, 310.53619724086366], + [360.15706727788256, 33.05711026051813], + [437.5142884049146, 133.44977990009465] + ], + [ + [248.90769330706507, 415.2041489551161], + [198.9532321622869, 352.62160512937635], + [339.546160777576, 240.3979259789976], + [389.5006219223542, 302.98046980473737] + ] + ] +} +``` + +## CameraAccess API + +Quagga2 exposes a CameraAccess API that is available for performing some shortcut access to commonly +used camera functions. This API is available as `Quagga.CameraAccess` and is documented below. + +**[Full CameraAccess API Documentation](https://ericblade.github.io/quagga2/reference/camera-access.html)** - Detailed reference with examples, error handling, and advanced usage. + +## CameraAccess.request(HTMLVideoElement | null, MediaTrackConstraints?) + +Will attempt to initialize the camera and start playback given the specified video element. Camera +is selected by the browser based on the MediaTrackConstraints supplied. If no video element is +supplied, the camera will be initialized but invisible. This is mostly useful for probing that the +camera is available, or probing to make sure that permissions are granted by the user. +This function will return a Promise that resolves when completed, or rejects on error. + +## CameraAccess.release() + +If a video element is known to be running, this will pause the video element, then return a Promise +that when resolved will have stopped all tracks in the video element, and released all resources. + +## CameraAccess.enumerateVideoDevices(constraints?) + +This will send out a call to navigator.mediaDevices.enumerateDevices(), filter out any mediadevices +that do not have a kind of 'videoinput', and resolve the promise with an array of MediaDeviceInfo. + +Optionally, you can pass MediaTrackConstraints to filter devices. When constraints are provided, +only devices that can satisfy the given constraints will be returned. This is useful for filtering +out cameras that don't meet your requirements (e.g., eliminating wide-angle cameras). + +```javascript +// Get all video devices +const devices = await Quagga.CameraAccess.enumerateVideoDevices(); + +// Get only devices that support minimum resolution +const hdDevices = await Quagga.CameraAccess.enumerateVideoDevices({ + width: { min: 1280 }, + height: { min: 720 } +}); + +// Get only back-facing cameras +const backCameras = await Quagga.CameraAccess.enumerateVideoDevices({ + facingMode: 'environment' +}); +``` + +## CameraAccess.getActiveStreamLabel() + +Returns the label for the active video track + +## CameraAccess.getActiveTrack() + +Returns the MediaStreamTrack for the active video track + +## CameraAccess.disableTorch() + +Turns off Torch. (Camera Flash) Resolves when complete, throws on error. Does not work on iOS devices of at least version 16.4 and earlier. May or may not work on later versions. + +## CameraAccess.enableTorch() + +Turns on Torch. (Camera Flash) Resolves when complete, throws on error. Does not work on iOS devices of at least version 16.4 and earlier. May or may not work on later versions. + +## Configuration + +The configuration that ships with QuaggaJS covers the default use-cases and can +be fine-tuned for specific requirements. + +The configuration is managed by the `config` object defining the following +high-level properties: + +```javascript +{ + locate: true, + inputStream: {...}, + frequency: 10, + decoder:{...}, + locator: {...}, + debug: false, +} +``` + +### locate + +One of the main features of QuaggaJS is its ability to locate a barcode in a +given image. The `locate` property controls whether this feature is turned on +(default) or off. + +Why would someone turn this feature off? Localizing a barcode is a +computationally expensive operation and might not work properly on some +devices. Another reason would be the lack of auto-focus producing blurry +images which makes the localization feature very unstable. + +However, even if none of the above apply, there is one more case where it might +be useful to disable `locate`: If the orientation, and/or the approximate +position of the barcode is known, or if you want to guide the user through a +rectangular outline. This can increase performance and robustness at the same +time. + +### inputStream + +The `inputStream` property defines the sources of images/videos within QuaggaJS. + +```javascript +{ + name: "Live", + type: "LiveStream", + constraints: { + width: 640, + height: 480, + facingMode: "environment", + deviceId: "7832475934759384534" + }, + area: { // defines rectangle of the detection/localization area + top: "0%", // top offset + right: "0%", // right offset + left: "0%", // left offset + bottom: "0%" // bottom offset + }, + singleChannel: false, // true: only the red color-channel is read + debug: { + showImageDetails: false // logs frame grabber info and canvas size adjustments to console + } +} +``` + +First, the `type` property can be set to three different values: +`ImageStream`, `VideoStream`, or `LiveStream` (default) and should be selected +depending on the use-case. Most probably, the default value is sufficient. + +Second, the `constraint` key defines the physical dimensions of the input image +and additional properties, such as `facingMode` which sets the source of the +user's camera in case of multiple attached devices. Additionally, if required, +the `deviceId` can be set if the selection of the camera is given to the user. +This can be easily achieved via +[MediaDevices.enumerateDevices()][enumerateDevices] + +Thirdly, the `area` prop restricts the decoding area of the image. The values +are given in percentage, similar to the CSS style property when using +`position: absolute`. This `area` is also useful in cases the `locate` property +is set to `false`, defining the rectangle for the user. + +The last key `singleChannel` is only relevant in cases someone wants to debug +erroneous behavior of the decoder. If set to `true` the input image's red +color-channel is read instead of calculating the gray-scale values of the +source's RGB. This is useful in combination with the `ResultCollector` where +the gray-scale representations of the wrongly identified images are saved. + +### frequency + +This top-level property controls the scan-frequency of the video-stream. It's +optional and defines the maximum number of scans per second. This renders +useful for cases where the scan-session is long-running and resources such as +CPU power are of concern. + +Note: `frequency` specifies a maximum, not an absolute rate. If the system +cannot achieve the requested frequency due to CPU limitations, decoding +complexity, or other factors, scans will occur as fast as the system allows. +For example, if you set `frequency: 10` but your system can only process 8 +scans per second, you will get approximately 8 scans per second. + +### decoder + +QuaggaJS usually runs in a two-stage manner (`locate` is set to `true`) where, +after the barcode is located, the decoding process starts. Decoding is the +process of converting the bars into their true meaning. Most of the configuration +options within the `decoder` are for debugging/visualization purposes only. + +```javascript +{ + readers: [ + 'code_128_reader' + ], + debug: { + drawBoundingBox: false, + showFrequency: false, + drawScanline: false, + showPattern: false, + printReaderInfo: false // logs reader registration and initialization to console + } + multiple: false +} +``` + +The most important property is `readers` which takes an array of types of +barcodes which should be decoded during the session. Possible values are: + +- code_128_reader (default) +- ean_reader +- ean_8_reader +- code_39_reader +- code_39_vin_reader +- codabar_reader +- upc_reader +- upc_e_reader +- i2of5_reader +- 2of5_reader +- code_93_reader +- code_32_reader +- pharmacode_reader + +Why are not all types activated by default? Simply because one should +explicitly define the set of barcodes for their use-case. More decoders means +more possible clashes, or false-positives. One should take care of the order +the readers are given, since some might return a value even though it is not +the correct type (EAN-13 vs. UPC-A). + +#### Reader Priority and Order + +**Readers are processed in the exact order they appear in the `readers` array.** +The first reader to successfully decode the barcode wins. This allows you to +prioritize certain formats over others when multiple formats might match the +same barcode pattern. + +For example, if you know most of your barcodes are EAN-13, place `ean_reader` +first to ensure it attempts to decode before other readers: + +```javascript +decoder: { + readers: ['ean_reader', 'upc_reader', 'upc_e_reader'] // EAN-13 checked first +} +``` + +This is particularly important when dealing with barcode formats that share +similar patterns (like EAN-13 and UPC-A/UPC-E), where incorrect matches might +occur if the wrong reader attempts to decode first. + +The `multiple` property tells the decoder if it should continue decoding after +finding a valid barcode. If multiple is set to `true`, the results will be +returned as an array of result objects. Each object in the array will have a +`box`, and may have a `codeResult` depending on the success of decoding the +individual box. + +The remaining properties `drawBoundingBox`, `showFrequency`, `drawScanline` and +`showPattern` are mostly of interest during debugging and visualization. + +#### Enabling extended EAN + +The default setting for `ean_reader` is not capable of reading extensions such +as [EAN-2](https://en.wikipedia.org/wiki/EAN_2) or +[EAN-5](https://en.wikipedia.org/wiki/EAN_5). In order to activate those +supplements you have to provide them in the configuration as followed: + +```javascript +decoder: { + readers: [{ + format: "ean_reader", + config: { + supplements: [ + 'ean_5_reader', 'ean_2_reader' + ] + } + }] +} +``` + +Beware that the order of the `supplements` matters in such that the reader stops +decoding when the first supplement was found. So if you are interested in EAN-2 +and EAN-5 extensions, use the order depicted above. + +It's important to mention that, if supplements are supplied, regular EAN-13 +codes cannot be read any more with the same reader. If you want to read EAN-13 +with and without extensions you have to add another `ean_reader` reader to the +configuration. + +### locator + +The `locator` config is only relevant if the `locate` flag is set to `true`. +It controls the behavior of the localization-process and needs to be adjusted +for each specific use-case. The default settings are simply a combination of +values which worked best during development. + +Only two properties are relevant for the use in Quagga (`halfSample` and +`patchSize`) whereas the rest is only needed for development and debugging. + +```javascript +{ + halfSample: true, + patchSize: "medium", // x-small, small, medium, large, x-large + debug: { + showCanvas: false, + showPatches: false, + showFoundPatches: false, + showSkeleton: false, + showLabels: false, + showPatchLabels: false, + showRemainingPatchLabels: false, + showPatchSize: false, // logs calculated patch size to console + showImageDetails: false, // logs image wrapper size and canvas details to console + boxFromPatches: { + showTransformed: false, + showTransformedBox: false, + showBB: false + } + } +} +``` + +The `halfSample` flag tells the locator-process whether it should operate on an +image scaled down (half width/height, quarter pixel-count ) or not. Turning +`halfSample` on reduces the processing-time significantly and also helps +finding a barcode pattern due to implicit smoothing. +It should be turned off in cases where the barcode is really small and the full +resolution is needed to find the position. It's recommended to keep it turned +on and use a higher resolution video-image if needed. + +The second property `patchSize` defines the density of the search-grid. The +property accepts strings of the value `x-small`, `small`, `medium`, `large` and +`x-large`. The `patchSize` is proportional to the size of the scanned barcodes. +If you have really large barcodes which can be read close-up, then the use of +`large` or `x-large` is recommended. In cases where the barcode is further away +from the camera lens (lack of auto-focus, or small barcodes) then it's advised +to set the size to `small` or even `x-small`. For the latter it's also +recommended to crank up the resolution in order to find a barcode. + +## Examples + +The following example takes an image `src` as input and prints the result on the +console. The decoder is configured to detect *Code128* barcodes and enables the +locating-mechanism for more robust results. + +```javascript +Quagga.decodeSingle({ + decoder: { + readers: ["code_128_reader"] // List of active readers + }, + locate: true, // try to locate the barcode in the image + src: '/test/fixtures/code_128/image-001.jpg' // or 'data:image/jpg;base64,' + data + // Note: inputStream.size defaults to 800; images are scaled to 800px (up or down). +}, function(result){ + if(result.codeResult) { + console.log("result", result.codeResult.code); + } else { + console.log("not detected"); + } +}); +``` + +### Using node + +The following example illustrates the use of QuaggaJS within a node +environment. It's almost identical to the browser version with the difference +that node does not support web-workers out of the box. Therefore the config +property `numOfWorkers` must be explicitly set to `0`. + +```javascript +var Quagga = require('quagga').default; + +Quagga.decodeSingle({ + src: "image-abc-123.jpg", + numOfWorkers: 0, // Needs to be 0 when used within node + inputStream: { + size: 800 // This is the default; shown explicitly for clarity + }, + decoder: { + readers: ["code_128_reader"] // List of active readers + }, +}, function(result) { + if(result.codeResult) { + console.log("result", result.codeResult.code); + } else { + console.log("not detected"); + } +}); +``` + +## Tips & Tricks + +A growing collection of tips & tricks to improve the various aspects of Quagga. + +### Working with Cordova / PhoneGap? + +If you're having issues getting a mobile device to run Quagga using Cordova, you might try the code +here: [Original Repo Issue #94 Comment][issue-94-comment] + +```javascript +let permissions = cordova.plugins.permissions; permissions.checkPermission(permissions.CAMERA, +(res) => { if (!res.hasPermission) { permissions.requestPermission(permissions.CAMERA, open()); +``` + +Thanks, @chrisrodriguezmbww ! + +### Barcodes too small? + +Barcodes too far away from the camera, or a lens too close to the object +result in poor recognition rates and Quagga might respond with a lot of +false-positives. + +Starting in Chrome 59 you can now make use of `capabilities` and directly +control the zoom of the camera. Head over to the +[web-cam demo](https://ericblade.github.io/quagga2/examples/live_w_locator.html) +and check out the __Zoom__ feature. + +You can read more about those `capabilities` in +[Let's light a torch and explore MediaStreamTrack's capabilities](https://www.oberhofer.co/mediastreamtrack-and-its-capabilities) + +### Video too dark? + +Dark environments usually result in noisy images and therefore mess with the +recognition logic. + +Since Chrome 59 you can turn on/off the __Torch__ of your device and vastly +improve the quality of the images. Head over to the +[web-cam demo](https://ericblade.github.io/quagga2/examples/live_w_locator.html) +and check out the __Torch__ feature. + +To find out more about this feature [read on](https://www.oberhofer.co/mediastreamtrack-and-its-capabilities). + +### Handling false positives + +Most readers provide an error object that describes the confidence of the reader in it's accuracy. There are strategies you can implement in your application to improve what your application accepts as acceptable input from the barcode scanner, [in this thread](https://github.com/serratus/quaggaJS/issues/237). + +If you choose to explore check-digit validation, you might find [barcode-validator](https://github.com/ericblade/barcode-validator) a useful library. + +## Tests + +Tests are performed with [Cypress][cypressUrl] for browser testing, and [Mocha][mochaUrl], [Chai][chaiUrl], and [SinonJS][sinonUrl] for Node.JS testing. (note that Cypress also uses Mocha, Chai, and Sinon, so tests that are not browser specific can be run virtually identically in node without duplication of code) + +Coverage reports are generated in the coverage/ folder. + +```console +> npm install +> npm run test +``` + +Using Docker: + +```console +> docker build --tag quagga2/build . +> docker run -v $(pwd):/quagga2 npm install +> docker run -v $(pwd):/quagga2 npm run test +``` + +or using docker-compose: + +```console +> docker-compose run nodejs npm install +> docker-compose run nodejs npm run test +``` + +We prefer that Unit tests be located near the unit being tested -- the src/quagga/transform module, for example, has it's test suite located at src/quagga/test/transform.spec.ts. Likewise, src/locator/barcode_locator test is located at src/locator/test/barcode_locator.spec.ts . + +If you have browser or node specific tests, that must be written differently per platform, or do not apply to one platform, then you may add them to src/{filelocation}/test/browser or .../test/node. See also src/analytics/test/browser/result_collector.spec.ts, which contains browser specific code. + +If you add a new test file, you should also make sure to import it in either cypress/integration/browser.spec.ts, for browser-specific tests, or cypress/integration/universal.spec.ts, for tests that can be run both in node and in browser. Node.JS testing is performed using the power of file globbing, and will pick up your tests, so long as they conform to the existing test file directory and name patterns. + +## Image Debugging + +In case you want to take a deeper dive into the inner workings of Quagga, get to +know the *debugging* capabilities of the current implementation. The various +flags exposed through the `config` object give you the ability to visualize +almost every step in the processing. Because of the introduction of the +web-workers, and their restriction not to have access to the DOM, the +configuration must be explicitly set to `config.numOfWorkers = 0` in order to +work. + +## ResultCollector + +Quagga is not perfect by any means and may produce false positives from time +to time. In order to find out which images produced those false positives, +the built-in ``ResultCollector`` will support you and me helping squashing +bugs in the implementation. + +### Creating a ``ResultCollector`` + +You can easily create a new ``ResultCollector`` by calling its ``create`` +method with a configuration. + +```javascript +var resultCollector = Quagga.ResultCollector.create({ + capture: true, // keep track of the image producing this result + capacity: 20, // maximum number of results to store + blacklist: [ // list containing codes which should not be recorded + {code: "3574660239843", format: "ean_13"}], + filter: function(codeResult) { + // only store results which match this constraint + // returns true/false + // e.g.: return codeResult.format === "ean_13"; + return true; + } +}); +``` + +### Using a ``ResultCollector`` + +After creating a ``ResultCollector`` you have to attach it to Quagga by +calling ``Quagga.registerResultCollector(resultCollector)``. + +### Reading results + +After a test/recording session, you can now print the collected results which +do not fit into a certain schema. Calling ``getResults`` on the +``resultCollector`` returns an ``Array`` containing objects with: + +```javascript +{ + codeResult: {}, // same as in onDetected event + frame: "data:image/png;base64,iVBOR..." // dataURL of the gray-scaled image +} +``` + +The ``frame`` property is an internal representation of the image and +therefore only available in gray-scale. The dataURL representation allows +easy saving/rendering of the image. + +### Comparing results + +Now, having the frames available on disk, you can load each single image by +calling ``decodeSingle`` with the same configuration as used during recording +. In order to reproduce the exact same result, you have to make sure to turn +on the ``singleChannel`` flag in the configuration when using ``decodeSingle``. + +[zxing_github]: https://github.com/zxing/zxing +[teaser_left]: https://raw.githubusercontent.com/serratus/quaggaJS/master/doc/img/mobile-located.png +[teaser_right]: https://raw.githubusercontent.com/serratus/quaggaJS/master/doc/img/mobile-detected.png +[caniuse_getusermedia]: http://caniuse.com/#feat=stream +[cypressUrl]: https://www.cypress.io/ +[sinonUrl]: http://sinonjs.org/ +[chaiUrl]: http://chaijs.com/ +[mochaUrl]: https://github.com/mochajs/mocha +[code39_wiki]: http://en.wikipedia.org/wiki/Code_39 +[codabar_wiki]: http://en.wikipedia.org/wiki/Codabar +[upc_wiki]: http://en.wikipedia.org/wiki/Universal_Product_Code +[ean_8_wiki]: http://en.wikipedia.org/wiki/EAN-8 +[oberhofer_co_how]: http://www.oberhofer.co/how-barcode-localization-works-in-quaggajs/ +[github_examples]: https://ericblade.github.io/quagga2/examples +[i2of5_wiki]: https://en.wikipedia.org/wiki/Interleaved_2_of_5 +[enumerateDevices]: https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/enumerateDevices +[reactExample]: https://github.com/ericblade/quagga2-react-example +[issue-94-comment]: https://github.com/serratus/quaggajs/issues/94#issuecomment-571478711 +#### Sequence Mode + +Quagga2 supports loading a sequence of images for batch processing using the `inputStream.sequence` option. When enabled, Quagga will attempt to load images named in the pattern `image-001.jpg`, `image-002.jpg`, etc., from the specified directory. + +**Example:** +```javascript +Quagga.init({ + inputStream: { + type: 'ImageStream', + sequence: true, + size: 3, // Number of images to load + offset: 1, // Starting index (optional) + src: '/path/to/images/', // Base path for images + }, + decoder: { readers: ['code_128_reader'] } +}); +``` + +This will load `/path/to/images/image-001.jpg`, `/path/to/images/image-002.jpg`, `/path/to/images/image-003.jpg` for processing. + +Sequence mode is useful for batch testing or processing multiple images with predictable filenames. diff --git a/quagga2/quagga2-1.12.1/configs/env/development.js b/quagga2/quagga2-1.12.1/configs/env/development.js new file mode 100644 index 0000000..86b0340 --- /dev/null +++ b/quagga2/quagga2-1.12.1/configs/env/development.js @@ -0,0 +1,5 @@ +module.exports = { + production: false, + development: true, + node: false, +}; diff --git a/quagga2/quagga2-1.12.1/configs/env/node.js b/quagga2/quagga2-1.12.1/configs/env/node.js new file mode 100644 index 0000000..ded933c --- /dev/null +++ b/quagga2/quagga2-1.12.1/configs/env/node.js @@ -0,0 +1,5 @@ +module.exports = { + production: true, + development: false, + node: true, +}; diff --git a/quagga2/quagga2-1.12.1/configs/env/production.js b/quagga2/quagga2-1.12.1/configs/env/production.js new file mode 100644 index 0000000..39f8fa5 --- /dev/null +++ b/quagga2/quagga2-1.12.1/configs/env/production.js @@ -0,0 +1,5 @@ +module.exports = { + production: true, + development: false, + node: false, +}; diff --git a/quagga2/quagga2-1.12.1/configs/webpack.config.js b/quagga2/quagga2-1.12.1/configs/webpack.config.js new file mode 100644 index 0000000..107ca48 --- /dev/null +++ b/quagga2/quagga2-1.12.1/configs/webpack.config.js @@ -0,0 +1,78 @@ +var webpack = require('webpack'), + path = require('path'); + +module.exports = { + entry: [ + './src/quagga.js', + ], + devtool: 'inline-source-map', + module: { + rules: [ + { + test: /\.js$/, + include: [ + path.resolve('./node_modules/sinon'), + path.resolve('./node_modules/@sinonjs') + ], + loader: 'babel-loader', + options: { + presets: [ + ['@babel/preset-env', { + targets: { browsers: ['last 2 versions'] } + }] + ], + plugins: [ + '@babel/plugin-proposal-optional-chaining', + '@babel/plugin-proposal-nullish-coalescing-operator' + ] + } + }, + { + test: /\.(t|j)sx?$/, + exclude: /node_modules/, + use: { loader: 'babel-loader' }, + }, + { + enforce: 'pre', + test: /\.(t|j)sx?$/, + exclude: /node_modules/, + loader: 'source-map-loader', + }, + ], + }, + resolve: { + extensions: ['.ts', '.tsx', '.js', '.jsx'], + modules: [ + path.resolve('./src'), + 'node_modules', + ], + }, + node: { + fs: 'empty', + }, + output: { + path: __dirname + '/../dist', + publicPath: '/', + libraryTarget: 'umd', + libraryExport: 'default', + library: 'Quagga', + filename: 'quagga.js', + }, + devServer: { + contentBase: './', + hot: true, + }, + plugins: [ + new webpack.DefinePlugin({ + ENV: require(path.join(__dirname, './env/', process.env.BUILD_ENV)), + }), + new webpack.NormalModuleReplacementPlugin(/..\/input\/frame_grabber/, '../input/frame_grabber_browser.js'), + new webpack.NormalModuleReplacementPlugin(/input_stream[/\\]input_stream$/, (resource) => { + resource.request = resource.request.replace(/input_stream$/, 'input_stream_browser'); + }), + ], + optimization: { + minimize: false, + }, + mode: 'production', +}; diff --git a/quagga2/quagga2-1.12.1/configs/webpack.config.min.js b/quagga2/quagga2-1.12.1/configs/webpack.config.min.js new file mode 100644 index 0000000..627adca --- /dev/null +++ b/quagga2/quagga2-1.12.1/configs/webpack.config.min.js @@ -0,0 +1,15 @@ +var webpack = require('webpack'); +module.exports = require('./webpack.config.js'); + +module.exports.plugins = module.exports.plugins.concat([ + new webpack.LoaderOptionsPlugin({ + minimize: true, + debug: false, + }), +]); + +module.exports.optimization.minimize = true; +module.exports.output.filename = 'quagga.min.js'; + +module.exports.output.sourceMapFilename = ''; +module.exports.devtool = false; diff --git a/quagga2/quagga2-1.12.1/configs/webpack.node.config.js b/quagga2/quagga2-1.12.1/configs/webpack.node.config.js new file mode 100644 index 0000000..e47f6f4 --- /dev/null +++ b/quagga2/quagga2-1.12.1/configs/webpack.node.config.js @@ -0,0 +1,36 @@ +var webpack = require('webpack'), + path = require('path'); + +const baseConfig = require('./webpack.config.js'); + +module.exports = { + ...baseConfig, + externals: [ + 'fs', + 'http', + 'https', + 'url', + 'sharp', + 'ndarray-pixels', + ], +}; +module.exports.target = 'node'; +module.exports.resolve = { + ...module.exports.resolve, + // Prefer Node builds of packages (e.g., ndarray-pixels) instead of browser entries + mainFields: ['main', 'module'], + alias: { + // Force ndarray-pixels to resolve to its Node build; webpack 4 lacks conditionNames support + 'ndarray-pixels$': 'ndarray-pixels/dist/ndarray-pixels-node.cjs', + }, +}; +module.exports.output.libraryTarget = 'commonjs'; +module.exports.output.library = undefined; +module.exports.plugins = [ + new webpack.DefinePlugin({ + ENV: require(path.join(__dirname, './env/', process.env.BUILD_ENV)), + }), +]; +module.exports.devtool = undefined; +module.exports.output.path = __dirname + '/../lib'; +module.exports.output.filename = 'quagga.js'; diff --git a/quagga2/quagga2-1.12.1/cypress.config.ts b/quagga2/quagga2-1.12.1/cypress.config.ts new file mode 100644 index 0000000..ab81718 --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress.config.ts @@ -0,0 +1,14 @@ +import { defineConfig } from 'cypress' + +export default defineConfig({ + video: false, + screenshotOnRunFailure: false, + trashAssetsBeforeRuns: true, + e2e: { + // We've imported your old cypress plugins here. + // You may want to clean this up later by importing these. + setupNodeEvents(on, config) { + return require('./cypress/plugins/index.js')(on, config) + }, + }, +}) diff --git a/quagga2/quagga2-1.12.1/cypress/e2e/browser-bundle.cy.ts b/quagga2/quagga2-1.12.1/cypress/e2e/browser-bundle.cy.ts new file mode 100644 index 0000000..cdf4c5c --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/e2e/browser-bundle.cy.ts @@ -0,0 +1,62 @@ +// Test that the browser bundle (dist/quagga.min.js) works correctly with decodeSingle +// This validates that the built bundle can decode images in a browser context + +/// + +describe('Browser Bundle - decodeSingle', () => { + before(() => { + // Create a minimal test HTML file + const html = ` + + + + + Bundle Test + + + + +`; + cy.writeFile('cypress/fixtures/bundle-test.html', html); + }); + + after(() => { + // Clean up the temporary file even if test passes + cy.task('cleanupBundleFixture'); + }); + + beforeEach(() => { + cy.visit('/cypress/fixtures/bundle-test.html'); + }); + + it('should decode a Code 128 barcode from dist/quagga.min.js', () => { + cy.window().should('have.property', 'Quagga'); + + cy.window().then((win) => { + return new Cypress.Promise((resolve, reject) => { + // Use a fixture image path relative to the server root + const imagePath = '/test/fixtures/code_128/image-001.jpg'; + + win.Quagga.decodeSingle({ + src: imagePath, + numOfWorkers: 0, + inputStream: { + size: 800 + }, + decoder: { + readers: ['code_128_reader'] + }, + }, (result: any) => { + if (result && result.codeResult) { + cy.log('Decoded:', result.codeResult.code); + expect(result.codeResult.code).to.be.a('string'); + expect(result.codeResult.code.length).to.be.greaterThan(0); + resolve(result); + } else { + reject(new Error('Failed to decode barcode')); + } + }); + }); + }); + }); +}); diff --git a/quagga2/quagga2-1.12.1/cypress/e2e/browser.cy.ts b/quagga2/quagga2-1.12.1/cypress/e2e/browser.cy.ts new file mode 100644 index 0000000..33c31d7 --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/e2e/browser.cy.ts @@ -0,0 +1,11 @@ +window.ENV = { development: true, production: false, node: false }; + +import '../../src/analytics/test/browser/result_collector.spec.ts'; +import '../../src/input/test/browser/camera_access.spec.ts'; +import '../../src/input/test/browser/exif_helper.spec'; +import '../../src/input/test/browser/image_loader.spec.ts'; +import '../../src/input/test/browser/data_uri.spec.ts'; +import '../../src/common/test/browser/mediaDevices.spec.ts'; +import '../../src/input/test/browser/frame_grabber_halfsample.spec.ts'; +import '../../src/quagga/test/browser/pause_start.spec.ts'; +import '../../src/quagga/test/browser/initCanvas.spec.ts'; diff --git a/quagga2/quagga2-1.12.1/cypress/e2e/examples.cy.ts b/quagga2/quagga2-1.12.1/cypress/e2e/examples.cy.ts new file mode 100644 index 0000000..eb8afa5 --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/e2e/examples.cy.ts @@ -0,0 +1,156 @@ +// E2E tests for example pages +describe('Example Pages E2E', () => { + describe('live_w_locator.html', () => { + beforeEach(() => { + cy.visit('http://localhost:8080/live_w_locator.html'); + }); + + afterEach(() => { + cy.window().then((win: any) => { + if (win.Quagga && win.Quagga.stop) { + const stopPromise = win.Quagga.stop(); + if (stopPromise && typeof stopPromise.then === 'function') { + return cy.wrap(stopPromise); + } + } + }); + }); + + after(() => { + cy.window().then((win: any) => { + if (win.Quagga && win.Quagga.stop) { + const stopPromise = win.Quagga.stop(); + if (stopPromise && typeof stopPromise.then === 'function') { + return cy.wrap(stopPromise); + } + } + }); + }); + + it('should load the page successfully', () => { + cy.contains('h1', 'QuaggaJS').should('be.visible'); + }); + + it('should have a camera dropdown', () => { + cy.get('select#deviceSelection').should('exist'); + }); + + it('should have a locate checkbox', () => { + cy.get('input[name="locate"]').should('exist'); + }); + + it('should have canvas elements', () => { + // Canvas is created by Quagga inside #interactive div + cy.get('#interactive').should('exist'); + }); + + it('should have Quagga available on window', () => { + cy.window().its('Quagga').should('exist'); + }); + + it('should toggle locate checkbox', () => { + cy.get('input[name="locate"]').uncheck().should('not.be.checked'); + cy.get('input[name="locate"]').check().should('be.checked'); + }); + + it('should populate camera dropdown with devices', () => { + // Wait for devices to be enumerated and dropdown populated + cy.get('select#deviceSelection option', { timeout: 10000 }) + .should('have.length.at.least', 1); + }); + + + it('provides scanning area box when locate=false', () => { + // Wait for Quagga to be initialized and processing frames before toggling locate + cy.window().then((win: any) => { + expect(win.Quagga).to.exist; + return new Cypress.Promise((resolve) => { + const timeout = setTimeout(() => resolve(null), 1500); + win.Quagga.onProcessed(() => { + clearTimeout(timeout); + resolve(null); + }); + }); + }); + + // Now toggle locate off and wait for reinit + cy.get('input[name="locate"]').uncheck().should('not.be.checked').trigger('change'); + cy.wait(400); // Allow time for debounced reinit (250ms) + init completion + + cy.window().then((win: any) => { + expect(win.Quagga).to.exist; + expect(win.Quagga.onProcessed).to.be.a('function'); + + const p = new Cypress.Promise((resolve) => { + const timeout = setTimeout(() => resolve(null), 2000); + + win.Quagga.onProcessed(function (result: any) { + if (result && (result.box || (result.boxes && result.boxes.length > 0))) { + clearTimeout(timeout); + resolve(result); + } + }); + }); + return cy.wrap(p, { timeout: 3000 }); + }).then((result: any) => { + expect(result, 'Should receive result with box or boxes').to.exist; + // When locate=false, should have either result.box or result.boxes + const hasBox = result.box && Array.isArray(result.box) && result.box.length === 4; + const hasBoxes = result.boxes && Array.isArray(result.boxes) && result.boxes.length > 0; + expect(hasBox || hasBoxes, 'Should have either result.box or result.boxes with scanning area').to.be.true; + }); + }); + + it('continues processing frames after resolution change', () => { + // Select a different resolution option dynamically (choose last option if available) + cy.contains('label', 'Resolution (width)') + .find('select[name="input-stream_constraints"]').then($sel => { + const current = ($sel[0] as HTMLSelectElement).value; + const options = Array.from(($sel[0] as HTMLSelectElement).options).map(o => o.value); + const alt = options.reverse().find(v => v !== current) || current; + cy.wrap($sel).select(alt); + }); + // Verify frames continue after resolution change + cy.window().then((win: any) => { + expect(win.Quagga).to.exist; + expect(win.Quagga.onProcessed).to.be.a('function'); + let count = 0; + const p = new Cypress.Promise((resolve) => { + const timeout = setTimeout(() => resolve(null), 3000); + win.Quagga.onProcessed(() => { + count++; + if (count >= 3) { + clearTimeout(timeout); + resolve(null); + } + }); + }); + return cy.wrap(p, { timeout: 3500 }).then(() => { + expect(count).to.be.greaterThan(0); + }); + }); + }); + + it('continues processing frames after patch size change', () => { + cy.contains('label', 'Patch-Size') + .find('select[name="locator_patch-size"]').select('large'); + cy.window().then((win: any) => { + expect(win.Quagga).to.exist; + expect(win.Quagga.onProcessed).to.be.a('function'); + let count = 0; + const p = new Cypress.Promise((resolve) => { + win.Quagga.onProcessed(() => { count++; if (count >= 3) resolve(null); }); + }); + return cy.wrap(p, { timeout: 3000 }).then(() => { + expect(count).to.be.greaterThan(0); + }); + }); + }); + + it('hides zoom and torch controls when unsupported', () => { + // Labels wrap the inputs and are set to display:none when capability missing + cy.get('label:has(select[name="settings_zoom"])').should('have.css', 'display', 'none'); + cy.get('label:has(input[name="settings_torch"])').should('have.css', 'display', 'none'); + }); + }); +}); diff --git a/quagga2/quagga2-1.12.1/cypress/e2e/integration.cy.ts b/quagga2/quagga2-1.12.1/cypress/e2e/integration.cy.ts new file mode 100644 index 0000000..c57fffa --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/e2e/integration.cy.ts @@ -0,0 +1,22 @@ +window.ENV = { development: true, production: false, node: false }; + +// Integration tests that aren't specific decoders +import '../../test/integration/external-reader.spec.ts'; +import '../../test/integration/integration.spec.ts'; +import '../../test/integration/reader-order.spec.ts'; + +// Decoders +import '../../test/integration/decoders/2of5.spec.ts'; +import '../../test/integration/decoders/codabar.spec.ts'; +import '../../test/integration/decoders/code_128.spec.ts'; +import '../../test/integration/decoders/code_32.spec.ts'; +import '../../test/integration/decoders/code_39_vin.spec.ts'; +import '../../test/integration/decoders/code_39.spec.ts'; +import '../../test/integration/decoders/code_93.spec.ts'; +import '../../test/integration/decoders/ean_8.spec.ts'; +import '../../test/integration/decoders/ean_extended.spec.ts'; +import '../../test/integration/decoders/ean_supplement_format.spec.ts'; +import '../../test/integration/decoders/ean.spec.ts'; +import '../../test/integration/decoders/i2of5.spec.ts'; +import '../../test/integration/decoders/upc_e.spec.ts'; +import '../../test/integration/decoders/upc.spec.ts'; diff --git a/quagga2/quagga2-1.12.1/cypress/e2e/integration/decoder/pharmacode.cy.ts b/quagga2/quagga2-1.12.1/cypress/e2e/integration/decoder/pharmacode.cy.ts new file mode 100644 index 0000000..33c92c1 --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/e2e/integration/decoder/pharmacode.cy.ts @@ -0,0 +1 @@ +import '../../../../test/integration/decoders/pharmacode.spec.ts'; diff --git a/quagga2/quagga2-1.12.1/cypress/e2e/universal.cy.ts b/quagga2/quagga2-1.12.1/cypress/e2e/universal.cy.ts new file mode 100644 index 0000000..884395a --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/e2e/universal.cy.ts @@ -0,0 +1,18 @@ +window.ENV = { development: true, production: false, node: false }; + +import '../../src/common/test/array_helper.spec.ts'; +import '../../src/common/test/area_overlay.spec.ts'; +import '../../src/common/test/cv_utils.spec'; +import '../../src/common/test/events.spec.ts'; +import '../../src/locator/test/barcode_locator.spec.ts'; +import '../../src/locator/test/skeletonizer.spec.ts'; +import '../../src/quagga/test/transform.spec.ts'; +// Tests for Exception class (toJSON serialization) +import '../../src/quagga/test/Exception.spec.ts'; +// Tests for Quagga class (transformResult method) +import '../../src/quagga/test/quagga.spec.ts'; +// Tests for drawScannerArea method +import '../../src/quagga/test/drawScannerArea.spec.ts'; +import '../../src/common/test/image_wrapper.spec.ts'; +// Tests for QuaggaJSStaticInterface (init method) +import '../../src/test/quagga.spec.ts'; diff --git a/quagga2/quagga2-1.12.1/cypress/plugins/index.js b/quagga2/quagga2-1.12.1/cypress/plugins/index.js new file mode 100644 index 0000000..8e9d91c --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/plugins/index.js @@ -0,0 +1,82 @@ +/// +// *********************************************************** +// This example plugins/index.js can be used to load plugins +// +// You can change the location of this file or turn off loading +// the plugins file with the 'pluginsFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/plugins-guide +// *********************************************************** + +// This function is called when a project is opened or re-opened (e.g. due to +// the project's config changing) + +/** + * @type {Cypress.PluginConfig} +*/ +const webpack = require('@cypress/webpack-preprocessor'); +const fs = require('fs'); +const path = require('path'); + +module.exports = (on, config) => { + config.env = config.env || {}; + config.env.BUILD_ENV = 'production'; + // Resolve path to the temporary bundle test fixture + const bundleFixturePath = path.resolve((config.projectRoot || process.cwd()), 'cypress/fixtures/bundle-test.html'); + + // Expose cleanup tasks to the Cypress runner + on('task', { + deleteFile(filePath) { + try { + if (fs.existsSync(filePath)) { + fs.unlinkSync(filePath); + } + return true; + } catch (err) { + // ENOENT is fine; any other error bubble up for visibility + if (err && err.code === 'ENOENT') return true; + throw err; + } + }, + cleanupBundleFixture() { + try { + if (fs.existsSync(bundleFixturePath)) { + fs.unlinkSync(bundleFixturePath); + } + } catch (_) { + // Ignore errors during cleanup + } + return true; + }, + fileExists(filePath) { + return fs.existsSync(filePath); + }, + }); + + // Best-effort cleanup on process exit/interrupt, guarded to avoid duplicate handlers + if (!global.__bundleCleanupHandlersRegistered) { + const safeUnlink = () => { + try { + if (fs.existsSync(bundleFixturePath)) { + fs.unlinkSync(bundleFixturePath); + } + } catch (_) {} + }; + process.on('exit', safeUnlink); + process.on('SIGINT', () => { safeUnlink(); process.exit(1); }); + process.on('SIGTERM', () => { safeUnlink(); process.exit(1);}); + global.__bundleCleanupHandlersRegistered = true; + } + + if (process.env.NODE_ENV === 'test' || process.env.NODE_ENV === 'development') { + const webpackOptions = { + webpackOptions: require('../../configs/webpack.config'), + watchOptions: {}, + }; + on('file:preprocessor', webpack(webpackOptions)); + } + + // on('file:preprocessor', require('@cypress/code-coverage/use-babelrc')); + return config; +}; diff --git a/quagga2/quagga2-1.12.1/cypress/support/commands.js b/quagga2/quagga2-1.12.1/cypress/support/commands.js new file mode 100644 index 0000000..ca4d256 --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/support/commands.js @@ -0,0 +1,25 @@ +// *********************************************** +// This example commands.js shows you how to +// create various custom commands and overwrite +// existing commands. +// +// For more comprehensive examples of custom +// commands please read more here: +// https://on.cypress.io/custom-commands +// *********************************************** +// +// +// -- This is a parent command -- +// Cypress.Commands.add("login", (email, password) => { ... }) +// +// +// -- This is a child command -- +// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... }) +// +// +// -- This is a dual command -- +// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... }) +// +// +// -- This will overwrite an existing command -- +// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... }) diff --git a/quagga2/quagga2-1.12.1/cypress/support/e2e.js b/quagga2/quagga2-1.12.1/cypress/support/e2e.js new file mode 100644 index 0000000..30f9cce --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/support/e2e.js @@ -0,0 +1,21 @@ +// *********************************************************** +// This example support/index.js is processed and +// loaded automatically before your test files. +// +// This is a great place to put global configuration and +// behavior that modifies Cypress. +// +// You can change the location of this file or turn off +// automatically serving support files with the +// 'supportFile' configuration option. +// +// You can read more here: +// https://on.cypress.io/configuration +// *********************************************************** + +// Import commands.js using ES2015 syntax: +import './commands'; +import '@cypress/code-coverage/support'; + +// Alternatively you can use CommonJS syntax: +// require('./commands') diff --git a/quagga2/quagga2-1.12.1/cypress/tsconfig.json b/quagga2/quagga2-1.12.1/cypress/tsconfig.json new file mode 100644 index 0000000..7b5db23 --- /dev/null +++ b/quagga2/quagga2-1.12.1/cypress/tsconfig.json @@ -0,0 +1,6 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "types": ["cypress"] + } +} diff --git a/quagga2/quagga2-1.12.1/doc/img/bb-binary.png b/quagga2/quagga2-1.12.1/doc/img/bb-binary.png new file mode 100644 index 0000000..d42128a Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/bb-binary.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/bb-rotated.png b/quagga2/quagga2-1.12.1/doc/img/bb-rotated.png new file mode 100644 index 0000000..00e96f8 Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/bb-rotated.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/binary.png b/quagga2/quagga2-1.12.1/doc/img/binary.png new file mode 100644 index 0000000..582f5f2 Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/binary.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/component-labeling-line.png b/quagga2/quagga2-1.12.1/doc/img/component-labeling-line.png new file mode 100644 index 0000000..4468065 Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/component-labeling-line.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/component-labeling-text.png b/quagga2/quagga2-1.12.1/doc/img/component-labeling-text.png new file mode 100644 index 0000000..c9a17ec Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/component-labeling-text.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/component-labeling.png b/quagga2/quagga2-1.12.1/doc/img/component-labeling.png new file mode 100644 index 0000000..2e8621d Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/component-labeling.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/connected-patch-labels.png b/quagga2/quagga2-1.12.1/doc/img/connected-patch-labels.png new file mode 100644 index 0000000..ba9e081 Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/connected-patch-labels.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/mobile-detected.png b/quagga2/quagga2-1.12.1/doc/img/mobile-detected.png new file mode 100644 index 0000000..b603d50 Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/mobile-detected.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/mobile-located.png b/quagga2/quagga2-1.12.1/doc/img/mobile-located.png new file mode 100644 index 0000000..b75a8df Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/mobile-located.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/patches_found.png b/quagga2/quagga2-1.12.1/doc/img/patches_found.png new file mode 100644 index 0000000..d475732 Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/patches_found.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/quaggaJS-code128.png b/quagga2/quagga2-1.12.1/doc/img/quaggaJS-code128.png new file mode 100644 index 0000000..1089e61 Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/quaggaJS-code128.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/remaining-patch-labels.png b/quagga2/quagga2-1.12.1/doc/img/remaining-patch-labels.png new file mode 100644 index 0000000..d0450d2 Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/remaining-patch-labels.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/skeleton.png b/quagga2/quagga2-1.12.1/doc/img/skeleton.png new file mode 100644 index 0000000..6e2af14 Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/skeleton.png differ diff --git a/quagga2/quagga2-1.12.1/doc/img/teaser.png b/quagga2/quagga2-1.12.1/doc/img/teaser.png new file mode 100644 index 0000000..9aa7c8c Binary files /dev/null and b/quagga2/quagga2-1.12.1/doc/img/teaser.png differ diff --git a/quagga2/quagga2-1.12.1/doc/profiles/skel_asm.json b/quagga2/quagga2-1.12.1/doc/profiles/skel_asm.json new file mode 100644 index 0000000..54fe750 --- /dev/null +++ b/quagga2/quagga2-1.12.1/doc/profiles/skel_asm.json @@ -0,0 +1,169207 @@ +{ + "profile": { + "libs": "[{\"start\":12779520,\"end\":13058048,\"offset\":0,\"name\":\"firefox.pdb\",\"breakpadId\":\"571BC3B51AC34A558025E8220856E78C2\",\"pdbSignature\":\"571BC3B51AC34A558025E8220856E78C\",\"pdbAge\":2,\"pdbName\":\"firefox.pdb\"},{\"start\":1999044608,\"end\":2000519168,\"offset\":0,\"name\":\"wntdll.pdb\",\"breakpadId\":\"080480471A674FFFA11D05343C7475392\",\"pdbSignature\":\"080480471A674FFFA11D05343C747539\",\"pdbAge\":2,\"pdbName\":\"wntdll.pdb\"},{\"start\":1959854080,\"end\":1961164800,\"offset\":0,\"name\":\"wkernel32.pdb\",\"breakpadId\":\"D00F7C9AE46643ED80A9EB2892F7E1051\",\"pdbSignature\":\"D00F7C9AE46643ED80A9EB2892F7E105\",\"pdbAge\":1,\"pdbName\":\"wkernel32.pdb\"},{\"start\":1990459392,\"end\":1991307264,\"offset\":0,\"name\":\"wkernelbase.pdb\",\"breakpadId\":\"AD71B4B6970B457EAAC4B4033A1DC8892\",\"pdbSignature\":\"AD71B4B6970B457EAAC4B4033A1DC889\",\"pdbAge\":2,\"pdbName\":\"wkernelbase.pdb\"},{\"start\":1740570624,\"end\":1741348864,\"offset\":0,\"name\":\"msvcr100.i386.pdb\",\"breakpadId\":\"B74A49314FD64956BAF50772F83598012\",\"pdbSignature\":\"B74A49314FD64956BAF50772F8359801\",\"pdbAge\":2,\"pdbName\":\"msvcr100.i386.pdb\"},{\"start\":1740374016,\"end\":1740521472,\"offset\":0,\"name\":\"mozglue.pdb\",\"breakpadId\":\"C953A2CED2C24D7D88E7F9B45208D4E51\",\"pdbSignature\":\"C953A2CED2C24D7D88E7F9B45208D4E5\",\"pdbAge\":1,\"pdbName\":\"mozglue.pdb\"},{\"start\":1913847808,\"end\":1913880576,\"offset\":0,\"name\":\"version.pdb\",\"breakpadId\":\"53263FC93A54465DA5AC7DEEAD454ECB2\",\"pdbSignature\":\"53263FC93A54465DA5AC7DEEAD454ECB\",\"pdbAge\":2,\"pdbName\":\"version.pdb\"},{\"start\":1739522048,\"end\":1739952128,\"offset\":0,\"name\":\"msvcp100.i386.pdb\",\"breakpadId\":\"CE550582BFCA474A8321ECC0CE61C54C1\",\"pdbSignature\":\"CE550582BFCA474A8321ECC0CE61C54C\",\"pdbAge\":1,\"pdbName\":\"msvcp100.i386.pdb\"},{\"start\":1963130880,\"end\":1963909120,\"offset\":0,\"name\":\"msvcrt.pdb\",\"breakpadId\":\"13D832D45DDB4ADAB974B977494673732\",\"pdbSignature\":\"13D832D45DDB4ADAB974B97749467373\",\"pdbAge\":2,\"pdbName\":\"msvcrt.pdb\"},{\"start\":1737424896,\"end\":1739247616,\"offset\":0,\"name\":\"nss3.pdb\",\"breakpadId\":\"96A5E7739DEE4D00814D4D5330F2DB771\",\"pdbSignature\":\"96A5E7739DEE4D00814D4D5330F2DB77\",\"pdbAge\":1,\"pdbName\":\"nss3.pdb\"},{\"start\":1819869184,\"end\":1820000256,\"offset\":0,\"name\":\"winmm.pdb\",\"breakpadId\":\"FDF01E3EBC874D669DCA13FE687BA88B2\",\"pdbSignature\":\"FDF01E3EBC874D669DCA13FE687BA88B\",\"pdbAge\":2,\"pdbName\":\"winmm.pdb\"},{\"start\":1821769728,\"end\":1821802496,\"offset\":0,\"name\":\"wsock32.pdb\",\"breakpadId\":\"E3F709DD0E5447CDA7D9F677E14347422\",\"pdbSignature\":\"E3F709DD0E5447CDA7D9F677E1434742\",\"pdbAge\":2,\"pdbName\":\"wsock32.pdb\"},{\"start\":1986002944,\"end\":1986494464,\"offset\":0,\"name\":\"advapi32.pdb\",\"breakpadId\":\"74C11B008F94495DA0A89B5E3241DE292\",\"pdbSignature\":\"74C11B008F94495DA0A89B5E3241DE29\",\"pdbAge\":2,\"pdbName\":\"advapi32.pdb\"},{\"start\":1819738112,\"end\":1819869184,\"offset\":0,\"name\":\"winmmbase.pdb\",\"breakpadId\":\"3B36F42BA12A480F8B8048E043D6214B2\",\"pdbSignature\":\"3B36F42BA12A480F8B8048E043D6214B\",\"pdbAge\":2,\"pdbName\":\"winmmbase.pdb\"},{\"start\":1989083136,\"end\":1990455296,\"offset\":0,\"name\":\"wuser32.pdb\",\"breakpadId\":\"8938256C73BF4937AAF24FA5F58064002\",\"pdbSignature\":\"8938256C73BF4937AAF24FA5F5806400\",\"pdbAge\":2,\"pdbName\":\"wuser32.pdb\"},{\"start\":1987575808,\"end\":1987891200,\"offset\":0,\"name\":\"ws2_32.pdb\",\"breakpadId\":\"F517939547AF4E61800B96C2C660978C2\",\"pdbSignature\":\"F517939547AF4E61800B96C2C660978C\",\"pdbAge\":2,\"pdbName\":\"ws2_32.pdb\"},{\"start\":1992425472,\"end\":1992679424,\"offset\":0,\"name\":\"sechost.pdb\",\"breakpadId\":\"3D0A96E5EC534911BB72627C8D81A22C2\",\"pdbSignature\":\"3D0A96E5EC534911BB72627C8D81A22C\",\"pdbAge\":2,\"pdbName\":\"sechost.pdb\"},{\"start\":1984823296,\"end\":1985544192,\"offset\":0,\"name\":\"wrpcrt4.pdb\",\"breakpadId\":\"E79631BAE23C474990D27AB628E414C32\",\"pdbSignature\":\"E79631BAE23C474990D27AB628E414C3\",\"pdbAge\":2,\"pdbName\":\"wrpcrt4.pdb\"},{\"start\":1984561152,\"end\":1984798720,\"offset\":0,\"name\":\"cfgmgr32.pdb\",\"breakpadId\":\"A722836E65D5431C947F212A299B17E02\",\"pdbSignature\":\"A722836E65D5431C947F212A299B17E0\",\"pdbAge\":2,\"pdbName\":\"cfgmgr32.pdb\"},{\"start\":1841168384,\"end\":1841295360,\"offset\":0,\"name\":\"devobj.pdb\",\"breakpadId\":\"4A41110D51F545EBB7FE5F9B715569A62\",\"pdbSignature\":\"4A41110D51F545EBB7FE5F9B715569A6\",\"pdbAge\":2,\"pdbName\":\"devobj.pdb\"},{\"start\":1987969024,\"end\":1989046272,\"offset\":0,\"name\":\"wgdi32.pdb\",\"breakpadId\":\"2B0822E10E874595823DD1B602CD9D0E2\",\"pdbSignature\":\"2B0822E10E874595823DD1B602CD9D0E\",\"pdbAge\":2,\"pdbName\":\"wgdi32.pdb\"},{\"start\":1986527232,\"end\":1986555904,\"offset\":0,\"name\":\"nsi.pdb\",\"breakpadId\":\"63C7095D0453402799D78AB16BFDBACC2\",\"pdbSignature\":\"63C7095D0453402799D78AB16BFDBACC\",\"pdbAge\":2,\"pdbName\":\"nsi.pdb\"},{\"start\":1959395328,\"end\":1959514112,\"offset\":0,\"name\":\"wsspicli.pdb\",\"breakpadId\":\"17664531BD204A04A7776E67B4090A7A1\",\"pdbSignature\":\"17664531BD204A04A7776E67B4090A7A\",\"pdbAge\":1,\"pdbName\":\"wsspicli.pdb\"},{\"start\":1959329792,\"end\":1959366656,\"offset\":0,\"name\":\"cryptbase.pdb\",\"breakpadId\":\"76A631A064A14157A09D2FEEF88EE6112\",\"pdbSignature\":\"76A631A064A14157A09D2FEEF88EE611\",\"pdbAge\":2,\"pdbName\":\"cryptbase.pdb\"},{\"start\":1958936576,\"end\":1959276544,\"offset\":0,\"name\":\"bcryptprimitives.pdb\",\"breakpadId\":\"3400A72A79294016A38C5DB9498A2C4E2\",\"pdbSignature\":\"3400A72A79294016A38C5DB9498A2C4E\",\"pdbAge\":2,\"pdbName\":\"bcryptprimitives.pdb\"},{\"start\":1992687616,\"end\":1992839168,\"offset\":0,\"name\":\"wimm32.pdb\",\"breakpadId\":\"0E0BF1F326B840AB97C97832A5E25DAF2\",\"pdbSignature\":\"0E0BF1F326B840AB97C97832A5E25DAF\",\"pdbAge\":2,\"pdbName\":\"wimm32.pdb\"},{\"start\":1982922752,\"end\":1983934464,\"offset\":0,\"name\":\"msctf.pdb\",\"breakpadId\":\"B4F67A8832EB468990F57E240E05FDA12\",\"pdbSignature\":\"B4F67A8832EB468990F57E240E05FDA1\",\"pdbAge\":2,\"pdbName\":\"msctf.pdb\"},{\"start\":1733558272,\"end\":1737400320,\"offset\":0,\"name\":\"mozjs.pdb\",\"breakpadId\":\"6ED9A57719014423A37DA9781BB0056F2\",\"pdbSignature\":\"6ED9A57719014423A37DA9781BB0056F\",\"pdbAge\":2,\"pdbName\":\"mozjs.pdb\"},{\"start\":1732509696,\"end\":1733541888,\"offset\":0,\"name\":\"icuin52.pdb\",\"breakpadId\":\"E0863E1AA86641699EE95889528C556C1\",\"pdbSignature\":\"E0863E1AA86641699EE95889528C556C\",\"pdbAge\":1,\"pdbName\":\"icuin52.pdb\"},{\"start\":1731657728,\"end\":1732497408,\"offset\":0,\"name\":\"icuuc52.pdb\",\"breakpadId\":\"F2A74853E253482C8F808154C95DBDD11\",\"pdbSignature\":\"F2A74853E253482C8F808154C95DBDD1\",\"pdbAge\":1,\"pdbName\":\"icuuc52.pdb\"},{\"start\":1985544192,\"end\":1985568768,\"offset\":0,\"name\":\"psapi.pdb\",\"breakpadId\":\"85F81DDE561641B781E5882239646B2E2\",\"pdbSignature\":\"85F81DDE561641B781E5882239646B2E\",\"pdbAge\":2,\"pdbName\":\"psapi.pdb\"},{\"start\":1813315584,\"end\":1813340160,\"offset\":0,\"name\":\"mozalloc.pdb\",\"breakpadId\":\"7869D85A506B40949B22B719C7EBB0B91\",\"pdbSignature\":\"7869D85A506B40949B22B719C7EBB0B9\",\"pdbAge\":1,\"pdbName\":\"mozalloc.pdb\"},{\"start\":1715798016,\"end\":1721020416,\"offset\":0,\"name\":\"gkmedias.pdb\",\"breakpadId\":\"511C84E77094459DB1649E00B67A6E601\",\"pdbSignature\":\"511C84E77094459DB1649E00B67A6E60\",\"pdbAge\":1,\"pdbName\":\"gkmedias.pdb\"},{\"start\":1809252352,\"end\":1809334272,\"offset\":0,\"name\":\"usp10.pdb\",\"breakpadId\":\"29BCA4092680415FAA8F49A88FF18E471\",\"pdbSignature\":\"29BCA4092680415FAA8F49A88FF18E47\",\"pdbAge\":1,\"pdbName\":\"usp10.pdb\"},{\"start\":1991311360,\"end\":1992409088,\"offset\":0,\"name\":\"ole32.pdb\",\"breakpadId\":\"01989D971903468B8CE931585894289B2\",\"pdbSignature\":\"01989D971903468B8CE931585894289B\",\"pdbAge\":2,\"pdbName\":\"ole32.pdb\"},{\"start\":1821835264,\"end\":1821859840,\"offset\":0,\"name\":\"msimg32.pdb\",\"breakpadId\":\"38C449277D114E0D84F57600002D668F2\",\"pdbSignature\":\"38C449277D114E0D84F57600002D668F\",\"pdbAge\":2,\"pdbName\":\"msimg32.pdb\"},{\"start\":1961230336,\"end\":1962598400,\"offset\":0,\"name\":\"combase.pdb\",\"breakpadId\":\"40A1233DEADF44C88847FF3A023BC5B02\",\"pdbSignature\":\"40A1233DEADF44C88847FF3A023BC5B0\",\"pdbAge\":2,\"pdbName\":\"combase.pdb\"},{\"start\":1689976832,\"end\":1715752960,\"offset\":0,\"name\":\"xul.pdb\",\"breakpadId\":\"2F4DC617FA6742C78F5D807CC5A05B392\",\"pdbSignature\":\"2F4DC617FA6742C78F5D807CC5A05B39\",\"pdbAge\":2,\"pdbName\":\"xul.pdb\"},{\"start\":1811087360,\"end\":1811161088,\"offset\":0,\"name\":\"netapi32.pdb\",\"breakpadId\":\"990F1E51522947BCBB33E082DF1C1F6F2\",\"pdbSignature\":\"990F1E51522947BCBB33E082DF1C1F6F\",\"pdbAge\":2,\"pdbName\":\"netapi32.pdb\"},{\"start\":1897529344,\"end\":1897652224,\"offset\":0,\"name\":\"iphlpapi.pdb\",\"breakpadId\":\"11DE9D0B2A7E477CA05A8DC59B91D53D2\",\"pdbSignature\":\"11DE9D0B2A7E477CA05A8DC59B91D53D\",\"pdbAge\":2,\"pdbName\":\"iphlpapi.pdb\"},{\"start\":1964244992,\"end\":1982857216,\"offset\":0,\"name\":\"shell32.pdb\",\"breakpadId\":\"F4BA7BAB172A48C2BC9EEC3F050A460E2\",\"pdbSignature\":\"F4BA7BAB172A48C2BC9EEC3F050A460E\",\"pdbAge\":2,\"pdbName\":\"shell32.pdb\"},{\"start\":1963917312,\"end\":1964183552,\"offset\":0,\"name\":\"shlwapi.pdb\",\"breakpadId\":\"75CD943DD85D46C7AD105A0A84FCC58A2\",\"pdbSignature\":\"75CD943DD85D46C7AD105A0A84FCC58A\",\"pdbAge\":2,\"pdbName\":\"shlwapi.pdb\"},{\"start\":1830027264,\"end\":1830924288,\"offset\":0,\"name\":\"wUxTheme.pdb\",\"breakpadId\":\"F389917EE1A24D32AD9ED46171F6FDDA2\",\"pdbSignature\":\"F389917EE1A24D32AD9ED46171F6FDDA\",\"pdbAge\":2,\"pdbName\":\"wUxTheme.pdb\"},{\"start\":1996423168,\"end\":1998180352,\"offset\":0,\"name\":\"setupapi.pdb\",\"breakpadId\":\"8F214754EA0046AAA4FD127D8D5503AE2\",\"pdbSignature\":\"8F214754EA0046AAA4FD127D8D5503AE\",\"pdbAge\":2,\"pdbName\":\"setupapi.pdb\"},{\"start\":1986592768,\"end\":1986822144,\"offset\":0,\"name\":\"wintrust.pdb\",\"breakpadId\":\"06872D0525FE4220BE66D0F560BE29362\",\"pdbSignature\":\"06872D0525FE4220BE66D0F560BE2936\",\"pdbAge\":2,\"pdbName\":\"wintrust.pdb\"},{\"start\":1986854912,\"end\":1987407872,\"offset\":0,\"name\":\"oleaut32.pdb\",\"breakpadId\":\"83B8392A462D49FB9186339EA4BA3D5D2\",\"pdbSignature\":\"83B8392A462D49FB9186339EA4BA3D5D\",\"pdbAge\":2,\"pdbName\":\"oleaut32.pdb\"},{\"start\":1811021824,\"end\":1811062784,\"offset\":0,\"name\":\"netutils.pdb\",\"breakpadId\":\"8CA7C5DAFEDD49978AC26ECAB742D2E22\",\"pdbSignature\":\"8CA7C5DAFEDD49978AC26ECAB742D2E2\",\"pdbAge\":2,\"pdbName\":\"netutils.pdb\"},{\"start\":1810890752,\"end\":1811001344,\"offset\":0,\"name\":\"srvcli.pdb\",\"breakpadId\":\"B03A38FF03F64B26900A266DA62B7A2A2\",\"pdbSignature\":\"B03A38FF03F64B26900A266DA62B7A2A\",\"pdbAge\":2,\"pdbName\":\"srvcli.pdb\"},{\"start\":1810825216,\"end\":1810890752,\"offset\":0,\"name\":\"wkscli.pdb\",\"breakpadId\":\"B31F2F518EFA4E03AFAA00E61257298E2\",\"pdbSignature\":\"B31F2F518EFA4E03AFAA00E61257298E\",\"pdbAge\":2,\"pdbName\":\"wkscli.pdb\"},{\"start\":1897463808,\"end\":1897496576,\"offset\":0,\"name\":\"winnsi.pdb\",\"breakpadId\":\"134A72F099364502A7B384B487E667492\",\"pdbSignature\":\"134A72F099364502A7B384B487E66749\",\"pdbAge\":2,\"pdbName\":\"winnsi.pdb\"},{\"start\":1993474048,\"end\":1995042816,\"offset\":0,\"name\":\"crypt32.pdb\",\"breakpadId\":\"3213AABEF94649FF99C13E7C73D2416F2\",\"pdbSignature\":\"3213AABEF94649FF99C13E7C73D2416F\",\"pdbAge\":2,\"pdbName\":\"crypt32.pdb\"},{\"start\":1987903488,\"end\":1987960832,\"offset\":0,\"name\":\"msasn1.pdb\",\"breakpadId\":\"F9BF640299CF41719D8073B266514BD52\",\"pdbSignature\":\"F9BF640299CF41719D8073B266514BD5\",\"pdbAge\":2,\"pdbName\":\"msasn1.pdb\"},{\"start\":1813381120,\"end\":1813454848,\"offset\":0,\"name\":\"samcli.pdb\",\"breakpadId\":\"86AEBDD65E2A4C57AE7BFB8114B39EF32\",\"pdbSignature\":\"86AEBDD65E2A4C57AE7BFB8114B39EF3\",\"pdbAge\":2,\"pdbName\":\"samcli.pdb\"},{\"start\":1829896192,\"end\":1829994496,\"offset\":0,\"name\":\"dwmapi.pdb\",\"breakpadId\":\"F47885FF4C3D4166AE8FDB4A2C73A62F2\",\"pdbSignature\":\"F47885FF4C3D4166AE8FDB4A2C73A62F\",\"pdbAge\":2,\"pdbName\":\"dwmapi.pdb\"},{\"start\":1742733312,\"end\":1744076800,\"offset\":0,\"name\":\"dbghelp.pdb\",\"breakpadId\":\"097FDCC4548D49B7A27E495C88561B0E1\",\"pdbSignature\":\"097FDCC4548D49B7A27E495C88561B0E\",\"pdbAge\":1,\"pdbName\":\"dbghelp.pdb\"},{\"start\":1912864768,\"end\":1913348096,\"offset\":0,\"name\":\"shcore.pdb\",\"breakpadId\":\"428F99638D3043BE9916579D6DD874492\",\"pdbSignature\":\"428F99638D3043BE9916579D6DD87449\",\"pdbAge\":2,\"pdbName\":\"shcore.pdb\"},{\"start\":1958150144,\"end\":1958187008,\"offset\":0,\"name\":\"Kernel.Appcore.pdb\",\"breakpadId\":\"57F9CA590C194C888904E1A3DDC39CAE1\",\"pdbSignature\":\"57F9CA590C194C888904E1A3DDC39CAE\",\"pdbAge\":1,\"pdbName\":\"Kernel.Appcore.pdb\"},{\"start\":1962606592,\"end\":1963118592,\"offset\":0,\"name\":\"CLBCatQ.pdb\",\"breakpadId\":\"A9E49C41C6AE475B9A258B4F883C5D2B2\",\"pdbSignature\":\"A9E49C41C6AE475B9A258B4F883C5D2B\",\"pdbAge\":2,\"pdbName\":\"CLBCatQ.pdb\"},{\"start\":1824587776,\"end\":1825779712,\"offset\":0,\"name\":\"propsys.pdb\",\"breakpadId\":\"61B040E6D05D445D8C96DDB4BF94730A2\",\"pdbSignature\":\"61B040E6D05D445D8C96DDB4BF94730A\",\"pdbAge\":2,\"pdbName\":\"propsys.pdb\"},{\"start\":1838284800,\"end\":1838567424,\"offset\":0,\"name\":\"mswsock.pdb\",\"breakpadId\":\"1B15C0EFA59841169F9168B3676C7B872\",\"pdbSignature\":\"1B15C0EFA59841169F9168B3676C7B87\",\"pdbAge\":2,\"pdbName\":\"mswsock.pdb\"},{\"start\":1811873792,\"end\":1811927040,\"offset\":0,\"name\":\"browsercomps.pdb\",\"breakpadId\":\"2D75A7F245BE4697951E4E7A4D10DF632\",\"pdbSignature\":\"2D75A7F245BE4697951E4E7A4D10DF63\",\"pdbAge\":2,\"pdbName\":\"browsercomps.pdb\"},{\"start\":1913716736,\"end\":1913815040,\"offset\":0,\"name\":\"cryptsp.pdb\",\"breakpadId\":\"79B48B7C797945CDAF494AE1BD96CAFB2\",\"pdbSignature\":\"79B48B7C797945CDAF494AE1BD96CAFB\",\"pdbAge\":2,\"pdbName\":\"cryptsp.pdb\"},{\"start\":1913520128,\"end\":1913712640,\"offset\":0,\"name\":\"rsaenh.pdb\",\"breakpadId\":\"6FC38295D85547B18D2F760699252FE22\",\"pdbSignature\":\"6FC38295D85547B18D2F760699252FE2\",\"pdbAge\":2,\"pdbName\":\"rsaenh.pdb\"},{\"start\":1913389056,\"end\":1913507840,\"offset\":0,\"name\":\"bcrypt.pdb\",\"breakpadId\":\"BCF5C846E44F40A0A763F6370D1455001\",\"pdbSignature\":\"BCF5C846E44F40A0A763F6370D145500\",\"pdbAge\":1,\"pdbName\":\"bcrypt.pdb\"},{\"start\":1911816192,\"end\":1911873536,\"offset\":0,\"name\":\"profapi.pdb\",\"breakpadId\":\"D5C73836FD11424B8543C0EA729768CC2\",\"pdbSignature\":\"D5C73836FD11424B8543C0EA729768CC\",\"pdbAge\":2,\"pdbName\":\"profapi.pdb\"},{\"start\":1812267008,\"end\":1812332544,\"offset\":0,\"name\":\"NapiNSP.pdb\",\"breakpadId\":\"07FB6E84940E49659C604AEDDFE0D2912\",\"pdbSignature\":\"07FB6E84940E49659C604AEDDFE0D291\",\"pdbAge\":2,\"pdbName\":\"NapiNSP.pdb\"},{\"start\":1812135936,\"end\":1812217856,\"offset\":0,\"name\":\"pnrpnsp.pdb\",\"breakpadId\":\"F586076053094EA8BF5173CDBD61D62C2\",\"pdbSignature\":\"F586076053094EA8BF5173CDBD61D62C\",\"pdbAge\":2,\"pdbName\":\"pnrpnsp.pdb\"},{\"start\":1812332544,\"end\":1812406272,\"offset\":0,\"name\":\"nlaapi.pdb\",\"breakpadId\":\"BB06376152B341F39EB4B40F4F6D813E2\",\"pdbSignature\":\"BB06376152B341F39EB4B40F4F6D813E\",\"pdbAge\":2,\"pdbName\":\"nlaapi.pdb\"},{\"start\":1831403520,\"end\":1831911424,\"offset\":0,\"name\":\"dnsapi.pdb\",\"breakpadId\":\"C1E28DF222FD4E32ABC7E2925D22C0FB2\",\"pdbSignature\":\"C1E28DF222FD4E32ABC7E2925D22C0FB\",\"pdbAge\":2,\"pdbName\":\"dnsapi.pdb\"},{\"start\":1812070400,\"end\":1812107264,\"offset\":0,\"name\":\"winrnr.pdb\",\"breakpadId\":\"407BFA1162204D65B29563067FC5BEC62\",\"pdbSignature\":\"407BFA1162204D65B29563067FC5BEC6\",\"pdbAge\":2,\"pdbName\":\"winrnr.pdb\"},{\"start\":1826947072,\"end\":1827008512,\"offset\":0,\"name\":\"wshbth.pdb\",\"breakpadId\":\"D86412AD9AE041CDB3DD38CE47FC509D1\",\"pdbSignature\":\"D86412AD9AE041CDB3DD38CE47FC509D\",\"pdbAge\":1,\"pdbName\":\"wshbth.pdb\"},{\"start\":1687552000,\"end\":1689915392,\"offset\":0,\"name\":\"Wpc.pdb\",\"breakpadId\":\"37FCFAB13D4E44DA980373CD63D52DE22\",\"pdbSignature\":\"37FCFAB13D4E44DA980373CD63D52DE2\",\"pdbAge\":2,\"pdbName\":\"Wpc.pdb\"},{\"start\":1982857216,\"end\":1982869504,\"offset\":0,\"name\":\"normaliz.pdb\",\"breakpadId\":\"91D38C806A23484D837096302A91F3C81\",\"pdbSignature\":\"91D38C806A23484D837096302A91F3C8\",\"pdbAge\":1,\"pdbName\":\"normaliz.pdb\"},{\"start\":1687224320,\"end\":1687535616,\"offset\":0,\"name\":\"wevtapi.pdb\",\"breakpadId\":\"47BE374C3F5240329B56864C92DB6DDB2\",\"pdbSignature\":\"47BE374C3F5240329B56864C92DB6DDB\",\"pdbAge\":2,\"pdbName\":\"wevtapi.pdb\"},{\"start\":1741357056,\"end\":1741660160,\"offset\":0,\"name\":\"MMDevAPI.pdb\",\"breakpadId\":\"1549BB4AAE454BD3BA9CFC21BD7EC7DF2\",\"pdbSignature\":\"1549BB4AAE454BD3BA9CFC21BD7EC7DF\",\"pdbAge\":2,\"pdbName\":\"MMDevAPI.pdb\"},{\"start\":1739980800,\"end\":1740328960,\"offset\":0,\"name\":\"AudioSes.pdb\",\"breakpadId\":\"70C70E42FB744C19AD705520A722F98D2\",\"pdbSignature\":\"70C70E42FB744C19AD705520A722F98D\",\"pdbAge\":2,\"pdbName\":\"AudioSes.pdb\"},{\"start\":1739259904,\"end\":1739513856,\"offset\":0,\"name\":\"powrprof.pdb\",\"breakpadId\":\"CF212816C58C499AA3AD2B0E402EFEDA2\",\"pdbSignature\":\"CF212816C58C499AA3AD2B0E402EFEDA\",\"pdbAge\":2,\"pdbName\":\"powrprof.pdb\"},{\"start\":1686765568,\"end\":1687166976,\"offset\":0,\"name\":\"dxgi.pdb\",\"breakpadId\":\"4C88F923F2254197BCF0AFC2E156EC562\",\"pdbSignature\":\"4C88F923F2254197BCF0AFC2E156EC56\",\"pdbAge\":2,\"pdbName\":\"dxgi.pdb\"},{\"start\":1686568960,\"end\":1686736896,\"offset\":0,\"name\":\"d3d10_1.pdb\",\"breakpadId\":\"0B6FE2960059435CA5072FA2147A7D532\",\"pdbSignature\":\"0B6FE2960059435CA5072FA2147A7D53\",\"pdbAge\":2,\"pdbName\":\"d3d10_1.pdb\"},{\"start\":1686175744,\"end\":1686507520,\"offset\":0,\"name\":\"d3d10_1core.pdb\",\"breakpadId\":\"BD1C99ACC48F4F05B57869075DFD7F2C2\",\"pdbSignature\":\"BD1C99ACC48F4F05B57869075DFD7F2C\",\"pdbAge\":2,\"pdbName\":\"d3d10_1core.pdb\"},{\"start\":1684406272,\"end\":1686171648,\"offset\":0,\"name\":\"d3d11.pdb\",\"breakpadId\":\"2843B3362F554848B2D16880CAC57F5B2\",\"pdbSignature\":\"2843B3362F554848B2D16880CAC57F5B\",\"pdbAge\":2,\"pdbName\":\"d3d11.pdb\"},{\"start\":1667039232,\"end\":1684406272,\"offset\":0,\"name\":\"igd10iumd32.pdb\",\"breakpadId\":\"B0BE2DC56ABF4BA58582604496AB06261\",\"pdbSignature\":\"B0BE2DC56ABF4BA58582604496AB0626\",\"pdbAge\":1,\"pdbName\":\"igd10iumd32.pdb\"},{\"start\":1898184704,\"end\":1898299392,\"offset\":0,\"name\":\"ncrypt.pdb\",\"breakpadId\":\"27EFC272729C45FEAF7FBCDDB7DEC42F2\",\"pdbSignature\":\"27EFC272729C45FEAF7FBCDDB7DEC42F\",\"pdbAge\":2,\"pdbName\":\"ncrypt.pdb\"},{\"start\":1897988096,\"end\":1898164224,\"offset\":0,\"name\":\"ntasn1.pdb\",\"breakpadId\":\"AA2EC392731F4E99B689BAE8580EF5CE1\",\"pdbSignature\":\"AA2EC392731F4E99B689BAE8580EF5CE\",\"pdbAge\":1,\"pdbName\":\"ntasn1.pdb\"},{\"start\":1663369216,\"end\":1667026944,\"offset\":0,\"name\":\"igdusc32.pdb\",\"breakpadId\":\"4349B9F5356E4E2EBB4DD8F4C6AFA07E1\",\"pdbSignature\":\"4349B9F5356E4E2EBB4DD8F4C6AFA07E\",\"pdbAge\":1,\"pdbName\":\"igdusc32.pdb\"},{\"start\":1658716160,\"end\":1662668800,\"offset\":0,\"name\":\"d2d1.pdb\",\"breakpadId\":\"0718AF7D9B184985A839DC5902F1384F2\",\"pdbSignature\":\"0718AF7D9B184985A839DC5902F1384F\",\"pdbAge\":2,\"pdbName\":\"d2d1.pdb\"},{\"start\":1656684544,\"end\":1658212352,\"offset\":0,\"name\":\"DWrite.pdb\",\"breakpadId\":\"A4A93D353CAB4EE299CDF8126D6EA38F2\",\"pdbSignature\":\"A4A93D353CAB4EE299CDF8126D6EA38F\",\"pdbAge\":2,\"pdbName\":\"DWrite.pdb\"},{\"start\":1741946880,\"end\":1742434304,\"offset\":0,\"name\":\"mscms.pdb\",\"breakpadId\":\"84A0210A8F5849789D3DB48D22ED361B2\",\"pdbSignature\":\"84A0210A8F5849789D3DB48D22ED361B\",\"pdbAge\":2,\"pdbName\":\"mscms.pdb\"},{\"start\":1898512384,\"end\":1898614784,\"offset\":0,\"name\":\"userenv.pdb\",\"breakpadId\":\"AF9C7EA0E7CE40EFADCB95089D8A8DCE2\",\"pdbSignature\":\"AF9C7EA0E7CE40EFADCB95089D8A8DCE\",\"pdbAge\":2,\"pdbName\":\"userenv.pdb\"},{\"start\":1741684736,\"end\":1741926400,\"offset\":0,\"name\":\"icm32.pdb\",\"breakpadId\":\"D78DB089F1EC47C8865A5508536298D61\",\"pdbSignature\":\"D78DB089F1EC47C8865A5508536298D6\",\"pdbAge\":1,\"pdbName\":\"icm32.pdb\"},{\"start\":1654194176,\"end\":1656631296,\"offset\":0,\"name\":\"ExplorerFrame.pdb\",\"breakpadId\":\"3F42A94E9BF2417B868FA4C195453A892\",\"pdbSignature\":\"3F42A94E9BF2417B868FA4C195453A89\",\"pdbAge\":2,\"pdbName\":\"ExplorerFrame.pdb\"},{\"start\":1653669888,\"end\":1654153216,\"offset\":0,\"name\":\"DUser.pdb\",\"breakpadId\":\"D464BEF1809442708AB7001EB1A33AFF2\",\"pdbSignature\":\"D464BEF1809442708AB7001EB1A33AFF\",\"pdbAge\":2,\"pdbName\":\"DUser.pdb\"},{\"start\":1652293632,\"end\":1653649408,\"offset\":0,\"name\":\"DUI70.pdb\",\"breakpadId\":\"0E1134CB49DA4AB38B50D3DFEE077DC62\",\"pdbSignature\":\"0E1134CB49DA4AB38B50D3DFEE077DC6\",\"pdbAge\":2,\"pdbName\":\"DUI70.pdb\"},{\"start\":1652097024,\"end\":1652277248,\"offset\":0,\"name\":\"XmlLite.pdb\",\"breakpadId\":\"49FB24D09142446588F329143478F2022\",\"pdbSignature\":\"49FB24D09142446588F329143478F202\",\"pdbAge\":2,\"pdbName\":\"XmlLite.pdb\"},{\"start\":1831010304,\"end\":1831288832,\"offset\":0,\"name\":\"fwpuclnt.pdb\",\"breakpadId\":\"145AE09DA6184EF3852A864CEB8133972\",\"pdbSignature\":\"145AE09DA6184EF3852A864CEB813397\",\"pdbAge\":2,\"pdbName\":\"fwpuclnt.pdb\"},{\"start\":1831337984,\"end\":1831366656,\"offset\":0,\"name\":\"rasadhlp.pdb\",\"breakpadId\":\"7F89602FFFD84F43A953E9498F91BA0A2\",\"pdbSignature\":\"7F89602FFFD84F43A953E9498F91BA0A\",\"pdbAge\":2,\"pdbName\":\"rasadhlp.pdb\"},{\"start\":1650196480,\"end\":1650356224,\"offset\":0,\"name\":\"softokn3.pdb\",\"breakpadId\":\"F88D7CAB78FC45B68D802BFA6D9D30911\",\"pdbSignature\":\"F88D7CAB78FC45B68D802BFA6D9D3091\",\"pdbAge\":1,\"pdbName\":\"softokn3.pdb\"},{\"start\":1650065408,\"end\":1650163712,\"offset\":0,\"name\":\"nssdbm3.pdb\",\"breakpadId\":\"630F62E49B4F4A92BB21993036D7938B1\",\"pdbSignature\":\"630F62E49B4F4A92BB21993036D7938B\",\"pdbAge\":1,\"pdbName\":\"nssdbm3.pdb\"},{\"start\":1649672192,\"end\":1650024448,\"offset\":0,\"name\":\"freebl3.pdb\",\"breakpadId\":\"1200EC675C4443E6946984F1966BF68D1\",\"pdbSignature\":\"1200EC675C4443E6946984F1966BF68D\",\"pdbAge\":1,\"pdbName\":\"freebl3.pdb\"},{\"start\":1649213440,\"end\":1649618944,\"offset\":0,\"name\":\"nssckbi.pdb\",\"breakpadId\":\"5E2F35C7F76F4C93A91A325112F506581\",\"pdbSignature\":\"5E2F35C7F76F4C93A91A325112F50658\",\"pdbAge\":1,\"pdbName\":\"nssckbi.pdb\"},{\"start\":1813118976,\"end\":1813270528,\"offset\":0,\"name\":\"ntmarta.pdb\",\"breakpadId\":\"F97A5CA873554394BE5FD1731FB3C6D52\",\"pdbSignature\":\"F97A5CA873554394BE5FD1731FB3C6D5\",\"pdbAge\":2,\"pdbName\":\"ntmarta.pdb\"},{\"start\":1898643456,\"end\":1900466176,\"offset\":0,\"name\":\"wininet.pdb\",\"breakpadId\":\"3782BF68F0E84016ACF918F2795D852C2\",\"pdbSignature\":\"3782BF68F0E84016ACF918F2795D852C\",\"pdbAge\":2,\"pdbName\":\"wininet.pdb\"},{\"start\":1900478464,\"end\":1902682112,\"offset\":0,\"name\":\"iertutil.pdb\",\"breakpadId\":\"6F40A605BB57445396BF7A7BF269EDB12\",\"pdbSignature\":\"6F40A605BB57445396BF7A7BF269EDB1\",\"pdbAge\":2,\"pdbName\":\"iertutil.pdb\"},{\"start\":1898446848,\"end\":1898483712,\"offset\":0,\"name\":\"secur32.pdb\",\"breakpadId\":\"08D4B2917CAE4C5CB4F7708DBB045DA62\",\"pdbSignature\":\"08D4B2917CAE4C5CB4F7708DBB045DA6\",\"pdbAge\":2,\"pdbName\":\"secur32.pdb\"},{\"start\":1830944768,\"end\":1830985728,\"offset\":0,\"name\":\"OnDemandConnRouteHelper.pdb\",\"breakpadId\":\"E21DD70C3BD14D6AA2297C4CC51645821\",\"pdbSignature\":\"E21DD70C3BD14D6AA2297C4CC5164582\",\"pdbAge\":1,\"pdbName\":\"OnDemandConnRouteHelper.pdb\"},{\"start\":1837498368,\"end\":1838104576,\"offset\":0,\"name\":\"winhttp.pdb\",\"breakpadId\":\"6EB986109F104064A54DC43B8F7B36AC2\",\"pdbSignature\":\"6EB986109F104064A54DC43B8F7B36AC\",\"pdbAge\":2,\"pdbName\":\"winhttp.pdb\"},{\"start\":1836253184,\"end\":1836326912,\"offset\":0,\"name\":\"dhcpcsvc6.pdb\",\"breakpadId\":\"8FDD95101BAB49A39859910F20F326692\",\"pdbSignature\":\"8FDD95101BAB49A39859910F20F32669\",\"pdbAge\":2,\"pdbName\":\"dhcpcsvc6.pdb\"},{\"start\":1836122112,\"end\":1836199936,\"offset\":0,\"name\":\"dhcpcsvc.pdb\",\"breakpadId\":\"793AE960AD22492A90B3194CBFC57C1E2\",\"pdbSignature\":\"793AE960AD22492A90B3194CBFC57C1E\",\"pdbAge\":2,\"pdbName\":\"dhcpcsvc.pdb\"},{\"start\":1651507200,\"end\":1652076544,\"offset\":0,\"name\":\"twinapi.pdb\",\"breakpadId\":\"58F54E8CA2134888AF68CB505D4145412\",\"pdbSignature\":\"58F54E8CA2134888AF68CB505D414541\",\"pdbAge\":2,\"pdbName\":\"twinapi.pdb\"},{\"start\":1651179520,\"end\":1651470336,\"offset\":0,\"name\":\"Bcp47Langs.pdb\",\"breakpadId\":\"F67CF61FD2A14D4C9F1D219FD82A86212\",\"pdbSignature\":\"F67CF61FD2A14D4C9F1D219FD82A8621\",\"pdbAge\":2,\"pdbName\":\"Bcp47Langs.pdb\"},{\"start\":1651113984,\"end\":1651154944,\"offset\":0,\"name\":\"linkinfo.pdb\",\"breakpadId\":\"BEF2AD2D7EBC406C81F1944BA16164032\",\"pdbSignature\":\"BEF2AD2D7EBC406C81F1944BA1616403\",\"pdbAge\":2,\"pdbName\":\"linkinfo.pdb\"},{\"start\":1650458624,\"end\":1651113984,\"offset\":0,\"name\":\"ntshrui.pdb\",\"breakpadId\":\"5D121AEE1D64420681ACCB85DC0AFE2C2\",\"pdbSignature\":\"5D121AEE1D64420681ACCB85DC0AFE2C\",\"pdbAge\":2,\"pdbName\":\"ntshrui.pdb\"},{\"start\":1650393088,\"end\":1650446336,\"offset\":0,\"name\":\"cscapi.pdb\",\"breakpadId\":\"CCA87C030FD24DC083118F3AB4B0D8C72\",\"pdbSignature\":\"CCA87C030FD24DC083118F3AB4B0D8C7\",\"pdbAge\":2,\"pdbName\":\"cscapi.pdb\"},{\"start\":1560936448,\"end\":1561640960,\"offset\":0,\"name\":\"MFPLAT.pdb\",\"breakpadId\":\"014DD253C2AB49FA8000E1393C00115E2\",\"pdbSignature\":\"014DD253C2AB49FA8000E1393C00115E\",\"pdbAge\":2,\"pdbName\":\"MFPLAT.pdb\"},{\"start\":1560805376,\"end\":1560915968,\"offset\":0,\"name\":\"rtworkq.pdb\",\"breakpadId\":\"F2F1FADE1A2641F3A1B043012739803B1\",\"pdbSignature\":\"F2F1FADE1A2641F3A1B043012739803B\",\"pdbAge\":1,\"pdbName\":\"rtworkq.pdb\"},{\"start\":1560739840,\"end\":1560776704,\"offset\":0,\"name\":\"avrt.pdb\",\"breakpadId\":\"929B1FFFB74240AD8A91E8A30FBCF7C52\",\"pdbSignature\":\"929B1FFFB74240AD8A91E8A30FBCF7C5\",\"pdbAge\":2,\"pdbName\":\"avrt.pdb\"},{\"start\":1560346624,\"end\":1560702976,\"offset\":0,\"name\":\"MFReadWrite.pdb\",\"breakpadId\":\"40DA1D7AA0D6419E8E2AA6F69AFF8BEF2\",\"pdbSignature\":\"40DA1D7AA0D6419E8E2AA6F69AFF8BEF\",\"pdbAge\":2,\"pdbName\":\"MFReadWrite.pdb\"},{\"start\":1559822336,\"end\":1560342528,\"offset\":0,\"name\":\"mf.pdb\",\"breakpadId\":\"21ED7EB51D6D402296632EF16EDACE001\",\"pdbSignature\":\"21ED7EB51D6D402296632EF16EDACE00\",\"pdbAge\":1,\"pdbName\":\"mf.pdb\"},{\"start\":1559691264,\"end\":1559797760,\"offset\":0,\"name\":\"dxva2.pdb\",\"breakpadId\":\"C7ACED0F03484B41B9E32FA58D97BB022\",\"pdbSignature\":\"C7ACED0F03484B41B9E32FA58D97BB02\",\"pdbAge\":2,\"pdbName\":\"dxva2.pdb\"},{\"start\":1827864576,\"end\":1829855232,\"offset\":0,\"name\":\"comctl32.pdb\",\"breakpadId\":\"55E2ABB80F1F44DD81BF841BE274BBC72\",\"pdbSignature\":\"55E2ABB80F1F44DD81BF841BE274BBC7\",\"pdbAge\":2,\"pdbName\":\"comctl32.pdb\"},{\"start\":1620180992,\"end\":1621544960,\"offset\":0,\"name\":\"WindowsCodecs.pdb\",\"breakpadId\":\"F2782689175D4E41BF188E091AE920C82\",\"pdbSignature\":\"F2782689175D4E41BF188E091AE920C8\",\"pdbAge\":2,\"pdbName\":\"WindowsCodecs.pdb\"},{\"start\":1823408128,\"end\":1823531008,\"offset\":0,\"name\":\"IdStore.pdb\",\"breakpadId\":\"52CCC0687C814CB49715A3146082535E2\",\"pdbSignature\":\"52CCC0687C814CB49715A3146082535E\",\"pdbAge\":2,\"pdbName\":\"IdStore.pdb\"},{\"start\":1823277056,\"end\":1823354880,\"offset\":0,\"name\":\"samlib.pdb\",\"breakpadId\":\"4D91D486A8554E478F118D8FD039627A2\",\"pdbSignature\":\"4D91D486A8554E478F118D8FD039627A\",\"pdbAge\":2,\"pdbName\":\"samlib.pdb\"},{\"start\":1822883840,\"end\":1823268864,\"offset\":0,\"name\":\"WLIDProv.pdb\",\"breakpadId\":\"06869E21485444A2AB4BCC6BE55B078C1\",\"pdbSignature\":\"06869E21485444A2AB4BCC6BE55B078C\",\"pdbAge\":1,\"pdbName\":\"WLIDProv.pdb\"},{\"start\":1992884224,\"end\":1993433088,\"offset\":0,\"name\":\"comdlg32.pdb\",\"breakpadId\":\"2468F4845E9F4B859319A333828777752\",\"pdbSignature\":\"2468F4845E9F4B859319A33382877775\",\"pdbAge\":2,\"pdbName\":\"comdlg32.pdb\"},{\"start\":1816985600,\"end\":1817423872,\"offset\":0,\"name\":\"tiptsf.pdb\",\"breakpadId\":\"78B45DDE194848D1B6D52EEDB675D7562\",\"pdbSignature\":\"78B45DDE194848D1B6D52EEDB675D756\",\"pdbAge\":2,\"pdbName\":\"tiptsf.pdb\"},{\"start\":1816526848,\"end\":1816961024,\"offset\":0,\"name\":\"StructuredQuery.pdb\",\"breakpadId\":\"AA7364BC25344FE3AB35B6D6C7B999252\",\"pdbSignature\":\"AA7364BC25344FE3AB35B6D6C7B99925\",\"pdbAge\":2,\"pdbName\":\"StructuredQuery.pdb\"},{\"start\":1823539200,\"end\":1824587776,\"offset\":0,\"name\":\"ActXPrxy.pdb\",\"breakpadId\":\"3D1A2D980A0D440FBBE135B6139F79A82\",\"pdbSignature\":\"3D1A2D980A0D440FBBE135B6139F79A8\",\"pdbAge\":2,\"pdbName\":\"ActXPrxy.pdb\"},{\"start\":1816395776,\"end\":1816522752,\"offset\":0,\"name\":\"thumbcache.pdb\",\"breakpadId\":\"EB5C2C148EE44D5EA1B02E24411257D92\",\"pdbSignature\":\"EB5C2C148EE44D5EA1B02E24411257D9\",\"pdbAge\":2,\"pdbName\":\"thumbcache.pdb\"},{\"start\":1821376512,\"end\":1821671424,\"offset\":0,\"name\":\"oleacc.pdb\",\"breakpadId\":\"95EDD70ABF7746C8811863BE768754422\",\"pdbSignature\":\"95EDD70ABF7746C8811863BE76875442\",\"pdbAge\":2,\"pdbName\":\"oleacc.pdb\"},{\"start\":1825964032,\"end\":1826045952,\"offset\":0,\"name\":\"mpr.pdb\",\"breakpadId\":\"265D895A8CC747F38C45AB0AF31CC1BD2\",\"pdbSignature\":\"265D895A8CC747F38C45AB0AF31CC1BD\",\"pdbAge\":2,\"pdbName\":\"mpr.pdb\"},{\"start\":1821704192,\"end\":1821741056,\"offset\":0,\"name\":\"drprov.pdb\",\"breakpadId\":\"20E739B42B174094A6959C2CE212B85F2\",\"pdbSignature\":\"20E739B42B174094A6959C2CE212B85F\",\"pdbAge\":2,\"pdbName\":\"drprov.pdb\"},{\"start\":1634009088,\"end\":1634279424,\"offset\":0,\"name\":\"winsta.pdb\",\"breakpadId\":\"259E1EE215734247A8D7F6A1DEB63D432\",\"pdbSignature\":\"259E1EE215734247A8D7F6A1DEB63D43\",\"pdbAge\":2,\"pdbName\":\"winsta.pdb\"},{\"start\":1816264704,\"end\":1816334336,\"offset\":0,\"name\":\"ntlanman.pdb\",\"breakpadId\":\"08D0AC76F8E7406BAF3ABF2FFFF791A52\",\"pdbSignature\":\"08D0AC76F8E7406BAF3ABF2FFFF791A5\",\"pdbAge\":2,\"pdbName\":\"ntlanman.pdb\"},{\"start\":1816133632,\"end\":1816236032,\"offset\":0,\"name\":\"davclnt.pdb\",\"breakpadId\":\"F9242D5D32394F18AA11F526185ECE0F2\",\"pdbSignature\":\"F9242D5D32394F18AA11F526185ECE0F\",\"pdbAge\":2,\"pdbName\":\"davclnt.pdb\"},{\"start\":1816068096,\"end\":1816104960,\"offset\":0,\"name\":\"davhlpr.pdb\",\"breakpadId\":\"B07524D32B754C10993DB8D36C0B59EF1\",\"pdbSignature\":\"B07524D32B754C10993DB8D36C0B59EF\",\"pdbAge\":1,\"pdbName\":\"davhlpr.pdb\"},{\"start\":1811218432,\"end\":1811845120,\"offset\":0,\"name\":\"apphelp.pdb\",\"breakpadId\":\"C3FE61FCF06A426CBF6C51C73A08B1232\",\"pdbSignature\":\"C3FE61FCF06A426CBF6C51C73A08B123\",\"pdbAge\":2,\"pdbName\":\"apphelp.pdb\"},{\"start\":1615986688,\"end\":1617661952,\"offset\":0,\"name\":\"NetworkExplorer.pdb\",\"breakpadId\":\"86B2DF121E5A4DAE8145855E433DBBAE2\",\"pdbSignature\":\"86B2DF121E5A4DAE8145855E433DBBAE\",\"pdbAge\":2,\"pdbName\":\"NetworkExplorer.pdb\"},{\"start\":1826488320,\"end\":1826906112,\"offset\":0,\"name\":\"dlnashext.pdb\",\"breakpadId\":\"15CBC583F4AC47E492576663D9BD14B42\",\"pdbSignature\":\"15CBC583F4AC47E492576663D9BD14B4\",\"pdbAge\":2,\"pdbName\":\"dlnashext.pdb\"},{\"start\":1581973504,\"end\":1583710208,\"offset\":0,\"name\":\"grooveex.pdb\",\"breakpadId\":\"EF8B437BB2624A299495CFF148D8DC342\",\"pdbSignature\":\"EF8B437BB2624A299495CFF148D8DC34\",\"pdbAge\":2,\"pdbName\":\"grooveex.pdb\"},{\"start\":1580531712,\"end\":1580687360,\"offset\":0,\"name\":\"atl100.i386.pdb\",\"breakpadId\":\"80F951D0A52A4369BB2BAAA178DE5D7E3\",\"pdbSignature\":\"80F951D0A52A4369BB2BAAA178DE5D7E\",\"pdbAge\":3,\"pdbName\":\"atl100.i386.pdb\"},{\"start\":1577189376,\"end\":1580511232,\"offset\":0,\"name\":\"msi.pdb\",\"breakpadId\":\"4158EF0B9AE94BDA8E6B95C93AED50CA2\",\"pdbSignature\":\"4158EF0B9AE94BDA8E6B95C93AED50CA\",\"pdbAge\":2,\"pdbName\":\"msi.pdb\"},{\"start\":1826095104,\"end\":1826193408,\"offset\":0,\"name\":\"DevDispItemProvider.pdb\",\"breakpadId\":\"D26A8692AD214B1694935BDAAF84EED51\",\"pdbSignature\":\"D26A8692AD214B1694935BDAAF84EED5\",\"pdbAge\":1,\"pdbName\":\"DevDispItemProvider.pdb\"},{\"start\":1563033600,\"end\":1571926016,\"offset\":0,\"name\":\"GrooveIntlResource.pdb\",\"breakpadId\":\"F1A53405A5934E82AD92BFADA60BC4881\",\"pdbSignature\":\"F1A53405A5934E82AD92BFADA60BC488\",\"pdbAge\":1,\"pdbName\":\"GrooveIntlResource.pdb\"},{\"start\":1813577728,\"end\":1814007808,\"offset\":0,\"name\":\"twinapi.appcore.pdb\",\"breakpadId\":\"5AFCF5A391074FDC9B664F50E7A2E4D41\",\"pdbSignature\":\"5AFCF5A391074FDC9B664F50E7A2E4D4\",\"pdbAge\":1,\"pdbName\":\"twinapi.appcore.pdb\"},{\"start\":1562836992,\"end\":1562980352,\"offset\":0,\"name\":\"DropboxExt.pdb\",\"breakpadId\":\"66432EF1E8CA4A5BBD7FC4FB8A1A2F331\",\"pdbSignature\":\"66432EF1E8CA4A5BBD7FC4FB8A1A2F33\",\"pdbAge\":1,\"pdbName\":\"DropboxExt.pdb\"},{\"start\":1841299456,\"end\":1841881088,\"offset\":0,\"name\":\"msvcp90.i386.pdb\",\"breakpadId\":\"F98500174A2C4290A81DDA7E2B5B66581\",\"pdbSignature\":\"F98500174A2C4290A81DDA7E2B5B6658\",\"pdbAge\":1,\"pdbName\":\"msvcp90.i386.pdb\"},{\"start\":1958215680,\"end\":1958883328,\"offset\":0,\"name\":\"msvcr90.i386.pdb\",\"breakpadId\":\"BAC1B1EA57AC43FAA7E34DA9A1D9DBD11\",\"pdbSignature\":\"BAC1B1EA57AC43FAA7E34DA9A1D9DBD1\",\"pdbAge\":1,\"pdbName\":\"msvcr90.i386.pdb\"},{\"start\":1815871488,\"end\":1815932928,\"offset\":0,\"name\":\"mssprxy.pdb\",\"breakpadId\":\"75F01673F9AE40E1A52BDB102843B63F2\",\"pdbSignature\":\"75F01673F9AE40E1A52BDB102843B63F\",\"pdbAge\":2,\"pdbName\":\"mssprxy.pdb\"},{\"start\":1902706688,\"end\":1903919104,\"offset\":0,\"name\":\"urlmon.pdb\",\"breakpadId\":\"08C27DE119FF4B04BCD47E503CD789302\",\"pdbSignature\":\"08C27DE119FF4B04BCD47E503CD78930\",\"pdbAge\":2,\"pdbName\":\"urlmon.pdb\"},{\"start\":1822752768,\"end\":1822830592,\"offset\":0,\"name\":\"devenum.pdb\",\"breakpadId\":\"FB1DEB5E9B3443B9A543A4DD78E475DA2\",\"pdbSignature\":\"FB1DEB5E9B3443B9A543A4DD78E475DA\",\"pdbAge\":2,\"pdbName\":\"devenum.pdb\"},{\"start\":1822687232,\"end\":1822732288,\"offset\":0,\"name\":\"msdmo.pdb\",\"breakpadId\":\"FEB8830A217A4E40B75DA15AD656DD182\",\"pdbSignature\":\"FEB8830A217A4E40B75DA15AD656DD18\",\"pdbAge\":2,\"pdbName\":\"msdmo.pdb\"},{\"start\":1822425088,\"end\":1822646272,\"offset\":0,\"name\":\"ksproxy.pdb\",\"breakpadId\":\"A5DB882F71674ED2B56F8B3ACFE6A84F2\",\"pdbSignature\":\"A5DB882F71674ED2B56F8B3ACFE6A84F\",\"pdbAge\":2,\"pdbName\":\"ksproxy.pdb\"},{\"start\":1822359552,\"end\":1822388224,\"offset\":0,\"name\":\"ksuser.pdb\",\"breakpadId\":\"FF945409BBFC455698F405BAFA79D2F12\",\"pdbSignature\":\"FF945409BBFC455698F405BAFA79D2F1\",\"pdbAge\":2,\"pdbName\":\"ksuser.pdb\"},{\"start\":1536950272,\"end\":1538752512,\"offset\":0,\"name\":\"d3d9.pdb\",\"breakpadId\":\"614FD17739854007AED5728F995193702\",\"pdbSignature\":\"614FD17739854007AED5728F99519370\",\"pdbAge\":2,\"pdbName\":\"d3d9.pdb\"},{\"start\":1822294016,\"end\":1822334976,\"offset\":0,\"name\":\"vidcap.pdb\",\"breakpadId\":\"3B717427DEF14A04830FFFC4AA3AFBE21\",\"pdbSignature\":\"3B717427DEF14A04830FFFC4AA3AFBE2\",\"pdbAge\":1,\"pdbName\":\"vidcap.pdb\"},{\"start\":1822162944,\"end\":1822281728,\"offset\":0,\"name\":\"kswdmcap.pdb\",\"breakpadId\":\"7B2612C4471347B5A4AEC1BE97C77CF02\",\"pdbSignature\":\"7B2612C4471347B5A4AEC1BE97C77CF0\",\"pdbAge\":2,\"pdbName\":\"kswdmcap.pdb\"},{\"start\":1818624000,\"end\":1819688960,\"offset\":0,\"name\":\"mfc42.pdb\",\"breakpadId\":\"C73F9A7BEC0D42A6922216703C33882E2\",\"pdbSignature\":\"C73F9A7BEC0D42A6922216703C33882E\",\"pdbAge\":2,\"pdbName\":\"mfc42.pdb\"},{\"start\":1589641216,\"end\":1590292480,\"offset\":0,\"name\":\"ODBC32.pdb\",\"breakpadId\":\"D1185C92739A4FA4B604EE3FDAAF51BE2\",\"pdbSignature\":\"D1185C92739A4FA4B604EE3FDAAF51BE\",\"pdbAge\":2,\"pdbName\":\"ODBC32.pdb\"},{\"start\":1770258432,\"end\":1771810816,\"offset\":0,\"name\":\"quartz.pdb\",\"breakpadId\":\"1156C423020B4CCEA8A8CFBEDCBF87B92\",\"pdbSignature\":\"1156C423020B4CCEA8A8CFBEDCBF87B9\",\"pdbAge\":2,\"pdbName\":\"quartz.pdb\"}]", + "meta": { + "version": 2, + "interval": 1, + "stackwalk": 0, + "jank": 0, + "processType": 0, + "startTime": 1409261371392, + "platform": "Windows", + "oscpu": "Windows NT 6.3; WOW64", + "misc": "rv:31.0", + "abi": "x86-msvc", + "toolkit": "windows", + "product": "Firefox" + }, + "threads": [ + { + "samples": [ + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.738444805145264, + "time": 26402702 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "onclick (chrome://browser/content/browser.xul:1)", + "line": 1 + }, + { + "location": "contentAreaClick (chrome://browser/content/browser.js:14515)", + "line": 14520 + }, + { + "location": "EnterJIT" + }, + { + "location": "hrefAndLinkNodeForClickEvent (chrome://browser/content/browser.js:14471)", + "line": 14482 + }, + { + "location": "isHTMLLink (chrome://browser/content/browser.js:14473)", + "line": 14476 + } + ], + "responsiveness": 9.723519325256348, + "time": 26402704 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "js::RunScript" + }, + { + "location": "CSL_observe (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/utils.js:1162)", + "line": 1164 + } + ], + "responsiveness": 1.006602168083191, + "time": 26402706 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0456559658050537, + "time": 26402708 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "html5::RunFlushLoop", + "line": 341 + }, + { + "location": "JS::EvaluateString", + "line": 199 + }, + { + "location": "js::RunScript" + }, + { + "location": "chrome://browser/content/devtools/profiler/cleopatra/js/parser.js:1", + "line": 1 + } + ], + "responsiveness": 5.028069496154785, + "time": 26402710 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "html5::RunFlushLoop", + "line": 341 + }, + { + "location": "JS::EvaluateString", + "line": 199 + } + ], + "responsiveness": 7.011622905731201, + "time": 26402712 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "html5::RunFlushLoop", + "line": 341 + }, + { + "location": "JS::EvaluateString", + "line": 199 + } + ], + "responsiveness": 9.01456356048584, + "time": 26402714 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "onLoad (resource://gre/modules/addons/XPIProvider.jsm -> jar:file:///C:/Users/Christoph/AppData/Roaming/Mozilla/Firefox/Profiles/hrdbs1rb.default/extensions/firebug@software.joehewitt.com.xpi!/bootstrap.js:128)", + "line": 132 + } + ], + "responsiveness": 0.004561641253530979, + "time": 26402716 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0082626342773438, + "time": 26402718 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.080388069152832, + "time": 26402720 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.080388069152832, + "time": 26402722 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.080388069152832, + "time": 26402724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.080388069152832, + "time": 26402724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.080388069152832, + "time": 26402726 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.02166779711842537, + "time": 26402728 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2118760347366333, + "time": 26402730 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2118760347366333, + "time": 26402732 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 5.12424373626709, + "time": 26402734 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 7.126044273376465, + "time": 26402736 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 9.111498832702637, + "time": 26402738 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 0.006082188803702593, + "time": 26402740 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 2.0645229816436768, + "time": 26402742 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 4.074686050415039, + "time": 26402744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 5.273637771606445, + "time": 26402744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 369 + } + ], + "responsiveness": 7.437756538391113, + "time": 26402746 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.424731254577637, + "time": 26402748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0187666416168213, + "time": 26402750 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.954423189163208, + "time": 26402752 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.954423189163208, + "time": 26402754 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.954423189163208, + "time": 26402756 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.954423189163208, + "time": 26402758 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.954423189163208, + "time": 26402758 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.954423189163208, + "time": 26402760 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0424749851226807, + "time": 26402762 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0424749851226807, + "time": 26402764 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0424749851226807, + "time": 26402766 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.056478977203369, + "time": 26402768 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.056478977203369, + "time": 26402770 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.1125204861164093, + "time": 26402772 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.1125204861164093, + "time": 26402774 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.1125204861164093, + "time": 26402774 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.1125204861164093, + "time": 26402776 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.322815418243408, + "time": 26402778 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.322815418243408, + "time": 26402780 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.322815418243408, + "time": 26402782 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.322815418243408, + "time": 26402782 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0841500759124756, + "time": 26402784 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.2857625484466553, + "time": 26402786 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.2857625484466553, + "time": 26402786 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.2857625484466553, + "time": 26402788 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.2857625484466553, + "time": 26402790 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.2857625484466553, + "time": 26402792 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.2857625484466553, + "time": 26402794 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.983933925628662, + "time": 26402796 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.983933925628662, + "time": 26402796 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.983933925628662, + "time": 26402798 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.983933925628662, + "time": 26402800 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.212474822998047, + "time": 26402802 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.212474822998047, + "time": 26402804 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26402806 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26402808 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26402808 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26402810 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26402812 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26402814 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.029270533472299576, + "time": 26402816 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1154611110687256, + "time": 26402818 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1154611110687256, + "time": 26402820 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1154611110687256, + "time": 26402822 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1154611110687256, + "time": 26402822 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1154611110687256, + "time": 26402826 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1154611110687256, + "time": 26402826 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0949337482452393, + "time": 26402830 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0949337482452393, + "time": 26402832 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0966339111328125, + "time": 26402834 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0966339111328125, + "time": 26402834 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0966339111328125, + "time": 26402836 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0966339111328125, + "time": 26402838 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.109999418258667, + "time": 26402840 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.109999418258667, + "time": 26402842 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.109999418258667, + "time": 26402844 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.109999418258667, + "time": 26402844 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.109999418258667, + "time": 26402846 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.109999418258667, + "time": 26402846 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.006462325341999531, + "time": 26402848 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9778517484664917, + "time": 26402850 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.019566535949707, + "time": 26402852 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.019566535949707, + "time": 26402854 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.019566535949707, + "time": 26402856 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.019566535949707, + "time": 26402858 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1126604080200195, + "time": 26402860 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1126604080200195, + "time": 26402862 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 5.030730247497559, + "time": 26402864 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 7.027588844299316, + "time": 26402866 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 9.029389381408691, + "time": 26402868 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 0.014825334772467613, + "time": 26402870 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.073646068572998, + "time": 26402872 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.073646068572998, + "time": 26402874 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.073646068572998, + "time": 26402876 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.073646068572998, + "time": 26402876 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.073646068572998, + "time": 26402878 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.073646068572998, + "time": 26402880 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0716055631637573, + "time": 26402882 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0716055631637573, + "time": 26402884 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0716055631637573, + "time": 26402886 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0716055631637573, + "time": 26402888 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0716055631637573, + "time": 26402890 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0716055631637573, + "time": 26402892 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26402894 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26402896 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26402896 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26402898 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.335119247436523, + "time": 26402900 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.335119247436523, + "time": 26402902 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.335119247436523, + "time": 26402904 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0978350639343262, + "time": 26402906 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.123584032058716, + "time": 26402908 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.123584032058716, + "time": 26402910 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.123584032058716, + "time": 26402910 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.123584032058716, + "time": 26402912 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.123584032058716, + "time": 26402914 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9653072357177734, + "time": 26402916 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9653072357177734, + "time": 26402918 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9653072357177734, + "time": 26402920 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9653072357177734, + "time": 26402922 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9653072357177734, + "time": 26402924 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9653072357177734, + "time": 26402924 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.056400179862976, + "time": 26402926 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.056400179862976, + "time": 26402928 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.056400179862976, + "time": 26402930 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.168859958648682, + "time": 26402932 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.168859958648682, + "time": 26402934 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.168859958648682, + "time": 26402936 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0940337181091309, + "time": 26402938 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0940337181091309, + "time": 26402940 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0940337181091309, + "time": 26402942 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0940337181091309, + "time": 26402944 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0940337181091309, + "time": 26402946 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0940337181091309, + "time": 26402946 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1252049207687378, + "time": 26402948 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1252049207687378, + "time": 26402950 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.114980697631836, + "time": 26402952 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.114980697631836, + "time": 26402954 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.114980697631836, + "time": 26402956 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.114980697631836, + "time": 26402958 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.114980697631836, + "time": 26402958 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.098975419998169, + "time": 26402960 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.098975419998169, + "time": 26402962 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.098975419998169, + "time": 26402964 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.229681491851807, + "time": 26402966 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.229681491851807, + "time": 26402968 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.229681491851807, + "time": 26402968 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.937797486782074, + "time": 26402970 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 2.925532817840576, + "time": 26402972 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26402974 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26402976 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26402976 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26402978 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26402980 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26402980 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1008760929107666, + "time": 26402982 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26402984 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26402986 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26402988 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26402990 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26402992 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1164617538452148, + "time": 26402994 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1164617538452148, + "time": 26402996 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1164617538452148, + "time": 26402998 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.134407043457031, + "time": 26403000 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.134407043457031, + "time": 26403002 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0465165376663208, + "time": 26403004 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0465165376663208, + "time": 26403006 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0465165376663208, + "time": 26403008 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0465165376663208, + "time": 26403010 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0465165376663208, + "time": 26403012 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0465165376663208, + "time": 26403012 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0297905206680298, + "time": 26403014 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0304505825042725, + "time": 26403016 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0304505825042725, + "time": 26403018 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0304505825042725, + "time": 26403020 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0304505825042725, + "time": 26403022 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0304505825042725, + "time": 26403024 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.043095350265503, + "time": 26403026 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.043095350265503, + "time": 26403028 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.043095350265503, + "time": 26403028 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.043095350265503, + "time": 26403030 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.043095350265503, + "time": 26403032 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.39874267578125, + "time": 26403034 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.39874267578125, + "time": 26403036 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1271055936813354, + "time": 26403038 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1271055936813354, + "time": 26403038 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1271055936813354, + "time": 26403040 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1271055936813354, + "time": 26403042 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1271055936813354, + "time": 26403044 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1271055936813354, + "time": 26403044 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1271055936813354, + "time": 26403046 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.001420259475708, + "time": 26403048 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.001420259475708, + "time": 26403050 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.001420259475708, + "time": 26403052 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.019225597381592, + "time": 26403054 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.019225597381592, + "time": 26403056 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.019225597381592, + "time": 26403058 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.07578706741333, + "time": 26403058 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.07578706741333, + "time": 26403060 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.07578706741333, + "time": 26403062 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.07578706741333, + "time": 26403064 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.302567481994629, + "time": 26403066 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.302567481994629, + "time": 26403068 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0392940044403076, + "time": 26403070 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0392940044403076, + "time": 26403072 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0392940044403076, + "time": 26403074 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0392940044403076, + "time": 26403076 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0392940044403076, + "time": 26403078 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0392940044403076, + "time": 26403080 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0727460384368896, + "time": 26403082 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1076183319091797, + "time": 26403084 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1076183319091797, + "time": 26403086 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1076183319091797, + "time": 26403086 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1076183319091797, + "time": 26403088 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1076183319091797, + "time": 26403090 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.02280820719897747, + "time": 26403092 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1860268115997314, + "time": 26403092 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1860268115997314, + "time": 26403094 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1860268115997314, + "time": 26403096 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1860268115997314, + "time": 26403098 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.262272834777832, + "time": 26403100 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.262272834777832, + "time": 26403102 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1160815954208374, + "time": 26403104 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1160815954208374, + "time": 26403106 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.107137680053711, + "time": 26403108 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.214235782623291, + "time": 26403110 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.214235782623291, + "time": 26403112 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.028890395537018776, + "time": 26403114 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.096834421157837, + "time": 26403116 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.096834421157837, + "time": 26403118 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.096834421157837, + "time": 26403118 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.096834421157837, + "time": 26403120 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.096834421157837, + "time": 26403122 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.096834421157837, + "time": 26403124 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9774715900421143, + "time": 26403126 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9774715900421143, + "time": 26403128 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9774715900421143, + "time": 26403128 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9774715900421143, + "time": 26403130 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.132025718688965, + "time": 26403132 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.03345203772187233, + "time": 26403134 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2069343328475952, + "time": 26403136 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2069343328475952, + "time": 26403138 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2069343328475952, + "time": 26403140 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2069343328475952, + "time": 26403142 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2069343328475952, + "time": 26403144 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2069343328475952, + "time": 26403146 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1084789037704468, + "time": 26403148 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.093933343887329, + "time": 26403150 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.093933343887329, + "time": 26403150 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.115780353546143, + "time": 26403154 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.115780353546143, + "time": 26403154 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.115780353546143, + "time": 26403156 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1107597351074219, + "time": 26403158 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1107597351074219, + "time": 26403160 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1107597351074219, + "time": 26403162 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1107597351074219, + "time": 26403162 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1107597351074219, + "time": 26403164 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.3021879196167, + "time": 26403166 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.3021879196167, + "time": 26403168 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0282700061798096, + "time": 26403170 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0282700061798096, + "time": 26403172 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0282700061798096, + "time": 26403172 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0282700061798096, + "time": 26403174 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0282700061798096, + "time": 26403176 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0282700061798096, + "time": 26403178 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0282700061798096, + "time": 26403180 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0712255239486694, + "time": 26403180 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1148407459259033, + "time": 26403182 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1148407459259033, + "time": 26403184 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1148407459259033, + "time": 26403184 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1148407459259033, + "time": 26403186 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1148407459259033, + "time": 26403188 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1148407459259033, + "time": 26403190 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.113040566444397, + "time": 26403190 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.113040566444397, + "time": 26403192 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.113040566444397, + "time": 26403194 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.113040566444397, + "time": 26403196 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.113040566444397, + "time": 26403198 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.358967781066895, + "time": 26403200 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.358967781066895, + "time": 26403202 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1126604080200195, + "time": 26403202 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1126604080200195, + "time": 26403204 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1126604080200195, + "time": 26403206 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1126604080200195, + "time": 26403206 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1126604080200195, + "time": 26403208 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1126604080200195, + "time": 26403210 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0415748357772827, + "time": 26403212 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0415748357772827, + "time": 26403214 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.269696235656738, + "time": 26403216 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.269696235656738, + "time": 26403218 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.269696235656738, + "time": 26403218 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.269696235656738, + "time": 26403220 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.269696235656738, + "time": 26403222 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.269696235656738, + "time": 26403224 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26403224 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26403226 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26403228 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26403230 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26403230 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.400782585144043, + "time": 26403232 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.961746096611023, + "time": 26403234 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.961746096611023, + "time": 26403236 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.961746096611023, + "time": 26403238 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.961746096611023, + "time": 26403240 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.961746096611023, + "time": 26403242 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.0551198348402977, + "time": 26403244 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2514103651046753, + "time": 26403246 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2514103651046753, + "time": 26403248 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.204452991485596, + "time": 26403250 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.204452991485596, + "time": 26403252 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.282179832458496, + "time": 26403254 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.282179832458496, + "time": 26403256 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.078968048095703, + "time": 26403258 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.078968048095703, + "time": 26403260 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.078968048095703, + "time": 26403262 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.078968048095703, + "time": 26403264 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.189046859741211, + "time": 26403266 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.189046859741211, + "time": 26403266 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26403270 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26403272 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26403274 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26403274 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26403276 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26403276 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0180063247680664, + "time": 26403278 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0180063247680664, + "time": 26403280 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.951281547546387, + "time": 26403282 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.951281547546387, + "time": 26403284 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.951281547546387, + "time": 26403284 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.951281547546387, + "time": 26403286 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.951281547546387, + "time": 26403286 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.951281547546387, + "time": 26403288 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.056920051574707, + "time": 26403290 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.056920051574707, + "time": 26403292 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.056920051574707, + "time": 26403294 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.056920051574707, + "time": 26403296 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.056920051574707, + "time": 26403298 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.28650188446045, + "time": 26403300 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0358726978302002, + "time": 26403302 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0358726978302002, + "time": 26403304 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0358726978302002, + "time": 26403306 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0358726978302002, + "time": 26403308 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0358726978302002, + "time": 26403310 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0358726978302002, + "time": 26403312 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0998756885528564, + "time": 26403314 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.10205602645874, + "time": 26403316 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.319774150848389, + "time": 26403318 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.319774150848389, + "time": 26403320 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.319774150848389, + "time": 26403320 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9883556365966797, + "time": 26403322 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9883556365966797, + "time": 26403324 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9883556365966797, + "time": 26403326 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9883556365966797, + "time": 26403328 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9883556365966797, + "time": 26403330 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.12684440612793, + "time": 26403332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0974549055099487, + "time": 26403334 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.115601062774658, + "time": 26403336 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.115601062774658, + "time": 26403338 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.115601062774658, + "time": 26403338 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.115601062774658, + "time": 26403340 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.357827186584473, + "time": 26403342 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.357827186584473, + "time": 26403344 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0839099884033203, + "time": 26403346 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0839099884033203, + "time": 26403348 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.171520709991455, + "time": 26403350 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.116681098937988, + "time": 26403352 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.192227363586426, + "time": 26403354 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26403356 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26403358 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26403360 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + } + ], + "responsiveness": 6.127805233001709, + "time": 26403362 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.186245918273926, + "time": 26403364 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.186245918273926, + "time": 26403366 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.095554232597351, + "time": 26403368 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.095554232597351, + "time": 26403368 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.26019287109375, + "time": 26403370 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.2540106773376465, + "time": 26403372 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.2540106773376465, + "time": 26403374 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.2540106773376465, + "time": 26403376 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9845542907714844, + "time": 26403378 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9845542907714844, + "time": 26403380 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "layout::Flush (Flush_InterruptibleLayout)", + "line": 3969 + }, + { + "location": "CSS::ProcessRestyles", + "line": 137 + }, + { + "location": "CSS::ComputeStyleChangeFor", + "line": 2902 + } + ], + "responsiveness": 4.926572799682617, + "time": 26403382 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.993376731872559, + "time": 26403384 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.993376731872559, + "time": 26403386 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.993376731872559, + "time": 26403388 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0158653259277344, + "time": 26403390 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "layout::Flush (Flush_InterruptibleLayout)", + "line": 3969 + }, + { + "location": "CSS::ProcessRestyles", + "line": 137 + }, + { + "location": "CSS::ComputeStyleChangeFor", + "line": 2902 + }, + { + "location": "nsStyleSet::FileRules", + "line": 943 + } + ], + "responsiveness": 3.995997905731201, + "time": 26403392 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.015664577484131, + "time": 26403394 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.074865341186523, + "time": 26403396 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.074865341186523, + "time": 26403396 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04409586638212204, + "time": 26403398 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + } + ], + "responsiveness": 2.0261290073394775, + "time": 26403400 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109658718109131, + "time": 26403402 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109658718109131, + "time": 26403404 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109658718109131, + "time": 26403406 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109658718109131, + "time": 26403406 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109658718109131, + "time": 26403408 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109658718109131, + "time": 26403410 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 1.0035611391067505, + "time": 26403412 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0483169555664062, + "time": 26403414 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "layout::Flush (Flush_Style)", + "line": 3969 + }, + { + "location": "CSS::ProcessRestyles", + "line": 137 + }, + { + "location": "CSS::ComputeStyleChangeFor", + "line": 2902 + }, + { + "location": "nsStyleSet::FileRules", + "line": 943 + } + ], + "responsiveness": 5.096113681793213, + "time": 26403416 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.159876346588135, + "time": 26403418 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.159876346588135, + "time": 26403418 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 0.006842462345957756, + "time": 26403420 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.092272996902466, + "time": 26403422 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.092272996902466, + "time": 26403424 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.092272996902466, + "time": 26403426 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.092272996902466, + "time": 26403428 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.092272996902466, + "time": 26403428 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 10.287641525268555, + "time": 26403430 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0754070281982422, + "time": 26403432 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0754070281982422, + "time": 26403434 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0754070281982422, + "time": 26403436 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0754070281982422, + "time": 26403438 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0754070281982422, + "time": 26403440 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.333118438720703, + "time": 26403442 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.333118438720703, + "time": 26403444 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0818692445755005, + "time": 26403444 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0818692445755005, + "time": 26403446 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0818692445755005, + "time": 26403448 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + } + ], + "responsiveness": 7.003260135650635, + "time": 26403450 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.063220977783203, + "time": 26403452 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.02090752311050892, + "time": 26403454 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0546393394470215, + "time": 26403456 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0546393394470215, + "time": 26403458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0546393394470215, + "time": 26403460 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.11920166015625, + "time": 26403462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.11920166015625, + "time": 26403464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.03421230986714363, + "time": 26403466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2251808643341064, + "time": 26403466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2251808643341064, + "time": 26403468 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2251808643341064, + "time": 26403468 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 5.47396993637085, + "time": 26403470 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.564722061157227, + "time": 26403472 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.564722061157227, + "time": 26403474 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.564722061157227, + "time": 26403476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.987975537776947, + "time": 26403478 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.987975537776947, + "time": 26403478 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 4.235104084014893, + "time": 26403480 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.333838939666748, + "time": 26403482 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.333838939666748, + "time": 26403484 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.333838939666748, + "time": 26403486 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0052216053009033, + "time": 26403488 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 3.9222514629364014, + "time": 26403490 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0126237869262695, + "time": 26403492 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0126237869262695, + "time": 26403494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0126237869262695, + "time": 26403494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0126237869262695, + "time": 26403496 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1031569242477417, + "time": 26403498 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.043755292892456, + "time": 26403500 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.043755292892456, + "time": 26403502 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.043755292892456, + "time": 26403504 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.043755292892456, + "time": 26403506 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.043755292892456, + "time": 26403508 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 2.0033209323883057, + "time": 26403510 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.100155353546143, + "time": 26403512 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.100155353546143, + "time": 26403514 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.109457969665527, + "time": 26403516 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.109457969665527, + "time": 26403518 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.029270533472299576, + "time": 26403520 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113560438156128, + "time": 26403522 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113560438156128, + "time": 26403524 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113560438156128, + "time": 26403526 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113560438156128, + "time": 26403528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113560438156128, + "time": 26403530 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.01064383052289486, + "time": 26403532 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1120400428771973, + "time": 26403534 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1120400428771973, + "time": 26403534 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1120400428771973, + "time": 26403536 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1120400428771973, + "time": 26403538 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 8.359587669372559, + "time": 26403540 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.012544513680040836, + "time": 26403542 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2065541744232178, + "time": 26403542 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2065541744232178, + "time": 26403544 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2065541744232178, + "time": 26403546 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2065541744232178, + "time": 26403548 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "layout::Flush (Flush_Style)", + "line": 3969 + }, + { + "location": "CSS::ProcessRestyles", + "line": 137 + } + ], + "responsiveness": 8.359208106994629, + "time": 26403550 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.448439598083496, + "time": 26403552 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0871912240982056, + "time": 26403554 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0871912240982056, + "time": 26403556 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0871912240982056, + "time": 26403558 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "MousePosTracker.handleEvent (chrome://browser/content/browser.js:16678)", + "line": 16689 + }, + { + "location": "forEach (self-hosted:5343)", + "line": 5346 + }, + { + "location": "IsObject (self-hosted:636)", + "line": 641 + } + ], + "responsiveness": 7.140109062194824, + "time": 26403560 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.211854934692383, + "time": 26403562 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.211854934692383, + "time": 26403564 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1120400428771973, + "time": 26403566 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1120400428771973, + "time": 26403568 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 5.350805282592773, + "time": 26403570 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.4419379234313965, + "time": 26403572 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.4419379234313965, + "time": 26403574 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0518385171890259, + "time": 26403576 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0518385171890259, + "time": 26403578 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + } + ], + "responsiveness": 4.962305545806885, + "time": 26403580 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.057619571685791, + "time": 26403582 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.057619571685791, + "time": 26403584 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.057619571685791, + "time": 26403586 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 1.9915366172790527, + "time": 26403588 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.00398063659668, + "time": 26403590 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.00398063659668, + "time": 26403592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.00398063659668, + "time": 26403594 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.00398063659668, + "time": 26403594 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.19995194673538208, + "time": 26403596 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.034111976623535, + "time": 26403598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.034111976623535, + "time": 26403600 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.034111976623535, + "time": 26403602 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.034111976623535, + "time": 26403604 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 10.01052188873291, + "time": 26403606 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0332118272781372, + "time": 26403608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0332118272781372, + "time": 26403610 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0332118272781372, + "time": 26403612 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0332118272781372, + "time": 26403614 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 9.02216625213623, + "time": 26403616 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.012924650683999062, + "time": 26403618 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0493173599243164, + "time": 26403620 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0493173599243164, + "time": 26403622 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0493173599243164, + "time": 26403624 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 8.019365310668945, + "time": 26403626 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.04891586303711, + "time": 26403628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0183864831924438, + "time": 26403630 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0186662673950195, + "time": 26403632 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0186662673950195, + "time": 26403634 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "MousePosTracker.handleEvent (chrome://browser/content/browser.js:16678)", + "line": 16679 + } + ], + "responsiveness": 7.0211262702941895, + "time": 26403636 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.047636032104492, + "time": 26403638 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.047636032104492, + "time": 26403640 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.034111976623535, + "time": 26403642 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.034111976623535, + "time": 26403644 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.044555187225342, + "time": 26403646 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.045214653015137, + "time": 26403648 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.045214653015137, + "time": 26403650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0278898477554321, + "time": 26403652 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0289299488067627, + "time": 26403654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0289299488067627, + "time": 26403656 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0289299488067627, + "time": 26403658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0289299488067627, + "time": 26403660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0289299488067627, + "time": 26403662 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0282700061798096, + "time": 26403664 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 3.011823892593384, + "time": 26403666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.033771514892578, + "time": 26403668 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.033771514892578, + "time": 26403670 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + } + ], + "responsiveness": 9.015323638916016, + "time": 26403672 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 0.007222598884254694, + "time": 26403674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 2.006742000579834, + "time": 26403676 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + } + ], + "responsiveness": 4.029829978942871, + "time": 26403678 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 6.016805171966553, + "time": 26403680 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 8.00796127319336, + "time": 26403682 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.06412124633789, + "time": 26403684 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0290303230285645, + "time": 26403686 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0290303230285645, + "time": 26403688 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0290303230285645, + "time": 26403690 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0290303230285645, + "time": 26403690 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0290303230285645, + "time": 26403692 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0290303230285645, + "time": 26403694 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0290303230285645, + "time": 26403696 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0811090469360352, + "time": 26403696 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0811090469360352, + "time": 26403698 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.106757640838623, + "time": 26403700 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.106757640838623, + "time": 26403702 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.106757640838623, + "time": 26403704 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.106757640838623, + "time": 26403706 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0651432275772095, + "time": 26403708 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0570600032806396, + "time": 26403710 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0570600032806396, + "time": 26403712 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0570600032806396, + "time": 26403714 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.1687593460083, + "time": 26403716 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.1687593460083, + "time": 26403718 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.126725435256958, + "time": 26403720 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.126725435256958, + "time": 26403720 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.126725435256958, + "time": 26403722 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.126725435256958, + "time": 26403722 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.126725435256958, + "time": 26403724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.126725435256958, + "time": 26403724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.126725435256958, + "time": 26403726 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.126725435256958, + "time": 26403728 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9579446911811829, + "time": 26403730 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9579446911811829, + "time": 26403732 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.053918838500977, + "time": 26403734 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.053918838500977, + "time": 26403736 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.053918838500977, + "time": 26403738 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.053918838500977, + "time": 26403738 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.053918838500977, + "time": 26403740 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1263452768325806, + "time": 26403742 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1263452768325806, + "time": 26403744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1263452768325806, + "time": 26403746 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1263452768325806, + "time": 26403748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.312451362609863, + "time": 26403748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.312451362609863, + "time": 26403750 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0016604661941528, + "time": 26403752 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0016604661941528, + "time": 26403752 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.21571683883667, + "time": 26403754 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.21571683883667, + "time": 26403756 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.21571683883667, + "time": 26403758 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.21571683883667, + "time": 26403760 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0278898477554321, + "time": 26403762 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0278898477554321, + "time": 26403764 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.0197062492370605, + "time": 26403766 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.0197062492370605, + "time": 26403770 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.0197062492370605, + "time": 26403770 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.0197062492370605, + "time": 26403772 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1217836141586304, + "time": 26403774 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1217836141586304, + "time": 26403776 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1217836141586304, + "time": 26403776 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.437476634979248, + "time": 26403778 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.437476634979248, + "time": 26403780 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.487454414367676, + "time": 26403782 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9222118258476257, + "time": 26403784 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9222118258476257, + "time": 26403786 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9222118258476257, + "time": 26403788 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9222118258476257, + "time": 26403790 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9222118258476257, + "time": 26403792 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9222118258476257, + "time": 26403792 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9222118258476257, + "time": 26403794 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.073126196861267, + "time": 26403796 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.073126196861267, + "time": 26403798 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.12676477432251, + "time": 26403798 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.12676477432251, + "time": 26403800 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.12676477432251, + "time": 26403802 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.12676477432251, + "time": 26403804 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.12676477432251, + "time": 26403806 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.022707939147949, + "time": 26403808 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.022707939147949, + "time": 26403810 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.022707939147949, + "time": 26403812 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.022707939147949, + "time": 26403814 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.067543029785156, + "time": 26403816 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0149651765823364, + "time": 26403818 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0149651765823364, + "time": 26403820 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0149651765823364, + "time": 26403822 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0149651765823364, + "time": 26403824 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0149651765823364, + "time": 26403826 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0, + "time": 26403828 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.047036647796631, + "time": 26403830 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.050357341766357, + "time": 26403832 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.050357341766357, + "time": 26403834 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.050357341766357, + "time": 26403836 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.11658000946045, + "time": 26403838 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0613418817520142, + "time": 26403840 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0613418817520142, + "time": 26403842 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0613418817520142, + "time": 26403844 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0613418817520142, + "time": 26403846 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0613418817520142, + "time": 26403846 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.307649612426758, + "time": 26403848 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.307649612426758, + "time": 26403850 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1198829412460327, + "time": 26403852 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1198829412460327, + "time": 26403854 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.38045597076416, + "time": 26403856 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.54723596572876, + "time": 26403858 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.54723596572876, + "time": 26403860 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0130645036697388, + "time": 26403862 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0130645036697388, + "time": 26403864 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.155795097351074, + "time": 26403866 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 7.104376316070557, + "time": 26403868 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.170419692993164, + "time": 26403870 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.170419692993164, + "time": 26403872 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0983550548553467, + "time": 26403874 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0983550548553467, + "time": 26403876 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.1125993728637695, + "time": 26403878 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.119341850280762, + "time": 26403880 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.185765266418457, + "time": 26403882 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0799685716629028, + "time": 26403884 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0799685716629028, + "time": 26403886 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 4.220278739929199, + "time": 26403888 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.219038009643555, + "time": 26403890 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.219038009643555, + "time": 26403892 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.219038009643555, + "time": 26403894 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0411946773529053, + "time": 26403896 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "MousePosTracker.handleEvent (chrome://browser/content/browser.js:16678)", + "line": 16679 + } + ], + "responsiveness": 3.0141046047210693, + "time": 26403898 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.113980293273926, + "time": 26403900 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.113980293273926, + "time": 26403900 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.113980293273926, + "time": 26403902 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.113980293273926, + "time": 26403902 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.113980293273926, + "time": 26403904 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0218076705932617, + "time": 26403906 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1825051307678223, + "time": 26403908 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1825051307678223, + "time": 26403910 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1825051307678223, + "time": 26403912 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 9.1985502243042, + "time": 26403914 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.009503419511020184, + "time": 26403916 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.148153066635132, + "time": 26403918 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.148153066635132, + "time": 26403920 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.148153066635132, + "time": 26403922 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.148153066635132, + "time": 26403924 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.148153066635132, + "time": 26403926 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.009503419511020184, + "time": 26403928 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0763070583343506, + "time": 26403930 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0763070583343506, + "time": 26403932 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.071544647216797, + "time": 26403934 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.071544647216797, + "time": 26403936 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.071544647216797, + "time": 26403936 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.012164377607405186, + "time": 26403938 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0770673751831055, + "time": 26403940 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0770673751831055, + "time": 26403942 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0770673751831055, + "time": 26403944 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0770673751831055, + "time": 26403946 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 9.122142791748047, + "time": 26403948 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0769275426864624, + "time": 26403950 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0769275426864624, + "time": 26403950 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0769275426864624, + "time": 26403952 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0769275426864624, + "time": 26403954 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.349564552307129, + "time": 26403956 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.301186561584473, + "time": 26403958 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.301186561584473, + "time": 26403960 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1158413887023926, + "time": 26403962 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1158413887023926, + "time": 26403964 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.110318660736084, + "time": 26403966 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.034951210021973, + "time": 26403968 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.034951210021973, + "time": 26403970 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0552597045898438, + "time": 26403972 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0552597045898438, + "time": 26403974 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0552597045898438, + "time": 26403974 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0552597045898438, + "time": 26403976 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + } + ], + "responsiveness": 6.495397090911865, + "time": 26403978 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.592612266540527, + "time": 26403980 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.592612266540527, + "time": 26403982 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.07882821559906, + "time": 26403984 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.07882821559906, + "time": 26403986 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.161497116088867, + "time": 26403988 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.161497116088867, + "time": 26403990 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.161497116088867, + "time": 26403990 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.161497116088867, + "time": 26403992 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0109236240386963, + "time": 26403994 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.93479585647583, + "time": 26403996 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.021746635437012, + "time": 26403998 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.021746635437012, + "time": 26404000 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.021746635437012, + "time": 26404002 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.021746635437012, + "time": 26404004 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.999139428138733, + "time": 26404006 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "MousePosTracker.handleEvent (chrome://browser/content/browser.js:16678)", + "line": 16679 + } + ], + "responsiveness": 3.9830732345581055, + "time": 26404008 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.9848737716674805, + "time": 26404010 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.9848737716674805, + "time": 26404012 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.9848737716674805, + "time": 26404014 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 0.9959583878517151, + "time": 26404016 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 2.9779915809631348, + "time": 26404018 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 4.985113620758057, + "time": 26404020 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 7.046215534210205, + "time": 26404022 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 9.011902809143066, + "time": 26404024 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 10.121142387390137, + "time": 26404024 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 12.232421875, + "time": 26404028 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 14.233081817626953, + "time": 26404030 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowOuter::Paint", + "line": 2856 + } + ], + "responsiveness": 16.23069953918457, + "time": 26404032 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 18.2435245513916, + "time": 26404034 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayText::Paint", + "line": 4537 + } + ], + "responsiveness": 20.237342834472656, + "time": 26404036 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 22.226598739624023, + "time": 26404038 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 0.2250409722328186, + "time": 26404040 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 2.231022834777832, + "time": 26404042 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 4.232442855834961, + "time": 26404044 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + } + ], + "responsiveness": 6.3596882820129395, + "time": 26404046 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "MousePosTracker.handleEvent (chrome://browser/content/browser.js:16678)", + "line": 16679 + } + ], + "responsiveness": 8.200691223144531, + "time": 26404048 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.012164377607405186, + "time": 26404050 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.058440685272217, + "time": 26404052 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.058440685272217, + "time": 26404052 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.058440685272217, + "time": 26404054 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.188006401062012, + "time": 26404056 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.290543556213379, + "time": 26404058 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.290543556213379, + "time": 26404060 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1169817447662354, + "time": 26404062 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1169817447662354, + "time": 26404064 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.142630577087402, + "time": 26404066 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.142630577087402, + "time": 26404068 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.142630577087402, + "time": 26404070 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.006361961364746, + "time": 26404072 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.006361961364746, + "time": 26404074 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.006361961364746, + "time": 26404076 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.006361961364746, + "time": 26404078 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.006361961364746, + "time": 26404080 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.006361961364746, + "time": 26404082 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9603654146194458, + "time": 26404084 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9603654146194458, + "time": 26404086 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9603654146194458, + "time": 26404088 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.003780364990234, + "time": 26404090 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.003780364990234, + "time": 26404090 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.003780364990234, + "time": 26404092 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0888516902923584, + "time": 26404094 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26404096 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26404098 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26404100 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26404100 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26404102 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0503180027008057, + "time": 26404104 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033111333847046, + "time": 26404106 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033111333847046, + "time": 26404108 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033111333847046, + "time": 26404110 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033111333847046, + "time": 26404112 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033111333847046, + "time": 26404114 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + } + ], + "responsiveness": 1.0073624849319458, + "time": 26404116 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0696046352386475, + "time": 26404118 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0696046352386475, + "time": 26404120 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.100194931030273, + "time": 26404122 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.100194931030273, + "time": 26404124 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.100194931030273, + "time": 26404126 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0561599731445312, + "time": 26404128 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0561599731445312, + "time": 26404130 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0561599731445312, + "time": 26404132 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0561599731445312, + "time": 26404134 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0561599731445312, + "time": 26404136 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1096192598342896, + "time": 26404138 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1096192598342896, + "time": 26404140 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1096192598342896, + "time": 26404142 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1096192598342896, + "time": 26404144 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1096192598342896, + "time": 26404146 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1096192598342896, + "time": 26404148 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.11874258518219, + "time": 26404150 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.11874258518219, + "time": 26404150 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.11874258518219, + "time": 26404152 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.455723285675049, + "time": 26404154 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 7.603116035461426, + "time": 26404156 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.690827369689941, + "time": 26404158 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03739333152771, + "time": 26404160 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03739333152771, + "time": 26404162 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03739333152771, + "time": 26404162 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03739333152771, + "time": 26404164 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 7.36629056930542, + "time": 26404166 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.42701244354248, + "time": 26404168 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.013304787687957287, + "time": 26404170 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0820090770721436, + "time": 26404172 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0820090770721436, + "time": 26404174 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.133507251739502, + "time": 26404176 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.133507251739502, + "time": 26404178 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.133507251739502, + "time": 26404180 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.117982268333435, + "time": 26404182 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.117982268333435, + "time": 26404184 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + } + ], + "responsiveness": 4.262093544006348, + "time": 26404186 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.316732883453369, + "time": 26404188 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.316732883453369, + "time": 26404190 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.316732883453369, + "time": 26404190 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0073624849319458, + "time": 26404192 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0073624849319458, + "time": 26404194 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.989675521850586, + "time": 26404196 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.989675521850586, + "time": 26404198 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.989675521850586, + "time": 26404200 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.989675521850586, + "time": 26404202 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1023967266082764, + "time": 26404204 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 3.2376251220703125, + "time": 26404206 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.3344597816467285, + "time": 26404208 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.3344597816467285, + "time": 26404210 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.3344597816467285, + "time": 26404212 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.3344597816467285, + "time": 26404214 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0328316688537598, + "time": 26404216 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1125600337982178, + "time": 26404218 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1125600337982178, + "time": 26404220 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.089550971984863, + "time": 26404222 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.089550971984863, + "time": 26404222 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.089550971984863, + "time": 26404224 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 0.014445197768509388, + "time": 26404226 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1097590923309326, + "time": 26404228 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1097590923309326, + "time": 26404228 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1097590923309326, + "time": 26404230 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1097590923309326, + "time": 26404232 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1097590923309326, + "time": 26404234 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + } + ], + "responsiveness": 0.025849301367998123, + "time": 26404236 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0945537090301514, + "time": 26404238 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0945537090301514, + "time": 26404240 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0945537090301514, + "time": 26404242 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0945537090301514, + "time": 26404244 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0945537090301514, + "time": 26404244 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.344282150268555, + "time": 26404246 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0571603775024414, + "time": 26404248 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0571603775024414, + "time": 26404250 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0571603775024414, + "time": 26404250 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0571603775024414, + "time": 26404252 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.29710578918457, + "time": 26404254 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.288642883300781, + "time": 26404256 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.029410481452942, + "time": 26404258 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.029410481452942, + "time": 26404260 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.029410481452942, + "time": 26404262 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.029410481452942, + "time": 26404264 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.173320770263672, + "time": 26404266 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.269394874572754, + "time": 26404268 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26404270 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1209230422973633, + "time": 26404272 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1209230422973633, + "time": 26404274 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.045074939727783, + "time": 26404276 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.045074939727783, + "time": 26404278 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.045074939727783, + "time": 26404280 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.084290027618408, + "time": 26404282 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.084290027618408, + "time": 26404282 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 5.3226752281188965, + "time": 26404284 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.421030521392822, + "time": 26404288 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.421030521392822, + "time": 26404288 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.421030521392822, + "time": 26404290 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1134206056594849, + "time": 26404292 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1134206056594849, + "time": 26404294 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.27083683013916, + "time": 26404296 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.27083683013916, + "time": 26404298 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.27083683013916, + "time": 26404300 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0, + "time": 26404302 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9615057706832886, + "time": 26404304 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.9093267917633057, + "time": 26404306 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.9093267917633057, + "time": 26404308 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.9093267917633057, + "time": 26404308 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.9093267917633057, + "time": 26404310 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.9093267917633057, + "time": 26404312 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0214275121688843, + "time": 26404314 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 2.998138904571533, + "time": 26404316 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.086230278015137, + "time": 26404318 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.095633506774902, + "time": 26404320 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.095633506774902, + "time": 26404322 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.03231162577867508, + "time": 26404324 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0310709476470947, + "time": 26404326 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0310709476470947, + "time": 26404328 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0310709476470947, + "time": 26404330 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0310709476470947, + "time": 26404332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0310709476470947, + "time": 26404332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.02356848120689392, + "time": 26404334 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1204030513763428, + "time": 26404336 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1204030513763428, + "time": 26404338 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1204030513763428, + "time": 26404340 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1204030513763428, + "time": 26404342 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1204030513763428, + "time": 26404344 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.414227485656738, + "time": 26404346 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26404348 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26404348 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26404350 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26404350 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26404352 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + } + ], + "responsiveness": 8.447779655456543, + "time": 26404354 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": -0.02128766104578972, + "time": 26404356 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9979989528656006, + "time": 26404358 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9979989528656006, + "time": 26404360 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9979989528656006, + "time": 26404362 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + } + ], + "responsiveness": 7.204732418060303, + "time": 26404364 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.228960990905762, + "time": 26404366 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.228960990905762, + "time": 26404368 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0496976375579834, + "time": 26404370 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0496976375579834, + "time": 26404372 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0496976375579834, + "time": 26404374 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.1222429275512695, + "time": 26404376 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.1222429275512695, + "time": 26404378 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.1222429275512695, + "time": 26404380 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0379133224487305, + "time": 26404382 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0379133224487305, + "time": 26404384 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0379133224487305, + "time": 26404386 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.09045124053955, + "time": 26404388 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.09045124053955, + "time": 26404390 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.043095350265503, + "time": 26404392 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.016385316848755, + "time": 26404394 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26404396 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26404398 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26404400 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.028449535369873, + "time": 26404402 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051218032836914, + "time": 26404404 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051218032836914, + "time": 26404406 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051218032836914, + "time": 26404406 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051218032836914, + "time": 26404408 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051218032836914, + "time": 26404408 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051218032836914, + "time": 26404410 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051218032836914, + "time": 26404410 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0195268392562866, + "time": 26404412 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0195268392562866, + "time": 26404414 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0195268392562866, + "time": 26404416 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0195268392562866, + "time": 26404418 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.997077941894531, + "time": 26404420 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.997077941894531, + "time": 26404422 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0325913429260254, + "time": 26404424 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0325913429260254, + "time": 26404426 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0325913429260254, + "time": 26404428 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0325913429260254, + "time": 26404430 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0325913429260254, + "time": 26404430 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0325913429260254, + "time": 26404432 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + } + ], + "responsiveness": 0.017106154933571815, + "time": 26404434 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1006360054016113, + "time": 26404436 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26404438 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26404440 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26404440 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.391900062561035, + "time": 26404442 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 10.336679458618164, + "time": 26404444 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "SessionRecorder.prototype<.observe (resource://gre/components/DataReportingService.js:1944)", + "line": 1951 + }, + { + "location": "SessionRecorder.prototype<.onActivity (resource://gre/components/DataReportingService.js:1851)", + "line": 1858 + }, + { + "location": "SessionRecorder.prototype<.incrementActiveTicks (resource://gre/components/DataReportingService.js:1677)", + "line": 1678 + }, + { + "location": "js::RunScript" + }, + { + "location": "Preferences.prototype.set (resource://gre/modules/Preferences.jsm:98)", + "line": 105 + }, + { + "location": "Preferences.prototype._set (resource://gre/modules/Preferences.jsm:108)", + "line": 133 + } + ], + "responsiveness": 1.0438556671142578, + "time": 26404446 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1140806674957275, + "time": 26404448 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1140806674957275, + "time": 26404450 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1140806674957275, + "time": 26404452 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 8.267595291137695, + "time": 26404454 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 10.284220695495605, + "time": 26404456 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 1.0525987148284912, + "time": 26404458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 3.0570600032806396, + "time": 26404460 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 5.052778244018555, + "time": 26404462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 7.038232803344727, + "time": 26404464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 9.056379318237305, + "time": 26404466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowOuter::Paint", + "line": 2856 + } + ], + "responsiveness": 11.196168899536133, + "time": 26404468 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + } + ], + "responsiveness": 13.204812049865723, + "time": 26404470 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + } + ], + "responsiveness": 15.207752227783203, + "time": 26404472 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + } + ], + "responsiveness": 17.179141998291016, + "time": 26404474 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + } + ], + "responsiveness": 19.179040908813477, + "time": 26404476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 0.6158215999603271, + "time": 26404478 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 2.6313068866729736, + "time": 26404480 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 4.634627819061279, + "time": 26404482 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.629965782165527, + "time": 26404484 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.662557601928711, + "time": 26404486 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.649911880493164, + "time": 26404488 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9636467695236206, + "time": 26404490 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9636467695236206, + "time": 26404492 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9636467695236206, + "time": 26404494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9636467695236206, + "time": 26404496 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9636467695236206, + "time": 26404498 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9636467695236206, + "time": 26404498 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0871912240982056, + "time": 26404500 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0593409538269043, + "time": 26404502 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0593409538269043, + "time": 26404504 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0593409538269043, + "time": 26404506 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0593409538269043, + "time": 26404508 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0593409538269043, + "time": 26404510 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0811090469360352, + "time": 26404512 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0811090469360352, + "time": 26404514 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0811090469360352, + "time": 26404516 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0811090469360352, + "time": 26404518 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0811090469360352, + "time": 26404520 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0811090469360352, + "time": 26404522 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "MousePosTracker.handleEvent (chrome://browser/content/browser.js:16678)", + "line": 16679 + } + ], + "responsiveness": 2.017765998840332, + "time": 26404524 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.090271949768066, + "time": 26404526 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.090271949768066, + "time": 26404528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.090271949768066, + "time": 26404528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.090271949768066, + "time": 26404532 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.090271949768066, + "time": 26404532 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.106718063354492, + "time": 26404536 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.106718063354492, + "time": 26404536 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.106718063354492, + "time": 26404538 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.106718063354492, + "time": 26404538 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.513023376464844, + "time": 26404540 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.463885307312012, + "time": 26404542 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.018246565014123917, + "time": 26404544 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26404546 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26404548 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26404550 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26404552 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26404554 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.025609016418457, + "time": 26404556 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033491611480713, + "time": 26404558 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033491611480713, + "time": 26404560 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033491611480713, + "time": 26404560 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + } + ], + "responsiveness": 8.052437782287598, + "time": 26404562 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.107457160949707, + "time": 26404564 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0780678987503052, + "time": 26404566 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0780678987503052, + "time": 26404568 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.084329605102539, + "time": 26404570 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.084329605102539, + "time": 26404572 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.084329605102539, + "time": 26404574 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.084329605102539, + "time": 26404576 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0785880088806152, + "time": 26404578 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0785880088806152, + "time": 26404580 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.994377136230469, + "time": 26404582 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.055098533630371, + "time": 26404584 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.058419227600098, + "time": 26404586 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0860507488250732, + "time": 26404588 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0860507488250732, + "time": 26404590 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0860507488250732, + "time": 26404592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0860507488250732, + "time": 26404594 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0860507488250732, + "time": 26404596 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0860507488250732, + "time": 26404598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0860507488250732, + "time": 26404600 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26404602 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + } + ], + "responsiveness": 4.221038818359375, + "time": 26404604 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.313311576843262, + "time": 26404606 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.313311576843262, + "time": 26404608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.313311576843262, + "time": 26404608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0362528562545776, + "time": 26404610 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0362528562545776, + "time": 26404612 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.197470188140869, + "time": 26404614 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.197470188140869, + "time": 26404616 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.197470188140869, + "time": 26404618 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.197470188140869, + "time": 26404620 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.059061050415039, + "time": 26404622 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.014864921569824, + "time": 26404624 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.014864921569824, + "time": 26404626 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.014864921569824, + "time": 26404628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.014864921569824, + "time": 26404628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.014864921569824, + "time": 26404630 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + } + ], + "responsiveness": 1.040054202079773, + "time": 26404632 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.111419677734375, + "time": 26404634 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.080148220062256, + "time": 26404636 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.080148220062256, + "time": 26404638 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.080148220062256, + "time": 26404640 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + } + ], + "responsiveness": 0.018626702949404716, + "time": 26404642 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.114320755004883, + "time": 26404644 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.114320755004883, + "time": 26404646 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.114320755004883, + "time": 26404648 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.114320755004883, + "time": 26404650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.114320755004883, + "time": 26404652 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.381916046142578, + "time": 26404654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26404656 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26404656 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26404658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26404660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 8.334118843078613, + "time": 26404662 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": -0.031171217560768127, + "time": 26404664 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.99039626121521, + "time": 26404666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.99039626121521, + "time": 26404668 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.021746635437012, + "time": 26404670 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "MousePosTracker.handleEvent (chrome://browser/content/browser.js:16678)", + "line": 16679 + } + ], + "responsiveness": 7.935735702514648, + "time": 26404672 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.040172576904297, + "time": 26404674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1023967266082764, + "time": 26404676 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1023967266082764, + "time": 26404678 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1023967266082764, + "time": 26404680 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1023967266082764, + "time": 26404680 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.246927738189697, + "time": 26404682 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.246927738189697, + "time": 26404684 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "f (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:815)", + "line": 821 + }, + { + "location": "Z (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:915)", + "line": 929 + }, + { + "location": "js::RunScript" + }, + { + "location": "G (https://ssl.gstatic.com/accounts/o/682094929-postmessagerelay.js:6)", + "line": 6 + }, + { + "location": "E (https://ssl.gstatic.com/accounts/o/682094929-postmessagerelay.js:6)", + "line": 6 + }, + { + "location": "EnterJIT" + }, + { + "location": "D.prototype.evaluate (https://ssl.gstatic.com/accounts/o/682094929-postmessagerelay.js:4)", + "line": 5 + }, + { + "location": "C (https://ssl.gstatic.com/accounts/o/682094929-postmessagerelay.js:3)", + "line": 3 + }, + { + "location": "c (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:1219)", + "line": 1219 + }, + { + "location": "k (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:1203)", + "line": 1206 + }, + { + "location": "f (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:1185)", + "line": 1199 + }, + { + "location": "a (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:1150)", + "line": 1174 + } + ], + "responsiveness": 0.02280820719897747, + "time": 26404686 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "c (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:109)", + "line": 110 + }, + { + "location": "g (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:118)", + "line": 119 + }, + { + "location": "js::RunScript" + }, + { + "location": "_.T resource://gre/modules/devtools/toolkit/webconsole/utils.js:1343)", + "line": 1345 + } + ], + "responsiveness": 9.211854934692383, + "time": 26405316 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 138.26905822753906, + "time": 26405456 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 140.31646728515625, + "time": 26405458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 142.31370544433594, + "time": 26405460 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 144.3147430419922, + "time": 26405462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 146.34088134765625, + "time": 26405464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 148.35826110839844, + "time": 26405466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 150.4033966064453, + "time": 26405468 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 152.40406799316406, + "time": 26405470 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2096 + }, + { + "location": "WCF__outputMessageFromQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2195)", + "line": 2200 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF_reportPageError (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:1342)", + "line": 1370 + }, + { + "location": "WCF_createMessageNode (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2442)", + "line": 2526 + }, + { + "location": "js::RunScript" + }, + { + "location": "indexOf (self-hosted:755)", + "line": 755 + } + ], + "responsiveness": 1.1506741046905518, + "time": 26405568 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2096 + }, + { + "location": "WCF__outputMessageFromQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2195)", + "line": 2213 + }, + { + "location": "WCF__filterRepeatedMessage (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:1099)", + "line": 1119 + } + ], + "responsiveness": 3.2589128017425537, + "time": 26405570 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 5.223079681396484, + "time": 26405572 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 7.2286810874938965, + "time": 26405574 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 534 + } + ], + "responsiveness": 9.216796875, + "time": 26405576 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 0.0038013679441064596, + "time": 26405578 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 2.0219476222991943, + "time": 26405580 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 4.004361152648926, + "time": 26405582 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 6.024407863616943, + "time": 26405584 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 8.009861946105957, + "time": 26405586 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 10.05955982208252, + "time": 26405588 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 12.029048919677734, + "time": 26405590 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 14.875513076782227, + "time": 26405592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 0.9963385462760925, + "time": 26405594 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 2.998518943786621, + "time": 26405596 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 4.997278213500977, + "time": 26405598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 7.003260135650635, + "time": 26405600 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 9.004300117492676, + "time": 26405602 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 0.004941778257489204, + "time": 26405604 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.036012649536133, + "time": 26405606 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.032110691070557, + "time": 26405608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.059760570526123, + "time": 26405610 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + } + ], + "responsiveness": 8.025067329406738, + "time": 26405612 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 10.024967193603516, + "time": 26405614 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 0.9967186450958252, + "time": 26405616 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 3.0361526012420654, + "time": 26405618 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 5.129185676574707, + "time": 26405620 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 7.046975612640381, + "time": 26405622 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 8.989094734191895, + "time": 26405624 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 0.014445197768509388, + "time": 26405626 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.045516014099121, + "time": 26405628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.045516014099121, + "time": 26405630 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.073825836181641, + "time": 26405632 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.073825836181641, + "time": 26405634 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.073825836181641, + "time": 26405636 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0297905206680298, + "time": 26405638 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 2.9836935997009277, + "time": 26405640 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 4.987014293670654, + "time": 26405642 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 6.030869960784912, + "time": 26405644 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 8.062701225280762, + "time": 26405646 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.186905860900879, + "time": 26405648 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26405650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26405652 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26405654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.375033855438232, + "time": 26405656 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.375033855438232, + "time": 26405658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.016865849494934, + "time": 26405660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.016865849494934, + "time": 26405660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.016865849494934, + "time": 26405662 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.016865849494934, + "time": 26405664 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.016865849494934, + "time": 26405666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.016865849494934, + "time": 26405666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.016865849494934, + "time": 26405670 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0544995069503784, + "time": 26405672 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0426149368286133, + "time": 26405674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0426149368286133, + "time": 26405674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.200791358947754, + "time": 26405676 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.200791358947754, + "time": 26405678 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.200791358947754, + "time": 26405680 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0335919857025146, + "time": 26405682 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + } + ], + "responsiveness": 3.0296902656555176, + "time": 26405684 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 5.023507595062256, + "time": 26405686 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + } + ], + "responsiveness": 7.069784164428711, + "time": 26405688 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.137727737426758, + "time": 26405690 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.137727737426758, + "time": 26405692 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.035252332687378, + "time": 26405694 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.035252332687378, + "time": 26405696 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.035252332687378, + "time": 26405698 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.035252332687378, + "time": 26405700 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.035252332687378, + "time": 26405702 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.035252332687378, + "time": 26405704 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1207830905914307, + "time": 26405706 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.3661112785339355, + "time": 26405706 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.3661112785339355, + "time": 26405708 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.3661112785339355, + "time": 26405710 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.539532661437988, + "time": 26405712 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0712255239486694, + "time": 26405714 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0712255239486694, + "time": 26405716 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0712255239486694, + "time": 26405718 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0712255239486694, + "time": 26405718 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0712255239486694, + "time": 26405720 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0712255239486694, + "time": 26405722 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.54371452331543, + "time": 26405724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04485614225268364, + "time": 26405726 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26405728 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26405728 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26405730 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26405732 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26405734 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0324515104293823, + "time": 26405736 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0324515104293823, + "time": 26405738 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0324515104293823, + "time": 26405740 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0324515104293823, + "time": 26405742 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0324515104293823, + "time": 26405744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0324515104293823, + "time": 26405744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0324515104293823, + "time": 26405746 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.091132402420044, + "time": 26405748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.091132402420044, + "time": 26405750 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.091132402420044, + "time": 26405752 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.354366779327393, + "time": 26405754 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.354366779327393, + "time": 26405756 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.354366779327393, + "time": 26405758 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0522186756134033, + "time": 26405760 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0522186756134033, + "time": 26405762 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0522186756134033, + "time": 26405764 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0522186756134033, + "time": 26405766 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0522186756134033, + "time": 26405768 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0522186756134033, + "time": 26405770 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.002560615539551, + "time": 26405772 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.002560615539551, + "time": 26405774 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.002560615539551, + "time": 26405776 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.14709186553955, + "time": 26405778 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.14709186553955, + "time": 26405780 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1023967266082764, + "time": 26405782 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1023967266082764, + "time": 26405784 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1023967266082764, + "time": 26405786 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 7.0321502685546875, + "time": 26405788 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 8.143670082092285, + "time": 26405788 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 9.251008987426758, + "time": 26405790 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 1.0123043060302734, + "time": 26405792 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 3.0068819522857666, + "time": 26405794 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 5.005641460418701, + "time": 26405796 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 7.116540908813477, + "time": 26405798 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.15711498260498, + "time": 26405800 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.15711498260498, + "time": 26405802 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.11318039894104, + "time": 26405804 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.11318039894104, + "time": 26405806 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.11318039894104, + "time": 26405806 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.11318039894104, + "time": 26405808 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.11318039894104, + "time": 26405810 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.11318039894104, + "time": 26405810 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.11318039894104, + "time": 26405812 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.107718586921692, + "time": 26405814 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.107718586921692, + "time": 26405816 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.107718586921692, + "time": 26405818 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.107718586921692, + "time": 26405818 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.382636547088623, + "time": 26405820 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.382636547088623, + "time": 26405822 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26405824 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26405826 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26405828 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26405830 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26405830 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26405832 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.015205471776425838, + "time": 26405834 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26405836 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26405838 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26405840 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26405842 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26405842 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26405844 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26405846 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1032967567443848, + "time": 26405848 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1032967567443848, + "time": 26405850 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1032967567443848, + "time": 26405852 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.226020336151123, + "time": 26405854 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.226020336151123, + "time": 26405854 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.226020336151123, + "time": 26405856 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0347323417663574, + "time": 26405858 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0347323417663574, + "time": 26405858 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0347323417663574, + "time": 26405860 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0347323417663574, + "time": 26405862 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0347323417663574, + "time": 26405864 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0347323417663574, + "time": 26405866 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0347323417663574, + "time": 26405868 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26405870 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26405872 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26405874 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26405876 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.191327095031738, + "time": 26405878 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.191327095031738, + "time": 26405878 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0896120071411133, + "time": 26405880 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0896120071411133, + "time": 26405882 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0896120071411133, + "time": 26405886 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.013283729553223, + "time": 26405886 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.013283729553223, + "time": 26405888 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26405890 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26405892 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26405894 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26405896 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26405898 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26405900 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26405902 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.091512680053711, + "time": 26405904 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.098634719848633, + "time": 26405906 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.098634719848633, + "time": 26405906 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.098634719848633, + "time": 26405908 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.098634719848633, + "time": 26405908 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.098634719848633, + "time": 26405910 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.098634719848633, + "time": 26405910 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9974789619445801, + "time": 26405912 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9974789619445801, + "time": 26405914 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9974789619445801, + "time": 26405916 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9974789619445801, + "time": 26405916 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9974789619445801, + "time": 26405918 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.122902870178223, + "time": 26405920 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.122902870178223, + "time": 26405922 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0812489986419678, + "time": 26405924 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0812489986419678, + "time": 26405926 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0812489986419678, + "time": 26405928 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0812489986419678, + "time": 26405930 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0812489986419678, + "time": 26405932 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0812489986419678, + "time": 26405932 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0812489986419678, + "time": 26405934 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.106718063354492, + "time": 26405936 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.106718063354492, + "time": 26405938 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.106718063354492, + "time": 26405940 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.106718063354492, + "time": 26405942 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.106718063354492, + "time": 26405944 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0191466808319092, + "time": 26405946 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0191466808319092, + "time": 26405948 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0191466808319092, + "time": 26405948 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0191466808319092, + "time": 26405950 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0191466808319092, + "time": 26405952 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.17080020904541, + "time": 26405954 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.17080020904541, + "time": 26405956 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1059577465057373, + "time": 26405958 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1059577465057373, + "time": 26405958 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1059577465057373, + "time": 26405960 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1059577465057373, + "time": 26405962 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1059577465057373, + "time": 26405964 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1059577465057373, + "time": 26405964 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1059577465057373, + "time": 26405966 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.07578706741333, + "time": 26405968 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1095190048217773, + "time": 26405970 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1095190048217773, + "time": 26405972 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1095190048217773, + "time": 26405972 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1095190048217773, + "time": 26405974 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1095190048217773, + "time": 26405974 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1095190048217773, + "time": 26405976 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": -0.03307190164923668, + "time": 26405978 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9660674333572388, + "time": 26405980 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9660674333572388, + "time": 26405982 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9660674333572388, + "time": 26405982 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9660674333572388, + "time": 26405984 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 9.047636032104492, + "time": 26405986 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 0.01178424060344696, + "time": 26405988 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 2.0493173599243164, + "time": 26405990 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 4.046175956726074, + "time": 26405992 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 6.041513919830322, + "time": 26405994 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 8.021265983581543, + "time": 26405996 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 10.098713874816895, + "time": 26405998 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 0.39610254764556885, + "time": 26406000 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.4343960285186768, + "time": 26406004 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.4343960285186768, + "time": 26406006 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.4343960285186768, + "time": 26406008 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.4343960285186768, + "time": 26406010 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.4343960285186768, + "time": 26406010 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0107836723327637, + "time": 26406012 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0107836723327637, + "time": 26406014 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0107836723327637, + "time": 26406016 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0107836723327637, + "time": 26406018 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.044974327087402, + "time": 26406020 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.044974327087402, + "time": 26406022 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0389138460159302, + "time": 26406024 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0389138460159302, + "time": 26406026 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0389138460159302, + "time": 26406028 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0389138460159302, + "time": 26406028 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0389138460159302, + "time": 26406030 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0389138460159302, + "time": 26406032 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0389138460159302, + "time": 26406032 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0389138460159302, + "time": 26406034 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0489373207092285, + "time": 26406036 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0489373207092285, + "time": 26406038 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0489373207092285, + "time": 26406040 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0489373207092285, + "time": 26406042 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0489373207092285, + "time": 26406044 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0489373207092285, + "time": 26406046 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.108238697052002, + "time": 26406048 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.108238697052002, + "time": 26406050 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.108238697052002, + "time": 26406052 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.099574089050293, + "time": 26406054 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.099574089050293, + "time": 26406054 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.003941297531128, + "time": 26406056 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.003941297531128, + "time": 26406058 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.003941297531128, + "time": 26406060 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.003941297531128, + "time": 26406062 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.003941297531128, + "time": 26406062 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.003941297531128, + "time": 26406064 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.003941297531128, + "time": 26406066 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.003941297531128, + "time": 26406068 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0493173599243164, + "time": 26406070 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.080768585205078, + "time": 26406072 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.080768585205078, + "time": 26406074 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.080768585205078, + "time": 26406074 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.080768585205078, + "time": 26406076 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04713696241378784, + "time": 26406078 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1101393699645996, + "time": 26406080 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1101393699645996, + "time": 26406082 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1101393699645996, + "time": 26406084 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1101393699645996, + "time": 26406084 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.429533004760742, + "time": 26406086 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.429533004760742, + "time": 26406088 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0020406246185303, + "time": 26406090 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0020406246185303, + "time": 26406092 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0020406246185303, + "time": 26406092 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0020406246185303, + "time": 26406094 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0020406246185303, + "time": 26406094 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0020406246185303, + "time": 26406096 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0020406246185303, + "time": 26406096 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0020406246185303, + "time": 26406098 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0020406246185303, + "time": 26406098 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9693487882614136, + "time": 26406100 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 2.953662872314453, + "time": 26406102 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.006401538848877, + "time": 26406104 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.006401538848877, + "time": 26406108 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.006401538848877, + "time": 26406108 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.006401538848877, + "time": 26406110 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0926530361175537, + "time": 26406114 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0926530361175537, + "time": 26406116 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0926530361175537, + "time": 26406118 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0926530361175537, + "time": 26406118 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.296625137329102, + "time": 26406120 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.296625137329102, + "time": 26406122 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0835297107696533, + "time": 26406124 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0835297107696533, + "time": 26406126 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0835297107696533, + "time": 26406128 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0835297107696533, + "time": 26406130 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0835297107696533, + "time": 26406132 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0835297107696533, + "time": 26406132 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0139646530151367, + "time": 26406134 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26406136 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26406138 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26406140 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26406142 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.010443210601807, + "time": 26406144 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1138007640838623, + "time": 26406146 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1138007640838623, + "time": 26406146 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1138007640838623, + "time": 26406148 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1138007640838623, + "time": 26406150 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.248208045959473, + "time": 26406152 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.248208045959473, + "time": 26406154 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9124681949615479, + "time": 26406156 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9124681949615479, + "time": 26406158 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9124681949615479, + "time": 26406160 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9124681949615479, + "time": 26406162 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9124681949615479, + "time": 26406164 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0005199909210205, + "time": 26406166 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0005199909210205, + "time": 26406168 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.022367477416992, + "time": 26406170 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.022367477416992, + "time": 26406172 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.022367477416992, + "time": 26406174 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.022367477416992, + "time": 26406176 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.022367477416992, + "time": 26406176 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26406180 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26406182 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26406184 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26406184 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26406186 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.016345882788300514, + "time": 26406188 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.052358627319336, + "time": 26406190 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.052358627319336, + "time": 26406192 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.052358627319336, + "time": 26406192 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.052358627319336, + "time": 26406194 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.052358627319336, + "time": 26406196 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.052358627319336, + "time": 26406198 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0153453350067139, + "time": 26406200 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0153453350067139, + "time": 26406202 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.98891544342041, + "time": 26406204 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.98891544342041, + "time": 26406206 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.98891544342041, + "time": 26406206 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.98891544342041, + "time": 26406208 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1233042478561401, + "time": 26406210 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1233042478561401, + "time": 26406212 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1233042478561401, + "time": 26406214 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1233042478561401, + "time": 26406214 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1233042478561401, + "time": 26406216 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1233042478561401, + "time": 26406218 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.433614730834961, + "time": 26406220 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26406222 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26406224 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26406226 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26406226 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26406228 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26406228 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26406230 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26406232 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101016044616699, + "time": 26406234 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.10205602645874, + "time": 26406236 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.10205602645874, + "time": 26406238 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.10205602645874, + "time": 26406240 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.10205602645874, + "time": 26406240 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.10205602645874, + "time": 26406242 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0265092849731445, + "time": 26406244 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0265092849731445, + "time": 26406246 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0265092849731445, + "time": 26406248 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0265092849731445, + "time": 26406250 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0265092849731445, + "time": 26406252 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.039914362132549286, + "time": 26406254 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1561357975006104, + "time": 26406256 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1561357975006104, + "time": 26406258 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1561357975006104, + "time": 26406258 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1561357975006104, + "time": 26406260 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1561357975006104, + "time": 26406262 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1561357975006104, + "time": 26406264 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0465165376663208, + "time": 26406266 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0465165376663208, + "time": 26406268 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.107137680053711, + "time": 26406270 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.107137680053711, + "time": 26406272 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.107137680053711, + "time": 26406274 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.107137680053711, + "time": 26406276 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0504579544067383, + "time": 26406278 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.073545932769775, + "time": 26406280 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.073545932769775, + "time": 26406282 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.073545932769775, + "time": 26406284 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.264833450317383, + "time": 26406286 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.048797369003296, + "time": 26406288 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.048797369003296, + "time": 26406290 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.048797369003296, + "time": 26406290 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.048797369003296, + "time": 26406292 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.048797369003296, + "time": 26406294 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.048797369003296, + "time": 26406296 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.048797369003296, + "time": 26406298 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0689446926116943, + "time": 26406300 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0578203201293945, + "time": 26406302 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0578203201293945, + "time": 26406304 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.0998148918151855, + "time": 26406306 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.0998148918151855, + "time": 26406308 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9739104509353638, + "time": 26406310 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9739104509353638, + "time": 26406312 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.023507595062256, + "time": 26406314 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.023507595062256, + "time": 26406314 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.023507595062256, + "time": 26406316 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + } + ], + "responsiveness": 10.615699768066406, + "time": 26406320 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0427151918411255, + "time": 26406320 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0427151918411255, + "time": 26406322 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0427151918411255, + "time": 26406324 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0427151918411255, + "time": 26406326 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0427151918411255, + "time": 26406328 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0427151918411255, + "time": 26406330 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1050575971603394, + "time": 26406332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1050575971603394, + "time": 26406334 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1050575971603394, + "time": 26406336 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.110458850860596, + "time": 26406338 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.110458850860596, + "time": 26406340 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.110458850860596, + "time": 26406342 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26406342 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26406344 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26406346 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26406348 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26406348 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26406350 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26406352 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0890918970108032, + "time": 26406352 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1088590621948242, + "time": 26406354 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1088590621948242, + "time": 26406356 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1088590621948242, + "time": 26406358 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1088590621948242, + "time": 26406360 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1088590621948242, + "time": 26406362 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9773316979408264, + "time": 26406364 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9773316979408264, + "time": 26406366 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9773316979408264, + "time": 26406368 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + } + ], + "responsiveness": 6.116400718688965, + "time": 26406370 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 8.144050598144531, + "time": 26406372 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.204011917114258, + "time": 26406374 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1080987453460693, + "time": 26406376 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1080987453460693, + "time": 26406378 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1080987453460693, + "time": 26406380 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.061420917510986, + "time": 26406382 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.061420917510986, + "time": 26406384 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.061420917510986, + "time": 26406386 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "layout::Flush (Flush_InterruptibleLayout)", + "line": 3969 + } + ], + "responsiveness": 2.051978349685669, + "time": 26406388 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 4.016905307769775, + "time": 26406390 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.020606517791748, + "time": 26406392 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 8.01822566986084, + "time": 26406394 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 10.016984939575195, + "time": 26406396 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 1.046136498451233, + "time": 26406398 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 3.015244960784912, + "time": 26406400 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 5.0485968589782715, + "time": 26406402 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowOuter::Paint", + "line": 2856 + } + ], + "responsiveness": 7.03937292098999, + "time": 26406404 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsCSSRendering::PaintBackground", + "line": 1350 + } + ], + "responsiveness": 9.06778335571289, + "time": 26406406 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 0.6287462711334229, + "time": 26406408 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 2.8331594467163086, + "time": 26406410 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 365 + }, + { + "location": "PreviewController.prototype.onTabPaint (resource://app/modules/WindowsPreviewPerTab.jsm:261)", + "line": 262 + } + ], + "responsiveness": 4.647932529449463, + "time": 26406412 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + } + ], + "responsiveness": 6.644791126251221, + "time": 26406414 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 8.622262954711914, + "time": 26406416 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04789723455905914, + "time": 26406418 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0443756580352783, + "time": 26406420 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26406422 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26406422 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26406424 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26406426 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26406428 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.042335033416748, + "time": 26406430 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.042335033416748, + "time": 26406432 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.042335033416748, + "time": 26406434 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.042335033416748, + "time": 26406436 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.054098129272461, + "time": 26406438 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.054098129272461, + "time": 26406440 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1035370826721191, + "time": 26406442 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1035370826721191, + "time": 26406442 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1035370826721191, + "time": 26406446 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1035370826721191, + "time": 26406446 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1035370826721191, + "time": 26406448 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.013304787687957287, + "time": 26406450 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2308828830718994, + "time": 26406452 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2308828830718994, + "time": 26406454 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2308828830718994, + "time": 26406456 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2308828830718994, + "time": 26406458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2308828830718994, + "time": 26406460 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2308828830718994, + "time": 26406462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1073384284973145, + "time": 26406464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1073384284973145, + "time": 26406466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.321915149688721, + "time": 26406468 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.321915149688721, + "time": 26406470 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.321915149688721, + "time": 26406470 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.321915149688721, + "time": 26406472 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9921570420265198, + "time": 26406474 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9921570420265198, + "time": 26406474 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9921570420265198, + "time": 26406476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9921570420265198, + "time": 26406478 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9921570420265198, + "time": 26406478 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9921570420265198, + "time": 26406480 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.54371452331543, + "time": 26406482 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.08971228450536728, + "time": 26406484 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.08971228450536728, + "time": 26406486 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.08971228450536728, + "time": 26406488 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.08971228450536728, + "time": 26406490 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.08971228450536728, + "time": 26406490 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.185105323791504, + "time": 26406492 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.185105323791504, + "time": 26406494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0484172105789185, + "time": 26406496 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0484172105789185, + "time": 26406498 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0484172105789185, + "time": 26406500 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.093732833862305, + "time": 26406502 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.093732833862305, + "time": 26406504 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.093732833862305, + "time": 26406506 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9637866020202637, + "time": 26406508 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-004.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 3.911607503890991, + "time": 26406510 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-004.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 5.912267684936523, + "time": 26406512 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-004.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 7.914447784423828, + "time": 26406514 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-004.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 9.916248321533203, + "time": 26406516 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-004.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 0.9818933010101318, + "time": 26406518 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-004.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 2.998138904571533, + "time": 26406520 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + } + ], + "responsiveness": 5.0311102867126465, + "time": 26406522 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + } + ], + "responsiveness": 7.024927616119385, + "time": 26406524 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 53 + } + ], + "responsiveness": 9.086790084838867, + "time": 26406526 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 53 + } + ], + "responsiveness": 11.20111083984375, + "time": 26406528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 54 + }, + { + "location": "EnterJIT" + }, + { + "location": "CVUtils.computeGray (http://barcode.oberhofer.dev/js/cv_utils.js:657)", + "line": 663 + } + ], + "responsiveness": 13.197209358215332, + "time": 26406530 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 210 + }, + { + "location": "initArray (http://barcode.oberhofer.dev/js/typedefs.js:186)", + "line": 187 + } + ], + "responsiveness": 15.182662963867188, + "time": 26406532 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 212 + }, + { + "location": "Rasterizer.create/<.rasterize (http://barcode.oberhofer.dev/js/rasterizer.js:32)", + "line": 70 + } + ], + "responsiveness": 17.184083938598633, + "time": 26406534 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "skeletonize (http://barcode.oberhofer.dev/js/barcode_locator.js:342)", + "line": 344 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 19.19690704345703, + "time": 26406536 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 212 + }, + { + "location": "Rasterizer.create/<.rasterize (http://barcode.oberhofer.dev/js/rasterizer.js:32)" + } + ], + "responsiveness": 20.239622116088867, + "time": 26406536 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "skeletonize (http://barcode.oberhofer.dev/js/barcode_locator.js:342)", + "line": 344 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 22.24028205871582, + "time": 26406538 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "skeletonize (http://barcode.oberhofer.dev/js/barcode_locator.js:342)", + "line": 344 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 24.28656005859375, + "time": 26406540 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "skeletonize (http://barcode.oberhofer.dev/js/barcode_locator.js:342)", + "line": 344 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 26.28683853149414, + "time": 26406542 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 212 + }, + { + "location": "Rasterizer.create/<.rasterize (http://barcode.oberhofer.dev/js/rasterizer.js:32)" + } + ], + "responsiveness": 28.28445816040039, + "time": 26406544 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "skeletonize (http://barcode.oberhofer.dev/js/barcode_locator.js:342)", + "line": 344 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 30.271053314208984, + "time": 26406546 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "skeletonize (http://barcode.oberhofer.dev/js/barcode_locator.js:342)", + "line": 344 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 32.271331787109375, + "time": 26406548 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "skeletonize (http://barcode.oberhofer.dev/js/barcode_locator.js:342)", + "line": 344 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 34.27275085449219, + "time": 26406550 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 36.28671646118164, + "time": 26406552 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 219 + }, + { + "location": "ImageWrapper.prototype.moments (http://barcode.oberhofer.dev/js/image_wrapper.js:279)", + "line": 280 + } + ], + "responsiveness": 38.2930793762207, + "time": 26406554 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 40.277774810791016, + "time": 26406556 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 42.295921325683594, + "time": 26406558 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "ImageWrapper.prototype.subImageAsCopy (http://barcode.oberhofer.dev/js/image_wrapper.js:167)" + } + ], + "responsiveness": 44.34333801269531, + "time": 26406560 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 46.34437561035156, + "time": 26406562 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 48.436649322509766, + "time": 26406564 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 50.464298248291016, + "time": 26406566 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 52.482444763183594, + "time": 26406570 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 54.528343200683594, + "time": 26406572 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 56.52748107910156, + "time": 26406574 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "ImageWrapper.prototype.subImageAsCopy (http://barcode.oberhofer.dev/js/image_wrapper.js:167)" + } + ], + "responsiveness": 58.57109451293945, + "time": 26406576 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 222 + }, + { + "location": "extractPatches (http://barcode.oberhofer.dev/js/barcode_locator.js:367)", + "line": 379 + } + ], + "responsiveness": 60.55768966674805, + "time": 26406578 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 219 + }, + { + "location": "ImageWrapper.prototype.moments (http://barcode.oberhofer.dev/js/image_wrapper.js:279)" + } + ], + "responsiveness": 62.57697677612305, + "time": 26406580 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 64.57535552978516, + "time": 26406582 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 219 + }, + { + "location": "ImageWrapper.prototype.moments (http://barcode.oberhofer.dev/js/image_wrapper.js:279)" + } + ], + "responsiveness": 66.57563781738281, + "time": 26406584 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 68.57819366455078, + "time": 26406586 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 70.62105560302734, + "time": 26406588 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 72.66694641113281, + "time": 26406590 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 74.6679916381836, + "time": 26406592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 76.66712951660156, + "time": 26406594 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 78.7099838256836, + "time": 26406596 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 268 + }, + { + "location": "BarcodeDecoder.create/<.decodeFromBoundingBoxes (http://barcode.oberhofer.dev/js/barcode_decoder.js:166)", + "line": 170 + }, + { + "location": "decodeFromBoundingBox (http://barcode.oberhofer.dev/js/barcode_decoder.js:55)", + "line": 56 + }, + { + "location": "layout::Flush (Flush_Style)", + "line": 3969 + }, + { + "location": "CSS::ProcessRestyles", + "line": 137 + }, + { + "location": "CSS::ComputeStyleChangeFor", + "line": 2902 + }, + { + "location": "nsStyleSet::FileRules", + "line": 943 + } + ], + "responsiveness": 80.75360107421875, + "time": 26406598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 268 + }, + { + "location": "BarcodeDecoder.create/<.decodeFromBoundingBoxes (http://barcode.oberhofer.dev/js/barcode_decoder.js:166)", + "line": 170 + }, + { + "location": "decodeFromBoundingBox (http://barcode.oberhofer.dev/js/barcode_decoder.js:55)", + "line": 138 + }, + { + "location": "EnterJIT" + }, + { + "location": "decodeFromBoundingBox (http://barcode.oberhofer.dev/js/barcode_decoder.js:55)", + "line": 138 + }, + { + "location": "js::RunScript" + }, + { + "location": "BarcodeReader.create/that.decodePattern (http://barcode.oberhofer.dev/js/barcode_reader.js:123)", + "line": 128 + }, + { + "location": "EnterJIT" + }, + { + "location": "Code128Reader.create/that.decode (http://barcode.oberhofer.dev/js/code_128_reader.js:139)", + "line": 175 + }, + { + "location": "Code128Reader.create/that.decodeCode (http://barcode.oberhofer.dev/js/code_128_reader.js:6)", + "line": 24 + }, + { + "location": "BarcodeReader.create/that.matchPattern (http://barcode.oberhofer.dev/js/barcode_reader.js:20)", + "line": 21 + } + ], + "responsiveness": 82.7839126586914, + "time": 26406600 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 84.78646850585938, + "time": 26406602 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 86.79739379882812, + "time": 26406604 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 88.8451919555664, + "time": 26406606 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 90.89260864257812, + "time": 26406608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + }, + { + "location": "js::RunScript" + } + ], + "responsiveness": 1.536512851715088, + "time": 26406610 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.6401898860931396, + "time": 26406612 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.6401898860931396, + "time": 26406614 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.711834907531738, + "time": 26406616 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.711834907531738, + "time": 26406618 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26406620 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26406620 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26406622 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26406624 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26406626 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26406626 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26406628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26406630 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26406630 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26406634 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26406636 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26406638 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26406640 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0936535596847534, + "time": 26406640 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0697048902511597, + "time": 26406642 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0697048902511597, + "time": 26406644 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0697048902511597, + "time": 26406644 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0697048902511597, + "time": 26406646 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.339301109313965, + "time": 26406648 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.339301109313965, + "time": 26406650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.339301109313965, + "time": 26406652 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0909925699234009, + "time": 26406654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0909925699234009, + "time": 26406656 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.079007625579834, + "time": 26406658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.079007625579834, + "time": 26406658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.079007625579834, + "time": 26406660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.079007625579834, + "time": 26406662 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 0.9982392191886902, + "time": 26406664 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2146 + } + ], + "responsiveness": 2.9969985485076904, + "time": 26406666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.066843032836914, + "time": 26406668 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.066843032836914, + "time": 26406670 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.066843032836914, + "time": 26406672 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 0.002660957630723715, + "time": 26406674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 1.0491775274276733, + "time": 26406674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 2.091512680053711, + "time": 26406676 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.182645320892334, + "time": 26406678 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.182645320892334, + "time": 26406678 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.182645320892334, + "time": 26406680 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.182645320892334, + "time": 26406682 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.182645320892334, + "time": 26406684 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2084548473358154, + "time": 26406686 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2084548473358154, + "time": 26406688 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "f (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:815)", + "line": 821 + }, + { + "location": "Z (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:915)", + "line": 930 + }, + { + "location": "gadgets.rpc resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 148.21267700195312, + "time": 26408072 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 150.2110595703125, + "time": 26408074 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 152.25619506835938, + "time": 26408078 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 154.30133056640625, + "time": 26408080 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 156.30616760253906, + "time": 26408082 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 158.3072052001953, + "time": 26408084 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 160.3998565673828, + "time": 26408086 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 162.40318298339844, + "time": 26408088 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 164.44717407226562, + "time": 26408090 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2096 + }, + { + "location": "WCF__outputMessageFromQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2195)", + "line": 2200 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF_logConsoleAPIMessage (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:1181)", + "line": 1208 + }, + { + "location": "js::RunScript" + }, + { + "location": "Messages.ConsoleGeneric.prototype<.render (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/console-output.js:1272)", + "line": 1324 + }, + { + "location": "js::RunScript" + }, + { + "location": "Messages.Simple.prototype<.render (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/console-output.js:804)", + "line": 810 + }, + { + "location": "Widgets.MessageTimestamp.prototype<.render (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/console-output.js:1745)", + "line": 1747 + }, + { + "location": "js::RunScript" + }, + { + "location": "Widgets.BaseWidget.prototype.document (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/console-output.js:1637)", + "line": 1638 + }, + { + "location": "js::RunScript" + }, + { + "location": "Messages.BaseMessage.prototype.document (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/console-output.js:402)", + "line": 403 + }, + { + "location": "js::RunScript" + } + ], + "responsiveness": 6.981212139129639, + "time": 26408284 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 8.992515563964844, + "time": 26408286 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2146 + } + ], + "responsiveness": 11.054377555847168, + "time": 26408290 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 1.0240885019302368, + "time": 26408290 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 3.0087826251983643, + "time": 26408292 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 4.997278213500977, + "time": 26408294 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 6.998318195343018, + "time": 26408296 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 9.012283325195312, + "time": 26408298 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + } + ], + "responsiveness": 0.6021366715431213, + "time": 26408300 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.6103992462158203, + "time": 26408302 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.6452717781066895, + "time": 26408304 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.6452717781066895, + "time": 26408308 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.699049949645996, + "time": 26408310 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": ".doPingThings (https://slack.global.ssl.fastly.net/24420/js/rollup-secondary_required_1409187464.https.gz.js:3854)", + "line": 3855 + } + ], + "responsiveness": 0.003421231172978878, + "time": 26408310 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": ".doPingThings (https://slack.global.ssl.fastly.net/24420/js/rollup-secondary_required_1409187464.https.gz.js:3854)", + "line": 3855 + } + ], + "responsiveness": 2.005601644515991, + "time": 26408312 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": ".doPingThings (https://slack.global.ssl.fastly.net/24420/js/rollup-secondary_required_1409187464.https.gz.js:3854)", + "line": 3855 + } + ], + "responsiveness": 4.007021903991699, + "time": 26408314 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.028209209442139, + "time": 26408316 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.028209209442139, + "time": 26408320 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.028209209442139, + "time": 26408322 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.11874258518219, + "time": 26408324 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 3.010303258895874, + "time": 26408324 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 5.028069496154785, + "time": 26408326 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowOuter::Paint", + "line": 2856 + } + ], + "responsiveness": 7.024547576904297, + "time": 26408328 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.042313575744629, + "time": 26408332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "autoSave/autoInterval< (http://localhost:4504/js/dillinger.js:489)", + "line": 491 + }, + { + "location": "saveFile (http://localhost:4504/js/dillinger.js:472)", + "line": 474 + }, + { + "location": "this.toString (http://localhost:4504/js/ace.js:1)", + "line": 1 + }, + { + "location": "this.getValue (http://localhost:4504/js/ace.js:1)", + "line": 1 + }, + { + "location": "this.getAllLines (http://localhost:4504/js/ace.js:1)", + "line": 1 + } + ], + "responsiveness": 0.008743146434426308, + "time": 26408332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "autoSave/autoInterval< (http://localhost:4504/js/dillinger.js:489)", + "line": 491 + }, + { + "location": "saveFile (http://localhost:4504/js/dillinger.js:472)", + "line": 474 + }, + { + "location": "updateUserProfile (http://localhost:4504/js/dillinger.js:155)", + "line": 157 + }, + { + "location": "v.fn.extend (http://localhost:4504/js/jquery.min.js:2)", + "line": 2 + } + ], + "responsiveness": 2.0949337482452393, + "time": 26408336 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "autoSave/autoInterval< (http://localhost:4504/js/dillinger.js:489)", + "line": 492 + }, + { + "location": "LocalFiles resource://gre/modules/devtools/toolkit/webconsole/utils.js:1343)", + "line": 1358 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCA_onConsoleAPICall (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/actors/webconsole.js:1167)", + "line": 1172 + }, + { + "location": "WCA_prepareConsoleMessageForRemote (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/actors/webconsole.js:1316)", + "line": 1318 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCU_cloneObject (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/utils.js:81)", + "line": 101 + } + ], + "responsiveness": 2.7936253547668457, + "time": 26408968 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 155.9427490234375, + "time": 26409130 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 157.94911193847656, + "time": 26409132 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 159.9965362548828, + "time": 26409136 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 161.9960479736328, + "time": 26409138 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 163.9818878173828, + "time": 26409140 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 166.0011749267578, + "time": 26409142 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 168.094970703125, + "time": 26409144 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2096 + }, + { + "location": "WCF__outputMessageFromQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2195)", + "line": 2200 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF_logConsoleAPIMessage (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:1181)", + "line": 1208 + }, + { + "location": "js::RunScript" + }, + { + "location": "Messages.ConsoleGeneric.prototype<.render (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/console-output.js:1272)", + "line": 1280 + }, + { + "location": "js::RunScript" + }, + { + "location": "Messages.Simple.prototype<._renderLocation (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/console-output.js:918)", + "line": 931 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF_createLocationNode (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2582)", + "line": 2644 + } + ], + "responsiveness": 7.0161848068237305, + "time": 26409368 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 9.031290054321289, + "time": 26409370 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 0.006842462345957756, + "time": 26409372 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 2.0592010021209717, + "time": 26409374 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 4.030590534210205, + "time": 26409376 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.019845962524414, + "time": 26409378 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 8.03381061553955, + "time": 26409380 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 10.024967193603516, + "time": 26409382 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowOuter::Paint", + "line": 2856 + } + ], + "responsiveness": 1.0145851373672485, + "time": 26409384 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 3.0365326404571533, + "time": 26409386 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 5.83928108215332, + "time": 26409388 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 7.041653633117676, + "time": 26409390 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + } + ], + "responsiveness": 9.019505500793457, + "time": 26409392 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "js::RunScript" + }, + { + "location": "mTabProgressListener/<.onStateChange (chrome://browser/content/tabbrowser.xml:577)", + "line": 684 + }, + { + "location": "mTabProgressListener/<._callProgressListeners (chrome://browser/content/tabbrowser.xml:528)", + "line": 530 + }, + { + "location": "js::RunScript" + }, + { + "location": "_callProgressListeners (chrome://browser/content/tabbrowser.xml:459)", + "line": 467 + }, + { + "location": "js::RunScript" + }, + { + "location": "forEach (self-hosted:948)", + "line": 958 + } + ], + "responsiveness": -0.016345882788300514, + "time": 26409394 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9941976070404053, + "time": 26409396 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9941976070404053, + "time": 26409398 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9941976070404053, + "time": 26409400 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9941976070404053, + "time": 26409402 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.061460494995117, + "time": 26409404 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.067804217338562, + "time": 26409406 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.067804217338562, + "time": 26409408 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.067804217338562, + "time": 26409408 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 5.080528259277344, + "time": 26409410 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.154034614562988, + "time": 26409410 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 8.238704681396484, + "time": 26409412 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 10.239364624023438, + "time": 26409414 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + } + ], + "responsiveness": 1.0297905206680298, + "time": 26409416 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + } + ], + "responsiveness": 3.0395736694335938, + "time": 26409418 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.053158283233643, + "time": 26409420 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.053158283233643, + "time": 26409422 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.053158283233643, + "time": 26409424 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.29448413848877, + "time": 26409426 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0237083435058594, + "time": 26409428 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0237083435058594, + "time": 26409430 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0237083435058594, + "time": 26409432 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0237083435058594, + "time": 26409432 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0237083435058594, + "time": 26409434 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0237083435058594, + "time": 26409436 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0237083435058594, + "time": 26409436 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9910166263580322, + "time": 26409438 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9910166263580322, + "time": 26409440 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.073685646057129, + "time": 26409442 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.073685646057129, + "time": 26409444 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.073685646057129, + "time": 26409446 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.009883556514978409, + "time": 26409448 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26409450 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26409452 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26409454 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080868721008301, + "time": 26409456 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.323995590209961, + "time": 26409458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.323995590209961, + "time": 26409460 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.073506236076355, + "time": 26409462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.073506236076355, + "time": 26409464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.073506236076355, + "time": 26409466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.073506236076355, + "time": 26409466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.073506236076355, + "time": 26409468 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.073506236076355, + "time": 26409470 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.073506236076355, + "time": 26409472 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.095554232597351, + "time": 26409472 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26409474 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26409476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26409476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26409478 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26409480 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1041970252990723, + "time": 26409482 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0158653259277344, + "time": 26409484 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0158653259277344, + "time": 26409486 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0158653259277344, + "time": 26409486 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0158653259277344, + "time": 26409488 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0158653259277344, + "time": 26409490 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.222258567810059, + "time": 26409492 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0438556671142578, + "time": 26409494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.071885347366333, + "time": 26409496 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.071885347366333, + "time": 26409498 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.071885347366333, + "time": 26409500 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.071885347366333, + "time": 26409502 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.071885347366333, + "time": 26409504 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.065523386001587, + "time": 26409506 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.065523386001587, + "time": 26409508 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.096874237060547, + "time": 26409510 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.096874237060547, + "time": 26409512 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.096874237060547, + "time": 26409514 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.096874237060547, + "time": 26409514 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0985952615737915, + "time": 26409516 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0985952615737915, + "time": 26409518 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0985952615737915, + "time": 26409520 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0985952615737915, + "time": 26409522 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.116440773010254, + "time": 26409524 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.116440773010254, + "time": 26409526 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1054377555847168, + "time": 26409528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1054377555847168, + "time": 26409530 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1054377555847168, + "time": 26409532 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1054377555847168, + "time": 26409534 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1054377555847168, + "time": 26409534 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1054377555847168, + "time": 26409536 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1054377555847168, + "time": 26409538 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0706050395965576, + "time": 26409540 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109278678894043, + "time": 26409542 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109278678894043, + "time": 26409544 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109278678894043, + "time": 26409544 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109278678894043, + "time": 26409546 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.109278678894043, + "time": 26409548 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.044755697250366, + "time": 26409550 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.044755697250366, + "time": 26409552 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.044755697250366, + "time": 26409554 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.198650360107422, + "time": 26409556 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.198650360107422, + "time": 26409556 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.198650360107422, + "time": 26409558 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9913967251777649, + "time": 26409560 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9913967251777649, + "time": 26409562 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9913967251777649, + "time": 26409562 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9913967251777649, + "time": 26409564 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9913967251777649, + "time": 26409566 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9913967251777649, + "time": 26409568 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9913967251777649, + "time": 26409570 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9921570420265198, + "time": 26409572 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0874710083007812, + "time": 26409574 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0874710083007812, + "time": 26409574 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0874710083007812, + "time": 26409576 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0874710083007812, + "time": 26409578 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0874710083007812, + "time": 26409580 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.041054774075746536, + "time": 26409582 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26409584 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26409586 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080108404159546, + "time": 26409588 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.044454574584961, + "time": 26409590 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.044454574584961, + "time": 26409592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0029406547546387, + "time": 26409594 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0029406547546387, + "time": 26409596 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.011483192443848, + "time": 26409598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.011483192443848, + "time": 26409598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.011483192443848, + "time": 26409600 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.011483192443848, + "time": 26409602 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1158413887023926, + "time": 26409604 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 4.040093898773193, + "time": 26409606 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.027068614959717, + "time": 26409608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 8.05091667175293, + "time": 26409610 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 10.057278633117676, + "time": 26409612 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 1.045376181602478, + "time": 26409614 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 3.0293099880218506, + "time": 26409616 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 5.04441499710083, + "time": 26409618 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.119962215423584, + "time": 26409620 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.082988739013672, + "time": 26409622 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.082988739013672, + "time": 26409624 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.062622308731079, + "time": 26409626 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.062622308731079, + "time": 26409628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.062622308731079, + "time": 26409630 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.062622308731079, + "time": 26409632 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.062622308731079, + "time": 26409634 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.020667314529419, + "time": 26409636 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.020667314529419, + "time": 26409638 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.091552257537842, + "time": 26409640 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.091552257537842, + "time": 26409642 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.091552257537842, + "time": 26409646 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.091552257537842, + "time": 26409646 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26409650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26409650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26409652 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26409652 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.113940715789795, + "time": 26409654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.618461608886719, + "time": 26409656 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.004561641253530979, + "time": 26409658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0652830600738525, + "time": 26409660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0652830600738525, + "time": 26409660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0652830600738525, + "time": 26409662 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0652830600738525, + "time": 26409664 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0652830600738525, + "time": 26409666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (http://barcode.oberhofer.dev/)", + "line": 8360 + } + ], + "responsiveness": 10.417268753051758, + "time": 26409668 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0814892053604126, + "time": 26409670 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + } + ], + "responsiveness": 3.0562996864318848, + "time": 26409672 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 5.044795513153076, + "time": 26409674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.1525139808654785, + "time": 26409676 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 8.139108657836914, + "time": 26409678 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 10.138628005981445, + "time": 26409680 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 1.0465165376663208, + "time": 26409682 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 3.049077272415161, + "time": 26409684 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 5.050497531890869, + "time": 26409686 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 7.029869556427002, + "time": 26409688 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsCSSRendering::PaintBackground", + "line": 1350 + } + ], + "responsiveness": 9.053717613220215, + "time": 26409690 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + } + ], + "responsiveness": 11.056658744812012, + "time": 26409692 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 1.5110437870025635, + "time": 26409694 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + } + ], + "responsiveness": 3.504100799560547, + "time": 26409696 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.508182048797607, + "time": 26409698 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.5479960441589355, + "time": 26409700 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.5479960441589355, + "time": 26409702 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.5479960441589355, + "time": 26409704 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 1.9580845832824707, + "time": 26409706 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 3.9325151443481445, + "time": 26409708 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.025548458099365, + "time": 26409710 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.025548458099365, + "time": 26409710 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.025548458099365, + "time": 26409712 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.025548458099365, + "time": 26409714 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0382933616638184, + "time": 26409716 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0382933616638184, + "time": 26409718 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0382933616638184, + "time": 26409720 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0382933616638184, + "time": 26409720 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.279378890991211, + "time": 26409722 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.279378890991211, + "time": 26409724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9554235935211182, + "time": 26409726 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9554235935211182, + "time": 26409728 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9554235935211182, + "time": 26409730 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9554235935211182, + "time": 26409732 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.034470558166504, + "time": 26409734 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + } + ], + "responsiveness": 1.0377734899520874, + "time": 26409736 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + } + ], + "responsiveness": 3.0467963218688965, + "time": 26409738 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 5.191908359527588, + "time": 26409740 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 7.159876346588135, + "time": 26409742 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 9.257091522216797, + "time": 26409744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "za (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 11.245206832885742, + "time": 26409746 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 13.25613021850586, + "time": 26409748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "za (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 15.252608299255371, + "time": 26409750 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + } + ], + "responsiveness": 17.248327255249023, + "time": 26409752 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + } + ], + "responsiveness": 19.464523315429688, + "time": 26409754 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "za (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 21.253828048706055, + "time": 26409756 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "za (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 23.25600814819336, + "time": 26409758 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 25.287839889526367, + "time": 26409760 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)" + } + ], + "responsiveness": 27.28241729736328, + "time": 26409762 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "be/<.callback (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "_.dx (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=auth/exm=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_1:132)", + "line": 132 + }, + { + "location": "_.Xw (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=auth/exm=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_1:128)", + "line": 128 + }, + { + "location": "_.dx/< (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=auth/exm=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_1:132)", + "line": 132 + }, + { + "location": "_.T jar:file:///C:/Users/Christoph/AppData/Roaming/Mozilla/Firefox/Profiles/hrdbs1rb.default/extensions/%7Bd10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d%7D.xpi!/bootstrap.js -> jar:file:///C:/Users/Christoph/AppData/Roaming/Mozilla/Firefox/Profiles/hrdbs1rb.default/extensions/%7Bd10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d%7D.xpi!/lib/ui.js:887)", + "line": 889 + } + ], + "responsiveness": 8.009861946105957, + "time": 26409806 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-007.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 10.011662483215332, + "time": 26409808 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + } + ], + "responsiveness": 1.0172460079193115, + "time": 26409810 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + } + ], + "responsiveness": 3.050217628479004, + "time": 26409812 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 53 + } + ], + "responsiveness": 5.052017688751221, + "time": 26409814 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 54 + }, + { + "location": "EnterJIT" + }, + { + "location": "CVUtils.computeGray (http://barcode.oberhofer.dev/js/cv_utils.js:657)" + } + ], + "responsiveness": 7.147712230682373, + "time": 26409816 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 186 + }, + { + "location": "js::RunScript" + }, + { + "location": "CVUtils.otsuThreshold (http://barcode.oberhofer.dev/js/cv_utils.js:144)", + "line": 195 + }, + { + "location": "EnterJIT" + }, + { + "location": "determineThreshold (http://barcode.oberhofer.dev/js/cv_utils.js:168)", + "line": 187 + }, + { + "location": "mx (http://barcode.oberhofer.dev/js/cv_utils.js:157)" + } + ], + "responsiveness": 9.12822437286377, + "time": 26409818 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 11.142950057983398, + "time": 26409820 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 13.146270751953125, + "time": 26409822 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 212 + }, + { + "location": "Rasterizer.create/<.rasterize (http://barcode.oberhofer.dev/js/rasterizer.js:32)" + } + ], + "responsiveness": 15.167078018188477, + "time": 26409824 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 17.14834976196289, + "time": 26409826 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 19.191205978393555, + "time": 26409828 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 21.19908905029297, + "time": 26409830 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 23.197467803955078, + "time": 26409832 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 25.182540893554688, + "time": 26409834 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 219 + }, + { + "location": "ImageWrapper.prototype.moments (http://barcode.oberhofer.dev/js/image_wrapper.js:279)", + "line": 344 + }, + { + "location": "vec2.create (http://barcode.oberhofer.dev/js/glMatrixAddon.js:248)", + "line": 252 + } + ], + "responsiveness": 27.199928283691406, + "time": 26409836 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 29.20058822631836, + "time": 26409838 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "ImageWrapper.prototype.subImageAsCopy (http://barcode.oberhofer.dev/js/image_wrapper.js:167)" + } + ], + "responsiveness": 31.20086669921875, + "time": 26409840 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 212 + }, + { + "location": "Rasterizer.create/<.rasterize (http://barcode.oberhofer.dev/js/rasterizer.js:32)" + } + ], + "responsiveness": 33.201908111572266, + "time": 26409842 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 212 + }, + { + "location": "Rasterizer.create/<.rasterize (http://barcode.oberhofer.dev/js/rasterizer.js:32)" + } + ], + "responsiveness": 35.2310791015625, + "time": 26409844 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 37.24922561645508, + "time": 26409846 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 39.24684143066406, + "time": 26409848 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 41.24978256225586, + "time": 26409850 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 43.29263687133789, + "time": 26409852 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 45.321807861328125, + "time": 26409854 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 47.3369140625, + "time": 26409856 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 49.38166809082031, + "time": 26409858 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 51.37016677856445, + "time": 26409860 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 53.38679122924805, + "time": 26409862 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 55.36958312988281, + "time": 26409864 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsCSSRendering::PaintBackground", + "line": 1350 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 57.38621139526367, + "time": 26409866 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 1.4616259336471558, + "time": 26409868 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 153.41294860839844, + "time": 26410030 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 155.44781494140625, + "time": 26410032 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 157.46368408203125, + "time": 26410034 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 159.4613037109375, + "time": 26410036 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 161.46310424804688, + "time": 26410038 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 163.52001953125, + "time": 26410042 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 165.49179077148438, + "time": 26410042 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1396)", + "line": 1403 + }, + { + "location": "CPL__checkFileActivity (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/network-monitor.js:1418)", + "line": 1426 + } + ], + "responsiveness": 167.6897430419922, + "time": 26410046 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "_events resource://gre/modules/devtools/DevToolsUtils.js:82)", + "line": 84 + }, + { + "location": "js::RunScript" + }, + { + "location": "LDT_send/< (resource://gre/modules/devtools/dbg-client.jsm -> resource://gre/modules/devtools/server/transport.js:273)", + "line": 279 + }, + { + "location": "js::RunScript" + }, + { + "location": "DebuggerClient.prototype.onPacket (resource://gre/modules/devtools/dbg-client.jsm:675)", + "line": 680 + } + ], + "responsiveness": 0.09275337308645248, + "time": 26410132 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 534 + } + ], + "responsiveness": 2.288043260574341, + "time": 26410134 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 3.336460590362549, + "time": 26410136 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 5.372093200683594, + "time": 26410138 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 7.463985919952393, + "time": 26410140 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 9.467686653137207, + "time": 26410142 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 1.0191466808319092, + "time": 26410144 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 3.0258889198303223, + "time": 26410146 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 4.067083358764648, + "time": 26410146 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 6.072305202484131, + "time": 26410148 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Input::nsInputStreamPump::OnInputStreamReady", + "line": 403 + }, + { + "location": "Input::nsInputStreamPump::OnStateTransfer", + "line": 677 + } + ], + "responsiveness": 8.099954605102539, + "time": 26410150 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::RunCycleCollectorSlice", + "line": 1952 + }, + { + "location": "CC::nsCycleCollector_collectSlice", + "line": 3872 + } + ], + "responsiveness": 10.647631645202637, + "time": 26410152 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::RunCycleCollectorSlice", + "line": 1952 + }, + { + "location": "CC::nsCycleCollector_collectSlice", + "line": 3872 + } + ], + "responsiveness": 1.0183864831924438, + "time": 26410154 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::RunCycleCollectorSlice", + "line": 1952 + }, + { + "location": "CC::nsCycleCollector_collectSlice", + "line": 3872 + } + ], + "responsiveness": 3.010303258895874, + "time": 26410156 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::RunCycleCollectorSlice", + "line": 1952 + }, + { + "location": "CC::nsCycleCollector_collectSlice", + "line": 3872 + } + ], + "responsiveness": 5.012483596801758, + "time": 26410158 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::RunCycleCollectorSlice", + "line": 1952 + }, + { + "location": "CC::nsCycleCollector_collectSlice", + "line": 3872 + } + ], + "responsiveness": 7.013904094696045, + "time": 26410160 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.025967597961426, + "time": 26410162 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.004561641253530979, + "time": 26410164 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + } + ], + "responsiveness": 2.0105435848236084, + "time": 26410166 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 4.05605936050415, + "time": 26410168 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 6.150233268737793, + "time": 26410170 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 8.136828422546387, + "time": 26410172 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowOuter::Paint", + "line": 2856 + } + ], + "responsiveness": -0.0030410944018512964, + "time": 26410174 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowOuter::Paint", + "line": 2856 + } + ], + "responsiveness": 1.9979989528656006, + "time": 26410176 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowOuter::Paint", + "line": 2856 + } + ], + "responsiveness": 4.012343883514404, + "time": 26410178 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowOuter::Paint", + "line": 2856 + } + ], + "responsiveness": 5.999318599700928, + "time": 26410180 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowInner::Paint", + "line": 2942 + } + ], + "responsiveness": 9.000879287719727, + "time": 26410184 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowInner::Paint", + "line": 2942 + } + ], + "responsiveness": 11.018264770507812, + "time": 26410186 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayBoxShadowInner::Paint", + "line": 2942 + } + ], + "responsiveness": 13.020065307617188, + "time": 26410188 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "image::imgFrame::Draw", + "line": 486 + }, + { + "location": "gfxUtils::DrawPixelSnapped", + "line": 511 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 16.021625518798828, + "time": 26410190 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsCSSRendering::PaintBackground", + "line": 1350 + }, + { + "location": "gfxContext::Fill", + "line": 357 + } + ], + "responsiveness": 19.0235652923584, + "time": 26410194 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 21.266752243041992, + "time": 26410196 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 23.02716636657715, + "time": 26410198 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 25.039230346679688, + "time": 26410200 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + } + ], + "responsiveness": 27.03190803527832, + "time": 26410202 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 1.3722938299179077, + "time": 26410204 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 3.357368230819702, + "time": 26410206 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 5.374373912811279, + "time": 26410208 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + } + ], + "responsiveness": 7.3404412269592285, + "time": 26410210 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + } + ], + "responsiveness": 9.400022506713867, + "time": 26410212 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2096 + }, + { + "location": "WCF__outputMessageFromQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2195)", + "line": 2200 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF_logConsoleAPIMessage (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:1181)", + "line": 1208 + }, + { + "location": "js::RunScript" + }, + { + "location": "Messages.ConsoleGeneric.prototype<.render (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/console-output.js:1272)", + "line": 1324 + }, + { + "location": "js::RunScript" + }, + { + "location": "Messages.Simple.prototype<.render (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/console-output.js:804)", + "line": 818 + } + ], + "responsiveness": 1.0054618120193481, + "time": 26410214 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 3.0144846439361572, + "time": 26410216 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 4.05910062789917, + "time": 26410216 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.10005521774292, + "time": 26410218 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 7.142770290374756, + "time": 26410220 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 8.1889066696167, + "time": 26410220 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 10.190707206726074, + "time": 26410222 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + } + ], + "responsiveness": 1.0575405359268188, + "time": 26410224 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.173762083053589, + "time": 26410226 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.173762083053589, + "time": 26410228 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.230201721191406, + "time": 26410230 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.230201721191406, + "time": 26410234 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.02166779711842537, + "time": 26410236 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0934133529663086, + "time": 26410238 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0934133529663086, + "time": 26410238 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0934133529663086, + "time": 26410240 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0934133529663086, + "time": 26410242 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.28484058380127, + "time": 26410244 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.28484058380127, + "time": 26410246 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26410248 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26410248 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26410250 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26410252 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26410254 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26410254 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0894720554351807, + "time": 26410256 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.992677092552185, + "time": 26410258 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.037432670593262, + "time": 26410260 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.037432670593262, + "time": 26410262 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.037432670593262, + "time": 26410264 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.037432670593262, + "time": 26410266 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.059821367263794, + "time": 26410268 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.059821367263794, + "time": 26410270 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.059821367263794, + "time": 26410272 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.059821367263794, + "time": 26410274 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.25352954864502, + "time": 26410276 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.25352954864502, + "time": 26410278 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0928932428359985, + "time": 26410280 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0928932428359985, + "time": 26410282 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0928932428359985, + "time": 26410284 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0928932428359985, + "time": 26410286 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0928932428359985, + "time": 26410286 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0928932428359985, + "time": 26410288 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0928932428359985, + "time": 26410290 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26410292 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0566799640655518, + "time": 26410294 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0566799640655518, + "time": 26410296 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0566799640655518, + "time": 26410296 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0566799640655518, + "time": 26410298 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.013684924691915512, + "time": 26410300 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9679681062698364, + "time": 26410302 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9679681062698364, + "time": 26410304 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9679681062698364, + "time": 26410306 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9679681062698364, + "time": 26410308 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.022686958312988, + "time": 26410310 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0305508375167847, + "time": 26410312 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.133467435836792, + "time": 26410314 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.133467435836792, + "time": 26410316 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.2910237312316895, + "time": 26410318 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.2910237312316895, + "time": 26410320 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.2910237312316895, + "time": 26410322 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1073384284973145, + "time": 26410324 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3393619060516357, + "time": 26410326 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3393619060516357, + "time": 26410328 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3393619060516357, + "time": 26410328 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3393619060516357, + "time": 26410332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3393619060516357, + "time": 26410332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0837700366973877, + "time": 26410334 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.111799716949463, + "time": 26410338 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.111799716949463, + "time": 26410338 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.103236198425293, + "time": 26410342 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.103236198425293, + "time": 26410342 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "g.Pb (https://s.ytimg.com/yts/jsbin/www-embed-player-vflOf2voo/www-embed-player.js:284)", + "line": 284 + } + ], + "responsiveness": 0.011404103599488735, + "time": 26410344 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "g.Pb (https://s.ytimg.com/yts/jsbin/www-embed-player-vflOf2voo/www-embed-player.js:284)", + "line": 284 + } + ], + "responsiveness": 2.013204336166382, + "time": 26410346 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "g.Pb (https://s.ytimg.com/yts/jsbin/www-embed-player-vflOf2voo/www-embed-player.js:284)", + "line": 284 + } + ], + "responsiveness": 4.007781982421875, + "time": 26410348 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "g.Ob (https://s.ytimg.com/yts/jsbin/www-embed-player-vflB0IoHq/www-embed-player.js:284)", + "line": 284 + } + ], + "responsiveness": 6.0232672691345215, + "time": 26410350 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "g.Ob (https://s.ytimg.com/yts/jsbin/www-embed-player-vflB0IoHq/www-embed-player.js:284)", + "line": 284 + } + ], + "responsiveness": 8.034951210021973, + "time": 26410352 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "g.Ob (https://s.ytimg.com/yts/jsbin/www-embed-player-vflB0IoHq/www-embed-player.js:284)", + "line": 284 + } + ], + "responsiveness": 10.014703750610352, + "time": 26410354 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "g.Ob (https://s.ytimg.com/yts/jsbin/www-embed-player-vflB0IoHq/www-embed-player.js:284)", + "line": 284 + }, + { + "location": "Fk (https://s.ytimg.com/yts/jsbin/www-embed-player-vflB0IoHq/www-embed-player.js:205)", + "line": 205 + }, + { + "location": "yk (https://s.ytimg.com/yts/jsbin/www-embed-player-vflB0IoHq/www-embed-player.js:202)", + "line": 202 + }, + { + "location": "fj (https://s.ytimg.com/yts/jsbin/www-embed-player-vflB0IoHq/www-embed-player.js:149)", + "line": 149 + }, + { + "location": "V (https://s.ytimg.com/yts/jsbin/www-embed-player-vflB0IoHq/www-embed-player.js:87)", + "line": 87 + } + ], + "responsiveness": 1.0138248205184937, + "time": 26410356 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0908923149108887, + "time": 26410360 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0908923149108887, + "time": 26410360 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0908923149108887, + "time": 26410362 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0908923149108887, + "time": 26410364 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0908923149108887, + "time": 26410366 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0908923149108887, + "time": 26410368 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1138007640838623, + "time": 26410368 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1138007640838623, + "time": 26410370 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1138007640838623, + "time": 26410372 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.3771748542785645, + "time": 26410374 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.379734992980957, + "time": 26410376 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.379734992980957, + "time": 26410378 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.940218210220337, + "time": 26410380 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.940218210220337, + "time": 26410382 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.940218210220337, + "time": 26410384 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.940218210220337, + "time": 26410386 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.940218210220337, + "time": 26410388 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9678282737731934, + "time": 26410390 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9678282737731934, + "time": 26410392 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9678282737731934, + "time": 26410394 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.069784164428711, + "time": 26410396 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.069784164428711, + "time": 26410398 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.069784164428711, + "time": 26410400 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26410402 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26410404 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26410404 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26410406 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.189146995544434, + "time": 26410408 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.189146995544434, + "time": 26410410 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.189146995544434, + "time": 26410412 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0538790225982666, + "time": 26410414 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0538790225982666, + "time": 26410416 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0538790225982666, + "time": 26410418 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0538790225982666, + "time": 26410420 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0538790225982666, + "time": 26410422 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.07882821559906, + "time": 26410424 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0851900577545166, + "time": 26410426 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0851900577545166, + "time": 26410426 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0851900577545166, + "time": 26410428 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0851900577545166, + "time": 26410430 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0851900577545166, + "time": 26410432 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0073624849319458, + "time": 26410434 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0073624849319458, + "time": 26410434 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.219518184661865, + "time": 26410436 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.219518184661865, + "time": 26410438 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 8.179783821105957, + "time": 26410440 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 10.179682731628418, + "time": 26410442 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 1.0503180027008057, + "time": 26410444 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 3.0570600032806396, + "time": 26410446 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 5.052398204803467, + "time": 26410448 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 7.046595573425293, + "time": 26410450 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 9.169659614562988, + "time": 26410452 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.3132327198982239, + "time": 26410456 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3522863388061523, + "time": 26410458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3522863388061523, + "time": 26410458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3522863388061523, + "time": 26410460 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3522863388061523, + "time": 26410462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3522863388061523, + "time": 26410462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.3522863388061523, + "time": 26410464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26410466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26410466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26410468 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26410470 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26410472 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0012803077697754, + "time": 26410474 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.454522132873535, + "time": 26410476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410478 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410480 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410482 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410484 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410486 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410488 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1063380241394043, + "time": 26410490 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26410492 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26410492 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26410494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26410494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26410496 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.110038757324219, + "time": 26410498 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26410500 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26410502 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26410504 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26410506 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.113919258117676, + "time": 26410508 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26410510 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26410512 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26410514 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26410516 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26410518 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26410520 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9998996257781982, + "time": 26410522 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9998996257781982, + "time": 26410524 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.002359867095947, + "time": 26410526 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.002359867095947, + "time": 26410528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.002359867095947, + "time": 26410528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.002359867095947, + "time": 26410530 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.049797918647527695, + "time": 26410532 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.056920051574707, + "time": 26410534 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.056920051574707, + "time": 26410536 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.116400718688965, + "time": 26410538 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.116400718688965, + "time": 26410538 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.36276912689209, + "time": 26410540 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9358967542648315, + "time": 26410542 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9358967542648315, + "time": 26410544 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9358967542648315, + "time": 26410546 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9358967542648315, + "time": 26410548 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9358967542648315, + "time": 26410550 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9358967542648315, + "time": 26410552 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0313111543655396, + "time": 26410554 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0313111543655396, + "time": 26410556 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.0820488929748535, + "time": 26410558 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.287082195281982, + "time": 26410558 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.287082195281982, + "time": 26410560 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 10.208573341369629, + "time": 26410562 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26410564 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26410566 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26410568 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26410568 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26410570 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26410572 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.040054202079773, + "time": 26410572 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.619881629943848, + "time": 26410574 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1084789037704468, + "time": 26410576 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1084789037704468, + "time": 26410578 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1084789037704468, + "time": 26410580 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1084789037704468, + "time": 26410582 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1084789037704468, + "time": 26410584 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1084789037704468, + "time": 26410586 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0721256732940674, + "time": 26410588 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.03591251373291, + "time": 26410590 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.03591251373291, + "time": 26410592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.03591251373291, + "time": 26410594 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.03591251373291, + "time": 26410596 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0221878290176392, + "time": 26410598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0221878290176392, + "time": 26410598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0221878290176392, + "time": 26410600 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0221878290176392, + "time": 26410602 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0221878290176392, + "time": 26410604 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.335538864135742, + "time": 26410606 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0837700366973877, + "time": 26410608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0837700366973877, + "time": 26410610 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0837700366973877, + "time": 26410612 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0837700366973877, + "time": 26410614 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0837700366973877, + "time": 26410616 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0837700366973877, + "time": 26410618 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0727460384368896, + "time": 26410620 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0727460384368896, + "time": 26410622 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.1204423904418945, + "time": 26410624 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.1204423904418945, + "time": 26410626 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.1204423904418945, + "time": 26410628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.1204423904418945, + "time": 26410628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.1204423904418945, + "time": 26410630 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.044755697250366, + "time": 26410632 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.044755697250366, + "time": 26410634 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.044755697250366, + "time": 26410636 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.219177722930908, + "time": 26410638 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.219177722930908, + "time": 26410638 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0, + "time": 26410640 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.040194034576416, + "time": 26410642 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.040194034576416, + "time": 26410644 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.040194034576416, + "time": 26410644 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.040194034576416, + "time": 26410646 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.040194034576416, + "time": 26410648 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "nsLayoutUtils::GetFrameForPoint", + "line": 2422 + }, + { + "location": "nsLayoutUtils::GetFramesForArea", + "line": 2435 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 9.368090629577637, + "time": 26410650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (http://barcode.oberhofer.dev/)", + "line": 8360 + } + ], + "responsiveness": 0.015965744853019714, + "time": 26410652 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2293623685836792, + "time": 26410654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2293623685836792, + "time": 26410654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2293623685836792, + "time": 26410656 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + } + ], + "responsiveness": 5.497158050537109, + "time": 26410658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.610198497772217, + "time": 26410658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 8.697149276733398, + "time": 26410660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 0.0038013679441064596, + "time": 26410662 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 1.9964784383773804, + "time": 26410664 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 4.116501331329346, + "time": 26410666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 5.26071310043335, + "time": 26410668 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 7.349184513092041, + "time": 26410670 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 9.382535934448242, + "time": 26410672 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsDisplayText::Paint", + "line": 4537 + } + ], + "responsiveness": 11.382055282592773, + "time": 26410674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + } + ], + "responsiveness": 13.386137008666992, + "time": 26410676 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 1.5015403032302856, + "time": 26410678 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + } + ], + "responsiveness": 3.465327024459839, + "time": 26410680 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + } + ], + "responsiveness": 5.460664749145508, + "time": 26410682 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.478811264038086, + "time": 26410684 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.478811264038086, + "time": 26410686 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0814892053604126, + "time": 26410688 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.02170729637146, + "time": 26410690 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.02170729637146, + "time": 26410692 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.02170729637146, + "time": 26410694 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.02170729637146, + "time": 26410694 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.02170729637146, + "time": 26410696 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.02170729637146, + "time": 26410698 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0544995069503784, + "time": 26410700 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0544995069503784, + "time": 26410702 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0544995069503784, + "time": 26410704 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0544995069503784, + "time": 26410706 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.113779067993164, + "time": 26410708 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.113779067993164, + "time": 26410710 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.028409957885742, + "time": 26410712 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.028409957885742, + "time": 26410714 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.028409957885742, + "time": 26410714 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.028409957885742, + "time": 26410716 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.028409957885742, + "time": 26410718 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000900149345398, + "time": 26410720 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000900149345398, + "time": 26410722 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000900149345398, + "time": 26410724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000900149345398, + "time": 26410726 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000900149345398, + "time": 26410726 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000900149345398, + "time": 26410728 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000900149345398, + "time": 26410730 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1073384284973145, + "time": 26410732 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1073384284973145, + "time": 26410734 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1073384284973145, + "time": 26410736 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.200791358947754, + "time": 26410738 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.398602485656738, + "time": 26410738 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.398602485656738, + "time": 26410740 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.398602485656738, + "time": 26410742 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26410744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26410746 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26410748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26410748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26410750 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.084530234336853, + "time": 26410752 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.050938330590724945, + "time": 26410754 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0546393394470215, + "time": 26410756 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0546393394470215, + "time": 26410756 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0546393394470215, + "time": 26410758 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0546393394470215, + "time": 26410760 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0546393394470215, + "time": 26410762 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0546393394470215, + "time": 26410764 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0556398630142212, + "time": 26410766 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "f (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:815)", + "line": 821 + }, + { + "location": "Z (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:915)", + "line": 929 + }, + { + "location": "js::RunScript" + }, + { + "location": "G (https://ssl.gstatic.com/accounts/o/682094929-postmessagerelay.js:6)", + "line": 6 + }, + { + "location": "E (https://ssl.gstatic.com/accounts/o/682094929-postmessagerelay.js:6)", + "line": 6 + }, + { + "location": "D.prototype.evaluate (https://ssl.gstatic.com/accounts/o/682094929-postmessagerelay.js:4)", + "line": 4 + }, + { + "location": "EnterJIT" + }, + { + "location": "D.prototype.evaluate (https://ssl.gstatic.com/accounts/o/682094929-postmessagerelay.js:4)", + "line": 5 + }, + { + "location": "js::RunScript" + }, + { + "location": "C (https://ssl.gstatic.com/accounts/o/682094929-postmessagerelay.js:3)", + "line": 3 + } + ], + "responsiveness": 3.015625238418579, + "time": 26410768 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "c (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:109)", + "line": 109 + }, + { + "location": "af (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:30)", + "line": 30 + } + ], + "responsiveness": 4.992336273193359, + "time": 26410770 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "c (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:109)", + "line": 110 + }, + { + "location": "g (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:118)", + "line": 119 + }, + { + "location": "js::RunScript" + }, + { + "location": "_.T resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2095 + }, + { + "location": "EnterJIT" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 2.0204269886016846, + "time": 26410952 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.06974458694458, + "time": 26410954 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.06974458694458, + "time": 26410956 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.06974458694458, + "time": 26410956 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.06974458694458, + "time": 26410958 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 10.2515287399292, + "time": 26410960 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 1.003180980682373, + "time": 26410962 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1083784103393555, + "time": 26410964 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.241946220397949, + "time": 26410966 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.241946220397949, + "time": 26410966 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.241946220397949, + "time": 26410968 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.241946220397949, + "time": 26410970 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9615057706832886, + "time": 26410972 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9615057706832886, + "time": 26410974 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.033911228179932, + "time": 26410976 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.033911228179932, + "time": 26410978 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.033911228179932, + "time": 26410980 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410982 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410984 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410984 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410986 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410988 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410990 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1027767658233643, + "time": 26410992 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.059821367263794, + "time": 26410994 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.059821367263794, + "time": 26410996 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.059821367263794, + "time": 26410998 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.065982818603516, + "time": 26411000 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.114540100097656, + "time": 26411002 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.114540100097656, + "time": 26411004 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0500776767730713, + "time": 26411006 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0500776767730713, + "time": 26411008 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0500776767730713, + "time": 26411010 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0500776767730713, + "time": 26411012 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0500776767730713, + "time": 26411014 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9982392191886902, + "time": 26411016 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9982392191886902, + "time": 26411018 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9982392191886902, + "time": 26411020 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9982392191886902, + "time": 26411022 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9982392191886902, + "time": 26411022 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.019265174865723, + "time": 26411024 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0301706790924072, + "time": 26411026 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0301706790924072, + "time": 26411028 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0301706790924072, + "time": 26411030 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0301706790924072, + "time": 26411032 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0301706790924072, + "time": 26411034 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0301706790924072, + "time": 26411034 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0301706790924072, + "time": 26411036 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0301706790924072, + "time": 26411038 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.069464683532715, + "time": 26411040 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.1012959480285645, + "time": 26411042 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.1012959480285645, + "time": 26411044 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.1012959480285645, + "time": 26411046 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.1012959480285645, + "time": 26411048 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1160815954208374, + "time": 26411050 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1160815954208374, + "time": 26411050 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1160815954208374, + "time": 26411052 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1160815954208374, + "time": 26411054 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1160815954208374, + "time": 26411056 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.323995590209961, + "time": 26411058 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0674240589141846, + "time": 26411060 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0674240589141846, + "time": 26411062 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.067983627319336, + "time": 26411064 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.067983627319336, + "time": 26411066 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.067983627319336, + "time": 26411068 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.067983627319336, + "time": 26411070 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0811090469360352, + "time": 26411070 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.093933343887329, + "time": 26411072 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.093933343887329, + "time": 26411074 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.093933343887329, + "time": 26411076 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.093933343887329, + "time": 26411076 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.093933343887329, + "time": 26411078 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.093933343887329, + "time": 26411080 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0647631883621216, + "time": 26411082 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0647631883621216, + "time": 26411084 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0647631883621216, + "time": 26411086 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0647631883621216, + "time": 26411088 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0647631883621216, + "time": 26411090 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.3081693649292, + "time": 26411092 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.082249402999878, + "time": 26411094 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.082249402999878, + "time": 26411094 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.082249402999878, + "time": 26411096 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.082249402999878, + "time": 26411096 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.082249402999878, + "time": 26411098 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.082249402999878, + "time": 26411100 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.02432875521481037, + "time": 26411102 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2411465644836426, + "time": 26411104 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2411465644836426, + "time": 26411106 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.407686233520508, + "time": 26411108 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.407686233520508, + "time": 26411110 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.407686233520508, + "time": 26411112 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.407686233520508, + "time": 26411114 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.11874258518219, + "time": 26411116 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.11874258518219, + "time": 26411118 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.11874258518219, + "time": 26411120 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.11874258518219, + "time": 26411122 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.320954322814941, + "time": 26411124 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9670680165290833, + "time": 26411126 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9670680165290833, + "time": 26411128 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9670680165290833, + "time": 26411128 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9670680165290833, + "time": 26411130 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9670680165290833, + "time": 26411132 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9670680165290833, + "time": 26411134 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9670680165290833, + "time": 26411136 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.097975015640259, + "time": 26411138 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.104336738586426, + "time": 26411140 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.104336738586426, + "time": 26411140 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.104336738586426, + "time": 26411142 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.104336738586426, + "time": 26411144 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.104336738586426, + "time": 26411146 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0457563400268555, + "time": 26411148 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0457563400268555, + "time": 26411150 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0457563400268555, + "time": 26411152 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0457563400268555, + "time": 26411152 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0457563400268555, + "time": 26411154 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.247207641601562, + "time": 26411156 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.247207641601562, + "time": 26411158 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0921330451965332, + "time": 26411160 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0921330451965332, + "time": 26411160 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0921330451965332, + "time": 26411162 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0921330451965332, + "time": 26411164 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0921330451965332, + "time": 26411164 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0921330451965332, + "time": 26411166 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0921330451965332, + "time": 26411168 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9811330437660217, + "time": 26411170 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9811330437660217, + "time": 26411172 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.983973503112793, + "time": 26411174 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.983973503112793, + "time": 26411176 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.983973503112793, + "time": 26411178 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.983973503112793, + "time": 26411178 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.104297399520874, + "time": 26411180 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.104297399520874, + "time": 26411182 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.104297399520874, + "time": 26411184 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.104297399520874, + "time": 26411184 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.104297399520874, + "time": 26411186 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.104297399520874, + "time": 26411188 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04675682634115219, + "time": 26411190 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.074406385421753, + "time": 26411192 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.074406385421753, + "time": 26411196 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.074406385421753, + "time": 26411196 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.074406385421753, + "time": 26411200 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.074406385421753, + "time": 26411200 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.016345882788300514, + "time": 26411202 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0485570430755615, + "time": 26411204 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 3.996758222579956, + "time": 26411206 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.013383865356445, + "time": 26411208 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 8.149372100830078, + "time": 26411210 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 10.138248443603516, + "time": 26411212 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 1.0506980419158936, + "time": 26411214 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 3.031970977783203, + "time": 26411216 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 5.0478363037109375, + "time": 26411218 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 6.156695365905762, + "time": 26411220 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.232622146606445, + "time": 26411222 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.22986125946045, + "time": 26411224 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0723658800125122, + "time": 26411226 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0723658800125122, + "time": 26411228 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0723658800125122, + "time": 26411228 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0723658800125122, + "time": 26411230 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0723658800125122, + "time": 26411232 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0723658800125122, + "time": 26411234 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0723658800125122, + "time": 26411236 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.036012649536133, + "time": 26411238 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26411240 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26411240 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26411242 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26411244 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26411244 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0100234746932983, + "time": 26411246 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0100234746932983, + "time": 26411248 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0100234746932983, + "time": 26411250 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0100234746932983, + "time": 26411252 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0100234746932983, + "time": 26411254 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.027369849383831024, + "time": 26411256 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.086190700531006, + "time": 26411258 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.086190700531006, + "time": 26411260 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.086190700531006, + "time": 26411262 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.086190700531006, + "time": 26411264 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.086190700531006, + "time": 26411266 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.086190700531006, + "time": 26411268 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.089852213859558, + "time": 26411270 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.089852213859558, + "time": 26411270 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.089852213859558, + "time": 26411272 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.323575496673584, + "time": 26411274 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.323575496673584, + "time": 26411276 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.323575496673584, + "time": 26411278 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0385336875915527, + "time": 26411280 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0385336875915527, + "time": 26411282 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0385336875915527, + "time": 26411282 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0385336875915527, + "time": 26411284 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0385336875915527, + "time": 26411286 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0385336875915527, + "time": 26411288 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.013304787687957287, + "time": 26411290 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080488681793213, + "time": 26411292 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080488681793213, + "time": 26411294 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080488681793213, + "time": 26411296 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080488681793213, + "time": 26411296 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.080488681793213, + "time": 26411298 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.190707206726074, + "time": 26411300 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0959343910217285, + "time": 26411302 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0460360050201416, + "time": 26411304 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0460360050201416, + "time": 26411306 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.077006816864014, + "time": 26411308 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.022546768188477, + "time": 26411310 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04333559423685074, + "time": 26411312 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26411314 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26411316 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26411318 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26411320 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1108996868133545, + "time": 26411322 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04561641439795494, + "time": 26411324 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.224800705909729, + "time": 26411324 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.224800705909729, + "time": 26411326 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.224800705909729, + "time": 26411328 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.224800705909729, + "time": 26411330 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "autoSave/autoInterval< (http://localhost:4504/js/dillinger.js:489)", + "line": 491 + }, + { + "location": "saveFile (http://localhost:4504/js/dillinger.js:472)", + "line": 474 + }, + { + "location": "updateUserProfile (http://localhost:4504/js/dillinger.js:155)", + "line": 157 + } + ], + "responsiveness": 9.181063652038574, + "time": 26411332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "SessionStorageListener.handleEvent (chrome://browser/content/content-sessionStore.js:485)", + "line": 487 + }, + { + "location": "isSessionStorageEvent (chrome://browser/content/content-sessionStore.js:61)", + "line": 62 + } + ], + "responsiveness": 0.1661197692155838, + "time": 26411334 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0329716205596924, + "time": 26411336 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0329716205596924, + "time": 26411338 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.065082550048828, + "time": 26411340 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.111358642578125, + "time": 26411342 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.111358642578125, + "time": 26411344 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9720097780227661, + "time": 26411346 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9720097780227661, + "time": 26411348 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9720097780227661, + "time": 26411348 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9720097780227661, + "time": 26411350 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9720097780227661, + "time": 26411352 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9720097780227661, + "time": 26411354 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03739333152771, + "time": 26411356 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03739333152771, + "time": 26411358 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03739333152771, + "time": 26411360 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03739333152771, + "time": 26411362 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03739333152771, + "time": 26411364 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.0022808206267654896, + "time": 26411366 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0785880088806152, + "time": 26411368 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0785880088806152, + "time": 26411370 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.070404529571533, + "time": 26411372 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.070404529571533, + "time": 26411374 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.076665878295898, + "time": 26411376 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1293864250183105, + "time": 26411378 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1293864250183105, + "time": 26411380 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1293864250183105, + "time": 26411382 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1293864250183105, + "time": 26411384 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1293864250183105, + "time": 26411386 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1293864250183105, + "time": 26411388 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.029930353164673, + "time": 26411390 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.029930353164673, + "time": 26411392 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.029930353164673, + "time": 26411394 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.09653377532959, + "time": 26411396 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.09653377532959, + "time": 26411398 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.113040566444397, + "time": 26411400 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.113040566444397, + "time": 26411402 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.115880966186523, + "time": 26411404 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.122622966766357, + "time": 26411406 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.122622966766357, + "time": 26411408 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.122622966766357, + "time": 26411410 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.122622966766357, + "time": 26411412 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07326602935791, + "time": 26411414 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07326602935791, + "time": 26411416 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07326602935791, + "time": 26411418 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07326602935791, + "time": 26411418 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07326602935791, + "time": 26411420 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07326602935791, + "time": 26411422 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26411424 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26411426 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26411428 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26411428 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26411430 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0827693939208984, + "time": 26411432 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.002180576324463, + "time": 26411434 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.002180576324463, + "time": 26411436 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.002180576324463, + "time": 26411438 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.175081729888916, + "time": 26411440 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.175081729888916, + "time": 26411442 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.175081729888916, + "time": 26411444 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0884714126586914, + "time": 26411446 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0884714126586914, + "time": 26411448 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0884714126586914, + "time": 26411448 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0884714126586914, + "time": 26411450 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0884714126586914, + "time": 26411452 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0884714126586914, + "time": 26411454 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.0528390146791935, + "time": 26411456 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07934832572937, + "time": 26411458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07934832572937, + "time": 26411458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07934832572937, + "time": 26411460 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07934832572937, + "time": 26411462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07934832572937, + "time": 26411462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07934832572937, + "time": 26411464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07934832572937, + "time": 26411464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9701091051101685, + "time": 26411466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9701091051101685, + "time": 26411468 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9701091051101685, + "time": 26411470 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9701091051101685, + "time": 26411472 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.111739158630371, + "time": 26411474 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.111739158630371, + "time": 26411476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.111739158630371, + "time": 26411476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051598310470581, + "time": 26411480 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051598310470581, + "time": 26411482 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051598310470581, + "time": 26411482 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051598310470581, + "time": 26411484 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051598310470581, + "time": 26411486 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.051598310470581, + "time": 26411488 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101016044616699, + "time": 26411490 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101016044616699, + "time": 26411492 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101016044616699, + "time": 26411494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101016044616699, + "time": 26411496 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101016044616699, + "time": 26411498 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101016044616699, + "time": 26411500 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07934832572937, + "time": 26411502 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.07934832572937, + "time": 26411504 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.055198669433594, + "time": 26411506 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.09349250793457, + "time": 26411508 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.09349250793457, + "time": 26411508 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.045376181602478, + "time": 26411510 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.045376181602478, + "time": 26411512 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.045376181602478, + "time": 26411514 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.045376181602478, + "time": 26411516 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.045376181602478, + "time": 26411516 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.045376181602478, + "time": 26411518 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": ".onMsg (https://slack.global.ssl.fastly.net/24420/js/rollup-secondary_required_1409187464.https.gz.js:3772)", + "line": 3773 + }, + { + "location": ".handleMsg (https://slack.global.ssl.fastly.net/24420/js/rollup-secondary_required_1409187464.https.gz.js:3774)", + "line": 3784 + }, + { + "location": "TS.dir (https://slack.global.ssl.fastly.net/24420/js/rollup-core_required_1409187438.https.gz.js:8376)", + "line": 8377 + }, + { + "location": ".inArray (https://slack.global.ssl.fastly.net/24420/js/rollup-secondary_required_1409187464.https.gz.js:6608)", + "line": 6608 + } + ], + "responsiveness": 0.02280820719897747, + "time": 26411520 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 2.041714668273926, + "time": 26411522 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 3.156655788421631, + "time": 26411524 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 4.2689361572265625, + "time": 26411524 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 5.380075931549072, + "time": 26411526 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 6.490075588226318, + "time": 26411528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 7.599694728851318, + "time": 26411528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 9.60073471069336, + "time": 26411530 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 0.015205471776425838, + "time": 26411532 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 1.1552356481552124, + "time": 26411534 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 2.263714551925659, + "time": 26411534 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 3.3725736141204834, + "time": 26411536 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.521106719970703, + "time": 26411538 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.521106719970703, + "time": 26411540 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.563861846923828, + "time": 26411542 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0830097198486328, + "time": 26411544 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0830097198486328, + "time": 26411546 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0830097198486328, + "time": 26411548 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0830097198486328, + "time": 26411550 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0830097198486328, + "time": 26411552 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0830097198486328, + "time": 26411554 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0742665529251099, + "time": 26411554 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0756866931915283, + "time": 26411556 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0756866931915283, + "time": 26411560 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0756866931915283, + "time": 26411560 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0756866931915283, + "time": 26411562 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0756866931915283, + "time": 26411564 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0499378442764282, + "time": 26411566 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0499378442764282, + "time": 26411568 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0499378442764282, + "time": 26411570 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0499378442764282, + "time": 26411572 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.171420097351074, + "time": 26411574 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.193748474121094, + "time": 26411576 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1168419122695923, + "time": 26411578 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1168419122695923, + "time": 26411578 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1168419122695923, + "time": 26411580 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1168419122695923, + "time": 26411582 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1168419122695923, + "time": 26411584 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1168419122695923, + "time": 26411586 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0347323417663574, + "time": 26411588 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033871650695801, + "time": 26411590 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033871650695801, + "time": 26411592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033871650695801, + "time": 26411592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033871650695801, + "time": 26411594 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033871650695801, + "time": 26411596 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.033871650695801, + "time": 26411598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.102156400680542, + "time": 26411600 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.102156400680542, + "time": 26411602 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.102156400680542, + "time": 26411602 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.208914279937744, + "time": 26411604 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.20919418334961, + "time": 26411606 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.20919418334961, + "time": 26411608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0820090770721436, + "time": 26411610 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0820090770721436, + "time": 26411612 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0820090770721436, + "time": 26411614 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0820090770721436, + "time": 26411616 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0820090770721436, + "time": 26411618 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0820090770721436, + "time": 26411620 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0778276920318604, + "time": 26411622 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.076967239379883, + "time": 26411624 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.076967239379883, + "time": 26411626 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.076967239379883, + "time": 26411628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.076967239379883, + "time": 26411630 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.076967239379883, + "time": 26411632 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.107718586921692, + "time": 26411632 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.107718586921692, + "time": 26411634 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.107718586921692, + "time": 26411636 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.107718586921692, + "time": 26411638 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + } + ], + "responsiveness": 8.151653289794922, + "time": 26411640 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.224159240722656, + "time": 26411642 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0704652070999146, + "time": 26411644 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0704652070999146, + "time": 26411646 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0704652070999146, + "time": 26411648 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0704652070999146, + "time": 26411648 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0704652070999146, + "time": 26411650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0704652070999146, + "time": 26411650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0704652070999146, + "time": 26411652 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0195268392562866, + "time": 26411654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0195268392562866, + "time": 26411654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.2522101402282715, + "time": 26411656 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.2522101402282715, + "time": 26411658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.2522101402282715, + "time": 26411660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.2522101402282715, + "time": 26411660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.2522101402282715, + "time": 26411662 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.2522101402282715, + "time": 26411662 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9788522124290466, + "time": 26411664 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9788522124290466, + "time": 26411666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9788522124290466, + "time": 26411668 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9788522124290466, + "time": 26411670 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9788522124290466, + "time": 26411672 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.135586738586426, + "time": 26411674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0362528562545776, + "time": 26411676 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0362528562545776, + "time": 26411678 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0362528562545776, + "time": 26411680 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0362528562545776, + "time": 26411682 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0362528562545776, + "time": 26411682 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0362528562545776, + "time": 26411684 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26411686 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0951740741729736, + "time": 26411688 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.1261444091796875, + "time": 26411690 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.1261444091796875, + "time": 26411692 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.1261444091796875, + "time": 26411694 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.1261444091796875, + "time": 26411696 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0807288885116577, + "time": 26411698 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0807288885116577, + "time": 26411700 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0807288885116577, + "time": 26411702 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0807288885116577, + "time": 26411704 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0807288885116577, + "time": 26411706 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.013304787687957287, + "time": 26411708 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.202372670173645, + "time": 26411708 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.202372670173645, + "time": 26411710 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.202372670173645, + "time": 26411712 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.202372670173645, + "time": 26411714 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.202372670173645, + "time": 26411716 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.202372670173645, + "time": 26411718 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.202372670173645, + "time": 26411718 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0778276920318604, + "time": 26411722 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.085710048675537, + "time": 26411724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.085710048675537, + "time": 26411724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.085710048675537, + "time": 26411726 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.085710048675537, + "time": 26411728 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.041054774075746536, + "time": 26411730 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.118502378463745, + "time": 26411732 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.118502378463745, + "time": 26411734 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.118502378463745, + "time": 26411736 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.118502378463745, + "time": 26411738 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.124943733215332, + "time": 26411740 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.070085048675537, + "time": 26411742 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.070085048675537, + "time": 26411744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.070085048675537, + "time": 26411746 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.070085048675537, + "time": 26411748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.070085048675537, + "time": 26411748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.070085048675537, + "time": 26411750 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.070085048675537, + "time": 26411752 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0534989833831787, + "time": 26411754 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.193668842315674, + "time": 26411756 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.193668842315674, + "time": 26411758 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.193668842315674, + "time": 26411760 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.193668842315674, + "time": 26411762 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0058419704437256, + "time": 26411764 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 2.988635540008545, + "time": 26411766 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 12 + }, + { + "location": "nb (https://apis.google.com/js/plusone.js:7)", + "line": 7 + } + ], + "responsiveness": 4.982832908630371, + "time": 26411768 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + } + ], + "responsiveness": 6.980832099914551, + "time": 26411770 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 9.093252182006836, + "time": 26411772 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 0.006842462345957756, + "time": 26411774 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)" + } + ], + "responsiveness": 2.029930353164673, + "time": 26411776 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 4.13740873336792, + "time": 26411778 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 6.139209270477295, + "time": 26411780 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + } + ], + "responsiveness": 8.122383117675781, + "time": 26411782 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 10.142809867858887, + "time": 26411784 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 20 + } + ], + "responsiveness": 12.249908447265625, + "time": 26411786 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 14.358146667480469, + "time": 26411788 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "Zd[K].D (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "be (https://apis.google.com/js/plusone.js:44)", + "line": 44 + }, + { + "location": "Tb (https://apis.google.com/js/plusone.js:11)", + "line": 11 + }, + { + "location": "Sb (https://apis.google.com/js/plusone.js:11)", + "line": 13 + }, + { + "location": "Sb/w (https://apis.google.com/js/plusone.js:12)", + "line": 12 + }, + { + "location": "_.Fa (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:21)", + "line": 21 + }, + { + "location": "EnterJIT" + }, + { + "location": "Ea (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:20)", + "line": 21 + }, + { + "location": "Ba (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:18)", + "line": 18 + } + ], + "responsiveness": 16.46524429321289, + "time": 26411790 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "ClickEventHandler.handleEvent (chrome://global/content/browser-content.js:208)", + "line": 209 + } + ], + "responsiveness": 1.2996876239776611, + "time": 26411792 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.3950016498565674, + "time": 26411794 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.3950016498565674, + "time": 26411796 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.3950016498565674, + "time": 26411798 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.3950016498565674, + "time": 26411800 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.3950016498565674, + "time": 26411802 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.973670244216919, + "time": 26411804 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.973670244216919, + "time": 26411806 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 5.989435195922852, + "time": 26411808 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 7.978691101074219, + "time": 26411810 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 9.970988273620605, + "time": 26411812 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 0.008363009430468082, + "time": 26411814 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 2.1264851093292236, + "time": 26411816 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 4.263994216918945, + "time": 26411818 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 5.370952606201172, + "time": 26411818 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 7.3746538162231445, + "time": 26411820 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "gfx::DrawThebesLayer", + "line": 3756 + }, + { + "location": "nsCSSRendering::PaintBackground", + "line": 1350 + } + ], + "responsiveness": 9.3551664352417, + "time": 26411822 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 11.378253936767578, + "time": 26411824 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 1.0183864831924438, + "time": 26411826 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "PreviewController.prototype.handleEvent (resource://app/modules/WindowsPreviewPerTab.jsm:357)", + "line": 358 + } + ], + "responsiveness": 3.011823892593384, + "time": 26411828 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "layout::Flush (Flush_Style)", + "line": 3969 + }, + { + "location": "CSS::ProcessRestyles", + "line": 137 + } + ], + "responsiveness": 5.017805576324463, + "time": 26411830 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.996037483215332, + "time": 26411832 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.996037483215332, + "time": 26411834 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.996037483215332, + "time": 26411836 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.045896291732788, + "time": 26411838 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.0229878425598145, + "time": 26411840 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.0229878425598145, + "time": 26411842 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.0229878425598145, + "time": 26411844 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.0229878425598145, + "time": 26411846 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.0229878425598145, + "time": 26411848 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0785880088806152, + "time": 26411850 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0785880088806152, + "time": 26411852 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0785880088806152, + "time": 26411854 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.048255920410156, + "time": 26411856 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.048255920410156, + "time": 26411858 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.053359031677246, + "time": 26411860 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.053359031677246, + "time": 26411862 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.053359031677246, + "time": 26411864 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.053359031677246, + "time": 26411866 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.08945083618164, + "time": 26411868 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.08945083618164, + "time": 26411870 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.019286632537842, + "time": 26411872 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.019286632537842, + "time": 26411874 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.019286632537842, + "time": 26411876 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.019286632537842, + "time": 26411878 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.019286632537842, + "time": 26411880 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.019286632537842, + "time": 26411880 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.001800298690796, + "time": 26411882 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.995997905731201, + "time": 26411884 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.995997905731201, + "time": 26411886 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.995997905731201, + "time": 26411888 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.995997905731201, + "time": 26411890 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0335919857025146, + "time": 26411892 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0335919857025146, + "time": 26411896 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0335919857025146, + "time": 26411896 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0335919857025146, + "time": 26411898 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.098954200744629, + "time": 26411902 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04675682634115219, + "time": 26411902 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1112797260284424, + "time": 26411906 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1112797260284424, + "time": 26411906 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1112797260284424, + "time": 26411908 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1112797260284424, + "time": 26411910 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1112797260284424, + "time": 26411912 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1112797260284424, + "time": 26411914 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.056540012359619, + "time": 26411916 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.336460590362549, + "time": 26411918 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.336460590362549, + "time": 26411920 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.336460590362549, + "time": 26411922 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.336460590362549, + "time": 26411924 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.969728946685791, + "time": 26411926 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.969728946685791, + "time": 26411928 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.969728946685791, + "time": 26411928 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.969728946685791, + "time": 26411930 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-009.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 8.008341789245605, + "time": 26411932 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-009.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 10.056899070739746, + "time": 26411934 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-009.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 1.0244686603546143, + "time": 26411936 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-009.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 3.0232279300689697, + "time": 26411938 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-009.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 5.025028228759766, + "time": 26411940 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-009.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 7.070164203643799, + "time": 26411942 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + }, + { + "location": "RasterImage::SyncDecode http://barcode.oberhofer.dev/img/stream/image-009.jpg", + "line": 2414 + }, + { + "location": "ImageDecoder::Write", + "line": 90 + } + ], + "responsiveness": 9.070823669433594, + "time": 26411944 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 52 + } + ], + "responsiveness": 11.06920337677002, + "time": 26411946 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 53 + } + ], + "responsiveness": 13.073284149169922, + "time": 26411948 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 53 + } + ], + "responsiveness": 15.078505516052246, + "time": 26411950 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 260 + }, + { + "location": "FrameGrabber.create/that_.grab (http://barcode.oberhofer.dev/js/frame_grabber.js:48)", + "line": 54 + }, + { + "location": "EnterJIT" + }, + { + "location": "CVUtils.computeGray (http://barcode.oberhofer.dev/js/cv_utils.js:657)" + } + ], + "responsiveness": 17.08334732055664, + "time": 26411952 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 19.078685760498047, + "time": 26411954 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 21.124582290649414, + "time": 26411956 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 23.216474533081055, + "time": 26411958 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 25.220935821533203, + "time": 26411960 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 212 + }, + { + "location": "Rasterizer.create/<.rasterize (http://barcode.oberhofer.dev/js/rasterizer.js:32)" + } + ], + "responsiveness": 27.221216201782227, + "time": 26411962 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 29.263309478759766, + "time": 26411964 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 31.288299560546875, + "time": 26411966 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 33.334957122802734, + "time": 26411970 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 35.33181381225586, + "time": 26411972 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 37.374290466308594, + "time": 26411974 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 39.41676330566406, + "time": 26411976 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 41.459617614746094, + "time": 26411978 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 43.464080810546875, + "time": 26411980 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 45.510738372802734, + "time": 26411982 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 209 + }, + { + "location": "ImageWrapper.prototype.zeroBorder (http://barcode.oberhofer.dev/js/image_wrapper.js:235)" + } + ], + "responsiveness": 47.510257720947266, + "time": 26411984 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 49.511295318603516, + "time": 26411986 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 51.512718200683594, + "time": 26411988 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 53.5145149230957, + "time": 26411990 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 55.51593780517578, + "time": 26411992 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 57.517356872558594, + "time": 26411994 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 59.51953887939453, + "time": 26411996 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 61.520198822021484, + "time": 26411998 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 63.52085876464844, + "time": 26412000 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)" + } + ], + "responsiveness": 65.56637573242188, + "time": 26412002 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 222 + }, + { + "location": "extractPatches (http://barcode.oberhofer.dev/js/barcode_locator.js:367)", + "line": 386 + }, + { + "location": "similarMoments (http://barcode.oberhofer.dev/js/barcode_locator.js:315)", + "line": 316 + }, + { + "location": "CVUtils.cluster (http://barcode.oberhofer.dev/js/cv_utils.js:493)", + "line": 520 + }, + { + "location": "addToCluster (http://barcode.oberhofer.dev/js/cv_utils.js:505)", + "line": 510 + }, + { + "location": "updateCenter (http://barcode.oberhofer.dev/js/cluster2.js:17)", + "line": 24 + } + ], + "responsiveness": 67.65788269042969, + "time": 26412004 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 69.66082763671875, + "time": 26412006 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 71.70634460449219, + "time": 26412008 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 73.69027709960938, + "time": 26412010 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 212 + }, + { + "location": "Rasterizer.create/<.rasterize (http://barcode.oberhofer.dev/js/rasterizer.js:32)" + } + ], + "responsiveness": 75.69664001464844, + "time": 26412012 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 77.69425964355469, + "time": 26412014 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 79.70783996582031, + "time": 26412016 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 212 + }, + { + "location": "Rasterizer.create/<.rasterize (http://barcode.oberhofer.dev/js/rasterizer.js:32)" + } + ], + "responsiveness": 81.71420288085938, + "time": 26412018 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 83.69851684570312, + "time": 26412020 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 85.71514129638672, + "time": 26412022 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 87.7169418334961, + "time": 26412024 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 89.71684265136719, + "time": 26412026 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 263 + }, + { + "location": ".locate (http://barcode.oberhofer.dev/js/barcode_locator.js:484)", + "line": 485 + }, + { + "location": "EnterJIT" + }, + { + "location": "findBarcode (http://barcode.oberhofer.dev/js/barcode_locator.js:158)", + "line": 201 + }, + { + "location": "asm.js code :0", + "line": 0 + } + ], + "responsiveness": 91.75969696044922, + "time": 26412028 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "event::nsViewManager::DispatchEvent", + "line": 733 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "st.event.add/y.handle (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "st.event.dispatch (http://barcode.oberhofer.dev/js/vendor/jquery-1.9.0.min.js:2)", + "line": 2 + }, + { + "location": "js::RunScript" + }, + { + "location": "http://barcode.oberhofer.dev/js/main.js:84", + "line": 85 + }, + { + "location": ".start (http://barcode.oberhofer.dev/js/barcode.js:322)", + "line": 324 + }, + { + "location": "start (http://barcode.oberhofer.dev/js/barcode.js:282)", + "line": 284 + }, + { + "location": "drawFrame (http://barcode.oberhofer.dev/js/barcode.js:284)", + "line": 290 + }, + { + "location": "update (http://barcode.oberhofer.dev/js/barcode.js:254)", + "line": 268 + }, + { + "location": "BarcodeDecoder.create/<.decodeFromBoundingBoxes (http://barcode.oberhofer.dev/js/barcode_decoder.js:166)", + "line": 167 + }, + { + "location": "EnterJIT" + }, + { + "location": "BarcodeDecoder.create/<.decodeFromBoundingBoxes (http://barcode.oberhofer.dev/js/barcode_decoder.js:166)", + "line": 170 + }, + { + "location": "decodeFromBoundingBox (http://barcode.oberhofer.dev/js/barcode_decoder.js:55)", + "line": 138 + }, + { + "location": "BarcodeReader.create/that.decodePattern (http://barcode.oberhofer.dev/js/barcode_reader.js:123)", + "line": 128 + }, + { + "location": "Code128Reader.create/that.decode (http://barcode.oberhofer.dev/js/code_128_reader.js:139)", + "line": 140 + }, + { + "location": "Code128Reader.create/that.findStart (http://barcode.oberhofer.dev/js/code_128_reader.js:88)" + } + ], + "responsiveness": 93.7881088256836, + "time": 26412030 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 1.3753348588943481, + "time": 26412032 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 3.3775153160095215, + "time": 26412034 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 4.421751022338867, + "time": 26412034 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + } + ], + "responsiveness": 6.4665069580078125, + "time": 26412036 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "CAL_observe (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/toolkit/webconsole/utils.js:1343)", + "line": 1358 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCA_onConsoleAPICall (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/actors/webconsole.js:1167)", + "line": 1172 + }, + { + "location": "WCA_prepareConsoleMessageForRemote (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/actors/webconsole.js:1316)", + "line": 1323 + }, + { + "location": "js::RunScript" + }, + { + "location": "map (self-hosted:1014)", + "line": 1020 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "map (self-hosted:979)", + "line": 1004 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCA_prepareConsoleMessageForRemote/result.arguments< (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/actors/webconsole.js:1323)", + "line": 1325 + }, + { + "location": "WCA_createValueGrip (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/actors/webconsole.js:392)", + "line": 394 + }, + { + "location": "js::RunScript" + }, + { + "location": "ThreadActor.prototype.createValueGrip (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js -> resource://gre/modules/devtools/server/actors/script.js:1982)", + "line": 1991 + }, + { + "location": "ThreadActor.prototype._stringIsLong (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js -> resource://gre/modules/devtools/server/actors/script.js:2166)", + "line": 2167 + } + ], + "responsiveness": 8.482752799987793, + "time": 26412038 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.02280820719897747, + "time": 26412040 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1981911659240723, + "time": 26412042 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1981911659240723, + "time": 26412042 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1981911659240723, + "time": 26412044 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1981911659240723, + "time": 26412046 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.372512817382812, + "time": 26412048 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.372512817382812, + "time": 26412050 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1103795766830444, + "time": 26412054 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1103795766830444, + "time": 26412054 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1103795766830444, + "time": 26412056 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1103795766830444, + "time": 26412058 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1103795766830444, + "time": 26412060 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1103795766830444, + "time": 26412062 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1103795766830444, + "time": 26412064 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0909925699234009, + "time": 26412064 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0909925699234009, + "time": 26412066 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0909925699234009, + "time": 26412066 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0909925699234009, + "time": 26412068 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0909925699234009, + "time": 26412070 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0909925699234009, + "time": 26412072 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.030930995941162, + "time": 26412074 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.030930995941162, + "time": 26412076 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.030930995941162, + "time": 26412078 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.030930995941162, + "time": 26412080 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.030930995941162, + "time": 26412080 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.030930995941162, + "time": 26412082 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.039914362132549286, + "time": 26412084 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1432111263275146, + "time": 26412086 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1432111263275146, + "time": 26412088 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.332558631896973, + "time": 26412090 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2096 + }, + { + "location": "js::RunScript" + }, + { + "location": "WCF__outputMessageFromQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2195)", + "line": 2213 + }, + { + "location": "WCF__filterRepeatedMessage (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:1099)", + "line": 1132 + }, + { + "location": "WCF_mergeFilteredMessageNode (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:1074)", + "line": 1086 + } + ], + "responsiveness": 7.331317901611328, + "time": 26412092 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 9.33083724975586, + "time": 26412094 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 0.01102396659553051, + "time": 26412096 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 1.1016364097595215, + "time": 26412098 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "js::RunScript" + }, + { + "location": "EnterJIT" + }, + { + "location": "WCF__flushMessageQueue (resource://gre/modules/commonjs/toolkit/loader.js -> resource:///modules/devtools/webconsole/webconsole.js:2053)", + "line": 2105 + }, + { + "location": "layout::Flush (Flush_Layout)", + "line": 3969 + }, + { + "location": "layout::DoReflow (chrome://browser/content/devtools/webconsole.xul)", + "line": 8360 + } + ], + "responsiveness": 3.168060064315796, + "time": 26412100 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.288463115692139, + "time": 26412102 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.288463115692139, + "time": 26412104 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.288463115692139, + "time": 26412104 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.288463115692139, + "time": 26412106 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 1.9542832374572754, + "time": 26412108 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 3.93023419380188, + "time": 26412110 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 5.955223083496094, + "time": 26412112 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 7.9524617195129395, + "time": 26412114 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 9.037371635437012, + "time": 26412116 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + } + ], + "responsiveness": 0.007222598884254694, + "time": 26412118 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.230122685432434, + "time": 26412118 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.230122685432434, + "time": 26412120 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.230122685432434, + "time": 26412122 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.249448776245117, + "time": 26412124 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.249448776245117, + "time": 26412126 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.249448776245117, + "time": 26412128 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9989994764328003, + "time": 26412130 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.117501735687256, + "time": 26412132 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.117501735687256, + "time": 26412134 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.117501735687256, + "time": 26412136 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.117501735687256, + "time": 26412138 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.31881332397461, + "time": 26412140 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.132427453994751, + "time": 26412142 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.132427453994751, + "time": 26412142 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.132427453994751, + "time": 26412144 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.132427453994751, + "time": 26412146 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.132427453994751, + "time": 26412148 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.132427453994751, + "time": 26412148 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.132427453994751, + "time": 26412150 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0139646530151367, + "time": 26412152 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.991816520690918, + "time": 26412154 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.991816520690918, + "time": 26412156 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.991816520690918, + "time": 26412158 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.991816520690918, + "time": 26412160 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.991816520690918, + "time": 26412162 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1388897895812988, + "time": 26412164 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1388897895812988, + "time": 26412166 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1388897895812988, + "time": 26412166 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "CC::nsCycleCollector_forgetSkippable", + "line": 3817 + } + ], + "responsiveness": 6.162777423858643, + "time": 26412168 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.2637939453125, + "time": 26412170 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.330977439880371, + "time": 26412172 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412174 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412176 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412178 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412178 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412180 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412182 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412184 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0496976375579834, + "time": 26412186 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0496976375579834, + "time": 26412186 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.241706371307373, + "time": 26412188 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.241706371307373, + "time": 26412190 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.241706371307373, + "time": 26412192 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.241706371307373, + "time": 26412194 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.241706371307373, + "time": 26412194 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.112280249595642, + "time": 26412196 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.112280249595642, + "time": 26412198 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.112280249595642, + "time": 26412200 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.112280249595642, + "time": 26412202 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.112280249595642, + "time": 26412204 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.207432746887207, + "time": 26412206 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0594412088394165, + "time": 26412208 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0594412088394165, + "time": 26412208 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0594412088394165, + "time": 26412210 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0594412088394165, + "time": 26412212 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0594412088394165, + "time": 26412212 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0594412088394165, + "time": 26412214 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0594412088394165, + "time": 26412214 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0594412088394165, + "time": 26412216 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0035611391067505, + "time": 26412218 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0035611391067505, + "time": 26412220 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0035611391067505, + "time": 26412222 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.295065402984619, + "time": 26412224 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.295065402984619, + "time": 26412226 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.295065402984619, + "time": 26412226 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.960225522518158, + "time": 26412228 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.960225522518158, + "time": 26412230 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.996518135070801, + "time": 26412232 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.031390190124512, + "time": 26412234 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.031390190124512, + "time": 26412236 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.017486292868852615, + "time": 26412238 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.112800359725952, + "time": 26412240 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.112800359725952, + "time": 26412242 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.112800359725952, + "time": 26412244 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.112800359725952, + "time": 26412246 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.112800359725952, + "time": 26412248 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.112800359725952, + "time": 26412250 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1050575971603394, + "time": 26412250 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1050575971603394, + "time": 26412252 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.4145283699035645, + "time": 26412254 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.686086177825928, + "time": 26412256 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.686086177825928, + "time": 26412258 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.686086177825928, + "time": 26412260 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.686086177825928, + "time": 26412260 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1141809225082397, + "time": 26412262 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1141809225082397, + "time": 26412264 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1141809225082397, + "time": 26412266 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1141809225082397, + "time": 26412268 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1141809225082397, + "time": 26412270 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04295545816421509, + "time": 26412272 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2647150754928589, + "time": 26412274 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2647150754928589, + "time": 26412274 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2647150754928589, + "time": 26412276 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2647150754928589, + "time": 26412278 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2647150754928589, + "time": 26412280 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2647150754928589, + "time": 26412282 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9932974576950073, + "time": 26412284 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9932974576950073, + "time": 26412286 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.018185615539551, + "time": 26412288 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.018185615539551, + "time": 26412290 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.018185615539551, + "time": 26412292 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.018185615539551, + "time": 26412294 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1051974296569824, + "time": 26412296 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1051974296569824, + "time": 26412298 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1051974296569824, + "time": 26412300 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.261893272399902, + "time": 26412302 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.261893272399902, + "time": 26412304 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + } + ], + "responsiveness": 0.01064383052289486, + "time": 26412306 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2316431999206543, + "time": 26412306 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2316431999206543, + "time": 26412308 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2316431999206543, + "time": 26412310 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.2316431999206543, + "time": 26412312 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.464506149291992, + "time": 26412314 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.464506149291992, + "time": 26412314 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0115439891815186, + "time": 26412316 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0115439891815186, + "time": 26412318 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.0368123054504395, + "time": 26412320 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.0368123054504395, + "time": 26412322 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.0368123054504395, + "time": 26412324 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.0368123054504395, + "time": 26412326 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0415748357772827, + "time": 26412328 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0415748357772827, + "time": 26412330 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0415748357772827, + "time": 26412330 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0901713371276855, + "time": 26412332 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0901713371276855, + "time": 26412334 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.0901713371276855, + "time": 26412336 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 0.015965744853019714, + "time": 26412338 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 2.0101633071899414, + "time": 26412340 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsLayoutUtils::PaintFrame::BuildDisplayList", + "line": 2680 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + }, + { + "location": "ViewportFrame::BuildDisplayList", + "line": 62 + } + ], + "responsiveness": 4.038573265075684, + "time": 26412342 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 6.04189395904541, + "time": 26412344 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::ComputeVisibilityForRoot", + "line": 1038 + } + ], + "responsiveness": 8.035331726074219, + "time": 26412346 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 9.144570350646973, + "time": 26412348 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 11.131546020507812, + "time": 26412350 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "Timer::Fire", + "line": 516 + }, + { + "location": "nsRefreshDriver::Tick", + "line": 1035 + }, + { + "location": "Paint::PresShell::Paint", + "line": 5809 + }, + { + "location": "nsLayoutUtils::PaintFrame", + "line": 2577 + }, + { + "location": "nsDisplayList::PaintRoot", + "line": 1206 + }, + { + "location": "ContainerState::ProcessDisplayItems", + "line": 2402 + } + ], + "responsiveness": 13.155393600463867, + "time": 26412352 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0126843452453613, + "time": 26412354 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0414743423461914, + "time": 26412356 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0414743423461914, + "time": 26412358 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0414743423461914, + "time": 26412360 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0414743423461914, + "time": 26412362 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.0414743423461914, + "time": 26412364 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101396083831787, + "time": 26412366 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101396083831787, + "time": 26412368 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.101396083831787, + "time": 26412370 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.074485778808594, + "time": 26412372 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.074485778808594, + "time": 26412374 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0773077011108398, + "time": 26412376 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.065423011779785, + "time": 26412378 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.065423011779785, + "time": 26412380 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.065423011779785, + "time": 26412382 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.065423011779785, + "time": 26412382 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.065423011779785, + "time": 26412384 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9831736087799072, + "time": 26412386 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.9560835361480713, + "time": 26412388 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.9560835361480713, + "time": 26412390 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.9560835361480713, + "time": 26412392 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.9560835361480713, + "time": 26412394 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.019386976957321167, + "time": 26412396 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0390536785125732, + "time": 26412398 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0390536785125732, + "time": 26412400 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0390536785125732, + "time": 26412402 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0390536785125732, + "time": 26412402 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.320433616638184, + "time": 26412404 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.320433616638184, + "time": 26412406 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9343762397766113, + "time": 26412408 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9343762397766113, + "time": 26412410 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9343762397766113, + "time": 26412412 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9343762397766113, + "time": 26412412 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9343762397766113, + "time": 26412414 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9343762397766113, + "time": 26412416 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9343762397766113, + "time": 26412416 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.9343762397766113, + "time": 26412418 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1093790531158447, + "time": 26412420 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26412422 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26412424 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26412426 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26412428 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 4.107758045196533, + "time": 26412430 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0868110656738281, + "time": 26412430 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.082529306411743, + "time": 26412432 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.085089683532715, + "time": 26412434 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.085089683532715, + "time": 26412436 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.166618347167969, + "time": 26412438 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26412440 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26412442 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26412442 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26412444 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26412446 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26412448 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.03435218334198, + "time": 26412450 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0689446926116943, + "time": 26412452 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0689446926116943, + "time": 26412454 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.099154949188232, + "time": 26412456 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.099154949188232, + "time": 26412458 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.099154949188232, + "time": 26412460 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.048277370631694794, + "time": 26412462 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.24152672290802, + "time": 26412464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.24152672290802, + "time": 26412464 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.24152672290802, + "time": 26412466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.24152672290802, + "time": 26412466 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.24152672290802, + "time": 26412468 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.24152672290802, + "time": 26412470 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.004561641253530979, + "time": 26412472 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.045135974884033, + "time": 26412474 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.045135974884033, + "time": 26412476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.045135974884033, + "time": 26412476 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.045135974884033, + "time": 26412478 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.045135974884033, + "time": 26412480 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.045135974884033, + "time": 26412484 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1149412393569946, + "time": 26412486 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1149412393569946, + "time": 26412486 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.048976898193359, + "time": 26412488 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.048976898193359, + "time": 26412492 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.048976898193359, + "time": 26412494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.048976898193359, + "time": 26412494 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.012063980102539, + "time": 26412496 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.012063980102539, + "time": 26412498 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.012063980102539, + "time": 26412500 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.012063980102539, + "time": 26412502 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.012063980102539, + "time": 26412504 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.18842601776123, + "time": 26412506 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0202871561050415, + "time": 26412508 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0202871561050415, + "time": 26412510 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0202871561050415, + "time": 26412510 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0202871561050415, + "time": 26412512 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0202871561050415, + "time": 26412514 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0202871561050415, + "time": 26412516 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0328316688537598, + "time": 26412518 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0328316688537598, + "time": 26412520 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.097254276275635, + "time": 26412522 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.097254276275635, + "time": 26412524 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.097254276275635, + "time": 26412524 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.097254276275635, + "time": 26412526 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.097254276275635, + "time": 26412526 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000139832496643, + "time": 26412528 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000139832496643, + "time": 26412530 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.000139832496643, + "time": 26412532 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.069023609161377, + "time": 26412534 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.069023609161377, + "time": 26412536 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.265213966369629, + "time": 26412538 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26412540 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26412542 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26412542 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26412544 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26412546 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26412548 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0856707096099854, + "time": 26412548 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0016604661941528, + "time": 26412550 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0016604661941528, + "time": 26412552 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0016604661941528, + "time": 26412554 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.192808628082275, + "time": 26412556 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.192808628082275, + "time": 26412558 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.192808628082275, + "time": 26412560 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412562 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412562 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412564 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412566 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412568 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0944137573242188, + "time": 26412570 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 10.541193008422852, + "time": 26412572 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0784480571746826, + "time": 26412574 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0784480571746826, + "time": 26412576 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0784480571746826, + "time": 26412576 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0784480571746826, + "time": 26412578 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0784480571746826, + "time": 26412580 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0784480571746826, + "time": 26412582 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1198829412460327, + "time": 26412584 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1198829412460327, + "time": 26412586 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.121582984924316, + "time": 26412588 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.121582984924316, + "time": 26412590 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.121582984924316, + "time": 26412592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.121582984924316, + "time": 26412592 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.022948145866394, + "time": 26412594 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.022948145866394, + "time": 26412596 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.022948145866394, + "time": 26412596 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.022948145866394, + "time": 26412598 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.022948145866394, + "time": 26412600 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.022948145866394, + "time": 26412602 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.022948145866394, + "time": 26412604 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.051318466663360596, + "time": 26412606 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1166017055511475, + "time": 26412608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1166017055511475, + "time": 26412608 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1166017055511475, + "time": 26412610 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1166017055511475, + "time": 26412612 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1166017055511475, + "time": 26412614 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.1166017055511475, + "time": 26412616 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0166256427764893, + "time": 26412618 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0166256427764893, + "time": 26412620 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.989055156707764, + "time": 26412622 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.989055156707764, + "time": 26412624 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.989055156707764, + "time": 26412624 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 5.989055156707764, + "time": 26412626 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0880913734436035, + "time": 26412628 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0880913734436035, + "time": 26412630 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0880913734436035, + "time": 26412632 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0880913734436035, + "time": 26412634 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 9.194368362426758, + "time": 26412636 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.050558194518089294, + "time": 26412638 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.107858419418335, + "time": 26412640 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.107858419418335, + "time": 26412642 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.107858419418335, + "time": 26412642 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.107858419418335, + "time": 26412644 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.107858419418335, + "time": 26412646 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.107858419418335, + "time": 26412648 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1073384284973145, + "time": 26412650 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1073384284973145, + "time": 26412652 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.1073384284973145, + "time": 26412654 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.3650102615356445, + "time": 26412656 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.3650102615356445, + "time": 26412658 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.3650102615356445, + "time": 26412660 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0371530055999756, + "time": 26412662 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0371530055999756, + "time": 26412664 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0371530055999756, + "time": 26412664 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0371530055999756, + "time": 26412666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0371530055999756, + "time": 26412666 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0371530055999756, + "time": 26412668 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.04903764650225639, + "time": 26412670 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.258252739906311, + "time": 26412672 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.258252739906311, + "time": 26412674 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.258252739906311, + "time": 26412676 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.258252739906311, + "time": 26412678 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.258252739906311, + "time": 26412680 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.258252739906311, + "time": 26412682 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0742665529251099, + "time": 26412684 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0742665529251099, + "time": 26412686 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0742665529251099, + "time": 26412688 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.046975612640381, + "time": 26412688 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.046975612640381, + "time": 26412692 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.046975612640381, + "time": 26412694 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.102536678314209, + "time": 26412696 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.102536678314209, + "time": 26412696 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.102536678314209, + "time": 26412700 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.102536678314209, + "time": 26412702 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.102536678314209, + "time": 26412704 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26412706 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26412706 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26412708 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26412710 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26412712 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26412714 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0993555784225464, + "time": 26412716 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0481770038604736, + "time": 26412718 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0481770038604736, + "time": 26412720 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.111839294433594, + "time": 26412722 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.111839294433594, + "time": 26412722 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.111839294433594, + "time": 26412724 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 6.111839294433594, + "time": 26412726 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9603654146194458, + "time": 26412728 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9603654146194458, + "time": 26412730 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9603654146194458, + "time": 26412730 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9603654146194458, + "time": 26412732 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.9603654146194458, + "time": 26412734 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 0.02090752311050892, + "time": 26412736 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0253686904907227, + "time": 26412738 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0253686904907227, + "time": 26412740 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0253686904907227, + "time": 26412742 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0253686904907227, + "time": 26412744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0253686904907227, + "time": 26412744 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0253686904907227, + "time": 26412746 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 2.0253686904907227, + "time": 26412748 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0419549942016602, + "time": 26412750 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0419549942016602, + "time": 26412750 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0419549942016602, + "time": 26412752 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0419549942016602, + "time": 26412754 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.228060722351074, + "time": 26412756 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 8.228060722351074, + "time": 26412758 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0583008527755737, + "time": 26412760 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0583008527755737, + "time": 26412760 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0583008527755737, + "time": 26412762 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0583008527755737, + "time": 26412764 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0583008527755737, + "time": 26412766 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0583008527755737, + "time": 26412766 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.0583008527755737, + "time": 26412768 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.112280249595642, + "time": 26412770 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1137003898620605, + "time": 26412772 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1137003898620605, + "time": 26412774 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1137003898620605, + "time": 26412776 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1137003898620605, + "time": 26412776 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1137003898620605, + "time": 26412778 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 3.1137003898620605, + "time": 26412780 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.095554232597351, + "time": 26412782 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.095554232597351, + "time": 26412784 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 1.095554232597351, + "time": 26412786 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.012383460998535, + "time": 26412788 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + } + ], + "responsiveness": 7.012383460998535, + "time": 26412790 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "f (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:815)", + "line": 818 + }, + { + "location": "L (https://oauth.googleusercontent.com/gadgets/js/core:rpc:shindig.random:shindig.sha1.js?c=2:962)", + "line": 969 + } + ], + "responsiveness": 0.016726018860936165, + "time": 26412792 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + } + ], + "responsiveness": 2.0382933616638184, + "time": 26412794 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "EventDispatcher::Dispatch", + "line": 390 + }, + { + "location": "js::RunScript" + }, + { + "location": "c (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:109)", + "line": 110 + }, + { + "location": "g (https://apis.google.com/_/scs/apps-static/_/js/k=oz.gapi.en.9YdudwyFIxs.O/m=plusone/rt=j/sv=1/d=1/ed=1/am=AQ/rs=AItRSTMIeXyHLZQbXjj15Bi0Oi9WSiPFzg/cb=gapi.loaded_0:118)", + "line": 119 + }, + { + "location": "js::RunScript" + }, + { + "location": "_.T resource://gre/modules/devtools/DevToolsUtils.js:82)", + "line": 84 + }, + { + "location": "js::RunScript" + }, + { + "location": "LDT_send/< (resource://gre/modules/devtools/dbg-client.jsm -> resource://gre/modules/devtools/server/transport.js:273)", + "line": 279 + }, + { + "location": "js::RunScript" + }, + { + "location": "DSC_onPacket (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js:1044)", + "line": 1098 + }, + { + "location": "js::RunScript" + }, + { + "location": "ProfilerActor.prototype.onGetProfile (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js -> resource://gre/modules/devtools/server/actors/profiler.js:100)", + "line": 101 + } + ], + "responsiveness": 3.016005277633667, + "time": 26417152 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "js::RunScript" + }, + { + "location": "makeInfallible/< (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/DevToolsUtils.js:82)", + "line": 84 + }, + { + "location": "js::RunScript" + }, + { + "location": "LDT_send/< (resource://gre/modules/devtools/dbg-client.jsm -> resource://gre/modules/devtools/server/transport.js:273)", + "line": 279 + }, + { + "location": "js::RunScript" + }, + { + "location": "DSC_onPacket (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js:1044)", + "line": 1098 + }, + { + "location": "js::RunScript" + }, + { + "location": "ProfilerActor.prototype.onGetProfile (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js -> resource://gre/modules/devtools/server/actors/profiler.js:100)", + "line": 101 + } + ], + "responsiveness": 5.014764308929443, + "time": 26417154 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "js::RunScript" + }, + { + "location": "makeInfallible/< (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/DevToolsUtils.js:82)", + "line": 84 + }, + { + "location": "js::RunScript" + }, + { + "location": "LDT_send/< (resource://gre/modules/devtools/dbg-client.jsm -> resource://gre/modules/devtools/server/transport.js:273)", + "line": 279 + }, + { + "location": "js::RunScript" + }, + { + "location": "DSC_onPacket (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js:1044)", + "line": 1098 + }, + { + "location": "js::RunScript" + }, + { + "location": "ProfilerActor.prototype.onGetProfile (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js -> resource://gre/modules/devtools/server/actors/profiler.js:100)", + "line": 101 + } + ], + "responsiveness": 7.0161848068237305, + "time": 26417156 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "js::RunScript" + }, + { + "location": "makeInfallible/< (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/DevToolsUtils.js:82)", + "line": 84 + }, + { + "location": "js::RunScript" + }, + { + "location": "LDT_send/< (resource://gre/modules/devtools/dbg-client.jsm -> resource://gre/modules/devtools/server/transport.js:273)", + "line": 279 + }, + { + "location": "js::RunScript" + }, + { + "location": "DSC_onPacket (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js:1044)", + "line": 1098 + }, + { + "location": "js::RunScript" + }, + { + "location": "ProfilerActor.prototype.onGetProfile (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js -> resource://gre/modules/devtools/server/actors/profiler.js:100)", + "line": 101 + } + ], + "responsiveness": 9.016844749450684, + "time": 26417158 + }, + { + "frames": [ + { + "location": "(root)" + }, + { + "location": "Startup::XRE_Main", + "line": 4037 + }, + { + "location": "js::RunScript" + }, + { + "location": "makeInfallible/< (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/DevToolsUtils.js:82)", + "line": 84 + }, + { + "location": "js::RunScript" + }, + { + "location": "LDT_send/< (resource://gre/modules/devtools/dbg-client.jsm -> resource://gre/modules/devtools/server/transport.js:273)", + "line": 279 + }, + { + "location": "js::RunScript" + }, + { + "location": "DSC_onPacket (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js:1044)", + "line": 1098 + }, + { + "location": "js::RunScript" + }, + { + "location": "ProfilerActor.prototype.onGetProfile (resource://gre/modules/commonjs/toolkit/loader.js -> resource://gre/modules/devtools/server/main.js -> resource://gre/modules/devtools/server/actors/profiler.js:100)", + "line": 101 + } + ], + "responsiveness": 0.0030410944018512964, + "time": 26417160 + } + ] + } + ] + } +} \ No newline at end of file diff --git a/quagga2/quagga2-1.12.1/doc/readme.md b/quagga2/quagga2-1.12.1/doc/readme.md new file mode 100644 index 0000000..89593c6 --- /dev/null +++ b/quagga2/quagga2-1.12.1/doc/readme.md @@ -0,0 +1,167 @@ +Barcode Reader +============== + +Barcode Reader is a library written in JavaScript capable of decoding common barcodes (e.g.: Code128 and EAN13) directly in the browser. It can handle various sources of images such as file-input for a single image or preferrably a camera stream (via `getUserMedia`) for real-time decoding. + +# How does it work? +For those of you interested in the inner workings of this implementation, please keep on reading. + +As already depicted in the image above, this implementation makes use of two subsequent stages, first locating (blue box) and second decoding (red line) the barcode. + +## Barcode Locator +The main purpose of the barcode locator is finding a pattern within the source image which looks like a barcode. A barcode is typically characterized by its black bars and white gaps in between. The overall size of the barcode may depend on the amount of information encoded (Code128) or be fixed in width (EAN13). When searching for a barcode in an image we are looking for: + +- _lines_, which are +- _close_ _to_ each other +- have a similar _angle_ + +The process of locating such a barcode is loosely based on a paper called [Locating and decoding EAN-13 barcodes from images captured by digital cameras][douglas_05] which's steps were adapted and modified resulting in: + +1. Creating a binary representation of the image +2. Slice the image into a grid (20 x 15 cells) +3. Extract the skeleton of each cell +4. Separate the skeleton into its parts +5. Component labeling +6. Calculate the rotation of each part +7. Determine cell quality (rotation uniformity) +8. Find connecting cells with similar rotation +9. Create bounding-box of connected cells + +Let's start with the creation of a binary image, or more precisely, a thresholded image. + +### Creating a binary image +There are many different ways of creating a binary representation of an image. The easiest being a global threshold of 127 and determining for each pixel if its brighter (>=127) or darker(<127) than the threshold. Whilst this method might be the simpliest to implement, the outcome might not be sufficient because it does not take into account illumination changes across the image. + +In order to account for the brightness changes in the image, a method called [Otsu][otsu_wiki] is employed which operates on the histogram of the source image and tries to separate the foreground from the background. The image below is produced by exactly this method. + +![Binary Image][binary_image] + +The separation of the barcode from the background works fairly well, resulting in an image which is handed over to the next stage. + +### Slicing the image into a grid +The binary image as a whole does not provide much information about its content. In order to make sense of the contained structure, the image is breaken down into smaller chunks which are then described independently from each other. This _description_ is then compared with our hypotheses and either taken into consideration for further processing, or discarded. + +During the development, a grid of 20 x 15 cells (assuming a 4:3 aspect ratio of the image) yielded to statisfactory results. + +IMG + +Having the image sliced up into individual parts, each cell in the grid needs to be evaluated and classified based on the properties described above. Each cell has to be checked if it contains nothing but parallel lines to get passed on to the next stage. + +First, the bars have to be normalized in width (1px width), then separated line by line, followed by the estimation of the angle of each line. Then, each line in the cell is compared to the others to determine the parallelity. Finally, if the majority of lines are parallel to each other, the average angle is computed. + +### Extract skeleton of each cell +The normalization of the width to 1px is done by a method known as [skeletonizing][skeleton_wiki]. What it does is, that it tries to remove as much of the weight of the bar as possible. In this implementation, this is simply done by eroding and dilating the contents as long as there are unprocessed pixels. This yields to a _skeleton_ of the given image as shown in the next image: + +![skeleton_image][skeleton_image] + +This clearly shows the location of the barcode, and the bars of the code reduced to their minimum width of 1px. + +### Component Labeling +In order to find out if parallel lines are contained within each cell, the skeletonized content, which ideally contains straight lines of the interested area, must be separated into individual pieces (lines). This is achieved by applying a technique called [connected-component labeling][labeling_wiki] which separates a given region into its individual components. In case of the barcode pattern, all lines within the cell are split up into single lines and then weighted by their rotation. + +Due to the fact that component labeling is usually quite expensive in terms of computation, a fast algorithm was of the essence to create a real-time application. With that in mind, an implementation of the paper ["A Linear-Time Component-Labeling Algorithm Using Contour Tracing Technique"][labeling_paper] by Fu Chang, Chun-Jen Chen, and Chi-Jen Lu was found on [CodeProject][labeling_codeproject]. Unfortunatelly, the original code was written in C and had to be ported to JavaScript. + +The image below visualizes the output of the component-labeling stage. + +![component_labeling_image][component_labeling_image] + +As mentioned before, each cell is treated invividually, that's why each color is used repeatedly throughout the cells. The color for each component within the cell is unique and denotes the label given by the algorithm. The following images show scaled up versions of two extracted cells, of which the left one indicates a possible barcode area whereas the right one does not contain much but noise. + +![Component labeling lines][component_labeling_lines_image] +![Component labeling lines][component_labeling_text_image] + +Each label can then be considered as a possible __bar__ of a barcode pattern. To be able to classify such a representation, a quantitative value needs to be computed for each __bar__ which can then be compared with the other components. + +### Determining the orientation of such a component +The orientation of a single component within a cell is calculated by using [central image moments][central_image_moments_wiki]. This method is typically used to extract information of the orientation of a binary image. In this case, the binary image is represented by the labeled components. Each component is considered its own binary image of which the central image moment can be computed. + +As depicted in the equation below, the orientation (indicated as θ) of a binary image can be determined by knowing its central moments (μ). + +![Calculation of Theta][math_theta] + +The central moments (μ) are computed by making use of the raw moments (M) and the centroid (x,y) which in turn need to be calculated up front. + +![Calculation of mu][math_mu] + +The following computes the components of the centroid (x,y) by using the raw moments (M). + +![Calculating x bar][math_x_y_bar] + +Since we need image moments up to the second order, the following listing shows the computation of each single moment. The sum over x and y denotes an iteration over the entire image, whereas I(x,y) indicates the value of the pixel at the position x,y. In this case, the value can either be 0 or 1, since we are operating on a binary image. + +![Calculating M][math_m] + +After this step, each component has an angle assigned which is then used in the first step of the classification. + +### Determining cell quality + +#### Discarding non-representative information +Cells containing none, or just one component are immediatelly discarded and not used for further processing. In addition, components which do not cover at least 6 px (M00) are exlucded from any subsequent calculations of the affected cell. This pre-filtered list serves as basis for determining the uniformity of the component's angles throughout a single cell. + +In case of a barcode each component in a cell should be ideally parallel to each other. But due to noise, distortion and other influences, this may vary at some degree. A simple clustering technique is applied to find out the similarity of such components. First off, all angles are clustered with a certain threshold, whereupon the cluster with the highest count of members is selected. Only if this cluster's member-size is greater that 3/4 th of the initial set (without the non-representative components) this cell is finally considered as being part of a barcode pattern. From now on, this cell is referred to as a patch, which contains the following information: + +- an index (unique identifier within the grid) +- the bounding box defining the cell +- all components and their associated moments +- an average angle (computed from the cluster) +- a vector pointing in the direction of orientation + +The following picture highlights the patches (cells) which were found during the classification process described above. + +![Image found patches][found_patches_image] + +It's noticable that some cells were falsely classified as being part of a barcode pattern. Those false positives can be taken care of by finding connected areas (consisting of more than one cell) and discarding all remaining cells. + +### Finding connected cells +Basically, cells can be considered part of a barcode if they are neighbors and share common properties. This grouping is archived by a simple recursive component-labeling algorithm which operates on similarity of orientation, instead of color. For a patch to become member of a label, its vector must point in the same direction as its neighbor's. In order to account for deviations caused by distortion and other geometric influences, the orientation can deviate up to 5 %. The next image illustrates those connected cells where the color defines a certain group. + +![Connected patch labels][connected_patch_labels] + +Sometimes even neighboring cells are colored differently. This happens if the orientation of those patches differ too much (> 5%). + +### Selecting groups +Next up is the selection of the groups which most probably contain a barcode. Because more than one barcode can be present in an image at the same time, groups are first sorted and then filtered by their count of patches. + +![Remaining patch labels][remaining_patch_labels] + +Only the biggest groups remain which are then passed on to the creation of a bounding-box. + +### Create bounding box +Finally all the information necessary for outlining the location of the barcode is available. In this last step, a minimum bounding box is created +which spans over all the patches in one group. First, the average angle of the containing patches is calculated which is then used to rotate the cells +by exactly this angle. After that a bounding-box is computed by simply finding the outermost corners of all the patches. + +![Rotated cells with box][transformed_patches] + +Finally, the bounding-box is rotated in the inverse direction to transform it back to its origin. + +![Bounding box][bounding_box_skeleton] + +As illustrated in the image above, the bounding-box is placed exactly where the barcode pattern is printed. Having a box like this helps a lot during the +actual decoding process because knowing the orientation and the rough area limits the scanning efforts. + +## Barcode Decoder + + +[teaser_image]: https://www.oberhofer.co/content/images/2014/11//teaser.png +[binary_image]: https://www.oberhofer.co/content/images/2014/11//binary.png +[skeleton_image]: https://www.oberhofer.co/content/images/2014/11//skeleton.png +[otsu_wiki]: http://en.wikipedia.org/wiki/Otsu%27s_method +[douglas_05]: http://www.icics.org/2005/download/P0840.pdf +[skeleton_wiki]: http://en.wikipedia.org/wiki/Morphological_skeleton +[labeling_wiki]: http://en.wikipedia.org/wiki/Connected-component_labeling +[labeling_codeproject]: http://www.codeproject.com/Tips/407172/Connected-Component-Labeling-and-Vectorization +[labeling_paper]: http://www.iis.sinica.edu.tw/papers/fchang/1362-F.pdf +[component_labeling_image]: https://www.oberhofer.co/content/images/2014/11//component-labeling.png +[component_labeling_lines_image]: https://www.oberhofer.co/content/images/2014/11//component-labeling-line.png +[component_labeling_text_image]: https://www.oberhofer.co/content/images/2014/11//component-labeling-text.png +[math_theta]: http://www.sciweavers.org/tex2img.php?eq=%5CTheta%20%3D%20%5Cfrac%7B1%7D%7B2%7D%20%5Carctan%20%5Cleft%28%20%5Cfrac%7B2%5Cmu%27_%7B11%7D%7D%7B%5Cmu%27_%7B20%7D%20-%20%5Cmu%27_%7B02%7D%7D%20%5Cright%29&bc=Transparent&fc=Black&im=png&fs=12&ff=arev&edit=0 +[math_mu]: http://www.sciweavers.org/tex2img.php?eq=%5Cmu%27_%7B11%7D%20%3D%20M_%7B11%7D%2FM_%7B00%7D%20-%20%5Cbar%7Bx%7D%5Cbar%7By%7D%20%5C%5C%0A%5Cmu%27_%7B02%7D%20%3D%20M_%7B02%7D%2FM_%7B00%7D%20-%20%5Cbar%7By%7D%5E2%20%5C%5C%0A%5Cmu%27_%7B20%7D%20%3D%20M_%7B20%7D%2FM_%7B00%7D%20-%20%5Cbar%7Bx%7D%5E2&bc=Transparent&fc=Black&im=png&fs=12&ff=arev&edit=0 +[math_x_y_bar]: http://www.sciweavers.org/tex2img.php?eq=%5Cbar%7Bx%7D%20%3D%20M_%7B10%7D%2FM_%7B00%7D%20%5C%5C%0A%5Cbar%7By%7D%20%3D%20M_%7B01%7D%2FM_%7B00%7D&bc=Transparent&fc=Black&im=png&fs=12&ff=arev&edit=0 +[math_m]: http://www.sciweavers.org/tex2img.php?eq=M_%7B00%7D%20%3D%20%5Csum_x%20%5Csum_y%20I%28x%2Cy%29%20%5C%5C%0AM_%7B10%7D%20%3D%20%5Csum_x%20%5Csum_y%20x%20I%28x%2Cy%29%20%5C%5C%0AM_%7B01%7D%20%3D%20%5Csum_x%20%5Csum_y%20y%20I%28x%2Cy%29%20%5C%5C%0AM_%7B11%7D%20%3D%20%5Csum_x%20%5Csum_y%20xy%20I%28x%2Cy%29%20%5C%5C%0AM_%7B20%7D%20%3D%20%5Csum_x%20%5Csum_y%20x%5E2%20I%28x%2Cy%29%20%5C%5C%0AM_%7B02%7D%20%3D%20%5Csum_x%20%5Csum_y%20y%5E2%20I%28x%2Cy%29&bc=Transparent&fc=Black&im=png&fs=12&ff=arev&edit=0 +[central_image_moments_wiki]: http://en.wikipedia.org/wiki/Image_moment#Central_moments +[found_patches_image]: https://www.oberhofer.co/content/images/2014/11//patches_found.png +[connected_patch_labels]: https://www.oberhofer.co/content/images/2014/11//connected-patch-labels.png +[remaining_patch_labels]: https://www.oberhofer.co/content/images/2014/11//remaining-patch-labels.png +[transformed_patches]: https://www.oberhofer.co/content/images/2014/11//bb-rotated.png +[bounding_box_skeleton]: https://www.oberhofer.co/content/images/2014/11//bb-binary.png diff --git a/quagga2/quagga2-1.12.1/docker-compose.yml b/quagga2/quagga2-1.12.1/docker-compose.yml new file mode 100644 index 0000000..9fe947b --- /dev/null +++ b/quagga2/quagga2-1.12.1/docker-compose.yml @@ -0,0 +1,10 @@ +version: '3.7' + +services: + nodejs: + build: + context: ./ + image: quagga2/build + volumes: + - .:/quagga2 + command: "npm run build" diff --git a/quagga2/quagga2-1.12.1/docs/_config.yml b/quagga2/quagga2-1.12.1/docs/_config.yml new file mode 100644 index 0000000..0ebf324 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/_config.yml @@ -0,0 +1,3 @@ +title: Quagga2 Documentation +description: Barcode scanning for browser and node! +theme: jekyll-theme-cayman diff --git a/quagga2/quagga2-1.12.1/docs/assets/bb-binary.png b/quagga2/quagga2-1.12.1/docs/assets/bb-binary.png new file mode 100644 index 0000000..d42128a Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/bb-binary.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/bb-rotated.png b/quagga2/quagga2-1.12.1/docs/assets/bb-rotated.png new file mode 100644 index 0000000..00e96f8 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/bb-rotated.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/binary.png b/quagga2/quagga2-1.12.1/docs/assets/binary.png new file mode 100644 index 0000000..582f5f2 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/binary.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/component-labeling-line.png b/quagga2/quagga2-1.12.1/docs/assets/component-labeling-line.png new file mode 100644 index 0000000..4468065 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/component-labeling-line.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/component-labeling-text.png b/quagga2/quagga2-1.12.1/docs/assets/component-labeling-text.png new file mode 100644 index 0000000..c9a17ec Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/component-labeling-text.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/component-labeling.png b/quagga2/quagga2-1.12.1/docs/assets/component-labeling.png new file mode 100644 index 0000000..2e8621d Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/component-labeling.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/connected-patch-labels.png b/quagga2/quagga2-1.12.1/docs/assets/connected-patch-labels.png new file mode 100644 index 0000000..ba9e081 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/connected-patch-labels.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/mobile-detected.png b/quagga2/quagga2-1.12.1/docs/assets/mobile-detected.png new file mode 100644 index 0000000..b603d50 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/mobile-detected.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/mobile-located.png b/quagga2/quagga2-1.12.1/docs/assets/mobile-located.png new file mode 100644 index 0000000..b75a8df Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/mobile-located.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/patches_found.png b/quagga2/quagga2-1.12.1/docs/assets/patches_found.png new file mode 100644 index 0000000..d475732 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/patches_found.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/quaggaJS-code128.png b/quagga2/quagga2-1.12.1/docs/assets/quaggaJS-code128.png new file mode 100644 index 0000000..1089e61 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/quaggaJS-code128.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/remaining-patch-labels.png b/quagga2/quagga2-1.12.1/docs/assets/remaining-patch-labels.png new file mode 100644 index 0000000..d0450d2 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/remaining-patch-labels.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/skeleton.png b/quagga2/quagga2-1.12.1/docs/assets/skeleton.png new file mode 100644 index 0000000..6e2af14 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/skeleton.png differ diff --git a/quagga2/quagga2-1.12.1/docs/assets/teaser.png b/quagga2/quagga2-1.12.1/docs/assets/teaser.png new file mode 100644 index 0000000..9aa7c8c Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/assets/teaser.png differ diff --git a/quagga2/quagga2-1.12.1/docs/contributing.md b/quagga2/quagga2-1.12.1/docs/contributing.md new file mode 100644 index 0000000..31cf28b --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/contributing.md @@ -0,0 +1,119 @@ +## Contributing {#contributing} + +### Questions, Bugs, Enhancements / Suggestions {#questions-bugs-enhancements} + +For questions, bug reports, and enhancement requests / suggestions, please use the GitHub issue +tracker at https://github.com/ericblade/quagga2/issues + +### Chat / Real Time Communication? {#chat} + +We have a Gitter chat channel available at https://gitter.im/quaggaJS/Lobby . Please join us there, +and be patient. Thanks! + +### Code {#code} + +#### Developing enhancements to Quagga2 {#developing-enhancements} + +If you'd like to work directly on the Quagga2 code, it is quite easy to build a local development +copy and get started hacking on the base code. Simply clone this repository, then run: + +``` +npm install +npm run build +``` + +#### Running tests {#running-tests} + +There are several tests included in Quagga2, in the test/ folder. Please make sure before you +send in any pull requests, that you have run ```npm test``` against the existing tests, as well as +implemented any tests that may be needed to test your new code. If you're not sure how to properly +unit test your new code, then go ahead and make that pull request, and we'll try to help you before +merging. + +**Test Structure**: + +- Unit tests are in `src/` alongside source files (`.spec.ts` files) +- Integration tests are in `test/integration/` organized by decoder type +- See `test/integration/README.md` for detailed information about integration test structure and configuration + +**Running Specific Tests**: + +```bash +# All tests (Node unit/integration + full Cypress suite) +npm test + +# Run Node and Cypress in parallel (faster local iteration) +npm run test:parallel + +# Node tests only +npm run test:node + +# Browser tests only (requires Cypress) +npm run test:browser-all + +# E2E examples spec with server (headless) +npm run test:e2e + +# E2E examples spec (interactive, Electron) +npm run test:e2e:open + +# Cypress: run only specific spec(s) +# Pass --spec through npm using -- +npm run cypress:run -- --spec cypress/e2e/browser.cy.ts + +# Multiple specs (comma-separated) +npm run cypress:run -- --spec cypress/e2e/browser.cy.ts,cypress/e2e/integration.cy.ts + +# Glob pattern +npm run cypress:run -- --spec "cypress/e2e/**/browser*.cy.ts" + +# Open interactive runner +npm run cypress:open + +# Open only the examples E2E spec (Electron) +npm run cypress:open:e2e + +# Choose a browser (if installed) +npx cross-env NODE_ENV=development BUILD_ENV=development NODE_OPTIONS=--openssl-legacy-provider cypress run --browser chrome --env BUILD_ENV=development --spec cypress/e2e/browser.cy.ts + +# Integration tests only (Node) +npx ts-mocha -p test/tsconfig.json test/integration/**/*.spec.ts + +# Specific decoder integration tests +npx ts-mocha -p test/tsconfig.json test/integration/decoders/ean_8.spec.ts +``` + +**Adding Integration Tests**: + +When adding new test cases to decoder integration tests, tests should pass in both Node and browser +environments by default. If a test is known to fail in a specific environment, mark it explicitly with: + +- `allowFailInNode: true` - Test can fail in Node without failing CI +- `allowFailInBrowser: true` - Test can fail in browser without failing CI +- Both flags - Test can fail in both environments + +See `test/integration/README.md` for complete details on the test failure marking system. + +**Notes**: + +- The Cypress E2E examples (`cypress/e2e/examples.cy.ts`) require the local examples server on port 8080; the `test`, `test:e2e`, and `test:e2e:open` scripts start it automatically via `start-server-and-test`. +- The parallel runner uses prefixed logs (`e2e`, `node`) and exits non-zero if either side fails (`--kill-others-on-fail --success=all`). + +#### Working on a changed copy of Quagga2 from another repository (ie, developing an external plugin) {#working-on-external-plugin} + +If you need to make changes to Quagga2 to support some external code (such as an external reader plugin), +you will probably need to be able to test the code in your other repo. One such way to do that is +to ```npm install @ericblade/quagga2``` inside the external repo, which will initialize the module +structure, and fill it with the current release of quagga2. Once that is completed, then copy the +lib/quagga.js (node) and/or dist/quagga.js and/or dist/quagga.min.js files into +ExternalRepo/node_modules/@ericblade/quagga2, preserving the "lib" or "dist" folder. Then your code +will have the new changes that you have implemented in your copy of the quagga2 repo. + +#### Pull requests {#pull-requests} + +Please, submit pull requests! Open source works best when we all work together. If you find a change +to be useful, the odds are that other users will, as well! + +## BE AWESOME {#be-awesome} + +Don't forget to BE AWESOME. diff --git a/quagga2/quagga2-1.12.1/docs/examples/.eslintrc b/quagga2/quagga2-1.12.1/docs/examples/.eslintrc new file mode 100644 index 0000000..9d896f6 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/.eslintrc @@ -0,0 +1,7 @@ +{ + "parserOptions": { + "ecmaFeatures": { + "jsx": true + } + } +} diff --git a/quagga2/quagga2-1.12.1/docs/examples/camera_example.html b/quagga2/quagga2-1.12.1/docs/examples/camera_example.html new file mode 100644 index 0000000..8ef5970 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/camera_example.html @@ -0,0 +1,86 @@ + + + + + + + Camera + + + + +
+ Quagga2 Project © 2014-2025 Christoph Oberhofer, Eric Blade, and all other Contributors. See package.json. Licensed under MIT license. See LICENSE +
+ + diff --git a/quagga2/quagga2-1.12.1/docs/examples/config.rb b/quagga2/quagga2-1.12.1/docs/examples/config.rb new file mode 100644 index 0000000..e803c3e --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/config.rb @@ -0,0 +1,27 @@ + +# Require any additional compass plugins here. + + +# Set this to the root of your project when deployed: +http_path = "/" +css_dir = "css" +sass_dir = "sass" +images_dir = "img" +javascripts_dir = "js" +fonts_dir="fonts" + +# You can select your preferred output style here (can be overridden via the command line): +# output_style = :expanded or :nested or :compact or :compressed + +# To enable relative paths to assets via compass helper functions. Uncomment: +# relative_assets = true + +# To disable debugging comments that display the original location of your selectors. Uncomment: +# line_comments = false + + +# If you prefer the indented syntax, you might want to regenerate this +# project again passing --syntax sass, or you can uncomment this: +# preferred_syntax = :sass +# and then run: +# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass diff --git a/quagga2/quagga2-1.12.1/docs/examples/css/colors.css b/quagga2/quagga2-1.12.1/docs/examples/css/colors.css new file mode 100644 index 0000000..0b96132 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/css/colors.css @@ -0,0 +1,16 @@ +@charset "UTF-8"; +/* LESS - http://lesscss.org style sheet */ +/* Palette color codes */ +/* Palette URL: http://paletton.com/#uid=31g0q0kHZAviRSkrHLOGomVNzac */ +/* Feel free to copy&paste color codes to your application */ +/* MIXINS */ +/* As hex codes */ +/* Main Primary color */ +/* Main Secondary color (1) */ +/* Main Secondary color (2) */ +/* As RGBa codes */ +/* Main Primary color */ +/* Main Secondary color (1) */ +/* Main Secondary color (2) */ +/* Generated by Paletton.com ├é┬® 2002-2014 */ +/* http://paletton.com */ diff --git a/quagga2/quagga2-1.12.1/docs/examples/css/fonts.css b/quagga2/quagga2-1.12.1/docs/examples/css/fonts.css new file mode 100644 index 0000000..aa5a413 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/css/fonts.css @@ -0,0 +1 @@ +@import url("https://fonts.googleapis.com/css?family=Ubuntu:400,700|Cabin+Condensed:400,600"); diff --git a/quagga2/quagga2-1.12.1/docs/examples/css/styles.css b/quagga2/quagga2-1.12.1/docs/examples/css/styles.css new file mode 100644 index 0000000..adf1cf7 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/css/styles.css @@ -0,0 +1,298 @@ +@charset "UTF-8"; +@import url("https://fonts.googleapis.com/css?family=Ubuntu:400,700|Cabin+Condensed:400,600"); + +body { + background-color: #FFF; + margin: 0px; + font-family: Ubuntu, sans-serif; + color: #1e1e1e; + font-weight: normal; + padding-top: 0; +} + +h1, h2, h3, h4 { + font-family: "Cabin Condensed", sans-serif; +} + +header { + background: #FFC600; + padding: 1em; +} + +header .headline { + max-width: 640px; + margin: 0 auto; +} + +header .headline h1 { + color: #FFDD69; + font-size: 3em; + margin-bottom: 0; +} + +header .headline h2 { + margin-top: 0.2em; +} + +footer { + background: #0A4DB7; + color: #6C9CE8; + padding: 1em 2em 2em; +} + +#container { + width: 640px; + margin: 20px auto; + padding: 10px; +} + +#interactive.viewport { + width: 640px; + height: 480px; +} + + +#interactive.viewport canvas, video { + float: left; + width: 640px; + height: 480px; +} + +#interactive.viewport canvas.drawingBuffer, video.drawingBuffer { + margin-left: -640px; +} + +.controls fieldset { + border: none; + margin: 0; + padding: 0; +} + +.controls .input-group { + float: left; +} + +.controls .input-group input, .controls .input-group button { + display: block; +} + +.controls .reader-config-group { + float: right; +} + +.controls .reader-config-group label { + display: block; +} + +.controls .reader-config-group label span { + width: 9rem; + display: inline-block; + text-align: right; +} + +.controls:after { + content: ''; + display: block; + clear: both; +} + + +#result_strip { + margin: 10px 0; + border-top: 1px solid #EEE; + border-bottom: 1px solid #EEE; + padding: 10px 0; +} + +#result_strip > ul { + padding: 0; + margin: 0; + list-style-type: none; + width: auto; + overflow-x: auto; + overflow-y: hidden; + white-space: nowrap; +} + +#result_strip > ul > li { + display: inline-block; + vertical-align: middle; + width: 160px; +} + +#result_strip > ul > li .thumbnail { + padding: 5px; + margin: 4px; + border: 1px dashed #CCC; +} + +#result_strip > ul > li .thumbnail img { + max-width: 140px; +} + +#result_strip > ul > li .thumbnail .caption { + white-space: normal; +} + +#result_strip > ul > li .thumbnail .caption h4 { + text-align: center; + word-wrap: break-word; + height: 40px; + margin: 0px; +} + +#result_strip > ul:after { + content: ""; + display: table; + clear: both; +} + + +.scanner-overlay { + display: none; + width: 640px; + height: 510px; + position: absolute; + padding: 20px; + top: 50%; + margin-top: -275px; + left: 50%; + margin-left: -340px; + background-color: #FFF; + -moz-box-shadow: #333333 0px 4px 10px; + -webkit-box-shadow: #333333 0px 4px 10px; + box-shadow: #333333 0px 4px 10px; +} + +.scanner-overlay > .header { + position: relative; + margin-bottom: 14px; +} + +.scanner-overlay > .header h4, .scanner-overlay > .header .close { + line-height: 16px; +} + +.scanner-overlay > .header h4 { + margin: 0px; + padding: 0px; +} + +.scanner-overlay > .header .close { + position: absolute; + right: 0px; + top: 0px; + height: 16px; + width: 16px; + text-align: center; + font-weight: bold; + font-size: 14px; + cursor: pointer; +} + + +i.icon-24-scan { + width: 24px; + height: 24px; + background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzFFMjMzNTBFNjcwMTFFMkIzMERGOUMzMzEzM0E1QUMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzFFMjMzNTFFNjcwMTFFMkIzMERGOUMzMzEzM0E1QUMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDMUUyMzM0RUU2NzAxMUUyQjMwREY5QzMzMTMzQTVBQyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDMUUyMzM0RkU2NzAxMUUyQjMwREY5QzMzMTMzQTVBQyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PtQr90wAAAUuSURBVHjanFVLbFRVGP7ua97T9DGPthbamAYYBNSMVbBpjCliWWGIEBMWsnDJxkh8RDeEDW5MDGticMmGBWnSlRSCwgLFNkqmmrRIqzjTznTazkxn5s7c6/efzm0G0Jhwkj/nP+d/nv91tIWFBTQaDQWapkGW67p4ltUub5qmAi0UCqF/a/U2m81tpmddotwwDGSz2dzi4uKSaOucnJycGhsbe1XXdQiIIcdxEAgEtgXq9brySHCht79UXi/8QheawN27d385fPjwuEl6XyKR6LdtW7t06RLK5TKOHj2K/fv3Q87Dw8OYn5/HiRMnMDs7i5mZGQwODiqlPp8PuVwO6XRaOXb16lXl1OnTp5FMJvtosF8M+MWLarWqGJaWlpBKpRRcu3YN4+PjmJ6exsTEhDJw5coVjI6OKgPhcBiZTAbxeBx+vx+XL19Gd3c3Tp48Ka9zqDYgBlTQxYNgMIhIJKLCILkQb+TZsgvdsiyFi+feWRR7oRNZyanQtvW2V4DEUUBiK2eJpeDirSyhCe7F2QPh8fiEp72i9PbsC5G52DbiKZA771yr1dTuGfJ4PQNPFoAyQNR1aNEmsS5eyB3PgjeooMZd2AWvNmzYci/Gea7TeFOcI93jV/K67noGmi4vdRI9gPSDeMLSdKUBZZczlWm1rTtHjLZ24d+WER2tc8N1m+Y+ID74wx0zGYvhg9UNrJdtHJyZRdQfwPsrq9g99xsGlgsYmr6BNzO/IVwsYfjBQ6XYz6JI/72MV366B5/lw0elOkJWGUM3bmKtWjXSLuLaBWhnPnnp0FfoiFi4+TMfVAb2poBkDLjO845uYLEAjL4ALGWBP5YAOsP4AJYBFDaB1HOSVWD2PuV95H2RdV93Lv74/cf6p6Zxq/h6OofeOPJBC39JtONdwOAAViOs4p4OFGTf0Uc8iiyrr9YdQrUnDLsngrVOC0jQib44HlF2RafRZBz1Qy+vfhgK3NJZBlrm+LEm9qWwzFgLU7Ozg0JxZP06jQSRpQ7EerAWDSt6PuhHPmChEAog56fCLvJT5hHTm3OZkz3DyLx7XNWTGEA1GkV14gjWgwbW0ESVjYRwCOuai03L5E7OUBAV4kXSS4auoGIaKOma4m8EA5R1sMEGLh95C+XuLph0WJWpxepYYLtfT0RRgY1KgNODY6BoaChRuEhDCIZQYseuki5KN6hcQHiq7OZNv4/Zq2O6P4Lfkwn46vZjjaYZrIpvWbpzjLErrc4xUGE4avRedpYJalRcIl5hQius/SrPm9xrNOQYJhao6BvNUeWqtY8KaWuNjHOFAr7mM9f4NA4UbKysoUJ8PV9UzVOx6wxDDWUOxnK1pmCD07fOMAvtIsM3l89Dl3HRGhVma9AZMqjOnz2LQqWCxs6dqr3T7x1DTzKJaG8SekcHhg4cgI/56uKdlKnBV/WndqN3YAB/7tyBd3oT6GBIOzs7kc/nDfFdDFT5bS73cp06dQoaPa/Rw/rtO/resTHxxE2m9rCrbSR27UJCcMf1BpiA5rAAGgdfc868fUR1sMwj0cm9Iu9IctweisViB3hhKTHDcHc5jv/LspbyaZrR1OD82/fIlOkuB9LnEWRmDX2TsddUPg3D5gvuc0je0rZaD5EW6G3yjS+A3eeBEWq3XW/Abw1HhUspXADufQb86oW7tZytkYCN//3hHwBvDALPi8EnSOYK8DAOfCc2h4aGcO7cuafkzampqf9UripH12/DtOZbx8ciVGzYy5OO40o25ascGRl5Ssc/AgwAjW3JwqIUjSYAAAAASUVORK5CYII="); + display: inline-block; + background-repeat: no-repeat; + line-height: 24px; + margin-top: 1px; + vertical-align: text-top; +} + +@media (max-width: 603px) { + + #container { + width: 300px; + margin: 10px auto; + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; + } + + #container form.voucher-form input.voucher-code { + width: 180px; + } +} +@media (max-width: 603px) { + + .reader-config-group { + width: 100%; + } + + .reader-config-group label > span { + width: 50%; + } + + .reader-config-group label > select, .reader-config-group label > input { + max-width: calc(50% - 2px); + } + + #interactive.viewport { + width: 300px; + height: 300px; + overflow: hidden; + } + + + #interactive.viewport canvas, video { + margin-top: -50px; + width: 300px; + height: 400px; + } + + #interactive.viewport canvas.drawingBuffer, video.drawingBuffer { + margin-left: -300px; + } + + + #result_strip { + margin-top: 5px; + padding-top: 5px; + } + + #result_strip ul.thumbnails > li { + width: 150px; + } + + #result_strip ul.thumbnails > li .thumbnail .imgWrapper { + width: 130px; + height: 130px; + overflow: hidden; + } + + #result_strip ul.thumbnails > li .thumbnail .imgWrapper img { + margin-top: -25px; + width: 130px; + height: 180px; + } +} +@media (max-width: 603px) { + + .overlay.scanner { + width: 640px; + height: 510px; + padding: 20px; + margin-top: -275px; + margin-left: -340px; + background-color: #FFF; + -moz-box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; + } + + .overlay.scanner > .header { + margin-bottom: 14px; + } + + .overlay.scanner > .header h4, .overlay.scanner > .header .close { + line-height: 16px; + } + + .overlay.scanner > .header .close { + height: 16px; + width: 16px; + } +} diff --git a/quagga2/quagga2-1.12.1/docs/examples/file_input.html b/quagga2/quagga2-1.12.1/docs/examples/file_input.html new file mode 100644 index 0000000..64ffc50 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/file_input.html @@ -0,0 +1,110 @@ + + + + + + + index + + + + + + + + +
+
+

QuaggaJS

+ +

An advanced barcode-scanner written in JavaScript

+
+
+
+

Working with file-input

+ +

This example let's you select an image from your local filesystem. + QuaggaJS then tries to decode the barcode using + the preferred method (Code128 or EAN). + There is no server interaction needed as the + file is simply accessed through the File API.

+ +

This also works great on a wide range of mobile-phones where the camera + access through getUserMedia is still very limited.

+ +
+
+ + +
+
+ + + + + + +
+
+
+
    +
    +
    +
    +
    +
    +

    + Quagga2 Project © 2014-2025 Christoph Oberhofer, Eric Blade, and all other Contributors. See package.json. Licensed under MIT license. See LICENSE +

    +
    + + + + + diff --git a/quagga2/quagga2-1.12.1/docs/examples/file_input.js b/quagga2/quagga2-1.12.1/docs/examples/file_input.js new file mode 100644 index 0000000..e298998 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/file_input.js @@ -0,0 +1,203 @@ +$(function() { + var App = { + init: function() { + App.syncCheckboxesFromState(); + App.attachListeners(); + }, + syncCheckboxesFromState: function() { + var self = this; + $(".controls .reader-config-group input[type=checkbox]").each(function() { + var $checkbox = $(this), + name = $checkbox.attr("name"), + state = self._convertNameToState(name), + value = self._accessByPath(self.state, state); + $checkbox.prop("checked", !!value); + }); + }, + attachListeners: function() { + var self = this; + + $(".controls input[type=file]").on("change", function(e) { + if (e.target.files && e.target.files.length) { + App.decode(URL.createObjectURL(e.target.files[0])); + } + }); + + $(".controls button").on("click", function(e) { + var input = document.querySelector(".controls input[type=file]"); + if (input.files && input.files.length) { + App.decode(URL.createObjectURL(input.files[0])); + } + }); + + $(".controls .reader-config-group").on("change", "input, select", function(e) { + e.preventDefault(); + var $target = $(e.target), + value = $target.attr("type") === "checkbox" ? $target.prop("checked") : $target.val(), + name = $target.attr("name"), + state = self._convertNameToState(name); + + console.log("Value of "+ state + " changed to " + value); + self.setState(state, value); + }); + }, + _accessByPath: function(obj, path, val) { + var parts = path.split('.'), + depth = parts.length, + setter = (typeof val !== "undefined") ? true : false; + + return parts.reduce(function(o, key, i) { + if (setter && (i + 1) === depth) { + o[key] = val; + } + return key in o ? o[key] : {}; + }, obj); + }, + _convertNameToState: function(name) { + return name.replace("_", ".").split("-").reduce(function(result, value) { + return result + value.charAt(0).toUpperCase() + value.substring(1); + }); + }, + detachListeners: function() { + $(".controls input[type=file]").off("change"); + $(".controls .reader-config-group").off("change", "input, select"); + $(".controls button").off("click"); + }, + decode: function(src) { + var self = this, + config = $.extend({}, self.state, {src: src}); + + Quagga.decodeSingle(config, function(result) {}); + }, + setState: function(path, value) { + var self = this; + + if (typeof self._accessByPath(self.inputMapper, path) === "function") { + value = self._accessByPath(self.inputMapper, path)(value); + } + + self._accessByPath(self.state, path, value); + + console.log(JSON.stringify(self.state)); + App.detachListeners(); + App.init(); + }, + inputMapper: { + inputStream: { + size: function(value){ + return parseInt(value); + } + }, + decoder: { + readers: function(value) { + if (value === 'ean_extended') { + return [{ + format: "ean_reader", + config: { + supplements: [ + 'ean_5_reader', 'ean_2_reader' + ] + } + }]; + } + return [{ + format: value + "_reader", + config: {} + }]; + } + } + }, + state: { + inputStream: { + size: 800, + singleChannel: false, + area: { + top: "30%", + right: "10%", + left: "10%", + bottom: "30%", + backgroundColor: "rgba(255,0,0,0.15)" + } + }, + locator: { + patchSize: "medium", + halfSample: true + }, + decoder: { + readers: [{ + format: "code_128_reader", + config: {} + }] + }, + locate: true, + src: null + } + }; + + App.init(); + + function calculateRectFromArea(canvas, area) { + var canvasWidth = canvas.width, + canvasHeight = canvas.height, + top = parseInt(area.top)/100, + right = parseInt(area.right)/100, + bottom = parseInt(area.bottom)/100, + left = parseInt(area.left)/100; + + top *= canvasHeight; + right = canvasWidth - canvasWidth*right; + bottom = canvasHeight - canvasHeight*bottom; + left *= canvasWidth; + + return { + x: left, + y: top, + width: right - left, + height: bottom - top + }; + } + + Quagga.onProcessed(function(result) { + console.warn('* onProcessed', result); + var drawingCtx = Quagga.canvas.ctx.overlay, + drawingCanvas = Quagga.canvas.dom.overlay, + area; + + if (result) { + if (result.boxes) { + drawingCtx.clearRect(0, 0, parseInt(drawingCanvas.getAttribute("width")), parseInt(drawingCanvas.getAttribute("height"))); + result.boxes.filter(function (box) { + return box !== result.box; + }).forEach(function (box) { + Quagga.ImageDebug.drawPath(box, {x: 0, y: 1}, drawingCtx, {color: "green", lineWidth: 2}); + }); + } + + if (result.box) { + Quagga.ImageDebug.drawPath(result.box, {x: 0, y: 1}, drawingCtx, {color: "#00F", lineWidth: 2}); + } + + if (result.codeResult && result.codeResult.code) { + Quagga.ImageDebug.drawPath(result.line, {x: 'x', y: 'y'}, drawingCtx, {color: 'red', lineWidth: 3}); + } + + if (App.state.inputStream.area) { + area = calculateRectFromArea(drawingCanvas, App.state.inputStream.area); + drawingCtx.strokeStyle = "#0F0"; + drawingCtx.strokeRect(area.x, area.y, area.width, area.height); + } + } + }); + + Quagga.onDetected(function(result) { + console.warn('* onDetected', result); + var code = result.codeResult.code, + $node, + canvas = Quagga.canvas.dom.image; + + $node = $('
  • '); + $node.find("img").attr("src", canvas.toDataURL()); + $node.find("h4.code").html(code); + $("#result_strip ul.thumbnails").prepend($node); + }); +}); diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-001.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-001.jpg new file mode 100644 index 0000000..2075809 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-001.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-002.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-002.jpg new file mode 100644 index 0000000..24d04a4 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-002.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-003.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-003.jpg new file mode 100644 index 0000000..360b3a6 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-003.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-004.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-004.jpg new file mode 100644 index 0000000..11759ce Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-004.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-005.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-005.jpg new file mode 100644 index 0000000..a049f41 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-005.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-006.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-006.jpg new file mode 100644 index 0000000..1cbdf67 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-006.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-007.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-007.jpg new file mode 100644 index 0000000..eaf3465 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-007.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-008.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-008.jpg new file mode 100644 index 0000000..829fa57 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-008.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-009.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-009.jpg new file mode 100644 index 0000000..9c0b22b Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-009.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-010.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-010.jpg new file mode 100644 index 0000000..d9b6dfb Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-010.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-011.png b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-011.png new file mode 100644 index 0000000..fed9d08 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/code_128/image-011.png differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-001.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-001.jpg new file mode 100644 index 0000000..36adff7 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-001.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-002.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-002.jpg new file mode 100644 index 0000000..eee42c3 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-002.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-003.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-003.jpg new file mode 100644 index 0000000..e438fb8 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-003.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-004.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-004.jpg new file mode 100644 index 0000000..b2c5e9c Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-004.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-005.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-005.jpg new file mode 100644 index 0000000..affd510 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-005.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-006.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-006.jpg new file mode 100644 index 0000000..6561f09 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-006.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-007.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-007.jpg new file mode 100644 index 0000000..88c5f8f Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-007.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-008.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-008.jpg new file mode 100644 index 0000000..e80f70b Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-008.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-009.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-009.jpg new file mode 100644 index 0000000..825ac92 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-009.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-010.jpg b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-010.jpg new file mode 100644 index 0000000..6a5a833 Binary files /dev/null and b/quagga2/quagga2-1.12.1/docs/examples/fixtures/ean/image-010.jpg differ diff --git a/quagga2/quagga2-1.12.1/docs/examples/index.html b/quagga2/quagga2-1.12.1/docs/examples/index.html new file mode 100644 index 0000000..08d7bcb --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/index.html @@ -0,0 +1,31 @@ + + + + + Quagga2 Live Examples + + + + +
    +

    Quagga2 Live Examples

    +

    Choose an example to try out Quagga2 in your browser:

    +
    +
    + +

    Node.js Examples

    + +
    +
    +

    Quagga2 Project © 2014-2025 Christoph Oberhofer, Eric Blade, and all other Contributors. See package.json. Licensed under MIT license. See LICENSE

    +
    + + diff --git a/quagga2/quagga2-1.12.1/docs/examples/live_w_locator.html b/quagga2/quagga2-1.12.1/docs/examples/live_w_locator.html new file mode 100644 index 0000000..37281b3 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/live_w_locator.html @@ -0,0 +1,116 @@ + + + + + + + index + + + + + + + + +
    +
    +

    QuaggaJS

    +

    An advanced barcode-scanner written in JavaScript

    +
    +
    +
    +

    The user's camera

    +

    If your platform supports the getUserMedia API call, you can try the real-time locating and decoding features. + Simply allow the page to access your web-cam and point it to a barcode. You can switch between Code128 + and EAN to test different scenarios. + It works best if your camera has built-in auto-focus. +

    +
    +
    + +
    +
    + + + + + + + + +
    +
    +
    +
      +
        +
        +
        +
        +
        +

        + © Made with ❤️ by Christoph Oberhofer +

        +

        + Quagga2 Project © 2014-2025 Christoph Oberhofer, Eric Blade, and all other Contributors. See package.json. Licensed under MIT license. See LICENSE +

        +
        + + + + + + + diff --git a/quagga2/quagga2-1.12.1/docs/examples/live_w_locator.js b/quagga2/quagga2-1.12.1/docs/examples/live_w_locator.js new file mode 100644 index 0000000..41379dd --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/live_w_locator.js @@ -0,0 +1,402 @@ +$(function() { + var resultCollector = Quagga.ResultCollector.create({ + capture: true, + capacity: 20, + blacklist: [{ + code: "WIWV8ETQZ1", format: "code_93" + }, { + code: "EH3C-%GU23RK3", format: "code_93" + }, { + code: "O308SIHQOXN5SA/PJ", format: "code_93" + }, { + code: "DG7Q$TV8JQ/EN", format: "code_93" + }, { + code: "VOFD1DB5A.1F6QU", format: "code_93" + }, { + code: "4SO64P4X8 U4YUU1T-", format: "code_93" + }], + filter: function(codeResult) { + // only store results which match this constraint + // e.g.: codeResult + return true; + } + }); + var App = { + _initDebounceTimer: null, + _pendingReinit: false, + init: function() { + var self = this; + Quagga.init(this.state, function(err) { + if (err) { + return self.handleError(err); + } + //Quagga.registerResultCollector(resultCollector); + App.attachListeners(); + Quagga.start(); + App.initCameraSelection(); + App.checkCapabilities(); + // Sync UI checkboxes to match actual state after init + $('input[name="locate"]').prop('checked', App.state.locate); + }); + }, + reinit: function() { + // Debounced reinit: cancel pending and schedule a new one + console.log('[App.reinit] Called, current timer:', App._initDebounceTimer !== null, 'Current state.locate:', App.state.locate); + if (App._initDebounceTimer) { + console.log('[App.reinit] Cancelling pending init'); + clearTimeout(App._initDebounceTimer); + } + App._initDebounceTimer = setTimeout(function() { + console.log('[App.reinit] Debounce expired, calling init() with state.locate:', App.state.locate); + App._initDebounceTimer = null; + App._pendingReinit = false; + App.init(); + }, 250); + }, + handleError: function(err) { + console.log(err); + // If we attempted to open a specific device and failed, revert to last known-good constraints + try { + var attempted = (App.state && App.state.inputStream && App.state.inputStream.constraints) || {}; + var hadSpecificDevice = attempted && attempted.deviceId; + if (hadSpecificDevice) { + // Detach to avoid stacked handlers + // Try reinitializing to restore a working stream + Quagga.stop(); + App.init(); + } + } catch(e2) { + // Ignore and leave UI available for user to pick another device + } + }, + checkCapabilities: function() { + var track = Quagga.CameraAccess.getActiveTrack(); + var capabilities = {}; + if (typeof track.getCapabilities === 'function') { + capabilities = track.getCapabilities(); + } + this.applySettingsVisibility('zoom', capabilities.zoom); + this.applySettingsVisibility('torch', capabilities.torch); + }, + updateOptionsForMediaRange: function(node, range) { + console.log('updateOptionsForMediaRange', node, range); + var NUM_STEPS = 6; + var stepSize = (range.max - range.min) / NUM_STEPS; + var option; + var value; + while (node.firstChild) { + node.removeChild(node.firstChild); + } + for (var i = 0; i <= NUM_STEPS; i++) { + value = range.min + (stepSize * i); + option = document.createElement('option'); + option.value = value; + option.innerHTML = value; + node.appendChild(option); + } + }, + applySettingsVisibility: function(setting, capability) { + // depending on type of capability + if (typeof capability === 'boolean') { + var node = document.querySelector('input[name="settings_' + setting + '"]'); + if (node) { + node.parentNode.style.display = capability ? 'block' : 'none'; + } + return; + } + if (window.MediaSettingsRange && capability instanceof window.MediaSettingsRange) { + var node = document.querySelector('select[name="settings_' + setting + '"]'); + if (node) { + this.updateOptionsForMediaRange(node, capability); + node.parentNode.style.display = 'block'; + } + return; + } + }, + initCameraSelection: function(){ + var streamLabel = Quagga.CameraAccess.getActiveStreamLabel(); + var selectedDeviceId = null; + try { + // Prefer explicit deviceId from current state if present + var constraints = (this.state && this.state.inputStream && this.state.inputStream.constraints) || {}; + if (constraints.deviceId) { + selectedDeviceId = (typeof constraints.deviceId === 'object' && constraints.deviceId.exact) ? constraints.deviceId.exact : constraints.deviceId; + } else { + selectedDeviceId = null; + } + } catch(e) {} + + return Quagga.CameraAccess.enumerateVideoDevices() + .then(function(devices) { + function pruneText(text) { + return text.length > 30 ? text.substr(0, 30) : text; + } + var $deviceSelection = document.getElementById("deviceSelection"); + while ($deviceSelection.firstChild) { + $deviceSelection.removeChild($deviceSelection.firstChild); + } + devices.forEach(function(device) { + var $option = document.createElement("option"); + $option.value = device.deviceId || device.id; + $option.appendChild(document.createTextNode(pruneText(device.label || device.deviceId || device.id))); + // Preserve explicit selection by deviceId when available; fallback to stream label + if (selectedDeviceId) { + $option.selected = ($option.value === selectedDeviceId); + } else { + $option.selected = (streamLabel === device.label); + } + $deviceSelection.appendChild($option); + }); + }); + }, + attachListeners: function() { + var self = this; + + console.log('[App.attachListeners] Called - this should only happen once per init'); + self.initCameraSelection(); + + // Remove any existing handlers to prevent stacking + $(".controls").off("click", "button.stop"); + $(".controls .reader-config-group").off("change", "input, select"); + + $(".controls").on("click", "button.stop", function(e) { + e.preventDefault(); + Quagga.stop(); + self._printCollectedResults(); + }); + + $(".controls .reader-config-group").on("change", "input, select", function(e) { + e.preventDefault(); + var $target = $(e.target), + value = $target.attr("type") === "checkbox" ? $target.prop("checked") : $target.val(), + name = $target.attr("name"), + state = self._convertNameToState(name); + + console.log("Value of "+ state + " changed to " + value, "checkbox checked prop:", $target.prop("checked"), "target type:", $target.attr("type")); + self.setState(state, value); + }); + }, + _printCollectedResults: function() { + var results = resultCollector.getResults(), + $ul = $("#result_strip ul.collector"); + + results.forEach(function(result) { + var $li = $('
      • '); + + $li.find("img").attr("src", result.frame); + $li.find("h4.code").html(result.codeResult.code + " (" + result.codeResult.format + ")"); + $ul.prepend($li); + }); + }, + _accessByPath: function(obj, path, val) { + var parts = path.split('.'), + depth = parts.length, + setter = (typeof val !== "undefined") ? true : false; + + return parts.reduce(function(o, key, i) { + if (setter && (i + 1) === depth) { + if (typeof o[key] === "object" && typeof val === "object") { + Object.assign(o[key], val); + } else { + o[key] = val; + } + } + return key in o ? o[key] : {}; + }, obj); + }, + _convertNameToState: function(name) { + return name.replace("_", ".").split("-").reduce(function(result, value) { + return result + value.charAt(0).toUpperCase() + value.substring(1); + }); + }, + detachListeners: function() { + $(".controls").off("click", "button.stop"); + $(".controls .reader-config-group").off("change", "input, select"); + }, + applySetting: function(setting, value) { + var track = Quagga.CameraAccess.getActiveTrack(); + if (track && typeof track.getCapabilities === 'function') { + switch (setting) { + case 'zoom': + return track.applyConstraints({advanced: [{zoom: parseFloat(value)}]}); + case 'torch': + return track.applyConstraints({advanced: [{torch: !!value}]}); + } + } + }, + setState: function(path, value) { + var self = this; + + console.log('[App.setState] ENTRY: path=', path, 'value=', value, 'current state.locate=', self.state.locate); + + if (typeof self._accessByPath(self.inputMapper, path) === "function") { + value = self._accessByPath(self.inputMapper, path)(value); + } + + if (path.startsWith('settings.')) { + var setting = path.substring(9); + return self.applySetting(setting, value); + } + // If switching cameras, replace constraints entirely with { deviceId: { exact } } + if (path === 'inputStream.constraints' && value && typeof value === 'object' && 'deviceId' in value && Object.keys(value).length === 1) { + if (!self.state.inputStream) self.state.inputStream = {}; + var dev = value.deviceId; + self.state.inputStream.constraints = { deviceId: (typeof dev === 'object' ? dev : { exact: dev }) }; + } else { + self._accessByPath(self.state, path, value); + } + + console.log('[App.setState] AFTER _accessByPath: state.locate=', self.state.locate); + console.log(JSON.stringify(self.state)); + + console.log('[App.setState] path:', path, 'pending:', App._pendingReinit); + // Prevent overlapping stop/reinit sequences + if (App._pendingReinit) { + // Already stopping/reiniting, just update the debounce timer + console.log('[App.setState] Already pending, just updating debounce'); + App.reinit(); + return; + } + + console.log('[App.setState] Calling stop and scheduling reinit'); + App._pendingReinit = true; + App.detachListeners(); + var stopResult = Quagga.stop(); + if (stopResult && typeof stopResult.then === 'function') { + stopResult.then(function(){ + console.log('[App.setState] Stop completed (promise), calling reinit'); + App.reinit(); + }); + } else { + // Older sync stop; reinit with debounce + console.log('[App.setState] Stop completed (sync), calling reinit'); + App.reinit(); + } + }, + inputMapper: { + inputStream: { + constraints: function(value){ + if (/^(\d+)x(\d+)$/.test(value)) { + var values = value.split('x'); + // Update resolution while preserving any existing deviceId selection + var current = App.state && App.state.inputStream && App.state.inputStream.constraints || {}; + var next = { + width: {min: parseInt(values[0])}, + height: {min: parseInt(values[1])} + }; + if (current.deviceId) { + next.deviceId = current.deviceId; + } + return next; + } + // Switching camera: use ONLY deviceId with exact match to avoid conflicting constraints + return { deviceId: { exact: value } }; + } + }, + decoder: { + readers: function(value) { + if (value === 'ean_extended') { + return [{ + format: "ean_reader", + config: { + supplements: [ + 'ean_5_reader', 'ean_2_reader' + ] + } + }]; + } + return [{ + format: value + "_reader", + config: {} + }]; + } + } + }, + state: { + inputStream: { + type : "LiveStream", + constraints: { + width: {min: 640}, + height: {min: 480}, + facingMode: "environment", + aspectRatio: {min: 1, max: 2} + }, + area: { + top: "30%", + right: "10%", + left: "10%", + bottom: "30%", + // borderColor: "#0F0", + // borderWidth: 2, + backgroundColor: "rgba(255,0,0,0.15)" + } + }, + locator: { + patchSize: "medium", + halfSample: true + }, + frequency: 10, + decoder: { + readers : [{ + format: "code_128_reader", + config: {} + }] + }, + locate: true + }, + lastResult : null + }; + + console.log('[Startup] Calling initial App.reinit()'); + App.reinit(); + + var processedCount = 0; + Quagga.onProcessed(function(result) { + processedCount++; + /* + console.log('onProcessed #' + processedCount + ':', result ? { + hasBox: !!result.box, + boxLength: result.box ? result.box.length : 0, + hasBoxes: !!result.boxes, + boxesLength: result.boxes ? result.boxes.length : 0, + codeResult: !!result.codeResult + } : 'null result'); +*/ + var drawingCtx = Quagga.canvas.ctx.overlay, + drawingCanvas = Quagga.canvas.dom.overlay; + + if (result) { + if (result.boxes) { + drawingCtx.clearRect(0, 0, parseInt(drawingCanvas.getAttribute("width")), parseInt(drawingCanvas.getAttribute("height"))); + result.boxes.filter(function (box) { + return box !== result.box; + }).forEach(function (box) { + Quagga.ImageDebug.drawPath(box, {x: 0, y: 1}, drawingCtx, {color: "orange", lineWidth: 2}); + }); + } + + if (result.box) { + Quagga.ImageDebug.drawPath(result.box, {x: 0, y: 1}, drawingCtx, {color: "#00F", lineWidth: 2}); + } + + if (result.codeResult && result.codeResult.code) { + Quagga.ImageDebug.drawPath(result.line, {x: 'x', y: 'y'}, drawingCtx, {color: 'red', lineWidth: 3}); + } + } + }); + + Quagga.onDetected(function(result) { + var code = result.codeResult.code; + + if (App.lastResult !== code) { + App.lastResult = code; + var $node = null, canvas = Quagga.canvas.dom.image; + + $node = $('
      • '); + $node.find("img").attr("src", canvas.toDataURL()); + $node.find("h4.code").html(code); + $("#result_strip ul.thumbnails").prepend($node); + } + }); + +}); diff --git a/quagga2/quagga2-1.12.1/docs/examples/node-test-with-buffer.js b/quagga2/quagga2-1.12.1/docs/examples/node-test-with-buffer.js new file mode 100644 index 0000000..585c992 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/node-test-with-buffer.js @@ -0,0 +1,27 @@ +var Quagga = require('../lib/quagga').default; + +var buffer = require('fs').readFileSync('../test/fixtures/code_128/image-001.jpg'); + +decode(buffer); +function decode(buff){ + Quagga.decodeSingle({ + src: buff, + numOfWorkers: 0, + inputStream: { + mime: "image/jpeg", + size: 800, + area: { + top: "10%", + right: "5%", + left: "5%", + bottom: "10%" + } + } + }, function(result) { + if (result.codeResult) { + console.log("result", result.codeResult.code); + } else { + console.log("not detected"); + } + }); +} diff --git a/quagga2/quagga2-1.12.1/docs/examples/node-test.js b/quagga2/quagga2-1.12.1/docs/examples/node-test.js new file mode 100644 index 0000000..7efbd32 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/node-test.js @@ -0,0 +1,21 @@ +var Quagga = require('../lib/quagga').default; + +Quagga.decodeSingle({ + src: "../test/fixtures/code_128/image-001.jpg", + numOfWorkers: 0, + inputStream: { + size: 800, + area: { + top: "10%", + right: "5%", + left: "5%", + bottom: "10%" + } + } +}, function(result) { + if(result.codeResult) { + console.log("result", result.codeResult.code); + } else { + console.log("not detected"); + } +}); diff --git a/quagga2/quagga2-1.12.1/docs/examples/static_images.html b/quagga2/quagga2-1.12.1/docs/examples/static_images.html new file mode 100644 index 0000000..5ba6b5a --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/static_images.html @@ -0,0 +1,70 @@ + + + + + + + index + + + + + + + + + +
        +
        +

        QuaggaJS

        +

        An advanced barcode-scanner written in JavaScript

        +
        +
        +
        +

        Working with static images

        +

        This examples uses static image files as input which are loaded from the server on startup. + The locating and decoding process takes place inside the browser. + Hit the next button to try a different image. You can also switch between + two different test-sets. Each of those contains 10 images, demonstrating the capabilities of decoding + Code128 and EAN encoded barcodes. +

        +
        +
        + +
        +
        + Barcode-Type + +
        +
        +
        +
          +
          +
          +
          +
          +
          +

          + Quagga2 Project © 2014-2025 Christoph Oberhofer, Eric Blade, and all other Contributors. See package.json. Licensed under MIT license. See LICENSE +

          +
          + + + + + diff --git a/quagga2/quagga2-1.12.1/docs/examples/static_images.js b/quagga2/quagga2-1.12.1/docs/examples/static_images.js new file mode 100644 index 0000000..6815764 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/static_images.js @@ -0,0 +1,177 @@ +$(function() { + var App = { + init: function() { + var config = this.config[this.state.decoder.readers[0].format] || this.config.default; + config = $.extend(true, {}, config, this.state); + Quagga.init(config, function() { + App.attachListeners(); + Quagga.start(); + }); + }, + config: { + "default": { + inputStream: { name: "Test", + type: "ImageStream", + length: 10, + size: 800, + area: { + top: "30%", + right: "10%", + left: "10%", + bottom: "30%", + backgroundColor: "rgba(255,0,0,0.15)" + } + }, + locator: { + patchSize: "medium", + halfSample: true + } + }, + "i2of5_reader": { + inputStream: { + size: 800, + type: "ImageStream", + length: 5 + }, + locator: { + patchSize: "small", + halfSample: false + } + } + }, + attachListeners: function() { + var self = this; + + $(".controls").on("click", "button.next", function(e) { + e.preventDefault(); + Quagga.start(); + }); + + $(".controls .reader-config-group").on("change", "input, select", function(e) { + e.preventDefault(); + var $target = $(e.target), + value = $target.attr("type") === "checkbox" ? $target.prop("checked") : $target.val(), + name = $target.attr("name"), + states = self._convertNameToStates(name); + + console.log("Value of "+ states + " changed to " + value); + self.setState(states, value); + }); + }, + detachListeners: function() { + $(".controls").off("click", "button.next"); + $(".controls .reader-config-group").off("change", "input, select"); + }, + _accessByPath: function(obj, path, val) { + var parts = path.split('.'), + depth = parts.length, + setter = (typeof val !== "undefined") ? true : false; + + return parts.reduce(function(o, key, i) { + if (setter && (i + 1) === depth) { + o[key] = val; + } + return key in o ? o[key] : {}; + }, obj); + }, + _convertNameToStates: function(names) { + return names.split(";").map(this._convertNameToState.bind(this)); + }, + _convertNameToState: function(name) { + return name.replace("_", ".").split("-").reduce(function(result, value) { + return result + value.charAt(0).toUpperCase() + value.substring(1); + }); + }, + setState: function(paths, value) { + var self = this; + + paths.forEach(function(path) { + var mappedValue; + + if (typeof self._accessByPath(self.inputMapper, path) === "function") { + mappedValue = self._accessByPath(self.inputMapper, path)(value); + } + self._accessByPath(self.state, path, mappedValue); + }); + + console.log(JSON.stringify(self.state)); + App.detachListeners(); + Quagga.stop(); + App.init(); + }, + inputMapper: { + decoder: { + readers: function(value) { + if (value === 'ean_extended') { + return [{ + format: "ean_reader", + config: { + supplements: [ + 'ean_5_reader', 'ean_2_reader' + ] + } + }]; + } + return [{ + format: value + "_reader", + config: {} + }]; + } + }, + inputStream: { + src: function(value) { + return "fixtures/" + value + "/" + } + } + }, + state: { + inputStream: { + src: "fixtures/code_128/" + }, + decoder : { + readers : [{ + format: "code_128_reader", + config: {} + }] + } + } + }; + + App.init(); + window.App = App; + + Quagga.onProcessed(function(result) { + var drawingCtx = Quagga.canvas.ctx.overlay, + drawingCanvas = Quagga.canvas.dom.overlay; + + if (result) { + if (result.boxes) { + drawingCtx.clearRect(0, 0, parseInt(drawingCanvas.getAttribute("width")), parseInt(drawingCanvas.getAttribute("height"))); + result.boxes.filter(function (box) { + return box !== result.box; + }).forEach(function (box) { + Quagga.ImageDebug.drawPath(box, {x: 0, y: 1}, drawingCtx, {color: "green", lineWidth: 2}); + }); + } + + if (result.box) { + Quagga.ImageDebug.drawPath(result.box, {x: 0, y: 1}, drawingCtx, {color: "#00F", lineWidth: 2}); + } + + if (result.codeResult && result.codeResult.code) { + Quagga.ImageDebug.drawPath(result.line, {x: 'x', y: 'y'}, drawingCtx, {color: 'red', lineWidth: 3}); + } + } + }); + + Quagga.onDetected(function(result) { + var $node, + canvas = Quagga.canvas.dom.image, + detectedCode = result.codeResult.code; + + $node = $('
        • '); + $node.find("img").attr("src", canvas.toDataURL()); + $node.find("h4.code").html(detectedCode); + $("#result_strip ul.thumbnails").prepend($node); + }); +}); diff --git a/quagga2/quagga2-1.12.1/docs/examples/vendor/jquery-1.9.0.min.js b/quagga2/quagga2-1.12.1/docs/examples/vendor/jquery-1.9.0.min.js new file mode 100644 index 0000000..d94aba1 --- /dev/null +++ b/quagga2/quagga2-1.12.1/docs/examples/vendor/jquery-1.9.0.min.js @@ -0,0 +1,4 @@ +/*! jQuery v1.9.0 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license */(function(e,t){"use strict";function n(e){var t=e.length,n=st.type(e);return st.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}function r(e){var t=Tt[e]={};return st.each(e.match(lt)||[],function(e,n){t[n]=!0}),t}function i(e,n,r,i){if(st.acceptData(e)){var o,a,s=st.expando,u="string"==typeof n,l=e.nodeType,c=l?st.cache:e,f=l?e[s]:e[s]&&s;if(f&&c[f]&&(i||c[f].data)||!u||r!==t)return f||(l?e[s]=f=K.pop()||st.guid++:f=s),c[f]||(c[f]={},l||(c[f].toJSON=st.noop)),("object"==typeof n||"function"==typeof n)&&(i?c[f]=st.extend(c[f],n):c[f].data=st.extend(c[f].data,n)),o=c[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[st.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[st.camelCase(n)])):a=o,a}}function o(e,t,n){if(st.acceptData(e)){var r,i,o,a=e.nodeType,u=a?st.cache:e,l=a?e[st.expando]:st.expando;if(u[l]){if(t&&(r=n?u[l]:u[l].data)){st.isArray(t)?t=t.concat(st.map(t,st.camelCase)):t in r?t=[t]:(t=st.camelCase(t),t=t in r?[t]:t.split(" "));for(i=0,o=t.length;o>i;i++)delete r[t[i]];if(!(n?s:st.isEmptyObject)(r))return}(n||(delete u[l].data,s(u[l])))&&(a?st.cleanData([e],!0):st.support.deleteExpando||u!=u.window?delete u[l]:u[l]=null)}}}function a(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(Nt,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:wt.test(r)?st.parseJSON(r):r}catch(o){}st.data(e,n,r)}else r=t}return r}function s(e){var t;for(t in e)if(("data"!==t||!st.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function u(){return!0}function l(){return!1}function c(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function f(e,t,n){if(t=t||0,st.isFunction(t))return st.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return st.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=st.grep(e,function(e){return 1===e.nodeType});if(Wt.test(t))return st.filter(t,r,!n);t=st.filter(t,r)}return st.grep(e,function(e){return st.inArray(e,t)>=0===n})}function p(e){var t=zt.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function d(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function h(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function g(e){var t=nn.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function m(e,t){for(var n,r=0;null!=(n=e[r]);r++)st._data(n,"globalEval",!t||st._data(t[r],"globalEval"))}function y(e,t){if(1===t.nodeType&&st.hasData(e)){var n,r,i,o=st._data(e),a=st._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)st.event.add(t,n,s[n][r])}a.data&&(a.data=st.extend({},a.data))}}function v(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!st.support.noCloneEvent&&t[st.expando]){r=st._data(t);for(i in r.events)st.removeEvent(t,i,r.handle);t.removeAttribute(st.expando)}"script"===n&&t.text!==e.text?(h(t).text=e.text,g(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),st.support.html5Clone&&e.innerHTML&&!st.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Zt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}function b(e,n){var r,i,o=0,a=e.getElementsByTagName!==t?e.getElementsByTagName(n||"*"):e.querySelectorAll!==t?e.querySelectorAll(n||"*"):t;if(!a)for(a=[],r=e.childNodes||e;null!=(i=r[o]);o++)!n||st.nodeName(i,n)?a.push(i):st.merge(a,b(i,n));return n===t||n&&st.nodeName(e,n)?st.merge([e],a):a}function x(e){Zt.test(e.type)&&(e.defaultChecked=e.checked)}function T(e,t){if(t in e)return t;for(var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=Nn.length;i--;)if(t=Nn[i]+n,t in e)return t;return r}function w(e,t){return e=t||e,"none"===st.css(e,"display")||!st.contains(e.ownerDocument,e)}function N(e,t){for(var n,r=[],i=0,o=e.length;o>i;i++)n=e[i],n.style&&(r[i]=st._data(n,"olddisplay"),t?(r[i]||"none"!==n.style.display||(n.style.display=""),""===n.style.display&&w(n)&&(r[i]=st._data(n,"olddisplay",S(n.nodeName)))):r[i]||w(n)||st._data(n,"olddisplay",st.css(n,"display")));for(i=0;o>i;i++)n=e[i],n.style&&(t&&"none"!==n.style.display&&""!==n.style.display||(n.style.display=t?r[i]||"":"none"));return e}function C(e,t,n){var r=mn.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function k(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;4>o;o+=2)"margin"===n&&(a+=st.css(e,n+wn[o],!0,i)),r?("content"===n&&(a-=st.css(e,"padding"+wn[o],!0,i)),"margin"!==n&&(a-=st.css(e,"border"+wn[o]+"Width",!0,i))):(a+=st.css(e,"padding"+wn[o],!0,i),"padding"!==n&&(a+=st.css(e,"border"+wn[o]+"Width",!0,i)));return a}function E(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=ln(e),a=st.support.boxSizing&&"border-box"===st.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=un(e,t,o),(0>i||null==i)&&(i=e.style[t]),yn.test(i))return i;r=a&&(st.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+k(e,t,n||(a?"border":"content"),r,o)+"px"}function S(e){var t=V,n=bn[e];return n||(n=A(e,t),"none"!==n&&n||(cn=(cn||st("