diff --git a/404.html b/404.html index c48f8290685..7c6f2ded826 100644 --- a/404.html +++ b/404.html @@ -9,14 +9,14 @@ - +
- + \ No newline at end of file diff --git a/ChangeLog/20190830.html b/ChangeLog/20190830.html index e644e51aa68..5fa673a9960 100644 --- a/ChangeLog/20190830.html +++ b/ChangeLog/20190830.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20200229.html b/ChangeLog/20200229.html index b1ce9d8cc8a..d407aef805f 100644 --- a/ChangeLog/20200229.html +++ b/ChangeLog/20200229.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20200530.html b/ChangeLog/20200530.html index 85726a7093c..385e9b27904 100644 --- a/ChangeLog/20200530.html +++ b/ChangeLog/20200530.html @@ -9,9 +9,9 @@ - + - + @@ -37,7 +37,7 @@ return OLED_ROTATION_180; // flips the display 180 degrees if offhand return rotation; }

Split HHKB to ANSI and JP layouts and Add VIA support for each

#8582

Migrating existing HHKB keymaps

Keyboard Moves

Keyboards by Keyboardio, Spaceman, and hsgw move to vendor folders, while PCBs designed by blindassassin111 are renamed.

Old NameNew Name
2_milkspaceman/2_milk
at101_blackheartat101_bh
ergoinudm9records/ergoinu
model01keyboardio/model01
omnikey_blackheartomnikey_bh
pancakespaceman/pancake
plaiddm9records/plaid
tartandm9records/tartan
z150_blackheartz150_bh

If you own one of these PCBs, please use the new names to compile your firmware moving forward.

Keycode Migration PRs

#8954, #8957, #8958, #8959, #8968, #8977, and #8979

Authored by fauxpark, these pull requests remove references to deprecated TMK macros that have been superseded by native QMK keycodes.

Old fn_actions actionNew QMK keycode
ACTION_DEFAULT_LAYER_SET(layer)DF(layer)
ACTION_LAYER_MODS(layer, mod)LM(layer, mod)
ACTION_LAYER_ONESHOT(mod)OSL(mod)
ACTION_LAYER_TOGGLE(layer)TG(layer)
ACTION_MODS_ONESHOT(mod)OSM(mod)
ACTION_MODS_TAP_KEY(mod, kc)MT(mod, kc)
ACTION_MODS_KEY(mod, kc)
e.g. ACTION_MODS_KEY(MOD_LCTL, KC_0)
MOD(kc)
e.g. LCTL(KC_0)
- + \ No newline at end of file diff --git a/ChangeLog/20200829.html b/ChangeLog/20200829.html index c23cc12674a..9be2ca31893 100644 --- a/ChangeLog/20200829.html +++ b/ChangeLog/20200829.html @@ -9,9 +9,9 @@ - + - + @@ -20,7 +20,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20201128.html b/ChangeLog/20201128.html index d7d33853e21..c2432c7f14e 100644 --- a/ChangeLog/20201128.html +++ b/ChangeLog/20201128.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20210227.html b/ChangeLog/20210227.html index 30275af4f98..2f20cec797b 100644 --- a/ChangeLog/20210227.html +++ b/ChangeLog/20210227.html @@ -9,9 +9,9 @@ - + - + @@ -53,7 +53,7 @@ Size: 13 x 4 Processor: atmega32u4 Bootloader: caterina

Detailed Change List

Changes Requiring User Action

Fixes

Additions and Enhancements

Clean-ups and Optimizations

QMK Infrastructure and Internals

ChibiOS Update and Config Migration

- + \ No newline at end of file diff --git a/ChangeLog/20210529.html b/ChangeLog/20210529.html index 584937daafe..92d77ba5f51 100644 --- a/ChangeLog/20210529.html +++ b/ChangeLog/20210529.html @@ -9,9 +9,9 @@ - + - + @@ -58,7 +58,7 @@ // If you return true, this will allow the keyboard level code to run, as well. //Returning false will override the keyboard level code. Depending on how the keyboard level function is set up. }

Core Changes

Fixes

Additions and Enhancements

Clean-ups and Optimizations

QMK Infrastructure and Internals

- + \ No newline at end of file diff --git a/ChangeLog/20210828.html b/ChangeLog/20210828.html index 04cb717c483..2fd4421ff51 100644 --- a/ChangeLog/20210828.html +++ b/ChangeLog/20210828.html @@ -9,9 +9,9 @@ - + - + @@ -107,7 +107,7 @@ usb.pid: 0x2330 usb.vid: 0xC1ED width: 10

New configuration keys

We've added dozens of new keys to info.json so that you can configure more than ever without writing a single line of code. A quick overview of the new items you can configure:

Codebase restructure and cleanup

QMK was originally based on TMK, and has grown in size considerably since its first inception. To keep moving things forward, restructure of some of the core areas of the code is needed to support new concepts and new hardware, and progress is happening along those lines:


Full changelist

Core:

CLI:

Submodule updates:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20211127.html b/ChangeLog/20211127.html index 7a96d08c4d2..9994cef3b46 100644 --- a/ChangeLog/20211127.html +++ b/ChangeLog/20211127.html @@ -9,9 +9,9 @@ - + - + @@ -57,7 +57,7 @@ // default keyboard drawing code return false; }

Bootmagic Full Removal (#15002)

As noted during previous breaking changes cycles, QMK decided to deprecate the full Bootmagic feature and leave Bootmagic Lite as the only remaining option.

This removal is now complete!

This pull request changes the behavior of BOOTMAGIC_ENABLE such that specifying lite or full results in an error, allowing only yes or no, with yes mirroring historical lite functionality.

All use of the lite keyword within the repository has been migrated to yes -- any new submissions using lite will now fail to build and should be updated accordingly.

Bootmagic Full Deprecation Schedule: Complete!

This is the historical timeline for the behavior of BOOTMAGIC_ENABLE:

Remove QWIIC_DRIVERS (#14174)

Due to minimal QWIIC adoption and other options for similar functionality, the QWIIC drivers were removed from QMK. Existing OLED usages have been migrated across to the normal QMK OLED driver instead.

Notable core changes

New MCU Support

QMK firmware picked up support for a handful of new MCU families, potentially making it a bit easier to source components.

QMK firmware is now no longer limited to AVR and ARM - it also picked up support for our first RISC-V chip, the GD32VF103.

EEPROM Changes

There were a few EEPROM-related changes that landed during this breaking changes cycle, most prominently the long-awaited ability for the Drop boards to gain persistent storage. Any users of the Drop CTRL or Drop ALT should update QMK Toolbox as well -- coupled with a QMK firmware update settings should now be saved.

Compilation Database

A clang-compatible compilation database generator has been added as an option in order to help development environments such as Visual Studio Code.

Running qmk generate-compilation-database -kb <yourkb> -km <yourkeymap> from within the QMK firmware directory will generate a compile_commands.json file -- using a compatible IDE will likely see this and correctly start detecting the correct locations for source files as well as type and function information that are relevant to your build.

Do note that switching keyboards will require re-generation of this file.

Codebase restructure and cleanup

QMK continues on its restructuring journey, in order to make it easier to integrate newer features and add support for new hardware. This quarter's batch of changes include:


Full changelist

Core:

CLI:

Submodule updates:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20220226.html b/ChangeLog/20220226.html index 20f8fa88737..9b439a2b12f 100644 --- a/ChangeLog/20220226.html +++ b/ChangeLog/20220226.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20220528.html b/ChangeLog/20220528.html index 4e30a10fb59..c2ad73988cc 100644 --- a/ChangeLog/20220528.html +++ b/ChangeLog/20220528.html @@ -9,9 +9,9 @@ - + - + @@ -21,7 +21,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20220827.html b/ChangeLog/20220827.html index ec5fba88f13..5926887c5f2 100644 --- a/ChangeLog/20220827.html +++ b/ChangeLog/20220827.html @@ -9,9 +9,9 @@ - + - + @@ -32,7 +32,7 @@ }, // ... layouts, etc. ... }

Deprecation Schedule

Notable core changes

Board converters (#17514, #17603, #17711, #17827, #17593, #17652, #17595)

Historically QMK had a CONVERT_TO_PROTON_C directive for rules.mk to allow people to replace an AVR-based Pro Micro with a QMK Proton C. Global parts shortages have prompted people to create their own pin-compatible boards -- QMK has made this conversion generic and now allows for drop-in replacements for a lot more boards. see the Converters Feature documentation for the full list of supported replacement boards -- in this breaking changes cycle we've gone from 1 to 7.

Add cli command to import keyboard|keymap|kbfirmware (#16668)

To help with importing keyboards and keymaps from other sources, @zvecr added #16668 which adds a new set of commands to the CLI to automatically import keyboards (qmk import-keyboard -h), keymaps (qmk import-keymap -h), and kbfirmware definitions (qmk import-kbfirmware -h) into QMK.

The now-EOL kbfirmware allowed people who aren't set up with QMK the ability to create keyboard firmwares without requiring a full installation of QMK. Unfortunately, it targets a 7-year-old version of QMK -- adding frustration for users who want the newest features, as well as for QMK maintainers who have to spend time explaining why QMK can't just accept a drive-by code drop from kbfirmware. With any luck, this new command helps both camps!

Generic wear-leveling for EEPROM emulation (#16996, #17376, #18102)

QMK has had the ability to write to internal MCU flash in order to emulate EEPROM for some time now, but it was only limited to a small number of MCUs. The base HAL used by QMK for a large number of ARM devices provides a "proper" embedded MCU flash driver, so @tzarc decoupled the wear-leveling algorithm from the old flash writing code, improved it, wrote some tests, and enabled its use for a much larger number of other devices... including RP2040's XIP flash, and external SPI NOR Flash.

See the EEPROM Driver documentation for more information.

Pointing Device Improvements (#16371, #17111, #17176, #17482, #17776, #17613)

Ever since Pointing Device Driver support and Split Pointing Device support were added by @drashna and @daskygit, there has been increased interest in the development of the pointing device subsystem and its associated code.

Both the PMW33xx and the Cirque Pinnacle implementations have seen a lot of improvement to their code, as has the mouse code in general. Features like circular/edge scrolling for the Cirque, and Kinetic movement for any sensor with "lift detection" (#17482). Additionally, for those that make fast motions with their pointing devices, support for much larger mouse movement reports has been added (#16371).

Other related changes:


Full changelist

Core:

CLI:

Submodule updates:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20221126.html b/ChangeLog/20221126.html index fd45b5cd528..d31171cd647 100644 --- a/ChangeLog/20221126.html +++ b/ChangeLog/20221126.html @@ -9,9 +9,9 @@ - + - + @@ -42,7 +42,7 @@ // keyboard LED code return true; }

The equivalent transformations should be done for LED Matrix boards.

Unicode mode refactoring

Unicode modes were renamed in order to prevent collision with equivalent keycodes. The available values for UNICODE_SELECTED_MODES changed -- see Feature: Unicode for the new list of values and how to configure them.

Notable core changes

This breaking changes cycle, a lot of the core changes are related to cleanup and refactoring -- commonly called "tech debt".

Keycodes refactoring

We aren't going to list each and every change -- they're far too numerous -- instead, we'll just list the related PRs in order to convey just how wide-reaching these changes were:

Board Converters

There was additional work in the space of board converters -- historically QMK allowed for "converting" a Pro Micro build to a QMK Proton-C build. The last few versions of QMK have added support for replacement boards much like the Proton-C, and this quarter was no exception:

See Feature: Converters for the full list of board conversions available.

Pointing and Digitizer device updates

Both pointing devices and digitizer got a host of updates this cycle. Inertia, automatic mouse layers, fixes for preventing sleep... you even get more buttons with digitizers!

Full changelist

Core:

CLI:

Submodule updates:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20230226.html b/ChangeLog/20230226.html index db8bd629571..4bba74f9ab6 100644 --- a/ChangeLog/20230226.html +++ b/ChangeLog/20230226.html @@ -9,9 +9,9 @@ - + - + @@ -69,7 +69,7 @@ tap_code16(LGUI(KC_S)); } }

For more information please see the Leader Key documentation.

Updated Keyboard Codebases

The following keyboards have had their source moved within QMK:

Old Keyboard NameNew Keyboard Name
ramonimbao/aelithrmi_kb/aelith
ramonimbao/herringbone/prormi_kb/herringbone/pro
ramonimbao/herringbone/v1rmi_kb/herringbone/v1
ramonimbao/mona/v1_1rmi_kb/mona/v1_1
ramonimbao/mona/v1rmi_kb/mona/v1
ramonimbao/mona/v32armi_kb/mona/v32a
ramonimbao/squishy65rmi_kb/squishy65
ramonimbao/squishytklrmi_kb/squishytkl
ramonimbao/tkl_ffrmi_kb/tkl_ff
ramonimbao/tkl_ff/v1rmi_kb/tkl_ff/v1
ramonimbao/tkl_ff/v2rmi_kb/tkl_ff/v2
ramonimbao/wete/v1rmi_kb/wete/v1
ramonimbao/wete/v2rmi_kb/wete/v2
the_unistenothe_uni
xelus/xs60xelus/xs60/soldered

Notable core changes

As per last breaking changes cycle, there has been a lot of emphasis on behind-the-scenes changes, mainly around consolidation of core subsystems and constant values, as well as addressing tech debt. Whilst not outwardly visible, this cleanup and refactoring should start paying dividends as it simplifies future development and maintenance.

A handful of examples:

Full changelist

Core:

CLI:

Submodule updates:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20230528.html b/ChangeLog/20230528.html index c1a3aadff64..1fbe69453ae 100644 --- a/ChangeLog/20230528.html +++ b/ChangeLog/20230528.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20230827.html b/ChangeLog/20230827.html index 599b7442ac7..94a4ec46f98 100644 --- a/ChangeLog/20230827.html +++ b/ChangeLog/20230827.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20231126.html b/ChangeLog/20231126.html index cb5a2f5e9a0..8f2891dee1a 100644 --- a/ChangeLog/20231126.html +++ b/ChangeLog/20231126.html @@ -9,9 +9,9 @@ - + - + @@ -25,7 +25,7 @@ case BASIC_KEYCODE_RANGE: case MODIFIER_KEYCODE_RANGE: /* do stuff with basic and modifier keycodes */

Quantum Painter OLED support (#19997)

Quantum Painter has picked up support for SH1106 displays -- commonly seen as 128x64 OLEDs. Support for both I2C and SPI displays is available.

If you're already using OLED through OLED_DRIVER_ENABLE = yes or equivalent in info.json and wish to use Quantum Painter instead, you'll need to disable the old OLED system, instead enabling Quantum Painter as well as enabling the appropriate SH1106 driver. See the Quantum Painter driver documentation for more details. The old OLED driver is still available, and keymaps do not require migrating to Quantum Painter if you don't want to do so.

RGB/LED lighting driver naming and cleanup (#21890, #21891, #21892, #21903, #21904, #21905, #21918, #21929, #21938, #22004, #22008, #22009, #22071, #22090, #22099, #22126, #22133, #22163, #22200, #22308, #22309, #22311, #22325, #22365, #22379, #22380, #22381, #22383, #22436)

As you can probably tell by the list of PRs just above, there has been a lot of cleanup and consolidation this cycle when it comes to RGB/LED lighting drivers. The number of changes is too large to list here, but the general theme has been focusing on consistency of naming, both of drivers themselves and their respective implementation and configuration. Most changes only affect keyboard designers -- if you find that your in-development keyboard is no longer building due to naming of defines changing, your best bet is to refer to another board already in the repository which has had the changes applied.

Peripheral subsystem enabling (#22253, #22448, #22106)

When enabling peripherals such as I2C, SPI, or Analog/ADC, some required manual inclusion of source files in order to provide driver support, and in some cases, when multiple drivers were using the same underlying peripheral, files were being added to the build multiple times.

Most systems requiring other peripherals now mark their respective dependencies as "required", allowing the build system to check whether peripherals are necessary before including them in the build rather than having each location enable them manually.

For a concrete example, users or keyboard designers who previously added SRC += analog.c in order to allow for analog readings via an ADC now should specify ANALOG_DRIVER_REQUIRED = yes instead. The full list of added options is as follows:

New optionOld Equivalent
ANALOG_DRIVER_REQUIRED = yesSRC += analog.c
APA102_DRIVER_REQUIRED = yesSRC += apa102.c
I2C_DRIVER_REQUIRED = yesSRC += i2c_master.c or QUANTUM_LIB_SRC += i2c_master.c
SPI_DRIVER_REQUIRED = yesSRC += spi_master.c or QUANTUM_LIB_SRC += spi_master.c
UART_DRIVER_REQUIRED = yesSRC += uart.c
WS2812_DRIVER_REQUIRED = yesSRC += ws2812.c

NKRO on V-USB boards (#22398)

NKRO is now available for ATmega32A and 328P-based keyboards (including PS2AVRGB/Bootmapper boards), thanks to some internal refactoring and cleanup. To enable it, the process is the same as always - add NKRO_ENABLE = yes to your rules.mk, then assign and press the NK_TOGG keycode to switch modes.

Full changelist

Core:

CLI:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20240225.html b/ChangeLog/20240225.html index 9e38d0e2c27..b31be2fd916 100644 --- a/ChangeLog/20240225.html +++ b/ChangeLog/20240225.html @@ -9,9 +9,9 @@ - + - + @@ -24,7 +24,7 @@ DIP_SWITCH_OFF_ON(EC_NORM, EC_SWAP) }; #endif

Quantum Painter updates (#18521, #20645, #22358)

Quantum Painter picked up support for the following:

Quantum Painter now supports the majority of common OLED panels supported by the basic OLED driver, so if you're using an ARM-based board you may find Quantum Painter a much more feature-rich API in comparison.

Full changelist

Core:

CLI:

Submodule updates:

Keyboards:

Keyboard fixes:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20240526.html b/ChangeLog/20240526.html index 0bf066470da..abe36811ea3 100644 --- a/ChangeLog/20240526.html +++ b/ChangeLog/20240526.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20240825.html b/ChangeLog/20240825.html index e6270d17856..cf0c81e1352 100644 --- a/ChangeLog/20240825.html +++ b/ChangeLog/20240825.html @@ -9,9 +9,9 @@ - + - + @@ -26,7 +26,7 @@ &my_override_1, &my_override_2, };

ADNS9800 and PMW33xx firmware upload now opt-in (#24001)

Due to ambiguity with licensing compatibility, QMK has made the firmware ROM uploads for the ADNS9800 and PMW33xx lines of pointing device sensors temporarily opt-in with the view to removing them. Historically they were included by default, but as of this PR this is now no longer the case.

Please get in touch with the QMK team if your sensor no longer functions without the firmware upload -- so far we've tested each device type and they still seem to function without a new firmware, but this has not been a 100% exhaustive validation.

To re-enable firmware upload for your own builds, add the following to your keymap's config.h:

SensorDefine
ADNS9800#define ADNS9800_UPLOAD_SROM
PMW33xx#define PMW33XX_UPLOAD_SROM

Note

If no issues arise during this current breaking changes cycle, these sensor firmware ROMs will be removed from QMK entirely.

Deprecation Notices

In line with the notice period, deprecation notices for larger items are listed here.

Migration of VIA keymaps to VIA team control

Last breaking changes cycle, the QMK team informed that via keymaps are moving to the control of the VIA team. As of this merge, any via-enabled keymaps should now be PR'ed to the VIA QMK Userspace repository.

Any existing or newly-opened PRs against qmk_firmware will now be asked to remove any via-enabled keymaps from their submissions.

ADNS9800 and PMW33xx sensor firmware ROM removal

As mentioned above, there's license compatibility issues between QMK and the firmware blobs historically uploaded for the ADNS9800 and PMW33xx sensors. This notice is to inform users that these firmware blobs will almost certainly be removed from QMK in the next breaking changes merge.

As previously noted this does not seem to have any detrimental effect to any of those devices, as they seem to include firmware on-chip without requiring one to be uploaded. Please get in touch with the QMK team on Discord if your sensor is no longer functional.

Full changelist

Core:

CLI:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20241124.html b/ChangeLog/20241124.html index feca675341a..81b5631fe6c 100644 --- a/ChangeLog/20241124.html +++ b/ChangeLog/20241124.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20250223.html b/ChangeLog/20250223.html index 9c56a73621c..548328bb155 100644 --- a/ChangeLog/20250223.html +++ b/ChangeLog/20250223.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20250525.html b/ChangeLog/20250525.html index dab8ee45a95..36b454dc865 100644 --- a/ChangeLog/20250525.html +++ b/ChangeLog/20250525.html @@ -9,9 +9,9 @@ - + - + @@ -30,7 +30,7 @@ MY_ENCODER_LEFT = QK_USER, MY_ENCODER_RIGHT, };

If your board has multiple encoders, each encoder will need its own pair of keycodes defined as per above.

Full changelist

Core:

CLI:

Submodule updates:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20250831.html b/ChangeLog/20250831.html index 497f5c9aaf2..1e7e773d95e 100644 --- a/ChangeLog/20250831.html +++ b/ChangeLog/20250831.html @@ -9,9 +9,9 @@ - + - + @@ -21,7 +21,7 @@
Skip to content
- + \ No newline at end of file diff --git a/ChangeLog/20251130.html b/ChangeLog/20251130.html index 8678f85a213..d5a97b16c39 100644 --- a/ChangeLog/20251130.html +++ b/ChangeLog/20251130.html @@ -9,9 +9,9 @@ - + - + @@ -45,7 +45,7 @@ } return true; }

Deprecation Notices

In line with the notice period, deprecation notices for larger items are listed here.

Remove override of QK_{LED,RGB}_MATRIX_TOGGLE keycode #25672

#24649 implemented genetic behavior, including keycodes, to cycle flags.

Any overriding of existing keycodes that duplicate this behavior will be removed to ensure consistency with core functionality.

Full changelist

Core:

CLI:

Submodule updates:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20260222.html b/ChangeLog/20260222.html index 75e70deec51..ce6e6d6f32a 100644 --- a/ChangeLog/20260222.html +++ b/ChangeLog/20260222.html @@ -9,9 +9,9 @@ - + - + @@ -22,7 +22,7 @@ - return isLeftHand ? OLED_ROTATION_180 : OLED_ROTATION_0; + return is_keyboard_left() ? OLED_ROTATION_180 : OLED_ROTATION_0; }

The deprecated variable isLeftHand will be removed in a future breaking changes cycle.

Full changelist

Core:

CLI:

Keyboards:

Keyboard fixes:

Others:

Bugs:

- + \ No newline at end of file diff --git a/ChangeLog/20260531.html b/ChangeLog/20260531.html index f07b9623445..519ee07a312 100644 --- a/ChangeLog/20260531.html +++ b/ChangeLog/20260531.html @@ -9,9 +9,9 @@ - + - + @@ -28,7 +28,7 @@ } } }

Full changelist

Core:

CLI:

Submodule updates:

Keyboards:

Others:

Bugs:

- + \ No newline at end of file diff --git a/__capabilities.html b/__capabilities.html index 030a422bf01..451fcd35ebb 100644 --- a/__capabilities.html +++ b/__capabilities.html @@ -9,9 +9,9 @@ - + - + @@ -42,7 +42,7 @@ The letters lined up #define RGBLIGHT_LED_COUNT 12 #define RGBLIGHT_HUE_STEP 8 #define RGBLIGHT_SAT_STEP 8

Indented code as part of a list:

Sub/Superscript

This is subscripted, apparently.

This is superscripted, apparently.

I2C

T0H, T0L

Tabs

Tabs are based on section headers, with ** enclosing the tab title.

** Tab one **

Content one

** Nested one **

Nested content one

** Nested two **

Nested content two

** Tab two **

Content two

** Tab three **

Content three

a content 2

Details sections

Expandable:

Some summary text that shows up before expanding

!> Embedded notification!

This is some inner content.

Embed

example embed

Lorem ipsum dolor sit amet.

- + \ No newline at end of file diff --git a/__capabilities_inc.html b/__capabilities_inc.html index 1c37cfc778d..7ace3acafcf 100644 --- a/__capabilities_inc.html +++ b/__capabilities_inc.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/api_development_environment.html b/api_development_environment.html index 20fc0bf9807..f3bdce31b92 100644 --- a/api_development_environment.html +++ b/api_development_environment.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/api_development_overview.html b/api_development_overview.html index e2953848eaa..42b1470f6c6 100644 --- a/api_development_overview.html +++ b/api_development_overview.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/api_docs.html b/api_docs.html index 563731113cb..0aa912f1b9b 100644 --- a/api_docs.html +++ b/api_docs.html @@ -9,9 +9,9 @@ - + - + @@ -54,7 +54,7 @@ "0x2000/0x1FFF": { "define": "QK_MOD_TAP" <snip> - + \ No newline at end of file diff --git a/api_overview.html b/api_overview.html index 6d8fc2afe42..ba0ba26328e 100644 --- a/api_overview.html +++ b/api_overview.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/arm_debugging.html b/arm_debugging.html index 7fc7f349204..43c9105aada 100644 --- a/arm_debugging.html +++ b/arm_debugging.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/assets/app.DGFHjmX7.js b/assets/app.z0M6OGN4.js similarity index 97% rename from assets/app.DGFHjmX7.js rename to assets/app.z0M6OGN4.js index 81c1032a88c..86480013c48 100644 --- a/assets/app.DGFHjmX7.js +++ b/assets/app.z0M6OGN4.js @@ -1,4 +1,4 @@ -import { R as RawTheme } from "./chunks/theme.D8L5QszO.js"; +import { R as RawTheme } from "./chunks/theme.B7TfpAiN.js"; import { R as inBrowser, a7 as useUpdateHead, a8 as RouterSymbol, a9 as initData, aa as dataSymbol, ab as Content, ac as ClientOnly, ad as siteDataRef, ae as createRouter, af as pathToFile, ag as createSSRApp, d as defineComponent, u as useData, v as onMounted, s as watchEffect, ah as usePrefetch, ai as useCopyCode, aj as useCodeGroups, ak as h } from "./chunks/framework.8zKZLKO7.js"; function resolveThemeExtends(theme) { if (theme.extends) { diff --git a/assets/chunks/@localSearchIndexroot.DSMizAmE.js b/assets/chunks/@localSearchIndexroot.DSMizAmE.js deleted file mode 100644 index e94094c6a1a..00000000000 --- a/assets/chunks/@localSearchIndexroot.DSMizAmE.js +++ /dev/null @@ -1,4 +0,0 @@ -const _localSearchIndexroot = `{"documentCount":2950,"nextId":2950,"documentIds":{"0":"/ChangeLog/20190830#qmk-breaking-change-2019-aug-30","1":"/ChangeLog/20190830#core-code-formatting-with-clang-format","2":"/ChangeLog/20190830#lufa-usb-descriptor-cleanup","3":"/ChangeLog/20190830#migrating-action-layer-momentary-entries-in-fn-actions-to-mo-keycodes","4":"/ChangeLog/20190830#update-atreus-to-current-code-conventions","5":"/ChangeLog/20190830#backport-changes-to-keymap-language-files-from-zsa-fork","6":"/ChangeLog/20190830#update-repo-to-use-lufa-as-a-git-submodule","7":"/ChangeLog/20190830#migrating-action-backlight-entries-in-fn-actions-to-bl-keycodes","8":"/ChangeLog/20190830#remove-kc-delt-alias-in-favor-of-kc-del","9":"/ChangeLog/20200229#qmk-breaking-change-2020-feb-29-changelog","10":"/ChangeLog/20200229#update-chibios-chibios-contrib-ugfx-submodules","11":"/ChangeLog/20200229#fix-chibios-timer-overflow-for-16-bit-systick-devices","12":"/ChangeLog/20200229#update-lufa-submodule","13":"/ChangeLog/20200229#encoder-flip","14":"/ChangeLog/20200229#adding-support-for-backlight-on-state-for-hardware-pwm-backlight","15":"/ChangeLog/20200229#migrating-action-layer-tap-key-entries-in-fn-actions-to-lt-keycodes","16":"/ChangeLog/20200229#moving-backlight-keycode-handling-to-process-keycode","17":"/ChangeLog/20200229#refactor-planck-keymaps-to-use-layout-macros","18":"/ChangeLog/20200229#gon-nerd-codebase-refactor","19":"/ChangeLog/20200530#qmk-breaking-change-2020-may-30-changelog","20":"/ChangeLog/20200530#core-changes","21":"/ChangeLog/20200530#converting-v-usb-usbdrv-to-a-submodule","22":"/ChangeLog/20200530#unify-tap-hold-functions-and-documentation","23":"/ChangeLog/20200530#python-required-in-the-build-process","24":"/ChangeLog/20200530#upgrade-from-tinyprintf-to-mpaland-printf","25":"/ChangeLog/20200530#fixed-rgb-disable-after-timeout-to-be-seconds-based-small-internals-cleanup","26":"/ChangeLog/20200530#switch-to-qmk-forks-for-everything","27":"/ChangeLog/20200530#code-cleanup-regarding-deprecated-macro-play-note-array-by-replacing-it-with-play-song","28":"/ChangeLog/20200530#fixing-wrong-configuration-of-audio-feature","29":"/ChangeLog/20200530#keyboard-refactors","30":"/ChangeLog/20200530#migrating-lily58-to-use-split-common","31":"/ChangeLog/20200530#to-migrate-existing-lily58-firmware","32":"/ChangeLog/20200530#refactor-zinc-to-use-split-common","33":"/ChangeLog/20200530#refactor-of-tkc1800-to-use-common-oled-code","34":"/ChangeLog/20200530#to-migrate-existing-tkc1800-firmware","35":"/ChangeLog/20200530#split-hhkb-to-ansi-and-jp-layouts-and-add-via-support-for-each","36":"/ChangeLog/20200530#migrating-existing-hhkb-keymaps","37":"/ChangeLog/20200530#keyboard-moves","38":"/ChangeLog/20200530#keycode-migration-prs","39":"/ChangeLog/20200829#qmk-breaking-change-2020-aug-29-changelog","40":"/ChangeLog/20200829#changes-requiring-user-action","41":"/ChangeLog/20200829#relocated-keyboards","42":"/ChangeLog/20200829#the-key-company-project-consolidation-9547","43":"/ChangeLog/20200829#relocating-boards-by-flehrad-to-flehrad-folder-9635","44":"/ChangeLog/20200829#keyboard-updates","45":"/ChangeLog/20200829#keebio-rgb-wiring-update-7754","46":"/ChangeLog/20200829#core-updates","47":"/ChangeLog/20200829#core-changes","48":"/ChangeLog/20200829#core-fixes","49":"/ChangeLog/20200829#core-additions","50":"/ChangeLog/20200829#core-optimizations","51":"/ChangeLog/20200829#qmk-internals","52":"/ChangeLog/20201128#qmk-breaking-change-2020-nov-28-changelog","53":"/ChangeLog/20201128#changes-requiring-user-action","54":"/ChangeLog/20201128#relocated-keyboards","55":"/ChangeLog/20201128#reduce-helix-keyboard-build-variation-8669","56":"/ChangeLog/20201128#update-the-speedo-firmware-for-v3-0-10657","57":"/ChangeLog/20201128#maartenwut-maarten-name-change-to-evyd13-evy-10274","58":"/ChangeLog/20201128#xelus-valor-and-dawn60-refactors-10512-10584","59":"/ChangeLog/20201128#keyboard-updates","60":"/ChangeLog/20201128#aeboards-ext65-refactor-10820","61":"/ChangeLog/20201128#core-changes","62":"/ChangeLog/20201128#core-fixes","63":"/ChangeLog/20201128#core-additions","64":"/ChangeLog/20201128#core-optimizations","65":"/ChangeLog/20201128#qmk-internals","66":"/ChangeLog/20210227#qmk-breaking-changes-2021-february-27-changelog","67":"/ChangeLog/20210227#changes-requiring-user-action","68":"/ChangeLog/20210227#core-changes","69":"/ChangeLog/20210227#chibios-update-and-config-migration","70":"/ChangeLog/20210227#qmk-infrastructure-and-internals","71":"/ChangeLog/20210227#detailed-change-list","72":"/ChangeLog/20210227#changes-requiring-user-action-1","73":"/ChangeLog/20210227#fixes","74":"/ChangeLog/20210227#additions-and-enhancements","75":"/ChangeLog/20210227#clean-ups-and-optimizations","76":"/ChangeLog/20210227#qmk-infrastructure-and-internals-1","77":"/ChangeLog/20210227#chibios-update-and-config-migration-1","78":"/ChangeLog/20210529#qmk-breaking-changes-2021-may-29-changelog","79":"/ChangeLog/20210529#notable-changes","80":"/ChangeLog/20210529#rgb-matrix-split-common","81":"/ChangeLog/20210529#teensy-3-6-support","82":"/ChangeLog/20210529#new-command-qmk-console","83":"/ChangeLog/20210529#improve-command-qmk-config","84":"/ChangeLog/20210529#led-matrix-improvements","85":"/ChangeLog/20210529#changes-requiring-user-action","86":"/ChangeLog/20210529#updated-keyboard-codebases","87":"/ChangeLog/20210529#bootmagic-deprecation-and-refactor","88":"/ChangeLog/20210529#tentative-deprecation-schedule","89":"/ChangeLog/20210529#removal-of-layout-kc","90":"/ChangeLog/20210529#encoder-callback-boolean","91":"/ChangeLog/20210529#core-changes","92":"/ChangeLog/20210529#core-fixes","93":"/ChangeLog/20210529#core-additions","94":"/ChangeLog/20210529#core-optimizations","95":"/ChangeLog/20210529#qmk-internals","96":"/ChangeLog/20210828#qmk-breaking-changes-2021-august-28-changelog","97":"/ChangeLog/20210828#notable-features","98":"/ChangeLog/20210828#combo-processing-improvements","99":"/ChangeLog/20210828#key-overrides","100":"/ChangeLog/20210828#digitizer-support-12851","101":"/ChangeLog/20210828#changes-requiring-user-action","102":"/ChangeLog/20210828#updated-keyboard-codebases","103":"/ChangeLog/20210828#bootmagic-full-removal","104":"/ChangeLog/20210828#bootmagic-full-deprecation-schedule","105":"/ChangeLog/20210828#dip-switch-boolean","106":"/ChangeLog/20210828#notable-core","107":"/ChangeLog/20210828#split-transport-improvements","108":"/ChangeLog/20210828#teensy-4-x-support","109":"/ChangeLog/20210828#data-driven-improvements-13366","110":"/ChangeLog/20210828#tags","111":"/ChangeLog/20210828#dot-notation","112":"/ChangeLog/20210828#new-configuration-keys","113":"/ChangeLog/20210828#codebase-restructure","114":"/ChangeLog/20210828#full-changelist","115":"/ChangeLog/20211127#qmk-breaking-changes-2021-november-27-changelog","116":"/ChangeLog/20211127#qmk-2000th-keyboard","117":"/ChangeLog/20211127#notable-features","118":"/ChangeLog/20211127#expanded-pointing-device","119":"/ChangeLog/20211127#dynamic-tapping-term","120":"/ChangeLog/20211127#macros-in-keymap-json","121":"/ChangeLog/20211127#changes-requiring-user-action","122":"/ChangeLog/20211127#updated-keyboard-codebases","123":"/ChangeLog/20211127#squeezing-space-from-avr","124":"/ChangeLog/20211127#explicit-rgb-modes","125":"/ChangeLog/20211127#oled-task-refactor","126":"/ChangeLog/20211127#bootmagic-full-removal","127":"/ChangeLog/20211127#bootmagic-full-deprecation-schedule-complete","128":"/ChangeLog/20211127#remove-qwiic","129":"/ChangeLog/20211127#notable-core","130":"/ChangeLog/20211127#new-mcu-support","131":"/ChangeLog/20211127#eeprom-changes","132":"/ChangeLog/20211127#compile-commands","133":"/ChangeLog/20211127#codebase-restructure","134":"/ChangeLog/20211127#full-changelist","135":"/ChangeLog/20220226#qmk-breaking-changes-2022-february-26-changelog","136":"/ChangeLog/20220226#notable-features","137":"/ChangeLog/20220226#default-usb-polling-rate-now-1khz-15352","138":"/ChangeLog/20220226#split-support-for-pointing-devices-15304","139":"/ChangeLog/20220226#changes-requiring-user-action","140":"/ChangeLog/20220226#legacy-macro-and-action-function-system-removed-16025","141":"/ChangeLog/20220226#create-a-build-error-if-no-bootloader-is-specified-16181","142":"/ChangeLog/20220226#rename-adafruitble-to-bluefruitle-16127","143":"/ChangeLog/20220226#updated-keyboard-codebases","144":"/ChangeLog/20220226#notable-core","145":"/ChangeLog/20220226#new-mcu-support","146":"/ChangeLog/20220226#new-drivers","147":"/ChangeLog/20220226#led","148":"/ChangeLog/20220226#gpio","149":"/ChangeLog/20220226#full-changelist","150":"/ChangeLog/20220528#qmk-breaking-changes-2022-may-28-changelog","151":"/ChangeLog/20220528#notable-features","152":"/ChangeLog/20220528#caps-word","153":"/ChangeLog/20220528#quantum-painter","154":"/ChangeLog/20220528#encoder-mapping","155":"/ChangeLog/20220528#changes-requiring-user-action","156":"/ChangeLog/20220528#reset-2-qk_boot","157":"/ChangeLog/20220528#sendstring-keycodes","158":"/ChangeLog/20220528#pillow-install","159":"/ChangeLog/20220528#updated-keyboard-codebases","160":"/ChangeLog/20220528#full-changelist","161":"/ChangeLog/20220827#qmk-breaking-changes-2022-august-27-changelog","162":"/ChangeLog/20220827#notable-features","163":"/ChangeLog/20220827#rp2040-support","164":"/ChangeLog/20220827#cli-flash-binaries","165":"/ChangeLog/20220827#changes-requiring-user-action","166":"/ChangeLog/20220827#default-layers-dropped-from-32-to-16-15286","167":"/ChangeLog/20220827#reset-2-qk_boot","168":"/ChangeLog/20220827#updated-keyboard-codebases","169":"/ChangeLog/20220827#usb-ids-Refactoring","170":"/ChangeLog/20220827#deprecation-schedule","171":"/ChangeLog/20220827#notable-core","172":"/ChangeLog/20220827#board-converters","173":"/ChangeLog/20220827#cli-import","174":"/ChangeLog/20220827#wear-leveling","175":"/ChangeLog/20220827#pointing-device-improvements","176":"/ChangeLog/20220827#full-changelist","177":"/ChangeLog/20221126#qmk-breaking-changes-2022-november-26-changelog","178":"/ChangeLog/20221126#notable-features","179":"/ChangeLog/20221126#autocorrect","180":"/ChangeLog/20221126#changes-requiring-user-action","181":"/ChangeLog/20221126#updated-keyboard-codebases","182":"/ChangeLog/20221126#keycodes-overhaul-user-action","183":"/ChangeLog/20221126#config-refactoring","184":"/ChangeLog/20221126#usb-ids-Refactoring","185":"/ChangeLog/20221126#led-callback-refactor","186":"/ChangeLog/20221126#unicode-mode-renaming","187":"/ChangeLog/20221126#notable-core","188":"/ChangeLog/20221126#keycodes-overhaul-core-changes","189":"/ChangeLog/20221126#board-converters","190":"/ChangeLog/20221126#pointing-and-digitizer","191":"/ChangeLog/20221126#full-changelist","192":"/ChangeLog/20230226#qmk-breaking-changes-2023-february-26-changelog","193":"/ChangeLog/20230226#changes-requiring-user-action","194":"/ChangeLog/20230226#i-m-t-i","195":"/ChangeLog/20230226#quick-tap-term","196":"/ChangeLog/20230226#leader-key-rework-leader-key-rework-19632","197":"/ChangeLog/20230226#updated-keyboard-codebases","198":"/ChangeLog/20230226#notable-core","199":"/ChangeLog/20230226#full-changelist","200":"/ChangeLog/20230528#qmk-breaking-changes-2023-may-28-changelog","201":"/ChangeLog/20230528#notable-changes","202":"/ChangeLog/20230528#repeat-last-key","203":"/ChangeLog/20230528#user-callback-for-pre-process-record","204":"/ChangeLog/20230528#consolidate-modelm","205":"/ChangeLog/20230528#changes-requiring-user-action","206":"/ChangeLog/20230528#i-m-t-i","207":"/ChangeLog/20230528#updated-keyboard-codebases","208":"/ChangeLog/20230528#notable-core","209":"/ChangeLog/20230528#encoder-functionality-fallback","210":"/ChangeLog/20230528#oled-driver-improvements","211":"/ChangeLog/20230528#full-changelist","212":"/ChangeLog/20230827#qmk-breaking-changes-2023-aug-27-changelog","213":"/ChangeLog/20230827#notable-changes","214":"/ChangeLog/20230827#rgb-matrix-optimizations","215":"/ChangeLog/20230827#audio-optimizations-21496-21498","216":"/ChangeLog/20230827#changes-requiring-user-action","217":"/ChangeLog/20230827#updated-keyboard-codebases","218":"/ChangeLog/20230827#remove-encoder-in-matrix-workaround-code","219":"/ChangeLog/20230827#unicodemap-keycodes-rename","220":"/ChangeLog/20230827#remove-old-oled-api-code","221":"/ChangeLog/20230827#driver-naming-consolidation","222":"/ChangeLog/20230827#full-changelist","223":"/ChangeLog/20231126#qmk-breaking-changes-2023-november-26-changelog","224":"/ChangeLog/20231126#notable-features","225":"/ChangeLog/20231126#changes-requiring-user-action","226":"/ChangeLog/20231126#updated-keyboard-codebases","227":"/ChangeLog/20231126#notable-core","228":"/ChangeLog/20231126#external-userspace-22222","229":"/ChangeLog/20231126#improve-and-cleanup-shutdown-callbacks","230":"/ChangeLog/20231126#oled-force-flush","231":"/ChangeLog/20231126#switch-statement-helpers-for-keycode-ranges","232":"/ChangeLog/20231126#quantum-painter-oled-support","233":"/ChangeLog/20231126#rgb-led-lighting-driver-naming-and-cleanup-21890-21891-21892-21903-21904-21905-21918-21929-21938-22004-22008-22009-22071-22090-22099-22126-22133-22163-22200-22308-22309-22311-22325-22365-22379-22380-22381-22383-22436","234":"/ChangeLog/20231126#peripheral-subsystem-enabling","235":"/ChangeLog/20231126#vusb-nkro","236":"/ChangeLog/20231126#full-changelist","237":"/ChangeLog/20240225#qmk-breaking-changes-2024-february-25-changelog","238":"/ChangeLog/20240225#notable-features","239":"/ChangeLog/20240225#changes-requiring-user-action","240":"/ChangeLog/20240225#windows-driver-changes-qmk-toolbox-0-3-0-release","241":"/ChangeLog/20240225#updated-keyboard-codebases","242":"/ChangeLog/20240225#notable-core","243":"/ChangeLog/20240225#gpio-rename","244":"/ChangeLog/20240225#i2c-driver-api-changes-22905","245":"/ChangeLog/20240225#bootmagic-rename","246":"/ChangeLog/20240225#auto-mouse-layer","247":"/ChangeLog/20240225#dip-switch-map","248":"/ChangeLog/20240225#qp-updates","249":"/ChangeLog/20240225#full-changelist","250":"/ChangeLog/20240526#qmk-breaking-changes-2024-may-26-changelog","251":"/ChangeLog/20240526#notable-features","252":"/ChangeLog/20240526#changes-requiring-user-action","253":"/ChangeLog/20240526#updated-keyboard-codebases","254":"/ChangeLog/20240526#remove-deprecated-quantum-keycodes-23407","255":"/ChangeLog/20240526#spacey-layout-updates","256":"/ChangeLog/20240526#acr60-layout-updates","257":"/ChangeLog/20240526#acr60-layout-hhkb","258":"/ChangeLog/20240526#acr60-layout-true-hhkb","259":"/ChangeLog/20240526#acr60-layout-directional","260":"/ChangeLog/20240526#acr60-layout-mitchsplit","261":"/ChangeLog/20240526#notable-core","262":"/ChangeLog/20240526#keyboard-json","263":"/ChangeLog/20240526#refactor-chibios-usb-endpoints-to-be-fully-async-21656","264":"/ChangeLog/20240526#deprecation-notices","265":"/ChangeLog/20240526#migration-of-via-keymaps-to-via-team-control","266":"/ChangeLog/20240526#full-changelist","267":"/ChangeLog/20240825#qmk-breaking-changes-2024-august-25-changelog","268":"/ChangeLog/20240825#notable-features","269":"/ChangeLog/20240825#changes-requiring-user-action","270":"/ChangeLog/20240825#updated-keyboard-codebases","271":"/ChangeLog/20240825#sparkfun-pro-micro-rp2040-converter-renamed-24192","272":"/ChangeLog/20240825#key-override-keymap-c-signature-change-24120","273":"/ChangeLog/20240825#adns9800-and-pmw33xx-firmware-upload-now-opt-in-24001","274":"/ChangeLog/20240825#deprecation-notices","275":"/ChangeLog/20240825#migration-of-via-keymaps-to-via-team-control","276":"/ChangeLog/20240825#adns9800-and-pmw33xx-sensor-firmware-rom-removal","277":"/ChangeLog/20240825#full-changelist","278":"/ChangeLog/20241124#qmk-breaking-changes-2024-november-24-changelog","279":"/ChangeLog/20241124#notable-features","280":"/ChangeLog/20241124#changes-requiring-user-action","281":"/ChangeLog/20241124#updated-keyboard-codebases","282":"/ChangeLog/20241124#deprecation-notices","283":"/ChangeLog/20241124#rgb-keycode-overhaul-23679-24484-24490","284":"/ChangeLog/20241124#adns9800-and-pmw33xx-sensor-firmware-rom-removal-24428","285":"/ChangeLog/20241124#full-changelist","286":"/ChangeLog/20250223#qmk-breaking-changes-2025-february-23-changelog","287":"/ChangeLog/20250223#notable-features","288":"/ChangeLog/20250223#community-modules-24848","289":"/ChangeLog/20250223#chordal-hold-24560","290":"/ChangeLog/20250223#changes-requiring-user-action","291":"/ChangeLog/20250223#updated-keyboard-codebases","292":"/ChangeLog/20250223#deprecation-notices","293":"/ChangeLog/20250223#default-folder-removal-24836","294":"/ChangeLog/20250223#full-changelist","295":"/ChangeLog/20250525#qmk-breaking-changes-2025-may-25-changelog","296":"/ChangeLog/20250525#notable-features","297":"/ChangeLog/20250525#flow-tap-25125","298":"/ChangeLog/20250525#community-modules-1-1-1-25050-25187","299":"/ChangeLog/20250525#changes-requiring-user-action","300":"/ChangeLog/20250525#updated-keyboard-codebases","301":"/ChangeLog/20250525#deprecation-notices","302":"/ChangeLog/20250525#deprecation-of-qmk-generate-compilation-database-25237","303":"/ChangeLog/20250525#deprecation-of-usb-force-nkro-force-nkro-25262","304":"/ChangeLog/20250525#ctpc-convert-to-proton-c-removal-25111","305":"/ChangeLog/20250525#default-folder-removal-23281","306":"/ChangeLog/20250525#converter-pin-compatible-updates-20330","307":"/ChangeLog/20250525#deprecation-of-encoder-update-kb-user","308":"/ChangeLog/20250525#full-changelist","309":"/ChangeLog/20250831#qmk-breaking-changes-2025-aug-31-changelog","310":"/ChangeLog/20250831#changes-requiring-user-action","311":"/ChangeLog/20250831#updated-keyboard-codebases","312":"/ChangeLog/20250831#mitigate-via-keylogger-security-issues-25414","313":"/ChangeLog/20250831#deprecation-notices","314":"/ChangeLog/20250831#default-folder-removal-23281","315":"/ChangeLog/20250831#converter-pin-compatible-updates-20330","316":"/ChangeLog/20250831#removal-of-deprecated-rgb-and-mouse-keycodes-25444","317":"/ChangeLog/20250831#full-changelist","318":"/ChangeLog/20251130#qmk-breaking-changes-2025-nov-30-changelog","319":"/ChangeLog/20251130#notable-features","320":"/ChangeLog/20251130#speculative-hold-option-for-mod-taps-hold-mods-instantly-while-unsettled-25572","321":"/ChangeLog/20251130#changes-requiring-user-action","322":"/ChangeLog/20251130#updated-keyboard-codebases","323":"/ChangeLog/20251130#reduce-tap-dance-memory-usage-move-state-out-of-data-25415","324":"/ChangeLog/20251130#before","325":"/ChangeLog/20251130#after","326":"/ChangeLog/20251130#deprecation-notices","327":"/ChangeLog/20251130#remove-override-of-qk-led-rgb-matrix-toggle-keycode-25672","328":"/ChangeLog/20251130#full-changelist","329":"/ChangeLog/20260222#qmk-breaking-changes-2026-feb-22-changelog","330":"/ChangeLog/20260222#deprecation-notices","331":"/ChangeLog/20260222#removal-of-deprecated-gpio-defines-26028","332":"/ChangeLog/20260222#removal-of-deprecated-islefthand-25897","333":"/ChangeLog/20260222#full-changelist","334":"/ChangeLog/20260531#qmk-breaking-changes-2026-may-31-changelog","335":"/ChangeLog/20260531#notable-changes","336":"/ChangeLog/20260531#deprecation-notices","337":"/ChangeLog/20260531#removal-of-deprecated-islefthand-25897","338":"/ChangeLog/20260531#removal-of-usb-force-nkro-force-nkro-25262","339":"/ChangeLog/20260531#full-changelist","340":"/__capabilities#documentation-capabilities","341":"/__capabilities#overall-capabilities","342":"/__capabilities#dividing-lines","343":"/__capabilities#images","344":"/__capabilities#lists","345":"/__capabilities#emoji","346":"/__capabilities#direct","347":"/__capabilities#as-colon-name-colon","348":"/__capabilities#xml-entities","349":"/__capabilities#styling","350":"/__capabilities#css-ish","351":"/__capabilities#tables","352":"/__capabilities#indented-sections","353":"/__capabilities#keyboard-keys","354":"/__capabilities#code-blocks","355":"/__capabilities#sub-superscript","356":"/__capabilities#tabs","357":"/__capabilities#tab-one","358":"/__capabilities#nested-one","359":"/__capabilities#nested-two","360":"/__capabilities#tab-two","361":"/__capabilities#tab-three","362":"/__capabilities#details-sections","363":"/__capabilities#embed","364":"/api_development_environment#development-environment-setup","365":"/api_development_overview#qmk-compiler-development-guide","366":"/api_development_overview#overview","367":"/api_development_overview#workers","368":"/api_development_overview#api-service","369":"/api_development_overview#app-route-v1-compile-methods-post","370":"/api_development_overview#app-route-v1-compile-lt-string-job-id-gt-methods-get","371":"/api_development_overview#app-route-v1-compile-lt-string-job-id-gt-download-methods-get","372":"/api_development_overview#app-route-v1-compile-lt-string-job-id-gt-source-methods-get","373":"/api_docs#qmk-api","374":"/api_docs#overview","375":"/api_docs#example-json-payload","376":"/api_docs#submitting-a-compile-job","377":"/api_docs#checking-the-status","378":"/api_docs#examining-finished-results","379":"/api_docs#qmk-constants","380":"/api_overview#qmk-api","381":"/api_overview#app-developers","382":"/api_overview#keyboard-maintainers","383":"/api_overview#backend-developers","384":"/arm_debugging#arm-debugging-using-eclipse","385":"/arm_debugging#installing-the-software","386":"/arm_debugging#the-xpack-manager","387":"/arm_debugging#the-arm-toolchain","388":"/arm_debugging#windows-build-tools","389":"/arm_debugging#programmer-debugger-drivers","390":"/arm_debugging#openocd","391":"/arm_debugging#java","392":"/arm_debugging#gnu-mcu-eclipse-ide","393":"/arm_debugging#configuring-eclipse","394":"/arm_debugging#building","395":"/arm_debugging#debugging","396":"/arm_debugging#connecting-the-debugger","397":"/arm_debugging#configuring-the-debugger","398":"/arm_debugging#running-the-debugger","399":"/breaking_changes#breaking-changes","400":"/breaking_changes#what-has-been-included-in-past-breaking-changes","401":"/breaking_changes#when-is-the-next-breaking-change","402":"/breaking_changes#important-dates","403":"/breaking_changes#what-changes-will-be-included","404":"/breaking_changes#checklists","405":"/breaking_changes#_4-weeks-before-merge","406":"/breaking_changes#_2-weeks-before-merge","407":"/breaking_changes#_1-week-before-merge","408":"/breaking_changes#_2-days-before-merge","409":"/breaking_changes#day-of-merge","410":"/breaking_changes#post-merge-operations","411":"/breaking_changes#updating-the-develop-branch","412":"/breaking_changes#set-up-discord-events-for-the-next-cycle","413":"/breaking_changes_history#past-breaking-changes","414":"/breaking_changes_instructions#breaking-changes-my-pull-request-was-flagged","415":"/breaking_changes_instructions#what-do-i-do","416":"/breaking_changes_instructions#consider-splitting-up-your-pr","417":"/breaking_changes_instructions#document-your-changes","418":"/breaking_changes_instructions#ask-for-help","419":"/chibios_upgrade_instructions#chibios-upgrade-procedure","420":"/chibios_upgrade_instructions#getting-chibios","421":"/chibios_upgrade_instructions#getting-chibios-contrib","422":"/chibios_upgrade_instructions#updating-submodules","423":"/chibios_upgrade_instructions#when-merging-a-pr-containing-an-upgrade-of-chibios-chibios-contrib","424":"/cli#qmk-cli","425":"/cli#overview","426":"/cli#installation","427":"/cli_commands#qmk-cli-commands","428":"/cli_commands#user-commands","429":"/cli_commands#qmk-compile","430":"/cli_commands#qmk-flash","431":"/cli_commands#qmk-config","432":"/cli_commands#qmk-cd","433":"/cli_commands#qmk-find","434":"/cli_commands#qmk-console","435":"/cli_commands#qmk-doctor","436":"/cli_commands#qmk-format-json","437":"/cli_commands#qmk-info","438":"/cli_commands#qmk-json2c","439":"/cli_commands#qmk-c2json","440":"/cli_commands#qmk-lint","441":"/cli_commands#qmk-list-keyboards","442":"/cli_commands#qmk-list-keymaps","443":"/cli_commands#qmk-migrate","444":"/cli_commands#qmk-new-keyboard","445":"/cli_commands#qmk-new-keymap","446":"/cli_commands#qmk-clean","447":"/cli_commands#qmk-via2json","448":"/cli_commands#qmk-import-keyboard","449":"/cli_commands#qmk-import-keymap","450":"/cli_commands#qmk-import-kbfirmware","451":"/cli_commands#external-userspace-commands","452":"/cli_commands#qmk-userspace-add","453":"/cli_commands#qmk-userspace-remove","454":"/cli_commands#qmk-userspace-list","455":"/cli_commands#qmk-userspace-compile","456":"/cli_commands#qmk-userspace-doctor","457":"/cli_commands#developer-commands","458":"/cli_commands#qmk-format-text","459":"/cli_commands#qmk-format-c","460":"/cli_commands#qmk-docs","461":"/cli_commands#qmk-generate-docs","462":"/cli_commands#qmk-generate-rgb-breathe-table","463":"/cli_commands#qmk-kle2json","464":"/cli_commands#qmk-format-python","465":"/cli_commands#qmk-pytest","466":"/cli_commands#qmk-painter-convert-graphics","467":"/cli_commands#qmk-painter-make-font-image","468":"/cli_commands#qmk-painter-convert-font-image","469":"/cli_commands#qmk-test-c","470":"/cli_commands#qmk-generate-compilation-database","471":"/cli_configuration#qmk-cli-configuration","472":"/cli_configuration#introduction","473":"/cli_configuration#simple-example","474":"/cli_configuration#setting-user-defaults","475":"/cli_configuration#cli-documentation-qmk-config","476":"/cli_configuration#setting-configuration-values","477":"/cli_configuration#reading-configuration-values","478":"/cli_configuration#entire-configuration-example","479":"/cli_configuration#whole-section-example","480":"/cli_configuration#single-key-example","481":"/cli_configuration#multiple-keys-example","482":"/cli_configuration#deleting-configuration-values","483":"/cli_configuration#multiple-operations","484":"/cli_configuration#user-configuration-options","485":"/cli_configuration#all-configuration-options","486":"/cli_development#qmk-cli-development","487":"/cli_development#overview","488":"/cli_development#developer-mode","489":"/cli_development#subcommands","490":"/cli_development#user-interaction","491":"/cli_development#printing-text","492":"/cli_development#logging-cli-log","493":"/cli_development#printing-cli-echo","494":"/cli_development#colorizing-text","495":"/cli_development#arguments-and-configuration","496":"/cli_development#reading-configuration-values","497":"/cli_development#setting-configuration-values","498":"/cli_development#deleting-configuration-values","499":"/cli_development#writing-the-configuration-file","500":"/cli_development#excluding-arguments-from-configuration","501":"/cli_development#testing-and-linting-and-formatting-oh-my","502":"/cli_development#testing-and-linting","503":"/cli_development#formatting","504":"/cli_development#formatting-details","505":"/cli_development#testing-details","506":"/cli_development#linting-details","507":"/cli_tab_complete#tab-completion-for-qmk","508":"/cli_tab_complete#setup","509":"/cli_tab_complete#for-your-user-only","510":"/cli_tab_complete#system-wide-symlink","511":"/cli_tab_complete#system-wide-copy","512":"/coding_conventions_c#coding-conventions-c","513":"/coding_conventions_c#auto-formatting-with-clang-format","514":"/coding_conventions_python#coding-conventions-python","515":"/coding_conventions_python#yapf","516":"/coding_conventions_python#imports","517":"/coding_conventions_python#import-examples","518":"/coding_conventions_python#statements","519":"/coding_conventions_python#naming","520":"/coding_conventions_python#names-to-avoid","521":"/coding_conventions_python#docstrings","522":"/coding_conventions_python#simple-docstring-example","523":"/coding_conventions_python#complex-docstring-example","524":"/coding_conventions_python#function-arguments-docstring-example","525":"/coding_conventions_python#exceptions","526":"/coding_conventions_python#tuples","527":"/coding_conventions_python#lists-and-dictionaries","528":"/coding_conventions_python#parentheses","529":"/coding_conventions_python#format-strings","530":"/coding_conventions_python#comprehensions-generator-expressions","531":"/coding_conventions_python#lambdas","532":"/coding_conventions_python#conditional-expressions","533":"/coding_conventions_python#default-argument-values","534":"/coding_conventions_python#properties","535":"/coding_conventions_python#true-false-evaluations","536":"/coding_conventions_python#decorators","537":"/coding_conventions_python#threading-and-multiprocessing","538":"/coding_conventions_python#power-features","539":"/coding_conventions_python#type-annotated-code","540":"/coding_conventions_python#function-length","541":"/coding_conventions_python#fixmes","542":"/coding_conventions_python#testing","543":"/coding_conventions_python#integration-tests","544":"/coding_conventions_python#unit-tests","545":"/compatible_microcontrollers#compatible-microcontrollers","546":"/compatible_microcontrollers#atmel-avr","547":"/compatible_microcontrollers#arm","548":"/compatible_microcontrollers#stmicroelectronics-stm32","549":"/compatible_microcontrollers#westberrytech-wb32","550":"/compatible_microcontrollers#artery-at32","551":"/compatible_microcontrollers#nxp-kinetis","552":"/compatible_microcontrollers#raspberry-pi","553":"/compatible_microcontrollers#risc-v","554":"/compatible_microcontrollers#gigadevice","555":"/config_options#configuring-qmk","556":"/config_options#qmk-default","557":"/config_options#keyboard","558":"/config_options#folders","559":"/config_options#keymap","560":"/config_options#the-config-h-file","561":"/config_options#hardware-options","562":"/config_options#features-that-can-be-disabled","563":"/config_options#features-that-can-be-enabled","564":"/config_options#behaviors-that-can-be-configured","565":"/config_options#rgb-light-configuration","566":"/config_options#mouse-key-options","567":"/config_options#split-keyboard-options","568":"/config_options#setting-handedness","569":"/config_options#defines-for-handedness","570":"/config_options#other-options","571":"/config_options#the-rules-mk-file","572":"/config_options#build-options","573":"/config_options#avr-mcu-options","574":"/config_options#feature-options","575":"/config_options#usb-endpoint-limitations","576":"/configurator_architecture#qmk-configurator-architecture","577":"/configurator_architecture#overview","578":"/configurator_architecture#detailed-description","579":"/configurator_architecture#configurator-frontend","580":"/configurator_architecture#keyboard-metadata","581":"/configurator_architecture#qmk-api","582":"/configurator_architecture#compile-job-queued","583":"/configurator_architecture#compile-job-running","584":"/configurator_architecture#compile-job-finished","585":"/configurator_architecture#redis-rq","586":"/configurator_architecture#qmk-compiler","587":"/configurator_default_keymaps#adding-default-keymaps","588":"/configurator_default_keymaps#technical-information","589":"/configurator_default_keymaps#example","590":"/configurator_default_keymaps#caveats","591":"/configurator_default_keymaps#layer-references","592":"/configurator_default_keymaps#custom-code","593":"/configurator_default_keymaps#custom-keycodes","594":"/configurator_default_keymaps#additional-reading","595":"/configurator_step_by_step#qmk-configurator-step-by-step","596":"/configurator_step_by_step#step-1-select-your-keyboard","597":"/configurator_step_by_step#step-2-select-your-keyboard-layout","598":"/configurator_step_by_step#step-3-name-your-keymap","599":"/configurator_step_by_step#step-4-define-your-keymap","600":"/configurator_step_by_step#step-5-save-your-keymap-for-future-changes","601":"/configurator_step_by_step#step-6-compile-your-firmware-file","602":"/configurator_step_by_step#next-steps-flashing-your-keyboard","603":"/configurator_troubleshooting#configurator-troubleshooting","604":"/configurator_troubleshooting#my-json-file-is-not-working","605":"/configurator_troubleshooting#there-are-extra-spaces-in-my-layout-what-do-i-do","606":"/configurator_troubleshooting#what-is-the-keycode-for","607":"/configurator_troubleshooting#it-won-t-compile","608":"/configurator_troubleshooting#problems-and-bugs","609":"/contributing#how-to-contribute","610":"/contributing#i-don-t-want-to-read-this-whole-thing-i-just-have-a-question","611":"/contributing#project-overview","612":"/contributing#where-can-i-go-for-help","613":"/contributing#how-do-i-make-a-contribution","614":"/contributing#coding-conventions","615":"/contributing#general-guidelines","616":"/contributing#documentation","617":"/contributing#previewing-the-documentation","618":"/contributing#keyboards","619":"/contributing#quantum-tmk-core","620":"/contributing#refactoring","621":"/contributing#what-does-the-code-of-conduct-mean-for-me","622":"/custom_matrix#custom-matrix","623":"/custom_matrix#prerequisites","624":"/custom_matrix#lite","625":"/custom_matrix#full-replacement","626":"/custom_quantum_functions#how-to-customize-your-keyboard-s-behavior","627":"/custom_quantum_functions#a-word-on-core-vs-keyboards-vs-keymap","628":"/custom_quantum_functions#custom-keycodes","629":"/custom_quantum_functions#defining-a-new-keycode","630":"/custom_quantum_functions#programming-the-behavior-of-any-keycode","631":"/custom_quantum_functions#example-process-record-user-implementation","632":"/custom_quantum_functions#process-record-function-documentation","633":"/custom_quantum_functions#keyboard-initialization-code","634":"/custom_quantum_functions#keyboard-pre-initialization-code","635":"/custom_quantum_functions#example-keyboard-pre-init-user-implementation","636":"/custom_quantum_functions#keyboard-pre-init-function-documentation","637":"/custom_quantum_functions#matrix-initialization-code","638":"/custom_quantum_functions#matrix-init-function-documentation","639":"/custom_quantum_functions#low-level-matrix-overrides","640":"/custom_quantum_functions#keyboard-post-initialization-code","641":"/custom_quantum_functions#example-keyboard-post-init-user-implementation","642":"/custom_quantum_functions#keyboard-post-init-function-documentation","643":"/custom_quantum_functions#matrix-scanning-code","644":"/custom_quantum_functions#example-matrix-scan-implementation","645":"/custom_quantum_functions#matrix-scan-function-documentation","646":"/custom_quantum_functions#keyboard-housekeeping","647":"/custom_quantum_functions#example-void-housekeeping-task-user-void-implementation","648":"/custom_quantum_functions#keyboard-idling-wake-code","649":"/custom_quantum_functions#example-suspend-power-down-user-and-suspend-wakeup-init-user-implementation","650":"/custom_quantum_functions#keyboard-suspend-wake-function-documentation","651":"/custom_quantum_functions#keyboard-shutdown-reboot-code","652":"/custom_quantum_functions#example-shutdown-kb-implementation","653":"/custom_quantum_functions#example-shutdown-user-implementation","654":"/custom_quantum_functions#keyboard-shutdown-reboot-function-documentation","655":"/custom_quantum_functions#deferred-execution","656":"/custom_quantum_functions#deferred-executor-callbacks","657":"/custom_quantum_functions#deferred-executor-registration","658":"/custom_quantum_functions#extending-a-deferred-execution","659":"/custom_quantum_functions#cancelling-a-deferred-execution","660":"/custom_quantum_functions#deferred-callback-limits","661":"/custom_quantum_functions#advanced-topics","662":"/custom_quantum_functions#layer-change-code","663":"/custom_quantum_functions#persistent-configuration-eeprom","664":"/data_driven_config#data-driven-configuration","665":"/data_driven_config#history","666":"/data_driven_config#overview","667":"/data_driven_config#adding-an-option-to-info-json","668":"/data_driven_config#add-it-to-the-schema","669":"/data_driven_config#add-a-mapping","670":"/data_driven_config#info-key","671":"/data_driven_config#value-types","672":"/data_driven_config#add-code-to-extract-it","673":"/data_driven_config#add-code-to-generate-it","674":"/documentation_best_practices#documentation-best-practices","675":"/documentation_best_practices#page-opening","676":"/documentation_best_practices#paragraphs","677":"/documentation_best_practices#headings","678":"/documentation_best_practices#styled-hint-blocks","679":"/documentation_best_practices#important","680":"/documentation_best_practices#general-tips","681":"/documentation_best_practices#documenting-features","682":"/documentation_templates#documentation-templates","683":"/documentation_templates#keyboard-readmemd-template","684":"/documentation_templates#keyboard-readme-md-template","685":"/drivers/adc#adc-driver","686":"/drivers/adc#usage","687":"/drivers/adc#channels","688":"/drivers/adc#avr","689":"/drivers/adc#arm","690":"/drivers/adc#stm32","691":"/drivers/adc#rp2040","692":"/drivers/adc#functions","693":"/drivers/adc#avr-1","694":"/drivers/adc#arm-1","695":"/drivers/adc#configuration","696":"/drivers/adc#arm-2","697":"/drivers/apa102#apa102-driver","698":"/drivers/apa102#usage","699":"/drivers/apa102#basic-configuration","700":"/drivers/apa102#api","701":"/drivers/apa102#api-apa102-init","702":"/drivers/apa102#api-apa102-set-color","703":"/drivers/apa102#api-apa102-set-color-arguments","704":"/drivers/apa102#api-apa102-set-color-all","705":"/drivers/apa102#api-apa102-set-color-all-arguments","706":"/drivers/apa102#api-apa102-flush","707":"/drivers/apa102#api-apa102-set-brightness","708":"/drivers/apa102#api-apa102-set-brightness-arguments","709":"/driver_installation_zadig#bootloader-driver-installation-with-zadig","710":"/driver_installation_zadig#installation","711":"/driver_installation_zadig#recovering-from-installation-to-wrong-device","712":"/driver_installation_zadig#uninstallation","713":"/driver_installation_zadig#list-of-known-bootloaders","714":"/drivers/audio#audio-driver","715":"/drivers/audio#avr","716":"/drivers/audio#arm","717":"/drivers/audio#dac-basic","718":"/drivers/audio#dac-additive","719":"/drivers/audio#dac-config","720":"/drivers/audio#buffer-size","721":"/drivers/audio#pwm-hardware","722":"/drivers/audio#pwm-software","723":"/drivers/audio#testing-notes","724":"/drivers/aw20216s#aw20216s-driver","725":"/drivers/aw20216s#usage","726":"/drivers/aw20216s#basic-configuration","727":"/drivers/aw20216s#global-current-control","728":"/drivers/aw20216s#arm-configuration","729":"/drivers/aw20216s#led-mapping","730":"/drivers/aw20216s#api","731":"/drivers/aw20216s#api-aw20216s-led-t","732":"/drivers/aw20216s#api-aw20216s-led-t-members","733":"/drivers/aw20216s#api-aw20216s-init","734":"/drivers/aw20216s#api-aw20216s-init-arguments","735":"/drivers/aw20216s#api-aw20216s-set-color","736":"/drivers/aw20216s#api-aw20216s-set-color-arguments","737":"/drivers/aw20216s#api-aw20216s-set-color-all","738":"/drivers/aw20216s#api-aw20216s-set-color-all-arguments","739":"/drivers/aw20216s#api-aw20216s-update-pwm-buffers","740":"/drivers/aw20216s#api-aw20216s-update-pwm-buffers-arguments","741":"/drivers/battery#battery-driver","742":"/drivers/battery#usage","743":"/drivers/battery#driver-configuration","744":"/drivers/battery#adc-driver","745":"/drivers/battery#custom-driver","746":"/drivers/eeprom#eeprom-driver-configuration","747":"/drivers/eeprom#vendor-eeprom-driver-configuration","748":"/drivers/eeprom#stm32l0l1-eeprom-driver-configuration","749":"/drivers/eeprom#i2c-eeprom-driver-configuration","750":"/drivers/eeprom#spi-eeprom-driver-configuration","751":"/drivers/eeprom#transient-eeprom-driver-configuration","752":"/drivers/eeprom#wear_leveling-eeprom-driver-configuration","753":"/drivers/eeprom#wear_leveling-configuration","754":"/drivers/eeprom#wear_leveling-efl-driver-configuration","755":"/drivers/eeprom#wear_leveling-flash_spi-driver-configuration","756":"/drivers/eeprom#wear_leveling-rp2040-driver-configuration","757":"/drivers/eeprom#wear_leveling-legacy-driver-configuration","758":"/drivers/flash#flash-driver-configuration","759":"/drivers/flash#spi-flash-driver-configuration","760":"/drivers/i2c#i2c-master-driver","761":"/drivers/i2c#usage","762":"/drivers/i2c#note-on-i2c-addresses","763":"/drivers/i2c#avr-configuration","764":"/drivers/i2c#arm-configuration","765":"/drivers/i2c#arm-configuration-i2cv1","766":"/drivers/i2c#arm-configuration-i2cv2","767":"/drivers/i2c#api","768":"/drivers/i2c#api-i2c-init","769":"/drivers/i2c#api-i2c-transmit","770":"/drivers/i2c#api-i2c-transmit-arguments","771":"/drivers/i2c#api-i2c-transmit-return","772":"/drivers/i2c#api-i2c-transmit-p","773":"/drivers/i2c#api-i2c-transmit-p-arguments","774":"/drivers/i2c#api-i2c-transmit-p-return","775":"/drivers/i2c#api-i2c-receive","776":"/drivers/i2c#api-i2c-receive-arguments","777":"/drivers/i2c#api-i2c-receive-return","778":"/drivers/i2c#api-i2c-transmit-and-receive","779":"/drivers/i2c#api-i2c-transmit-and-receive-arguments","780":"/drivers/i2c#api-i2c-transmit-and-receive-return","781":"/drivers/i2c#api-i2c-write-register","782":"/drivers/i2c#api-i2c-write-register-arguments","783":"/drivers/i2c#api-i2c-write-register-return","784":"/drivers/i2c#api-i2c-write-register16","785":"/drivers/i2c#api-i2c-write-register16-arguments","786":"/drivers/i2c#api-i2c-write-register16-return","787":"/drivers/i2c#api-i2c-read-register","788":"/drivers/i2c#api-i2c-read-register-arguments","789":"/drivers/i2c#api-i2c-read-register-return","790":"/drivers/i2c#api-i2c-read-register16","791":"/drivers/i2c#api-i2c-read-register16-arguments","792":"/drivers/i2c#api-i2c-read-register16-return","793":"/drivers/i2c#api-i2c-ping-address","794":"/drivers/i2c#api-i2c-ping-address-arguments","795":"/drivers/i2c#api-i2c-ping-address-return","796":"/drivers/gpio#gpio-control","797":"/drivers/gpio#macros","798":"/drivers/gpio#advanced-settings","799":"/drivers/gpio#atomic-operation","800":"/drivers/is31fl3218#is31fl3218-driver","801":"/drivers/is31fl3218#usage","802":"/drivers/is31fl3218#basic-configuration","803":"/drivers/is31fl3218#i2c-addressing","804":"/drivers/is31fl3218#arm-configuration","805":"/drivers/is31fl3218#led-mapping","806":"/drivers/is31fl3218#api","807":"/drivers/is31fl3218#api-is31fl3218-led-t","808":"/drivers/is31fl3218#api-is31fl3218-led-t-members","809":"/drivers/is31fl3218#api-is31fl3218-init","810":"/drivers/is31fl3218#api-is31fl3218-write-register","811":"/drivers/is31fl3218#api-is31fl3218-write-register-arguments","812":"/drivers/is31fl3218#api-is31fl3218-set-color","813":"/drivers/is31fl3218#api-is31fl3218-set-color-arguments","814":"/drivers/is31fl3218#api-is31fl3218-set-color-all","815":"/drivers/is31fl3218#api-is31fl3218-set-color-all-arguments","816":"/drivers/is31fl3218#api-is31fl3218-set-value","817":"/drivers/is31fl3218#api-is31fl3218-set-value-arguments","818":"/drivers/is31fl3218#api-is31fl3218-set-value-all","819":"/drivers/is31fl3218#api-is31fl3218-set-value-all-arguments","820":"/drivers/is31fl3218#api-is31fl3218-set-led-control-register-rgb","821":"/drivers/is31fl3218#api-is31fl3218-set-led-control-register-rgb-arguments","822":"/drivers/is31fl3218#api-is31fl3218-set-led-control-register-mono","823":"/drivers/is31fl3218#api-is31fl3218-set-led-control-register-mono-arguments","824":"/drivers/is31fl3218#api-is31fl3218-update-pwm-buffers","825":"/drivers/is31fl3218#api-is31fl3218-update-led-control-registers","826":"/drivers/is31fl3236#is31fl3236-driver","827":"/drivers/is31fl3236#usage","828":"/drivers/is31fl3236#basic-configuration","829":"/drivers/is31fl3236#i2c-addressing","830":"/drivers/is31fl3236#arm-configuration","831":"/drivers/is31fl3236#led-mapping","832":"/drivers/is31fl3236#api","833":"/drivers/is31fl3236#api-is31fl3236-led-t","834":"/drivers/is31fl3236#api-is31fl3236-led-t-members","835":"/drivers/is31fl3236#api-is31fl3236-init","836":"/drivers/is31fl3236#api-is31fl3236-init-arguments","837":"/drivers/is31fl3236#api-is31fl3236-write-register","838":"/drivers/is31fl3236#api-is31fl3236-write-register-arguments","839":"/drivers/is31fl3236#api-is31fl3236-set-color","840":"/drivers/is31fl3236#api-is31fl3236-set-color-arguments","841":"/drivers/is31fl3236#api-is31fl3236-set-color-all","842":"/drivers/is31fl3236#api-is31fl3236-set-color-all-arguments","843":"/drivers/is31fl3236#api-is31fl3236-set-value","844":"/drivers/is31fl3236#api-is31fl3236-set-value-arguments","845":"/drivers/is31fl3236#api-is31fl3236-set-value-all","846":"/drivers/is31fl3236#api-is31fl3236-set-value-all-arguments","847":"/drivers/is31fl3236#api-is31fl3236-set-led-control-register-rgb","848":"/drivers/is31fl3236#api-is31fl3236-set-led-control-register-rgb-arguments","849":"/drivers/is31fl3236#api-is31fl3236-set-led-control-register-mono","850":"/drivers/is31fl3236#api-is31fl3236-set-led-control-register-mono-arguments","851":"/drivers/is31fl3236#api-is31fl3236-update-pwm-buffers","852":"/drivers/is31fl3236#api-is31fl3236-update-pwm-buffers-arguments","853":"/drivers/is31fl3236#api-is31fl3236-update-led-control-registers","854":"/drivers/is31fl3236#api-is31fl3236-update-led-control-registers-arguments","855":"/drivers/is31fl3729#is31fl3729-driver","856":"/drivers/is31fl3729#usage","857":"/drivers/is31fl3729#basic-configuration","858":"/drivers/is31fl3729#i2c-addressing","859":"/drivers/is31fl3729#pwm-frequency","860":"/drivers/is31fl3729#de-ghosting","861":"/drivers/is31fl3729#global-current-control","862":"/drivers/is31fl3729#arm-configuration","863":"/drivers/is31fl3729#led-mapping","864":"/drivers/is31fl3729#api","865":"/drivers/is31fl3729#api-is31fl3729-led-t","866":"/drivers/is31fl3729#api-is31fl3729-led-t-members","867":"/drivers/is31fl3729#api-is31fl3729-init","868":"/drivers/is31fl3729#api-is31fl3729-init-arguments","869":"/drivers/is31fl3729#api-is31fl3729-write-register","870":"/drivers/is31fl3729#api-is31fl3729-write-register-arguments","871":"/drivers/is31fl3729#api-is31fl3729-set-color","872":"/drivers/is31fl3729#api-is31fl3729-set-color-arguments","873":"/drivers/is31fl3729#api-is31fl3729-set-color-all","874":"/drivers/is31fl3729#api-is31fl3729-set-color-all-arguments","875":"/drivers/is31fl3729#api-is31fl3729-set-value","876":"/drivers/is31fl3729#api-is31fl3729-set-value-arguments","877":"/drivers/is31fl3729#api-is31fl3729-set-value-all","878":"/drivers/is31fl3729#api-is31fl3729-set-value-all-arguments","879":"/drivers/is31fl3729#api-is31fl3729-set-scaling-register-rgb","880":"/drivers/is31fl3729#api-is31fl3729-set-scaling-register-rgb-arguments","881":"/drivers/is31fl3729#api-is31fl3729-set-scaling-register-mono","882":"/drivers/is31fl3729#api-is31fl3729-set-scaling-register-mono-arguments","883":"/drivers/is31fl3729#api-is31fl3729-update-pwm-buffers","884":"/drivers/is31fl3729#api-is31fl3729-update-pwm-buffers-arguments","885":"/drivers/is31fl3729#api-is31fl3729-update-scaling-registers","886":"/drivers/is31fl3729#api-is31fl3729-update-scaling-registers-arguments","887":"/drivers/is31fl3731#is31fl3731-driver","888":"/drivers/is31fl3731#usage","889":"/drivers/is31fl3731#basic-configuration","890":"/drivers/is31fl3731#i2c-addressing","891":"/drivers/is31fl3731#de-ghosting","892":"/drivers/is31fl3731#arm-configuration","893":"/drivers/is31fl3731#led-mapping","894":"/drivers/is31fl3731#api","895":"/drivers/is31fl3731#api-is31fl3731-led-t","896":"/drivers/is31fl3731#api-is31fl3731-led-t-members","897":"/drivers/is31fl3731#api-is31fl3731-init","898":"/drivers/is31fl3731#api-is31fl3731-init-arguments","899":"/drivers/is31fl3731#api-is31fl3731-write-register","900":"/drivers/is31fl3731#api-is31fl3731-write-register-arguments","901":"/drivers/is31fl3731#api-is31fl3731-select-page","902":"/drivers/is31fl3731#api-is31fl3731-select-page-arguments","903":"/drivers/is31fl3731#api-is31fl3731-set-color","904":"/drivers/is31fl3731#api-is31fl3731-set-color-arguments","905":"/drivers/is31fl3731#api-is31fl3731-set-color-all","906":"/drivers/is31fl3731#api-is31fl3731-set-color-all-arguments","907":"/drivers/is31fl3731#api-is31fl3731-set-value","908":"/drivers/is31fl3731#api-is31fl3731-set-value-arguments","909":"/drivers/is31fl3731#api-is31fl3731-set-value-all","910":"/drivers/is31fl3731#api-is31fl3731-set-value-all-arguments","911":"/drivers/is31fl3731#api-is31fl3731-set-led-control-register-rgb","912":"/drivers/is31fl3731#api-is31fl3731-set-led-control-register-rgb-arguments","913":"/drivers/is31fl3731#api-is31fl3731-set-led-control-register-mono","914":"/drivers/is31fl3731#api-is31fl3731-set-led-control-register-mono-arguments","915":"/drivers/is31fl3731#api-is31fl3731-update-pwm-buffers","916":"/drivers/is31fl3731#api-is31fl3731-update-pwm-buffers-arguments","917":"/drivers/is31fl3731#api-is31fl3731-update-led-control-registers","918":"/drivers/is31fl3731#api-is31fl3731-update-led-control-registers-arguments","919":"/drivers/is31fl3733#is31fl3733-driver","920":"/drivers/is31fl3733#usage","921":"/drivers/is31fl3733#basic-configuration","922":"/drivers/is31fl3733#i2c-addressing","923":"/drivers/is31fl3733#multi-driver-synchronization","924":"/drivers/is31fl3733#pwm-frequency","925":"/drivers/is31fl3733#de-ghosting","926":"/drivers/is31fl3733#global-current-control","927":"/drivers/is31fl3733#arm-configuration","928":"/drivers/is31fl3733#led-mapping","929":"/drivers/is31fl3733#api","930":"/drivers/is31fl3733#api-is31fl3733-led-t","931":"/drivers/is31fl3733#api-is31fl3733-led-t-members","932":"/drivers/is31fl3733#api-is31fl3733-init","933":"/drivers/is31fl3733#api-is31fl3733-init-arguments","934":"/drivers/is31fl3733#api-is31fl3733-write-register","935":"/drivers/is31fl3733#api-is31fl3733-write-register-arguments","936":"/drivers/is31fl3733#api-is31fl3733-select-page","937":"/drivers/is31fl3733#api-is31fl3733-select-page-arguments","938":"/drivers/is31fl3733#api-is31fl3733-set-color","939":"/drivers/is31fl3733#api-is31fl3733-set-color-arguments","940":"/drivers/is31fl3733#api-is31fl3733-set-color-all","941":"/drivers/is31fl3733#api-is31fl3733-set-color-all-arguments","942":"/drivers/is31fl3733#api-is31fl3733-set-value","943":"/drivers/is31fl3733#api-is31fl3733-set-value-arguments","944":"/drivers/is31fl3733#api-is31fl3733-set-value-all","945":"/drivers/is31fl3733#api-is31fl3733-set-value-all-arguments","946":"/drivers/is31fl3733#api-is31fl3733-set-led-control-register-rgb","947":"/drivers/is31fl3733#api-is31fl3733-set-led-control-register-rgb-arguments","948":"/drivers/is31fl3733#api-is31fl3733-set-led-control-register-mono","949":"/drivers/is31fl3733#api-is31fl3733-set-led-control-register-mono-arguments","950":"/drivers/is31fl3733#api-is31fl3733-update-pwm-buffers","951":"/drivers/is31fl3733#api-is31fl3733-update-pwm-buffers-arguments","952":"/drivers/is31fl3733#api-is31fl3733-update-led-control-registers","953":"/drivers/is31fl3733#api-is31fl3733-update-led-control-registers-arguments","954":"/drivers/is31fl3736#is31fl3736-driver","955":"/drivers/is31fl3736#usage","956":"/drivers/is31fl3736#basic-configuration","957":"/drivers/is31fl3736#i2c-addressing","958":"/drivers/is31fl3736#pwm-frequency","959":"/drivers/is31fl3736#de-ghosting","960":"/drivers/is31fl3736#global-current-control","961":"/drivers/is31fl3736#arm-configuration","962":"/drivers/is31fl3736#led-mapping","963":"/drivers/is31fl3736#api","964":"/drivers/is31fl3736#api-is31fl3736-led-t","965":"/drivers/is31fl3736#api-is31fl3736-led-t-members","966":"/drivers/is31fl3736#api-is31fl3736-init","967":"/drivers/is31fl3736#api-is31fl3736-init-arguments","968":"/drivers/is31fl3736#api-is31fl3736-write-register","969":"/drivers/is31fl3736#api-is31fl3736-write-register-arguments","970":"/drivers/is31fl3736#api-is31fl3736-select-page","971":"/drivers/is31fl3736#api-is31fl3736-select-page-arguments","972":"/drivers/is31fl3736#api-is31fl3736-set-color","973":"/drivers/is31fl3736#api-is31fl3736-set-color-arguments","974":"/drivers/is31fl3736#api-is31fl3736-set-color-all","975":"/drivers/is31fl3736#api-is31fl3736-set-color-all-arguments","976":"/drivers/is31fl3736#api-is31fl3736-set-value","977":"/drivers/is31fl3736#api-is31fl3736-set-value-arguments","978":"/drivers/is31fl3736#api-is31fl3736-set-value-all","979":"/drivers/is31fl3736#api-is31fl3736-set-value-all-arguments","980":"/drivers/is31fl3736#api-is31fl3736-set-led-control-register-rgb","981":"/drivers/is31fl3736#api-is31fl3736-set-led-control-register-rgb-arguments","982":"/drivers/is31fl3736#api-is31fl3736-set-led-control-register-mono","983":"/drivers/is31fl3736#api-is31fl3736-set-led-control-register-mono-arguments","984":"/drivers/is31fl3736#api-is31fl3736-update-pwm-buffers","985":"/drivers/is31fl3736#api-is31fl3736-update-pwm-buffers-arguments","986":"/drivers/is31fl3736#api-is31fl3736-update-led-control-registers","987":"/drivers/is31fl3736#api-is31fl3736-update-led-control-registers-arguments","988":"/drivers/is31fl3737#is31fl3737-driver","989":"/drivers/is31fl3737#usage","990":"/drivers/is31fl3737#basic-configuration","991":"/drivers/is31fl3737#i2c-addressing","992":"/drivers/is31fl3737#pwm-frequency","993":"/drivers/is31fl3737#de-ghosting","994":"/drivers/is31fl3737#global-current-control","995":"/drivers/is31fl3737#arm-configuration","996":"/drivers/is31fl3737#led-mapping","997":"/drivers/is31fl3737#api","998":"/drivers/is31fl3737#api-is31fl3737-led-t","999":"/drivers/is31fl3737#api-is31fl3737-led-t-members","1000":"/drivers/is31fl3737#api-is31fl3737-init","1001":"/drivers/is31fl3737#api-is31fl3737-init-arguments","1002":"/drivers/is31fl3737#api-is31fl3737-write-register","1003":"/drivers/is31fl3737#api-is31fl3737-write-register-arguments","1004":"/drivers/is31fl3737#api-is31fl3737-select-page","1005":"/drivers/is31fl3737#api-is31fl3737-select-page-arguments","1006":"/drivers/is31fl3737#api-is31fl3737-set-color","1007":"/drivers/is31fl3737#api-is31fl3737-set-color-arguments","1008":"/drivers/is31fl3737#api-is31fl3737-set-color-all","1009":"/drivers/is31fl3737#api-is31fl3737-set-color-all-arguments","1010":"/drivers/is31fl3737#api-is31fl3737-set-value","1011":"/drivers/is31fl3737#api-is31fl3737-set-value-arguments","1012":"/drivers/is31fl3737#api-is31fl3737-set-value-all","1013":"/drivers/is31fl3737#api-is31fl3737-set-value-all-arguments","1014":"/drivers/is31fl3737#api-is31fl3737-set-led-control-register-rgb","1015":"/drivers/is31fl3737#api-is31fl3737-set-led-control-register-rgb-arguments","1016":"/drivers/is31fl3737#api-is31fl3737-set-led-control-register-mono","1017":"/drivers/is31fl3737#api-is31fl3737-set-led-control-register-mono-arguments","1018":"/drivers/is31fl3737#api-is31fl3737-update-pwm-buffers","1019":"/drivers/is31fl3737#api-is31fl3737-update-pwm-buffers-arguments","1020":"/drivers/is31fl3737#api-is31fl3737-update-led-control-registers","1021":"/drivers/is31fl3737#api-is31fl3737-update-led-control-registers-arguments","1022":"/drivers/is31fl3741#is31fl3741-driver","1023":"/drivers/is31fl3741#usage","1024":"/drivers/is31fl3741#basic-configuration","1025":"/drivers/is31fl3741#i2c-addressing","1026":"/drivers/is31fl3741#pwm-frequency","1027":"/drivers/is31fl3741#de-ghosting","1028":"/drivers/is31fl3741#global-current-control","1029":"/drivers/is31fl3741#arm-configuration","1030":"/drivers/is31fl3741#led-mapping","1031":"/drivers/is31fl3741#api","1032":"/drivers/is31fl3741#api-is31fl3741-led-t","1033":"/drivers/is31fl3741#api-is31fl3741-led-t-members","1034":"/drivers/is31fl3741#api-is31fl3741-init","1035":"/drivers/is31fl3741#api-is31fl3741-init-arguments","1036":"/drivers/is31fl3741#api-is31fl3741-write-register","1037":"/drivers/is31fl3741#api-is31fl3741-write-register-arguments","1038":"/drivers/is31fl3741#api-is31fl3741-select-page","1039":"/drivers/is31fl3741#api-is31fl3741-select-page-arguments","1040":"/drivers/is31fl3741#api-is31fl3741-set-color","1041":"/drivers/is31fl3741#api-is31fl3741-set-color-arguments","1042":"/drivers/is31fl3741#api-is31fl3741-set-color-all","1043":"/drivers/is31fl3741#api-is31fl3741-set-color-all-arguments","1044":"/drivers/is31fl3741#api-is31fl3741-set-value","1045":"/drivers/is31fl3741#api-is31fl3741-set-value-arguments","1046":"/drivers/is31fl3741#api-is31fl3741-set-value-all","1047":"/drivers/is31fl3741#api-is31fl3741-set-value-all-arguments","1048":"/drivers/is31fl3741#api-is31fl3741-set-led-control-register-rgb","1049":"/drivers/is31fl3741#api-is31fl3741-set-led-control-register-rgb-arguments","1050":"/drivers/is31fl3741#api-is31fl3741-set-led-control-register-mono","1051":"/drivers/is31fl3741#api-is31fl3741-set-led-control-register-mono-arguments","1052":"/drivers/is31fl3741#api-is31fl3741-update-pwm-buffers","1053":"/drivers/is31fl3741#api-is31fl3741-update-pwm-buffers-arguments","1054":"/drivers/is31fl3741#api-is31fl3741-update-led-control-registers","1055":"/drivers/is31fl3741#api-is31fl3741-update-led-control-registers-arguments","1056":"/drivers/is31fl3742a#is31fl3742a-driver","1057":"/drivers/is31fl3742a#usage","1058":"/drivers/is31fl3742a#basic-configuration","1059":"/drivers/is31fl3742a#i2c-addressing","1060":"/drivers/is31fl3742a#pwm-frequency","1061":"/drivers/is31fl3742a#de-ghosting","1062":"/drivers/is31fl3742a#global-current-control","1063":"/drivers/is31fl3742a#arm-configuration","1064":"/drivers/is31fl3742a#led-mapping","1065":"/drivers/is31fl3742a#api","1066":"/drivers/is31fl3742a#api-is31fl3742a-led-t","1067":"/drivers/is31fl3742a#api-is31fl3742a-led-t-members","1068":"/drivers/is31fl3742a#api-is31fl3742a-init","1069":"/drivers/is31fl3742a#api-is31fl3742a-init-arguments","1070":"/drivers/is31fl3742a#api-is31fl3742a-write-register","1071":"/drivers/is31fl3742a#api-is31fl3742a-write-register-arguments","1072":"/drivers/is31fl3742a#api-is31fl3742a-select-page","1073":"/drivers/is31fl3742a#api-is31fl3742a-select-page-arguments","1074":"/drivers/is31fl3742a#api-is31fl3742a-set-color","1075":"/drivers/is31fl3742a#api-is31fl3742a-set-color-arguments","1076":"/drivers/is31fl3742a#api-is31fl3742a-set-color-all","1077":"/drivers/is31fl3742a#api-is31fl3742a-set-color-all-arguments","1078":"/drivers/is31fl3742a#api-is31fl3742a-set-value","1079":"/drivers/is31fl3742a#api-is31fl3742a-set-value-arguments","1080":"/drivers/is31fl3742a#api-is31fl3742a-set-value-all","1081":"/drivers/is31fl3742a#api-is31fl3742a-set-value-all-arguments","1082":"/drivers/is31fl3742a#api-is31fl3742a-set-scaling-register-rgb","1083":"/drivers/is31fl3742a#api-is31fl3742a-set-scaling-register-rgb-arguments","1084":"/drivers/is31fl3742a#api-is31fl3742a-set-scaling-register-mono","1085":"/drivers/is31fl3742a#api-is31fl3742a-set-scaling-register-mono-arguments","1086":"/drivers/is31fl3742a#api-is31fl3742a-update-pwm-buffers","1087":"/drivers/is31fl3742a#api-is31fl3742a-update-pwm-buffers-arguments","1088":"/drivers/is31fl3742a#api-is31fl3742a-update-scaling-registers","1089":"/drivers/is31fl3742a#api-is31fl3742a-update-scaling-registers-arguments","1090":"/drivers/is31fl3743a#is31fl3743a-driver","1091":"/drivers/is31fl3743a#usage","1092":"/drivers/is31fl3743a#basic-configuration","1093":"/drivers/is31fl3743a#i2c-addressing","1094":"/drivers/is31fl3743a#multi-driver-synchronization","1095":"/drivers/is31fl3743a#de-ghosting","1096":"/drivers/is31fl3743a#global-current-control","1097":"/drivers/is31fl3743a#arm-configuration","1098":"/drivers/is31fl3743a#led-mapping","1099":"/drivers/is31fl3743a#api","1100":"/drivers/is31fl3743a#api-is31fl3743a-led-t","1101":"/drivers/is31fl3743a#api-is31fl3743a-led-t-members","1102":"/drivers/is31fl3743a#api-is31fl3743a-init","1103":"/drivers/is31fl3743a#api-is31fl3743a-init-arguments","1104":"/drivers/is31fl3743a#api-is31fl3743a-write-register","1105":"/drivers/is31fl3743a#api-is31fl3743a-write-register-arguments","1106":"/drivers/is31fl3743a#api-is31fl3743a-select-page","1107":"/drivers/is31fl3743a#api-is31fl3743a-select-page-arguments","1108":"/drivers/is31fl3743a#api-is31fl3743a-set-color","1109":"/drivers/is31fl3743a#api-is31fl3743a-set-color-arguments","1110":"/drivers/is31fl3743a#api-is31fl3743a-set-color-all","1111":"/drivers/is31fl3743a#api-is31fl3743a-set-color-all-arguments","1112":"/drivers/is31fl3743a#api-is31fl3743a-set-value","1113":"/drivers/is31fl3743a#api-is31fl3743a-set-value-arguments","1114":"/drivers/is31fl3743a#api-is31fl3743a-set-value-all","1115":"/drivers/is31fl3743a#api-is31fl3743a-set-value-all-arguments","1116":"/drivers/is31fl3743a#api-is31fl3743a-set-scaling-register-rgb","1117":"/drivers/is31fl3743a#api-is31fl3743a-set-scaling-register-rgb-arguments","1118":"/drivers/is31fl3743a#api-is31fl3743a-set-scaling-register-mono","1119":"/drivers/is31fl3743a#api-is31fl3743a-set-scaling-register-mono-arguments","1120":"/drivers/is31fl3743a#api-is31fl3743a-update-pwm-buffers","1121":"/drivers/is31fl3743a#api-is31fl3743a-update-pwm-buffers-arguments","1122":"/drivers/is31fl3743a#api-is31fl3743a-update-scaling-registers","1123":"/drivers/is31fl3743a#api-is31fl3743a-update-scaling-registers-arguments","1124":"/drivers/is31fl3745#is31fl3745-driver","1125":"/drivers/is31fl3745#usage","1126":"/drivers/is31fl3745#basic-configuration","1127":"/drivers/is31fl3745#i2c-addressing","1128":"/drivers/is31fl3745#multi-driver-synchronization","1129":"/drivers/is31fl3745#de-ghosting","1130":"/drivers/is31fl3745#global-current-control","1131":"/drivers/is31fl3745#arm-configuration","1132":"/drivers/is31fl3745#led-mapping","1133":"/drivers/is31fl3745#api","1134":"/drivers/is31fl3745#api-is31fl3745-led-t","1135":"/drivers/is31fl3745#api-is31fl3745-led-t-members","1136":"/drivers/is31fl3745#api-is31fl3745-init","1137":"/drivers/is31fl3745#api-is31fl3745-init-arguments","1138":"/drivers/is31fl3745#api-is31fl3745-write-register","1139":"/drivers/is31fl3745#api-is31fl3745-write-register-arguments","1140":"/drivers/is31fl3745#api-is31fl3745-select-page","1141":"/drivers/is31fl3745#api-is31fl3745-select-page-arguments","1142":"/drivers/is31fl3745#api-is31fl3745-set-color","1143":"/drivers/is31fl3745#api-is31fl3745-set-color-arguments","1144":"/drivers/is31fl3745#api-is31fl3745-set-color-all","1145":"/drivers/is31fl3745#api-is31fl3745-set-color-all-arguments","1146":"/drivers/is31fl3745#api-is31fl3745-set-value","1147":"/drivers/is31fl3745#api-is31fl3745-set-value-arguments","1148":"/drivers/is31fl3745#api-is31fl3745-set-value-all","1149":"/drivers/is31fl3745#api-is31fl3745-set-value-all-arguments","1150":"/drivers/is31fl3745#api-is31fl3745-set-scaling-register-rgb","1151":"/drivers/is31fl3745#api-is31fl3745-set-scaling-register-rgb-arguments","1152":"/drivers/is31fl3745#api-is31fl3745-set-scaling-register-mono","1153":"/drivers/is31fl3745#api-is31fl3745-set-scaling-register-mono-arguments","1154":"/drivers/is31fl3745#api-is31fl3745-update-pwm-buffers","1155":"/drivers/is31fl3745#api-is31fl3745-update-pwm-buffers-arguments","1156":"/drivers/is31fl3745#api-is31fl3745-update-scaling-registers","1157":"/drivers/is31fl3745#api-is31fl3745-update-scaling-registers-arguments","1158":"/drivers/is31fl3746a#is31fl3746a-driver","1159":"/drivers/is31fl3746a#usage","1160":"/drivers/is31fl3746a#basic-configuration","1161":"/drivers/is31fl3746a#i2c-addressing","1162":"/drivers/is31fl3746a#pwm-frequency","1163":"/drivers/is31fl3746a#de-ghosting","1164":"/drivers/is31fl3746a#global-current-control","1165":"/drivers/is31fl3746a#arm-configuration","1166":"/drivers/is31fl3746a#led-mapping","1167":"/drivers/is31fl3746a#api","1168":"/drivers/is31fl3746a#api-is31fl3746a-led-t","1169":"/drivers/is31fl3746a#api-is31fl3746a-led-t-members","1170":"/drivers/is31fl3746a#api-is31fl3746a-init","1171":"/drivers/is31fl3746a#api-is31fl3746a-init-arguments","1172":"/drivers/is31fl3746a#api-is31fl3746a-write-register","1173":"/drivers/is31fl3746a#api-is31fl3746a-write-register-arguments","1174":"/drivers/is31fl3746a#api-is31fl3746a-select-page","1175":"/drivers/is31fl3746a#api-is31fl3746a-select-page-arguments","1176":"/drivers/is31fl3746a#api-is31fl3746a-set-color","1177":"/drivers/is31fl3746a#api-is31fl3746a-set-color-arguments","1178":"/drivers/is31fl3746a#api-is31fl3746a-set-color-all","1179":"/drivers/is31fl3746a#api-is31fl3746a-set-color-all-arguments","1180":"/drivers/is31fl3746a#api-is31fl3746a-set-value","1181":"/drivers/is31fl3746a#api-is31fl3746a-set-value-arguments","1182":"/drivers/is31fl3746a#api-is31fl3746a-set-value-all","1183":"/drivers/is31fl3746a#api-is31fl3746a-set-value-all-arguments","1184":"/drivers/is31fl3746a#api-is31fl3746a-set-scaling-register-rgb","1185":"/drivers/is31fl3746a#api-is31fl3746a-set-scaling-register-rgb-arguments","1186":"/drivers/is31fl3746a#api-is31fl3746a-set-scaling-register-mono","1187":"/drivers/is31fl3746a#api-is31fl3746a-set-scaling-register-mono-arguments","1188":"/drivers/is31fl3746a#api-is31fl3746a-update-pwm-buffers","1189":"/drivers/is31fl3746a#api-is31fl3746a-update-pwm-buffers-arguments","1190":"/drivers/is31fl3746a#api-is31fl3746a-update-scaling-registers","1191":"/drivers/is31fl3746a#api-is31fl3746a-update-scaling-registers-arguments","1192":"/drivers/serial#serial-driver","1193":"/drivers/serial#bitbang","1194":"/drivers/serial#pin-configuration","1195":"/drivers/serial#setup","1196":"/drivers/serial#usart-half-duplex","1197":"/drivers/serial#pin-configuration-1","1198":"/drivers/serial#setup-1","1199":"/drivers/serial#usart-full-duplex","1200":"/drivers/serial#pin-configuration-2","1201":"/drivers/serial#setup-2","1202":"/drivers/serial#choosing-a-driver-subsystem","1203":"/drivers/serial#the-serial-driver","1204":"/drivers/serial#the-sio-driver","1205":"/drivers/serial#the-pio-driver","1206":"/drivers/serial#advanced-configuration","1207":"/drivers/serial#baudrate","1208":"/drivers/serial#timeout","1209":"/drivers/serial#troubleshooting","1210":"/drivers/serial#alternate-functions-for-selected-stm32-mcus","1211":"/drivers/serial#stm32f303-proton-c-datasheet","1212":"/drivers/serial#stm32f072-datasheet","1213":"/drivers/serial#stm32f103-medium-density-c8-cb-datasheet","1214":"/drivers/snled27351#snled27351-driver","1215":"/drivers/snled27351#usage","1216":"/drivers/snled27351#basic-configuration","1217":"/drivers/snled27351#i2c-addressing","1218":"/drivers/snled27351#arm-configuration","1219":"/drivers/snled27351#led-mapping","1220":"/drivers/snled27351#api","1221":"/drivers/snled27351#api-snled27351-led-t","1222":"/drivers/snled27351#api-snled27351-led-t-members","1223":"/drivers/snled27351#api-snled27351-init","1224":"/drivers/snled27351#api-snled27351-init-arguments","1225":"/drivers/snled27351#api-snled27351-write-register","1226":"/drivers/snled27351#api-snled27351-write-register-arguments","1227":"/drivers/snled27351#api-snled27351-select-page","1228":"/drivers/snled27351#api-snled27351-select-page-arguments","1229":"/drivers/snled27351#api-snled27351-set-color","1230":"/drivers/snled27351#api-snled27351-set-color-arguments","1231":"/drivers/snled27351#api-snled27351-set-color-all","1232":"/drivers/snled27351#api-snled27351-set-color-all-arguments","1233":"/drivers/snled27351#api-snled27351-set-value","1234":"/drivers/snled27351#api-snled27351-set-value-arguments","1235":"/drivers/snled27351#api-snled27351-set-value-all","1236":"/drivers/snled27351#api-snled27351-set-value-all-arguments","1237":"/drivers/snled27351#api-snled27351-set-led-control-register-rgb","1238":"/drivers/snled27351#api-snled27351-set-led-control-register-rgb-arguments","1239":"/drivers/snled27351#api-snled27351-set-led-control-register-mono","1240":"/drivers/snled27351#api-snled27351-set-led-control-register-mono-arguments","1241":"/drivers/snled27351#api-snled27351-update-pwm-buffers","1242":"/drivers/snled27351#api-snled27351-update-pwm-buffers-arguments","1243":"/drivers/snled27351#api-snled27351-update-led-control-registers","1244":"/drivers/snled27351#api-snled27351-update-led-control-registers-arguments","1245":"/drivers/spi#spi-master-driver","1246":"/drivers/spi#usage","1247":"/drivers/spi#avr-configuration","1248":"/drivers/spi#arm-configuration","1249":"/drivers/spi#api","1250":"/drivers/spi#api-spi-init","1251":"/drivers/spi#api-spi-start","1252":"/drivers/spi#api-spi-start-arguments","1253":"/drivers/spi#api-spi-start-return","1254":"/drivers/spi#api-spi-write","1255":"/drivers/spi#api-spi-write-arguments","1256":"/drivers/spi#api-spi-write-return","1257":"/drivers/spi#api-spi-read","1258":"/drivers/spi#api-spi-read-return","1259":"/drivers/spi#api-spi-transmit","1260":"/drivers/spi#api-spi-transmit-arguments","1261":"/drivers/spi#api-spi-transmit-return","1262":"/drivers/spi#api-spi-receive","1263":"/drivers/spi#api-spi-receive-arguments","1264":"/drivers/spi#api-spi-receive-return","1265":"/drivers/spi#api-spi-stop","1266":"/drivers/uart#uart-driver","1267":"/drivers/uart#usage","1268":"/drivers/uart#avr-configuration","1269":"/drivers/uart#arm-configuration","1270":"/drivers/uart#api","1271":"/drivers/uart#api-uart-init","1272":"/drivers/uart#api-uart-init-arguments","1273":"/drivers/uart#api-uart-write","1274":"/drivers/uart#api-uart-write-arguments","1275":"/drivers/uart#api-uart-read","1276":"/drivers/uart#api-uart-read-return","1277":"/drivers/uart#api-uart-transmit","1278":"/drivers/uart#api-uart-transmit-arguments","1279":"/drivers/uart#api-uart-receive","1280":"/drivers/uart#api-uart-receive-arguments","1281":"/drivers/uart#api-uart-available","1282":"/drivers/uart#api-uart-available-return","1283":"/drivers/ws2812#ws2812-driver","1284":"/drivers/ws2812#usage","1285":"/drivers/ws2812#basic-configuration","1286":"/drivers/ws2812#timing-adjustment","1287":"/drivers/ws2812#byte-order","1288":"/drivers/ws2812#rgbw-support","1289":"/drivers/ws2812#driver-configuration","1290":"/drivers/ws2812#bitbang-driver","1291":"/drivers/ws2812#i2c-driver","1292":"/drivers/ws2812#pio-driver","1293":"/drivers/ws2812#pwm-driver","1294":"/drivers/ws2812#spi-driver","1295":"/drivers/ws2812#arm-configuration","1296":"/drivers/ws2812#logic-levels","1297":"/drivers/ws2812#open-drain-circuit","1298":"/drivers/ws2812#level-shifter","1299":"/drivers/ws2812#arm-spi-driver","1300":"/drivers/ws2812#arm-spi-baudrate","1301":"/drivers/ws2812#arm-spi-circular-buffer","1302":"/drivers/ws2812#arm-pio-driver","1303":"/drivers/ws2812#arm-pwm-driver","1304":"/drivers/ws2812#api","1305":"/drivers/ws2812#api-ws2812-init","1306":"/drivers/ws2812#api-ws2812-set-color","1307":"/drivers/ws2812#api-ws2812-set-color-arguments","1308":"/drivers/ws2812#api-ws2812-set-color-all","1309":"/drivers/ws2812#api-ws2812-set-color-all-arguments","1310":"/drivers/ws2812#api-ws2812-flush","1311":"/easy_maker#easy-maker-build-one-off-projects-in-configurator","1312":"/easy_maker#quickstart","1313":"/easy_maker#direct-pin","1314":"/faq_build#frequently-asked-build-questions","1315":"/faq_build#can-t-program-on-linux","1316":"/faq_build#linux-udev-rules","1317":"/faq_build#serial-device-is-not-detected-in-bootloader-mode-on-linux","1318":"/faq_build#unknown-device-for-dfu-bootloader","1319":"/faq_build#usb-vid-and-pid","1320":"/faq_build#i-just-flashed-my-keyboard-and-it-does-nothing-keypresses-don-t-register-it-s-also-arm-rev6-planck-clueboard-60-hs60v2-etc-feb-2019","1321":"/faq_debug#debugging-faq","1322":"/faq_debug#debugging","1323":"/faq_debug#debugging-tools","1324":"/faq_debug#debugging-with-qmk-toolbox","1325":"/faq_debug#debugging-with-qmk-cli","1326":"/faq_debug#debugging-with-hid-listen","1327":"/faq_debug#debug-api","1328":"/faq_debug#debug-examples","1329":"/faq_debug#which-matrix-position-is-this-keypress","1330":"/faq_debug#which-keycode-is-this-keypress","1331":"/faq_debug#how-long-did-it-take-to-scan-for-a-keypress","1332":"/faq_debug#hid-listen-can-t-recognize-device","1333":"/faq_debug#can-t-get-message-on-console","1334":"/faq_general#frequently-asked-questions","1335":"/faq_general#what-is-qmk","1336":"/faq_general#i-don-t-know-where-to-start","1337":"/faq_general#how-can-i-flash-the-firmware-i-built","1338":"/faq_general#what-if-i-have-an-issue-that-isn-t-covered-here","1339":"/faq_general#what-if-i-found-a-bug","1340":"/faq_general#but-git-and-github-are-intimidating","1341":"/faq_general#i-have-a-keyboard-that-i-want-to-add-support-for","1342":"/faq_general#what-if-i-want-to-brand-it-with-qmk","1343":"/faq_general#what-differences-are-there-between-qmk-and-tmk","1344":"/faq_keymap#keymap-faq","1345":"/faq_keymap#what-keycodes-can-i-use","1346":"/faq_keymap#what-are-the-default-keycodes","1347":"/faq_keymap#how-can-i-make-custom-names-for-complex-keycodes","1348":"/faq_keymap#my-keymap-doesn-t-update-when-i-flash-it","1349":"/faq_keymap#some-of-my-keys-are-swapped-or-not-working","1350":"/faq_keymap#the-menu-key-isn-t-working","1351":"/faq_keymap#power-keys-aren-t-working","1352":"/faq_keymap#one-shot-modifier","1353":"/faq_keymap#modifier-layer-stuck","1354":"/faq_keymap#mechanical-lock-switch-support","1355":"/faq_keymap#input-special-characters-other-than-ascii-like-cedille-c","1356":"/faq_keymap#fn-key-on-macos","1357":"/faq_keymap#keys-supported-in-mac-osx","1358":"/faq_keymap#jis-keys-in-mac-osx","1359":"/faq_keymap#rn-42-bluetooth-doesn-t-work-with-karabiner","1360":"/faq_keymap#esc-and-on-a-single-key","1361":"/faq_keymap#eject-on-mac-osx","1362":"/faq_keymap#what-are-real-and-weak-modifiers","1363":"/feature_advanced_keycodes#modifier-keys","1364":"/feature_advanced_keycodes#checking-modifier-state","1365":"/feature_advanced_keycodes#examples","1366":"/feature_advanced_keycodes#alt-escape-for-alt-tab","1367":"/feature_advanced_keycodes#shift-backspace-for-delete","1368":"/feature_advanced_keycodes#advanced-topics","1369":"/feature_advanced_keycodes#switching-and-toggling-layers","1370":"/feature_advanced_keycodes#mod-tap","1371":"/feature_advanced_keycodes#one-shot-keys","1372":"/feature_advanced_keycodes#tap-hold-configuration-options","1373":"/feature_advanced_keycodes#key-overrides","1374":"/faq_misc#miscellaneous-faq","1375":"/faq_misc#testing","1376":"/faq_misc#safety-considerations","1377":"/faq_misc#nkro-doesn-t-work","1378":"/faq_misc#trackpoint-needs-reset-circuit-ps-2-mouse-support","1379":"/faq_misc#can-t-read-column-of-matrix-beyond-16","1380":"/faq_misc#special-extra-key-doesn-t-work-system-audio-control-keys","1381":"/faq_misc#wake-from-sleep-doesn-t-work","1382":"/faq_misc#using-arduino","1383":"/faq_misc#enabling-jtag","1384":"/faq_misc#usb-3-compatibility","1385":"/faq_misc#mac-compatibility","1386":"/faq_misc#os-x-10-11-and-hub","1387":"/faq_misc#problem-in-bios-uefi-setup-resume-sleep-wake-power-cycles","1388":"/feature_converters#converters","1389":"/feature_converters#supported-converters","1390":"/feature_converters#configuration","1391":"/feature_converters#pro-micro-converters","1392":"/feature_converters#proton_c","1393":"/feature_converters#kb2040","1394":"/feature_converters#sparkfun_pm2040","1395":"/feature_converters#stemcell","1396":"/feature_converters#bonsai_c4","1397":"/feature_converters#rp2040_ce","1398":"/feature_converters#svlinky","1399":"/feature_converters#elite-c-converters","1400":"/feature_converters#stemcell_elite","1401":"/feature_converters#rp2040_ce_elite","1402":"/feature_converters#advanced-topics","1403":"/feature_converters#keyboard-configuration","1404":"/feature_converters#keyboard-req","1405":"/feature_converters#keymap-add","1406":"/feature_converters#conditional-configuration","1407":"/feature_converters#pin_compatible","1408":"/feature_converters#available-pin-compatibility","1409":"/feature_debounce_type#contact-bounce-contact-chatter","1410":"/feature_debounce_type#types-of-debounce-algorithms","1411":"/feature_debounce_type#supported-debounce-algorithms","1412":"/feature_debounce_type#debounce-time","1413":"/feature_debounce_type#debounce-method","1414":"/feature_debounce_type#implementing-your-own-debouncing-code","1415":"/feature_eeprom#persistent-configuration-eeprom","1416":"/feature_eeprom#basic","1417":"/feature_eeprom#example-implementation","1418":"/feature_eeprom#basic-api","1419":"/feature_eeprom#datablock","1420":"/feature_eeprom#example","1421":"/feature_layers#layers","1422":"/feature_layers#switching-and-toggling-layers","1423":"/feature_layers#caveats","1424":"/feature_layers#working-with-layers","1425":"/feature_layers#beginners","1426":"/feature_layers#intermediate-users","1427":"/feature_layers#advanced-users","1428":"/feature_layers#functions","1429":"/feature_layers#layer-change-code","1430":"/feature_layers#example-layer-state-set-implementation","1431":"/feature_layers#example-keycode-to-cycle-through-layers","1432":"/feature_layers#layer-state-set-function-documentation","1433":"/feature_layouts#layouts-using-a-keymap-with-multiple-keyboards","1434":"/feature_layouts#supporting-a-layout","1435":"/feature_layouts#building-a-keymap","1436":"/feature_layouts#conflicting-layouts","1437":"/feature_layouts#tips-for-making-layouts-keyboard-agnostic","1438":"/feature_layouts#includes","1439":"/feature_layouts#keymaps","1440":"/feature_macros#macros","1441":"/feature_macros#using-macros-in-json-keymaps","1442":"/feature_macros#selecting-your-host-keyboard-layout","1443":"/feature_macros#macro-basics","1444":"/feature_macros#object-format","1445":"/feature_macros#using-macros-in-c-keymaps","1446":"/feature_macros#send-string-process-record-user","1447":"/feature_macros#advanced-macros","1448":"/feature_macros#tap-down-and-up","1449":"/feature_macros#alternative-keymaps","1450":"/feature_macros#strings-in-memory","1451":"/feature_macros#advanced-macro-functions","1452":"/feature_macros#record-event-pressed","1453":"/feature_macros#register-code-kc","1454":"/feature_macros#unregister-code-kc","1455":"/feature_macros#tap-code-kc","1456":"/feature_macros#tap-code-delay-kc-delay","1457":"/feature_macros#register-code16-kc-unregister-code16-kc-tap-code16-kc-and-tap-code16-delay-kc-delay","1458":"/feature_macros#clear-keyboard","1459":"/feature_macros#clear-mods","1460":"/feature_macros#clear-keyboard-but-mods","1461":"/feature_macros#advanced-example","1462":"/feature_macros#super-alt↯tab","1463":"/feature_userspace#userspace-sharing-code-between-keymaps","1464":"/feature_userspace#rules-mk","1465":"/feature_userspace#override-default-userspace","1466":"/feature_userspace#configuration-options-config-h","1467":"/feature_userspace#readme-readme-md","1468":"/feature_userspace#build-all-keyboards-that-support-a-specific-keymap","1469":"/feature_userspace#examples","1470":"/feature_userspace#customized-functions","1471":"/feature_userspace#custom-features","1472":"/feature_userspace#consolidated-macros","1473":"/features/audio#audio","1474":"/features/audio#avr-based-boards","1475":"/features/audio#wiring","1476":"/features/audio#arm-based-boards","1477":"/features/audio#dac-basic","1478":"/features/audio#wiring-1","1479":"/features/audio#proton-c-example","1480":"/features/audio#dac-additive","1481":"/features/audio#pwm-software","1482":"/features/audio#wiring-2","1483":"/features/audio#pwm-hardware","1484":"/features/audio#tone-multiplexing","1485":"/features/audio#songs","1486":"/features/audio#audio-config","1487":"/features/audio#tempo","1488":"/features/audio#arm-audio-volume","1489":"/features/audio#voices","1490":"/features/audio#music-mode","1491":"/features/audio#music-mask","1492":"/features/audio#music-map","1493":"/features/audio#audio-click","1494":"/features/audio#midi-functionality","1495":"/features/audio#audio-keycodes","1496":"/features/auto_shift#auto-shift-why-do-we-need-a-shift-key","1497":"/features/auto_shift#why-auto-shift","1498":"/features/auto_shift#how-does-it-work","1499":"/features/auto_shift#are-there-limitations-to-auto-shift","1500":"/features/auto_shift#how-do-i-enable-auto-shift","1501":"/features/auto_shift#modifiers","1502":"/features/auto_shift#configuring-auto-shift","1503":"/features/auto_shift#auto-shift-timeout-value-in-ms","1504":"/features/auto_shift#no-auto-shift-special-simple-define","1505":"/features/auto_shift#no-auto-shift-tab-simple-define","1506":"/features/auto_shift#no-auto-shift-symbols-simple-define","1507":"/features/auto_shift#no-auto-shift-numeric-simple-define","1508":"/features/auto_shift#no-auto-shift-alpha-simple-define","1509":"/features/auto_shift#auto-shift-enter-simple-define","1510":"/features/auto_shift#auto-shift-per-key","1511":"/features/auto_shift#auto-shift-repeat-simple-define","1512":"/features/auto_shift#auto-shift-no-auto-repeat-simple-define","1513":"/features/auto_shift#auto-shift-alpha-predefined-key-group","1514":"/features/auto_shift#auto-shift-numeric-predefined-key-group","1515":"/features/auto_shift#auto-shift-symbols-predefined-key-group","1516":"/features/auto_shift#auto-shift-special-predefined-key-group","1517":"/features/auto_shift#custom-shifted-values","1518":"/features/auto_shift#retro-shift","1519":"/features/auto_shift#retro-shift-and-tap-hold-configurations","1520":"/features/auto_shift#using-auto-shift-setup","1521":"/features/auto_shift#setup","1522":"/features/auto_shift#use","1523":"/features/auto_shift#an-example-run","1524":"/features/autocorrect#autocorrect","1525":"/features/autocorrect#how-does-it-work","1526":"/features/autocorrect#how-do-i-enable-autocorrection","1527":"/features/autocorrect#customizing-autocorrect-library","1528":"/features/autocorrect#avoiding-false-triggers","1529":"/features/autocorrect#overriding-autocorrect","1530":"/features/autocorrect#keycodes","1531":"/features/autocorrect#user-callback-functions","1532":"/features/autocorrect#process-autocorrect","1533":"/features/autocorrect#process-autocorrect-example","1534":"/features/autocorrect#apply-autocorrect","1535":"/features/autocorrect#apply-autocorrect-example","1536":"/features/autocorrect#autocorrect-status","1537":"/features/autocorrect#appendix","1538":"/features/autocorrect#encoding","1539":"/features/autocorrect#decoding","1540":"/features/autocorrect#credits","1541":"/features/backlight#backlighting","1542":"/features/backlight#usage","1543":"/features/backlight#keycodes","1544":"/features/backlight#basic-configuration","1545":"/features/backlight#on-state","1546":"/features/backlight#multiple-backlight-pins","1547":"/features/backlight#driver-configuration","1548":"/features/backlight#pwm-driver","1549":"/features/backlight#timer-driver","1550":"/features/backlight#software-driver","1551":"/features/backlight#custom-driver","1552":"/features/backlight#avr-configuration","1553":"/features/backlight#avr-pwm-driver","1554":"/features/backlight#avr-timer-driver","1555":"/features/backlight#arm-configuration","1556":"/features/backlight#arm-pwm-driver","1557":"/features/backlight#arm-timer-driver","1558":"/features/backlight#example-schematic","1559":"/features/backlight#api","1560":"/features/backlight#api-backlight-toggle","1561":"/features/backlight#api-backlight-enable","1562":"/features/backlight#api-backlight-disable","1563":"/features/backlight#api-backlight-step","1564":"/features/backlight#api-backlight-increase","1565":"/features/backlight#api-backlight-decrease","1566":"/features/backlight#api-backlight-level","1567":"/features/backlight#api-backlight-level-arguments","1568":"/features/backlight#api-get-backlight-level","1569":"/features/backlight#api-get-backlight-level-return","1570":"/features/backlight#api-is-backlight-enabled","1571":"/features/backlight#api-is-backlight-enabled-return","1572":"/features/backlight#api-backlight-toggle-breathing","1573":"/features/backlight#api-backlight-enable-breathing","1574":"/features/backlight#api-backlight-disable-breathing","1575":"/features/backlight#api-is-backlight-breathing","1576":"/features/backlight#api-is-backlight-breathing-return","1577":"/features/battery#battery","1578":"/features/battery#usage","1579":"/features/battery#basic-configuration","1580":"/features/battery#driver-configuration","1581":"/features/battery#functions","1582":"/features/battery#api-battery-get-percent","1583":"/features/battery#api-battery-get-percent-return","1584":"/features/battery#callbacks","1585":"/features/battery#api-battery-percent-changed-user","1586":"/features/battery#api-battery-percent-changed-user-arguments","1587":"/features/battery#api-battery-percent-changed-kb","1588":"/features/battery#api-battery-percent-changed-kb-arguments","1589":"/features/bootmagic#bootmagic","1590":"/features/bootmagic#split-keyboards","1591":"/features/bootmagic#advanced-bootmagic","1592":"/features/bootmagic#addenda","1593":"/features/caps_word#caps-word","1594":"/features/caps_word#how-do-i-enable-caps-word","1595":"/features/caps_word#troubleshooting-command","1596":"/features/caps_word#customizing-caps-word","1597":"/features/caps_word#invert-on-shift","1598":"/features/caps_word#idle-timeout","1599":"/features/caps_word#functions","1600":"/features/caps_word#configure-which-keys-are-word-breaking","1601":"/features/caps_word#representing-caps-word-state","1602":"/features/combo#combos","1603":"/features/combo#advanced-keycodes-support","1604":"/features/combo#overlapping-combos","1605":"/features/combo#examples","1606":"/features/combo#keycodes","1607":"/features/combo#advanced-configuration","1608":"/features/combo#combo-term","1609":"/features/combo#buffer-and-state-sizes","1610":"/features/combo#modifier-combos","1611":"/features/combo#strict-key-press-order","1612":"/features/combo#per-combo-timing-holding-tapping-and-key-press-order","1613":"/features/combo#generic-hook-to-dis-allow-a-combo-activation","1614":"/features/combo#combo-timer","1615":"/features/combo#define-combo-strict-timer","1616":"/features/combo#define-combo-no-timer","1617":"/features/combo#customizable-key-releases","1618":"/features/combo#customizable-key-repress","1619":"/features/combo#layer-independent-combos","1620":"/features/combo#combo-reference-layers-by-layer","1621":"/features/combo#user-callbacks","1622":"/features/combo#dictionary-management","1623":"/features/command#command","1624":"/features/command#usage","1625":"/features/command#configuration","1626":"/features/community_modules#community-modules","1627":"/features/community_modules#adding-a-community-module-to-your-build","1628":"/features/community_modules#adding-a-community-module-to-your-external-userspace","1629":"/features/community_modules#writing-a-qmk-community-module","1630":"/features/community_modules#qmk-module-json","1631":"/features/community_modules#config-h","1632":"/features/community_modules#rules-mk-post-rules-mk","1633":"/features/community_modules#module-c","1634":"/features/community_modules#introspection-c-introspection-h","1635":"/features/community_modules#led-matrix-module-inc","1636":"/features/community_modules#rgb-matrix-module-inc","1637":"/features/community_modules#custom-split-keyboard-data-sync","1638":"/features/community_modules#compatible-apis","1639":"/features/dip_switch#dip-switches","1640":"/features/dip_switch#dip-switch-map","1641":"/features/dip_switch#callbacks","1642":"/features/dip_switch#hardware","1643":"/features/dip_switch#connects-each-switch-in-the-dip-switch-to-the-gpio-pin-of-the-mcu","1644":"/features/dip_switch#connect-each-switch-in-the-dip-switch-to-an-unused-intersections-in-the-key-matrix","1645":"/features/digitizer#digitizer","1646":"/features/digitizer#usage","1647":"/features/digitizer#positioning","1648":"/features/digitizer#examples","1649":"/features/digitizer#api","1650":"/features/digitizer#api-digitizer-t","1651":"/features/digitizer#api-digitizer-t-members","1652":"/features/digitizer#api-digitizer-flush","1653":"/features/digitizer#api-digitizer-in-range-on","1654":"/features/digitizer#api-digitizer-in-range-off","1655":"/features/digitizer#api-digitizer-tip-switch-on","1656":"/features/digitizer#api-digitizer-tip-switch-off","1657":"/features/digitizer#api-digitizer-barrel-switch-on","1658":"/features/digitizer#api-digitizer-barrel-switch-off","1659":"/features/digitizer#api-digitizer-set-position","1660":"/features/digitizer#api-digitizer-set-position-arguments","1661":"/features/dynamic_macros#dynamic-macros-record-and-replay-macros-in-runtime","1662":"/features/dynamic_macros#customization","1663":"/features/dynamic_macros#dynamic-macro-user-call","1664":"/features/dynamic_macros#user-hooks","1665":"/features/encoders#encoders","1666":"/features/encoders#split-keyboards","1667":"/features/encoders#encoder-map","1668":"/features/encoders#callbacks","1669":"/features/encoders#hardware","1670":"/features/encoders#multiple-encoders","1671":"/features/grave_esc#grave-escape","1672":"/features/grave_esc#usage","1673":"/features/grave_esc#what-your-os-sees","1674":"/features/grave_esc#keycodes","1675":"/features/grave_esc#caveats","1676":"/features/grave_esc#configuration","1677":"/features/haptic_feedback#haptic-feedback","1678":"/features/haptic_feedback#haptic-feedback-rules-mk-options","1679":"/features/haptic_feedback#known-supported-hardware","1680":"/features/haptic_feedback#haptic-keycodes","1681":"/features/haptic_feedback#solenoids","1682":"/features/haptic_feedback#drv2605l","1683":"/features/haptic_feedback#feedback-motor-setup","1684":"/features/haptic_feedback#erm","1685":"/features/haptic_feedback#lra","1686":"/features/haptic_feedback#drv2605l-waveform-library","1687":"/features/haptic_feedback#optional-drv2605l-defines","1688":"/features/haptic_feedback#drv2605l-continuous-haptic-mode","1689":"/features/haptic_feedback#haptic-key-exclusion","1690":"/features/haptic_feedback#no-haptic-mod","1691":"/features/haptic_feedback#no-haptic-alpha","1692":"/features/haptic_feedback#no-haptic-punctuation","1693":"/features/haptic_feedback#no-haptic-lockkeys","1694":"/features/haptic_feedback#no-haptic-nav","1695":"/features/haptic_feedback#no-haptic-numeric","1696":"/features/hd44780#hd44780-lcd-driver","1697":"/features/hd44780#supported-hardware","1698":"/features/hd44780#usage","1699":"/features/hd44780#basic-configuration","1700":"/features/hd44780#examples","1701":"/features/hd44780#example-hello-world","1702":"/features/hd44780#example-custom-character","1703":"/features/hd44780#api","1704":"/features/hd44780#api-hd44780-init","1705":"/features/hd44780#api-hd44780-init-arguments","1706":"/features/hd44780#api-hd44780-clear","1707":"/features/hd44780#api-hd44780-home","1708":"/features/hd44780#api-hd44780-on","1709":"/features/hd44780#api-hd44780-on-arguments","1710":"/features/hd44780#api-hd44780-off","1711":"/features/hd44780#api-hd44780-set-cursor","1712":"/features/hd44780#api-hd44780-set-cursor-arguments","1713":"/features/hd44780#api-hd44780-putc","1714":"/features/hd44780#api-hd44780-putc-arguments","1715":"/features/hd44780#api-hd44780-puts","1716":"/features/hd44780#api-hd44780-puts-arguments","1717":"/features/hd44780#api-hd44780-puts-p","1718":"/features/hd44780#api-hd44780-puts-p-arguments","1719":"/features/hd44780#api-hd44780-define-char","1720":"/features/hd44780#api-hd44780-define-char-arguments","1721":"/features/hd44780#api-hd44780-define-char-p","1722":"/features/hd44780#api-hd44780-define-char-p-arguments","1723":"/features/hd44780#api-hd44780-busy","1724":"/features/hd44780#api-hd44780-busy-arguments","1725":"/features/hd44780#api-hd44780-write","1726":"/features/hd44780#api-hd44780-write-arguments","1727":"/features/hd44780#api-hd44780-read","1728":"/features/hd44780#api-hd44780-read-arguments","1729":"/features/hd44780#api-hd44780-read-return","1730":"/features/hd44780#api-hd44780-command","1731":"/features/hd44780#api-hd44780-command-arguments","1732":"/features/hd44780#api-hd44780-data","1733":"/features/hd44780#api-hd44780-data-arguments","1734":"/features/hd44780#api-hd44780-set-cgram-address","1735":"/features/hd44780#api-hd44780-set-cgram-address-arguments","1736":"/features/hd44780#api-hd44780-set-ddram-address","1737":"/features/hd44780#api-hd44780-set-ddram-address-arguments","1738":"/features/joystick#joystick","1739":"/features/joystick#usage","1740":"/features/joystick#configuration","1741":"/features/joystick#hat-switch","1742":"/features/joystick#axes","1743":"/features/joystick#virtual-axes","1744":"/features/joystick#keycodes","1745":"/features/joystick#api","1746":"/features/joystick#api-joystick-t","1747":"/features/joystick#api-joystick-t-members","1748":"/features/joystick#api-joystick-config-t","1749":"/features/joystick#api-joystick-config-t-members","1750":"/features/joystick#api-joystick-flush","1751":"/features/joystick#api-register-joystick-button","1752":"/features/joystick#api-register-joystick-button-arguments","1753":"/features/joystick#api-unregister-joystick-button","1754":"/features/joystick#api-unregister-joystick-button-arguments","1755":"/features/joystick#api-joystick-read-axis","1756":"/features/joystick#api-joystick-read-axis-arguments","1757":"/features/joystick#api-joystick-read-axis-return","1758":"/features/joystick#api-joystick-set-axis","1759":"/features/joystick#api-joystick-set-axis-arguments","1760":"/features/joystick#api-joystick-set-hat","1761":"/features/joystick#api-joystick-set-hat-arguments","1762":"/features/key_lock#key-lock","1763":"/features/key_lock#usage","1764":"/features/key_lock#keycodes","1765":"/features/key_lock#caveats","1766":"/features/key_overrides#key-overrides","1767":"/features/key_overrides#a-few-more-examples-to-get-started-you-could-use-key-overrides-to","1768":"/features/key_overrides#setup","1769":"/features/key_overrides#creating-key-overrides","1770":"/features/key_overrides#ko-make-basic-modifiers-key-replacement","1771":"/features/key_overrides#ko-make-with-layers-modifiers-key-replacement-layers","1772":"/features/key_overrides#ko-make-with-layers-and-negmods-modifiers-key-replacement-layers-negative-mods","1773":"/features/key_overrides#ko-make-with-layers-negmods-and-options-modifiers-key-replacement-layers-negative-mods-options","1774":"/features/key_overrides#simple-example","1775":"/features/key_overrides#intermediate-difficulty-examples","1776":"/features/key_overrides#media-controls-amp-screen-brightness","1777":"/features/key_overrides#flexible-macos-friendly-grave-escape","1778":"/features/key_overrides#advanced-examples","1779":"/features/key_overrides#modifiers-as-layer-keys","1780":"/features/key_overrides#keycodes","1781":"/features/key_overrides#reference-for-key_override_t","1782":"/features/key_overrides#reference-for-ko_option_t","1783":"/features/key_overrides#for-advanced-users-inner-workings","1784":"/features/key_overrides#activation","1785":"/features/key_overrides#deactivation","1786":"/features/key_overrides#key-repeat-delay","1787":"/features/key_overrides#difference-to-combos","1788":"/features/key_overrides#neutralize-flashing-modifiers","1789":"/features/layer_lock#layer-lock","1790":"/features/layer_lock#how-do-i-enable-layer-lock","1791":"/features/layer_lock#example-use","1792":"/features/layer_lock#idle-timeout","1793":"/features/layer_lock#functions","1794":"/features/layer_lock#representing-the-current-layer-lock-state","1795":"/features/layer_lock#combine-layer-lock-with-a-mod-tap","1796":"/features/leader_key#the-leader-key","1797":"/features/leader_key#usage","1798":"/features/leader_key#callbacks","1799":"/features/leader_key#basic-configuration","1800":"/features/leader_key#timeout","1801":"/features/leader_key#per-key-timeout","1802":"/features/leader_key#disabling-initial-timeout","1803":"/features/leader_key#strict-key-processing","1804":"/features/leader_key#example","1805":"/features/leader_key#keycodes","1806":"/features/leader_key#api","1807":"/features/leader_key#api-leader-start-user","1808":"/features/leader_key#api-leader-end-user","1809":"/features/leader_key#api-leader-add-user","1810":"/features/leader_key#api-leader-add-user-arguments","1811":"/features/leader_key#api-leader-add-user-return","1812":"/features/leader_key#api-leader-start","1813":"/features/leader_key#api-leader-end","1814":"/features/leader_key#api-leader-sequence-active","1815":"/features/leader_key#api-leader-sequence-add","1816":"/features/leader_key#api-leader-sequence-add-arguments","1817":"/features/leader_key#api-leader-sequence-add-return","1818":"/features/leader_key#api-leader-sequence-timed-out","1819":"/features/leader_key#api-leader-reset-timer","1820":"/features/leader_key#api-leader-sequence-one-key","1821":"/features/leader_key#api-leader-sequence-one-key-arguments","1822":"/features/leader_key#api-leader-sequence-one-key-return","1823":"/features/leader_key#api-leader-sequence-two-keys","1824":"/features/leader_key#api-leader-sequence-two-keys-arguments","1825":"/features/leader_key#api-leader-sequence-two-keys-return","1826":"/features/leader_key#api-leader-sequence-three-keys","1827":"/features/leader_key#api-leader-sequence-three-keys-arguments","1828":"/features/leader_key#api-leader-sequence-three-keys-return","1829":"/features/leader_key#api-leader-sequence-four-keys","1830":"/features/leader_key#api-leader-sequence-four-keys-arguments","1831":"/features/leader_key#api-leader-sequence-four-keys-return","1832":"/features/leader_key#api-leader-sequence-five-keys","1833":"/features/leader_key#api-leader-sequence-five-keys-arguments","1834":"/features/leader_key#api-leader-sequence-five-keys-return","1835":"/features/led_indicators#led-indicators","1836":"/features/led_indicators#configuration-options","1837":"/features/led_indicators#led-update-function","1838":"/features/led_indicators#example-of-keyboard-led-update-implementation","1839":"/features/led_indicators#example-of-user-led-update-implementation","1840":"/features/led_indicators#host-keyboard-led-state","1841":"/features/led_indicators#led-update-ports","1842":"/features/led_indicators#setting-physical-led-state","1843":"/features/led_indicators#ergodox-boards","1844":"/features/led_matrix#led-matrix-lighting","1845":"/features/led_matrix#driver-configuration","1846":"/features/led_matrix#common-configuration","1847":"/features/led_matrix#flags","1848":"/features/led_matrix#keycodes","1849":"/features/led_matrix#led-matrix-effects","1850":"/features/led_matrix#custom-led-matrix-effects","1851":"/features/led_matrix#naming","1852":"/features/led_matrix#additional-configh-options","1853":"/features/led_matrix#eeprom-storage","1854":"/features/led_matrix#callbacks","1855":"/features/led_matrix#indicators","1856":"/features/led_matrix#api","1857":"/features/led_matrix#api-led-matrix-toggle","1858":"/features/led_matrix#api-led-matrix-toggle-noeeprom","1859":"/features/led_matrix#api-led-matrix-enable","1860":"/features/led_matrix#api-led-matrix-enable-noeeprom","1861":"/features/led_matrix#api-led-matrix-disable","1862":"/features/led_matrix#api-led-matrix-disable-noeeprom","1863":"/features/led_matrix#api-led-matrix-is-enabled","1864":"/features/led_matrix#api-led-matrix-is-enabled-return","1865":"/features/led_matrix#led-matrix-set-value","1866":"/features/led_matrix#api-led-matrix-set-value-arguments","1867":"/features/led_matrix#api-led-matrix-set-value-all","1868":"/features/led_matrix#api-led-matrix-set-value-all-arguments","1869":"/features/led_matrix#api-led-matrix-mode","1870":"/features/led_matrix#api-led-matrix-mode-arguments","1871":"/features/led_matrix#api-led-matrix-mode-noeeprom","1872":"/features/led_matrix#api-led-matrix-mode-noeeprom-arguments","1873":"/features/led_matrix#api-led-matrix-step","1874":"/features/led_matrix#api-led-matrix-step-noeeprom","1875":"/features/led_matrix#api-led-matrix-step-reverse","1876":"/features/led_matrix#api-led-matrix-step-reverse-noeeprom","1877":"/features/led_matrix#api-led-matrix-get-mode","1878":"/features/led_matrix#api-led-matrix-get-mode-return","1879":"/features/led_matrix#api-led-matrix-increase-val","1880":"/features/led_matrix#api-led-matrix-increase-val-noeeprom","1881":"/features/led_matrix#api-led-matrix-decrease-val","1882":"/features/led_matrix#api-led-matrix-decrease-val-noeeprom","1883":"/features/led_matrix#api-led-matrix-get-val","1884":"/features/led_matrix#api-led-matrix-get-val-return","1885":"/features/led_matrix#api-led-matrix-increase-speed","1886":"/features/led_matrix#api-led-matrix-increase-speed-noeeprom","1887":"/features/led_matrix#api-led-matrix-decrease-speed","1888":"/features/led_matrix#api-led-matrix-decrease-speed-noeeprom","1889":"/features/led_matrix#api-led-matrix-set-speed","1890":"/features/led_matrix#api-led-matrix-set-speed-arguments","1891":"/features/led_matrix#api-led-matrix-set-speed-noeeprom","1892":"/features/led_matrix#api-led-matrix-set-speed-noeeprom-arguments","1893":"/features/led_matrix#api-led-matrix-get-speed","1894":"/features/led_matrix#api-led-matrix-get-speed-return","1895":"/features/led_matrix#api-led-matrix-set-flags","1896":"/features/led_matrix#api-led-matrix-set-flags-arguments","1897":"/features/led_matrix#api-led-matrix-set-flags-noeeprom","1898":"/features/led_matrix#api-led-matrix-set-flags-noeeprom-arguments","1899":"/features/led_matrix#api-led-matrix-flags-step","1900":"/features/led_matrix#api-led-matrix-flags-step-noeeprom","1901":"/features/led_matrix#api-led-matrix-flags-step-reverse","1902":"/features/led_matrix#api-led-matrix-flags-step-reverse-noeeprom","1903":"/features/led_matrix#api-led-matrix-get-flags","1904":"/features/led_matrix#api-led-matrix-get-flags-return","1905":"/features/led_matrix#api-led-matrix-reload-from-eeprom","1906":"/features/led_matrix#api-led-matrix-get-suspend-state","1907":"/features/led_matrix#api-led-matrix-get-suspend-state-return","1908":"/features/led_matrix#api-led-matrix-indicators-kb","1909":"/features/led_matrix#api-led-matrix-indicators-kb-return","1910":"/features/led_matrix#api-led-matrix-indicators-user","1911":"/features/led_matrix#api-led-matrix-indicators-user-return","1912":"/features/led_matrix#api-led-matrix-indicators-advanced-kb","1913":"/features/led_matrix#api-led-matrix-indicators-advanced-kb-arguments","1914":"/features/led_matrix#api-led-matrix-indicators-advanced-kb-return","1915":"/features/led_matrix#api-led-matrix-indicators-advanced-user","1916":"/features/led_matrix#api-led-matrix-indicators-advanced-user-arguments","1917":"/features/led_matrix#api-led-matrix-indicators-advanced-user-return","1918":"/features/midi#midi","1919":"/features/midi#usage","1920":"/features/midi#caveats","1921":"/features/midi#basic-midi","1922":"/features/midi#advanced-midi","1923":"/features/midi#sending-control-change-cc-messages","1924":"/features/midi#example-code-for-using-generic-on-off-switches-as-per-midi-specification","1925":"/features/midi#keycodes","1926":"/features/midi#configuration","1927":"/features/midi#references","1928":"/features/midi#midi-specification","1929":"/features/midi#qmk-c-files","1930":"/features/mouse_keys#mouse-keys","1931":"/features/mouse_keys#adding-mouse-keys-to-your-keyboard","1932":"/features/mouse_keys#enabling-mouse-keys","1933":"/features/mouse_keys#mapping-mouse-actions","1934":"/features/mouse_keys#configuring-mouse-keys","1935":"/features/mouse_keys#accelerated-mode","1936":"/features/mouse_keys#kinetic-mode","1937":"/features/mouse_keys#constant-mode","1938":"/features/mouse_keys#combined-mode","1939":"/features/mouse_keys#inertia-mode","1940":"/features/mouse_keys#overlapping-mouse-key-control","1941":"/features/mouse_keys#use-with-ps-2-mouse-and-pointing-device","1942":"/features/oled_driver#oled-driver","1943":"/features/oled_driver#supported-hardware","1944":"/features/oled_driver#usage","1945":"/features/oled_driver#oled-type","1946":"/features/oled_driver#logo-example","1947":"/features/oled_driver#buffer-read-example","1948":"/features/oled_driver#other-examples","1949":"/features/oled_driver#basic-configuration","1950":"/features/oled_driver#i2c-configuration","1951":"/features/oled_driver#spi-configuration","1952":"/features/oled_driver#_128x64-custom-sized-oled-displays","1953":"/features/oled_driver#_90-degree-rotation-technical-mumbo-jumbo","1954":"/features/oled_driver#oled-api","1955":"/features/oled_driver#ssd1306-h-driver-conversion-guide","1956":"/features/os_detection#os-detection","1957":"/features/os_detection#usage","1958":"/features/os_detection#callbacks","1959":"/features/os_detection#os-detection-stability","1960":"/features/os_detection#configuration-options","1961":"/features/os_detection#troubleshooting","1962":"/features/os_detection#debug","1963":"/features/os_detection#credits","1964":"/features/pointing_device#pointing-device","1965":"/features/pointing_device#sensor-drivers","1966":"/features/pointing_device#adns-5050-sensor","1967":"/features/pointing_device#adns-9800-sensor","1968":"/features/pointing_device#analog-joystick","1969":"/features/pointing_device#azoteq-iqs5xx-trackpad","1970":"/features/pointing_device#device-settings","1971":"/features/pointing_device#gesture-settings","1972":"/features/pointing_device#rotation-settings","1973":"/features/pointing_device#cirque-trackpad","1974":"/features/pointing_device#common-settings","1975":"/features/pointing_device#absolute-mode-settings","1976":"/features/pointing_device#absolute-mode-gestures","1977":"/features/pointing_device#relative-mode-gestures","1978":"/features/pointing_device#paw-3204-sensor","1979":"/features/pointing_device#paw-3222-sensor","1980":"/features/pointing_device#pimoroni-trackball","1981":"/features/pointing_device#pmw3320-sensor","1982":"/features/pointing_device#pmw-3325-sensor","1983":"/features/pointing_device#pmw-3360-and-pmw-3389-sensor","1984":"/features/pointing_device#custom-driver","1985":"/features/pointing_device#common-configuration","1986":"/features/pointing_device#high-resolution-scrolling","1987":"/features/pointing_device#split-keyboard-configuration","1988":"/features/pointing_device#callbacks-and-functions","1989":"/features/pointing_device#split-keyboard-callbacks-and-functions","1990":"/features/pointing_device#manipulating-mouse-reports","1991":"/features/pointing_device#examples","1992":"/features/pointing_device#custom-mouse-keycode","1993":"/features/pointing_device#drag-scroll-or-mouse-scroll","1994":"/features/pointing_device#advanced-drag-scroll","1995":"/features/pointing_device#split-examples","1996":"/features/pointing_device#single-pointing-device","1997":"/features/pointing_device#combined-pointing-devices","1998":"/features/pointing_device#troubleshooting","1999":"/features/pointing_device#pointing-device-auto-mouse","2000":"/features/pointing_device#behaviour-of-layer-keys-that-activate-the-target-layer","2001":"/features/pointing_device#how-to-enable","2002":"/features/pointing_device#how-to-customize","2003":"/features/pointing_device#config-h-options","2004":"/features/pointing_device#adding-mouse-keys","2005":"/features/pointing_device#callbacks-for-setting-up-additional-key-codes-as-mouse-keys","2006":"/features/pointing_device#to-use-the-callback-function-to-add-mouse-keys","2007":"/features/pointing_device#advanced-control","2008":"/features/pointing_device#functions-to-control-auto-mouse-enable-and-target-layer","2009":"/features/pointing_device#functions-for-handling-custom-key-events","2010":"/features/pointing_device#advanced-control-examples","2011":"/features/pointing_device#disable-auto-mouse-on-certain-layers","2012":"/features/pointing_device#set-different-target-layer-when-a-particular-layer-is-active","2013":"/features/pointing_device#use-custom-keys-to-control-auto-mouse","2014":"/features/pointing_device#customize-target-layer-activation","2015":"/features/pointing_device#auto-mouse-for-custom-pointing-device-task","2016":"/features/programmable_button#programmable-button","2017":"/features/programmable_button#usage","2018":"/features/programmable_button#keycodes","2019":"/features/programmable_button#api","2020":"/features/programmable_button#api-programmable-button-clear","2021":"/features/programmable_button#api-programmable-button-add","2022":"/features/programmable_button#api-programmable-button-add-arguments","2023":"/features/programmable_button#api-programmable-button-remove","2024":"/features/programmable_button#api-programmable-button-remove-arguments","2025":"/features/programmable_button#api-programmable-button-register","2026":"/features/programmable_button#api-programmable-button-register-arguments","2027":"/features/programmable_button#api-programmable-button-unregister","2028":"/features/programmable_button#api-programmable-button-unregister-arguments","2029":"/features/programmable_button#api-programmable-button-is-on","2030":"/features/programmable_button#api-programmable-button-is-on-arguments","2031":"/features/programmable_button#api-programmable-button-is-on-return","2032":"/features/programmable_button#api-programmable-button-flush","2033":"/features/programmable_button#api-programmable-button-get-report","2034":"/features/programmable_button#api-programmable-button-get-report-return","2035":"/features/programmable_button#api-programmable-button-set-report","2036":"/features/programmable_button#api-programmable-button-set-report-arguments","2037":"/features/ps2_mouse#ps2-mouse-support","2038":"/features/ps2_mouse#the-circuitry-between-trackpoint-and-controller","2039":"/features/ps2_mouse#driver-configuration","2040":"/features/ps2_mouse#busywait-driver","2041":"/features/ps2_mouse#interrupt-driver-avr","2042":"/features/ps2_mouse#interrupt-driver-chibios","2043":"/features/ps2_mouse#usart-driver","2044":"/features/ps2_mouse#rp2040-pio-driver","2045":"/features/ps2_mouse#additional-settings","2046":"/features/ps2_mouse#ps2-mouse-features","2047":"/features/ps2_mouse#fine-control","2048":"/features/ps2_mouse#scroll-button","2049":"/features/ps2_mouse#invert-buttons","2050":"/features/ps2_mouse#invert-mouse-and-scroll-axes","2051":"/features/ps2_mouse#rotate-mouse-axes","2052":"/features/ps2_mouse#debug-settings","2053":"/features/ps2_mouse#movement-hook","2054":"/features/rawhid#raw-hid","2055":"/features/rawhid#usage","2056":"/features/rawhid#basic-configuration","2057":"/features/rawhid#sending-data-to-the-keyboard","2058":"/features/rawhid#receiving-data-from-the-keyboard","2059":"/features/rawhid#simple-example","2060":"/features/rawhid#api","2061":"/features/rawhid#api-raw-hid-receive","2062":"/features/rawhid#api-raw-hid-receive-arguments","2063":"/features/rawhid#api-raw-hid-send","2064":"/features/rawhid#api-raw-hid-send-arguments","2065":"/features/repeat_key#repeat-key","2066":"/features/repeat_key#how-do-i-enable-repeat-key","2067":"/features/repeat_key#keycodes","2068":"/features/repeat_key#alternate-repeating","2069":"/features/repeat_key#defining-alternate-keys","2070":"/features/repeat_key#eliminating-sfbs","2071":"/features/repeat_key#typing-shortcuts","2072":"/features/repeat_key#ignoring-certain-keys-and-mods","2073":"/features/repeat_key#ignoring-a-key","2074":"/features/repeat_key#filtering-remembered-mods","2075":"/features/repeat_key#further-conditions","2076":"/features/repeat_key#handle-how-a-key-is-repeated","2077":"/features/repeat_key#handle-how-a-key-is-alternate-repeated","2078":"/features/repeat_key#functions","2079":"/features/repeat_key#additional-alternate-keys","2080":"/features/rgb_matrix#rgb-matrix-lighting","2081":"/features/rgb_matrix#driver-configuration","2082":"/features/rgb_matrix#common-configuration","2083":"/features/rgb_matrix#flags","2084":"/features/rgb_matrix#keycodes","2085":"/features/rgb_matrix#rgb-matrix-effects","2086":"/features/rgb_matrix#rgb-matrix-effect-typing-heatmap","2087":"/features/rgb_matrix#rgb-matrix-effect-solid-reactive","2088":"/features/rgb_matrix#custom-rgb-matrix-effects","2089":"/features/rgb_matrix#colors","2090":"/features/rgb_matrix#naming","2091":"/features/rgb_matrix#additional-configh-options","2092":"/features/rgb_matrix#eeprom-storage","2093":"/features/rgb_matrix#callbacks","2094":"/features/rgb_matrix#indicators","2095":"/features/rgb_matrix#indicator-examples","2096":"/features/rgb_matrix#indicator-examples-2","2097":"/features/rgb_matrix#indicators-without-rgb-matrix-effect","2098":"/features/rgb_matrix#api","2099":"/features/rgb_matrix#api-rgb-matrix-toggle","2100":"/features/rgb_matrix#api-rgb-matrix-toggle-noeeprom","2101":"/features/rgb_matrix#api-rgb-matrix-enable","2102":"/features/rgb_matrix#api-rgb-matrix-enable-noeeprom","2103":"/features/rgb_matrix#api-rgb-matrix-disable","2104":"/features/rgb_matrix#api-rgb-matrix-disable-noeeprom","2105":"/features/rgb_matrix#api-rgb-matrix-is-enabled","2106":"/features/rgb_matrix#api-rgb-matrix-is-enabled-return","2107":"/features/rgb_matrix#api-rgb-matrix-set-color","2108":"/features/rgb_matrix#api-rgb-matrix-set-color-arguments","2109":"/features/rgb_matrix#api-rgb-matrix-set-color-all","2110":"/features/rgb_matrix#api-rgb-matrix-set-color-all-arguments","2111":"/features/rgb_matrix#api-rgb-matrix-mode","2112":"/features/rgb_matrix#api-rgb-matrix-mode-arguments","2113":"/features/rgb_matrix#api-rgb-matrix-mode-noeeprom","2114":"/features/rgb_matrix#api-rgb-matrix-mode-noeeprom-arguments","2115":"/features/rgb_matrix#api-rgb-matrix-step","2116":"/features/rgb_matrix#api-rgb-matrix-step-noeeprom","2117":"/features/rgb_matrix#api-rgb-matrix-step-reverse","2118":"/features/rgb_matrix#api-rgb-matrix-step-reverse-noeeprom","2119":"/features/rgb_matrix#api-rgb-matrix-get-mode","2120":"/features/rgb_matrix#api-rgb-matrix-get-mode-return","2121":"/features/rgb_matrix#api-rgb-matrix-increase-hue","2122":"/features/rgb_matrix#api-rgb-matrix-increase-hue-noeeprom","2123":"/features/rgb_matrix#api-rgb-matrix-decrease-hue","2124":"/features/rgb_matrix#api-rgb-matrix-decrease-hue-noeeprom","2125":"/features/rgb_matrix#api-rgb-matrix-get-hue","2126":"/features/rgb_matrix#api-rgb-matrix-get-hue-return","2127":"/features/rgb_matrix#api-rgb-matrix-increase-sat","2128":"/features/rgb_matrix#api-rgb-matrix-increase-sat-noeeprom","2129":"/features/rgb_matrix#api-rgb-matrix-decrease-sat","2130":"/features/rgb_matrix#api-rgb-matrix-decrease-sat-noeeprom","2131":"/features/rgb_matrix#api-rgb-matrix-get-sat","2132":"/features/rgb_matrix#api-rgb-matrix-get-sat-return","2133":"/features/rgb_matrix#api-rgb-matrix-increase-val","2134":"/features/rgb_matrix#api-rgb-matrix-increase-val-noeeprom","2135":"/features/rgb_matrix#api-rgb-matrix-decrease-val","2136":"/features/rgb_matrix#api-rgb-matrix-decrease-val-noeeprom","2137":"/features/rgb_matrix#api-rgb-matrix-get-val","2138":"/features/rgb_matrix#api-rgb-matrix-get-val-return","2139":"/features/rgb_matrix#api-rgb-matrix-increase-speed","2140":"/features/rgb_matrix#api-rgb-matrix-increase-speed-noeeprom","2141":"/features/rgb_matrix#api-rgb-matrix-decrease-speed","2142":"/features/rgb_matrix#api-rgb-matrix-decrease-speed-noeeprom","2143":"/features/rgb_matrix#api-rgb-matrix-set-speed","2144":"/features/rgb_matrix#api-rgb-matrix-set-speed-arguments","2145":"/features/rgb_matrix#api-rgb-matrix-set-speed-noeeprom","2146":"/features/rgb_matrix#api-rgb-matrix-set-speed-noeeprom-arguments","2147":"/features/rgb_matrix#api-rgb-matrix-get-speed","2148":"/features/rgb_matrix#api-rgb-matrix-get-speed-return","2149":"/features/rgb_matrix#api-rgb-matrix-set-flags","2150":"/features/rgb_matrix#api-rgb-matrix-set-flags-arguments","2151":"/features/rgb_matrix#api-rgb-matrix-set-flags-noeeprom","2152":"/features/rgb_matrix#api-rgb-matrix-set-flags-noeeprom-arguments","2153":"/features/rgb_matrix#api-rgb-matrix-flags-step","2154":"/features/rgb_matrix#api-rgb-matrix-flags-step-noeeprom","2155":"/features/rgb_matrix#api-rgb-matrix-flags-step-reverse","2156":"/features/rgb_matrix#api-rgb-matrix-flags-step-reverse-noeeprom","2157":"/features/rgb_matrix#api-rgb-matrix-get-flags","2158":"/features/rgb_matrix#api-rgb-matrix-get-flags-return","2159":"/features/rgb_matrix#api-rgb-matrix-sethsv","2160":"/features/rgb_matrix#api-rgb-matrix-sethsv-arguments","2161":"/features/rgb_matrix#api-rgb-matrix-sethsv-noeeprom","2162":"/features/rgb_matrix#api-rgb-matrix-sethsv-noeeprom-arguments","2163":"/features/rgb_matrix#api-rgb-matrix-get-hsv","2164":"/features/rgb_matrix#api-rgb-matrix-get-hsv-return","2165":"/features/rgb_matrix#api-rgb-matrix-reload-from-eeprom","2166":"/features/rgb_matrix#api-rgb-matrix-get-suspend-state","2167":"/features/rgb_matrix#api-rgb-matrix-get-suspend-state-return","2168":"/features/rgb_matrix#api-rgb-matrix-indicators-kb","2169":"/features/rgb_matrix#api-rgb-matrix-indicators-kb-return","2170":"/features/rgb_matrix#api-rgb-matrix-indicators-user","2171":"/features/rgb_matrix#api-rgb-matrix-indicators-user-return","2172":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-kb","2173":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-kb-arguments","2174":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-kb-return","2175":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-user","2176":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-user-arguments","2177":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-user-return","2178":"/features/rgblight#rgb-lighting","2179":"/features/rgblight#usage","2180":"/features/rgblight#color-selection","2181":"/features/rgblight#keycodes","2182":"/features/rgblight#configuration","2183":"/features/rgblight#effects-and-animations","2184":"/features/rgblight#effect-and-animation-toggles","2185":"/features/rgblight#effect-and-animation-settings","2186":"/features/rgblight#example-usage-to-reduce-memory-footprint","2187":"/features/rgblight#animation-speed","2188":"/features/rgblight#lighting-layers","2189":"/features/rgblight#defining-lighting-layers","2190":"/features/rgblight#enabling-lighting-layers","2191":"/features/rgblight#lighting-layer-blink","2192":"/features/rgblight#overriding-rgb-lighting-on-off-status","2193":"/features/rgblight#retain-brightness","2194":"/features/rgblight#functions","2195":"/features/rgblight#low-level-functions","2196":"/features/rgblight#effects-and-animations-functions","2197":"/features/rgblight#effect-range-setting","2198":"/features/rgblight#direct-operation","2199":"/features/rgblight#effect-mode-change","2200":"/features/rgblight#effects-mode-disable-enable","2201":"/features/rgblight#hue-sat-val-change","2202":"/features/rgblight#speed-functions","2203":"/features/rgblight#layer-functions","2204":"/features/rgblight#query","2205":"/features/rgblight#colors","2206":"/features/rgblight#changing-the-order-of-the-leds","2207":"/features/rgblight#clipping-range","2208":"/features/rgblight#hardware-modification","2209":"/features/rgblight#velocikey","2210":"/features/rgblight#usage-1","2211":"/features/rgblight#configuration-1","2212":"/features/secure#secure","2213":"/features/secure#unlock-sequence","2214":"/features/secure#automatic-locking","2215":"/features/secure#usage","2216":"/features/secure#keycodes","2217":"/features/secure#configuration","2218":"/features/secure#functions","2219":"/features/send_string#send-string","2220":"/features/send_string#usage","2221":"/features/send_string#basic-configuration","2222":"/features/send_string#keycodes","2223":"/features/send_string#language-support","2224":"/features/send_string#examples","2225":"/features/send_string#example-hello-world","2226":"/features/send_string#example-keycode-injection","2227":"/features/send_string#api","2228":"/features/send_string#api-send-string","2229":"/features/send_string#api-send-string-arguments","2230":"/features/send_string#api-send-string-with-delay","2231":"/features/send_string#api-send-string-with-delay-arguments","2232":"/features/send_string#api-send-string-p","2233":"/features/send_string#api-send-string-p-arguments","2234":"/features/send_string#api-send-string-with-delay-p","2235":"/features/send_string#api-send-string-with-delay-p-arguments","2236":"/features/send_string#api-send-char","2237":"/features/send_string#api-send-char-arguments","2238":"/features/send_string#api-send-dword","2239":"/features/send_string#api-send-dword-arguments","2240":"/features/send_string#api-send-word","2241":"/features/send_string#api-send-word-arguments","2242":"/features/send_string#api-send-bytes","2243":"/features/send_string#api-send-byte-arguments","2244":"/features/send_string#api-send-nibble","2245":"/features/send_string#api-send-nibble-arguments","2246":"/features/send_string#api-tap-random-base64","2247":"/features/send_string#api-send-string-macro","2248":"/features/send_string#api-send-string-delay-macro","2249":"/features/sequencer#sequencer","2250":"/features/sequencer#enable-the-step-sequencer","2251":"/features/sequencer#tracks","2252":"/features/sequencer#resolutions","2253":"/features/sequencer#keycodes","2254":"/features/sequencer#functions","2255":"/features/space_cadet#space-cadet-the-future-built-in","2256":"/features/space_cadet#usage","2257":"/features/space_cadet#keycodes","2258":"/features/space_cadet#caveats","2259":"/features/space_cadet#configuration","2260":"/features/space_cadet#obsolete-configuration","2261":"/features/split_keyboard#split-keyboard","2262":"/features/split_keyboard#compatibility-overview","2263":"/features/split_keyboard#hardware-configuration","2264":"/features/split_keyboard#required-hardware","2265":"/features/split_keyboard#considerations","2266":"/features/split_keyboard#serial-wiring","2267":"/features/split_keyboard#i2c-wiring","2268":"/features/split_keyboard#firmware-configuration","2269":"/features/split_keyboard#layout-macro","2270":"/features/split_keyboard#setting-handedness","2271":"/features/split_keyboard#handedness-by-pin","2272":"/features/split_keyboard#handedness-by-matrix-pin","2273":"/features/split_keyboard#handedness-by-eeprom","2274":"/features/split_keyboard#handedness-by-define","2275":"/features/split_keyboard#communication-options","2276":"/features/split_keyboard#data-sync-options","2277":"/features/split_keyboard#custom-data-sync","2278":"/features/split_keyboard#hardware-configuration-options","2279":"/features/split_keyboard#hardware-considerations-and-mods","2280":"/features/split_keyboard#teensy-boards","2281":"/features/split_keyboard#additional-resources","2282":"/features/st7565#st7565-lcd-driver","2283":"/features/st7565#supported-hardware","2284":"/features/st7565#usage","2285":"/features/st7565#logo-example","2286":"/features/st7565#buffer-read-example","2287":"/features/st7565#other-examples","2288":"/features/st7565#basic-configuration","2289":"/features/st7565#custom-sized-displays","2290":"/features/st7565#api","2291":"/features/stenography#stenography-in-qmk","2292":"/features/stenography#steno-support-in-qmk","2293":"/features/stenography#plover-with-qwerty-keyboard","2294":"/features/stenography#plover-with-steno-protocol","2295":"/features/stenography#tx-bolt","2296":"/features/stenography#geminipr","2297":"/features/stenography#switching-protocols-on-the-fly","2298":"/features/stenography#configuring-qmk-for-steno","2299":"/features/stenography#learning-stenography","2300":"/features/stenography#interfacing-with-the-code","2301":"/features/stenography#keycode-reference","2302":"/features/swap_hands#swap-hands-action","2303":"/features/swap_hands#configuration","2304":"/features/swap_hands#swap-keycodes","2305":"/features/swap_hands#encoder-mapping","2306":"/features/swap_hands#functions","2307":"/features/tap_dance#tap-dance-a-single-key-can-do-3-5-or-100-different-things","2308":"/features/tap_dance#introduction","2309":"/features/tap_dance#how-to-use","2310":"/features/tap_dance#implementation","2311":"/features/tap_dance#examples","2312":"/features/tap_dance#simple-example","2313":"/features/tap_dance#complex-examples","2314":"/features/tap_dance#example-1","2315":"/features/tap_dance#example-2","2316":"/features/tap_dance#example-3","2317":"/features/tap_dance#example-4","2318":"/features/tap_dance#example-5","2319":"/features/tap_dance#example-6","2320":"/features/tri_layer#tri-layers","2321":"/features/tri_layer#keycodes","2322":"/features/tri_layer#configuration","2323":"/features/tri_layer#functions","2324":"/features/unicode#unicode","2325":"/features/unicode#caveats","2326":"/features/unicode#usage","2327":"/features/unicode#basic-configuration","2328":"/features/unicode#audio-feedback","2329":"/features/unicode#input-subsystems","2330":"/features/unicode#unicodemap-pairs","2331":"/features/unicode#input-modes","2332":"/features/unicode#keycodes","2333":"/features/unicode#api","2334":"/features/unicode#api-get-unicode-input-mode","2335":"/features/unicode#api-get-unicode-input-mode-return-value","2336":"/features/unicode#api-set-unicode-input-mode","2337":"/features/unicode#api-set-unicode-input-mode-arguments","2338":"/features/unicode#api-unicode-input-mode-step","2339":"/features/unicode#api-unicode-input-mode-step-reverse","2340":"/features/unicode#api-unicode-input-mode-set-user","2341":"/features/unicode#api-unicode-input-mode-set-user-arguments","2342":"/features/unicode#api-unicode-input-mode-set-kb","2343":"/features/unicode#api-unicode-input-mode-set-kb-arguments","2344":"/features/unicode#api-unicode-input-start","2345":"/features/unicode#api-unicode-input-finish","2346":"/features/unicode#api-unicode-input-cancel","2347":"/features/unicode#api-register-unicode","2348":"/features/unicode#api-register-unicode-arguments","2349":"/features/unicode#api-send-unicode-string","2350":"/features/unicode#api-send-unicode-string-arguments","2351":"/features/unicode#api-unicodemap-index","2352":"/features/unicode#api-unicodemap-index-arguments","2353":"/features/unicode#api-unicodemap-index-return-value","2354":"/features/unicode#api-unicodemap-get-code-point","2355":"/features/unicode#unicodemap-get-code-point-arguments","2356":"/features/unicode#unicodemap-get-code-point-return-value","2357":"/features/unicode#api-register-unicodemap","2358":"/features/unicode#api-register-unicodemap-arguments","2359":"/features/unicode#api-ucis-start","2360":"/features/unicode#api-ucis-active","2361":"/features/unicode#api-ucis-active-return-value","2362":"/features/unicode#api-ucis-count","2363":"/features/unicode#api-ucis-count-return-value","2364":"/features/unicode#api-ucis-add","2365":"/features/unicode#api-ucis-add-arguments","2366":"/features/unicode#api-ucis-add-return-value","2367":"/features/unicode#api-ucis-remove-last","2368":"/features/unicode#api-ucis-remove-last-return-value","2369":"/features/unicode#api-ucis-finish","2370":"/features/unicode#api-ucis-cancel","2371":"/features/unicode#api-register-ucis","2372":"/features/unicode#api-register-ucis-arguments","2373":"/features/wireless#wireless-bluetooth","2374":"/features/wireless#bluetooth-known-supported-hardware","2375":"/features/wireless#adafruit-ble-spi-friend","2376":"/features/wireless#bluetooth-rules-mk-options","2377":"/features/wireless#bluetooth-keycodes","2378":"/features/wpm#word-per-minute-wpm-calculation","2379":"/features/wpm#configuration","2380":"/features/wpm#public-functions","2381":"/features/wpm#callbacks","2382":"/flashing#flashing-instructions-and-bootloader-information","2383":"/flashing#atmel-dfu","2384":"/flashing#qmk-dfu","2385":"/flashing#make-targets","2386":"/flashing#caterina","2387":"/flashing#make-targets-1","2388":"/flashing#halfkay","2389":"/flashing#usbasploader","2390":"/flashing#bootloadhid","2391":"/flashing#qmk-hid","2392":"/flashing#make-targets-2","2393":"/flashing#stm32-apm32-dfu","2394":"/flashing#make-targets-3","2395":"/flashing#stm32duino","2396":"/flashing#kiibohd-dfu","2397":"/flashing#wb32-dfu","2398":"/flashing#at32-dfu","2399":"/flashing#make-targets-4","2400":"/flashing#tinyuf2","2401":"/flashing#make-targets-5","2402":"/flashing#uf2boot","2403":"/flashing#make-targets-6","2404":"/flashing#raspberry-pi-rp2040-uf2","2405":"/getting_started_docker#docker-quick-start","2406":"/getting_started_docker#requirements","2407":"/getting_started_docker#usage","2408":"/getting_started_docker#faq","2409":"/getting_started_docker#why-can-t-i-flash-on-windows-macos","2410":"/getting_started_github#how-to-use-github-with-qmk","2411":"/getting_started_introduction#introduction","2412":"/getting_started_introduction#basic-qmk-structure","2413":"/getting_started_introduction#userspace-structure","2414":"/getting_started_introduction#keyboard-project-structure","2415":"/getting_started_introduction#keymap-structure","2416":"/getting_started_introduction#the-config-h-file","2417":"/getting_started_make_guide#more-detailed-make-instructions","2418":"/getting_started_make_guide#rules-mk-options","2419":"/getting_started_make_guide#customizing-makefile-options-on-a-per-keymap-basis","2420":"/hand_wire#hand-wiring-guide","2421":"/hand_wire#parts-list","2422":"/hand_wire#starting-the-build","2423":"/hand_wire#planning-the-matrix","2424":"/hand_wire#common-microcontroller-boards","2425":"/hand_wire#wiring-the-matrix","2426":"/hand_wire#a-note-on-split-keyboards","2427":"/hand_wire#soldering","2428":"/hand_wire#soldering-the-diodes","2429":"/hand_wire#soldering-the-columns","2430":"/hand_wire#wiring-up-the-controller","2431":"/hand_wire#specific-instructions-for-the-teensy-2-0","2432":"/hand_wire#getting-some-basic-firmware-set-up","2433":"/hand_wire#flashing-the-firmware","2434":"/hand_wire#testing-your-firmware","2435":"/hand_wire#finishing-up","2436":"/hand_wire#links-to-other-guides","2437":"/hand_wire#legacy-content","2438":"/hand_wire#preamble-how-a-keyboard-matrix-works-and-why-we-need-diodes","2439":"/hardware_drivers#qmk-hardware-drivers","2440":"/hardware_drivers#available-drivers","2441":"/hardware_drivers#promicro-avr-only","2442":"/hardware_drivers#ssd1306-oled-driver","2443":"/hardware_drivers#ws2812","2444":"/hardware_drivers#is31fl3731","2445":"/hardware_drivers#is31fl3733","2446":"/hardware_drivers#_24xx-series-external-i2c-eeprom","2447":"/hardware_keyboard_guidelines#qmk-keyboard-guidelines","2448":"/hardware_keyboard_guidelines#use-qmk-lint","2449":"/hardware_keyboard_guidelines#naming-your-keyboard-project","2450":"/hardware_keyboard_guidelines#sub-folders","2451":"/hardware_keyboard_guidelines#keyboard-folder-structure","2452":"/hardware_keyboard_guidelines#readme-md","2453":"/hardware_keyboard_guidelines#keyboard-json-info-json","2454":"/hardware_keyboard_guidelines#config-h","2455":"/hardware_keyboard_guidelines#rules-mk","2456":"/hardware_keyboard_guidelines#keyboard-c","2457":"/hardware_keyboard_guidelines#keyboard-h","2458":"/hardware_keyboard_guidelines#image-hardware-files","2459":"/hardware_keyboard_guidelines#keyboard-defaults","2460":"/hardware_keyboard_guidelines#magic-keycodes-and-command","2461":"/hardware_keyboard_guidelines#custom-keyboard-programming","2462":"/hardware_keyboard_guidelines#non-production-handwired-projects","2463":"/hardware_keyboard_guidelines#warnings-as-errors","2464":"/hardware_keyboard_guidelines#copyright-blurb","2465":"/hardware_keyboard_guidelines#license","2466":"/how_a_matrix_works#how-a-keyboard-matrix-works","2467":"/how_keyboards_work#how-keys-are-registered-and-interpreted-by-computers","2468":"/how_keyboards_work#schematic-view","2469":"/how_keyboards_work#_1-you-press-a-key","2470":"/how_keyboards_work#_2-what-the-firmware-sends","2471":"/how_keyboards_work#_3-what-the-event-input-kernel-does","2472":"/how_keyboards_work#_4-what-the-operating-system-does","2473":"/how_keyboards_work#back-to-the-firmware","2474":"/how_keyboards_work#list-of-characters-you-can-send","2475":"/how_keyboards_work#how-to-maybe-enter-unicode-characters","2476":"/#quantum-mechanical-keyboard-firmware","2477":"/#what-is-qmk-firmware","2478":"/#get-started","2479":"/#make-it-yours","2480":"/#need-help","2481":"/#give-back","2482":"/isp_flashing_guide#isp-flashing-guide","2483":"/isp_flashing_guide#hardware","2484":"/isp_flashing_guide#pro-micro-as-isp","2485":"/isp_flashing_guide#wiring","2486":"/isp_flashing_guide#arduino-uno-micro-as-isp","2487":"/isp_flashing_guide#wiring-1","2488":"/isp_flashing_guide#teensy-2-0-as-isp","2489":"/isp_flashing_guide#wiring-2","2490":"/isp_flashing_guide#sparkfun-pocketavr-usbtinyisp","2491":"/isp_flashing_guide#wiring-3","2492":"/isp_flashing_guide#usbasp","2493":"/isp_flashing_guide#wiring-4","2494":"/isp_flashing_guide#bus-pirate","2495":"/isp_flashing_guide#wiring-5","2496":"/isp_flashing_guide#software","2497":"/isp_flashing_guide#bootloader-firmware","2498":"/isp_flashing_guide#atmel-dfu","2499":"/isp_flashing_guide#caterina","2500":"/isp_flashing_guide#bootloadhid-ps2avrgb","2501":"/isp_flashing_guide#usbasploader","2502":"/isp_flashing_guide#flashing-the-bootloader","2503":"/isp_flashing_guide#setting-the-fuses","2504":"/isp_flashing_guide#creating-a-production-firmware","2505":"/isp_flashing_guide#flashing-stm32duino-bootloader","2506":"/isp_flashing_guide#software-1","2507":"/isp_flashing_guide#wiring-6","2508":"/isp_flashing_guide#flashing","2509":"/keycodes#keycodes-overview","2510":"/keycodes#basic-keycodes","2511":"/keycodes#quantum-keycodes","2512":"/keycodes#audio-keys","2513":"/keycodes#auto-shift","2514":"/keycodes#autocorrect","2515":"/keycodes#backlighting","2516":"/keycodes#bluetooth","2517":"/keycodes#caps-word","2518":"/keycodes#dynamic-macros","2519":"/keycodes#grave-escape","2520":"/keycodes#joystick","2521":"/keycodes#key-lock","2522":"/keycodes#layer-lock","2523":"/keycodes#layer-switching","2524":"/keycodes#leader-key","2525":"/keycodes#led-matrix","2526":"/keycodes#magic-keycodes","2527":"/keycodes#midi","2528":"/keycodes#mouse-keys","2529":"/keycodes#modifiers","2530":"/keycodes#mod-tap-keys","2531":"/keycodes#tapping-term-keys","2532":"/keycodes#rgb-lighting","2533":"/keycodes#rgb-matrix","2534":"/keycodes#us-ansi-shifted-symbols","2535":"/keycodes#one-shot-keys","2536":"/keycodes#programmable-button","2537":"/keycodes#repeat-key","2538":"/keycodes#space-cadet","2539":"/keycodes#swap-hands","2540":"/keycodes#unicode-support","2541":"/keycodes_basic#basic-keycodes","2542":"/keycodes_basic#letters-and-numbers","2543":"/keycodes_basic#f-keys","2544":"/keycodes_basic#punctuation","2545":"/keycodes_basic#lock-keys","2546":"/keycodes_basic#modifiers","2547":"/keycodes_basic#international","2548":"/keycodes_basic#commands","2549":"/keycodes_basic#media-keys","2550":"/keycodes_basic#number-pad","2551":"/keycodes_basic#special-keys","2552":"/keycodes_magic#magic-keycodes","2553":"/keycodes_us_ansi_shifted#us-ansi-shifted-symbols","2554":"/keycodes_us_ansi_shifted#caveats","2555":"/keycodes_us_ansi_shifted#keycodes","2556":"/keymap#keymap-overview","2557":"/keymap#keymap-and-layers","2558":"/keymap#keymap-layer-status","2559":"/keymap#layer-precedence-and-transparency","2560":"/keymap#anatomy-of-a-keymap-c","2561":"/keymap#definitions","2562":"/keymap#layers-and-keymaps","2563":"/keymap#base-layer","2564":"/keymap#function-overlay-layer","2565":"/keymap#nitty-gritty-details","2566":"/license_violations#license-violations","2567":"/license_violations#offending-vendors","2568":"/license_violations#licensing","2569":"/license_violations#qmk-pr-considerations","2570":"/license_violations#detection","2571":"/license_violations#remediation","2572":"/newbs#the-qmk-tutorial","2573":"/newbs#overview","2574":"/newbs#additional-resources","2575":"/mod_tap#mod-tap","2576":"/mod_tap#caveats","2577":"/mod_tap#intercepting-mod-taps","2578":"/mod_tap#changing-tap-function","2579":"/mod_tap#changing-hold-function","2580":"/mod_tap#changing-both-tap-and-hold","2581":"/mod_tap#other-resources","2582":"/newbs_building_firmware#building-your-first-firmware","2583":"/newbs_building_firmware#configure-your-build-environment-defaults-optional","2584":"/newbs_building_firmware#create-a-new-keymap","2585":"/newbs_building_firmware#open-keymap-c-in-your-favorite-text-editor","2586":"/newbs_building_firmware#customize-the-layout-to-your-liking","2587":"/newbs_building_firmware#build-your-firmware","2588":"/newbs_building_firmware#flash-your-firmware","2589":"/newbs_building_firmware_configurator#qmk-configurator","2590":"/newbs_building_firmware_workflow#building-qmk-with-github-userspace","2591":"/newbs_building_firmware_workflow#prerequisites","2592":"/newbs_building_firmware_workflow#environment-setup","2593":"/newbs_building_firmware_workflow#_1-install-git","2594":"/newbs_building_firmware_workflow#_2-github-authentication","2595":"/newbs_building_firmware_workflow#_3-create-a-repository","2596":"/newbs_building_firmware_workflow#initial-code-commit","2597":"/newbs_building_firmware_workflow#create-template-files","2598":"/newbs_building_firmware_workflow#add-a-json-keymap","2599":"/newbs_building_firmware_workflow#add-a-github-action-workflow","2600":"/newbs_building_firmware_workflow#commit-files-to-github","2601":"/newbs_building_firmware_workflow#review-workflow-output","2602":"/newbs_building_firmware_workflow#customising-your-keymap","2603":"/newbs_external_userspace#external-qmk-userspace","2604":"/newbs_external_userspace#setting-up-qmk-locally","2605":"/newbs_external_userspace#external-userspace-repository-setup-forked-on-github","2606":"/newbs_external_userspace#external-userspace-setup-locally-stored-only","2607":"/newbs_external_userspace#adding-a-keymap","2608":"/newbs_external_userspace#adding-the-keymap-to-external-userspace-build-targets","2609":"/newbs_external_userspace#compiling-external-userspace-build-targets","2610":"/newbs_external_userspace#using-github-actions","2611":"/newbs_flashing#flashing-your-keyboard","2612":"/newbs_flashing#put-your-keyboard-into-dfu-bootloader-mode","2613":"/newbs_flashing#flashing-your-keyboard-with-qmk-toolbox","2614":"/newbs_flashing#load-the-file-into-qmk-toolbox","2615":"/newbs_flashing#flash-your-keyboard","2616":"/newbs_flashing#flash-your-keyboard-from-the-command-line","2617":"/newbs_flashing#test-it-out","2618":"/newbs_getting_started#setting-up-your-qmk-environment","2619":"/newbs_getting_started#_1-prerequisites","2620":"/newbs_getting_started#set-up-your-environment","2621":"/newbs_getting_started#prerequisites","2622":"/newbs_getting_started#prerequisites-1","2623":"/newbs_getting_started#installation","2624":"/newbs_getting_started#prerequisites-2","2625":"/newbs_getting_started#installation-1","2626":"/newbs_getting_started#installation-2","2627":"/newbs_getting_started#installation-3","2628":"/newbs_getting_started#set-up-qmk","2629":"/newbs_getting_started#_4-test-your-build-environment","2630":"/newbs_getting_started#creating-your-keymap","2631":"/newbs_git_best_practices#best-git-practices-for-working-with-qmk","2632":"/newbs_git_best_practices#or-how-i-learned-to-stop-worrying-and-love-git","2633":"/newbs_git_resolving_merge_conflicts#resolving-merge-conflicts","2634":"/newbs_git_resolving_merge_conflicts#rebasing-your-changes","2635":"/newbs_git_resynchronize_a_branch#resynchronizing-an-out-of-sync-git-branch","2636":"/newbs_git_resynchronize_a_branch#backing-up-the-changes-on-your-own-master-branch-optional","2637":"/newbs_git_resynchronize_a_branch#resynchronizing-your-branch","2638":"/newbs_git_using_your_master_branch#your-fork-s-master-update-often-commit-never","2639":"/newbs_git_using_your_master_branch#updating-your-master-branch","2640":"/newbs_git_using_your_master_branch#making-changes","2641":"/newbs_git_using_your_master_branch#publishing-your-changes","2642":"/newbs_learn_more_resources#learning-resources","2643":"/newbs_learn_more_resources#qmk-resources","2644":"/newbs_learn_more_resources#command-line-resources","2645":"/newbs_learn_more_resources#text-editor-resources","2646":"/newbs_learn_more_resources#git-resources","2647":"/newbs_testing_debugging#testing-and-debugging","2648":"/newbs_testing_debugging#testing","2649":"/newbs_testing_debugging#debugging","2650":"/one_shot_keys#one-shot-keys","2651":"/one_shot_keys#keycodes","2652":"/one_shot_keys#callbacks","2653":"/other_eclipse#setting-up-eclipse-for-qmk-development","2654":"/other_eclipse#prerequisites","2655":"/other_eclipse#build-environment","2656":"/other_eclipse#java","2657":"/other_eclipse#install-eclipse-and-its-plugins","2658":"/other_eclipse#download-and-install-eclipse-cdt","2659":"/other_eclipse#first-launch","2660":"/other_eclipse#install-the-necessary-plugins","2661":"/other_eclipse#configure-eclipse-for-qmk","2662":"/other_eclipse#importing-the-project","2663":"/other_eclipse#build-your-keyboard","2664":"/platformdev_blackpill_f4x1#weact-blackpill-stm32f4x1","2665":"/platformdev_blackpill_f4x1#pin-usage-limitations","2666":"/platformdev_blackpill_f4x1#unusable-pins","2667":"/platformdev_blackpill_f4x1#pins-to-be-avoided","2668":"/platformdev_blackpill_f4x1#shared-usage","2669":"/platformdev_blackpill_f4x1#limited-usage","2670":"/platformdev_blackpill_f4x1#additional-information","2671":"/platformdev_blackpill_f4x1#bootloader-issues","2672":"/platformdev_blackpill_f4x1#tiny-uf2-support","2673":"/other_vscode#setting-up-visual-studio-code-for-qmk-development","2674":"/other_vscode#set-up-vs-code","2675":"/other_vscode#windows","2676":"/other_vscode#prerequisites","2677":"/other_vscode#installing-vs-code","2678":"/other_vscode#msys2-setup","2679":"/other_vscode#every-other-operating-system","2680":"/other_vscode#extensions","2681":"/other_vscode#configure-vs-code-for-qmk","2682":"/other_vscode#configuring-vs-code","2683":"/other_vscode#debugging-arm-mcus-with-visual-studio-code","2684":"/platformdev_chibios_earlyinit#chibios-early-init","2685":"/platformdev_chibios_earlyinit#early-hardware-init-pre","2686":"/platformdev_chibios_earlyinit#early-hardware-init-post","2687":"/platformdev_chibios_earlyinit#board-init","2688":"/platformdev_proton_c#proton-c","2689":"/platformdev_proton_c#features","2690":"/platformdev_proton_c#warnings","2691":"/platformdev_proton_c#manual-conversion","2692":"/platformdev_rp2040#raspberry-pi-rp2040","2693":"/platformdev_rp2040#gpio","2694":"/platformdev_rp2040#pin-nomenclature","2695":"/platformdev_rp2040#alternate-functions","2696":"/platformdev_rp2040#selecting-hardware-peripherals-and-drivers","2697":"/platformdev_rp2040#i2c-driver","2698":"/platformdev_rp2040#spi-driver","2699":"/platformdev_rp2040#uart-driver","2700":"/platformdev_rp2040#double-tap","2701":"/platformdev_rp2040#pre-defined-rp2040-boards","2702":"/platformdev_rp2040#generic-pro-micro-rp2040","2703":"/platformdev_rp2040#generic-rp2040-board","2704":"/platformdev_rp2040#split-keyboard-support","2705":"/platformdev_rp2040#rp2040-second-stage-bootloader-selection","2706":"/platformdev_rp2040#rp2040_ce","2707":"/platformdev_selecting_arm_mcu#choose-arm-mcu","2708":"/platformdev_selecting_arm_mcu#selecting-already-supported-mcu","2709":"/platformdev_selecting_arm_mcu#stm32-families","2710":"/platformdev_selecting_arm_mcu#non-stm32-families","2711":"/platformdev_selecting_arm_mcu#add-new-stm32-mcu","2712":"/platformdev_selecting_arm_mcu#add-new-stm32-family","2713":"/platformdev_selecting_arm_mcu#add-new-mcu-family","2714":"/porting_your_keyboard_to_qmk#adding-your-keyboard-to-qmk","2715":"/porting_your_keyboard_to_qmk#readme-md","2716":"/porting_your_keyboard_to_qmk#keyboard-json","2717":"/porting_your_keyboard_to_qmk#hardware-configuration","2718":"/porting_your_keyboard_to_qmk#matrix-configuration","2719":"/porting_your_keyboard_to_qmk#diode-matrix","2720":"/porting_your_keyboard_to_qmk#direct-pin-matrix","2721":"/porting_your_keyboard_to_qmk#layout-macros","2722":"/porting_your_keyboard_to_qmk#additional-configuration","2723":"/porting_your_keyboard_to_qmk#configuration-options","2724":"/porting_your_keyboard_to_qmk#build-options","2725":"/proprietary_libs#proprietary-vendor-libraries","2726":"/proprietary_libs#architecture-constraints","2727":"/proprietary_libs#common-vendor-library-restrictions","2728":"/proprietary_libs#bluetooth-stack-licensing-examples","2729":"/proprietary_libs#why-the-system-library-exception-doesn-t-apply","2730":"/proprietary_libs#system-library-requirements","2731":"/proprietary_libs#why-vendor-libraries-fail-these-requirements","2732":"/proprietary_libs#attempted-workarounds","2733":"/proprietary_libs#architectural-separation-attempts","2734":"/proprietary_libs#loader-based-separation","2735":"/proprietary_libs#real-world-examples","2736":"/proprietary_libs#bluetooth-wireless-stacks","2737":"/proprietary_libs#hal-and-driver-libraries","2738":"/proprietary_libs#mixed-proprietary-open","2739":"/proprietary_libs#legal-and-practical-consequences","2740":"/proprietary_libs#evaluation-criteria-for-libraries","2741":"/proprietary_libs#policy-implementation","2742":"/proprietary_libs#summary","2743":"/pr_checklist#pr-checklists","2744":"/pr_checklist#requirements-for-all-prs","2745":"/pr_checklist#keymap-prs","2746":"/pr_checklist#keyboard-prs","2747":"/pr_checklist#core-pr","2748":"/pr_checklist#notes","2749":"/pr_checklist#review-process","2750":"/pr_checklist#example-gplv2-header","2751":"/quantum_keycodes#quantum-keycodes","2752":"/quantum_keycodes#qmk-keycodes","2753":"/quantum_painter_lvgl#lvgl","2754":"/quantum_painter_lvgl#lvgl-enabling","2755":"/quantum_painter_lvgl#lvgl-api","2756":"/quantum_painter_lvgl#lvgl-api-init","2757":"/quantum_painter_lvgl#lvgl-api-detach","2758":"/quantum_painter_lvgl#lvgl-configuring","2759":"/quantum_painter_lvgl#changing-the-lvgl-task-frequency","2760":"/quantum_painter#quantum-painter","2761":"/quantum_painter#quantum-painter-config","2762":"/quantum_painter#quantum-painter-cli","2763":"/quantum_painter#quantum-painter-drivers","2764":"/quantum_painter#quantum-painter-api","2765":"/ref_functions#list-of-useful-core-functions-to-make-your-keyboard-better","2766":"/ref_functions#olkb-tri-layers","2767":"/ref_functions#update-tri-layer-x-y-z","2768":"/ref_functions#example","2769":"/ref_functions#update-tri-layer-state-state-x-y-z","2770":"/ref_functions#example-1","2771":"/ref_functions#setting-the-persistent-default-layer","2772":"/ref_functions#resetting-the-keyboard","2773":"/ref_functions#reset-to-bootloader","2774":"/ref_functions#wiping-the-eeprom-persistent-storage","2775":"/ref_functions#tap-random-key","2776":"/ref_functions#software-timers","2777":"/quantum_painter_qgf#qmk-graphics-format","2778":"/quantum_painter_qgf#qgf-block-header","2779":"/quantum_painter_qgf#qgf-graphics-descriptor","2780":"/quantum_painter_qgf#qgf-frame-offset-descriptor","2781":"/quantum_painter_qgf#qgf-frame-descriptor","2782":"/quantum_painter_qgf#qgf-frame-palette-descriptor","2783":"/quantum_painter_qgf#qgf-frame-delta-descriptor","2784":"/quantum_painter_qgf#qgf-frame-data-descriptor","2785":"/quantum_painter_qff#qmk-font-format","2786":"/quantum_painter_qff#qff-block-header","2787":"/quantum_painter_qff#qff-font-descriptor","2788":"/quantum_painter_qff#qff-ascii-table","2789":"/quantum_painter_qff#qff-unicode-table","2790":"/quantum_painter_qff#qff-palette-descriptor","2791":"/quantum_painter_qff#qff-data-descriptor","2792":"/quantum_painter_rle#qmk-qp-rle-schema","2793":"/reference_configurator_support#supporting-your-keyboard-in-qmk-configurator","2794":"/reference_configurator_support#how-the-configurator-understands-keyboards","2795":"/reference_configurator_support#building-the-json-file","2796":"/reference_configurator_support#how-the-configurator-programs-keys","2797":"/reference_configurator_support#issues-and-hazards","2798":"/reference_configurator_support#workarounds","2799":"/reference_configurator_support#non-rectangular-keys","2800":"/reference_configurator_support#vertically-offset-keys","2801":"/reference_glossary#glossary-of-qmk-terms","2802":"/reference_glossary#arm","2803":"/reference_glossary#avr","2804":"/reference_glossary#azerty","2805":"/reference_glossary#backlight","2806":"/reference_glossary#bluetooth","2807":"/reference_glossary#bootloader","2808":"/reference_glossary#bootmagic","2809":"/reference_glossary#c","2810":"/reference_glossary#colemak","2811":"/reference_glossary#compile","2812":"/reference_glossary#dvorak","2813":"/reference_glossary#dynamic-macro","2814":"/reference_glossary#eclipse","2815":"/reference_glossary#firmware","2816":"/reference_glossary#git","2817":"/reference_glossary#github","2818":"/reference_glossary#isp","2819":"/reference_glossary#hid-listen","2820":"/reference_glossary#keycode","2821":"/reference_glossary#key-down","2822":"/reference_glossary#key-up","2823":"/reference_glossary#keymap","2824":"/reference_glossary#layer","2825":"/reference_glossary#leader-key","2826":"/reference_glossary#led","2827":"/reference_glossary#make","2828":"/reference_glossary#matrix","2829":"/reference_glossary#macro","2830":"/reference_glossary#mcu","2831":"/reference_glossary#modifier","2832":"/reference_glossary#mousekeys","2833":"/reference_glossary#n-key-rollover-nkro","2834":"/reference_glossary#oneshot-modifier","2835":"/reference_glossary#promicro","2836":"/reference_glossary#pull-request","2837":"/reference_glossary#qwerty","2838":"/reference_glossary#qwertz","2839":"/reference_glossary#rollover","2840":"/reference_glossary#scancode","2841":"/reference_glossary#space-cadet-shift","2842":"/reference_glossary#tap","2843":"/reference_glossary#tap-dance","2844":"/reference_glossary#teensy","2845":"/reference_glossary#underlight","2846":"/reference_glossary#unicode","2847":"/reference_glossary#unit-testing","2848":"/reference_glossary#usb","2849":"/reference_glossary#usb-host-or-simply-host","2850":"/reference_glossary#couldn-t-find-the-term-you-re-looking-for","2851":"/reference_info_json#info-json-reference","2852":"/reference_info_json#general-metadata","2853":"/reference_info_json#hardware-configuration","2854":"/reference_info_json#firmware-configuration","2855":"/reference_info_json#apa102","2856":"/reference_info_json#audio","2857":"/reference_info_json#backlight","2858":"/reference_info_json#battery","2859":"/reference_info_json#bluetooth","2860":"/reference_info_json#bootmagic","2861":"/reference_info_json#caps-word","2862":"/reference_info_json#combo","2863":"/reference_info_json#dip-switch","2864":"/reference_info_json#eeprom","2865":"/reference_info_json#encoder","2866":"/reference_info_json#host","2867":"/reference_info_json#indicators","2868":"/reference_info_json#keycodes","2869":"/reference_info_json#layouts","2870":"/reference_info_json#leader-key","2871":"/reference_info_json#led-matrix","2872":"/reference_info_json#matrix","2873":"/reference_info_json#mouse-keys","2874":"/reference_info_json#one-shot","2875":"/reference_info_json#ps2","2876":"/reference_info_json#qmk-lufa-bootloader","2877":"/reference_info_json#rgblight","2878":"/reference_info_json#rgb-matrix","2879":"/reference_info_json#secure","2880":"/reference_info_json#split-keyboard","2881":"/reference_info_json#stenography","2882":"/reference_info_json#usb","2883":"/reference_info_json#ws2812","2884":"/reference_keymap_extras#language-specific-keycodes","2885":"/reference_keymap_extras#selecting-your-host-keyboard-layout","2886":"/reference_keymap_extras#sendstring-support","2887":"/reference_keymap_extras#header-files","2888":"/squeezing_avr#squeezing-the-most-out-of-avr","2889":"/squeezing_avr#rules-mk-settings","2890":"/squeezing_avr#config-h-settings","2891":"/squeezing_avr#audio-settings","2892":"/squeezing_avr#layers","2893":"/squeezing_avr#oled-tweaks","2894":"/squeezing_avr#rgb-settings","2895":"/squeezing_avr#final-thoughts","2896":"/support#getting-help","2897":"/support#realtime-chat","2898":"/support#olkb-subreddit","2899":"/support#github-issues","2900":"/support_deprecation_policy#feature-support-policies","2901":"/support_deprecation_policy#system-constraints","2902":"/support_deprecation_policy#deprecation-removal-policy","2903":"/support_deprecation_policy#how-much-advance-notice-will-be-given","2904":"/support_deprecation_policy#how-will-deprecation-be-communicated","2905":"/syllabus#qmk-syllabus","2906":"/syllabus#beginning-topics","2907":"/syllabus#intermediate-topics","2908":"/syllabus#advanced-topics","2909":"/tap_hold#tap-hold-configuration-options","2910":"/tap_hold#tapping-term","2911":"/tap_hold#example","2912":"/tap_hold#dynamic-tapping-term","2913":"/tap_hold#tap-or-hold-decision-modes","2914":"/tap_hold#comparison","2915":"/tap_hold#distinct-taps","2916":"/tap_hold#nested-tap","2917":"/tap_hold#rolling-keys","2918":"/tap_hold#default-mode","2919":"/tap_hold#permissive-hold","2920":"/tap_hold#hold-on-other-key-press","2921":"/tap_hold#quick-tap-term","2922":"/tap_hold#flow-tap","2923":"/tap_hold#is-flow-tap-key","2924":"/tap_hold#get-flow-tap-term","2925":"/tap_hold#chordal-hold","2926":"/tap_hold#chordal-hold-handedness","2927":"/tap_hold#per-chord-customization","2928":"/tap_hold#retro-tapping","2929":"/tap_hold#retro-shift","2930":"/tap_hold#speculative-hold","2931":"/tap_hold#why-do-we-include-the-key-record-for-the-per-key-functions","2932":"/tap_hold#why-are-there-no-kb-or-user-functions","2933":"/understanding_qmk#understanding-qmk-s-code","2934":"/understanding_qmk#startup","2935":"/understanding_qmk#the-main-loop","2936":"/understanding_qmk#matrix-scanning","2937":"/understanding_qmk#matrix-to-physical-layout-map","2938":"/understanding_qmk#keycode-assignment","2939":"/understanding_qmk#state-change-detection","2940":"/understanding_qmk#process-record","2941":"/unit_testing#unit-testing","2942":"/unit_testing#google-test-and-google-mock","2943":"/unit_testing#use-of-c","2944":"/unit_testing#adding-tests-for-new-or-existing-features","2945":"/unit_testing#running-the-tests","2946":"/unit_testing#debugging-the-tests","2947":"/unit_testing#full-integration-tests","2948":"/unit_testing#keycode-string","2949":"/unit_testing#tracing-variables"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[6,1,56],"1":[6,6,41],"2":[4,6,36],"3":[11,6,49],"4":[6,6,33],"5":[9,6,41],"6":[9,6,47],"7":[10,6,44],"8":[8,6,34],"9":[7,1,47],"10":[5,7,90],"11":[9,7,46],"12":[3,7,19],"13":[2,7,29],"14":[9,7,69],"15":[12,7,49],"16":[7,7,44],"17":[7,7,25],"18":[4,7,30],"19":[7,1,51],"20":[2,7,1],"21":[7,9,50],"22":[6,9,46],"23":[6,9,47],"24":[6,9,43],"25":[13,9,69],"26":[6,9,12],"27":[13,9,20],"28":[6,9,77],"29":[2,7,1],"30":[6,9,44],"31":[6,15,119],"32":[6,9,45],"33":[8,9,42],"34":[6,17,98],"35":[12,9,22],"36":[4,21,57],"37":[2,7,60],"38":[3,7,58],"39":[7,1,47],"40":[4,7,1],"41":[2,11,1],"42":[6,13,1],"43":[7,13,48],"44":[3,11,1],"45":[5,14,91],"46":[4,11,35],"47":[2,7,1],"48":[1,9,22],"49":[3,9,349],"50":[4,9,260],"51":[4,7,31],"52":[7,1,47],"53":[4,7,1],"54":[2,11,1],"55":[6,13,47],"56":[8,13,21],"57":[8,13,39],"58":[6,13,25],"59":[3,11,1],"60":[4,14,15],"61":[2,7,1],"62":[1,9,26],"63":[3,9,83],"64":[4,9,45],"65":[4,7,121],"66":[7,1,1],"67":[4,7,48],"68":[2,7,1],"69":[5,8,51],"70":[4,8,171],"71":[3,7,1],"72":[4,10,35],"73":[1,10,113],"74":[3,10,149],"75":[4,10,117],"76":[4,10,90],"77":[5,10,68],"78":[7,1,1],"79":[2,7,1],"80":[7,8,13],"81":[5,8,9],"82":[5,8,31],"83":[4,8,33],"84":[4,8,14],"85":[4,7,1],"86":[3,10,86],"87":[5,10,50],"88":[3,15,39],"89":[5,10,24],"90":[6,10,75],"91":[2,7,1],"92":[1,8,112],"93":[3,8,234],"94":[4,8,145],"95":[4,8,35],"96":[7,1,1],"97":[2,7,1],"98":[4,9,54],"99":[3,9,74],"100":[3,9,29],"101":[4,7,1],"102":[3,10,85],"103":[4,10,63],"104":[4,14,41],"105":[7,10,65],"106":[3,7,1],"107":[3,10,84],"108":[5,10,19],"109":[4,10,21],"110":[1,14,42],"111":[2,14,107],"112":[3,14,117],"113":[4,10,105],"114":[2,7,1145],"115":[7,1,1],"116":[3,7,42],"117":[2,7,1],"118":[5,9,106],"119":[4,9,104],"120":[5,9,78],"121":[4,7,1],"122":[3,10,44],"123":[6,10,62],"124":[8,10,95],"125":[4,10,86],"126":[4,10,69],"127":[6,14,40],"128":[4,10,28],"129":[3,7,1],"130":[3,10,50],"131":[2,10,78],"132":[2,10,87],"133":[4,10,179],"134":[2,7,847],"135":[7,1,1],"136":[2,7,1],"137":[7,9,22],"138":[6,9,28],"139":[4,7,1],"140":[8,10,23],"141":[10,10,19],"142":[5,10,22],"143":[3,10,291],"144":[3,7,1],"145":[3,10,18],"146":[2,10,12],"147":[1,12,5],"148":[1,12,3],"149":[2,7,866],"150":[7,1,1],"151":[2,7,1],"152":[3,9,80],"153":[3,9,111],"154":[3,9,54],"155":[4,7,1],"156":[6,10,65],"157":[4,10,50],"158":[3,10,73],"159":[3,10,51],"160":[2,7,516],"161":[7,1,1],"162":[2,7,1],"163":[6,9,73],"164":[9,9,57],"165":[4,7,1],"166":[8,10,71],"167":[6,10,38],"168":[3,10,29],"169":[6,10,75],"170":[2,16,27],"171":[3,7,1],"172":[3,10,67],"173":[7,10,87],"174":[7,10,75],"175":[4,10,100],"176":[2,7,977],"177":[7,1,1],"178":[2,7,1],"179":[2,9,38],"180":[4,7,1],"181":[3,10,38],"182":[2,10,137],"183":[3,10,34],"184":[6,10,66],"185":[5,10,93],"186":[3,10,31],"187":[3,7,21],"188":[2,10,171],"189":[2,10,67],"190":[5,10,79],"191":[2,7,1144],"192":[7,1,1],"193":[4,7,1],"194":[7,10,182],"195":[9,10,106],"196":[7,10,89],"197":[3,10,37],"198":[3,7,105],"199":[2,7,907],"200":[7,1,1],"201":[2,7,147],"202":[4,8,71],"203":[7,8,74],"204":[3,8,37],"205":[4,7,1],"206":[7,10,60],"207":[3,10,49],"208":[3,7,1],"209":[4,10,60],"210":[4,10,31],"211":[2,7,1441],"212":[7,1,1],"213":[2,7,110],"214":[4,8,35],"215":[3,8,54],"216":[4,7,1],"217":[3,10,46],"218":[7,10,49],"219":[4,10,15],"220":[6,10,29],"221":[4,10,105],"222":[2,7,740],"223":[7,1,1],"224":[2,7,75],"225":[4,7,1],"226":[3,10,47],"227":[3,7,1],"228":[3,10,94],"229":[6,10,45],"230":[4,10,55],"231":[7,10,127],"232":[5,10,68],"233":[8,10,78],"234":[4,10,112],"235":[6,10,44],"236":[2,7,816],"237":[7,1,1],"238":[2,7,45],"239":[4,7,1],"240":[4,10,94],"241":[3,10,110],"242":[3,7,1],"243":[7,10,76],"244":[5,10,50],"245":[6,10,40],"246":[7,10,44],"247":[4,10,50],"248":[4,10,50],"249":[2,7,827],"250":[7,1,1],"251":[2,7,62],"252":[4,7,1],"253":[3,10,75],"254":[5,10,45],"255":[5,10,59],"256":[5,10,31],"257":[2,15,21],"258":[3,15,22],"259":[2,15,44],"260":[2,15,8],"261":[3,7,1],"262":[5,10,85],"263":[9,10,104],"264":[2,7,15],"265":[7,9,81],"266":[2,7,686],"267":[7,1,1],"268":[2,7,64],"269":[4,7,1],"270":[3,10,47],"271":[7,10,34],"272":[7,10,52],"273":[9,10,104],"274":[2,7,15],"275":[7,9,45],"276":[7,9,73],"277":[2,7,446],"278":[7,1,1],"279":[2,7,81],"280":[4,7,1],"281":[3,10,39],"282":[2,7,15],"283":[4,9,66],"284":[8,9,69],"285":[2,7,382],"286":[7,1,1],"287":[2,7,1],"288":[3,9,98],"289":[3,9,61],"290":[4,7,1],"291":[3,10,20],"292":[2,7,15],"293":[4,9,53],"294":[2,7,365],"295":[7,1,1],"296":[2,7,1],"297":[3,9,65],"298":[4,9,32],"299":[4,7,1],"300":[3,10,23],"301":[2,7,15],"302":[7,9,31],"303":[8,9,66],"304":[7,9,29],"305":[4,9,53],"306":[5,9,38],"307":[6,9,146],"308":[2,7,481],"309":[7,1,1],"310":[4,7,1],"311":[3,10,47],"312":[5,10,126],"313":[2,7,15],"314":[4,9,52],"315":[5,9,40],"316":[8,9,23],"317":[2,7,320],"318":[7,1,1],"319":[2,7,1],"320":[11,9,84],"321":[4,7,1],"322":[3,10,21],"323":[10,10,53],"324":[2,10,38],"325":[2,10,39],"326":[2,7,15],"327":[9,9,25],"328":[2,7,414],"329":[7,1,1],"330":[2,7,1],"331":[6,9,58],"332":[5,9,40],"333":[2,7,207],"334":[7,1,1],"335":[2,7,1],"336":[2,7,15],"337":[5,9,29],"338":[8,9,58],"339":[2,7,272],"340":[2,1,37],"341":[2,2,47],"342":[2,4,1],"343":[1,4,1],"344":[1,4,93],"345":[1,4,1],"346":[2,5,15],"347":[4,5,14],"348":[2,4,18],"349":[1,2,1],"350":[2,3,9],"351":[1,3,6],"352":[2,3,28],"353":[2,3,60],"354":[2,3,89],"355":[2,3,9],"356":[1,3,12],"357":[3,4,3],"358":[3,7,4],"359":[3,7,4],"360":[3,4,3],"361":[3,4,8],"362":[2,2,18],"363":[1,2,8],"364":[3,1,12],"365":[4,1,36],"366":[1,1,53],"367":[1,1,50],"368":[2,1,18],"369":[7,2,34],"370":[12,2,24],"371":[13,2,11],"372":[13,2,12],"373":[2,1,23],"374":[1,2,35],"375":[4,3,143],"376":[4,2,48],"377":[3,2,98],"378":[3,2,46],"379":[1,2,130],"380":[2,1,45],"381":[2,2,20],"382":[2,2,21],"383":[2,2,25],"384":[4,1,56],"385":[3,4,25],"386":[3,7,55],"387":[3,7,23],"388":[3,7,17],"389":[3,7,37],"390":[1,7,22],"391":[1,7,12],"392":[4,7,16],"393":[2,4,168],"394":[1,4,20],"395":[1,4,1],"396":[3,4,86],"397":[3,4,85],"398":[4,4,51],"399":[2,1,82],"400":[9,2,12],"401":[7,2,11],"402":[2,8,53],"403":[6,2,187],"404":[1,2,14],"405":[4,3,39],"406":[4,3,46],"407":[4,3,54],"408":[4,3,35],"409":[3,3,67],"410":[3,2,1],"411":[4,5,139],"412":[8,5,95],"413":[3,1,55],"414":[7,1,159],"415":[4,7,22],"416":[5,11,42],"417":[3,11,50],"418":[3,11,31],"419":[3,1,24],"420":[2,3,67],"421":[3,3,35],"422":[2,3,63],"423":[11,3,33],"424":[2,1,1],"425":[1,2,34],"426":[1,3,45],"427":[3,1,1],"428":[2,1,1],"429":[2,2,176],"430":[2,2,113],"431":[2,2,23],"432":[2,2,39],"433":[2,2,144],"434":[2,2,67],"435":[2,2,38],"436":[3,2,35],"437":[2,2,63],"438":[2,2,15],"439":[2,2,51],"440":[2,2,42],"441":[3,2,14],"442":[3,2,31],"443":[2,2,31],"444":[3,2,52],"445":[3,2,32],"446":[2,2,29],"447":[2,2,58],"448":[3,2,51],"449":[3,2,51],"450":[3,2,61],"451":[3,1,1],"452":[3,3,63],"453":[3,3,64],"454":[3,3,44],"455":[3,3,83],"456":[3,3,30],"457":[2,1,1],"458":[3,2,37],"459":[3,2,54],"460":[2,2,62],"461":[3,2,59],"462":[5,2,45],"463":[2,2,60],"464":[3,2,11],"465":[2,2,33],"466":[4,2,26],"467":[5,2,27],"468":[5,2,22],"469":[3,2,75],"470":[4,2,39],"471":[3,1,8],"472":[1,1,33],"473":[2,1,58],"474":[3,1,56],"475":[5,1,38],"476":[3,5,43],"477":[3,5,25],"478":[3,7,3],"479":[3,7,4],"480":[3,7,5],"481":[3,7,7],"482":[3,5,31],"483":[2,5,46],"484":[3,1,20],"485":[3,1,23],"486":[3,1,14],"487":[1,1,45],"488":[3,1,45],"489":[1,1,142],"490":[2,1,34],"491":[2,2,81],"492":[4,4,88],"493":[4,4,37],"494":[2,4,115],"495":[3,1,71],"496":[3,3,51],"497":[3,3,20],"498":[3,3,19],"499":[4,3,33],"500":[4,3,58],"501":[7,1,21],"502":[3,7,3],"503":[1,7,4],"504":[2,7,26],"505":[2,7,72],"506":[2,7,28],"507":[4,1,34],"508":[1,4,10],"509":[4,5,43],"510":[3,5,29],"511":[3,5,40],"512":[4,1,221],"513":[5,1,104],"514":[4,1,104],"515":[1,1,16],"516":[1,1,84],"517":[2,1,22],"518":[1,1,21],"519":[1,1,55],"520":[3,1,33],"521":[1,1,79],"522":[3,1,19],"523":[3,1,24],"524":[4,1,61],"525":[1,1,61],"526":[1,1,43],"527":[3,1,47],"528":[1,1,32],"529":[2,1,72],"530":[4,1,32],"531":[1,1,24],"532":[2,1,46],"533":[3,1,63],"534":[1,1,21],"535":[3,1,24],"536":[1,1,15],"537":[3,1,20],"538":[2,1,102],"539":[3,1,25],"540":[2,1,104],"541":[1,1,46],"542":[1,1,60],"543":[2,1,45],"544":[2,1,66],"545":[2,1,37],"546":[2,2,42],"547":[1,2,22],"548":[3,3,28],"549":[3,3,3],"550":[3,3,2],"551":[3,3,13],"552":[2,3,14],"553":[2,2,1],"554":[1,4,32],"555":[2,1,108],"556":[2,2,25],"557":[1,2,35],"558":[1,2,41],"559":[1,2,34],"560":[4,1,37],"561":[2,4,273],"562":[5,4,39],"563":[5,4,48],"564":[5,4,249],"565":[3,4,126],"566":[3,4,14],"567":[3,4,37],"568":[2,7,90],"569":[3,9,97],"570":[2,7,209],"571":[4,1,33],"572":[2,4,81],"573":[3,4,31],"574":[2,4,196],"575":[3,4,103],"576":[3,1,27],"577":[1,1,1],"578":[2,1,60],"579":[2,2,44],"580":[2,2,55],"581":[2,2,72],"582":[3,4,27],"583":[3,4,16],"584":[3,4,20],"585":[2,2,31],"586":[2,2,44],"587":[6,1,14],"588":[2,6,127],"589":[1,6,204],"590":[1,6,1],"591":[7,7,45],"592":[8,7,56],"593":[5,7,88],"594":[2,6,27],"595":[4,1,13],"596":[5,4,87],"597":[6,4,44],"598":[5,4,29],"599":[5,4,80],"600":[8,4,65],"601":[6,4,18],"602":[5,4,6],"603":[2,1,1],"604":[6,2,36],"605":[11,2,33],"606":[6,2,7],"607":[4,2,19],"608":[3,2,16],"609":[3,1,62],"610":[14,3,83],"611":[2,1,48],"612":[7,1,13],"613":[7,1,166],"614":[2,1,31],"615":[2,1,171],"616":[1,2,106],"617":[3,3,39],"618":[1,2,109],"619":[3,2,215],"620":[1,2,43],"621":[10,1,47],"622":[2,1,44],"623":[1,2,39],"624":[2,2,55],"625":[2,2,85],"626":[7,1,66],"627":[7,7,80],"628":[2,1,27],"629":[4,2,65],"630":[6,2,71],"631":[5,8,70],"632":[4,8,54],"633":[3,1,87],"634":[4,3,48],"635":[6,5,31],"636":[5,5,10],"637":[3,3,41],"638":[4,4,9],"639":[6,4,89],"640":[4,3,29],"641":[6,5,46],"642":[5,5,10],"643":[3,1,57],"644":[4,3,40],"645":[4,3,68],"646":[2,1,82],"647":[6,2,138],"648":[4,1,51],"649":[9,4,19],"650":[5,4,13],"651":[4,1,111],"652":[4,4,36],"653":[4,4,38],"654":[5,4,11],"655":[2,1,33],"656":[3,2,126],"657":[3,2,104],"658":[4,2,39],"659":[4,2,39],"660":[3,2,44],"661":[2,1,43],"662":[3,2,4],"663":[4,2,4],"664":[3,1,24],"665":[1,3,147],"666":[1,3,72],"667":[6,3,16],"668":[5,9,95],"669":[3,9,72],"670":[2,12,49],"671":[2,12,52],"672":[5,9,83],"673":[5,9,74],"674":[3,1,32],"675":[2,1,72],"676":[1,1,39],"677":[1,1,35],"678":[3,1,14],"679":[1,3,8],"680":[2,3,9],"681":[2,1,88],"682":[2,1,17],"683":[4,2,91],"684":[4,2,129],"685":[2,1,82],"686":[1,2,27],"687":[1,2,1],"688":[1,3,81],"689":[1,3,1],"690":[1,4,203],"691":[1,4,55],"692":[1,2,1],"693":[1,3,57],"694":[1,3,74],"695":[1,2,1],"696":[1,2,130],"697":[2,1,23],"698":[1,2,53],"699":[2,2,36],"700":[1,2,1],"701":[4,3,11],"702":[12,3,22],"703":[1,15,17],"704":[11,3,7],"705":[1,14,10],"706":[4,3,8],"707":[7,3,5],"708":[1,10,11],"709":[5,1,80],"710":[1,5,175],"711":[6,5,114],"712":[1,5,127],"713":[4,5,164],"714":[2,1,61],"715":[1,2,53],"716":[1,2,104],"717":[2,3,93],"718":[2,3,59],"719":[2,3,148],"720":[4,5,124],"721":[2,3,145],"722":[2,3,58],"723":[2,3,59],"724":[2,1,27],"725":[1,2,47],"726":[2,2,50],"727":[3,4,29],"728":[3,2,18],"729":[2,2,67],"730":[1,2,1],"731":[4,3,11],"732":[1,7,26],"733":[7,3,11],"734":[1,10,15],"735":[12,3,23],"736":[1,15,20],"737":[11,3,7],"738":[1,14,10],"739":[11,3,8],"740":[1,14,15],"741":[2,1,10],"742":[1,2,29],"743":[2,2,26],"744":[2,3,56],"745":[2,3,29],"746":[3,1,101],"747":[3,3,1],"748":[4,4,61],"749":[3,3,179],"750":[3,3,128],"751":[3,3,37],"752":[4,3,37],"753":[3,1,100],"754":[6,3,175],"755":[6,3,119],"756":[5,3,83],"757":[7,3,72],"758":[3,1,36],"759":[4,3,93],"760":[3,1,19],"761":[1,3,51],"762":[2,3,97],"763":[2,3,64],"764":[3,3,151],"765":[1,6,27],"766":[1,6,28],"767":[1,3,1],"768":[4,4,70],"769":[12,4,9],"770":[1,16,36],"771":[2,16,16],"772":[13,4,27],"773":[1,17,36],"774":[2,17,16],"775":[11,4,9],"776":[1,15,36],"777":[2,15,16],"778":[16,4,11],"779":[1,20,41],"780":[2,20,16],"781":[14,4,14],"782":[1,18,39],"783":[2,18,16],"784":[14,4,15],"785":[1,18,39],"786":[2,18,16],"787":[13,4,14],"788":[1,17,39],"789":[2,17,16],"790":[13,4,15],"791":[1,17,39],"792":[2,17,16],"793":[9,4,62],"794":[1,13,23],"795":[2,13,16],"796":[2,1,22],"797":[1,2,57],"798":[2,2,44],"799":[2,2,69],"800":[2,1,18],"801":[1,2,54],"802":[2,2,37],"803":[2,4,14],"804":[3,2,18],"805":[2,2,71],"806":[1,2,1],"807":[4,3,11],"808":[1,7,25],"809":[4,3,11],"810":[9,3,7],"811":[1,12,11],"812":[12,3,26],"813":[1,15,20],"814":[11,3,10],"815":[1,14,10],"816":[9,3,26],"817":[1,12,18],"818":[8,3,11],"819":[1,11,8],"820":[14,3,26],"821":[1,17,21],"822":[12,3,26],"823":[1,15,18],"824":[6,3,8],"825":[7,3,9],"826":[2,1,25],"827":[1,2,54],"828":[2,2,44],"829":[2,4,48],"830":[3,2,18],"831":[2,2,74],"832":[1,2,1],"833":[4,3,11],"834":[1,7,31],"835":[7,3,11],"836":[1,10,6],"837":[10,3,7],"838":[1,13,13],"839":[12,3,26],"840":[1,15,20],"841":[11,3,10],"842":[1,14,10],"843":[9,3,26],"844":[1,12,18],"845":[8,3,11],"846":[1,11,8],"847":[14,3,26],"848":[1,17,21],"849":[12,3,26],"850":[1,15,18],"851":[9,3,8],"852":[1,12,6],"853":[10,3,9],"854":[1,13,6],"855":[2,1,28],"856":[1,2,54],"857":[2,2,69],"858":[2,4,48],"859":[2,4,42],"860":[2,4,68],"861":[3,4,36],"862":[3,2,18],"863":[2,2,88],"864":[1,2,1],"865":[4,3,11],"866":[1,7,31],"867":[7,3,11],"868":[1,10,6],"869":[10,3,7],"870":[1,13,13],"871":[12,3,26],"872":[1,15,20],"873":[11,3,10],"874":[1,14,10],"875":[9,3,26],"876":[1,12,18],"877":[8,3,11],"878":[1,11,8],"879":[12,3,25],"880":[1,15,20],"881":[10,3,25],"882":[1,13,16],"883":[9,3,8],"884":[1,12,6],"885":[9,3,9],"886":[1,12,6],"887":[2,1,28],"888":[1,2,54],"889":[2,2,49],"890":[2,4,48],"891":[2,4,30],"892":[3,2,18],"893":[2,2,92],"894":[1,2,1],"895":[4,3,11],"896":[1,7,31],"897":[7,3,11],"898":[1,10,6],"899":[10,3,7],"900":[1,13,13],"901":[8,3,9],"902":[1,11,10],"903":[12,3,26],"904":[1,15,20],"905":[11,3,10],"906":[1,14,10],"907":[9,3,26],"908":[1,12,18],"909":[8,3,11],"910":[1,11,8],"911":[14,3,26],"912":[1,17,21],"913":[12,3,26],"914":[1,15,18],"915":[9,3,8],"916":[1,12,6],"917":[10,3,9],"918":[1,13,6],"919":[2,1,27],"920":[1,2,54],"921":[2,2,76],"922":[2,4,62],"923":[3,4,46],"924":[2,4,42],"925":[2,4,70],"926":[3,4,36],"927":[3,2,18],"928":[2,2,88],"929":[1,2,1],"930":[4,3,11],"931":[1,7,31],"932":[7,3,11],"933":[1,10,6],"934":[10,3,7],"935":[1,13,13],"936":[8,3,9],"937":[1,11,10],"938":[12,3,26],"939":[1,15,20],"940":[11,3,10],"941":[1,14,10],"942":[9,3,26],"943":[1,12,18],"944":[8,3,11],"945":[1,11,8],"946":[14,3,26],"947":[1,17,21],"948":[12,3,26],"949":[1,15,18],"950":[9,3,8],"951":[1,12,6],"952":[10,3,9],"953":[1,13,6],"954":[2,1,27],"955":[1,2,54],"956":[2,2,71],"957":[2,4,62],"958":[2,4,42],"959":[2,4,70],"960":[3,4,36],"961":[3,2,18],"962":[2,2,88],"963":[1,2,1],"964":[4,3,11],"965":[1,7,31],"966":[7,3,11],"967":[1,10,6],"968":[10,3,7],"969":[1,13,13],"970":[8,3,9],"971":[1,11,10],"972":[12,3,26],"973":[1,15,20],"974":[11,3,10],"975":[1,14,10],"976":[9,3,26],"977":[1,12,18],"978":[8,3,11],"979":[1,11,8],"980":[14,3,26],"981":[1,17,21],"982":[12,3,26],"983":[1,15,18],"984":[9,3,8],"985":[1,12,6],"986":[10,3,9],"987":[1,13,6],"988":[2,1,27],"989":[1,2,54],"990":[2,2,71],"991":[2,4,48],"992":[2,4,42],"993":[2,4,70],"994":[3,4,36],"995":[3,2,18],"996":[2,2,88],"997":[1,2,1],"998":[4,3,11],"999":[1,7,31],"1000":[7,3,11],"1001":[1,10,6],"1002":[10,3,7],"1003":[1,13,13],"1004":[8,3,9],"1005":[1,11,10],"1006":[12,3,26],"1007":[1,15,20],"1008":[11,3,10],"1009":[1,14,10],"1010":[9,3,26],"1011":[1,12,18],"1012":[8,3,11],"1013":[1,11,8],"1014":[14,3,26],"1015":[1,17,21],"1016":[12,3,26],"1017":[1,15,18],"1018":[9,3,8],"1019":[1,12,6],"1020":[10,3,9],"1021":[1,13,6],"1022":[2,1,27],"1023":[1,2,54],"1024":[2,2,75],"1025":[2,4,48],"1026":[2,4,40],"1027":[2,4,70],"1028":[3,4,36],"1029":[3,2,18],"1030":[2,2,88],"1031":[1,2,1],"1032":[4,3,11],"1033":[1,7,31],"1034":[7,3,11],"1035":[1,10,6],"1036":[10,3,7],"1037":[1,13,13],"1038":[8,3,9],"1039":[1,11,10],"1040":[12,3,26],"1041":[1,15,20],"1042":[11,3,10],"1043":[1,14,10],"1044":[9,3,26],"1045":[1,12,18],"1046":[8,3,11],"1047":[1,11,8],"1048":[14,3,26],"1049":[1,17,21],"1050":[12,3,26],"1051":[1,15,18],"1052":[9,3,8],"1053":[1,12,6],"1054":[10,3,9],"1055":[1,13,6],"1056":[2,1,27],"1057":[1,2,54],"1058":[2,2,74],"1059":[2,4,48],"1060":[2,4,37],"1061":[2,4,70],"1062":[3,4,36],"1063":[3,2,18],"1064":[2,2,88],"1065":[1,2,1],"1066":[4,3,11],"1067":[1,7,31],"1068":[7,3,11],"1069":[1,10,6],"1070":[10,3,7],"1071":[1,13,13],"1072":[8,3,9],"1073":[1,11,10],"1074":[12,3,26],"1075":[1,15,20],"1076":[11,3,10],"1077":[1,14,10],"1078":[9,3,26],"1079":[1,12,18],"1080":[8,3,11],"1081":[1,11,8],"1082":[12,3,25],"1083":[1,15,20],"1084":[10,3,26],"1085":[1,13,16],"1086":[9,3,8],"1087":[1,12,6],"1088":[9,3,9],"1089":[1,12,6],"1090":[2,1,27],"1091":[1,2,54],"1092":[2,2,73],"1093":[2,4,62],"1094":[3,4,46],"1095":[2,4,72],"1096":[3,4,36],"1097":[3,2,18],"1098":[2,2,88],"1099":[1,2,1],"1100":[4,3,11],"1101":[1,7,31],"1102":[7,3,11],"1103":[1,10,6],"1104":[10,3,7],"1105":[1,13,13],"1106":[8,3,9],"1107":[1,11,10],"1108":[12,3,26],"1109":[1,15,20],"1110":[11,3,10],"1111":[1,14,10],"1112":[9,3,26],"1113":[1,12,18],"1114":[8,3,11],"1115":[1,11,8],"1116":[12,3,25],"1117":[1,15,20],"1118":[10,3,26],"1119":[1,13,16],"1120":[9,3,8],"1121":[1,12,6],"1122":[9,3,9],"1123":[1,12,6],"1124":[2,1,27],"1125":[1,2,54],"1126":[2,2,73],"1127":[2,4,62],"1128":[3,4,46],"1129":[2,4,72],"1130":[3,4,36],"1131":[3,2,18],"1132":[2,2,88],"1133":[1,2,1],"1134":[4,3,11],"1135":[1,7,31],"1136":[7,3,11],"1137":[1,10,6],"1138":[10,3,7],"1139":[1,13,13],"1140":[8,3,9],"1141":[1,11,10],"1142":[12,3,26],"1143":[1,15,20],"1144":[11,3,10],"1145":[1,14,10],"1146":[9,3,26],"1147":[1,12,18],"1148":[8,3,11],"1149":[1,11,8],"1150":[12,3,25],"1151":[1,15,20],"1152":[10,3,26],"1153":[1,13,16],"1154":[9,3,8],"1155":[1,12,6],"1156":[9,3,9],"1157":[1,12,6],"1158":[2,1,27],"1159":[1,2,54],"1160":[2,2,75],"1161":[2,4,62],"1162":[2,4,44],"1163":[2,4,72],"1164":[3,4,36],"1165":[3,2,18],"1166":[2,2,88],"1167":[1,2,1],"1168":[4,3,11],"1169":[1,7,31],"1170":[7,3,11],"1171":[1,10,12],"1172":[10,3,7],"1173":[1,13,13],"1174":[8,3,9],"1175":[1,11,10],"1176":[12,3,26],"1177":[1,15,20],"1178":[11,3,10],"1179":[1,14,10],"1180":[9,3,26],"1181":[1,12,18],"1182":[8,3,11],"1183":[1,11,8],"1184":[12,3,25],"1185":[1,15,20],"1186":[10,3,26],"1187":[1,13,16],"1188":[9,3,8],"1189":[1,12,6],"1190":[9,3,9],"1191":[1,12,6],"1192":[3,1,79],"1193":[1,3,56],"1194":[2,4,44],"1195":[1,4,61],"1196":[3,3,59],"1197":[2,6,90],"1198":[1,6,111],"1199":[3,3,62],"1200":[2,6,121],"1201":[1,6,124],"1202":[4,3,1],"1203":[3,7,99],"1204":[3,7,107],"1205":[3,7,95],"1206":[2,3,17],"1207":[1,5,75],"1208":[1,5,47],"1209":[1,3,48],"1210":[6,3,6],"1211":[3,9,35],"1212":[1,9,34],"1213":[6,9,82],"1214":[2,1,39],"1215":[1,2,53],"1216":[2,2,44],"1217":[2,4,48],"1218":[3,2,18],"1219":[2,2,86],"1220":[1,2,1],"1221":[4,3,11],"1222":[1,7,31],"1223":[7,3,11],"1224":[1,10,6],"1225":[10,3,7],"1226":[1,13,13],"1227":[8,3,9],"1228":[1,11,10],"1229":[12,3,26],"1230":[1,15,20],"1231":[11,3,10],"1232":[1,14,10],"1233":[9,3,26],"1234":[1,12,18],"1235":[8,3,11],"1236":[1,11,8],"1237":[14,3,26],"1238":[1,17,21],"1239":[12,3,26],"1240":[1,15,18],"1241":[9,3,8],"1242":[1,12,6],"1243":[10,3,9],"1244":[1,13,6],"1245":[3,1,19],"1246":[1,3,51],"1247":[2,3,69],"1248":[3,3,135],"1249":[1,3,1],"1250":[4,4,18],"1251":[12,4,5],"1252":[1,16,80],"1253":[2,16,20],"1254":[7,4,9],"1255":[1,11,8],"1256":[2,11,11],"1257":[6,4,9],"1258":[2,10,14],"1259":[10,4,9],"1260":[1,14,21],"1261":[2,14,16],"1262":[9,4,9],"1263":[1,13,22],"1264":[2,13,16],"1265":[4,4,21],"1266":[2,1,40],"1267":[1,2,46],"1268":[2,2,41],"1269":[3,2,94],"1270":[1,2,1],"1271":[7,3,18],"1272":[1,10,31],"1273":[7,3,5],"1274":[1,10,8],"1275":[6,3,5],"1276":[2,9,19],"1277":[10,3,4],"1278":[1,13,21],"1279":[9,3,4],"1280":[1,12,22],"1281":[5,3,19],"1282":[2,8,9],"1283":[2,1,68],"1284":[1,2,53],"1285":[2,2,72],"1286":[2,4,63],"1287":[2,4,78],"1288":[2,4,80],"1289":[2,2,34],"1290":[2,3,49],"1291":[2,3,43],"1292":[2,3,56],"1293":[2,3,22],"1294":[2,3,49],"1295":[3,2,34],"1296":[2,5,47],"1297":[4,7,97],"1298":[3,7,45],"1299":[2,5,84],"1300":[3,6,57],"1301":[2,6,27],"1302":[2,5,23],"1303":[2,5,109],"1304":[1,2,1],"1305":[4,3,11],"1306":[12,3,22],"1307":[1,15,17],"1308":[11,3,7],"1309":[1,14,10],"1310":[4,3,8],"1311":[8,1,74],"1312":[1,8,48],"1313":[2,1,89],"1314":[4,1,25],"1315":[5,4,77],"1316":[3,9,76],"1317":[10,9,35],"1318":[5,4,68],"1319":[4,4,88],"1320":[25,8,78],"1321":[2,1,13],"1322":[1,2,60],"1323":[2,2,9],"1324":[4,3,16],"1325":[4,3,21],"1326":[4,3,26],"1327":[5,2,52],"1328":[2,2,18],"1329":[7,4,96],"1330":[6,4,63],"1331":[11,4,46],"1332":[6,2,100],"1333":[6,2,50],"1334":[3,1,1],"1335":[4,3,25],"1336":[8,3,41],"1337":[8,3,25],"1338":[12,3,40],"1339":[7,3,22],"1340":[7,3,30],"1341":[10,3,16],"1342":[10,13,47],"1343":[9,3,132],"1344":[2,1,19],"1345":[6,2,24],"1346":[6,2,36],"1347":[10,2,40],"1348":[9,2,99],"1349":[9,2,58],"1350":[6,2,46],"1351":[5,2,67],"1352":[3,2,29],"1353":[3,2,57],"1354":[4,2,58],"1355":[10,2,5],"1356":[4,2,78],"1357":[6,2,46],"1358":[5,2,41],"1359":[8,2,43],"1360":[7,2,6],"1361":[4,2,52],"1362":[8,2,58],"1363":[2,1,105],"1364":[3,1,226],"1365":[1,3,20],"1366":[5,4,98],"1367":[5,4,176],"1368":[2,1,43],"1369":[1,2,2],"1370":[2,2,3],"1371":[3,2,4],"1372":[4,2,5],"1373":[2,2,3],"1374":[2,1,1],"1375":[7,2,36],"1376":[2,2,173],"1377":[4,2,46],"1378":[9,2,33],"1379":[8,2,70],"1380":[11,2,19],"1381":[6,2,31],"1382":[3,2,47],"1383":[2,2,58],"1384":[3,2,17],"1385":[2,2,1],"1386":[6,4,10],"1387":[11,2,58],"1388":[1,1,81],"1389":[2,1,50],"1390":[1,1,54],"1391":[3,1,100],"1392":[2,3,86],"1393":[2,3,56],"1394":[10,3,8],"1395":[1,3,72],"1396":[2,3,58],"1397":[8,3,27],"1398":[1,3,56],"1399":[3,1,53],"1400":[1,3,15],"1401":[3,3,17],"1402":[2,1,1],"1403":[2,3,31],"1404":[2,5,17],"1405":[3,3,89],"1406":[2,3,36],"1407":[2,3,89],"1408":[3,5,18],"1409":[4,1,148],"1410":[4,4,199],"1411":[3,4,9],"1412":[2,7,30],"1413":[2,7,136],"1414":[5,7,61],"1415":[4,1,69],"1416":[1,4,65],"1417":[2,4,271],"1418":[2,4,35],"1419":[1,4,80],"1420":[1,4,82],"1421":[1,1,49],"1422":[4,1,201],"1423":[1,4,150],"1424":[3,1,38],"1425":[1,3,109],"1426":[2,3,48],"1427":[2,3,130],"1428":[1,1,146],"1429":[3,1,20],"1430":[5,4,43],"1431":[6,4,130],"1432":[5,4,21],"1433":[7,1,105],"1434":[3,7,54],"1435":[3,7,20],"1436":[2,8,37],"1437":[6,7,1],"1438":[1,12,64],"1439":[1,12,47],"1440":[1,1,73],"1441":[5,1,58],"1442":[5,5,47],"1443":[2,5,24],"1444":[2,7,79],"1445":[5,1,1],"1446":[6,5,193],"1447":[2,11,91],"1448":[4,11,129],"1449":[2,11,32],"1450":[3,11,58],"1451":[3,5,73],"1452":[4,8,30],"1453":[6,8,26],"1454":[6,8,29],"1455":[6,8,77],"1456":[7,8,21],"1457":[10,8,38],"1458":[3,8,10],"1459":[3,8,8],"1460":[5,8,11],"1461":[3,5,1],"1462":[2,8,98],"1463":[5,1,98],"1464":[2,5,115],"1465":[3,7,77],"1466":[5,5,61],"1467":[4,5,114],"1468":[8,5,36],"1469":[1,5,14],"1470":[2,6,130],"1471":[2,6,124],"1472":[2,6,252],"1473":[1,1,50],"1474":[3,1,59],"1475":[1,4,25],"1476":[3,1,11],"1477":[3,4,76],"1478":[2,7,49],"1479":[4,8,33],"1480":[3,4,98],"1481":[3,4,63],"1482":[1,7,39],"1483":[3,4,75],"1484":[2,1,88],"1485":[1,1,180],"1486":[2,1,129],"1487":[1,1,58],"1488":[3,1,67],"1489":[1,1,51],"1490":[2,1,165],"1491":[2,3,86],"1492":[2,3,166],"1493":[2,1,175],"1494":[2,1,3],"1495":[2,1,52],"1496":[9,1,20],"1497":[4,9,41],"1498":[5,9,101],"1499":[7,9,92],"1500":[7,9,35],"1501":[1,9,54],"1502":[3,9,48],"1503":[7,9,173],"1504":[7,9,17],"1505":[7,9,15],"1506":[7,9,14],"1507":[7,9,10],"1508":[7,9,12],"1509":[6,9,6],"1510":[4,9,79],"1511":[6,9,3],"1512":[7,9,10],"1513":[7,9,9],"1514":[7,9,25],"1515":[7,9,16],"1516":[7,9,14],"1517":[3,9,139],"1518":[2,9,139],"1519":[6,9,47],"1520":[4,9,18],"1521":[1,10,48],"1522":[1,10,94],"1523":[3,11,75],"1524":[1,1,32],"1525":[5,1,92],"1526":[5,1,60],"1527":[3,1,160],"1528":[3,4,121],"1529":[2,1,74],"1530":[1,2,20],"1531":[3,1,1],"1532":[2,4,112],"1533":[3,5,159],"1534":[2,4,73],"1535":[3,5,111],"1536":[2,4,24],"1537":[5,1,50],"1538":[1,6,213],"1539":[1,6,84],"1540":[1,1,22],"1541":[1,1,76],"1542":[1,1,32],"1543":[1,1,34],"1544":[2,1,100],"1545":[4,3,62],"1546":[3,3,91],"1547":[2,1,24],"1548":[2,3,19],"1549":[2,3,31],"1550":[2,3,37],"1551":[2,3,69],"1552":[2,1,1],"1553":[2,3,51],"1554":[2,3,51],"1555":[3,1,1],"1556":[2,4,103],"1557":[2,4,56],"1558":[2,1,84],"1559":[1,1,1],"1560":[4,2,7],"1561":[4,2,5],"1562":[4,2,5],"1563":[4,2,5],"1564":[4,2,5],"1565":[4,2,5],"1566":[6,2,5],"1567":[1,8,11],"1568":[7,2,6],"1569":[2,9,10],"1570":[6,2,6],"1571":[2,8,7],"1572":[5,2,7],"1573":[5,2,5],"1574":[5,2,5],"1575":[6,2,7],"1576":[2,8,7],"1577":[1,1,11],"1578":[1,1,16],"1579":[2,1,22],"1580":[2,1,9],"1581":[1,1,1],"1582":[7,2,4],"1583":[2,9,9],"1584":[1,1,1],"1585":[9,2,8],"1586":[1,2,12],"1587":[9,2,8],"1588":[1,2,12],"1589":[1,1,110],"1590":[2,1,119],"1591":[2,1,81],"1592":[1,1,48],"1593":[2,1,174],"1594":[6,2,137],"1595":[2,6,80],"1596":[3,2,1],"1597":[3,3,85],"1598":[2,3,51],"1599":[1,3,20],"1600":[8,3,78],"1601":[4,3,45],"1602":[1,1,104],"1603":[3,1,56],"1604":[2,1,47],"1605":[1,1,148],"1606":[1,1,49],"1607":[2,1,12],"1608":[2,3,42],"1609":[4,3,108],"1610":[2,3,48],"1611":[4,3,24],"1612":[9,3,193],"1613":[8,3,69],"1614":[2,3,38],"1615":[5,5,47],"1616":[5,5,34],"1617":[3,3,92],"1618":[3,3,98],"1619":[3,3,61],"1620":[6,6,85],"1621":[2,1,40],"1622":[2,1,157],"1623":[1,1,60],"1624":[1,1,37],"1625":[1,1,149],"1626":[2,1,50],"1627":[7,2,103],"1628":[8,2,85],"1629":[5,2,22],"1630":[3,6,105],"1631":[2,6,19],"1632":[3,6,25],"1633":[5,6,79],"1634":[3,6,64],"1635":[4,6,31],"1636":[4,6,31],"1637":[5,6,15],"1638":[2,6,75],"1639":[2,1,63],"1640":[3,2,66],"1641":[1,2,76],"1642":[1,2,1],"1643":[11,3,28],"1644":[13,3,15],"1645":[1,1,42],"1646":[1,1,12],"1647":[1,1,53],"1648":[1,1,63],"1649":[1,1,1],"1650":[3,2,6],"1651":[1,5,36],"1652":[4,2,13],"1653":[6,2,10],"1654":[6,2,10],"1655":[6,2,8],"1656":[6,2,8],"1657":[6,2,8],"1658":[6,2,8],"1659":[8,2,13],"1660":[1,10,16],"1661":[7,1,156],"1662":[1,7,123],"1663":[4,8,67],"1664":[2,8,69],"1665":[1,1,104],"1666":[2,1,84],"1667":[2,1,128],"1668":[1,1,112],"1669":[1,1,19],"1670":[2,1,96],"1671":[2,1,35],"1672":[1,2,34],"1673":[4,2,36],"1674":[1,2,17],"1675":[1,3,37],"1676":[1,2,48],"1677":[2,1,1],"1678":[5,2,77],"1679":[3,2,17],"1680":[2,2,71],"1681":[1,3,197],"1682":[1,3,23],"1683":[3,4,22],"1684":[1,6,71],"1685":[1,6,107],"1686":[3,4,210],"1687":[3,3,44],"1688":[4,3,15],"1689":[3,2,34],"1690":[3,4,73],"1691":[3,4,21],"1692":[3,4,38],"1693":[3,4,23],"1694":[3,4,32],"1695":[3,4,25],"1696":[3,1,1],"1697":[2,3,52],"1698":[1,3,12],"1699":[2,3,58],"1700":[1,3,1],"1701":[2,4,25],"1702":[3,4,90],"1703":[1,3,1],"1704":[7,4,17],"1705":[1,11,10],"1706":[4,4,10],"1707":[4,4,13],"1708":[7,4,15],"1709":[1,11,10],"1710":[4,4,5],"1711":[9,4,9],"1712":[1,13,20],"1713":[6,4,31],"1714":[1,10,7],"1715":[7,4,9],"1716":[1,11,8],"1717":[8,4,22],"1718":[1,12,13],"1719":[9,4,5],"1720":[1,13,34],"1721":[11,4,20],"1722":[1,15,36],"1723":[5,4,12],"1724":[2,9,7],"1725":[9,4,7],"1726":[1,13,18],"1727":[7,4,7],"1728":[1,11,13],"1729":[2,11,20],"1730":[6,4,24],"1731":[1,10,7],"1732":[6,4,18],"1733":[1,10,9],"1734":[8,4,13],"1735":[1,12,11],"1736":[8,4,17],"1737":[1,12,11],"1738":[1,1,62],"1739":[1,1,48],"1740":[1,1,73],"1741":[2,2,86],"1742":[1,2,103],"1743":[2,3,62],"1744":[1,1,41],"1745":[1,1,1],"1746":[3,2,6],"1747":[1,5,48],"1748":[4,2,5],"1749":[1,6,24],"1750":[4,2,14],"1751":[7,2,10],"1752":[1,9,13],"1753":[7,2,10],"1754":[1,9,13],"1755":[7,2,10],"1756":[1,9,7],"1757":[2,9,14],"1758":[9,2,7],"1759":[1,11,11],"1760":[8,2,7],"1761":[1,10,10],"1762":[2,1,58],"1763":[1,2,27],"1764":[1,2,14],"1765":[1,2,66],"1766":[2,1,99],"1767":[13,2,30],"1768":[1,2,33],"1769":[3,2,34],"1770":[7,3,40],"1771":[8,3,14],"1772":[12,3,20],"1773":[13,3,37],"1774":[2,2,73],"1775":[3,2,1],"1776":[5,5,109],"1777":[5,5,80],"1778":[2,2,1],"1779":[4,4,107],"1780":[1,2,18],"1781":[5,2,192],"1782":[5,2,76],"1783":[5,2,36],"1784":[1,11,92],"1785":[1,11,87],"1786":[3,11,135],"1787":[3,2,95],"1788":[7,2,165],"1789":[2,1,64],"1790":[6,2,46],"1791":[2,2,77],"1792":[2,2,36],"1793":[1,2,25],"1794":[6,2,61],"1795":[7,2,106],"1796":[8,1,33],"1797":[1,8,18],"1798":[1,8,72],"1799":[2,8,1],"1800":[1,10,39],"1801":[3,10,94],"1802":[3,10,101],"1803":[3,10,62],"1804":[1,8,82],"1805":[1,8,11],"1806":[1,8,1],"1807":[5,9,9],"1808":[5,9,9],"1809":[8,9,13],"1810":[1,17,10],"1811":[2,17,9],"1812":[4,9,9],"1813":[4,9,5],"1814":[6,9,7],"1815":[8,9,18],"1816":[1,17,7],"1817":[2,17,11],"1818":[7,9,22],"1819":[6,9,6],"1820":[9,9,8],"1821":[1,18,8],"1822":[2,18,7],"1823":[10,9,8],"1824":[1,19,11],"1825":[2,19,7],"1826":[11,9,8],"1827":[1,20,13],"1828":[2,20,7],"1829":[12,9,8],"1830":[1,21,15],"1831":[2,21,7],"1832":[13,9,8],"1833":[1,22,17],"1834":[2,22,7],"1835":[2,1,80],"1836":[2,2,63],"1837":[3,2,63],"1838":[6,4,67],"1839":[6,4,54],"1840":[4,2,37],"1841":[4,2,32],"1842":[4,2,14],"1843":[2,5,53],"1844":[3,1,35],"1845":[2,3,66],"1846":[2,3,173],"1847":[1,3,44],"1848":[1,3,46],"1849":[3,3,132],"1850":[4,3,157],"1851":[1,3,75],"1852":[4,3,132],"1853":[2,3,25],"1854":[1,3,1],"1855":[1,4,85],"1856":[1,3,1],"1857":[5,4,7],"1858":[6,4,14],"1859":[5,4,5],"1860":[6,4,12],"1861":[5,4,5],"1862":[6,4,12],"1863":[7,4,9],"1864":[2,11,7],"1865":[10,4,32],"1866":[1,14,16],"1867":[10,4,31],"1868":[1,14,9],"1869":[7,4,6],"1870":[1,11,8],"1871":[8,4,13],"1872":[1,12,8],"1873":[5,4,7],"1874":[6,4,13],"1875":[6,4,7],"1876":[7,4,13],"1877":[8,4,6],"1878":[2,12,8],"1879":[5,4,6],"1880":[7,4,13],"1881":[6,4,6],"1882":[7,4,13],"1883":[8,4,7],"1884":[2,12,9],"1885":[6,4,5],"1886":[7,4,12],"1887":[6,4,5],"1888":[7,4,12],"1889":[8,4,5],"1890":[1,12,11],"1891":[9,4,12],"1892":[1,13,11],"1893":[8,4,6],"1894":[2,12,9],"1895":[7,4,6],"1896":[1,11,8],"1897":[8,4,13],"1898":[1,12,8],"1899":[6,4,7],"1900":[7,4,13],"1901":[7,4,7],"1902":[8,4,13],"1903":[8,4,7],"1904":[2,12,5],"1905":[7,4,11],"1906":[8,4,9],"1907":[2,12,11],"1908":[7,4,18],"1909":[2,11,3],"1910":[7,4,18],"1911":[2,11,9],"1912":[11,4,18],"1913":[1,4,16],"1914":[2,5,3],"1915":[11,4,18],"1916":[1,4,16],"1917":[2,5,9],"1918":[1,1,1],"1919":[1,1,58],"1920":[1,2,17],"1921":[2,2,15],"1922":[2,2,15],"1923":[5,3,80],"1924":[13,3,66],"1925":[1,2,282],"1926":[1,2,50],"1927":[1,2,1],"1928":[2,3,7],"1929":[3,3,10],"1930":[2,1,31],"1931":[6,2,18],"1932":[3,7,19],"1933":[3,7,65],"1934":[3,2,97],"1935":[2,4,146],"1936":[2,4,154],"1937":[2,4,131],"1938":[2,4,78],"1939":[2,4,173],"1940":[4,4,66],"1941":[8,2,22],"1942":[2,1,1],"1943":[2,2,45],"1944":[1,2,27],"1945":[2,2,97],"1946":[2,2,135],"1947":[3,2,127],"1948":[2,2,112],"1949":[2,2,158],"1950":[2,4,14],"1951":[2,4,40],"1952":[6,2,151],"1953":[6,7,203],"1954":[2,2,280],"1955":[5,2,29],"1956":[2,1,54],"1957":[1,2,80],"1958":[1,2,56],"1959":[3,2,52],"1960":[2,2,64],"1961":[1,2,81],"1962":[1,2,166],"1963":[1,2,8],"1964":[2,1,72],"1965":[2,2,38],"1966":[3,4,60],"1967":[3,4,80],"1968":[2,4,210],"1969":[3,4,36],"1970":[2,7,82],"1971":[2,7,88],"1972":[2,7,18],"1973":[2,4,45],"1974":[2,6,194],"1975":[3,6,36],"1976":[3,6,68],"1977":[3,6,73],"1978":[3,4,62],"1979":[3,4,57],"1980":[2,4,79],"1981":[2,4,68],"1982":[3,4,57],"1983":[5,4,210],"1984":[2,4,76],"1985":[2,2,168],"1986":[3,2,172],"1987":[3,2,93],"1988":[3,2,99],"1989":[5,2,84],"1990":[3,1,133],"1991":[1,3,1],"1992":[3,4,73],"1993":[4,4,71],"1994":[3,4,147],"1995":[2,3,22],"1996":[3,5,64],"1997":[3,5,55],"1998":[1,1,51],"1999":[3,1,131],"2000":[9,3,70],"2001":[4,3,70],"2002":[4,3,24],"2003":[4,7,73],"2004":[3,7,26],"2005":[11,9,20],"2006":[10,18,52],"2007":[2,3,19],"2008":[10,5,118],"2009":[7,5,69],"2010":[3,5,1],"2011":[7,6,93],"2012":[10,6,69],"2013":[8,5,89],"2014":[4,3,104],"2015":[7,3,64],"2016":[2,1,81],"2017":[1,2,13],"2018":[1,2,42],"2019":[1,2,1],"2020":[5,3,6],"2021":[8,3,7],"2022":[1,11,13],"2023":[8,3,7],"2024":[1,11,13],"2025":[8,3,10],"2026":[1,11,13],"2027":[8,3,10],"2028":[1,11,13],"2029":[9,3,7],"2030":[1,12,13],"2031":[2,12,7],"2032":[5,3,8],"2033":[8,3,6],"2034":[2,11,7],"2035":[8,3,6],"2036":[1,11,10],"2037":[4,1,67],"2038":[6,4,26],"2039":[2,4,32],"2040":[2,6,46],"2041":[5,6,61],"2042":[5,6,59],"2043":[2,6,104],"2044":[3,6,82],"2045":[2,4,1],"2046":[4,6,88],"2047":[2,6,38],"2048":[2,6,104],"2049":[3,6,20],"2050":[5,6,23],"2051":[3,6,47],"2052":[2,6,20],"2053":[2,6,37],"2054":[2,1,67],"2055":[1,2,12],"2056":[2,2,39],"2057":[5,2,186],"2058":[5,2,48],"2059":[2,2,134],"2060":[1,2,1],"2061":[9,3,14],"2062":[1,12,17],"2063":[9,3,5],"2064":[1,12,19],"2065":[2,1,73],"2066":[6,2,33],"2067":[1,2,18],"2068":[2,2,176],"2069":[3,2,108],"2070":[2,5,86],"2071":[2,5,87],"2072":[5,2,56],"2073":[3,7,62],"2074":[3,7,74],"2075":[2,7,70],"2076":[6,2,102],"2077":[7,2,90],"2078":[1,2,34],"2079":[4,2,116],"2080":[3,1,36],"2081":[2,3,71],"2082":[2,3,174],"2083":[1,3,47],"2084":[1,3,54],"2085":[3,3,241],"2086":[5,4,119],"2087":[5,4,51],"2088":[4,3,160],"2089":[1,3,48],"2090":[1,3,75],"2091":[4,3,163],"2092":[2,3,25],"2093":[1,3,1],"2094":[1,4,97],"2095":[2,4,100],"2096":[1,6,130],"2097":[5,6,49],"2098":[1,3,1],"2099":[5,4,7],"2100":[6,4,14],"2101":[5,4,5],"2102":[6,4,12],"2103":[5,4,5],"2104":[6,4,12],"2105":[7,4,9],"2106":[2,11,7],"2107":[12,4,32],"2108":[1,16,21],"2109":[12,4,31],"2110":[1,16,13],"2111":[7,4,6],"2112":[1,11,8],"2113":[8,4,13],"2114":[1,12,8],"2115":[5,4,7],"2116":[6,4,13],"2117":[6,4,7],"2118":[7,4,13],"2119":[8,4,6],"2120":[2,12,8],"2121":[6,4,6],"2122":[7,4,13],"2123":[6,4,6],"2124":[7,4,13],"2125":[8,4,7],"2126":[2,12,9],"2127":[6,4,6],"2128":[7,4,13],"2129":[6,4,6],"2130":[7,4,13],"2131":[8,4,7],"2132":[2,12,9],"2133":[6,4,7],"2134":[7,4,14],"2135":[6,4,7],"2136":[7,4,14],"2137":[8,4,8],"2138":[2,12,9],"2139":[6,4,5],"2140":[7,4,12],"2141":[6,4,5],"2142":[7,4,12],"2143":[8,4,5],"2144":[1,12,11],"2145":[9,4,12],"2146":[1,13,11],"2147":[8,4,6],"2148":[2,12,9],"2149":[8,4,6],"2150":[1,12,8],"2151":[9,4,13],"2152":[1,13,8],"2153":[6,4,7],"2154":[7,4,13],"2155":[7,4,7],"2156":[8,4,13],"2157":[8,4,7],"2158":[2,12,5],"2159":[10,4,10],"2160":[1,4,16],"2161":[11,4,17],"2162":[1,15,16],"2163":[7,4,11],"2164":[2,11,10],"2165":[7,4,11],"2166":[8,4,9],"2167":[2,12,11],"2168":[7,4,18],"2169":[2,11,3],"2170":[7,4,18],"2171":[2,11,9],"2172":[12,4,18],"2173":[1,4,16],"2174":[2,5,3],"2175":[12,4,18],"2176":[1,4,16],"2177":[2,5,9],"2178":[2,1,104],"2179":[1,2,109],"2180":[2,3,37],"2181":[1,2,164],"2182":[1,2,79],"2183":[3,2,99],"2184":[4,5,73],"2185":[4,5,106],"2186":[6,5,31],"2187":[2,5,91],"2188":[2,2,72],"2189":[3,3,167],"2190":[5,3,42],"2191":[3,3,162],"2192":[6,3,37],"2193":[2,3,34],"2194":[1,2,36],"2195":[3,3,19],"2196":[4,3,1],"2197":[3,6,12],"2198":[2,6,75],"2199":[3,6,35],"2200":[4,6,25],"2201":[4,6,43],"2202":[2,6,24],"2203":[2,6,23],"2204":[1,6,17],"2205":[1,2,56],"2206":[5,2,50],"2207":[2,2,65],"2208":[2,2,52],"2209":[1,2,27],"2210":[1,3,90],"2211":[1,3,37],"2212":[1,1,34],"2213":[2,1,34],"2214":[2,1,32],"2215":[1,1,12],"2216":[1,1,34],"2217":[1,1,35],"2218":[1,1,37],"2219":[2,1,52],"2220":[1,2,32],"2221":[2,2,42],"2222":[1,2,89],"2223":[2,3,31],"2224":[1,2,1],"2225":[2,3,42],"2226":[2,3,34],"2227":[1,2,1],"2228":[6,3,16],"2229":[1,9,8],"2230":[11,3,13],"2231":[1,14,22],"2232":[7,3,23],"2233":[1,10,8],"2234":[12,3,26],"2235":[1,15,22],"2236":[6,3,6],"2237":[1,9,8],"2238":[7,3,22],"2239":[1,10,14],"2240":[7,3,22],"2241":[1,10,12],"2242":[7,3,21],"2243":[1,10,11],"2244":[7,3,16],"2245":[1,10,11],"2246":[5,3,15],"2247":[4,3,18],"2248":[6,3,18],"2249":[1,1,45],"2250":[4,1,33],"2251":[1,1,25],"2252":[1,1,47],"2253":[1,1,54],"2254":[1,1,58],"2255":[6,1,43],"2256":[1,6,32],"2257":[1,6,33],"2258":[1,6,43],"2259":[1,6,124],"2260":[2,6,104],"2261":[2,1,115],"2262":[2,2,21],"2263":[2,2,19],"2264":[2,4,49],"2265":[1,5,107],"2266":[2,4,42],"2267":[2,4,70],"2268":[2,2,31],"2269":[2,4,54],"2270":[2,4,29],"2271":[3,6,58],"2272":[4,6,128],"2273":[3,6,169],"2274":[3,6,46],"2275":[2,4,178],"2276":[3,4,144],"2277":[5,4,193],"2278":[3,4,207],"2279":[4,2,54],"2280":[2,6,87],"2281":[2,2,51],"2282":[3,1,1],"2283":[2,3,35],"2284":[1,3,89],"2285":[2,3,100],"2286":[3,3,125],"2287":[2,3,77],"2288":[2,3,101],"2289":[3,3,60],"2290":[1,3,191],"2291":[3,1,79],"2292":[4,3,77],"2293":[4,3,106],"2294":[4,3,124],"2295":[2,7,123],"2296":[1,7,131],"2297":[5,7,118],"2298":[4,3,169],"2299":[2,3,12],"2300":[4,3,196],"2301":[2,3,152],"2302":[3,1,60],"2303":[1,3,70],"2304":[2,3,63],"2305":[2,3,72],"2306":[1,5,22],"2307":[13,1,1],"2308":[1,13,67],"2309":[5,13,269],"2310":[2,13,198],"2311":[1,13,1],"2312":[10,14,62],"2313":[2,14,33],"2314":[9,15,27],"2315":[12,15,75],"2316":[6,15,101],"2317":[7,15,335],"2318":[11,15,167],"2319":[12,15,233],"2320":[2,1,89],"2321":[1,2,25],"2322":[1,2,47],"2323":[1,2,38],"2324":[1,1,17],"2325":[1,1,55],"2326":[1,1,49],"2327":[2,1,104],"2328":[2,3,50],"2329":[2,1,148],"2330":[5,5,197],"2331":[2,1,246],"2332":[1,1,64],"2333":[1,1,1],"2334":[8,2,7],"2335":[2,10,7],"2336":[8,2,6],"2337":[1,10,8],"2338":[6,2,8],"2339":[7,2,8],"2340":[9,2,11],"2341":[1,11,7],"2342":[9,2,11],"2343":[1,11,7],"2344":[5,2,48],"2345":[5,2,40],"2346":[5,2,40],"2347":[8,2,18],"2348":[1,10,11],"2349":[8,2,7],"2350":[1,10,8],"2351":[7,2,16],"2352":[1,9,12],"2353":[2,9,8],"2354":[9,2,12],"2355":[1,11,10],"2356":[2,11,6],"2357":[7,2,12],"2358":[1,9,10],"2359":[4,2,5],"2360":[5,2,6],"2361":[2,7,6],"2362":[6,2,10],"2363":[2,8,7],"2364":[7,2,9],"2365":[1,9,17],"2366":[2,9,7],"2367":[6,2,9],"2368":[2,8,8],"2369":[4,2,11],"2370":[4,2,5],"2371":[4,2,10],"2372":[1,6,10],"2373":[2,1,1],"2374":[4,2,94],"2375":[4,5,89],"2376":[4,2,34],"2377":[2,2,88],"2378":[5,1,49],"2379":[1,5,137],"2380":[2,5,20],"2381":[1,5,115],"2382":[5,1,89],"2383":[2,5,129],"2384":[2,7,108],"2385":[2,7,37],"2386":[1,5,120],"2387":[2,6,57],"2388":[1,5,132],"2389":[1,5,101],"2390":[1,5,110],"2391":[2,6,172],"2392":[2,6,18],"2393":[3,5,135],"2394":[2,8,55],"2395":[1,5,115],"2396":[2,5,101],"2397":[2,5,98],"2398":[2,5,114],"2399":[2,7,29],"2400":[1,5,107],"2401":[2,6,21],"2402":[1,5,104],"2403":[2,6,21],"2404":[4,5,116],"2405":[3,1,52],"2406":[1,3,14],"2407":[1,3,141],"2408":[1,3,1],"2409":[8,4,47],"2410":[6,1,232],"2411":[1,1,34],"2412":[3,1,32],"2413":[2,4,28],"2414":[3,4,94],"2415":[2,4,54],"2416":[4,1,70],"2417":[4,1,263],"2418":[3,4,336],"2419":[8,4,45],"2420":[3,1,1],"2421":[2,3,64],"2422":[3,3,72],"2423":[3,3,129],"2424":[3,6,69],"2425":[3,3,142],"2426":[5,5,36],"2427":[1,5,183],"2428":[3,6,184],"2429":[3,6,150],"2430":[4,3,75],"2431":[7,6,127],"2432":[6,3,132],"2433":[3,3,46],"2434":[3,3,180],"2435":[2,3,96],"2436":[4,3,37],"2437":[2,1,40],"2438":[12,2,6],"2439":[3,1,51],"2440":[2,1,1],"2441":[4,2,41],"2442":[3,2,15],"2443":[1,2,18],"2444":[1,2,35],"2445":[1,2,30],"2446":[5,2,24],"2447":[3,1,43],"2448":[3,3,47],"2449":[4,3,55],"2450":[2,3,101],"2451":[3,3,41],"2452":[2,5,39],"2453":[3,5,115],"2454":[2,5,127],"2455":[2,5,128],"2456":[5,5,67],"2457":[5,5,28],"2458":[3,3,54],"2459":[2,3,40],"2460":[4,4,86],"2461":[3,3,64],"2462":[4,3,43],"2463":[3,3,34],"2464":[2,3,82],"2465":[1,3,37],"2466":[5,1,267],"2467":[8,1,30],"2468":[2,8,41],"2469":[5,8,47],"2470":[5,8,57],"2471":[7,8,35],"2472":[6,8,48],"2473":[4,8,44],"2474":[6,8,77],"2475":[6,8,54],"2476":[4,1,1],"2477":[5,4,45],"2478":[2,4,22],"2479":[3,4,27],"2480":[3,4,15],"2481":[2,4,54],"2482":[3,1,92],"2483":[1,3,76],"2484":[4,4,33],"2485":[1,7,34],"2486":[5,4,37],"2487":[1,8,40],"2488":[5,4,32],"2489":[1,8,29],"2490":[3,4,62],"2491":[1,7,10],"2492":[1,4,10],"2493":[1,5,10],"2494":[2,4,34],"2495":[1,6,13],"2496":[1,3,49],"2497":[2,3,48],"2498":[2,5,53],"2499":[1,5,111],"2500":[3,5,32],"2501":[1,5,94],"2502":[3,3,195],"2503":[3,5,142],"2504":[5,3,79],"2505":[3,3,63],"2506":[1,5,73],"2507":[1,5,32],"2508":[1,5,212],"2509":[2,1,37],"2510":[2,2,508],"2511":[2,2,56],"2512":[2,2,54],"2513":[2,2,39],"2514":[1,2,22],"2515":[1,2,37],"2516":[2,2,71],"2517":[2,2,15],"2518":[2,2,35],"2519":[2,2,20],"2520":[1,2,44],"2521":[2,2,17],"2522":[2,2,18],"2523":[2,2,80],"2524":[2,2,12],"2525":[2,2,48],"2526":[2,2,97],"2527":[1,2,284],"2528":[2,2,55],"2529":[1,2,58],"2530":[3,2,63],"2531":[3,2,31],"2532":[2,2,97],"2533":[2,2,56],"2534":[4,2,63],"2535":[3,2,69],"2536":[3,2,45],"2537":[2,2,21],"2538":[2,2,37],"2539":[2,2,43],"2540":[2,2,67],"2541":[2,1,31],"2542":[3,2,70],"2543":[2,2,28],"2544":[1,2,58],"2545":[2,2,26],"2546":[1,2,37],"2547":[1,2,50],"2548":[1,2,118],"2549":[2,2,148],"2550":[2,2,62],"2551":[2,2,34],"2552":[2,1,120],"2553":[4,1,41],"2554":[1,4,68],"2555":[1,4,57],"2556":[2,1,35],"2557":[3,2,99],"2558":[3,4,104],"2559":[4,4,79],"2560":[5,2,53],"2561":[1,7,121],"2562":[3,7,100],"2563":[2,10,154],"2564":[3,10,101],"2565":[3,1,44],"2566":[2,1,100],"2567":[2,2,290],"2568":[1,2,159],"2569":[3,2,181],"2570":[1,2,66],"2571":[1,2,56],"2572":[3,1,113],"2573":[1,3,81],"2574":[2,3,26],"2575":[2,1,145],"2576":[1,2,162],"2577":[3,2,1],"2578":[3,4,77],"2579":[3,4,75],"2580":[5,4,49],"2581":[2,2,14],"2582":[4,1,44],"2583":[7,4,83],"2584":[4,4,82],"2585":[8,4,92],"2586":[6,4,85],"2587":[3,4,91],"2588":[3,4,13],"2589":[2,1,95],"2590":[5,1,72],"2591":[1,5,61],"2592":[2,5,29],"2593":[3,7,89],"2594":[3,7,29],"2595":[4,7,29],"2596":[3,5,1],"2597":[3,8,59],"2598":[4,8,64],"2599":[5,8,111],"2600":[4,8,77],"2601":[3,8,64],"2602":[3,5,84],"2603":[3,1,126],"2604":[4,3,56],"2605":[8,3,59],"2606":[7,3,39],"2607":[3,3,99],"2608":[8,3,69],"2609":[5,3,39],"2610":[3,3,59],"2611":[3,1,16],"2612":[7,3,173],"2613":[6,3,47],"2614":[6,6,87],"2615":[3,6,69],"2616":[7,3,124],"2617":[4,3,80],"2618":[5,1,31],"2619":[2,5,79],"2620":[5,5,48],"2621":[1,8,35],"2622":[1,8,58],"2623":[1,8,15],"2624":[1,8,14],"2625":[1,8,15],"2626":[1,8,112],"2627":[1,8,57],"2628":[4,5,132],"2629":[5,5,92],"2630":[3,1,19],"2631":[7,1,1],"2632":[12,7,79],"2633":[3,1,66],"2634":[3,3,227],"2635":[7,1,70],"2636":[11,7,42],"2637":[3,7,128],"2638":[8,1,67],"2639":[4,8,124],"2640":[2,8,153],"2641":[3,8,25],"2642":[2,1,20],"2643":[2,2,25],"2644":[3,2,14],"2645":[3,2,22],"2646":[2,2,13],"2647":[3,1,1],"2648":[1,3,3],"2649":[1,3,3],"2650":[3,1,117],"2651":[1,3,160],"2652":[1,3,139],"2653":[6,1,90],"2654":[1,1,1],"2655":[2,1,24],"2656":[1,1,34],"2657":[5,1,37],"2658":[5,5,82],"2659":[2,5,77],"2660":[4,5,19],"2661":[4,1,1],"2662":[3,4,80],"2663":[3,4,82],"2664":[4,1,56],"2665":[3,4,39],"2666":[2,6,47],"2667":[4,6,56],"2668":[2,6,65],"2669":[2,6,66],"2670":[2,4,1],"2671":[2,5,40],"2672":[3,5,37],"2673":[8,1,79],"2674":[4,1,33],"2675":[1,4,1],"2676":[1,5,104],"2677":[3,5,28],"2678":[2,6,141],"2679":[4,4,37],"2680":[1,4,86],"2681":[5,1,18],"2682":[3,5,80],"2683":[7,1,293],"2684":[4,1,96],"2685":[5,4,162],"2686":[5,4,93],"2687":[3,4,67],"2688":[2,1,16],"2689":[1,2,43],"2690":[1,2,65],"2691":[2,2,165],"2692":[3,1,33],"2693":[1,3,12],"2694":[2,4,73],"2695":[2,4,57],"2696":[5,3,39],"2697":[2,8,23],"2698":[2,8,23],"2699":[2,8,15],"2700":[6,3,89],"2701":[4,3,25],"2702":[4,6,110],"2703":[3,6,54],"2704":[3,3,78],"2705":[5,3,79],"2706":[3,3,57],"2707":[4,1,115],"2708":[5,4,1],"2709":[2,7,121],"2710":[3,7,66],"2711":[11,4,84],"2712":[7,4,34],"2713":[7,4,53],"2714":[5,1,164],"2715":[2,5,38],"2716":[2,5,42],"2717":[2,7,97],"2718":[2,7,36],"2719":[2,9,48],"2720":[3,9,91],"2721":[2,7,67],"2722":[2,5,39],"2723":[2,7,16],"2724":[2,7,17],"2725":[3,1,43],"2726":[2,3,59],"2727":[4,3,81],"2728":[4,3,66],"2729":[8,3,12],"2730":[3,11,32],"2731":[6,11,54],"2732":[2,3,1],"2733":[3,5,99],"2734":[3,5,42],"2735":[3,3,1],"2736":[3,6,19],"2737":[4,6,21],"2738":[3,6,19],"2739":[4,3,42],"2740":[4,3,30],"2741":[2,3,35],"2742":[1,3,56],"2743":[2,1,44],"2744":[4,2,253],"2745":[2,2,101],"2746":[2,2,601],"2747":[2,2,194],"2748":[1,2,108],"2749":[2,2,102],"2750":[3,2,93],"2751":[2,1,91],"2752":[2,2,65],"2753":[4,1,76],"2754":[2,4,31],"2755":[4,4,1],"2756":[4,5,71],"2757":[4,5,19],"2758":[4,4,13],"2759":[5,4,90],"2760":[2,1,157],"2761":[3,2,166],"2762":[4,2,240],"2763":[4,2,338],"2764":[4,2,518],"2765":[10,1,39],"2766":[4,10,16],"2767":[7,13,51],"2768":[1,20,26],"2769":[8,13,76],"2770":[1,21,36],"2771":[5,10,82],"2772":[3,10,38],"2773":[3,10,14],"2774":[6,10,53],"2775":[3,10,60],"2776":[2,10,37],"2777":[3,1,108],"2778":[2,3,68],"2779":[3,3,86],"2780":[3,3,70],"2781":[3,3,146],"2782":[3,3,72],"2783":[3,3,51],"2784":[3,3,42],"2785":[3,1,98],"2786":[2,3,18],"2787":[3,3,130],"2788":[3,3,67],"2789":[3,3,58],"2790":[3,3,37],"2791":[3,3,27],"2792":[6,1,57],"2793":[6,1,13],"2794":[5,6,188],"2795":[4,6,190],"2796":[5,6,100],"2797":[3,6,50],"2798":[1,9,1],"2799":[3,10,40],"2800":[3,10,56],"2801":[4,1,1],"2802":[1,4,21],"2803":[1,4,18],"2804":[1,4,14],"2805":[1,4,27],"2806":[1,4,13],"2807":[1,4,23],"2808":[1,4,22],"2809":[1,4,16],"2810":[1,4,10],"2811":[1,4,14],"2812":[1,4,20],"2813":[2,4,23],"2814":[1,4,13],"2815":[1,4,7],"2816":[1,4,8],"2817":[1,4,23],"2818":[1,4,17],"2819":[2,4,22],"2820":[1,4,21],"2821":[2,4,15],"2822":[2,4,10],"2823":[1,4,19],"2824":[1,4,17],"2825":[2,4,29],"2826":[1,4,14],"2827":[1,4,21],"2828":[1,4,28],"2829":[1,4,21],"2830":[1,4,9],"2831":[1,4,21],"2832":[1,4,16],"2833":[5,4,17],"2834":[2,4,34],"2835":[1,4,28],"2836":[2,4,18],"2837":[1,4,21],"2838":[1,4,14],"2839":[1,4,18],"2840":[1,4,30],"2841":[3,4,28],"2842":[1,4,24],"2843":[2,4,23],"2844":[1,4,34],"2845":[1,4,25],"2846":[1,4,34],"2847":[2,4,24],"2848":[1,4,12],"2849":[5,4,13],"2850":[10,1,23],"2851":[3,1,101],"2852":[2,3,81],"2853":[2,3,43],"2854":[2,3,96],"2855":[1,3,35],"2856":[1,3,64],"2857":[1,3,83],"2858":[1,3,55],"2859":[2,3,19],"2860":[1,3,30],"2861":[2,3,50],"2862":[1,3,20],"2863":[2,3,34],"2864":[1,3,50],"2865":[1,3,38],"2866":[1,3,9],"2867":[1,3,36],"2868":[3,3,36],"2869":[1,3,176],"2870":[2,3,43],"2871":[2,3,165],"2872":[1,3,101],"2873":[2,3,21],"2874":[2,3,27],"2875":[2,3,38],"2876":[3,3,37],"2877":[1,3,113],"2878":[2,3,178],"2879":[1,3,50],"2880":[2,3,132],"2881":[1,3,25],"2882":[1,3,96],"2883":[1,3,51],"2884":[3,1,109],"2885":[5,3,59],"2886":[2,3,122],"2887":[2,3,160],"2888":[6,1,52],"2889":[3,6,174],"2890":[3,6,75],"2891":[2,6,51],"2892":[1,6,54],"2893":[2,6,62],"2894":[2,6,131],"2895":[2,1,71],"2896":[2,1,23],"2897":[2,2,34],"2898":[2,2,11],"2899":[2,2,21],"2900":[3,1,1],"2901":[2,3,77],"2902":[4,3,129],"2903":[8,7,80],"2904":[6,7,39],"2905":[2,1,26],"2906":[2,1,70],"2907":[2,1,67],"2908":[2,1,71],"2909":[4,1,39],"2910":[2,4,106],"2911":[1,6,87],"2912":[3,6,280],"2913":[5,4,107],"2914":[1,7,58],"2915":[4,8,31],"2916":[4,8,30],"2917":[4,8,28],"2918":[2,7,66],"2919":[2,7,198],"2920":[5,7,137],"2921":[3,4,142],"2922":[2,4,120],"2923":[5,5,76],"2924":[5,5,101],"2925":[2,4,171],"2926":[3,5,170],"2927":[3,5,89],"2928":[2,4,218],"2929":[2,6,42],"2930":[2,4,245],"2931":[11,4,84],"2932":[9,4,33],"2933":[4,1,45],"2934":[1,4,108],"2935":[3,4,76],"2936":[2,7,98],"2937":[5,9,138],"2938":[2,9,74],"2939":[3,9,85],"2940":[2,9,146],"2941":[2,1,95],"2942":[4,2,39],"2943":[3,2,78],"2944":[7,2,145],"2945":[3,2,58],"2946":[3,2,45],"2947":[3,2,53],"2948":[2,1,132],"2949":[2,1,181]},"averageFieldLength":[3.6372881355932205,5.011186440677964,53.24915254237284],"storedFields":{"0":{"title":"QMK Breaking Change - 2019 Aug 30","titles":[]},"1":{"title":"Core code formatting with clang-format","titles":["QMK Breaking Change - 2019 Aug 30"]},"2":{"title":"LUFA USB descriptor cleanup","titles":["QMK Breaking Change - 2019 Aug 30"]},"3":{"title":"Migrating ACTION_LAYER_MOMENTARY() entries in fn_actions to MO() keycodes","titles":["QMK Breaking Change - 2019 Aug 30"]},"4":{"title":"Update Atreus to current code conventions","titles":["QMK Breaking Change - 2019 Aug 30"]},"5":{"title":"Backport changes to keymap language files from ZSA fork","titles":["QMK Breaking Change - 2019 Aug 30"]},"6":{"title":"Update repo to use LUFA as a git submodule","titles":["QMK Breaking Change - 2019 Aug 30"]},"7":{"title":"Migrating ACTION_BACKLIGHT_*() entries in fn_actions to BL_ keycodes","titles":["QMK Breaking Change - 2019 Aug 30"]},"8":{"title":"Remove KC_DELT alias in favor of KC_DEL","titles":["QMK Breaking Change - 2019 Aug 30"]},"9":{"title":"QMK Breaking Change - 2020 Feb 29 Changelog","titles":[]},"10":{"title":"Update ChibiOS/ChibiOS-Contrib/uGFX submodules","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"11":{"title":"Fix ChibiOS timer overflow for 16-bit SysTick devices","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"12":{"title":"Update LUFA submodule","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"13":{"title":"Encoder flip","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"14":{"title":"Adding support for BACKLIGHT_ON_STATE for hardware PWM backlight","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"15":{"title":"Migrating ACTION_LAYER_TAP_KEY() entries in fn_actions to LT() keycodes","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"16":{"title":"Moving backlight keycode handling to process_keycode/","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"17":{"title":"Refactor Planck keymaps to use Layout Macros","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"18":{"title":"GON NerD codebase refactor","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"19":{"title":"QMK Breaking Change - 2020 May 30 Changelog","titles":[]},"20":{"title":"Core Changes","titles":["QMK Breaking Change - 2020 May 30 Changelog"]},"21":{"title":"Converting V-USB usbdrv to a submodule","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"22":{"title":"Unify Tap Hold functions and documentation","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"23":{"title":"Python Required In The Build Process","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"24":{"title":"Upgrade from tinyprintf to mpaland/printf","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"25":{"title":"Fixed RGB_DISABLE_AFTER_TIMEOUT to be seconds based & small internals cleanup","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"26":{"title":"Switch to qmk forks for everything","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"27":{"title":"code cleanup regarding deprecated macro PLAY_NOTE_ARRAY by replacing it with PLAY_SONG","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"28":{"title":"fixing wrong configuration of AUDIO feature","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"29":{"title":"Keyboard Refactors","titles":["QMK Breaking Change - 2020 May 30 Changelog"]},"30":{"title":"Migrating Lily58 to use split_common","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors"]},"31":{"title":"To migrate existing Lily58 firmware:","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors","Migrating Lily58 to use split_common"]},"32":{"title":"Refactor zinc to use split_common","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors"]},"33":{"title":"Refactor of TKC1800 to use common OLED code","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors"]},"34":{"title":"To migrate existing TKC1800 firmware:","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors","Refactor of TKC1800 to use common OLED code"]},"35":{"title":"Split HHKB to ANSI and JP layouts and Add VIA support for each","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors"]},"36":{"title":"Migrating existing HHKB keymaps","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors","Split HHKB to ANSI and JP layouts and Add VIA support for each"]},"37":{"title":"Keyboard Moves","titles":["QMK Breaking Change - 2020 May 30 Changelog"]},"38":{"title":"Keycode Migration PRs","titles":["QMK Breaking Change - 2020 May 30 Changelog"]},"39":{"title":"QMK Breaking Change - 2020 Aug 29 Changelog","titles":[]},"40":{"title":"Changes Requiring User Action","titles":["QMK Breaking Change - 2020 Aug 29 Changelog"]},"41":{"title":"Relocated Keyboards","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action"]},"42":{"title":"The Key Company project consolidation (","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"43":{"title":"relocating boards by flehrad to flehrad/ folder (","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"44":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action"]},"45":{"title":"Keebio RGB wiring update (","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action","Updated Keyboard Codebases"]},"46":{"title":"Changes to Core Functionality","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action"]},"47":{"title":"Core Changes","titles":["QMK Breaking Change - 2020 Aug 29 Changelog"]},"48":{"title":"Fixes","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Core Changes"]},"49":{"title":"Additions and Enhancements","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Core Changes"]},"50":{"title":"Clean-ups and Optimizations","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Core Changes"]},"51":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Change - 2020 Aug 29 Changelog"]},"52":{"title":"QMK Breaking Change - 2020 Nov 28 Changelog","titles":[]},"53":{"title":"Changes Requiring User Action","titles":["QMK Breaking Change - 2020 Nov 28 Changelog"]},"54":{"title":"Relocated Keyboards","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action"]},"55":{"title":"Reduce Helix keyboard build variation (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"56":{"title":"Update the Speedo firmware for v3.0 (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"57":{"title":"Maartenwut/Maarten name change to evyd13/Evy (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"58":{"title":"Xelus Valor and Dawn60 Refactors (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"59":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action"]},"60":{"title":"AEboards EXT65 Refactor (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Updated Keyboard Codebases"]},"61":{"title":"Core Changes","titles":["QMK Breaking Change - 2020 Nov 28 Changelog"]},"62":{"title":"Fixes","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Core Changes"]},"63":{"title":"Additions and Enhancements","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Core Changes"]},"64":{"title":"Clean-ups and Optimizations","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Core Changes"]},"65":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Change - 2020 Nov 28 Changelog"]},"66":{"title":"QMK Breaking Changes - 2021 February 27 Changelog","titles":[]},"67":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 February 27 Changelog"]},"68":{"title":"Core Changes","titles":["QMK Breaking Changes - 2021 February 27 Changelog"]},"69":{"title":"ChibiOS Update and Config Migration","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Core Changes"]},"70":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Core Changes"]},"71":{"title":"Detailed Change List","titles":["QMK Breaking Changes - 2021 February 27 Changelog"]},"72":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"73":{"title":"Fixes","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"74":{"title":"Additions and Enhancements","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"75":{"title":"Clean-ups and Optimizations","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"76":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"77":{"title":"ChibiOS Update and Config Migration","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"78":{"title":"QMK Breaking Changes - 2021 May 29 Changelog","titles":[]},"79":{"title":"Notable Changes","titles":["QMK Breaking Changes - 2021 May 29 Changelog"]},"80":{"title":"RGB Matrix support for split common (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"81":{"title":"Teensy 3.6 support (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"82":{"title":"New command: qmk console (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"83":{"title":"Improved command: qmk config","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"84":{"title":"LED Matrix Improvements (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"85":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 May 29 Changelog"]},"86":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action"]},"87":{"title":"Bootmagic Deprecation and Refactor (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action"]},"88":{"title":"Tentative Deprecation Schedule","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action","Bootmagic Deprecation and Refactor ("]},"89":{"title":"Removal of LAYOUT_kc (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action"]},"90":{"title":"Encoder callbacks are now boolean (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action"]},"91":{"title":"Core Changes","titles":["QMK Breaking Changes - 2021 May 29 Changelog"]},"92":{"title":"Fixes","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Core Changes"]},"93":{"title":"Additions and Enhancements","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Core Changes"]},"94":{"title":"Clean-ups and Optimizations","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Core Changes"]},"95":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Core Changes"]},"96":{"title":"QMK Breaking Changes - 2021 August 28 Changelog","titles":[]},"97":{"title":"Notable Features","titles":["QMK Breaking Changes - 2021 August 28 Changelog"]},"98":{"title":"Combo processing improvements (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable Features"]},"99":{"title":"Key Overrides (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable Features"]},"100":{"title":"Digitizer support (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable Features"]},"101":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 August 28 Changelog"]},"102":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Changes Requiring User Action"]},"103":{"title":"Bootmagic Full Removal (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Changes Requiring User Action"]},"104":{"title":"Bootmagic Full Deprecation Schedule","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Changes Requiring User Action","Bootmagic Full Removal ("]},"105":{"title":"DIP switch callbacks are now boolean (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Changes Requiring User Action"]},"106":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2021 August 28 Changelog"]},"107":{"title":"Split transport improvements","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes"]},"108":{"title":"Teensy 4.x support (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes"]},"109":{"title":"Data Driven Improvements (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes"]},"110":{"title":"Tags","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes","Data Driven Improvements ("]},"111":{"title":"Dot Notation","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes","Data Driven Improvements ("]},"112":{"title":"New configuration keys","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes","Data Driven Improvements ("]},"113":{"title":"Codebase restructure and cleanup","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes"]},"114":{"title":"Full changelist","titles":["QMK Breaking Changes - 2021 August 28 Changelog"]},"115":{"title":"QMK Breaking Changes - 2021 November 27 Changelog","titles":[]},"116":{"title":"2000 keyboards!","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"117":{"title":"Notable Features","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"118":{"title":"Expanded Pointing Device support (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable Features"]},"119":{"title":"Dynamic Tapping Term (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable Features"]},"120":{"title":"Macros in JSON keymaps (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable Features"]},"121":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"122":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"123":{"title":"Squeezing space out of AVR (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"124":{"title":"Require explicit enabling of RGB Matrix modes (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"125":{"title":"OLED task refactoring (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"126":{"title":"Bootmagic Full Removal (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"127":{"title":"Bootmagic Full Deprecation Schedule: Complete!","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action","Bootmagic Full Removal ("]},"128":{"title":"Remove QWIIC_DRIVERS (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"129":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"130":{"title":"New MCU Support","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable core changes"]},"131":{"title":"EEPROM Changes","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable core changes"]},"132":{"title":"Compilation Database","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable core changes"]},"133":{"title":"Codebase restructure and cleanup","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable core changes"]},"134":{"title":"Full changelist","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"135":{"title":"QMK Breaking Changes - 2022 February 26 Changelog","titles":[]},"136":{"title":"Notable Features","titles":["QMK Breaking Changes - 2022 February 26 Changelog"]},"137":{"title":"Default USB Polling rate now 1kHz (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable Features"]},"138":{"title":"Split support for pointing devices (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable Features"]},"139":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2022 February 26 Changelog"]},"140":{"title":"Legacy macro and action_function system removed (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Changes Requiring User Action"]},"141":{"title":"Create a build error if no bootloader is specified (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Changes Requiring User Action"]},"142":{"title":"Rename AdafruitBLE to BluefruitLE (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Changes Requiring User Action"]},"143":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Changes Requiring User Action"]},"144":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2022 February 26 Changelog"]},"145":{"title":"New MCU Support","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable core changes"]},"146":{"title":"New Drivers","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable core changes"]},"147":{"title":"LED","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable core changes","New Drivers"]},"148":{"title":"GPIO","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable core changes","New Drivers"]},"149":{"title":"Full changelist","titles":["QMK Breaking Changes - 2022 February 26 Changelog"]},"150":{"title":"QMK Breaking Changes - 2022 May 28 Changelog","titles":[]},"151":{"title":"Notable Features","titles":["QMK Breaking Changes - 2022 May 28 Changelog"]},"152":{"title":"Caps Word (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Notable Features"]},"153":{"title":"Quantum Painter (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Notable Features"]},"154":{"title":"Encoder Mapping (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Notable Features"]},"155":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2022 May 28 Changelog"]},"156":{"title":"RESET => QK_BOOT (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Changes Requiring User Action"]},"157":{"title":"Sendstring keycode overhaul (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Changes Requiring User Action"]},"158":{"title":"Pillow Installation (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Changes Requiring User Action"]},"159":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Changes Requiring User Action"]},"160":{"title":"Full changelist","titles":["QMK Breaking Changes - 2022 May 28 Changelog"]},"161":{"title":"QMK Breaking Changes - 2022 August 27 Changelog","titles":[]},"162":{"title":"Notable Features","titles":["QMK Breaking Changes - 2022 August 27 Changelog"]},"163":{"title":"Add Raspberry Pi RP2040 support (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable Features"]},"164":{"title":"Allow qmk flash to use prebuilt firmware binaries (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable Features"]},"165":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2022 August 27 Changelog"]},"166":{"title":"Default layers dropped from 32 to 16 (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action"]},"167":{"title":"RESET => QK_BOOT (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action"]},"168":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action"]},"169":{"title":"Data-driven USB IDs Refactoring (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action"]},"170":{"title":"Deprecation Schedule","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action","Data-driven USB IDs Refactoring ("]},"171":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2022 August 27 Changelog"]},"172":{"title":"Board converters (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable core changes"]},"173":{"title":"Add cli command to import keyboard|keymap|kbfirmware (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable core changes"]},"174":{"title":"Generic wear-leveling for EEPROM emulation (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable core changes"]},"175":{"title":"Pointing Device Improvements (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable core changes"]},"176":{"title":"Full changelist","titles":["QMK Breaking Changes - 2022 August 27 Changelog"]},"177":{"title":"QMK Breaking Changes - 2022 November 26 Changelog","titles":[]},"178":{"title":"Notable Features","titles":["QMK Breaking Changes - 2022 November 26 Changelog"]},"179":{"title":"Autocorrect (","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Notable Features"]},"180":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2022 November 26 Changelog"]},"181":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"182":{"title":"Keycodes refactoring","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"183":{"title":"Configuration Item Refactoring","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"184":{"title":"Data-driven USB IDs Refactoring (","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"185":{"title":"LED Indicator callback refactoring (","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"186":{"title":"Unicode mode refactoring","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"187":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2022 November 26 Changelog"]},"188":{"title":"Keycodes refactoring","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Notable core changes"]},"189":{"title":"Board Converters","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Notable core changes"]},"190":{"title":"Pointing and Digitizer device updates","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Notable core changes"]},"191":{"title":"Full changelist","titles":["QMK Breaking Changes - 2022 November 26 Changelog"]},"192":{"title":"QMK Breaking Changes - 2023 February 26 Changelog","titles":[]},"193":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2023 February 26 Changelog"]},"194":{"title":"IGNORE_MOD_TAP_INTERRUPT behaviour changes (","titles":["QMK Breaking Changes - 2023 February 26 Changelog","Changes Requiring User Action"]},"195":{"title":"TAPPING_FORCE_HOLD => QUICK_TAP_TERM (","titles":["QMK Breaking Changes - 2023 February 26 Changelog","Changes Requiring User Action"]},"196":{"title":"Leader Key Rework {#leader-key-rework (","titles":["QMK Breaking Changes - 2023 February 26 Changelog","Changes Requiring User Action"]},"197":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2023 February 26 Changelog","Changes Requiring User Action"]},"198":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2023 February 26 Changelog"]},"199":{"title":"Full changelist","titles":["QMK Breaking Changes - 2023 February 26 Changelog"]},"200":{"title":"QMK Breaking Changes - 2023 May 28 Changelog","titles":[]},"201":{"title":"Notable Changes","titles":["QMK Breaking Changes - 2023 May 28 Changelog"]},"202":{"title":"Repeat last key (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable Changes"]},"203":{"title":"User callback for pre process record (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable Changes"]},"204":{"title":"Consolidate modelm (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable Changes"]},"205":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2023 May 28 Changelog"]},"206":{"title":"IGNORE_MOD_TAP_INTERRUPT behaviour changes (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Changes Requiring User Action"]},"207":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Changes Requiring User Action"]},"208":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2023 May 28 Changelog"]},"209":{"title":"Encoder functionality fallback (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable core changes"]},"210":{"title":"OLED Driver Improvements (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable core changes"]},"211":{"title":"Full changelist","titles":["QMK Breaking Changes - 2023 May 28 Changelog"]},"212":{"title":"QMK Breaking Changes - 2023 Aug 27 Changelog","titles":[]},"213":{"title":"Notable Changes","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog"]},"214":{"title":"RGB Matrix optimizations (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Notable Changes"]},"215":{"title":"Audio optimizations (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Notable Changes"]},"216":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog"]},"217":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"218":{"title":"Remove encoder in-matrix workaround code (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"219":{"title":"Unicodemap keycodes rename (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"220":{"title":"Remove old OLED API code (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"221":{"title":"Driver naming consolidation (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"222":{"title":"Full changelist","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog"]},"223":{"title":"QMK Breaking Changes - 2023 November 26 Changelog","titles":[]},"224":{"title":"Notable Features","titles":["QMK Breaking Changes - 2023 November 26 Changelog"]},"225":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2023 November 26 Changelog"]},"226":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Changes Requiring User Action"]},"227":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2023 November 26 Changelog"]},"228":{"title":"External Userspace (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"229":{"title":"Improve and Cleanup Shutdown callbacks (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"230":{"title":"OLED Force Flush (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"231":{"title":"Switch statement helpers for keycode ranges (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"232":{"title":"Quantum Painter OLED support (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"233":{"title":"RGB/LED lighting driver naming and cleanup (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"234":{"title":"Peripheral subsystem enabling (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"235":{"title":"NKRO on V-USB boards (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"236":{"title":"Full changelist","titles":["QMK Breaking Changes - 2023 November 26 Changelog"]},"237":{"title":"QMK Breaking Changes - 2024 February 25 Changelog","titles":[]},"238":{"title":"Notable Features","titles":["QMK Breaking Changes - 2024 February 25 Changelog"]},"239":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2024 February 25 Changelog"]},"240":{"title":"Windows Driver Changes (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Changes Requiring User Action"]},"241":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Changes Requiring User Action"]},"242":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2024 February 25 Changelog"]},"243":{"title":"Renaming Arduino-style GPIO pin functions (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"244":{"title":"I2C driver API Changes (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"245":{"title":"Renaming Bootmagic Lite => Bootmagic (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"246":{"title":"Threshold for automatic mouse layer activation (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"247":{"title":"DIP Switch Mapping (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"248":{"title":"Quantum Painter updates (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"249":{"title":"Full changelist","titles":["QMK Breaking Changes - 2024 February 25 Changelog"]},"250":{"title":"QMK Breaking Changes - 2024 May 26 Changelog","titles":[]},"251":{"title":"Notable Features","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"252":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"253":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action"]},"254":{"title":"Remove deprecated quantum keycodes (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action"]},"255":{"title":"P3D Spacey Layout Updates (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action"]},"256":{"title":"MechKeys ACR60 Layout Updates (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action"]},"257":{"title":"LAYOUT_hhkb","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action","MechKeys ACR60 Layout Updates ("]},"258":{"title":"LAYOUT_true_hhkb","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action","MechKeys ACR60 Layout Updates ("]},"259":{"title":"LAYOUT_directional","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action","MechKeys ACR60 Layout Updates ("]},"260":{"title":"LAYOUT_mitchsplit","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action","MechKeys ACR60 Layout Updates ("]},"261":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"262":{"title":"Introduction of keyboard.json (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Notable core changes"]},"263":{"title":"Refactor ChibiOS USB endpoints to be fully async (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Notable core changes"]},"264":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"265":{"title":"Migration of VIA keymaps to VIA team control","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Deprecation Notices"]},"266":{"title":"Full changelist","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"267":{"title":"QMK Breaking Changes - 2024 August 25 Changelog","titles":[]},"268":{"title":"Notable Features","titles":["QMK Breaking Changes - 2024 August 25 Changelog"]},"269":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2024 August 25 Changelog"]},"270":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Changes Requiring User Action"]},"271":{"title":"SparkFun Pro Micro RP2040 converter renamed (","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Changes Requiring User Action"]},"272":{"title":"Key Override keymap.c signature change (","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Changes Requiring User Action"]},"273":{"title":"ADNS9800 and PMW33xx firmware upload now opt-in (","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Changes Requiring User Action"]},"274":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2024 August 25 Changelog"]},"275":{"title":"Migration of VIA keymaps to VIA team control","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Deprecation Notices"]},"276":{"title":"ADNS9800 and PMW33xx sensor firmware ROM removal","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Deprecation Notices"]},"277":{"title":"Full changelist","titles":["QMK Breaking Changes - 2024 August 25 Changelog"]},"278":{"title":"QMK Breaking Changes - 2024 November 24 Changelog","titles":[]},"279":{"title":"Notable Features","titles":["QMK Breaking Changes - 2024 November 24 Changelog"]},"280":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2024 November 24 Changelog"]},"281":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2024 November 24 Changelog","Changes Requiring User Action"]},"282":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2024 November 24 Changelog"]},"283":{"title":"RGB Keycode Overhaul (","titles":["QMK Breaking Changes - 2024 November 24 Changelog","Deprecation Notices"]},"284":{"title":"ADNS9800 and PMW33xx sensor firmware ROM removal (","titles":["QMK Breaking Changes - 2024 November 24 Changelog","Deprecation Notices"]},"285":{"title":"Full changelist","titles":["QMK Breaking Changes - 2024 November 24 Changelog"]},"286":{"title":"QMK Breaking Changes - 2025 February 23 Changelog","titles":[]},"287":{"title":"Notable Features","titles":["QMK Breaking Changes - 2025 February 23 Changelog"]},"288":{"title":"Community Modules (","titles":["QMK Breaking Changes - 2025 February 23 Changelog","Notable Features"]},"289":{"title":"Chordal Hold (","titles":["QMK Breaking Changes - 2025 February 23 Changelog","Notable Features"]},"290":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2025 February 23 Changelog"]},"291":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2025 February 23 Changelog","Changes Requiring User Action"]},"292":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2025 February 23 Changelog"]},"293":{"title":"DEFAULT_FOLDER removal (","titles":["QMK Breaking Changes - 2025 February 23 Changelog","Deprecation Notices"]},"294":{"title":"Full changelist","titles":["QMK Breaking Changes - 2025 February 23 Changelog"]},"295":{"title":"QMK Breaking Changes - 2025 May 25 Changelog","titles":[]},"296":{"title":"Notable Features","titles":["QMK Breaking Changes - 2025 May 25 Changelog"]},"297":{"title":"Flow Tap (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Notable Features"]},"298":{"title":"Community Modules 1.1.1 (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Notable Features"]},"299":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2025 May 25 Changelog"]},"300":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Changes Requiring User Action"]},"301":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2025 May 25 Changelog"]},"302":{"title":"Deprecation of qmk generate-compilation-database (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"303":{"title":"Deprecation of usb.force_nkro/FORCE_NKRO (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"304":{"title":"CTPC/CONVERT_TO_PROTON_C removal (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"305":{"title":"DEFAULT_FOLDER removal (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"306":{"title":"Converter Pin Compatible updates (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"307":{"title":"Deprecation of encoder_update_{kb|user}","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"308":{"title":"Full changelist","titles":["QMK Breaking Changes - 2025 May 25 Changelog"]},"309":{"title":"QMK Breaking Changes - 2025 Aug 31 Changelog","titles":[]},"310":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog"]},"311":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Changes Requiring User Action"]},"312":{"title":"Mitigate VIA keylogger security issues","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Changes Requiring User Action"]},"313":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog"]},"314":{"title":"DEFAULT_FOLDER removal (","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Deprecation Notices"]},"315":{"title":"Converter Pin Compatible updates (","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Deprecation Notices"]},"316":{"title":"Removal of deprecated RGB and Mouse keycodes (","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Deprecation Notices"]},"317":{"title":"Full changelist","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog"]},"318":{"title":"QMK Breaking Changes - 2025 Nov 30 Changelog","titles":[]},"319":{"title":"Notable Features","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog"]},"320":{"title":"Speculative Hold option for mod-taps: hold mods instantly while unsettled","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Notable Features"]},"321":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog"]},"322":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Changes Requiring User Action"]},"323":{"title":"Reduce tap dance memory usage, move state out of data","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Changes Requiring User Action"]},"324":{"title":"Before:","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Changes Requiring User Action"]},"325":{"title":"After:","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Changes Requiring User Action"]},"326":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog"]},"327":{"title":"Remove override of QK_{LED,RGB}_MATRIX_TOGGLE keycode","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Deprecation Notices"]},"328":{"title":"Full changelist","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog"]},"329":{"title":"QMK Breaking Changes - 2026 Feb 22 Changelog","titles":[]},"330":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2026 Feb 22 Changelog"]},"331":{"title":"Removal of deprecated GPIO defines (","titles":["QMK Breaking Changes - 2026 Feb 22 Changelog","Deprecation Notices"]},"332":{"title":"Removal of deprecated isLeftHand (","titles":["QMK Breaking Changes - 2026 Feb 22 Changelog","Deprecation Notices"]},"333":{"title":"Full changelist","titles":["QMK Breaking Changes - 2026 Feb 22 Changelog"]},"334":{"title":"QMK Breaking Changes - 2026 May 31 Changelog","titles":[]},"335":{"title":"Notable Changes","titles":["QMK Breaking Changes - 2026 May 31 Changelog"]},"336":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2026 May 31 Changelog"]},"337":{"title":"Removal of deprecated isLeftHand (","titles":["QMK Breaking Changes - 2026 May 31 Changelog","Deprecation Notices"]},"338":{"title":"Removal of usb.force_nkro/FORCE_NKRO (","titles":["QMK Breaking Changes - 2026 May 31 Changelog","Deprecation Notices"]},"339":{"title":"Full changelist","titles":["QMK Breaking Changes - 2026 May 31 Changelog"]},"340":{"title":"Documentation Capabilities","titles":[]},"341":{"title":"Overall capabilities","titles":["Documentation Capabilities"]},"342":{"title":"Dividing lines","titles":["Documentation Capabilities","Overall capabilities"]},"343":{"title":"Images","titles":["Documentation Capabilities","Overall capabilities"]},"344":{"title":"Lists","titles":["Documentation Capabilities","Overall capabilities"]},"345":{"title":"Emoji","titles":["Documentation Capabilities","Overall capabilities"]},"346":{"title":"Direct:","titles":["Documentation Capabilities","Overall capabilities","Emoji"]},"347":{"title":"As colon-name-colon:","titles":["Documentation Capabilities","Overall capabilities","Emoji"]},"348":{"title":"XML Entities","titles":["Documentation Capabilities","Overall capabilities"]},"349":{"title":"Styling","titles":["Documentation Capabilities"]},"350":{"title":"CSS-ish","titles":["Documentation Capabilities","Styling"]},"351":{"title":"Tables","titles":["Documentation Capabilities","Styling"]},"352":{"title":"Indented sections","titles":["Documentation Capabilities","Styling"]},"353":{"title":"Keyboard keys","titles":["Documentation Capabilities","Styling"]},"354":{"title":"Code Blocks","titles":["Documentation Capabilities","Styling"]},"355":{"title":"Sub/Superscript","titles":["Documentation Capabilities","Styling"]},"356":{"title":"Tabs","titles":["Documentation Capabilities","Styling"]},"357":{"title":"** Tab one **","titles":["Documentation Capabilities","Styling","Tabs"]},"358":{"title":"** Nested one **","titles":["Documentation Capabilities","Styling","Tabs","** Tab one **"]},"359":{"title":"** Nested two **","titles":["Documentation Capabilities","Styling","Tabs","** Tab one **"]},"360":{"title":"** Tab two **","titles":["Documentation Capabilities","Styling","Tabs"]},"361":{"title":"** Tab three **","titles":["Documentation Capabilities","Styling","Tabs"]},"362":{"title":"Details sections","titles":["Documentation Capabilities"]},"363":{"title":"Embed","titles":["Documentation Capabilities"]},"364":{"title":"Development Environment Setup","titles":[]},"365":{"title":"QMK Compiler Development Guide","titles":[]},"366":{"title":"Overview","titles":[]},"367":{"title":"Workers","titles":[]},"368":{"title":"API Service","titles":[]},"369":{"title":"@app.route('/v1/compile', methods=['POST'])","titles":["API Service"]},"370":{"title":"@app.route('/v1/compile/<string:job_id>', methods=['GET'])","titles":["API Service"]},"371":{"title":"@app.route('/v1/compile/<string:job_id>/download', methods=['GET'])","titles":["API Service"]},"372":{"title":"@app.route('/v1/compile/<string:job_id>/source', methods=['GET'])","titles":["API Service"]},"373":{"title":"QMK API","titles":[]},"374":{"title":"Overview","titles":["QMK API"]},"375":{"title":"Example JSON Payload:","titles":["QMK API","Overview"]},"376":{"title":"Submitting a Compile Job","titles":["QMK API"]},"377":{"title":"Checking The Status","titles":["QMK API"]},"378":{"title":"Examining Finished Results","titles":["QMK API"]},"379":{"title":"Constants","titles":["QMK API"]},"380":{"title":"QMK API","titles":[]},"381":{"title":"App Developers","titles":["QMK API"]},"382":{"title":"Keyboard Maintainers","titles":["QMK API"]},"383":{"title":"Backend Developers","titles":["QMK API"]},"384":{"title":"ARM Debugging using Eclipse","titles":[]},"385":{"title":"Installing the software","titles":["ARM Debugging using Eclipse"]},"386":{"title":"The xPack Manager","titles":["ARM Debugging using Eclipse","Installing the software"]},"387":{"title":"The ARM Toolchain","titles":["ARM Debugging using Eclipse","Installing the software"]},"388":{"title":"Windows build tools","titles":["ARM Debugging using Eclipse","Installing the software"]},"389":{"title":"Programmer/Debugger Drivers","titles":["ARM Debugging using Eclipse","Installing the software"]},"390":{"title":"OpenOCD","titles":["ARM Debugging using Eclipse","Installing the software"]},"391":{"title":"Java","titles":["ARM Debugging using Eclipse","Installing the software"]},"392":{"title":"GNU MCU Eclipse IDE","titles":["ARM Debugging using Eclipse","Installing the software"]},"393":{"title":"Configuring Eclipse","titles":["ARM Debugging using Eclipse"]},"394":{"title":"Building","titles":["ARM Debugging using Eclipse"]},"395":{"title":"Debugging","titles":["ARM Debugging using Eclipse"]},"396":{"title":"Connecting the Debugger","titles":["ARM Debugging using Eclipse","Debugging"]},"397":{"title":"Configuring the Debugger","titles":["ARM Debugging using Eclipse","Debugging"]},"398":{"title":"Running the Debugger.","titles":["ARM Debugging using Eclipse","Debugging"]},"399":{"title":"Breaking Changes","titles":[]},"400":{"title":"What has been included in past Breaking Changes?","titles":["Breaking Changes"]},"401":{"title":"When is the next Breaking Change?","titles":["Breaking Changes"]},"402":{"title":"Important Dates","titles":["Breaking Changes","When is the next Breaking Change?"]},"403":{"title":"What changes will be included?","titles":["Breaking Changes"]},"404":{"title":"Checklists","titles":["Breaking Changes"]},"405":{"title":"4 Weeks Before Merge","titles":["Breaking Changes","Checklists"]},"406":{"title":"2 Weeks Before Merge","titles":["Breaking Changes","Checklists"]},"407":{"title":"1 Week Before Merge","titles":["Breaking Changes","Checklists"]},"408":{"title":"2 Days Before Merge","titles":["Breaking Changes","Checklists"]},"409":{"title":"Day Of Merge","titles":["Breaking Changes","Checklists"]},"410":{"title":"Post-merge operations","titles":["Breaking Changes"]},"411":{"title":"Updating the develop branch","titles":["Breaking Changes","Post-merge operations"]},"412":{"title":"Set up Discord events for the next cycle","titles":["Breaking Changes","Post-merge operations"]},"413":{"title":"Past Breaking Changes","titles":[]},"414":{"title":"Breaking Changes: My Pull Request Was Flagged","titles":[]},"415":{"title":"What Do I Do?","titles":["Breaking Changes: My Pull Request Was Flagged"]},"416":{"title":"Consider Splitting Up Your PR","titles":["Breaking Changes: My Pull Request Was Flagged","What Do I Do?"]},"417":{"title":"Document Your Changes","titles":["Breaking Changes: My Pull Request Was Flagged","What Do I Do?"]},"418":{"title":"Ask for Help","titles":["Breaking Changes: My Pull Request Was Flagged","What Do I Do?"]},"419":{"title":"ChibiOS Upgrade Procedure","titles":[]},"420":{"title":"Getting ChibiOS","titles":["ChibiOS Upgrade Procedure"]},"421":{"title":"Getting ChibiOS-Contrib","titles":["ChibiOS Upgrade Procedure"]},"422":{"title":"Updating submodules","titles":["ChibiOS Upgrade Procedure"]},"423":{"title":"When merging a PR containing an upgrade of ChibiOS/ChibiOS-Contrib:","titles":["ChibiOS Upgrade Procedure"]},"424":{"title":"QMK CLI","titles":[]},"425":{"title":"Overview","titles":["QMK CLI"]},"426":{"title":"Installation","titles":["QMK CLI","Overview"]},"427":{"title":"QMK CLI Commands","titles":[]},"428":{"title":"User Commands","titles":[]},"429":{"title":"qmk compile","titles":["User Commands"]},"430":{"title":"qmk flash","titles":["User Commands"]},"431":{"title":"qmk config","titles":["User Commands"]},"432":{"title":"qmk cd","titles":["User Commands"]},"433":{"title":"qmk find","titles":["User Commands"]},"434":{"title":"qmk console","titles":["User Commands"]},"435":{"title":"qmk doctor","titles":["User Commands"]},"436":{"title":"qmk format-json","titles":["User Commands"]},"437":{"title":"qmk info","titles":["User Commands"]},"438":{"title":"qmk json2c","titles":["User Commands"]},"439":{"title":"qmk c2json","titles":["User Commands"]},"440":{"title":"qmk lint","titles":["User Commands"]},"441":{"title":"qmk list-keyboards","titles":["User Commands"]},"442":{"title":"qmk list-keymaps","titles":["User Commands"]},"443":{"title":"qmk migrate","titles":["User Commands"]},"444":{"title":"qmk new-keyboard","titles":["User Commands"]},"445":{"title":"qmk new-keymap","titles":["User Commands"]},"446":{"title":"qmk clean","titles":["User Commands"]},"447":{"title":"qmk via2json","titles":["User Commands"]},"448":{"title":"qmk import-keyboard","titles":["User Commands"]},"449":{"title":"qmk import-keymap","titles":["User Commands"]},"450":{"title":"qmk import-kbfirmware","titles":["User Commands"]},"451":{"title":"External Userspace Commands","titles":[]},"452":{"title":"qmk userspace-add","titles":["External Userspace Commands"]},"453":{"title":"qmk userspace-remove","titles":["External Userspace Commands"]},"454":{"title":"qmk userspace-list","titles":["External Userspace Commands"]},"455":{"title":"qmk userspace-compile","titles":["External Userspace Commands"]},"456":{"title":"qmk userspace-doctor","titles":["External Userspace Commands"]},"457":{"title":"Developer Commands","titles":[]},"458":{"title":"qmk format-text","titles":["Developer Commands"]},"459":{"title":"qmk format-c","titles":["Developer Commands"]},"460":{"title":"qmk docs","titles":["Developer Commands"]},"461":{"title":"qmk generate-docs","titles":["Developer Commands"]},"462":{"title":"qmk generate-rgb-breathe-table","titles":["Developer Commands"]},"463":{"title":"qmk kle2json","titles":["Developer Commands"]},"464":{"title":"qmk format-python","titles":["Developer Commands"]},"465":{"title":"qmk pytest","titles":["Developer Commands"]},"466":{"title":"qmk painter-convert-graphics","titles":["Developer Commands"]},"467":{"title":"qmk painter-make-font-image","titles":["Developer Commands"]},"468":{"title":"qmk painter-convert-font-image","titles":["Developer Commands"]},"469":{"title":"qmk test-c","titles":["Developer Commands"]},"470":{"title":"qmk generate-compilation-database","titles":["Developer Commands"]},"471":{"title":"QMK CLI Configuration","titles":[]},"472":{"title":"Introduction","titles":[]},"473":{"title":"Simple Example","titles":["Introduction"]},"474":{"title":"Setting User Defaults","titles":["Introduction"]},"475":{"title":"CLI Documentation (qmk config)","titles":[]},"476":{"title":"Setting Configuration Values","titles":["CLI Documentation (qmk config)"]},"477":{"title":"Reading Configuration Values","titles":["CLI Documentation (qmk config)"]},"478":{"title":"Entire Configuration Example","titles":["CLI Documentation (qmk config)","Reading Configuration Values"]},"479":{"title":"Whole Section Example","titles":["CLI Documentation (qmk config)","Reading Configuration Values"]},"480":{"title":"Single Key Example","titles":["CLI Documentation (qmk config)","Reading Configuration Values"]},"481":{"title":"Multiple Keys Example","titles":["CLI Documentation (qmk config)","Reading Configuration Values"]},"482":{"title":"Deleting Configuration Values","titles":["CLI Documentation (qmk config)"]},"483":{"title":"Multiple Operations","titles":["CLI Documentation (qmk config)"]},"484":{"title":"User Configuration Options","titles":[]},"485":{"title":"All Configuration Options","titles":[]},"486":{"title":"QMK CLI Development","titles":[]},"487":{"title":"Overview","titles":[]},"488":{"title":"Developer mode:","titles":["Overview"]},"489":{"title":"Subcommands","titles":[]},"490":{"title":"User Interaction","titles":[]},"491":{"title":"Printing Text","titles":["User Interaction"]},"492":{"title":"Logging (cli.log)","titles":["User Interaction","Printing Text"]},"493":{"title":"Printing (cli.echo)","titles":["User Interaction","Printing Text"]},"494":{"title":"Colorizing Text","titles":["User Interaction","Printing Text"]},"495":{"title":"Arguments and Configuration","titles":[]},"496":{"title":"Reading Configuration Values","titles":["Arguments and Configuration"]},"497":{"title":"Setting Configuration Values","titles":["Arguments and Configuration"]},"498":{"title":"Deleting Configuration Values","titles":["Arguments and Configuration"]},"499":{"title":"Writing The Configuration File","titles":["Arguments and Configuration"]},"500":{"title":"Excluding Arguments From Configuration","titles":["Arguments and Configuration"]},"501":{"title":"Testing, and Linting, and Formatting (oh my!)","titles":[]},"502":{"title":"Testing and Linting","titles":["Testing, and Linting, and Formatting (oh my!)"]},"503":{"title":"Formatting","titles":["Testing, and Linting, and Formatting (oh my!)"]},"504":{"title":"Formatting Details","titles":["Testing, and Linting, and Formatting (oh my!)"]},"505":{"title":"Testing Details","titles":["Testing, and Linting, and Formatting (oh my!)"]},"506":{"title":"Linting Details","titles":["Testing, and Linting, and Formatting (oh my!)"]},"507":{"title":"Tab Completion for QMK","titles":[]},"508":{"title":"Setup","titles":["Tab Completion for QMK"]},"509":{"title":"For Your User Only","titles":["Tab Completion for QMK","Setup"]},"510":{"title":"System Wide Symlink","titles":["Tab Completion for QMK","Setup"]},"511":{"title":"System Wide Copy","titles":["Tab Completion for QMK","Setup"]},"512":{"title":"Coding Conventions (C)","titles":[]},"513":{"title":"Auto-formatting with clang-format","titles":[]},"514":{"title":"Coding Conventions (Python)","titles":[]},"515":{"title":"YAPF","titles":[]},"516":{"title":"Imports","titles":[]},"517":{"title":"Import Examples","titles":["Imports"]},"518":{"title":"Statements","titles":[]},"519":{"title":"Naming","titles":[]},"520":{"title":"Names to Avoid","titles":["Naming"]},"521":{"title":"Docstrings","titles":[]},"522":{"title":"Simple docstring example","titles":["Docstrings"]},"523":{"title":"Complex docstring example","titles":["Docstrings"]},"524":{"title":"Function arguments docstring example","titles":["Docstrings"]},"525":{"title":"Exceptions","titles":[]},"526":{"title":"Tuples","titles":[]},"527":{"title":"Lists and Dictionaries","titles":[]},"528":{"title":"Parentheses","titles":[]},"529":{"title":"Format Strings","titles":[]},"530":{"title":"Comprehensions & Generator Expressions","titles":[]},"531":{"title":"Lambdas","titles":[]},"532":{"title":"Conditional Expressions","titles":[]},"533":{"title":"Default Argument Values","titles":[]},"534":{"title":"Properties","titles":[]},"535":{"title":"True/False Evaluations","titles":[]},"536":{"title":"Decorators","titles":[]},"537":{"title":"Threading and Multiprocessing","titles":[]},"538":{"title":"Power Features","titles":[]},"539":{"title":"Type Annotated Code","titles":[]},"540":{"title":"Function length","titles":[]},"541":{"title":"FIXMEs","titles":[]},"542":{"title":"Testing","titles":[]},"543":{"title":"Integration Tests","titles":["Testing"]},"544":{"title":"Unit Tests","titles":["Testing"]},"545":{"title":"Compatible Microcontrollers","titles":[]},"546":{"title":"Atmel AVR","titles":["Compatible Microcontrollers"]},"547":{"title":"ARM","titles":["Compatible Microcontrollers"]},"548":{"title":"STMicroelectronics (STM32)","titles":["Compatible Microcontrollers","ARM"]},"549":{"title":"WestBerryTech (WB32)","titles":["Compatible Microcontrollers","ARM"]},"550":{"title":"Artery (AT32)","titles":["Compatible Microcontrollers","ARM"]},"551":{"title":"NXP (Kinetis)","titles":["Compatible Microcontrollers","ARM"]},"552":{"title":"Raspberry Pi","titles":["Compatible Microcontrollers","ARM"]},"553":{"title":"RISC-V","titles":["Compatible Microcontrollers"]},"554":{"title":"GigaDevice","titles":["Compatible Microcontrollers","RISC-V"]},"555":{"title":"Configuring QMK","titles":[]},"556":{"title":"QMK Default","titles":["Configuring QMK"]},"557":{"title":"Keyboard","titles":["Configuring QMK"]},"558":{"title":"Folders","titles":["Configuring QMK"]},"559":{"title":"Keymap","titles":["Configuring QMK"]},"560":{"title":"The config.h File","titles":[]},"561":{"title":"Hardware Options","titles":["The config.h File"]},"562":{"title":"Features That Can Be Disabled","titles":["The config.h File"]},"563":{"title":"Features That Can Be Enabled","titles":["The config.h File"]},"564":{"title":"Behaviors That Can Be Configured","titles":["The config.h File"]},"565":{"title":"RGB Light Configuration","titles":["The config.h File"]},"566":{"title":"Mouse Key Options","titles":["The config.h File"]},"567":{"title":"Split Keyboard Options","titles":["The config.h File"]},"568":{"title":"Setting Handedness","titles":["The config.h File","Split Keyboard Options"]},"569":{"title":"Defines for handedness","titles":["The config.h File","Split Keyboard Options","Setting Handedness"]},"570":{"title":"Other Options","titles":["The config.h File","Split Keyboard Options"]},"571":{"title":"The rules.mk File","titles":[]},"572":{"title":"Build Options","titles":["The rules.mk File"]},"573":{"title":"AVR MCU Options","titles":["The rules.mk File"]},"574":{"title":"Feature Options","titles":["The rules.mk File"]},"575":{"title":"USB Endpoint Limitations","titles":["The rules.mk File"]},"576":{"title":"QMK Configurator Architecture","titles":[]},"577":{"title":"Overview","titles":[]},"578":{"title":"Detailed Description","titles":[]},"579":{"title":"Configurator Frontend","titles":["Detailed Description"]},"580":{"title":"Keyboard Metadata","titles":["Detailed Description"]},"581":{"title":"QMK API","titles":["Detailed Description"]},"582":{"title":"Compile Job Queued","titles":["Detailed Description","QMK API"]},"583":{"title":"Compile Job Running","titles":["Detailed Description","QMK API"]},"584":{"title":"Compile Job Finished","titles":["Detailed Description","QMK API"]},"585":{"title":"Redis/RQ","titles":["Detailed Description"]},"586":{"title":"QMK Compiler","titles":["Detailed Description"]},"587":{"title":"Adding Default Keymaps to QMK Configurator","titles":[]},"588":{"title":"Technical Information","titles":["Adding Default Keymaps to QMK Configurator"]},"589":{"title":"Example","titles":["Adding Default Keymaps to QMK Configurator"]},"590":{"title":"Caveats","titles":["Adding Default Keymaps to QMK Configurator"]},"591":{"title":"Layers can only be referenced by number","titles":["Adding Default Keymaps to QMK Configurator","Caveats"]},"592":{"title":"No support for custom code of any kind","titles":["Adding Default Keymaps to QMK Configurator","Caveats"]},"593":{"title":"Limited Support for Custom keycodes","titles":["Adding Default Keymaps to QMK Configurator","Caveats"]},"594":{"title":"Additional Reading","titles":["Adding Default Keymaps to QMK Configurator"]},"595":{"title":"QMK Configurator: Step by Step","titles":[]},"596":{"title":"Step 1: Select Your Keyboard","titles":["QMK Configurator: Step by Step"]},"597":{"title":"Step 2: Select Your Keyboard Layout","titles":["QMK Configurator: Step by Step"]},"598":{"title":"Step 3: Name Your Keymap","titles":["QMK Configurator: Step by Step"]},"599":{"title":"Step 4: Define Your Keymap","titles":["QMK Configurator: Step by Step"]},"600":{"title":"Step 5: Save Your Keymap for Future Changes","titles":["QMK Configurator: Step by Step"]},"601":{"title":"Step 6: Compile Your Firmware File","titles":["QMK Configurator: Step by Step"]},"602":{"title":"Next steps: Flashing Your Keyboard","titles":["QMK Configurator: Step by Step"]},"603":{"title":"Configurator Troubleshooting","titles":[]},"604":{"title":"My .json file is not working","titles":["Configurator Troubleshooting"]},"605":{"title":"There are extra spaces in my layout? What do I do?","titles":["Configurator Troubleshooting"]},"606":{"title":"What is the keycode for...","titles":["Configurator Troubleshooting"]},"607":{"title":"It won't compile","titles":["Configurator Troubleshooting"]},"608":{"title":"Problems and Bugs","titles":["Configurator Troubleshooting"]},"609":{"title":"How to Contribute","titles":[]},"610":{"title":"I Don't Want to Read This Whole Thing! I Just Have a Question!","titles":["How to Contribute"]},"611":{"title":"Project Overview","titles":[]},"612":{"title":"Where Can I Go for Help?","titles":[]},"613":{"title":"How Do I Make a Contribution?","titles":[]},"614":{"title":"Coding Conventions","titles":[]},"615":{"title":"General Guidelines","titles":[]},"616":{"title":"Documentation","titles":["General Guidelines"]},"617":{"title":"Previewing the Documentation","titles":["General Guidelines","Documentation"]},"618":{"title":"Keyboards","titles":["General Guidelines"]},"619":{"title":"Quantum/TMK Core","titles":["General Guidelines"]},"620":{"title":"Refactoring","titles":["General Guidelines"]},"621":{"title":"What Does the Code of Conduct Mean for Me?","titles":[]},"622":{"title":"Custom Matrix","titles":[]},"623":{"title":"Prerequisites","titles":["Custom Matrix"]},"624":{"title":"'lite'","titles":["Custom Matrix"]},"625":{"title":"Full Replacement","titles":["Custom Matrix"]},"626":{"title":"How to Customize Your Keyboard's Behavior","titles":[]},"627":{"title":"A Word on Core vs Keyboards vs Keymap","titles":["How to Customize Your Keyboard's Behavior"]},"628":{"title":"Custom Keycodes","titles":[]},"629":{"title":"Defining a New Keycode","titles":["Custom Keycodes"]},"630":{"title":"Programming the Behavior of Any Keycode","titles":["Custom Keycodes"]},"631":{"title":"Example process_record_user() Implementation","titles":["Custom Keycodes","Programming the Behavior of Any Keycode"]},"632":{"title":"process_record_* Function Documentation","titles":["Custom Keycodes","Programming the Behavior of Any Keycode"]},"633":{"title":"Keyboard Initialization Code","titles":[]},"634":{"title":"Keyboard Pre Initialization code","titles":["Keyboard Initialization Code"]},"635":{"title":"Example keyboard_pre_init_user() Implementation","titles":["Keyboard Initialization Code","Keyboard Pre Initialization code"]},"636":{"title":"keyboard_pre_init_* Function Documentation","titles":["Keyboard Initialization Code","Keyboard Pre Initialization code"]},"637":{"title":"Matrix Initialization Code","titles":["Keyboard Initialization Code"]},"638":{"title":"matrix_init_* Function Documentation","titles":["Keyboard Initialization Code","Matrix Initialization Code"]},"639":{"title":"Low-level Matrix Overrides Function Documentation","titles":["Keyboard Initialization Code","Matrix Initialization Code"]},"640":{"title":"Keyboard Post Initialization code","titles":["Keyboard Initialization Code"]},"641":{"title":"Example keyboard_post_init_user() Implementation","titles":["Keyboard Initialization Code","Keyboard Post Initialization code"]},"642":{"title":"keyboard_post_init_* Function Documentation","titles":["Keyboard Initialization Code","Keyboard Post Initialization code"]},"643":{"title":"Matrix Scanning Code","titles":[]},"644":{"title":"Example matrix_scan_* Implementation","titles":["Matrix Scanning Code"]},"645":{"title":"matrix_scan_* Function Documentation","titles":["Matrix Scanning Code"]},"646":{"title":"Keyboard housekeeping","titles":[]},"647":{"title":"Example void housekeeping_task_user(void) implementation","titles":["Keyboard housekeeping"]},"648":{"title":"Keyboard Idling/Wake Code","titles":[]},"649":{"title":"Example suspend_power_down_user() and suspend_wakeup_init_user() Implementation","titles":["Keyboard Idling/Wake Code"]},"650":{"title":"Keyboard suspend/wake Function Documentation","titles":["Keyboard Idling/Wake Code"]},"651":{"title":"Keyboard Shutdown/Reboot Code","titles":[]},"652":{"title":"Example shutdown_kb() Implementation","titles":["Keyboard Shutdown/Reboot Code"]},"653":{"title":"Example shutdown_user() Implementation","titles":["Keyboard Shutdown/Reboot Code"]},"654":{"title":"Keyboard shutdown/reboot Function Documentation","titles":["Keyboard Shutdown/Reboot Code"]},"655":{"title":"Deferred Execution","titles":[]},"656":{"title":"Deferred executor callbacks","titles":["Deferred Execution"]},"657":{"title":"Deferred executor registration","titles":["Deferred Execution"]},"658":{"title":"Extending a deferred execution","titles":["Deferred Execution"]},"659":{"title":"Cancelling a deferred execution","titles":["Deferred Execution"]},"660":{"title":"Deferred callback limits","titles":["Deferred Execution"]},"661":{"title":"Advanced topics","titles":[]},"662":{"title":"Layer Change Code","titles":["Advanced topics"]},"663":{"title":"Persistent Configuration (EEPROM)","titles":["Advanced topics"]},"664":{"title":"Data Driven Configuration","titles":[]},"665":{"title":"History","titles":["Data Driven Configuration"]},"666":{"title":"Overview","titles":["Data Driven Configuration"]},"667":{"title":"Adding an option to info.json","titles":["Data Driven Configuration"]},"668":{"title":"Add it to the schema","titles":["Data Driven Configuration","Adding an option to info.json"]},"669":{"title":"Add a mapping","titles":["Data Driven Configuration","Adding an option to info.json"]},"670":{"title":"Info Key","titles":["Data Driven Configuration","Adding an option to info.json","Add a mapping"]},"671":{"title":"Value Types","titles":["Data Driven Configuration","Adding an option to info.json","Add a mapping"]},"672":{"title":"Add code to extract it","titles":["Data Driven Configuration","Adding an option to info.json"]},"673":{"title":"Add code to generate it","titles":["Data Driven Configuration","Adding an option to info.json"]},"674":{"title":"Documentation Best Practices","titles":[]},"675":{"title":"Page Opening","titles":[]},"676":{"title":"Paragraphs","titles":[]},"677":{"title":"Headings","titles":[]},"678":{"title":"Styled Hint Blocks","titles":[]},"679":{"title":"Important","titles":["Styled Hint Blocks"]},"680":{"title":"General Tips","titles":["Styled Hint Blocks"]},"681":{"title":"Documenting Features","titles":[]},"682":{"title":"Documentation Templates","titles":[]},"683":{"title":"Keymap readme.md Template","titles":["Documentation Templates"]},"684":{"title":"Keyboard readme.md Template","titles":["Documentation Templates"]},"685":{"title":"ADC Driver","titles":[]},"686":{"title":"Usage","titles":["ADC Driver"]},"687":{"title":"Channels","titles":["ADC Driver"]},"688":{"title":"AVR","titles":["ADC Driver","Channels"]},"689":{"title":"ARM","titles":["ADC Driver","Channels"]},"690":{"title":"STM32","titles":["ADC Driver","Channels","ARM"]},"691":{"title":"RP2040","titles":["ADC Driver","Channels","ARM"]},"692":{"title":"Functions","titles":["ADC Driver"]},"693":{"title":"AVR","titles":["ADC Driver","Functions"]},"694":{"title":"ARM","titles":["ADC Driver","Functions"]},"695":{"title":"Configuration","titles":["ADC Driver"]},"696":{"title":"ARM","titles":["ADC Driver"]},"697":{"title":"APA102 Driver","titles":[]},"698":{"title":"Usage","titles":["APA102 Driver"]},"699":{"title":"Basic Configuration","titles":["APA102 Driver"]},"700":{"title":"API","titles":["APA102 Driver"]},"701":{"title":"void apa102_init(void)","titles":["APA102 Driver","API"]},"702":{"title":"void apa102_set_color(uint16_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["APA102 Driver","API"]},"703":{"title":"Arguments","titles":["APA102 Driver","API","void apa102_set_color(uint16_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"704":{"title":"void apa102_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["APA102 Driver","API"]},"705":{"title":"Arguments","titles":["APA102 Driver","API","void apa102_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"706":{"title":"void apa102_flush(void)","titles":["APA102 Driver","API"]},"707":{"title":"void apa102_set_brightness(uint8_t brightness)","titles":["APA102 Driver","API"]},"708":{"title":"Arguments","titles":["APA102 Driver","API","void apa102_set_brightness(uint8_t brightness)"]},"709":{"title":"Bootloader Driver Installation with Zadig","titles":[]},"710":{"title":"Installation","titles":["Bootloader Driver Installation with Zadig"]},"711":{"title":"Recovering from Installation to Wrong Device","titles":["Bootloader Driver Installation with Zadig"]},"712":{"title":"Uninstallation","titles":["Bootloader Driver Installation with Zadig"]},"713":{"title":"List of Known Bootloaders","titles":["Bootloader Driver Installation with Zadig"]},"714":{"title":"Audio Driver","titles":[]},"715":{"title":"AVR","titles":["Audio Driver"]},"716":{"title":"ARM","titles":["Audio Driver"]},"717":{"title":"DAC basic","titles":["Audio Driver","ARM"]},"718":{"title":"DAC additive","titles":["Audio Driver","ARM"]},"719":{"title":"DAC Config","titles":["Audio Driver","ARM"]},"720":{"title":"Notes on buffer size","titles":["Audio Driver","ARM","DAC Config"]},"721":{"title":"PWM hardware","titles":["Audio Driver","ARM"]},"722":{"title":"PWM software","titles":["Audio Driver","ARM"]},"723":{"title":"Testing Notes","titles":["Audio Driver","ARM"]},"724":{"title":"AW20216S Driver","titles":[]},"725":{"title":"Usage","titles":["AW20216S Driver"]},"726":{"title":"Basic Configuration","titles":["AW20216S Driver"]},"727":{"title":"Global Current Control","titles":["AW20216S Driver","Basic Configuration"]},"728":{"title":"ARM/ChibiOS Configuration","titles":["AW20216S Driver"]},"729":{"title":"LED Mapping","titles":["AW20216S Driver"]},"730":{"title":"API","titles":["AW20216S Driver"]},"731":{"title":"struct aw20216s_led_t","titles":["AW20216S Driver","API"]},"732":{"title":"Members","titles":["AW20216S Driver","API","struct aw20216s_led_t"]},"733":{"title":"void aw20216s_init(pin_t cs_pin)","titles":["AW20216S Driver","API"]},"734":{"title":"Arguments","titles":["AW20216S Driver","API","void aw20216s_init(pin_t cs_pin)"]},"735":{"title":"void aw20216s_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["AW20216S Driver","API"]},"736":{"title":"Arguments","titles":["AW20216S Driver","API","void aw20216s_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"737":{"title":"void aw20216s_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["AW20216S Driver","API"]},"738":{"title":"Arguments","titles":["AW20216S Driver","API","void aw20216s_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"739":{"title":"void aw20216s_update_pwm_buffers(pin_t cs_pin, uint8_t index)","titles":["AW20216S Driver","API"]},"740":{"title":"Arguments","titles":["AW20216S Driver","API","void aw20216s_update_pwm_buffers(pin_t cs_pin, uint8_t index)"]},"741":{"title":"Battery Driver","titles":[]},"742":{"title":"Usage","titles":["Battery Driver"]},"743":{"title":"Driver Configuration","titles":["Battery Driver"]},"744":{"title":"ADC Driver","titles":["Battery Driver","Driver Configuration"]},"745":{"title":"Custom Driver","titles":["Battery Driver","Driver Configuration"]},"746":{"title":"EEPROM Driver Configuration","titles":[]},"747":{"title":"Vendor Driver Configuration","titles":["EEPROM Driver Configuration"]},"748":{"title":"STM32 L0/L1 Configuration","titles":["EEPROM Driver Configuration","Vendor Driver Configuration"]},"749":{"title":"I2C Driver Configuration","titles":["EEPROM Driver Configuration"]},"750":{"title":"SPI Driver Configuration","titles":["EEPROM Driver Configuration"]},"751":{"title":"Transient Driver configuration","titles":["EEPROM Driver Configuration"]},"752":{"title":"Wear-leveling Driver Configuration","titles":["EEPROM Driver Configuration"]},"753":{"title":"Wear-leveling Configuration","titles":[]},"754":{"title":"Wear-leveling Embedded Flash Driver Configuration","titles":["Wear-leveling Configuration"]},"755":{"title":"Wear-leveling SPI Flash Driver Configuration","titles":["Wear-leveling Configuration"]},"756":{"title":"Wear-leveling RP2040 Driver Configuration","titles":["Wear-leveling Configuration"]},"757":{"title":"Wear-leveling Legacy EEPROM Emulation Driver Configuration","titles":["Wear-leveling Configuration"]},"758":{"title":"FLASH Driver Configuration","titles":[]},"759":{"title":"SPI FLASH Driver Configuration","titles":["FLASH Driver Configuration"]},"760":{"title":"I2C Master Driver","titles":[]},"761":{"title":"Usage","titles":["I2C Master Driver"]},"762":{"title":"I2C Addressing","titles":["I2C Master Driver"]},"763":{"title":"AVR Configuration","titles":["I2C Master Driver"]},"764":{"title":"ChibiOS/ARM Configuration","titles":["I2C Master Driver"]},"765":{"title":"I2Cv1","titles":["I2C Master Driver","ChibiOS/ARM Configuration"]},"766":{"title":"I2Cv2","titles":["I2C Master Driver","ChibiOS/ARM Configuration"]},"767":{"title":"API","titles":["I2C Master Driver"]},"768":{"title":"void i2c_init(void)","titles":["I2C Master Driver","API"]},"769":{"title":"i2c_status_t i2c_transmit(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"770":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"771":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"772":{"title":"i2c_status_t i2c_transmit_P(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"773":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit_P(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"774":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit_P(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"775":{"title":"i2c_status_t i2c_receive(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"776":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_receive(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout)"]},"777":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_receive(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout)"]},"778":{"title":"i2c_status_t i2c_transmit_and_receive(uint8_t address, const uint8_t* tx_data, uint16_t tx_length, uint8_t* rx_data, uint16_t rx_length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"779":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit_and_receive(uint8_t address, const uint8_t* tx_data, uint16_t tx_length, uint8_t* rx_data, uint16_t rx_length, uint16_t timeout)"]},"780":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit_and_receive(uint8_t address, const uint8_t* tx_data, uint16_t tx_length, uint8_t* rx_data, uint16_t rx_length, uint16_t timeout)"]},"781":{"title":"i2c_status_t i2c_write_register(uint8_t devaddr, uint8_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"782":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_write_register(uint8_t devaddr, uint8_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"783":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_write_register(uint8_t devaddr, uint8_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"784":{"title":"i2c_status_t i2c_write_register16(uint8_t devaddr, uint16_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"785":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_write_register16(uint8_t devaddr, uint16_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"786":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_write_register16(uint8_t devaddr, uint16_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"787":{"title":"i2c_status_t i2c_read_register(uint8_t devaddr, uint8_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"788":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_read_register(uint8_t devaddr, uint8_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)"]},"789":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_read_register(uint8_t devaddr, uint8_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)"]},"790":{"title":"i2c_status_t i2c_read_register16(uint8_t devaddr, uint16_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"791":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_read_register16(uint8_t devaddr, uint16_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)"]},"792":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_read_register16(uint8_t devaddr, uint16_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)"]},"793":{"title":"i2c_status_t i2c_ping_address(uint8_t address, uint16_t timeout)","titles":["I2C Master Driver","API"]},"794":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_ping_address(uint8_t address, uint16_t timeout)"]},"795":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_ping_address(uint8_t address, uint16_t timeout)"]},"796":{"title":"GPIO Control","titles":[]},"797":{"title":"Macros","titles":["GPIO Control"]},"798":{"title":"Advanced Settings","titles":["GPIO Control"]},"799":{"title":"Atomic Operation","titles":["GPIO Control"]},"800":{"title":"IS31FL3218 Driver","titles":[]},"801":{"title":"Usage","titles":["IS31FL3218 Driver"]},"802":{"title":"Basic Configuration","titles":["IS31FL3218 Driver"]},"803":{"title":"I²C Addressing","titles":["IS31FL3218 Driver","Basic Configuration"]},"804":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3218 Driver"]},"805":{"title":"LED Mapping","titles":["IS31FL3218 Driver"]},"806":{"title":"API","titles":["IS31FL3218 Driver"]},"807":{"title":"struct is31fl3218_led_t","titles":["IS31FL3218 Driver","API"]},"808":{"title":"Members","titles":["IS31FL3218 Driver","API","struct is31fl3218_led_t"]},"809":{"title":"void is31fl3218_init(void)","titles":["IS31FL3218 Driver","API"]},"810":{"title":"void is31fl3218_write_register(uint8_t reg, uint8_t data)","titles":["IS31FL3218 Driver","API"]},"811":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_write_register(uint8_t reg, uint8_t data)"]},"812":{"title":"void is31fl3218_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3218 Driver","API"]},"813":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"814":{"title":"void is31fl3218_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3218 Driver","API"]},"815":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"816":{"title":"void is31fl3218_set_value(int index, uint8_t value)","titles":["IS31FL3218 Driver","API"]},"817":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_value(int index, uint8_t value)"]},"818":{"title":"void is31fl3218_set_value_all(uint8_t value)","titles":["IS31FL3218 Driver","API"]},"819":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_value_all(uint8_t value)"]},"820":{"title":"void is31fl3218_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3218 Driver","API"]},"821":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"822":{"title":"void is31fl3218_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3218 Driver","API"]},"823":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_led_control_register(uint8_t index, bool value)"]},"824":{"title":"void is31fl3218_update_pwm_buffers(void)","titles":["IS31FL3218 Driver","API"]},"825":{"title":"void is31fl3218_update_led_control_registers(void)","titles":["IS31FL3218 Driver","API"]},"826":{"title":"IS31FL3236 Driver","titles":[]},"827":{"title":"Usage","titles":["IS31FL3236 Driver"]},"828":{"title":"Basic Configuration","titles":["IS31FL3236 Driver"]},"829":{"title":"I²C Addressing","titles":["IS31FL3236 Driver","Basic Configuration"]},"830":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3236 Driver"]},"831":{"title":"LED Mapping","titles":["IS31FL3236 Driver"]},"832":{"title":"API","titles":["IS31FL3236 Driver"]},"833":{"title":"struct is31fl3236_led_t","titles":["IS31FL3236 Driver","API"]},"834":{"title":"Members","titles":["IS31FL3236 Driver","API","struct is31fl3236_led_t"]},"835":{"title":"void is31fl3236_init(uint8_t index)","titles":["IS31FL3236 Driver","API"]},"836":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_init(uint8_t index)"]},"837":{"title":"void is31fl3236_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3236 Driver","API"]},"838":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"839":{"title":"void is31fl3236_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3236 Driver","API"]},"840":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"841":{"title":"void is31fl3236_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3236 Driver","API"]},"842":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"843":{"title":"void is31fl3236_set_value(int index, uint8_t value)","titles":["IS31FL3236 Driver","API"]},"844":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_value(int index, uint8_t value)"]},"845":{"title":"void is31fl3236_set_value_all(uint8_t value)","titles":["IS31FL3236 Driver","API"]},"846":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_value_all(uint8_t value)"]},"847":{"title":"void is31fl3236_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3236 Driver","API"]},"848":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"849":{"title":"void is31fl3236_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3236 Driver","API"]},"850":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_led_control_register(uint8_t index, bool value)"]},"851":{"title":"void is31fl3236_update_pwm_buffers(uint8_t index)","titles":["IS31FL3236 Driver","API"]},"852":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_update_pwm_buffers(uint8_t index)"]},"853":{"title":"void is31fl3236_update_led_control_registers(uint8_t index)","titles":["IS31FL3236 Driver","API"]},"854":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_update_led_control_registers(uint8_t index)"]},"855":{"title":"IS31FL3729 Driver","titles":[]},"856":{"title":"Usage","titles":["IS31FL3729 Driver"]},"857":{"title":"Basic Configuration","titles":["IS31FL3729 Driver"]},"858":{"title":"I²C Addressing","titles":["IS31FL3729 Driver","Basic Configuration"]},"859":{"title":"PWM Frequency","titles":["IS31FL3729 Driver","Basic Configuration"]},"860":{"title":"De-Ghosting","titles":["IS31FL3729 Driver","Basic Configuration"]},"861":{"title":"Global Current Control","titles":["IS31FL3729 Driver","Basic Configuration"]},"862":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3729 Driver"]},"863":{"title":"LED Mapping","titles":["IS31FL3729 Driver"]},"864":{"title":"API","titles":["IS31FL3729 Driver"]},"865":{"title":"struct is31fl3729_led_t","titles":["IS31FL3729 Driver","API"]},"866":{"title":"Members","titles":["IS31FL3729 Driver","API","struct is31fl3729_led_t"]},"867":{"title":"void is31fl3729_init(uint8_t index)","titles":["IS31FL3729 Driver","API"]},"868":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_init(uint8_t index)"]},"869":{"title":"void is31fl3729_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3729 Driver","API"]},"870":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"871":{"title":"void is31fl3729_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3729 Driver","API"]},"872":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"873":{"title":"void is31fl3729_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3729 Driver","API"]},"874":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"875":{"title":"void is31fl3729_set_value(int index, uint8_t value)","titles":["IS31FL3729 Driver","API"]},"876":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_value(int index, uint8_t value)"]},"877":{"title":"void is31fl3729_set_value_all(uint8_t value)","titles":["IS31FL3729 Driver","API"]},"878":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_value_all(uint8_t value)"]},"879":{"title":"void is31fl3729_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3729 Driver","API"]},"880":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"881":{"title":"void is31fl3729_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3729 Driver","API"]},"882":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_scaling_register(uint8_t index, uint8_t value)"]},"883":{"title":"void is31fl3729_update_pwm_buffers(uint8_t index)","titles":["IS31FL3729 Driver","API"]},"884":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_update_pwm_buffers(uint8_t index)"]},"885":{"title":"void is31fl3729_update_scaling_registers(uint8_t index)","titles":["IS31FL3729 Driver","API"]},"886":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_update_scaling_registers(uint8_t index)"]},"887":{"title":"IS31FL3731 Driver","titles":[]},"888":{"title":"Usage","titles":["IS31FL3731 Driver"]},"889":{"title":"Basic Configuration","titles":["IS31FL3731 Driver"]},"890":{"title":"I²C Addressing","titles":["IS31FL3731 Driver","Basic Configuration"]},"891":{"title":"De-Ghosting","titles":["IS31FL3731 Driver","Basic Configuration"]},"892":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3731 Driver"]},"893":{"title":"LED Mapping","titles":["IS31FL3731 Driver"]},"894":{"title":"API","titles":["IS31FL3731 Driver"]},"895":{"title":"struct is31fl3731_led_t","titles":["IS31FL3731 Driver","API"]},"896":{"title":"Members","titles":["IS31FL3731 Driver","API","struct is31fl3731_led_t"]},"897":{"title":"void is31fl3731_init(uint8_t index)","titles":["IS31FL3731 Driver","API"]},"898":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_init(uint8_t index)"]},"899":{"title":"void is31fl3731_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3731 Driver","API"]},"900":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"901":{"title":"void is31fl3731_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3731 Driver","API"]},"902":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_select_page(uint8_t index, uint8_t page)"]},"903":{"title":"void is31fl3731_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3731 Driver","API"]},"904":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"905":{"title":"void is31fl3731_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3731 Driver","API"]},"906":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"907":{"title":"void is31fl3731_set_value(int index, uint8_t value)","titles":["IS31FL3731 Driver","API"]},"908":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_value(int index, uint8_t value)"]},"909":{"title":"void is31fl3731_set_value_all(uint8_t value)","titles":["IS31FL3731 Driver","API"]},"910":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_value_all(uint8_t value)"]},"911":{"title":"void is31fl3731_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3731 Driver","API"]},"912":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"913":{"title":"void is31fl3731_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3731 Driver","API"]},"914":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_led_control_register(uint8_t index, bool value)"]},"915":{"title":"void is31fl3731_update_pwm_buffers(uint8_t index)","titles":["IS31FL3731 Driver","API"]},"916":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_update_pwm_buffers(uint8_t index)"]},"917":{"title":"void is31fl3731_update_led_control_registers(uint8_t index)","titles":["IS31FL3731 Driver","API"]},"918":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_update_led_control_registers(uint8_t index)"]},"919":{"title":"IS31FL3733 Driver","titles":[]},"920":{"title":"Usage","titles":["IS31FL3733 Driver"]},"921":{"title":"Basic Configuration","titles":["IS31FL3733 Driver"]},"922":{"title":"I²C Addressing","titles":["IS31FL3733 Driver","Basic Configuration"]},"923":{"title":"Multi-Driver Synchronization","titles":["IS31FL3733 Driver","Basic Configuration"]},"924":{"title":"PWM Frequency","titles":["IS31FL3733 Driver","Basic Configuration"]},"925":{"title":"De-Ghosting","titles":["IS31FL3733 Driver","Basic Configuration"]},"926":{"title":"Global Current Control","titles":["IS31FL3733 Driver","Basic Configuration"]},"927":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3733 Driver"]},"928":{"title":"LED Mapping","titles":["IS31FL3733 Driver"]},"929":{"title":"API","titles":["IS31FL3733 Driver"]},"930":{"title":"struct is31fl3733_led_t","titles":["IS31FL3733 Driver","API"]},"931":{"title":"Members","titles":["IS31FL3733 Driver","API","struct is31fl3733_led_t"]},"932":{"title":"void is31fl3733_init(uint8_t index)","titles":["IS31FL3733 Driver","API"]},"933":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_init(uint8_t index)"]},"934":{"title":"void is31fl3733_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3733 Driver","API"]},"935":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"936":{"title":"void is31fl3733_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3733 Driver","API"]},"937":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_select_page(uint8_t index, uint8_t page)"]},"938":{"title":"void is31fl3733_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3733 Driver","API"]},"939":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"940":{"title":"void is31fl3733_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3733 Driver","API"]},"941":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"942":{"title":"void is31fl3733_set_value(int index, uint8_t value)","titles":["IS31FL3733 Driver","API"]},"943":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_value(int index, uint8_t value)"]},"944":{"title":"void is31fl3733_set_value_all(uint8_t value)","titles":["IS31FL3733 Driver","API"]},"945":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_value_all(uint8_t value)"]},"946":{"title":"void is31fl3733_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3733 Driver","API"]},"947":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"948":{"title":"void is31fl3733_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3733 Driver","API"]},"949":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_led_control_register(uint8_t index, bool value)"]},"950":{"title":"void is31fl3733_update_pwm_buffers(uint8_t index)","titles":["IS31FL3733 Driver","API"]},"951":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_update_pwm_buffers(uint8_t index)"]},"952":{"title":"void is31fl3733_update_led_control_registers(uint8_t index)","titles":["IS31FL3733 Driver","API"]},"953":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_update_led_control_registers(uint8_t index)"]},"954":{"title":"IS31FL3736 Driver","titles":[]},"955":{"title":"Usage","titles":["IS31FL3736 Driver"]},"956":{"title":"Basic Configuration","titles":["IS31FL3736 Driver"]},"957":{"title":"I²C Addressing","titles":["IS31FL3736 Driver","Basic Configuration"]},"958":{"title":"PWM Frequency","titles":["IS31FL3736 Driver","Basic Configuration"]},"959":{"title":"De-Ghosting","titles":["IS31FL3736 Driver","Basic Configuration"]},"960":{"title":"Global Current Control","titles":["IS31FL3736 Driver","Basic Configuration"]},"961":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3736 Driver"]},"962":{"title":"LED Mapping","titles":["IS31FL3736 Driver"]},"963":{"title":"API","titles":["IS31FL3736 Driver"]},"964":{"title":"struct is31fl3736_led_t","titles":["IS31FL3736 Driver","API"]},"965":{"title":"Members","titles":["IS31FL3736 Driver","API","struct is31fl3736_led_t"]},"966":{"title":"void is31fl3736_init(uint8_t index)","titles":["IS31FL3736 Driver","API"]},"967":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_init(uint8_t index)"]},"968":{"title":"void is31fl3736_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3736 Driver","API"]},"969":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"970":{"title":"void is31fl3736_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3736 Driver","API"]},"971":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_select_page(uint8_t index, uint8_t page)"]},"972":{"title":"void is31fl3736_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3736 Driver","API"]},"973":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"974":{"title":"void is31fl3736_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3736 Driver","API"]},"975":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"976":{"title":"void is31fl3736_set_value(int index, uint8_t value)","titles":["IS31FL3736 Driver","API"]},"977":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_value(int index, uint8_t value)"]},"978":{"title":"void is31fl3736_set_value_all(uint8_t value)","titles":["IS31FL3736 Driver","API"]},"979":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_value_all(uint8_t value)"]},"980":{"title":"void is31fl3736_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3736 Driver","API"]},"981":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"982":{"title":"void is31fl3736_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3736 Driver","API"]},"983":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_led_control_register(uint8_t index, bool value)"]},"984":{"title":"void is31fl3736_update_pwm_buffers(uint8_t index)","titles":["IS31FL3736 Driver","API"]},"985":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_update_pwm_buffers(uint8_t index)"]},"986":{"title":"void is31fl3736_update_led_control_registers(uint8_t index)","titles":["IS31FL3736 Driver","API"]},"987":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_update_led_control_registers(uint8_t index)"]},"988":{"title":"IS31FL3737 Driver","titles":[]},"989":{"title":"Usage","titles":["IS31FL3737 Driver"]},"990":{"title":"Basic Configuration","titles":["IS31FL3737 Driver"]},"991":{"title":"I²C Addressing","titles":["IS31FL3737 Driver","Basic Configuration"]},"992":{"title":"PWM Frequency","titles":["IS31FL3737 Driver","Basic Configuration"]},"993":{"title":"De-Ghosting","titles":["IS31FL3737 Driver","Basic Configuration"]},"994":{"title":"Global Current Control","titles":["IS31FL3737 Driver","Basic Configuration"]},"995":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3737 Driver"]},"996":{"title":"LED Mapping","titles":["IS31FL3737 Driver"]},"997":{"title":"API","titles":["IS31FL3737 Driver"]},"998":{"title":"struct is31fl3737_led_t","titles":["IS31FL3737 Driver","API"]},"999":{"title":"Members","titles":["IS31FL3737 Driver","API","struct is31fl3737_led_t"]},"1000":{"title":"void is31fl3737_init(uint8_t index)","titles":["IS31FL3737 Driver","API"]},"1001":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_init(uint8_t index)"]},"1002":{"title":"void is31fl3737_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3737 Driver","API"]},"1003":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1004":{"title":"void is31fl3737_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3737 Driver","API"]},"1005":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_select_page(uint8_t index, uint8_t page)"]},"1006":{"title":"void is31fl3737_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3737 Driver","API"]},"1007":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1008":{"title":"void is31fl3737_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3737 Driver","API"]},"1009":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1010":{"title":"void is31fl3737_set_value(int index, uint8_t value)","titles":["IS31FL3737 Driver","API"]},"1011":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_value(int index, uint8_t value)"]},"1012":{"title":"void is31fl3737_set_value_all(uint8_t value)","titles":["IS31FL3737 Driver","API"]},"1013":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_value_all(uint8_t value)"]},"1014":{"title":"void is31fl3737_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3737 Driver","API"]},"1015":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"1016":{"title":"void is31fl3737_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3737 Driver","API"]},"1017":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_led_control_register(uint8_t index, bool value)"]},"1018":{"title":"void is31fl3737_update_pwm_buffers(uint8_t index)","titles":["IS31FL3737 Driver","API"]},"1019":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_update_pwm_buffers(uint8_t index)"]},"1020":{"title":"void is31fl3737_update_led_control_registers(uint8_t index)","titles":["IS31FL3737 Driver","API"]},"1021":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_update_led_control_registers(uint8_t index)"]},"1022":{"title":"IS31FL3741 Driver","titles":[]},"1023":{"title":"Usage","titles":["IS31FL3741 Driver"]},"1024":{"title":"Basic Configuration","titles":["IS31FL3741 Driver"]},"1025":{"title":"I²C Addressing","titles":["IS31FL3741 Driver","Basic Configuration"]},"1026":{"title":"PWM Frequency","titles":["IS31FL3741 Driver","Basic Configuration"]},"1027":{"title":"De-Ghosting","titles":["IS31FL3741 Driver","Basic Configuration"]},"1028":{"title":"Global Current Control","titles":["IS31FL3741 Driver","Basic Configuration"]},"1029":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3741 Driver"]},"1030":{"title":"LED Mapping","titles":["IS31FL3741 Driver"]},"1031":{"title":"API","titles":["IS31FL3741 Driver"]},"1032":{"title":"struct is31fl3741_led_t","titles":["IS31FL3741 Driver","API"]},"1033":{"title":"Members","titles":["IS31FL3741 Driver","API","struct is31fl3741_led_t"]},"1034":{"title":"void is31fl3741_init(uint8_t index)","titles":["IS31FL3741 Driver","API"]},"1035":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_init(uint8_t index)"]},"1036":{"title":"void is31fl3741_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3741 Driver","API"]},"1037":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1038":{"title":"void is31fl3741_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3741 Driver","API"]},"1039":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_select_page(uint8_t index, uint8_t page)"]},"1040":{"title":"void is31fl3741_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3741 Driver","API"]},"1041":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1042":{"title":"void is31fl3741_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3741 Driver","API"]},"1043":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1044":{"title":"void is31fl3741_set_value(int index, uint8_t value)","titles":["IS31FL3741 Driver","API"]},"1045":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_value(int index, uint8_t value)"]},"1046":{"title":"void is31fl3741_set_value_all(uint8_t value)","titles":["IS31FL3741 Driver","API"]},"1047":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_value_all(uint8_t value)"]},"1048":{"title":"void is31fl3741_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3741 Driver","API"]},"1049":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"1050":{"title":"void is31fl3741_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3741 Driver","API"]},"1051":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_led_control_register(uint8_t index, bool value)"]},"1052":{"title":"void is31fl3741_update_pwm_buffers(uint8_t index)","titles":["IS31FL3741 Driver","API"]},"1053":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_update_pwm_buffers(uint8_t index)"]},"1054":{"title":"void is31fl3741_update_led_control_registers(uint8_t index)","titles":["IS31FL3741 Driver","API"]},"1055":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_update_led_control_registers(uint8_t index)"]},"1056":{"title":"IS31FL3742A Driver","titles":[]},"1057":{"title":"Usage","titles":["IS31FL3742A Driver"]},"1058":{"title":"Basic Configuration","titles":["IS31FL3742A Driver"]},"1059":{"title":"I²C Addressing","titles":["IS31FL3742A Driver","Basic Configuration"]},"1060":{"title":"PWM Frequency","titles":["IS31FL3742A Driver","Basic Configuration"]},"1061":{"title":"De-Ghosting","titles":["IS31FL3742A Driver","Basic Configuration"]},"1062":{"title":"Global Current Control","titles":["IS31FL3742A Driver","Basic Configuration"]},"1063":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3742A Driver"]},"1064":{"title":"LED Mapping","titles":["IS31FL3742A Driver"]},"1065":{"title":"API","titles":["IS31FL3742A Driver"]},"1066":{"title":"struct is31fl3742a_led_t","titles":["IS31FL3742A Driver","API"]},"1067":{"title":"Members","titles":["IS31FL3742A Driver","API","struct is31fl3742a_led_t"]},"1068":{"title":"void is31fl3742a_init(uint8_t index)","titles":["IS31FL3742A Driver","API"]},"1069":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_init(uint8_t index)"]},"1070":{"title":"void is31fl3742a_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3742A Driver","API"]},"1071":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1072":{"title":"void is31fl3742a_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3742A Driver","API"]},"1073":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_select_page(uint8_t index, uint8_t page)"]},"1074":{"title":"void is31fl3742a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3742A Driver","API"]},"1075":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1076":{"title":"void is31fl3742a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3742A Driver","API"]},"1077":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1078":{"title":"void is31fl3742a_set_value(int index, uint8_t value)","titles":["IS31FL3742A Driver","API"]},"1079":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_value(int index, uint8_t value)"]},"1080":{"title":"void is31fl3742a_set_value_all(uint8_t value)","titles":["IS31FL3742A Driver","API"]},"1081":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_value_all(uint8_t value)"]},"1082":{"title":"void is31fl3742a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3742A Driver","API"]},"1083":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"1084":{"title":"void is31fl3742a_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3742A Driver","API"]},"1085":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_scaling_register(uint8_t index, uint8_t value)"]},"1086":{"title":"void is31fl3742a_update_pwm_buffers(uint8_t index)","titles":["IS31FL3742A Driver","API"]},"1087":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_update_pwm_buffers(uint8_t index)"]},"1088":{"title":"void is31fl3742a_update_scaling_registers(uint8_t index)","titles":["IS31FL3742A Driver","API"]},"1089":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_update_scaling_registers(uint8_t index)"]},"1090":{"title":"IS31FL3743A Driver","titles":[]},"1091":{"title":"Usage","titles":["IS31FL3743A Driver"]},"1092":{"title":"Basic Configuration","titles":["IS31FL3743A Driver"]},"1093":{"title":"I²C Addressing","titles":["IS31FL3743A Driver","Basic Configuration"]},"1094":{"title":"Multi-Driver Synchronization","titles":["IS31FL3743A Driver","Basic Configuration"]},"1095":{"title":"De-Ghosting","titles":["IS31FL3743A Driver","Basic Configuration"]},"1096":{"title":"Global Current Control","titles":["IS31FL3743A Driver","Basic Configuration"]},"1097":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3743A Driver"]},"1098":{"title":"LED Mapping","titles":["IS31FL3743A Driver"]},"1099":{"title":"API","titles":["IS31FL3743A Driver"]},"1100":{"title":"struct is31fl3743a_led_t","titles":["IS31FL3743A Driver","API"]},"1101":{"title":"Members","titles":["IS31FL3743A Driver","API","struct is31fl3743a_led_t"]},"1102":{"title":"void is31fl3743a_init(uint8_t index)","titles":["IS31FL3743A Driver","API"]},"1103":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_init(uint8_t index)"]},"1104":{"title":"void is31fl3743a_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3743A Driver","API"]},"1105":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1106":{"title":"void is31fl3743a_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3743A Driver","API"]},"1107":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_select_page(uint8_t index, uint8_t page)"]},"1108":{"title":"void is31fl3743a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3743A Driver","API"]},"1109":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1110":{"title":"void is31fl3743a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3743A Driver","API"]},"1111":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1112":{"title":"void is31fl3743a_set_value(int index, uint8_t value)","titles":["IS31FL3743A Driver","API"]},"1113":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_value(int index, uint8_t value)"]},"1114":{"title":"void is31fl3743a_set_value_all(uint8_t value)","titles":["IS31FL3743A Driver","API"]},"1115":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_value_all(uint8_t value)"]},"1116":{"title":"void is31fl3743a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3743A Driver","API"]},"1117":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"1118":{"title":"void is31fl3743a_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3743A Driver","API"]},"1119":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_scaling_register(uint8_t index, uint8_t value)"]},"1120":{"title":"void is31fl3743a_update_pwm_buffers(uint8_t index)","titles":["IS31FL3743A Driver","API"]},"1121":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_update_pwm_buffers(uint8_t index)"]},"1122":{"title":"void is31fl3743a_update_scaling_registers(uint8_t index)","titles":["IS31FL3743A Driver","API"]},"1123":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_update_scaling_registers(uint8_t index)"]},"1124":{"title":"IS31FL3745 Driver","titles":[]},"1125":{"title":"Usage","titles":["IS31FL3745 Driver"]},"1126":{"title":"Basic Configuration","titles":["IS31FL3745 Driver"]},"1127":{"title":"I²C Addressing","titles":["IS31FL3745 Driver","Basic Configuration"]},"1128":{"title":"Multi-Driver Synchronization","titles":["IS31FL3745 Driver","Basic Configuration"]},"1129":{"title":"De-Ghosting","titles":["IS31FL3745 Driver","Basic Configuration"]},"1130":{"title":"Global Current Control","titles":["IS31FL3745 Driver","Basic Configuration"]},"1131":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3745 Driver"]},"1132":{"title":"LED Mapping","titles":["IS31FL3745 Driver"]},"1133":{"title":"API","titles":["IS31FL3745 Driver"]},"1134":{"title":"struct is31fl3745_led_t","titles":["IS31FL3745 Driver","API"]},"1135":{"title":"Members","titles":["IS31FL3745 Driver","API","struct is31fl3745_led_t"]},"1136":{"title":"void is31fl3745_init(uint8_t index)","titles":["IS31FL3745 Driver","API"]},"1137":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_init(uint8_t index)"]},"1138":{"title":"void is31fl3745_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3745 Driver","API"]},"1139":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1140":{"title":"void is31fl3745_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3745 Driver","API"]},"1141":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_select_page(uint8_t index, uint8_t page)"]},"1142":{"title":"void is31fl3745_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3745 Driver","API"]},"1143":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1144":{"title":"void is31fl3745_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3745 Driver","API"]},"1145":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1146":{"title":"void is31fl3745_set_value(int index, uint8_t value)","titles":["IS31FL3745 Driver","API"]},"1147":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_value(int index, uint8_t value)"]},"1148":{"title":"void is31fl3745_set_value_all(uint8_t value)","titles":["IS31FL3745 Driver","API"]},"1149":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_value_all(uint8_t value)"]},"1150":{"title":"void is31fl3745_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3745 Driver","API"]},"1151":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"1152":{"title":"void is31fl3745_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3745 Driver","API"]},"1153":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_scaling_register(uint8_t index, uint8_t value)"]},"1154":{"title":"void is31fl3745_update_pwm_buffers(uint8_t index)","titles":["IS31FL3745 Driver","API"]},"1155":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_update_pwm_buffers(uint8_t index)"]},"1156":{"title":"void is31fl3745_update_scaling_registers(uint8_t index)","titles":["IS31FL3745 Driver","API"]},"1157":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_update_scaling_registers(uint8_t index)"]},"1158":{"title":"IS31FL3746A Driver","titles":[]},"1159":{"title":"Usage","titles":["IS31FL3746A Driver"]},"1160":{"title":"Basic Configuration","titles":["IS31FL3746A Driver"]},"1161":{"title":"I²C Addressing","titles":["IS31FL3746A Driver","Basic Configuration"]},"1162":{"title":"PWM Frequency","titles":["IS31FL3746A Driver","Basic Configuration"]},"1163":{"title":"De-Ghosting","titles":["IS31FL3746A Driver","Basic Configuration"]},"1164":{"title":"Global Current Control","titles":["IS31FL3746A Driver","Basic Configuration"]},"1165":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3746A Driver"]},"1166":{"title":"LED Mapping","titles":["IS31FL3746A Driver"]},"1167":{"title":"API","titles":["IS31FL3746A Driver"]},"1168":{"title":"struct is31fl3746a_led_t","titles":["IS31FL3746A Driver","API"]},"1169":{"title":"Members","titles":["IS31FL3746A Driver","API","struct is31fl3746a_led_t"]},"1170":{"title":"void is31fl3746a_init(uint8_t index)","titles":["IS31FL3746A Driver","API"]},"1171":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_init(uint8_t index)"]},"1172":{"title":"void is31fl3746a_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3746A Driver","API"]},"1173":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1174":{"title":"void is31fl3746a_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3746A Driver","API"]},"1175":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_select_page(uint8_t index, uint8_t page)"]},"1176":{"title":"void is31fl3746a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3746A Driver","API"]},"1177":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1178":{"title":"void is31fl3746a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3746A Driver","API"]},"1179":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1180":{"title":"void is31fl3746a_set_value(int index, uint8_t value)","titles":["IS31FL3746A Driver","API"]},"1181":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_value(int index, uint8_t value)"]},"1182":{"title":"void is31fl3746a_set_value_all(uint8_t value)","titles":["IS31FL3746A Driver","API"]},"1183":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_value_all(uint8_t value)"]},"1184":{"title":"void is31fl3746a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3746A Driver","API"]},"1185":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"1186":{"title":"void is31fl3746a_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3746A Driver","API"]},"1187":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_scaling_register(uint8_t index, uint8_t value)"]},"1188":{"title":"void is31fl3746a_update_pwm_buffers(uint8_t index)","titles":["IS31FL3746A Driver","API"]},"1189":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_update_pwm_buffers(uint8_t index)"]},"1190":{"title":"void is31fl3746a_update_scaling_registers(uint8_t index)","titles":["IS31FL3746A Driver","API"]},"1191":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_update_scaling_registers(uint8_t index)"]},"1192":{"title":"'serial' Driver","titles":[]},"1193":{"title":"Bitbang","titles":["'serial' Driver"]},"1194":{"title":"Pin configuration","titles":["'serial' Driver","Bitbang"]},"1195":{"title":"Setup","titles":["'serial' Driver","Bitbang"]},"1196":{"title":"USART Half-duplex","titles":["'serial' Driver"]},"1197":{"title":"Pin configuration","titles":["'serial' Driver","USART Half-duplex"]},"1198":{"title":"Setup","titles":["'serial' Driver","USART Half-duplex"]},"1199":{"title":"USART Full-duplex","titles":["'serial' Driver"]},"1200":{"title":"Pin configuration","titles":["'serial' Driver","USART Full-duplex"]},"1201":{"title":"Setup","titles":["'serial' Driver","USART Full-duplex"]},"1202":{"title":"Choosing a driver subsystem","titles":["'serial' Driver"]},"1203":{"title":"The SERIAL driver","titles":["'serial' Driver","Choosing a driver subsystem"]},"1204":{"title":"The SIO driver","titles":["'serial' Driver","Choosing a driver subsystem"]},"1205":{"title":"The PIO driver","titles":["'serial' Driver","Choosing a driver subsystem"]},"1206":{"title":"Advanced Configuration","titles":["'serial' Driver"]},"1207":{"title":"Baudrate","titles":["'serial' Driver","Advanced Configuration"]},"1208":{"title":"Timeout","titles":["'serial' Driver","Advanced Configuration"]},"1209":{"title":"Troubleshooting","titles":["'serial' Driver"]},"1210":{"title":"Alternate Functions for selected STM32 MCUs","titles":["'serial' Driver"]},"1211":{"title":"STM32F303 / Proton-C","titles":["'serial' Driver","Alternate Functions for selected STM32 MCUs"]},"1212":{"title":"STM32F072","titles":["'serial' Driver","Alternate Functions for selected STM32 MCUs"]},"1213":{"title":"STM32F103 Medium Density (C8-CB)","titles":["'serial' Driver","Alternate Functions for selected STM32 MCUs"]},"1214":{"title":"SNLED27351 Driver","titles":[]},"1215":{"title":"Usage","titles":["SNLED27351 Driver"]},"1216":{"title":"Basic Configuration","titles":["SNLED27351 Driver"]},"1217":{"title":"I²C Addressing","titles":["SNLED27351 Driver","Basic Configuration"]},"1218":{"title":"ARM/ChibiOS Configuration","titles":["SNLED27351 Driver"]},"1219":{"title":"LED Mapping","titles":["SNLED27351 Driver"]},"1220":{"title":"API","titles":["SNLED27351 Driver"]},"1221":{"title":"struct snled27351_led_t","titles":["SNLED27351 Driver","API"]},"1222":{"title":"Members","titles":["SNLED27351 Driver","API","struct snled27351_led_t"]},"1223":{"title":"void snled27351_init(uint8_t index)","titles":["SNLED27351 Driver","API"]},"1224":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_init(uint8_t index)"]},"1225":{"title":"void snled27351_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["SNLED27351 Driver","API"]},"1226":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1227":{"title":"void snled27351_select_page(uint8_t index, uint8_t page)","titles":["SNLED27351 Driver","API"]},"1228":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_select_page(uint8_t index, uint8_t page)"]},"1229":{"title":"void snled27351_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["SNLED27351 Driver","API"]},"1230":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1231":{"title":"void snled27351_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["SNLED27351 Driver","API"]},"1232":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1233":{"title":"void snled27351_set_value(int index, uint8_t value)","titles":["SNLED27351 Driver","API"]},"1234":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_value(int index, uint8_t value)"]},"1235":{"title":"void snled27351_set_value_all(uint8_t value)","titles":["SNLED27351 Driver","API"]},"1236":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_value_all(uint8_t value)"]},"1237":{"title":"void snled27351_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["SNLED27351 Driver","API"]},"1238":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"1239":{"title":"void snled27351_set_led_control_register(uint8_t index, bool value)","titles":["SNLED27351 Driver","API"]},"1240":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_led_control_register(uint8_t index, bool value)"]},"1241":{"title":"void snled27351_update_pwm_buffers(uint8_t index)","titles":["SNLED27351 Driver","API"]},"1242":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_update_pwm_buffers(uint8_t index)"]},"1243":{"title":"void snled27351_update_led_control_registers(uint8_t index)","titles":["SNLED27351 Driver","API"]},"1244":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_update_led_control_registers(uint8_t index)"]},"1245":{"title":"SPI Master Driver","titles":[]},"1246":{"title":"Usage","titles":["SPI Master Driver"]},"1247":{"title":"AVR Configuration","titles":["SPI Master Driver"]},"1248":{"title":"ChibiOS/ARM Configuration","titles":["SPI Master Driver"]},"1249":{"title":"API","titles":["SPI Master Driver"]},"1250":{"title":"void spi_init(void)","titles":["SPI Master Driver","API"]},"1251":{"title":"bool spi_start(pin_t slavePin, bool lsbFirst, uint8_t mode, uint16_t divisor)","titles":["SPI Master Driver","API"]},"1252":{"title":"Arguments","titles":["SPI Master Driver","API","bool spi_start(pin_t slavePin, bool lsbFirst, uint8_t mode, uint16_t divisor)"]},"1253":{"title":"Return Value","titles":["SPI Master Driver","API","bool spi_start(pin_t slavePin, bool lsbFirst, uint8_t mode, uint16_t divisor)"]},"1254":{"title":"spi_status_t spi_write(uint8_t data)","titles":["SPI Master Driver","API"]},"1255":{"title":"Arguments","titles":["SPI Master Driver","API","spi_status_t spi_write(uint8_t data)"]},"1256":{"title":"Return Value","titles":["SPI Master Driver","API","spi_status_t spi_write(uint8_t data)"]},"1257":{"title":"spi_status_t spi_read(void)","titles":["SPI Master Driver","API"]},"1258":{"title":"Return Value","titles":["SPI Master Driver","API","spi_status_t spi_read(void)"]},"1259":{"title":"spi_status_t spi_transmit(const uint8_t *data, uint16_t length)","titles":["SPI Master Driver","API"]},"1260":{"title":"Arguments","titles":["SPI Master Driver","API","spi_status_t spi_transmit(const uint8_t *data, uint16_t length)"]},"1261":{"title":"Return Value","titles":["SPI Master Driver","API","spi_status_t spi_transmit(const uint8_t *data, uint16_t length)"]},"1262":{"title":"spi_status_t spi_receive(uint8_t *data, uint16_t length)","titles":["SPI Master Driver","API"]},"1263":{"title":"Arguments","titles":["SPI Master Driver","API","spi_status_t spi_receive(uint8_t *data, uint16_t length)"]},"1264":{"title":"Return Value","titles":["SPI Master Driver","API","spi_status_t spi_receive(uint8_t *data, uint16_t length)"]},"1265":{"title":"void spi_stop(void)","titles":["SPI Master Driver","API"]},"1266":{"title":"UART Driver","titles":[]},"1267":{"title":"Usage","titles":["UART Driver"]},"1268":{"title":"AVR Configuration","titles":["UART Driver"]},"1269":{"title":"ChibiOS/ARM Configuration","titles":["UART Driver"]},"1270":{"title":"API","titles":["UART Driver"]},"1271":{"title":"void uart_init(uint32_t baud)","titles":["UART Driver","API"]},"1272":{"title":"Arguments","titles":["UART Driver","API","void uart_init(uint32_t baud)"]},"1273":{"title":"void uart_write(uint8_t data)","titles":["UART Driver","API"]},"1274":{"title":"Arguments","titles":["UART Driver","API","void uart_write(uint8_t data)"]},"1275":{"title":"uint8_t uart_read(void)","titles":["UART Driver","API"]},"1276":{"title":"Return Value","titles":["UART Driver","API","uint8_t uart_read(void)"]},"1277":{"title":"void uart_transmit(const uint8_t *data, uint16_t length)","titles":["UART Driver","API"]},"1278":{"title":"Arguments","titles":["UART Driver","API","void uart_transmit(const uint8_t *data, uint16_t length)"]},"1279":{"title":"void uart_receive(char *data, uint16_t length)","titles":["UART Driver","API"]},"1280":{"title":"Arguments","titles":["UART Driver","API","void uart_receive(char *data, uint16_t length)"]},"1281":{"title":"bool uart_available(void)","titles":["UART Driver","API"]},"1282":{"title":"Return Value","titles":["UART Driver","API","bool uart_available(void)"]},"1283":{"title":"WS2812 Driver","titles":[]},"1284":{"title":"Usage","titles":["WS2812 Driver"]},"1285":{"title":"Basic Configuration","titles":["WS2812 Driver"]},"1286":{"title":"Timing Adjustment","titles":["WS2812 Driver","Basic Configuration"]},"1287":{"title":"Byte Order","titles":["WS2812 Driver","Basic Configuration"]},"1288":{"title":"RGBW Support","titles":["WS2812 Driver","Basic Configuration"]},"1289":{"title":"Driver Configuration","titles":["WS2812 Driver"]},"1290":{"title":"Bitbang Driver","titles":["WS2812 Driver","Driver Configuration"]},"1291":{"title":"I2C Driver","titles":["WS2812 Driver","Driver Configuration"]},"1292":{"title":"PIO Driver","titles":["WS2812 Driver","Driver Configuration"]},"1293":{"title":"PWM Driver","titles":["WS2812 Driver","Driver Configuration"]},"1294":{"title":"SPI Driver","titles":["WS2812 Driver","Driver Configuration"]},"1295":{"title":"ChibiOS/ARM Configuration","titles":["WS2812 Driver"]},"1296":{"title":"Logic Levels","titles":["WS2812 Driver","ChibiOS/ARM Configuration"]},"1297":{"title":"1. Open Drain Circuit","titles":["WS2812 Driver","ChibiOS/ARM Configuration","Logic Levels"]},"1298":{"title":"2. Level Shifter","titles":["WS2812 Driver","ChibiOS/ARM Configuration","Logic Levels"]},"1299":{"title":"SPI Driver","titles":["WS2812 Driver","ChibiOS/ARM Configuration"]},"1300":{"title":"Setting the Baudrate","titles":["WS2812 Driver","ChibiOS/ARM Configuration","SPI Driver"]},"1301":{"title":"Circular Buffer","titles":["WS2812 Driver","ChibiOS/ARM Configuration","SPI Driver"]},"1302":{"title":"PIO Driver","titles":["WS2812 Driver","ChibiOS/ARM Configuration"]},"1303":{"title":"PWM Driver","titles":["WS2812 Driver","ChibiOS/ARM Configuration"]},"1304":{"title":"API","titles":["WS2812 Driver"]},"1305":{"title":"void ws2812_init(void)","titles":["WS2812 Driver","API"]},"1306":{"title":"void ws2812_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["WS2812 Driver","API"]},"1307":{"title":"Arguments","titles":["WS2812 Driver","API","void ws2812_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1308":{"title":"void ws2812_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["WS2812 Driver","API"]},"1309":{"title":"Arguments","titles":["WS2812 Driver","API","void ws2812_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1310":{"title":"void ws2812_flush(void)","titles":["WS2812 Driver","API"]},"1311":{"title":"Easy Maker - Build One-Off Projects In Configurator","titles":[]},"1312":{"title":"Quickstart","titles":["Easy Maker - Build One-Off Projects In Configurator"]},"1313":{"title":"Direct Pin","titles":[]},"1314":{"title":"Frequently Asked Build Questions","titles":[]},"1315":{"title":"Can't Program on Linux","titles":["Frequently Asked Build Questions"]},"1316":{"title":"Linux udev Rules","titles":["Frequently Asked Build Questions","Can't Program on Linux"]},"1317":{"title":"Serial device is not detected in bootloader mode on Linux","titles":["Frequently Asked Build Questions","Can't Program on Linux"]},"1318":{"title":"Unknown Device for DFU Bootloader","titles":["Frequently Asked Build Questions"]},"1319":{"title":"USB VID and PID","titles":["Frequently Asked Build Questions"]},"1320":{"title":"I just flashed my keyboard and it does nothing/keypresses don't register - it's also ARM (rev6 planck, clueboard 60, hs60v2, etc...) (Feb 2019)","titles":["Frequently Asked Build Questions","USB VID and PID"]},"1321":{"title":"Debugging FAQ","titles":[]},"1322":{"title":"Debugging","titles":["Debugging FAQ"]},"1323":{"title":"Debugging Tools","titles":["Debugging FAQ"]},"1324":{"title":"Debugging With QMK Toolbox","titles":["Debugging FAQ","Debugging Tools"]},"1325":{"title":"Debugging with QMK CLI","titles":["Debugging FAQ","Debugging Tools"]},"1326":{"title":"Debugging With hid_listen","titles":["Debugging FAQ","Debugging Tools"]},"1327":{"title":"Sending Your Own Debug Messages","titles":["Debugging FAQ"]},"1328":{"title":"Debug Examples","titles":["Debugging FAQ"]},"1329":{"title":"Which matrix position is this keypress?","titles":["Debugging FAQ","Debug Examples"]},"1330":{"title":"Which keycode is this keypress?","titles":["Debugging FAQ","Debug Examples"]},"1331":{"title":"How long did it take to scan for a keypress?","titles":["Debugging FAQ","Debug Examples"]},"1332":{"title":"hid_listen Can't Recognize Device","titles":["Debugging FAQ"]},"1333":{"title":"Can't Get Message on Console","titles":["Debugging FAQ"]},"1334":{"title":"Frequently Asked Questions","titles":[]},"1335":{"title":"What is QMK?","titles":["Frequently Asked Questions"]},"1336":{"title":"I don't know where to start!","titles":["Frequently Asked Questions"]},"1337":{"title":"How can I flash the firmware I built?","titles":["Frequently Asked Questions"]},"1338":{"title":"What if I have an issue that isn't covered here?","titles":["Frequently Asked Questions"]},"1339":{"title":"What if I found a bug?","titles":["Frequently Asked Questions"]},"1340":{"title":"But git and GitHub are intimidating!","titles":["Frequently Asked Questions"]},"1341":{"title":"I have a Keyboard that I want to add support for","titles":["Frequently Asked Questions"]},"1342":{"title":"What if I want to brand it with QMK?","titles":["Frequently Asked Questions","I have a Keyboard that I want to add support for"]},"1343":{"title":"What Differences Are There Between QMK and TMK?","titles":["Frequently Asked Questions"]},"1344":{"title":"Keymap FAQ","titles":[]},"1345":{"title":"What Keycodes Can I Use?","titles":["Keymap FAQ"]},"1346":{"title":"What Are the Default Keycodes?","titles":["Keymap FAQ"]},"1347":{"title":"How Can I Make Custom Names For Complex Keycodes?","titles":["Keymap FAQ"]},"1348":{"title":"My Keymap Doesn't Update When I Flash It","titles":["Keymap FAQ"]},"1349":{"title":"Some Of My Keys Are Swapped Or Not Working","titles":["Keymap FAQ"]},"1350":{"title":"The Menu Key Isn't Working","titles":["Keymap FAQ"]},"1351":{"title":"Power Keys Aren't Working","titles":["Keymap FAQ"]},"1352":{"title":"One Shot Modifier","titles":["Keymap FAQ"]},"1353":{"title":"Modifier/Layer Stuck","titles":["Keymap FAQ"]},"1354":{"title":"Mechanical Lock Switch Support","titles":["Keymap FAQ"]},"1355":{"title":"Input Special Characters Other Than ASCII like Cédille 'Ç'","titles":["Keymap FAQ"]},"1356":{"title":"Fn Key on macOS","titles":["Keymap FAQ"]},"1357":{"title":"Keys Supported in Mac OSX?","titles":["Keymap FAQ"]},"1358":{"title":"JIS Keys in Mac OSX","titles":["Keymap FAQ"]},"1359":{"title":"RN-42 Bluetooth Doesn't Work with Karabiner","titles":["Keymap FAQ"]},"1360":{"title":"Esc and \` on a Single Key","titles":["Keymap FAQ"]},"1361":{"title":"Eject on Mac OSX","titles":["Keymap FAQ"]},"1362":{"title":"What are "Real" and "Weak" modifiers?","titles":["Keymap FAQ"]},"1363":{"title":"Modifier Keys","titles":[]},"1364":{"title":"Checking Modifier State","titles":[]},"1365":{"title":"Examples","titles":["Checking Modifier State"]},"1366":{"title":"Alt + Escape for Alt + Tab","titles":["Checking Modifier State","Examples"]},"1367":{"title":"Shift + Backspace for Delete","titles":["Checking Modifier State","Examples"]},"1368":{"title":"Advanced topics","titles":[]},"1369":{"title":"Layers","titles":["Advanced topics"]},"1370":{"title":"Mod-Tap","titles":["Advanced topics"]},"1371":{"title":"One Shot Keys","titles":["Advanced topics"]},"1372":{"title":"Tap-Hold Configuration Options","titles":["Advanced topics"]},"1373":{"title":"Key Overrides","titles":["Advanced topics"]},"1374":{"title":"Miscellaneous FAQ","titles":[]},"1375":{"title":"How do I test my keyboard?","titles":["Miscellaneous FAQ"]},"1376":{"title":"Safety Considerations","titles":["Miscellaneous FAQ"]},"1377":{"title":"NKRO Doesn't work","titles":["Miscellaneous FAQ"]},"1378":{"title":"TrackPoint Needs Reset Circuit (PS/2 Mouse Support)","titles":["Miscellaneous FAQ"]},"1379":{"title":"Can't Read Column of Matrix Beyond 16","titles":["Miscellaneous FAQ"]},"1380":{"title":"Special Extra Key Doesn't Work (System, Audio Control Keys)","titles":["Miscellaneous FAQ"]},"1381":{"title":"Wake from Sleep Doesn't Work","titles":["Miscellaneous FAQ"]},"1382":{"title":"Using Arduino?","titles":["Miscellaneous FAQ"]},"1383":{"title":"Enabling JTAG","titles":["Miscellaneous FAQ"]},"1384":{"title":"USB 3 Compatibility","titles":["Miscellaneous FAQ"]},"1385":{"title":"Mac Compatibility","titles":["Miscellaneous FAQ"]},"1386":{"title":"OS X 10.11 and Hub","titles":["Miscellaneous FAQ","Mac Compatibility"]},"1387":{"title":"Problem in BIOS (UEFI) Setup/Resume (Sleep & Wake)/Power Cycles","titles":["Miscellaneous FAQ"]},"1388":{"title":"Converters","titles":[]},"1389":{"title":"Supported Converters","titles":["Converters"]},"1390":{"title":"Configuration","titles":["Converters"]},"1391":{"title":"Pro Micro Converters","titles":["Converters"]},"1392":{"title":"Proton C","titles":["Converters","Pro Micro Converters"]},"1393":{"title":"Adafruit KB2040","titles":["Converters","Pro Micro Converters"]},"1394":{"title":"SparkFun Pro Micro - RP2040, Blok, Bit-C PRO and Michi","titles":["Converters","Pro Micro Converters"]},"1395":{"title":"STeMCell","titles":["Converters","Pro Micro Converters"]},"1396":{"title":"Bonsai C4","titles":["Converters","Pro Micro Converters"]},"1397":{"title":"RP2040 Community Edition - Elite-Pi, Helios, and Liatris","titles":["Converters","Pro Micro Converters"]},"1398":{"title":"Svlinky","titles":["Converters","Pro Micro Converters"]},"1399":{"title":"Elite-C Converters","titles":["Converters"]},"1400":{"title":"STeMCell","titles":["Converters","Elite-C Converters"]},"1401":{"title":"RP2040 Community Edition","titles":["Converters","Elite-C Converters"]},"1402":{"title":"Advanced Topics","titles":["Converters"]},"1403":{"title":"Keyboard Configuration","titles":["Converters","Advanced Topics"]},"1404":{"title":"Additional Requirements","titles":["Converters","Advanced Topics","Keyboard Configuration"]},"1405":{"title":"Additional Keymap Configuration","titles":["Converters","Advanced Topics"]},"1406":{"title":"Conditional Configuration","titles":["Converters","Advanced Topics"]},"1407":{"title":"Pin Compatibility","titles":["Converters","Advanced Topics"]},"1408":{"title":"Available Pin Compatibility","titles":["Converters","Advanced Topics","Pin Compatibility"]},"1409":{"title":"Contact bounce / contact chatter","titles":[]},"1410":{"title":"Types of debounce algorithms","titles":["Contact bounce / contact chatter"]},"1411":{"title":"Supported Debounce Algorithms","titles":["Contact bounce / contact chatter"]},"1412":{"title":"Debounce Time","titles":["Contact bounce / contact chatter","Supported Debounce Algorithms"]},"1413":{"title":"Debounce Method","titles":["Contact bounce / contact chatter","Supported Debounce Algorithms"]},"1414":{"title":"Implementing your own debouncing code","titles":["Contact bounce / contact chatter","Supported Debounce Algorithms"]},"1415":{"title":"Persistent Configuration (EEPROM)","titles":[]},"1416":{"title":"Basic","titles":["Persistent Configuration (EEPROM)"]},"1417":{"title":"Example Implementation","titles":["Persistent Configuration (EEPROM)","Basic"]},"1418":{"title":"Basic API","titles":["Persistent Configuration (EEPROM)","Basic"]},"1419":{"title":"Datablock","titles":["Persistent Configuration (EEPROM)"]},"1420":{"title":"Example","titles":["Persistent Configuration (EEPROM)","Datablock"]},"1421":{"title":"Layers","titles":[]},"1422":{"title":"Switching and Toggling Layers","titles":["Layers"]},"1423":{"title":"Caveats","titles":["Layers","Switching and Toggling Layers"]},"1424":{"title":"Working with Layers","titles":["Layers"]},"1425":{"title":"Beginners","titles":["Layers","Working with Layers"]},"1426":{"title":"Intermediate Users","titles":["Layers","Working with Layers"]},"1427":{"title":"Advanced Users","titles":["Layers","Working with Layers"]},"1428":{"title":"Functions","titles":["Layers"]},"1429":{"title":"Layer Change Code","titles":["Layers"]},"1430":{"title":"Example layer_state_set_* Implementation","titles":["Layers","Layer Change Code"]},"1431":{"title":"Example: Keycode to cycle through layers","titles":["Layers","Layer Change Code"]},"1432":{"title":"layer_state_set_* Function Documentation","titles":["Layers","Layer Change Code"]},"1433":{"title":"Layouts: Using a Keymap with Multiple Keyboards","titles":[]},"1434":{"title":"Supporting a Layout","titles":["Layouts: Using a Keymap with Multiple Keyboards"]},"1435":{"title":"Building a Keymap","titles":["Layouts: Using a Keymap with Multiple Keyboards"]},"1436":{"title":"Conflicting layouts","titles":["Layouts: Using a Keymap with Multiple Keyboards","Building a Keymap"]},"1437":{"title":"Tips for Making Layouts Keyboard-Agnostic","titles":["Layouts: Using a Keymap with Multiple Keyboards"]},"1438":{"title":"Includes","titles":["Layouts: Using a Keymap with Multiple Keyboards","Tips for Making Layouts Keyboard-Agnostic"]},"1439":{"title":"Keymaps","titles":["Layouts: Using a Keymap with Multiple Keyboards","Tips for Making Layouts Keyboard-Agnostic"]},"1440":{"title":"Macros","titles":[]},"1441":{"title":"Using Macros In JSON Keymaps","titles":["Macros"]},"1442":{"title":"Selecting Your Host Keyboard Layout","titles":["Macros","Using Macros In JSON Keymaps"]},"1443":{"title":"Macro Basics","titles":["Macros","Using Macros In JSON Keymaps"]},"1444":{"title":"Object Format","titles":["Macros","Using Macros In JSON Keymaps","Macro Basics"]},"1445":{"title":"Using Macros in C Keymaps","titles":["Macros"]},"1446":{"title":"SEND_STRING() & process_record_user","titles":["Macros","Using Macros in C Keymaps"]},"1447":{"title":"Advanced Macros","titles":["Macros","Using Macros in C Keymaps","SEND_STRING() & process_record_user"]},"1448":{"title":"TAP, DOWN and UP","titles":["Macros","Using Macros in C Keymaps","SEND_STRING() & process_record_user"]},"1449":{"title":"Alternative Keymaps","titles":["Macros","Using Macros in C Keymaps","SEND_STRING() & process_record_user"]},"1450":{"title":"Strings in Memory","titles":["Macros","Using Macros in C Keymaps","SEND_STRING() & process_record_user"]},"1451":{"title":"Advanced Macro Functions","titles":["Macros","Using Macros in C Keymaps"]},"1452":{"title":"record->event.pressed","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1453":{"title":"register_code(<kc>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1454":{"title":"unregister_code(<kc>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1455":{"title":"tap_code(<kc>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1456":{"title":"tap_code_delay(<kc>, <delay>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1457":{"title":"register_code16(<kc>);, unregister_code16(<kc>);, tap_code16(<kc>); and tap_code16_delay(<kc>, <delay>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1458":{"title":"clear_keyboard();","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1459":{"title":"clear_mods();","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1460":{"title":"clear_keyboard_but_mods();","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1461":{"title":"Advanced Example:","titles":["Macros","Using Macros in C Keymaps"]},"1462":{"title":"Super ALT↯TAB","titles":["Macros","Using Macros in C Keymaps","Advanced Example:"]},"1463":{"title":"Userspace: Sharing Code Between Keymaps","titles":[]},"1464":{"title":"Rules.mk","titles":["Userspace: Sharing Code Between Keymaps"]},"1465":{"title":"Override default userspace","titles":["Userspace: Sharing Code Between Keymaps","Rules.mk"]},"1466":{"title":"Configuration Options (config.h)","titles":["Userspace: Sharing Code Between Keymaps"]},"1467":{"title":"Readme (readme.md)","titles":["Userspace: Sharing Code Between Keymaps"]},"1468":{"title":"Build All Keyboards That Support a Specific Keymap","titles":["Userspace: Sharing Code Between Keymaps"]},"1469":{"title":"Examples","titles":["Userspace: Sharing Code Between Keymaps"]},"1470":{"title":"Customized Functions","titles":["Userspace: Sharing Code Between Keymaps","Examples"]},"1471":{"title":"Custom Features","titles":["Userspace: Sharing Code Between Keymaps","Examples"]},"1472":{"title":"Consolidated Macros","titles":["Userspace: Sharing Code Between Keymaps","Examples"]},"1473":{"title":"Audio","titles":[]},"1474":{"title":"AVR based boards","titles":["Audio"]},"1475":{"title":"Wiring","titles":["Audio","AVR based boards"]},"1476":{"title":"ARM based boards","titles":["Audio"]},"1477":{"title":"DAC (basic)","titles":["Audio","ARM based boards"]},"1478":{"title":"Wiring:","titles":["Audio","ARM based boards","DAC (basic)"]},"1479":{"title":"Proton-C Example:","titles":["Audio","ARM based boards","DAC (basic)","Wiring:"]},"1480":{"title":"DAC (additive)","titles":["Audio","ARM based boards"]},"1481":{"title":"PWM (software)","titles":["Audio","ARM based boards"]},"1482":{"title":"Wiring","titles":["Audio","ARM based boards","PWM (software)"]},"1483":{"title":"PWM (hardware)","titles":["Audio","ARM based boards"]},"1484":{"title":"Tone Multiplexing","titles":["Audio"]},"1485":{"title":"Songs","titles":["Audio"]},"1486":{"title":"Audio Config","titles":["Audio"]},"1487":{"title":"Tempo","titles":["Audio"]},"1488":{"title":"ARM Audio Volume","titles":["Audio"]},"1489":{"title":"Voices","titles":["Audio"]},"1490":{"title":"Music Mode","titles":["Audio"]},"1491":{"title":"Music Mask","titles":["Audio","Music Mode"]},"1492":{"title":"Music Map","titles":["Audio","Music Mode"]},"1493":{"title":"Audio Click","titles":["Audio"]},"1494":{"title":"MIDI Functionality","titles":["Audio"]},"1495":{"title":"Audio Keycodes","titles":["Audio"]},"1496":{"title":"Auto Shift: Why Do We Need a Shift Key?","titles":[]},"1497":{"title":"Why Auto Shift?","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1498":{"title":"How Does It Work?","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1499":{"title":"Are There Limitations to Auto Shift?","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1500":{"title":"How Do I Enable Auto Shift?","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1501":{"title":"Modifiers","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1502":{"title":"Configuring Auto Shift","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1503":{"title":"AUTO_SHIFT_TIMEOUT (Value in ms)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1504":{"title":"NO_AUTO_SHIFT_SPECIAL (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1505":{"title":"NO_AUTO_SHIFT_TAB (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1506":{"title":"NO_AUTO_SHIFT_SYMBOLS (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1507":{"title":"NO_AUTO_SHIFT_NUMERIC (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1508":{"title":"NO_AUTO_SHIFT_ALPHA (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1509":{"title":"AUTO_SHIFT_ENTER (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1510":{"title":"Auto Shift Per Key","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1511":{"title":"AUTO_SHIFT_REPEAT (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1512":{"title":"AUTO_SHIFT_NO_AUTO_REPEAT (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1513":{"title":"AUTO_SHIFT_ALPHA (predefined key group)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1514":{"title":"AUTO_SHIFT_NUMERIC (predefined key group)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1515":{"title":"AUTO_SHIFT_SYMBOLS (predefined key group)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1516":{"title":"AUTO_SHIFT_SPECIAL (predefined key group)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1517":{"title":"Custom Shifted Values","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1518":{"title":"Retro Shift","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1519":{"title":"Retro Shift and Tap Hold Configurations","titles":["Auto Shift: Why Do We Need a Shift Key?","Retro Shift"]},"1520":{"title":"Using Auto Shift Setup","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1521":{"title":"Setup","titles":["Auto Shift: Why Do We Need a Shift Key?","Using Auto Shift Setup"]},"1522":{"title":"Use","titles":["Auto Shift: Why Do We Need a Shift Key?","Using Auto Shift Setup"]},"1523":{"title":"An Example Run","titles":["Auto Shift: Why Do We Need a Shift Key?","Using Auto Shift Setup","Use"]},"1524":{"title":"Autocorrect","titles":[]},"1525":{"title":"How does it work?","titles":["Autocorrect"]},"1526":{"title":"How do I enable Autocorrection","titles":["Autocorrect"]},"1527":{"title":"Customizing autocorrect library","titles":["Autocorrect"]},"1528":{"title":"Avoiding false triggers","titles":["Autocorrect","Customizing autocorrect library"]},"1529":{"title":"Overriding Autocorrect","titles":["Autocorrect"]},"1530":{"title":"Keycodes","titles":["Autocorrect","Overriding Autocorrect"]},"1531":{"title":"User Callback Functions","titles":["Autocorrect"]},"1532":{"title":"Process Autocorrect","titles":["Autocorrect","User Callback Functions"]},"1533":{"title":"Process Autocorrect Example","titles":["Autocorrect","User Callback Functions","Process Autocorrect"]},"1534":{"title":"Apply Autocorrect","titles":["Autocorrect","User Callback Functions"]},"1535":{"title":"Apply Autocorrect Example","titles":["Autocorrect","User Callback Functions","Apply Autocorrect"]},"1536":{"title":"Autocorrect Status","titles":["Autocorrect","User Callback Functions"]},"1537":{"title":"Appendix: Trie binary data format","titles":["Autocorrect"]},"1538":{"title":"Encoding","titles":["Autocorrect","Appendix: Trie binary data format"]},"1539":{"title":"Decoding","titles":["Autocorrect","Appendix: Trie binary data format"]},"1540":{"title":"Credits","titles":["Autocorrect"]},"1541":{"title":"Backlighting","titles":[]},"1542":{"title":"Usage","titles":["Backlighting"]},"1543":{"title":"Keycodes","titles":["Backlighting"]},"1544":{"title":"Basic Configuration","titles":["Backlighting"]},"1545":{"title":""On" State","titles":["Backlighting","Basic Configuration"]},"1546":{"title":"Multiple Backlight Pins","titles":["Backlighting","Basic Configuration"]},"1547":{"title":"Driver Configuration","titles":["Backlighting"]},"1548":{"title":"PWM Driver","titles":["Backlighting","Driver Configuration"]},"1549":{"title":"Timer Driver","titles":["Backlighting","Driver Configuration"]},"1550":{"title":"Software Driver","titles":["Backlighting","Driver Configuration"]},"1551":{"title":"Custom Driver","titles":["Backlighting","Driver Configuration"]},"1552":{"title":"AVR Configuration","titles":["Backlighting"]},"1553":{"title":"PWM Driver","titles":["Backlighting","AVR Configuration"]},"1554":{"title":"Timer Driver","titles":["Backlighting","AVR Configuration"]},"1555":{"title":"ChibiOS/ARM Configuration","titles":["Backlighting"]},"1556":{"title":"PWM Driver","titles":["Backlighting","ChibiOS/ARM Configuration"]},"1557":{"title":"Timer Driver","titles":["Backlighting","ChibiOS/ARM Configuration"]},"1558":{"title":"Example Schematic","titles":["Backlighting"]},"1559":{"title":"API","titles":["Backlighting"]},"1560":{"title":"void backlight_toggle(void)","titles":["Backlighting","API"]},"1561":{"title":"void backlight_enable(void)","titles":["Backlighting","API"]},"1562":{"title":"void backlight_disable(void)","titles":["Backlighting","API"]},"1563":{"title":"void backlight_step(void)","titles":["Backlighting","API"]},"1564":{"title":"void backlight_increase(void)","titles":["Backlighting","API"]},"1565":{"title":"void backlight_decrease(void)","titles":["Backlighting","API"]},"1566":{"title":"void backlight_level(uint8_t level)","titles":["Backlighting","API"]},"1567":{"title":"Arguments","titles":["Backlighting","API","void backlight_level(uint8_t level)"]},"1568":{"title":"uint8_t get_backlight_level(void)","titles":["Backlighting","API"]},"1569":{"title":"Return Value","titles":["Backlighting","API","uint8_t get_backlight_level(void)"]},"1570":{"title":"bool is_backlight_enabled(void)","titles":["Backlighting","API"]},"1571":{"title":"Return Value","titles":["Backlighting","API","bool is_backlight_enabled(void)"]},"1572":{"title":"void backlight_toggle_breathing(void)","titles":["Backlighting","API"]},"1573":{"title":"void backlight_enable_breathing(void)","titles":["Backlighting","API"]},"1574":{"title":"void backlight_disable_breathing(void)","titles":["Backlighting","API"]},"1575":{"title":"bool is_backlight_breathing(void)","titles":["Backlighting","API"]},"1576":{"title":"Return Value","titles":["Backlighting","API","bool is_backlight_breathing(void)"]},"1577":{"title":"Battery","titles":[]},"1578":{"title":"Usage","titles":["Battery"]},"1579":{"title":"Basic Configuration","titles":["Battery"]},"1580":{"title":"Driver Configuration","titles":["Battery"]},"1581":{"title":"Functions","titles":["Battery"]},"1582":{"title":"uint8_t battery_get_percent(void)","titles":["Battery","Functions"]},"1583":{"title":"Return Value","titles":["Battery","Functions","uint8_t battery_get_percent(void)"]},"1584":{"title":"Callbacks","titles":["Battery"]},"1585":{"title":"void battery_percent_changed_user(uint8_t level)","titles":["Battery","Callbacks"]},"1586":{"title":"Arguments","titles":["Battery","Callbacks"]},"1587":{"title":"void battery_percent_changed_kb(uint8_t level)","titles":["Battery","Callbacks"]},"1588":{"title":"Arguments","titles":["Battery","Callbacks"]},"1589":{"title":"Bootmagic","titles":[]},"1590":{"title":"Split Keyboards","titles":["Bootmagic"]},"1591":{"title":"Advanced Bootmagic","titles":["Bootmagic"]},"1592":{"title":"Addenda","titles":["Bootmagic"]},"1593":{"title":"Caps Word","titles":[]},"1594":{"title":"How do I enable Caps Word","titles":["Caps Word"]},"1595":{"title":"Troubleshooting: Command","titles":["Caps Word","How do I enable Caps Word"]},"1596":{"title":"Customizing Caps Word","titles":["Caps Word"]},"1597":{"title":"Invert on shift","titles":["Caps Word","Customizing Caps Word"]},"1598":{"title":"Idle timeout","titles":["Caps Word","Customizing Caps Word"]},"1599":{"title":"Functions","titles":["Caps Word","Customizing Caps Word"]},"1600":{"title":"Configure which keys are "word breaking"","titles":["Caps Word","Customizing Caps Word"]},"1601":{"title":"Representing Caps Word state","titles":["Caps Word","Customizing Caps Word"]},"1602":{"title":"Combos","titles":[]},"1603":{"title":"Advanced Keycodes Support","titles":["Combos"]},"1604":{"title":"Overlapping Combos","titles":["Combos"]},"1605":{"title":"Examples","titles":["Combos"]},"1606":{"title":"Keycodes","titles":["Combos"]},"1607":{"title":"Advanced Configuration","titles":["Combos"]},"1608":{"title":"Combo Term","titles":["Combos","Advanced Configuration"]},"1609":{"title":"Buffer and state sizes","titles":["Combos","Advanced Configuration"]},"1610":{"title":"Modifier Combos","titles":["Combos","Advanced Configuration"]},"1611":{"title":"Strict key press order","titles":["Combos","Advanced Configuration"]},"1612":{"title":"Per Combo Timing, Holding, Tapping and Key Press Order","titles":["Combos","Advanced Configuration"]},"1613":{"title":"Generic hook to (dis)allow a combo activation","titles":["Combos","Advanced Configuration"]},"1614":{"title":"Combo timer","titles":["Combos","Advanced Configuration"]},"1615":{"title":"#define COMBO_STRICT_TIMER","titles":["Combos","Advanced Configuration","Combo timer"]},"1616":{"title":"#define COMBO_NO_TIMER","titles":["Combos","Advanced Configuration","Combo timer"]},"1617":{"title":"Customizable key releases","titles":["Combos","Advanced Configuration"]},"1618":{"title":"Customizable key repress","titles":["Combos","Advanced Configuration"]},"1619":{"title":"Layer independent combos","titles":["Combos","Advanced Configuration"]},"1620":{"title":"Combo reference layers by layer.","titles":["Combos","Advanced Configuration","Layer independent combos"]},"1621":{"title":"User callbacks","titles":["Combos"]},"1622":{"title":"Dictionary Management","titles":["Combos"]},"1623":{"title":"Command","titles":[]},"1624":{"title":"Usage","titles":["Command"]},"1625":{"title":"Configuration","titles":["Command"]},"1626":{"title":"Community Modules","titles":[]},"1627":{"title":"Adding a Community Module to your build","titles":["Community Modules"]},"1628":{"title":"Adding a Community Module to your External Userspace","titles":["Community Modules"]},"1629":{"title":"Writing a QMK Community Module","titles":["Community Modules"]},"1630":{"title":"qmk_module.json","titles":["Community Modules","Writing a QMK Community Module"]},"1631":{"title":"config.h","titles":["Community Modules","Writing a QMK Community Module"]},"1632":{"title":"rules.mk / post_rules.mk","titles":["Community Modules","Writing a QMK Community Module"]},"1633":{"title":"<module>.c","titles":["Community Modules","Writing a QMK Community Module"]},"1634":{"title":"introspection.c / introspection.h","titles":["Community Modules","Writing a QMK Community Module"]},"1635":{"title":"led_matrix_module.inc","titles":["Community Modules","Writing a QMK Community Module"]},"1636":{"title":"rgb_matrix_module.inc","titles":["Community Modules","Writing a QMK Community Module"]},"1637":{"title":"Custom split keyboard data sync","titles":["Community Modules","Writing a QMK Community Module"]},"1638":{"title":"Compatible APIs","titles":["Community Modules","Writing a QMK Community Module"]},"1639":{"title":"DIP Switches","titles":[]},"1640":{"title":"DIP Switch map","titles":["DIP Switches"]},"1641":{"title":"Callbacks","titles":["DIP Switches"]},"1642":{"title":"Hardware","titles":["DIP Switches"]},"1643":{"title":"Connects each switch in the dip switch to the GPIO pin of the MCU","titles":["DIP Switches","Hardware"]},"1644":{"title":"Connect each switch in the DIP switch to an unused intersections in the key matrix.","titles":["DIP Switches","Hardware"]},"1645":{"title":"Digitizer","titles":[]},"1646":{"title":"Usage","titles":["Digitizer"]},"1647":{"title":"Positioning","titles":["Digitizer"]},"1648":{"title":"Examples","titles":["Digitizer"]},"1649":{"title":"API","titles":["Digitizer"]},"1650":{"title":"struct digitizer_t","titles":["Digitizer","API"]},"1651":{"title":"Members","titles":["Digitizer","API","struct digitizer_t"]},"1652":{"title":"void digitizer_flush(void)","titles":["Digitizer","API"]},"1653":{"title":"void digitizer_in_range_on(void)","titles":["Digitizer","API"]},"1654":{"title":"void digitizer_in_range_off(void)","titles":["Digitizer","API"]},"1655":{"title":"void digitizer_tip_switch_on(void)","titles":["Digitizer","API"]},"1656":{"title":"void digitizer_tip_switch_off(void)","titles":["Digitizer","API"]},"1657":{"title":"void digitizer_barrel_switch_on(void)","titles":["Digitizer","API"]},"1658":{"title":"void digitizer_barrel_switch_off(void)","titles":["Digitizer","API"]},"1659":{"title":"void digitizer_set_position(float x, float y)","titles":["Digitizer","API"]},"1660":{"title":"Arguments","titles":["Digitizer","API","void digitizer_set_position(float x, float y)"]},"1661":{"title":"Dynamic Macros: Record and Replay Macros in Runtime","titles":[]},"1662":{"title":"Customization","titles":["Dynamic Macros: Record and Replay Macros in Runtime"]},"1663":{"title":"DYNAMIC_MACRO_USER_CALL","titles":["Dynamic Macros: Record and Replay Macros in Runtime","Customization"]},"1664":{"title":"User Hooks","titles":["Dynamic Macros: Record and Replay Macros in Runtime","Customization"]},"1665":{"title":"Encoders","titles":[]},"1666":{"title":"Split Keyboards","titles":["Encoders"]},"1667":{"title":"Encoder map","titles":["Encoders"]},"1668":{"title":"Callbacks","titles":["Encoders"]},"1669":{"title":"Hardware","titles":["Encoders"]},"1670":{"title":"Multiple Encoders","titles":["Encoders"]},"1671":{"title":"Grave Escape","titles":[]},"1672":{"title":"Usage","titles":["Grave Escape"]},"1673":{"title":"What Your OS Sees","titles":["Grave Escape"]},"1674":{"title":"Keycodes","titles":["Grave Escape"]},"1675":{"title":"Caveats","titles":["Grave Escape","Keycodes"]},"1676":{"title":"Configuration","titles":["Grave Escape"]},"1677":{"title":"Haptic Feedback","titles":[]},"1678":{"title":"Haptic feedback rules.mk options","titles":["Haptic Feedback"]},"1679":{"title":"Known Supported Hardware","titles":["Haptic Feedback"]},"1680":{"title":"Haptic Keycodes","titles":["Haptic Feedback"]},"1681":{"title":"Solenoids","titles":["Haptic Feedback","Haptic Keycodes"]},"1682":{"title":"DRV2605L","titles":["Haptic Feedback","Haptic Keycodes"]},"1683":{"title":"Feedback motor setup","titles":["Haptic Feedback","Haptic Keycodes","DRV2605L"]},"1684":{"title":"ERM","titles":["Haptic Feedback","Haptic Keycodes","DRV2605L","Feedback motor setup"]},"1685":{"title":"LRA","titles":["Haptic Feedback","Haptic Keycodes","DRV2605L","Feedback motor setup"]},"1686":{"title":"DRV2605L waveform library","titles":["Haptic Feedback","Haptic Keycodes","DRV2605L"]},"1687":{"title":"Optional DRV2605L defines","titles":["Haptic Feedback","Haptic Keycodes"]},"1688":{"title":"DRV2605L Continuous Haptic Mode","titles":["Haptic Feedback","Haptic Keycodes"]},"1689":{"title":"Haptic Key Exclusion","titles":["Haptic Feedback"]},"1690":{"title":"NO_HAPTIC_MOD","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1691":{"title":"NO_HAPTIC_ALPHA","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1692":{"title":"NO_HAPTIC_PUNCTUATION","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1693":{"title":"NO_HAPTIC_LOCKKEYS","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1694":{"title":"NO_HAPTIC_NAV","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1695":{"title":"NO_HAPTIC_NUMERIC","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1696":{"title":"HD44780 LCD Driver","titles":[]},"1697":{"title":"Supported Hardware","titles":["HD44780 LCD Driver"]},"1698":{"title":"Usage","titles":["HD44780 LCD Driver"]},"1699":{"title":"Basic Configuration","titles":["HD44780 LCD Driver"]},"1700":{"title":"Examples","titles":["HD44780 LCD Driver"]},"1701":{"title":"Hello World","titles":["HD44780 LCD Driver","Examples"]},"1702":{"title":"Custom Character Definition","titles":["HD44780 LCD Driver","Examples"]},"1703":{"title":"API","titles":["HD44780 LCD Driver"]},"1704":{"title":"void hd44780_init(bool cursor, bool blink)","titles":["HD44780 LCD Driver","API"]},"1705":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_init(bool cursor, bool blink)"]},"1706":{"title":"void hd44780_clear(void)","titles":["HD44780 LCD Driver","API"]},"1707":{"title":"void hd44780_home(void)","titles":["HD44780 LCD Driver","API"]},"1708":{"title":"void hd44780_on(bool cursor, bool blink)","titles":["HD44780 LCD Driver","API"]},"1709":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_on(bool cursor, bool blink)"]},"1710":{"title":"void hd44780_off(void)","titles":["HD44780 LCD Driver","API"]},"1711":{"title":"void hd44780_set_cursor(uint8_t col, uint8_t line)","titles":["HD44780 LCD Driver","API"]},"1712":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_set_cursor(uint8_t col, uint8_t line)"]},"1713":{"title":"void hd44780_putc(char c)","titles":["HD44780 LCD Driver","API"]},"1714":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_putc(char c)"]},"1715":{"title":"void hd44780_puts(const char *s)","titles":["HD44780 LCD Driver","API"]},"1716":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_puts(const char *s)"]},"1717":{"title":"void hd44780_puts_P(const char *s)","titles":["HD44780 LCD Driver","API"]},"1718":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_puts_P(const char *s)"]},"1719":{"title":"void hd44780_define_char(uint8_t index, uint8_t *data)","titles":["HD44780 LCD Driver","API"]},"1720":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_define_char(uint8_t index, uint8_t *data)"]},"1721":{"title":"void hd44780_define_char_P(uint8_t index, const uint8_t *data)","titles":["HD44780 LCD Driver","API"]},"1722":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_define_char_P(uint8_t index, const uint8_t *data)"]},"1723":{"title":"bool hd44780_busy(void)","titles":["HD44780 LCD Driver","API"]},"1724":{"title":"Return Value","titles":["HD44780 LCD Driver","API","bool hd44780_busy(void)"]},"1725":{"title":"void hd44780_write(uint8_t data, bool isData)","titles":["HD44780 LCD Driver","API"]},"1726":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_write(uint8_t data, bool isData)"]},"1727":{"title":"uint8_t hd44780_read(bool isData)","titles":["HD44780 LCD Driver","API"]},"1728":{"title":"Arguments","titles":["HD44780 LCD Driver","API","uint8_t hd44780_read(bool isData)"]},"1729":{"title":"Return Value","titles":["HD44780 LCD Driver","API","uint8_t hd44780_read(bool isData)"]},"1730":{"title":"void hd44780_command(uint8_t command)","titles":["HD44780 LCD Driver","API"]},"1731":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_command(uint8_t command)"]},"1732":{"title":"void hd44780_data(uint8_t data)","titles":["HD44780 LCD Driver","API"]},"1733":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_data(uint8_t data)"]},"1734":{"title":"void hd44780_set_cgram_address(uint8_t address)","titles":["HD44780 LCD Driver","API"]},"1735":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_set_cgram_address(uint8_t address)"]},"1736":{"title":"void hd44780_set_ddram_address(uint8_t address)","titles":["HD44780 LCD Driver","API"]},"1737":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_set_ddram_address(uint8_t address)"]},"1738":{"title":"Joystick","titles":[]},"1739":{"title":"Usage","titles":["Joystick"]},"1740":{"title":"Configuration","titles":["Joystick"]},"1741":{"title":"Hat Switch","titles":["Joystick","Configuration"]},"1742":{"title":"Axes","titles":["Joystick","Configuration"]},"1743":{"title":"Virtual Axes","titles":["Joystick","Configuration","Axes"]},"1744":{"title":"Keycodes","titles":["Joystick"]},"1745":{"title":"API","titles":["Joystick"]},"1746":{"title":"struct joystick_t","titles":["Joystick","API"]},"1747":{"title":"Members","titles":["Joystick","API","struct joystick_t"]},"1748":{"title":"struct joystick_config_t","titles":["Joystick","API"]},"1749":{"title":"Members","titles":["Joystick","API","struct joystick_config_t"]},"1750":{"title":"void joystick_flush(void)","titles":["Joystick","API"]},"1751":{"title":"void register_joystick_button(uint8_t button)","titles":["Joystick","API"]},"1752":{"title":"Arguments","titles":["Joystick","API","void register_joystick_button(uint8_t button)"]},"1753":{"title":"void unregister_joystick_button(uint8_t button)","titles":["Joystick","API"]},"1754":{"title":"Arguments","titles":["Joystick","API","void unregister_joystick_button(uint8_t button)"]},"1755":{"title":"int16_t joystick_read_axis(uint8_t axis)","titles":["Joystick","API"]},"1756":{"title":"Arguments","titles":["Joystick","API","int16_t joystick_read_axis(uint8_t axis)"]},"1757":{"title":"Return Value","titles":["Joystick","API","int16_t joystick_read_axis(uint8_t axis)"]},"1758":{"title":"void joystick_set_axis(uint8_t axis, int16_t value)","titles":["Joystick","API"]},"1759":{"title":"Arguments","titles":["Joystick","API","void joystick_set_axis(uint8_t axis, int16_t value)"]},"1760":{"title":"void joystick_set_hat(int8_t value)","titles":["Joystick","API"]},"1761":{"title":"Arguments","titles":["Joystick","API","void joystick_set_hat(int8_t value)"]},"1762":{"title":"Key Lock","titles":[]},"1763":{"title":"Usage","titles":["Key Lock"]},"1764":{"title":"Keycodes","titles":["Key Lock"]},"1765":{"title":"Caveats","titles":["Key Lock"]},"1766":{"title":"Key Overrides","titles":[]},"1767":{"title":"A few more examples to get started: You could use key overrides to...","titles":["Key Overrides"]},"1768":{"title":"Setup","titles":["Key Overrides"]},"1769":{"title":"Creating Key Overrides","titles":["Key Overrides"]},"1770":{"title":"ko_make_basic(modifiers, key, replacement)","titles":["Key Overrides","Creating Key Overrides"]},"1771":{"title":"ko_make_with_layers(modifiers, key, replacement, layers)","titles":["Key Overrides","Creating Key Overrides"]},"1772":{"title":"ko_make_with_layers_and_negmods(modifiers, key, replacement, layers, negative_mods)","titles":["Key Overrides","Creating Key Overrides"]},"1773":{"title":"ko_make_with_layers_negmods_and_options(modifiers, key, replacement, layers, negative_mods, options)","titles":["Key Overrides","Creating Key Overrides"]},"1774":{"title":"Simple Example","titles":["Key Overrides"]},"1775":{"title":"Intermediate Difficulty Examples","titles":["Key Overrides"]},"1776":{"title":"Media Controls & Screen Brightness","titles":["Key Overrides","Intermediate Difficulty Examples"]},"1777":{"title":"Flexible macOS-friendly Grave Escape","titles":["Key Overrides","Intermediate Difficulty Examples"]},"1778":{"title":"Advanced Examples","titles":["Key Overrides"]},"1779":{"title":"Modifiers as Layer Keys","titles":["Key Overrides","Advanced Examples"]},"1780":{"title":"Keycodes","titles":["Key Overrides"]},"1781":{"title":"Reference for key_override_t","titles":["Key Overrides"]},"1782":{"title":"Reference for ko_option_t","titles":["Key Overrides"]},"1783":{"title":"For Advanced Users: Inner Workings","titles":["Key Overrides"]},"1784":{"title":"Activation","titles":["Key Overrides","For Advanced Users: Inner Workings","Modifiers as Layer Keys"]},"1785":{"title":"Deactivation","titles":["Key Overrides","For Advanced Users: Inner Workings","Modifiers as Layer Keys"]},"1786":{"title":"Key Repeat Delay","titles":["Key Overrides","For Advanced Users: Inner Workings","Modifiers as Layer Keys"]},"1787":{"title":"Difference to Combos","titles":["Key Overrides"]},"1788":{"title":"Solution to the problem of flashing modifiers","titles":["Key Overrides"]},"1789":{"title":"Layer Lock","titles":[]},"1790":{"title":"How do I enable Layer Lock","titles":["Layer Lock"]},"1791":{"title":"Example use","titles":["Layer Lock"]},"1792":{"title":"Idle timeout","titles":["Layer Lock"]},"1793":{"title":"Functions","titles":["Layer Lock"]},"1794":{"title":"Representing the current Layer Lock state","titles":["Layer Lock"]},"1795":{"title":"Combine Layer Lock with a mod-tap","titles":["Layer Lock"]},"1796":{"title":"The Leader Key: A New Kind of Modifier","titles":[]},"1797":{"title":"Usage","titles":["The Leader Key: A New Kind of Modifier"]},"1798":{"title":"Callbacks","titles":["The Leader Key: A New Kind of Modifier"]},"1799":{"title":"Basic Configuration","titles":["The Leader Key: A New Kind of Modifier"]},"1800":{"title":"Timeout","titles":["The Leader Key: A New Kind of Modifier","Basic Configuration"]},"1801":{"title":"Per-Key Timeout","titles":["The Leader Key: A New Kind of Modifier","Basic Configuration"]},"1802":{"title":"Disabling Initial Timeout","titles":["The Leader Key: A New Kind of Modifier","Basic Configuration"]},"1803":{"title":"Strict Key Processing","titles":["The Leader Key: A New Kind of Modifier","Basic Configuration"]},"1804":{"title":"Example","titles":["The Leader Key: A New Kind of Modifier"]},"1805":{"title":"Keycodes","titles":["The Leader Key: A New Kind of Modifier"]},"1806":{"title":"API","titles":["The Leader Key: A New Kind of Modifier"]},"1807":{"title":"void leader_start_user(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1808":{"title":"void leader_end_user(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1809":{"title":"bool leader_add_user(uint16_t keycode)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1810":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_add_user(uint16_t keycode)"]},"1811":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_add_user(uint16_t keycode)"]},"1812":{"title":"void leader_start(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1813":{"title":"void leader_end(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1814":{"title":"bool leader_sequence_active(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1815":{"title":"bool leader_sequence_add(uint16_t keycode)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1816":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_add(uint16_t keycode)"]},"1817":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_add(uint16_t keycode)"]},"1818":{"title":"bool leader_sequence_timed_out(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1819":{"title":"bool leader_reset_timer(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1820":{"title":"bool leader_sequence_one_key(uint16_t kc)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1821":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_one_key(uint16_t kc)"]},"1822":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_one_key(uint16_t kc)"]},"1823":{"title":"bool leader_sequence_two_keys(uint16_t kc1, uint16_t kc2)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1824":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_two_keys(uint16_t kc1, uint16_t kc2)"]},"1825":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_two_keys(uint16_t kc1, uint16_t kc2)"]},"1826":{"title":"bool leader_sequence_three_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1827":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_three_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3)"]},"1828":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_three_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3)"]},"1829":{"title":"bool leader_sequence_four_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1830":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_four_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4)"]},"1831":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_four_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4)"]},"1832":{"title":"bool leader_sequence_five_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4, uint16_t kc5)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1833":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_five_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4, uint16_t kc5)"]},"1834":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_five_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4, uint16_t kc5)"]},"1835":{"title":"LED Indicators","titles":[]},"1836":{"title":"Configuration Options","titles":["LED Indicators"]},"1837":{"title":"LED update function","titles":["LED Indicators"]},"1838":{"title":"Example of keyboard LED update implementation","titles":["LED Indicators","LED update function"]},"1839":{"title":"Example of user LED update implementation","titles":["LED Indicators","LED update function"]},"1840":{"title":"Host keyboard LED state","titles":["LED Indicators"]},"1841":{"title":"led_update_ports()","titles":["LED Indicators"]},"1842":{"title":"Setting Physical LED State","titles":["LED Indicators"]},"1843":{"title":"Ergodox Boards","titles":["LED Indicators","Setting Physical LED State"]},"1844":{"title":"LED Matrix Lighting","titles":[]},"1845":{"title":"Driver Configuration","titles":["LED Matrix Lighting"]},"1846":{"title":"Common Configuration","titles":["LED Matrix Lighting"]},"1847":{"title":"Flags","titles":["LED Matrix Lighting"]},"1848":{"title":"Keycodes","titles":["LED Matrix Lighting"]},"1849":{"title":"LED Matrix Effects","titles":["LED Matrix Lighting"]},"1850":{"title":"Custom LED Matrix Effects","titles":["LED Matrix Lighting"]},"1851":{"title":"Naming","titles":["LED Matrix Lighting"]},"1852":{"title":"Additional config.h Options","titles":["LED Matrix Lighting"]},"1853":{"title":"EEPROM storage","titles":["LED Matrix Lighting"]},"1854":{"title":"Callbacks","titles":["LED Matrix Lighting"]},"1855":{"title":"Indicators","titles":["LED Matrix Lighting","Callbacks"]},"1856":{"title":"API","titles":["LED Matrix Lighting"]},"1857":{"title":"void led_matrix_toggle(void)","titles":["LED Matrix Lighting","API"]},"1858":{"title":"void led_matrix_toggle_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1859":{"title":"void led_matrix_enable(void)","titles":["LED Matrix Lighting","API"]},"1860":{"title":"void led_matrix_enable_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1861":{"title":"void led_matrix_disable(void)","titles":["LED Matrix Lighting","API"]},"1862":{"title":"void led_matrix_disable_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1863":{"title":"bool led_matrix_is_enabled(void)","titles":["LED Matrix Lighting","API"]},"1864":{"title":"Return Value","titles":["LED Matrix Lighting","API","bool led_matrix_is_enabled(void)"]},"1865":{"title":"void led_matrix_set_value(uint8_t index, uint8_t v)","titles":["LED Matrix Lighting","API"]},"1866":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_value(uint8_t index, uint8_t v)"]},"1867":{"title":"void led_matrix_set_value_all(uint8_t v)","titles":["LED Matrix Lighting","API"]},"1868":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_value_all(uint8_t v)"]},"1869":{"title":"void led_matrix_mode(uint8_t mode)","titles":["LED Matrix Lighting","API"]},"1870":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_mode(uint8_t mode)"]},"1871":{"title":"void led_matrix_mode_noeeprom(uint8_t mode)","titles":["LED Matrix Lighting","API"]},"1872":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_mode_noeeprom(uint8_t mode)"]},"1873":{"title":"void led_matrix_step(void)","titles":["LED Matrix Lighting","API"]},"1874":{"title":"void led_matrix_step_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1875":{"title":"void led_matrix_step_reverse(void)","titles":["LED Matrix Lighting","API"]},"1876":{"title":"void led_matrix_step_reverse_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1877":{"title":"uint8_t led_matrix_get_mode(void)","titles":["LED Matrix Lighting","API"]},"1878":{"title":"Return Value","titles":["LED Matrix Lighting","API","uint8_t led_matrix_get_mode(void)"]},"1879":{"title":"void val_matrix_increase_val(void)","titles":["LED Matrix Lighting","API"]},"1880":{"title":"void led_matrix_increase_val_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1881":{"title":"void led_matrix_decrease_val(void)","titles":["LED Matrix Lighting","API"]},"1882":{"title":"void led_matrix_decrease_val_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1883":{"title":"uint8_t led_matrix_get_val(void)","titles":["LED Matrix Lighting","API"]},"1884":{"title":"Return Value","titles":["LED Matrix Lighting","API","uint8_t led_matrix_get_val(void)"]},"1885":{"title":"void led_matrix_increase_speed(void)","titles":["LED Matrix Lighting","API"]},"1886":{"title":"void led_matrix_increase_speed_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1887":{"title":"void led_matrix_decrease_speed(void)","titles":["LED Matrix Lighting","API"]},"1888":{"title":"void led_matrix_decrease_speed_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1889":{"title":"void led_matrix_set_speed(uint8_t speed)","titles":["LED Matrix Lighting","API"]},"1890":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_speed(uint8_t speed)"]},"1891":{"title":"void led_matrix_set_speed_noeeprom(uint8_t speed)","titles":["LED Matrix Lighting","API"]},"1892":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_speed_noeeprom(uint8_t speed)"]},"1893":{"title":"uint8_t led_matrix_get_speed(void)","titles":["LED Matrix Lighting","API"]},"1894":{"title":"Return Value","titles":["LED Matrix Lighting","API","uint8_t led_matrix_get_speed(void)"]},"1895":{"title":"void led_matrix_set_flags(led_flags_t flags)","titles":["LED Matrix Lighting","API"]},"1896":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_flags(led_flags_t flags)"]},"1897":{"title":"void led_matrix_set_flags_noeeprom(led_flags_t flags)","titles":["LED Matrix Lighting","API"]},"1898":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_flags_noeeprom(led_flags_t flags)"]},"1899":{"title":"void led_matrix_flags_step(void)","titles":["LED Matrix Lighting","API"]},"1900":{"title":"void led_matrix_flags_step_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1901":{"title":"void led_matrix_flags_step_reverse(void)","titles":["LED Matrix Lighting","API"]},"1902":{"title":"void led_matrix_flags_step_reverse_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1903":{"title":"uint8_t led_matrix_get_flags(void)","titles":["LED Matrix Lighting","API"]},"1904":{"title":"Return Value","titles":["LED Matrix Lighting","API","uint8_t led_matrix_get_flags(void)"]},"1905":{"title":"void led_matrix_reload_from_eeprom(void)","titles":["LED Matrix Lighting","API"]},"1906":{"title":"bool led_matrix_get_suspend_state(void)","titles":["LED Matrix Lighting","API"]},"1907":{"title":"Return Value","titles":["LED Matrix Lighting","API","bool led_matrix_get_suspend_state(void)"]},"1908":{"title":"bool led_matrix_indicators_kb(void)","titles":["LED Matrix Lighting","API"]},"1909":{"title":"Return Value","titles":["LED Matrix Lighting","API","bool led_matrix_indicators_kb(void)"]},"1910":{"title":"bool led_matrix_indicators_user(void)","titles":["LED Matrix Lighting","API"]},"1911":{"title":"Return Value","titles":["LED Matrix Lighting","API","bool led_matrix_indicators_user(void)"]},"1912":{"title":"bool led_matrix_indicators_advanced_kb(uint8_t led_min, uint8_t led_max)","titles":["LED Matrix Lighting","API"]},"1913":{"title":"Arguments","titles":["LED Matrix Lighting","API"]},"1914":{"title":"Return Value","titles":["LED Matrix Lighting","API","Arguments"]},"1915":{"title":"bool led_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max)","titles":["LED Matrix Lighting","API"]},"1916":{"title":"Arguments","titles":["LED Matrix Lighting","API"]},"1917":{"title":"Return Value","titles":["LED Matrix Lighting","API","Arguments"]},"1918":{"title":"MIDI","titles":[]},"1919":{"title":"Usage","titles":["MIDI"]},"1920":{"title":"Caveats","titles":["MIDI","Usage"]},"1921":{"title":"Basic MIDI","titles":["MIDI","Usage"]},"1922":{"title":"Advanced MIDI","titles":["MIDI","Usage"]},"1923":{"title":"Sending Control Change (CC) Messages","titles":["MIDI","Usage","Advanced MIDI"]},"1924":{"title":"Example code for using Generic On Off Switches as per MIDI Specification.","titles":["MIDI","Usage","Advanced MIDI"]},"1925":{"title":"Keycodes","titles":["MIDI","Usage"]},"1926":{"title":"Configuration","titles":["MIDI","Usage"]},"1927":{"title":"References","titles":["MIDI","Usage"]},"1928":{"title":"MIDI Specification","titles":["MIDI","Usage","References"]},"1929":{"title":"QMK C Files","titles":["MIDI","Usage","References"]},"1930":{"title":"Mouse keys","titles":[]},"1931":{"title":"Adding mouse keys to your keyboard","titles":["Mouse keys"]},"1932":{"title":"Enabling mouse keys","titles":["Mouse keys","Adding mouse keys to your keyboard"]},"1933":{"title":"Mapping mouse actions","titles":["Mouse keys","Adding mouse keys to your keyboard"]},"1934":{"title":"Configuring mouse keys","titles":["Mouse keys"]},"1935":{"title":"Accelerated mode","titles":["Mouse keys","Configuring mouse keys"]},"1936":{"title":"Kinetic Mode","titles":["Mouse keys","Configuring mouse keys"]},"1937":{"title":"Constant mode","titles":["Mouse keys","Configuring mouse keys"]},"1938":{"title":"Combined mode","titles":["Mouse keys","Configuring mouse keys"]},"1939":{"title":"Inertia mode","titles":["Mouse keys","Configuring mouse keys"]},"1940":{"title":"Overlapping mouse key control","titles":["Mouse keys","Configuring mouse keys"]},"1941":{"title":"Use with PS/2 Mouse and Pointing Device","titles":["Mouse keys"]},"1942":{"title":"OLED Driver","titles":[]},"1943":{"title":"Supported Hardware","titles":["OLED Driver"]},"1944":{"title":"Usage","titles":["OLED Driver"]},"1945":{"title":"OLED type","titles":["OLED Driver"]},"1946":{"title":"Logo Example","titles":["OLED Driver"]},"1947":{"title":"Buffer Read Example","titles":["OLED Driver"]},"1948":{"title":"Other Examples","titles":["OLED Driver"]},"1949":{"title":"Basic Configuration","titles":["OLED Driver"]},"1950":{"title":"I2C Configuration","titles":["OLED Driver","Basic Configuration"]},"1951":{"title":"SPI Configuration","titles":["OLED Driver","Basic Configuration"]},"1952":{"title":"128x64 & Custom sized OLED Displays","titles":["OLED Driver"]},"1953":{"title":"90 Degree Rotation - Technical Mumbo Jumbo","titles":["OLED Driver","128x64 & Custom sized OLED Displays"]},"1954":{"title":"OLED API","titles":["OLED Driver"]},"1955":{"title":"SSD1306.h Driver Conversion Guide","titles":["OLED Driver"]},"1956":{"title":"OS Detection","titles":[]},"1957":{"title":"Usage","titles":["OS Detection"]},"1958":{"title":"Callbacks","titles":["OS Detection"]},"1959":{"title":"OS detection stability","titles":["OS Detection"]},"1960":{"title":"Configuration Options","titles":["OS Detection"]},"1961":{"title":"Troubleshooting","titles":["OS Detection"]},"1962":{"title":"Debug","titles":["OS Detection"]},"1963":{"title":"Credits","titles":["OS Detection"]},"1964":{"title":"Pointing Device","titles":[]},"1965":{"title":"Sensor Drivers","titles":["Pointing Device"]},"1966":{"title":"ADNS 5050 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1967":{"title":"ADNS 9800 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1968":{"title":"Analog Joystick","titles":["Pointing Device","Sensor Drivers"]},"1969":{"title":"Azoteq IQS5XX Trackpad","titles":["Pointing Device","Sensor Drivers"]},"1970":{"title":"Device settings","titles":["Pointing Device","Sensor Drivers","Azoteq IQS5XX Trackpad"]},"1971":{"title":"Gesture settings","titles":["Pointing Device","Sensor Drivers","Azoteq IQS5XX Trackpad"]},"1972":{"title":"Rotation settings","titles":["Pointing Device","Sensor Drivers","Azoteq IQS5XX Trackpad"]},"1973":{"title":"Cirque Trackpad","titles":["Pointing Device","Sensor Drivers"]},"1974":{"title":"Common settings","titles":["Pointing Device","Sensor Drivers","Cirque Trackpad"]},"1975":{"title":"Absolute mode settings","titles":["Pointing Device","Sensor Drivers","Cirque Trackpad"]},"1976":{"title":"Absolute mode gestures","titles":["Pointing Device","Sensor Drivers","Cirque Trackpad"]},"1977":{"title":"Relative mode gestures","titles":["Pointing Device","Sensor Drivers","Cirque Trackpad"]},"1978":{"title":"PAW 3204 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1979":{"title":"PAW-3222 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1980":{"title":"Pimoroni Trackball","titles":["Pointing Device","Sensor Drivers"]},"1981":{"title":"PMW3320 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1982":{"title":"PMW-3325 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1983":{"title":"PMW 3360 and PMW 3389 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1984":{"title":"Custom Driver","titles":["Pointing Device","Sensor Drivers"]},"1985":{"title":"Common Configuration","titles":["Pointing Device"]},"1986":{"title":"High Resolution Scrolling","titles":["Pointing Device"]},"1987":{"title":"Split Keyboard Configuration","titles":["Pointing Device"]},"1988":{"title":"Callbacks and Functions","titles":["Pointing Device"]},"1989":{"title":"Split Keyboard Callbacks and Functions","titles":["Pointing Device"]},"1990":{"title":"Manipulating Mouse Reports","titles":[]},"1991":{"title":"Examples","titles":["Manipulating Mouse Reports"]},"1992":{"title":"Custom Mouse Keycode","titles":["Manipulating Mouse Reports","Examples"]},"1993":{"title":"Drag Scroll or Mouse Scroll","titles":["Manipulating Mouse Reports","Examples"]},"1994":{"title":"Advanced Drag Scroll","titles":["Manipulating Mouse Reports","Examples"]},"1995":{"title":"Split Examples","titles":["Manipulating Mouse Reports"]},"1996":{"title":"Single Pointing Device","titles":["Manipulating Mouse Reports","Split Examples"]},"1997":{"title":"Combined Pointing Devices","titles":["Manipulating Mouse Reports","Split Examples"]},"1998":{"title":"Troubleshooting","titles":[]},"1999":{"title":"Automatic Mouse Layer","titles":[]},"2000":{"title":"Behaviour of Layer keys that activate the target layer","titles":["Automatic Mouse Layer"]},"2001":{"title":"How to enable:","titles":["Automatic Mouse Layer"]},"2002":{"title":"How to Customize:","titles":["Automatic Mouse Layer"]},"2003":{"title":"config.h Options:","titles":["Automatic Mouse Layer","How to Customize:"]},"2004":{"title":"Adding mouse keys","titles":["Automatic Mouse Layer","How to Customize:"]},"2005":{"title":"Callbacks for setting up additional key codes as mouse keys:","titles":["Automatic Mouse Layer","How to Customize:","Adding mouse keys"]},"2006":{"title":"To use the callback function to add mouse keys:","titles":["Automatic Mouse Layer","How to Customize:","Adding mouse keys","Callbacks for setting up additional key codes as mouse keys:"]},"2007":{"title":"Advanced control","titles":["Automatic Mouse Layer"]},"2008":{"title":"Functions to control auto mouse enable and target layer:","titles":["Automatic Mouse Layer","Advanced control"]},"2009":{"title":"Functions for handling custom key events:","titles":["Automatic Mouse Layer","Advanced control"]},"2010":{"title":"Advanced control examples","titles":["Automatic Mouse Layer","Advanced control"]},"2011":{"title":"Disable auto mouse on certain layers:","titles":["Automatic Mouse Layer","Advanced control","Advanced control examples"]},"2012":{"title":"Set different target layer when a particular layer is active:","titles":["Automatic Mouse Layer","Advanced control","Advanced control examples"]},"2013":{"title":"Use custom keys to control auto mouse:","titles":["Automatic Mouse Layer","Advanced control"]},"2014":{"title":"Customize Target Layer Activation","titles":["Automatic Mouse Layer"]},"2015":{"title":"Auto Mouse for Custom Pointing Device Task","titles":["Automatic Mouse Layer"]},"2016":{"title":"Programmable Button","titles":[]},"2017":{"title":"Usage","titles":["Programmable Button"]},"2018":{"title":"Keycodes","titles":["Programmable Button"]},"2019":{"title":"API","titles":["Programmable Button"]},"2020":{"title":"void programmable_button_clear(void)","titles":["Programmable Button","API"]},"2021":{"title":"void programmable_button_add(uint8_t index)","titles":["Programmable Button","API"]},"2022":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_add(uint8_t index)"]},"2023":{"title":"void programmable_button_remove(uint8_t index)","titles":["Programmable Button","API"]},"2024":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_remove(uint8_t index)"]},"2025":{"title":"void programmable_button_register(uint8_t index)","titles":["Programmable Button","API"]},"2026":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_register(uint8_t index)"]},"2027":{"title":"void programmable_button_unregister(uint8_t index)","titles":["Programmable Button","API"]},"2028":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_unregister(uint8_t index)"]},"2029":{"title":"bool programmable_button_is_on(uint8_t index)","titles":["Programmable Button","API"]},"2030":{"title":"Arguments","titles":["Programmable Button","API","bool programmable_button_is_on(uint8_t index)"]},"2031":{"title":"Return Value","titles":["Programmable Button","API","bool programmable_button_is_on(uint8_t index)"]},"2032":{"title":"void programmable_button_flush(void)","titles":["Programmable Button","API"]},"2033":{"title":"uint32_t programmable_button_get_report(void)","titles":["Programmable Button","API"]},"2034":{"title":"Return Value","titles":["Programmable Button","API","uint32_t programmable_button_get_report(void)"]},"2035":{"title":"void programmable_button_set_report(uint32_t report)","titles":["Programmable Button","API"]},"2036":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_set_report(uint32_t report)"]},"2037":{"title":"PS/2 Mouse Support","titles":[]},"2038":{"title":"The Circuitry between Trackpoint and Controller","titles":["PS/2 Mouse Support"]},"2039":{"title":"Driver Configuration","titles":["PS/2 Mouse Support"]},"2040":{"title":"Busywait Driver","titles":["PS/2 Mouse Support","Driver Configuration"]},"2041":{"title":"Interrupt Driver (AVR/ATMega32u4)","titles":["PS/2 Mouse Support","Driver Configuration"]},"2042":{"title":"Interrupt Driver (ARM chibios)","titles":["PS/2 Mouse Support","Driver Configuration"]},"2043":{"title":"USART Driver","titles":["PS/2 Mouse Support","Driver Configuration"]},"2044":{"title":"RP2040 PIO Driver","titles":["PS/2 Mouse Support","Driver Configuration"]},"2045":{"title":"Additional Settings","titles":["PS/2 Mouse Support"]},"2046":{"title":"PS/2 Mouse Features","titles":["PS/2 Mouse Support","Additional Settings"]},"2047":{"title":"Fine Control","titles":["PS/2 Mouse Support","Additional Settings"]},"2048":{"title":"Scroll Button","titles":["PS/2 Mouse Support","Additional Settings"]},"2049":{"title":"Invert Mouse buttons","titles":["PS/2 Mouse Support","Additional Settings"]},"2050":{"title":"Invert Mouse and Scroll Axes","titles":["PS/2 Mouse Support","Additional Settings"]},"2051":{"title":"Rotate Mouse Axes","titles":["PS/2 Mouse Support","Additional Settings"]},"2052":{"title":"Debug Settings","titles":["PS/2 Mouse Support","Additional Settings"]},"2053":{"title":"Movement Hook","titles":["PS/2 Mouse Support","Additional Settings"]},"2054":{"title":"Raw HID","titles":[]},"2055":{"title":"Usage","titles":["Raw HID"]},"2056":{"title":"Basic Configuration","titles":["Raw HID"]},"2057":{"title":"Sending Data to the Keyboard","titles":["Raw HID"]},"2058":{"title":"Receiving Data from the Keyboard","titles":["Raw HID"]},"2059":{"title":"Simple Example","titles":["Raw HID"]},"2060":{"title":"API","titles":["Raw HID"]},"2061":{"title":"void raw_hid_receive(uint8_t *data, uint8_t length)","titles":["Raw HID","API"]},"2062":{"title":"Arguments","titles":["Raw HID","API","void raw_hid_receive(uint8_t *data, uint8_t length)"]},"2063":{"title":"void raw_hid_send(uint8_t *data, uint8_t length)","titles":["Raw HID","API"]},"2064":{"title":"Arguments","titles":["Raw HID","API","void raw_hid_send(uint8_t *data, uint8_t length)"]},"2065":{"title":"Repeat Key","titles":[]},"2066":{"title":"How do I enable Repeat Key","titles":["Repeat Key"]},"2067":{"title":"Keycodes","titles":["Repeat Key"]},"2068":{"title":"Alternate Repeating","titles":["Repeat Key"]},"2069":{"title":"Defining alternate keys","titles":["Repeat Key"]},"2070":{"title":"Eliminating SFBs","titles":["Repeat Key","Defining alternate keys"]},"2071":{"title":"Typing shortcuts","titles":["Repeat Key","Defining alternate keys"]},"2072":{"title":"Ignoring certain keys and mods","titles":["Repeat Key"]},"2073":{"title":"Ignoring a key","titles":["Repeat Key","Ignoring certain keys and mods"]},"2074":{"title":"Filtering remembered mods","titles":["Repeat Key","Ignoring certain keys and mods"]},"2075":{"title":"Further conditions","titles":["Repeat Key","Ignoring certain keys and mods"]},"2076":{"title":"Handle how a key is repeated","titles":["Repeat Key"]},"2077":{"title":"Handle how a key is alternate repeated","titles":["Repeat Key"]},"2078":{"title":"Functions","titles":["Repeat Key"]},"2079":{"title":"Additional "Alternate" keys","titles":["Repeat Key"]},"2080":{"title":"RGB Matrix Lighting","titles":[]},"2081":{"title":"Driver Configuration","titles":["RGB Matrix Lighting"]},"2082":{"title":"Common Configuration","titles":["RGB Matrix Lighting"]},"2083":{"title":"Flags","titles":["RGB Matrix Lighting"]},"2084":{"title":"Keycodes","titles":["RGB Matrix Lighting"]},"2085":{"title":"RGB Matrix Effects","titles":["RGB Matrix Lighting"]},"2086":{"title":"RGB Matrix Effect Typing Heatmap","titles":["RGB Matrix Lighting","RGB Matrix Effects"]},"2087":{"title":"RGB Matrix Effect Solid Reactive","titles":["RGB Matrix Lighting","RGB Matrix Effects"]},"2088":{"title":"Custom RGB Matrix Effects","titles":["RGB Matrix Lighting"]},"2089":{"title":"Colors","titles":["RGB Matrix Lighting"]},"2090":{"title":"Naming","titles":["RGB Matrix Lighting"]},"2091":{"title":"Additional config.h Options","titles":["RGB Matrix Lighting"]},"2092":{"title":"EEPROM storage","titles":["RGB Matrix Lighting"]},"2093":{"title":"Callbacks","titles":["RGB Matrix Lighting"]},"2094":{"title":"Indicators","titles":["RGB Matrix Lighting","Callbacks"]},"2095":{"title":"Indicator Examples","titles":["RGB Matrix Lighting","Callbacks"]},"2096":{"title":"Examples","titles":["RGB Matrix Lighting","Callbacks","Indicator Examples"]},"2097":{"title":"Indicators without RGB Matrix Effect","titles":["RGB Matrix Lighting","Callbacks","Indicator Examples"]},"2098":{"title":"API","titles":["RGB Matrix Lighting"]},"2099":{"title":"void rgb_matrix_toggle(void)","titles":["RGB Matrix Lighting","API"]},"2100":{"title":"void rgb_matrix_toggle_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2101":{"title":"void rgb_matrix_enable(void)","titles":["RGB Matrix Lighting","API"]},"2102":{"title":"void rgb_matrix_enable_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2103":{"title":"void rgb_matrix_disable(void)","titles":["RGB Matrix Lighting","API"]},"2104":{"title":"void rgb_matrix_disable_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2105":{"title":"bool rgb_matrix_is_enabled(void)","titles":["RGB Matrix Lighting","API"]},"2106":{"title":"Return Value","titles":["RGB Matrix Lighting","API","bool rgb_matrix_is_enabled(void)"]},"2107":{"title":"void rgb_matrix_set_color(uint8_t index, uint8_t r, uint8_t g, uint8_t b)","titles":["RGB Matrix Lighting","API"]},"2108":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_color(uint8_t index, uint8_t r, uint8_t g, uint8_t b)"]},"2109":{"title":"void rgb_matrix_set_color_all(uint8_t r, uint8_t g, uint8_t b)","titles":["RGB Matrix Lighting","API"]},"2110":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_color_all(uint8_t r, uint8_t g, uint8_t b)"]},"2111":{"title":"void rgb_matrix_mode(uint8_t mode)","titles":["RGB Matrix Lighting","API"]},"2112":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_mode(uint8_t mode)"]},"2113":{"title":"void rgb_matrix_mode_noeeprom(uint8_t mode)","titles":["RGB Matrix Lighting","API"]},"2114":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_mode_noeeprom(uint8_t mode)"]},"2115":{"title":"void rgb_matrix_step(void)","titles":["RGB Matrix Lighting","API"]},"2116":{"title":"void rgb_matrix_step_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2117":{"title":"void rgb_matrix_step_reverse(void)","titles":["RGB Matrix Lighting","API"]},"2118":{"title":"void rgb_matrix_step_reverse_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2119":{"title":"uint8_t rgb_matrix_get_mode(void)","titles":["RGB Matrix Lighting","API"]},"2120":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_mode(void)"]},"2121":{"title":"void rgb_matrix_increase_hue(void)","titles":["RGB Matrix Lighting","API"]},"2122":{"title":"void rgb_matrix_increase_hue_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2123":{"title":"void rgb_matrix_decrease_hue(void)","titles":["RGB Matrix Lighting","API"]},"2124":{"title":"void rgb_matrix_decrease_hue_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2125":{"title":"uint8_t rgb_matrix_get_hue(void)","titles":["RGB Matrix Lighting","API"]},"2126":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_hue(void)"]},"2127":{"title":"void rgb_matrix_increase_sat(void)","titles":["RGB Matrix Lighting","API"]},"2128":{"title":"void rgb_matrix_increase_sat_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2129":{"title":"void rgb_matrix_decrease_sat(void)","titles":["RGB Matrix Lighting","API"]},"2130":{"title":"void rgb_matrix_decrease_sat_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2131":{"title":"uint8_t rgb_matrix_get_sat(void)","titles":["RGB Matrix Lighting","API"]},"2132":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_sat(void)"]},"2133":{"title":"void rgb_matrix_increase_val(void)","titles":["RGB Matrix Lighting","API"]},"2134":{"title":"void rgb_matrix_increase_val_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2135":{"title":"void rgb_matrix_decrease_val(void)","titles":["RGB Matrix Lighting","API"]},"2136":{"title":"void rgb_matrix_decrease_val_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2137":{"title":"uint8_t rgb_matrix_get_val(void)","titles":["RGB Matrix Lighting","API"]},"2138":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_val(void)"]},"2139":{"title":"void rgb_matrix_increase_speed(void)","titles":["RGB Matrix Lighting","API"]},"2140":{"title":"void rgb_matrix_increase_speed_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2141":{"title":"void rgb_matrix_decrease_speed(void)","titles":["RGB Matrix Lighting","API"]},"2142":{"title":"void rgb_matrix_decrease_speed_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2143":{"title":"void rgb_matrix_set_speed(uint8_t speed)","titles":["RGB Matrix Lighting","API"]},"2144":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_speed(uint8_t speed)"]},"2145":{"title":"void rgb_matrix_set_speed_noeeprom(uint8_t speed)","titles":["RGB Matrix Lighting","API"]},"2146":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_speed_noeeprom(uint8_t speed)"]},"2147":{"title":"uint8_t rgb_matrix_get_speed(void)","titles":["RGB Matrix Lighting","API"]},"2148":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_speed(void)"]},"2149":{"title":"void rgb_matrix_set_flags(led_flags_t flags)","titles":["RGB Matrix Lighting","API"]},"2150":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_flags(led_flags_t flags)"]},"2151":{"title":"void rgb_matrix_set_flags_noeeprom(led_flags_t flags)","titles":["RGB Matrix Lighting","API"]},"2152":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_flags_noeeprom(led_flags_t flags)"]},"2153":{"title":"void rgb_matrix_flags_step(void)","titles":["RGB Matrix Lighting","API"]},"2154":{"title":"void rgb_matrix_flags_step_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2155":{"title":"void rgb_matrix_flags_step_reverse(void)","titles":["RGB Matrix Lighting","API"]},"2156":{"title":"void rgb_matrix_flags_step_reverse_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2157":{"title":"uint8_t rgb_matrix_get_flags(void)","titles":["RGB Matrix Lighting","API"]},"2158":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_flags(void)"]},"2159":{"title":"void rgb_matrix_sethsv(uint8_t h, uint8_t s, uint8_t v)","titles":["RGB Matrix Lighting","API"]},"2160":{"title":"Arguments","titles":["RGB Matrix Lighting","API"]},"2161":{"title":"void rgb_matrix_sethsv_noeeprom(uint8_t h, uint8_t s, uint8_t v)","titles":["RGB Matrix Lighting","API"]},"2162":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_sethsv_noeeprom(uint8_t h, uint8_t s, uint8_t v)"]},"2163":{"title":"hsv_t rgb_matrix_get_hsv(void)","titles":["RGB Matrix Lighting","API"]},"2164":{"title":"Return Value","titles":["RGB Matrix Lighting","API","hsv_t rgb_matrix_get_hsv(void)"]},"2165":{"title":"void rgb_matrix_reload_from_eeprom(void)","titles":["RGB Matrix Lighting","API"]},"2166":{"title":"bool rgb_matrix_get_suspend_state(void)","titles":["RGB Matrix Lighting","API"]},"2167":{"title":"Return Value","titles":["RGB Matrix Lighting","API","bool rgb_matrix_get_suspend_state(void)"]},"2168":{"title":"bool rgb_matrix_indicators_kb(void)","titles":["RGB Matrix Lighting","API"]},"2169":{"title":"Return Value","titles":["RGB Matrix Lighting","API","bool rgb_matrix_indicators_kb(void)"]},"2170":{"title":"bool rgb_matrix_indicators_user(void)","titles":["RGB Matrix Lighting","API"]},"2171":{"title":"Return Value","titles":["RGB Matrix Lighting","API","bool rgb_matrix_indicators_user(void)"]},"2172":{"title":"bool rgb_matrix_indicators_advanced_kb(uint8_t led_min, uint8_t led_max)","titles":["RGB Matrix Lighting","API"]},"2173":{"title":"Arguments","titles":["RGB Matrix Lighting","API"]},"2174":{"title":"Return Value","titles":["RGB Matrix Lighting","API","Arguments"]},"2175":{"title":"bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max)","titles":["RGB Matrix Lighting","API"]},"2176":{"title":"Arguments","titles":["RGB Matrix Lighting","API"]},"2177":{"title":"Return Value","titles":["RGB Matrix Lighting","API","Arguments"]},"2178":{"title":"RGB Lighting","titles":[]},"2179":{"title":"Usage","titles":["RGB Lighting"]},"2180":{"title":"Color Selection","titles":["RGB Lighting","Usage"]},"2181":{"title":"Keycodes","titles":["RGB Lighting"]},"2182":{"title":"Configuration","titles":["RGB Lighting"]},"2183":{"title":"Effects and Animations","titles":["RGB Lighting"]},"2184":{"title":"Effect and Animation Toggles","titles":["RGB Lighting","Effects and Animations"]},"2185":{"title":"Effect and Animation Settings","titles":["RGB Lighting","Effects and Animations"]},"2186":{"title":"Example Usage to Reduce Memory Footprint","titles":["RGB Lighting","Effects and Animations"]},"2187":{"title":"Animation Speed","titles":["RGB Lighting","Effects and Animations"]},"2188":{"title":"Lighting Layers","titles":["RGB Lighting"]},"2189":{"title":"Defining Lighting Layers","titles":["RGB Lighting","Lighting Layers"]},"2190":{"title":"Enabling and disabling lighting layers","titles":["RGB Lighting","Lighting Layers"]},"2191":{"title":"Lighting layer blink","titles":["RGB Lighting","Lighting Layers"]},"2192":{"title":"Overriding RGB Lighting on/off status","titles":["RGB Lighting","Lighting Layers"]},"2193":{"title":"Retain brightness","titles":["RGB Lighting","Lighting Layers"]},"2194":{"title":"Functions","titles":["RGB Lighting"]},"2195":{"title":"Low level Functions","titles":["RGB Lighting","Functions"]},"2196":{"title":"Effects and Animations Functions","titles":["RGB Lighting","Functions"]},"2197":{"title":"effect range setting","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2198":{"title":"direct operation","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2199":{"title":"effect mode change","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2200":{"title":"effects mode disable/enable","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2201":{"title":"hue, sat, val change","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2202":{"title":"Speed functions","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2203":{"title":"layer functions","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2204":{"title":"query","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2205":{"title":"Colors","titles":["RGB Lighting"]},"2206":{"title":"Changing the order of the LEDs","titles":["RGB Lighting"]},"2207":{"title":"Clipping Range","titles":["RGB Lighting"]},"2208":{"title":"Hardware Modification","titles":["RGB Lighting"]},"2209":{"title":"Velocikey","titles":["RGB Lighting"]},"2210":{"title":"Usage","titles":["RGB Lighting","Velocikey"]},"2211":{"title":"Configuration","titles":["RGB Lighting","Velocikey"]},"2212":{"title":"Secure","titles":[]},"2213":{"title":"Unlock sequence","titles":["Secure"]},"2214":{"title":"Automatic Locking","titles":["Secure"]},"2215":{"title":"Usage","titles":["Secure"]},"2216":{"title":"Keycodes","titles":["Secure"]},"2217":{"title":"Configuration","titles":["Secure"]},"2218":{"title":"Functions","titles":["Secure"]},"2219":{"title":"Send String","titles":[]},"2220":{"title":"Usage","titles":["Send String"]},"2221":{"title":"Basic Configuration","titles":["Send String"]},"2222":{"title":"Keycodes","titles":["Send String"]},"2223":{"title":"Language Support","titles":["Send String","Keycodes"]},"2224":{"title":"Examples","titles":["Send String"]},"2225":{"title":"Hello World","titles":["Send String","Examples"]},"2226":{"title":"Keycode Injection","titles":["Send String","Examples"]},"2227":{"title":"API","titles":["Send String"]},"2228":{"title":"void send_string(const char *string)","titles":["Send String","API"]},"2229":{"title":"Arguments","titles":["Send String","API","void send_string(const char *string)"]},"2230":{"title":"void send_string_with_delay(const char *string, uint8_t interval)","titles":["Send String","API"]},"2231":{"title":"Arguments","titles":["Send String","API","void send_string_with_delay(const char *string, uint8_t interval)"]},"2232":{"title":"void send_string_P(const char *string)","titles":["Send String","API"]},"2233":{"title":"Arguments","titles":["Send String","API","void send_string_P(const char *string)"]},"2234":{"title":"void send_string_with_delay_P(const char *string, uint8_t interval)","titles":["Send String","API"]},"2235":{"title":"Arguments","titles":["Send String","API","void send_string_with_delay_P(const char *string, uint8_t interval)"]},"2236":{"title":"void send_char(char ascii_code)","titles":["Send String","API"]},"2237":{"title":"Arguments","titles":["Send String","API","void send_char(char ascii_code)"]},"2238":{"title":"void send_dword(uint32_t number)","titles":["Send String","API"]},"2239":{"title":"Arguments","titles":["Send String","API","void send_dword(uint32_t number)"]},"2240":{"title":"void send_word(uint16_t number)","titles":["Send String","API"]},"2241":{"title":"Arguments","titles":["Send String","API","void send_word(uint16_t number)"]},"2242":{"title":"void send_byte(uint8_t number)","titles":["Send String","API"]},"2243":{"title":"Arguments","titles":["Send String","API","void send_byte(uint8_t number)"]},"2244":{"title":"void send_nibble(uint8_t number)","titles":["Send String","API"]},"2245":{"title":"Arguments","titles":["Send String","API","void send_nibble(uint8_t number)"]},"2246":{"title":"void tap_random_base64(void)","titles":["Send String","API"]},"2247":{"title":"SEND_STRING(string)","titles":["Send String","API"]},"2248":{"title":"SEND_STRING_DELAY(string, interval)","titles":["Send String","API"]},"2249":{"title":"Sequencer","titles":[]},"2250":{"title":"Enable the step sequencer","titles":["Sequencer"]},"2251":{"title":"Tracks","titles":["Sequencer"]},"2252":{"title":"Resolutions","titles":["Sequencer"]},"2253":{"title":"Keycodes","titles":["Sequencer"]},"2254":{"title":"Functions","titles":["Sequencer"]},"2255":{"title":"Space Cadet: The Future, Built In","titles":[]},"2256":{"title":"Usage","titles":["Space Cadet: The Future, Built In"]},"2257":{"title":"Keycodes","titles":["Space Cadet: The Future, Built In"]},"2258":{"title":"Caveats","titles":["Space Cadet: The Future, Built In"]},"2259":{"title":"Configuration","titles":["Space Cadet: The Future, Built In"]},"2260":{"title":"Obsolete Configuration","titles":["Space Cadet: The Future, Built In"]},"2261":{"title":"Split Keyboard","titles":[]},"2262":{"title":"Compatibility Overview","titles":["Split Keyboard"]},"2263":{"title":"Hardware Configuration","titles":["Split Keyboard"]},"2264":{"title":"Required Hardware","titles":["Split Keyboard","Hardware Configuration"]},"2265":{"title":"Considerations","titles":["Split Keyboard","Hardware Configuration","Required Hardware"]},"2266":{"title":"Serial Wiring","titles":["Split Keyboard","Hardware Configuration"]},"2267":{"title":"I2C Wiring","titles":["Split Keyboard","Hardware Configuration"]},"2268":{"title":"Firmware Configuration","titles":["Split Keyboard"]},"2269":{"title":"Layout Macro","titles":["Split Keyboard","Firmware Configuration"]},"2270":{"title":"Setting Handedness","titles":["Split Keyboard","Firmware Configuration"]},"2271":{"title":"Handedness by Pin","titles":["Split Keyboard","Firmware Configuration","Setting Handedness"]},"2272":{"title":"Handedness by Matrix Pin","titles":["Split Keyboard","Firmware Configuration","Setting Handedness"]},"2273":{"title":"Handedness by EEPROM","titles":["Split Keyboard","Firmware Configuration","Setting Handedness"]},"2274":{"title":"Handedness by #define","titles":["Split Keyboard","Firmware Configuration","Setting Handedness"]},"2275":{"title":"Communication Options","titles":["Split Keyboard","Firmware Configuration"]},"2276":{"title":"Data Sync Options","titles":["Split Keyboard","Firmware Configuration"]},"2277":{"title":"Custom data sync between sides","titles":["Split Keyboard","Firmware Configuration"]},"2278":{"title":"Hardware Configuration Options","titles":["Split Keyboard","Firmware Configuration"]},"2279":{"title":"Hardware Considerations and Mods","titles":["Split Keyboard"]},"2280":{"title":"Teensy boards","titles":["Split Keyboard","Hardware Considerations and Mods"]},"2281":{"title":"Additional Resources","titles":["Split Keyboard"]},"2282":{"title":"ST7565 LCD Driver","titles":[]},"2283":{"title":"Supported Hardware","titles":["ST7565 LCD Driver"]},"2284":{"title":"Usage","titles":["ST7565 LCD Driver"]},"2285":{"title":"Logo Example","titles":["ST7565 LCD Driver"]},"2286":{"title":"Buffer Read Example","titles":["ST7565 LCD Driver"]},"2287":{"title":"Other Examples","titles":["ST7565 LCD Driver"]},"2288":{"title":"Basic Configuration","titles":["ST7565 LCD Driver"]},"2289":{"title":"Custom sized displays","titles":["ST7565 LCD Driver"]},"2290":{"title":"API","titles":["ST7565 LCD Driver"]},"2291":{"title":"Stenography in QMK","titles":[]},"2292":{"title":"Steno Support in QMK","titles":["Stenography in QMK"]},"2293":{"title":"Plover with QWERTY Keyboard","titles":["Stenography in QMK"]},"2294":{"title":"Plover with Steno Protocol","titles":["Stenography in QMK"]},"2295":{"title":"TX Bolt","titles":["Stenography in QMK","Plover with Steno Protocol"]},"2296":{"title":"GeminiPR","titles":["Stenography in QMK","Plover with Steno Protocol"]},"2297":{"title":"Switching protocols on the fly","titles":["Stenography in QMK","Plover with Steno Protocol"]},"2298":{"title":"Configuring QMK for Steno","titles":["Stenography in QMK"]},"2299":{"title":"Learning Stenography","titles":["Stenography in QMK"]},"2300":{"title":"Interfacing with the code","titles":["Stenography in QMK"]},"2301":{"title":"Keycode Reference","titles":["Stenography in QMK"]},"2302":{"title":"Swap-Hands Action","titles":[]},"2303":{"title":"Configuration","titles":["Swap-Hands Action"]},"2304":{"title":"Swap Keycodes","titles":["Swap-Hands Action"]},"2305":{"title":"Encoder Mapping","titles":["Swap-Hands Action"]},"2306":{"title":"Functions","titles":["Swap-Hands Action","Encoder Mapping"]},"2307":{"title":"Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","titles":[]},"2308":{"title":"Introduction","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things"]},"2309":{"title":"How to Use Tap Dance","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things"]},"2310":{"title":"Implementation Details","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things"]},"2311":{"title":"Examples","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things"]},"2312":{"title":"Simple Example: Send ESC on Single Tap, CAPS_LOCK on Double Tap","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples"]},"2313":{"title":"Complex Examples","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples"]},"2314":{"title":"Example 1: Send "Safety Dance!" After 100 Taps","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2315":{"title":"Example 2: Turn LED Lights On Then Off, One at a Time","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2316":{"title":"Example 3: Send : on Tap, ; on Hold","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2317":{"title":"Example 4: 'Quad Function Tap-Dance'","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2318":{"title":"Example 5: Using tap dance for advanced mod-tap and layer-tap keys","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2319":{"title":"Example 6: Using tap dance for momentary-layer-switch and layer-toggle keys","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2320":{"title":"Tri Layers","titles":[]},"2321":{"title":"Keycodes","titles":["Tri Layers"]},"2322":{"title":"Configuration","titles":["Tri Layers"]},"2323":{"title":"Functions","titles":["Tri Layers"]},"2324":{"title":"Unicode","titles":[]},"2325":{"title":"Caveats","titles":["Unicode"]},"2326":{"title":"Usage","titles":["Unicode"]},"2327":{"title":"Basic Configuration","titles":["Unicode"]},"2328":{"title":"Audio Feedback","titles":["Unicode","Basic Configuration"]},"2329":{"title":"Input Subsystems","titles":["Unicode"]},"2330":{"title":"Lower and Upper Case Pairs","titles":["Unicode","Input Subsystems","Audio Feedback"]},"2331":{"title":"Input Modes","titles":["Unicode"]},"2332":{"title":"Keycodes","titles":["Unicode"]},"2333":{"title":"API","titles":["Unicode"]},"2334":{"title":"uint8_t get_unicode_input_mode(void)","titles":["Unicode","API"]},"2335":{"title":"Return Value","titles":["Unicode","API","uint8_t get_unicode_input_mode(void)"]},"2336":{"title":"void set_unicode_input_mode(uint8_t mode)","titles":["Unicode","API"]},"2337":{"title":"Arguments","titles":["Unicode","API","void set_unicode_input_mode(uint8_t mode)"]},"2338":{"title":"void unicode_input_mode_step(void)","titles":["Unicode","API"]},"2339":{"title":"void unicode_input_mode_step_reverse(void)","titles":["Unicode","API"]},"2340":{"title":"void unicode_input_mode_set_user(uint8_t input_mode)","titles":["Unicode","API"]},"2341":{"title":"Arguments","titles":["Unicode","API","void unicode_input_mode_set_user(uint8_t input_mode)"]},"2342":{"title":"void unicode_input_mode_set_kb(uint8_t input_mode)","titles":["Unicode","API"]},"2343":{"title":"Arguments","titles":["Unicode","API","void unicode_input_mode_set_kb(uint8_t input_mode)"]},"2344":{"title":"void unicode_input_start(void)","titles":["Unicode","API"]},"2345":{"title":"void unicode_input_finish(void)","titles":["Unicode","API"]},"2346":{"title":"void unicode_input_cancel(void)","titles":["Unicode","API"]},"2347":{"title":"void register_unicode(uint32_t code_point)","titles":["Unicode","API"]},"2348":{"title":"Arguments","titles":["Unicode","API","void register_unicode(uint32_t code_point)"]},"2349":{"title":"void send_unicode_string(const char *str)","titles":["Unicode","API"]},"2350":{"title":"Arguments","titles":["Unicode","API","void send_unicode_string(const char *str)"]},"2351":{"title":"uint8_t unicodemap_index(uint16_t keycode)","titles":["Unicode","API"]},"2352":{"title":"Arguments","titles":["Unicode","API","uint8_t unicodemap_index(uint16_t keycode)"]},"2353":{"title":"Return Value","titles":["Unicode","API","uint8_t unicodemap_index(uint16_t keycode)"]},"2354":{"title":"uint32_t unicodemap_get_code_point(uint8_t index)","titles":["Unicode","API"]},"2355":{"title":"Arguments","titles":["Unicode","API","uint32_t unicodemap_get_code_point(uint8_t index)"]},"2356":{"title":"Return Value","titles":["Unicode","API","uint32_t unicodemap_get_code_point(uint8_t index)"]},"2357":{"title":"void register_unicodemap(uint8_t index)","titles":["Unicode","API"]},"2358":{"title":"Arguments","titles":["Unicode","API","void register_unicodemap(uint8_t index)"]},"2359":{"title":"void ucis_start(void)","titles":["Unicode","API"]},"2360":{"title":"bool ucis_active(void)","titles":["Unicode","API"]},"2361":{"title":"Return Value","titles":["Unicode","API","bool ucis_active(void)"]},"2362":{"title":"uint8_t ucis_count(void)","titles":["Unicode","API"]},"2363":{"title":"Return Value","titles":["Unicode","API","uint8_t ucis_count(void)"]},"2364":{"title":"bool ucis_add(uint16_t keycode)","titles":["Unicode","API"]},"2365":{"title":"Arguments","titles":["Unicode","API","bool ucis_add(uint16_t keycode)"]},"2366":{"title":"Return Value","titles":["Unicode","API","bool ucis_add(uint16_t keycode)"]},"2367":{"title":"bool ucis_remove_last(void)","titles":["Unicode","API"]},"2368":{"title":"Return Value","titles":["Unicode","API","bool ucis_remove_last(void)"]},"2369":{"title":"void ucis_finish(void)","titles":["Unicode","API"]},"2370":{"title":"void ucis_cancel(void)","titles":["Unicode","API"]},"2371":{"title":"void register_ucis(void)","titles":["Unicode","API"]},"2372":{"title":"Arguments","titles":["Unicode","API","void register_ucis(void)"]},"2373":{"title":"Wireless / Bluetooth","titles":[]},"2374":{"title":"Bluetooth Known Supported Hardware","titles":["Wireless / Bluetooth"]},"2375":{"title":"Adafruit BLE SPI Friend","titles":["Wireless / Bluetooth","Bluetooth Known Supported Hardware"]},"2376":{"title":"Bluetooth Rules.mk Options","titles":["Wireless / Bluetooth"]},"2377":{"title":"Bluetooth Keycodes","titles":["Wireless / Bluetooth"]},"2378":{"title":"Word Per Minute (WPM) Calculation","titles":[]},"2379":{"title":"Configuration","titles":["Word Per Minute (WPM) Calculation"]},"2380":{"title":"Public Functions","titles":["Word Per Minute (WPM) Calculation"]},"2381":{"title":"Callbacks","titles":["Word Per Minute (WPM) Calculation"]},"2382":{"title":"Flashing Instructions and Bootloader Information","titles":[]},"2383":{"title":"Atmel DFU","titles":["Flashing Instructions and Bootloader Information"]},"2384":{"title":"QMK DFU","titles":["Flashing Instructions and Bootloader Information","Atmel DFU"]},"2385":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","Atmel DFU"]},"2386":{"title":"Caterina","titles":["Flashing Instructions and Bootloader Information"]},"2387":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","Caterina"]},"2388":{"title":"HalfKay","titles":["Flashing Instructions and Bootloader Information"]},"2389":{"title":"USBasploader","titles":["Flashing Instructions and Bootloader Information"]},"2390":{"title":"BootloadHID","titles":["Flashing Instructions and Bootloader Information"]},"2391":{"title":"QMK HID","titles":["Flashing Instructions and Bootloader Information","BootloadHID"]},"2392":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","BootloadHID"]},"2393":{"title":"STM32/APM32 DFU","titles":["Flashing Instructions and Bootloader Information"]},"2394":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","STM32/APM32 DFU"]},"2395":{"title":"STM32duino","titles":["Flashing Instructions and Bootloader Information"]},"2396":{"title":"Kiibohd DFU","titles":["Flashing Instructions and Bootloader Information"]},"2397":{"title":"WB32 DFU","titles":["Flashing Instructions and Bootloader Information"]},"2398":{"title":"AT32 DFU","titles":["Flashing Instructions and Bootloader Information"]},"2399":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","AT32 DFU"]},"2400":{"title":"tinyuf2","titles":["Flashing Instructions and Bootloader Information"]},"2401":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","tinyuf2"]},"2402":{"title":"uf2boot","titles":["Flashing Instructions and Bootloader Information"]},"2403":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","uf2boot"]},"2404":{"title":"Raspberry Pi RP2040 UF2","titles":["Flashing Instructions and Bootloader Information"]},"2405":{"title":"Docker Quick Start","titles":[]},"2406":{"title":"Requirements","titles":["Docker Quick Start"]},"2407":{"title":"Usage","titles":["Docker Quick Start"]},"2408":{"title":"FAQ","titles":["Docker Quick Start"]},"2409":{"title":"Why can't I flash on Windows/macOS","titles":["Docker Quick Start","FAQ"]},"2410":{"title":"How to Use GitHub with QMK","titles":[]},"2411":{"title":"Introduction","titles":[]},"2412":{"title":"Basic QMK Structure","titles":["Introduction"]},"2413":{"title":"Userspace Structure","titles":["Introduction","Basic QMK Structure"]},"2414":{"title":"Keyboard Project Structure","titles":["Introduction","Basic QMK Structure"]},"2415":{"title":"Keymap Structure","titles":["Introduction","Basic QMK Structure"]},"2416":{"title":"The config.h File","titles":[]},"2417":{"title":"More Detailed make Instructions","titles":[]},"2418":{"title":"rules.mk Options","titles":["More Detailed make Instructions"]},"2419":{"title":"Customizing Makefile Options on a Per-Keymap Basis","titles":["More Detailed make Instructions"]},"2420":{"title":"Hand-Wiring Guide","titles":[]},"2421":{"title":"Parts list","titles":["Hand-Wiring Guide"]},"2422":{"title":"Starting the build","titles":["Hand-Wiring Guide"]},"2423":{"title":"Planning the matrix","titles":["Hand-Wiring Guide"]},"2424":{"title":"Common Microcontroller Boards","titles":["Hand-Wiring Guide","Planning the matrix"]},"2425":{"title":"Wiring the matrix","titles":["Hand-Wiring Guide"]},"2426":{"title":"A note on split keyboards","titles":["Hand-Wiring Guide","Wiring the matrix"]},"2427":{"title":"Soldering","titles":["Hand-Wiring Guide","Wiring the matrix"]},"2428":{"title":"Soldering the Diodes","titles":["Hand-Wiring Guide","Wiring the matrix","Soldering"]},"2429":{"title":"Soldering the Columns","titles":["Hand-Wiring Guide","Wiring the matrix","Soldering"]},"2430":{"title":"Wiring up the controller","titles":["Hand-Wiring Guide"]},"2431":{"title":"Specific instructions for the Teensy 2.0","titles":["Hand-Wiring Guide","Wiring up the controller"]},"2432":{"title":"Getting Some Basic Firmware Set Up","titles":["Hand-Wiring Guide"]},"2433":{"title":"Flashing the Firmware","titles":["Hand-Wiring Guide"]},"2434":{"title":"Testing Your Firmware","titles":["Hand-Wiring Guide"]},"2435":{"title":"Finishing up","titles":["Hand-Wiring Guide"]},"2436":{"title":"Links to Other Guides","titles":["Hand-Wiring Guide"]},"2437":{"title":"Legacy Content","titles":[]},"2438":{"title":"Preamble: How a Keyboard Matrix Works (and why we need diodes)","titles":["Legacy Content"]},"2439":{"title":"QMK Hardware Drivers","titles":[]},"2440":{"title":"Available Drivers","titles":[]},"2441":{"title":"ProMicro (AVR Only)","titles":["Available Drivers"]},"2442":{"title":"SSD1306 OLED Driver","titles":["Available Drivers"]},"2443":{"title":"WS2812","titles":["Available Drivers"]},"2444":{"title":"IS31FL3731","titles":["Available Drivers"]},"2445":{"title":"IS31FL3733","titles":["Available Drivers"]},"2446":{"title":"24xx series external I2C EEPROM","titles":["Available Drivers"]},"2447":{"title":"QMK Keyboard Guidelines","titles":[]},"2448":{"title":"Use QMK Lint","titles":["QMK Keyboard Guidelines"]},"2449":{"title":"Naming Your Keyboard/Project","titles":["QMK Keyboard Guidelines"]},"2450":{"title":"Sub-folders","titles":["QMK Keyboard Guidelines"]},"2451":{"title":"Keyboard Folder Structure","titles":["QMK Keyboard Guidelines"]},"2452":{"title":"readme.md","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2453":{"title":"keyboard.json/info.json","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2454":{"title":"config.h","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2455":{"title":"rules.mk","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2456":{"title":"<keyboard>.c","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2457":{"title":"<keyboard>.h","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2458":{"title":"Image/Hardware Files","titles":["QMK Keyboard Guidelines"]},"2459":{"title":"Keyboard Defaults","titles":["QMK Keyboard Guidelines"]},"2460":{"title":"Magic Keycodes and Command","titles":["QMK Keyboard Guidelines","Keyboard Defaults"]},"2461":{"title":"Custom Keyboard Programming","titles":["QMK Keyboard Guidelines"]},"2462":{"title":"Non-Production/Handwired Projects","titles":["QMK Keyboard Guidelines"]},"2463":{"title":"Warnings as Errors","titles":["QMK Keyboard Guidelines"]},"2464":{"title":"Copyright Blurb","titles":["QMK Keyboard Guidelines"]},"2465":{"title":"License","titles":["QMK Keyboard Guidelines"]},"2466":{"title":"How a Keyboard Matrix Works","titles":[]},"2467":{"title":"How Keys Are Registered, and Interpreted by Computers","titles":[]},"2468":{"title":"Schematic View","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2469":{"title":"1. You Press a Key","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2470":{"title":"2. What the Firmware Sends","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2471":{"title":"3. What the Event Input/Kernel Does","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2472":{"title":"4. What the Operating System Does","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2473":{"title":"Back to the Firmware","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2474":{"title":"List of Characters You Can Send","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2475":{"title":"How to (Maybe) Enter Unicode Characters","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2476":{"title":"Quantum Mechanical Keyboard Firmware","titles":[]},"2477":{"title":"What is QMK Firmware?","titles":["Quantum Mechanical Keyboard Firmware"]},"2478":{"title":"Get Started","titles":["Quantum Mechanical Keyboard Firmware"]},"2479":{"title":"Make It Yours","titles":["Quantum Mechanical Keyboard Firmware"]},"2480":{"title":"Need help?","titles":["Quantum Mechanical Keyboard Firmware"]},"2481":{"title":"Give Back","titles":["Quantum Mechanical Keyboard Firmware"]},"2482":{"title":"ISP Flashing Guide","titles":[]},"2483":{"title":"Hardware","titles":["ISP Flashing Guide"]},"2484":{"title":"Pro Micro as ISP","titles":["ISP Flashing Guide","Hardware"]},"2485":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","Pro Micro as ISP"]},"2486":{"title":"Arduino Uno / Micro as ISP","titles":["ISP Flashing Guide","Hardware"]},"2487":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","Arduino Uno / Micro as ISP"]},"2488":{"title":"Teensy 2.0 as ISP","titles":["ISP Flashing Guide","Hardware"]},"2489":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","Teensy 2.0 as ISP"]},"2490":{"title":"SparkFun PocketAVR / USBtinyISP","titles":["ISP Flashing Guide","Hardware"]},"2491":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","SparkFun PocketAVR / USBtinyISP"]},"2492":{"title":"USBasp","titles":["ISP Flashing Guide","Hardware"]},"2493":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","USBasp"]},"2494":{"title":"Bus Pirate","titles":["ISP Flashing Guide","Hardware"]},"2495":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","Bus Pirate"]},"2496":{"title":"Software","titles":["ISP Flashing Guide"]},"2497":{"title":"Bootloader Firmware","titles":["ISP Flashing Guide"]},"2498":{"title":"Atmel DFU","titles":["ISP Flashing Guide","Bootloader Firmware"]},"2499":{"title":"Caterina","titles":["ISP Flashing Guide","Bootloader Firmware"]},"2500":{"title":"BootloadHID (PS2AVRGB)","titles":["ISP Flashing Guide","Bootloader Firmware"]},"2501":{"title":"USBaspLoader","titles":["ISP Flashing Guide","Bootloader Firmware"]},"2502":{"title":"Flashing the Bootloader","titles":["ISP Flashing Guide"]},"2503":{"title":"Setting the Fuses","titles":["ISP Flashing Guide","Flashing the Bootloader"]},"2504":{"title":"Creating a "Production" Firmware","titles":["ISP Flashing Guide"]},"2505":{"title":"Flashing STM32Duino Bootloader","titles":["ISP Flashing Guide"]},"2506":{"title":"Software","titles":["ISP Flashing Guide","Flashing STM32Duino Bootloader"]},"2507":{"title":"Wiring","titles":["ISP Flashing Guide","Flashing STM32Duino Bootloader"]},"2508":{"title":"Flashing","titles":["ISP Flashing Guide","Flashing STM32Duino Bootloader"]},"2509":{"title":"Keycodes Overview","titles":[]},"2510":{"title":"Basic Keycodes","titles":["Keycodes Overview"]},"2511":{"title":"Quantum Keycodes","titles":["Keycodes Overview"]},"2512":{"title":"Audio Keys","titles":["Keycodes Overview"]},"2513":{"title":"Auto Shift","titles":["Keycodes Overview"]},"2514":{"title":"Autocorrect","titles":["Keycodes Overview"]},"2515":{"title":"Backlighting","titles":["Keycodes Overview"]},"2516":{"title":"Wireless/Bluetooth","titles":["Keycodes Overview"]},"2517":{"title":"Caps Word","titles":["Keycodes Overview"]},"2518":{"title":"Dynamic Macros","titles":["Keycodes Overview"]},"2519":{"title":"Grave Escape","titles":["Keycodes Overview"]},"2520":{"title":"Joystick","titles":["Keycodes Overview"]},"2521":{"title":"Key Lock","titles":["Keycodes Overview"]},"2522":{"title":"Layer Lock","titles":["Keycodes Overview"]},"2523":{"title":"Layer Switching","titles":["Keycodes Overview"]},"2524":{"title":"Leader Key","titles":["Keycodes Overview"]},"2525":{"title":"LED Matrix","titles":["Keycodes Overview"]},"2526":{"title":"Magic Keycodes","titles":["Keycodes Overview"]},"2527":{"title":"MIDI","titles":["Keycodes Overview"]},"2528":{"title":"Mouse Keys","titles":["Keycodes Overview"]},"2529":{"title":"Modifiers","titles":["Keycodes Overview"]},"2530":{"title":"Mod-Tap Keys","titles":["Keycodes Overview"]},"2531":{"title":"Tapping Term Keys","titles":["Keycodes Overview"]},"2532":{"title":"RGB Lighting","titles":["Keycodes Overview"]},"2533":{"title":"RGB Matrix","titles":["Keycodes Overview"]},"2534":{"title":"US ANSI Shifted Symbols","titles":["Keycodes Overview"]},"2535":{"title":"One Shot Keys","titles":["Keycodes Overview"]},"2536":{"title":"Programmable Button Support","titles":["Keycodes Overview"]},"2537":{"title":"Repeat Key","titles":["Keycodes Overview"]},"2538":{"title":"Space Cadet","titles":["Keycodes Overview"]},"2539":{"title":"Swap Hands","titles":["Keycodes Overview"]},"2540":{"title":"Unicode Support","titles":["Keycodes Overview"]},"2541":{"title":"Basic Keycodes","titles":[]},"2542":{"title":"Letters and Numbers","titles":["Basic Keycodes"]},"2543":{"title":"F Keys","titles":["Basic Keycodes"]},"2544":{"title":"Punctuation","titles":["Basic Keycodes"]},"2545":{"title":"Lock Keys","titles":["Basic Keycodes"]},"2546":{"title":"Modifiers","titles":["Basic Keycodes"]},"2547":{"title":"International","titles":["Basic Keycodes"]},"2548":{"title":"Commands","titles":["Basic Keycodes"]},"2549":{"title":"Media Keys","titles":["Basic Keycodes"]},"2550":{"title":"Number Pad","titles":["Basic Keycodes"]},"2551":{"title":"Special Keys","titles":["Basic Keycodes"]},"2552":{"title":"Magic Keycodes","titles":[]},"2553":{"title":"US ANSI Shifted Symbols","titles":[]},"2554":{"title":"Caveats","titles":["US ANSI Shifted Symbols"]},"2555":{"title":"Keycodes","titles":["US ANSI Shifted Symbols"]},"2556":{"title":"Keymap Overview","titles":[]},"2557":{"title":"Keymap and Layers","titles":["Keymap Overview"]},"2558":{"title":"Keymap Layer Status","titles":["Keymap Overview","Keymap and Layers"]},"2559":{"title":"Layer Precedence and Transparency","titles":["Keymap Overview","Keymap and Layers"]},"2560":{"title":"Anatomy of a keymap.c","titles":["Keymap Overview"]},"2561":{"title":"Definitions","titles":["Keymap Overview","Anatomy of a keymap.c"]},"2562":{"title":"Layers and Keymaps","titles":["Keymap Overview","Anatomy of a keymap.c"]},"2563":{"title":"Base Layer","titles":["Keymap Overview","Anatomy of a keymap.c","Layers and Keymaps"]},"2564":{"title":"Function Overlay Layer","titles":["Keymap Overview","Anatomy of a keymap.c","Layers and Keymaps"]},"2565":{"title":"Nitty Gritty Details","titles":[]},"2566":{"title":"License Violations","titles":[]},"2567":{"title":"Offending Vendors","titles":["License Violations"]},"2568":{"title":"Licensing","titles":["License Violations"]},"2569":{"title":"QMK PR Considerations","titles":["License Violations"]},"2570":{"title":"Detection","titles":["License Violations"]},"2571":{"title":"Remediation","titles":["License Violations"]},"2572":{"title":"The QMK Tutorial","titles":[]},"2573":{"title":"Overview","titles":["The QMK Tutorial"]},"2574":{"title":"Additional Resources","titles":["The QMK Tutorial"]},"2575":{"title":"Mod-Tap","titles":[]},"2576":{"title":"Caveats","titles":["Mod-Tap"]},"2577":{"title":"Intercepting Mod-Taps","titles":["Mod-Tap"]},"2578":{"title":"Changing tap function","titles":["Mod-Tap","Intercepting Mod-Taps"]},"2579":{"title":"Changing hold function","titles":["Mod-Tap","Intercepting Mod-Taps"]},"2580":{"title":"Changing both tap and hold","titles":["Mod-Tap","Intercepting Mod-Taps"]},"2581":{"title":"Other Resources","titles":["Mod-Tap"]},"2582":{"title":"Building Your First Firmware","titles":[]},"2583":{"title":"Configure Your Build Environment Defaults (Optional)","titles":["Building Your First Firmware"]},"2584":{"title":"Create a New Keymap","titles":["Building Your First Firmware"]},"2585":{"title":"Open keymap.c In Your Favorite Text Editor","titles":["Building Your First Firmware"]},"2586":{"title":"Customize The Layout To Your Liking","titles":["Building Your First Firmware"]},"2587":{"title":"Build Your Firmware","titles":["Building Your First Firmware"]},"2588":{"title":"Flash Your Firmware","titles":["Building Your First Firmware"]},"2589":{"title":"QMK Configurator","titles":[]},"2590":{"title":"Building QMK with GitHub Userspace","titles":[]},"2591":{"title":"Prerequisites","titles":["Building QMK with GitHub Userspace"]},"2592":{"title":"Environment Setup","titles":["Building QMK with GitHub Userspace"]},"2593":{"title":"1. Install Git","titles":["Building QMK with GitHub Userspace","Environment Setup"]},"2594":{"title":"2. GitHub authentication","titles":["Building QMK with GitHub Userspace","Environment Setup"]},"2595":{"title":"3. Create a repository","titles":["Building QMK with GitHub Userspace","Environment Setup"]},"2596":{"title":"Initial Code Commit","titles":["Building QMK with GitHub Userspace"]},"2597":{"title":"Create template files","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2598":{"title":"Add a JSON keymap","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2599":{"title":"Add a GitHub Action workflow","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2600":{"title":"Commit files to GitHub","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2601":{"title":"Review workflow output","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2602":{"title":"Customising your keymap","titles":["Building QMK with GitHub Userspace"]},"2603":{"title":"External QMK Userspace","titles":[]},"2604":{"title":"Setting up QMK Locally","titles":["External QMK Userspace"]},"2605":{"title":"External Userspace Repository Setup (forked on GitHub)","titles":["External QMK Userspace"]},"2606":{"title":"External Userspace Setup (locally stored only)","titles":["External QMK Userspace"]},"2607":{"title":"Adding a Keymap","titles":["External QMK Userspace"]},"2608":{"title":"Adding the keymap to External Userspace build targets","titles":["External QMK Userspace"]},"2609":{"title":"Compiling External Userspace build targets","titles":["External QMK Userspace"]},"2610":{"title":"Using GitHub Actions","titles":["External QMK Userspace"]},"2611":{"title":"Flashing Your Keyboard","titles":[]},"2612":{"title":"Put Your Keyboard into DFU (Bootloader) Mode","titles":["Flashing Your Keyboard"]},"2613":{"title":"Flashing Your Keyboard with QMK Toolbox","titles":["Flashing Your Keyboard"]},"2614":{"title":"Load the File into QMK Toolbox","titles":["Flashing Your Keyboard","Flashing Your Keyboard with QMK Toolbox"]},"2615":{"title":"Flash Your Keyboard","titles":["Flashing Your Keyboard","Flashing Your Keyboard with QMK Toolbox"]},"2616":{"title":"Flash your Keyboard from the Command Line","titles":["Flashing Your Keyboard"]},"2617":{"title":"Test It Out!","titles":["Flashing Your Keyboard"]},"2618":{"title":"Setting Up Your QMK Environment","titles":[]},"2619":{"title":"1. Prerequisites","titles":["Setting Up Your QMK Environment"]},"2620":{"title":"2. Prepare Your Build Environment","titles":["Setting Up Your QMK Environment"]},"2621":{"title":"Prerequisites","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2622":{"title":"Prerequisites","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2623":{"title":"Installation","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2624":{"title":"Prerequisites","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2625":{"title":"Installation","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2626":{"title":"Installation","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2627":{"title":"Installation","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2628":{"title":"3. Run QMK Setup","titles":["Setting Up Your QMK Environment"]},"2629":{"title":"4. Test Your Build Environment","titles":["Setting Up Your QMK Environment"]},"2630":{"title":"Creating Your Keymap","titles":[]},"2631":{"title":"Best Git Practices for Working with QMK","titles":[]},"2632":{"title":"Or, "How I Learned to Stop Worrying and Love Git."","titles":["Best Git Practices for Working with QMK"]},"2633":{"title":"Resolving Merge Conflicts","titles":[]},"2634":{"title":"Rebasing Your Changes","titles":["Resolving Merge Conflicts"]},"2635":{"title":"Resynchronizing an Out-of-Sync Git Branch","titles":[]},"2636":{"title":"Backing Up the Changes on Your Own Master Branch (Optional)","titles":["Resynchronizing an Out-of-Sync Git Branch"]},"2637":{"title":"Resynchronizing Your Branch","titles":["Resynchronizing an Out-of-Sync Git Branch"]},"2638":{"title":"Your Fork's Master: Update Often, Commit Never","titles":[]},"2639":{"title":"Updating your master branch","titles":["Your Fork's Master: Update Often, Commit Never"]},"2640":{"title":"Making Changes","titles":["Your Fork's Master: Update Often, Commit Never"]},"2641":{"title":"Publishing Your Changes","titles":["Your Fork's Master: Update Often, Commit Never"]},"2642":{"title":"Learning Resources","titles":[]},"2643":{"title":"QMK resources","titles":["Learning Resources"]},"2644":{"title":"Command Line resources","titles":["Learning Resources"]},"2645":{"title":"Text Editor resources","titles":["Learning Resources"]},"2646":{"title":"Git resources","titles":["Learning Resources"]},"2647":{"title":"Testing and Debugging","titles":[]},"2648":{"title":"Testing","titles":["Testing and Debugging"]},"2649":{"title":"Debugging","titles":["Testing and Debugging"]},"2650":{"title":"One Shot Keys","titles":[]},"2651":{"title":"Keycodes","titles":["One Shot Keys"]},"2652":{"title":"Callbacks","titles":["One Shot Keys"]},"2653":{"title":"Setting up Eclipse for QMK Development","titles":[]},"2654":{"title":"Prerequisites","titles":[]},"2655":{"title":"Build Environment","titles":["Prerequisites"]},"2656":{"title":"Java","titles":["Prerequisites"]},"2657":{"title":"Install Eclipse and Its Plugins","titles":[]},"2658":{"title":"Download and Install Eclipse CDT","titles":["Install Eclipse and Its Plugins"]},"2659":{"title":"First Launch","titles":["Install Eclipse and Its Plugins"]},"2660":{"title":"Install the Necessary Plugins","titles":["Install Eclipse and Its Plugins"]},"2661":{"title":"Configure Eclipse for QMK","titles":[]},"2662":{"title":"Importing the Project","titles":["Configure Eclipse for QMK"]},"2663":{"title":"Build Your Keyboard","titles":["Configure Eclipse for QMK"]},"2664":{"title":"WeAct Blackpill (STM32F4x1)","titles":[]},"2665":{"title":"Pin Usage Limitations","titles":["WeAct Blackpill (STM32F4x1)"]},"2666":{"title":"Unusable pins","titles":["WeAct Blackpill (STM32F4x1)","Pin Usage Limitations"]},"2667":{"title":"Pins to be avoided","titles":["WeAct Blackpill (STM32F4x1)","Pin Usage Limitations"]},"2668":{"title":"Shared Usage","titles":["WeAct Blackpill (STM32F4x1)","Pin Usage Limitations"]},"2669":{"title":"Limited Usage","titles":["WeAct Blackpill (STM32F4x1)","Pin Usage Limitations"]},"2670":{"title":"Additional Information","titles":["WeAct Blackpill (STM32F4x1)"]},"2671":{"title":"Bootloader issues","titles":["WeAct Blackpill (STM32F4x1)","Additional Information"]},"2672":{"title":"Tiny UF2 Support","titles":["WeAct Blackpill (STM32F4x1)","Additional Information"]},"2673":{"title":"Setting up Visual Studio Code for QMK Development","titles":[]},"2674":{"title":"Set up VS Code","titles":[]},"2675":{"title":"Windows","titles":["Set up VS Code"]},"2676":{"title":"Prerequisites","titles":["Set up VS Code","Windows"]},"2677":{"title":"Installing VS Code","titles":["Set up VS Code","Windows"]},"2678":{"title":"MSYS2 Setup","titles":["Set up VS Code","Windows","Installing VS Code"]},"2679":{"title":"Every other Operating System","titles":["Set up VS Code"]},"2680":{"title":"Extensions","titles":["Set up VS Code"]},"2681":{"title":"Configure VS Code for QMK","titles":[]},"2682":{"title":"Configuring VS Code","titles":["Configure VS Code for QMK"]},"2683":{"title":"Debugging ARM MCUs with Visual Studio Code","titles":[]},"2684":{"title":"Arm/ChibiOS Early Initialization","titles":[]},"2685":{"title":"early_hardware_init_pre()","titles":["Arm/ChibiOS Early Initialization"]},"2686":{"title":"early_hardware_init_post()","titles":["Arm/ChibiOS Early Initialization"]},"2687":{"title":"board_init()","titles":["Arm/ChibiOS Early Initialization"]},"2688":{"title":"Proton C","titles":[]},"2689":{"title":"Features","titles":["Proton C"]},"2690":{"title":"Warnings","titles":["Proton C"]},"2691":{"title":"Manual Conversion","titles":["Proton C"]},"2692":{"title":"Raspberry Pi RP2040","titles":[]},"2693":{"title":"GPIO","titles":["Raspberry Pi RP2040"]},"2694":{"title":"Pin nomenclature","titles":["Raspberry Pi RP2040","GPIO"]},"2695":{"title":"Alternate functions","titles":["Raspberry Pi RP2040","GPIO"]},"2696":{"title":"Selecting hardware peripherals and drivers","titles":["Raspberry Pi RP2040"]},"2697":{"title":"I2C Driver","titles":["Raspberry Pi RP2040","Selecting hardware peripherals and drivers"]},"2698":{"title":"SPI Driver","titles":["Raspberry Pi RP2040","Selecting hardware peripherals and drivers"]},"2699":{"title":"UART Driver","titles":["Raspberry Pi RP2040","Selecting hardware peripherals and drivers"]},"2700":{"title":"Double-tap reset boot-loader entry","titles":["Raspberry Pi RP2040"]},"2701":{"title":"Pre-defined RP2040 boards","titles":["Raspberry Pi RP2040"]},"2702":{"title":"Generic Pro Micro RP2040","titles":["Raspberry Pi RP2040","Pre-defined RP2040 boards"]},"2703":{"title":"Generic RP2040 board","titles":["Raspberry Pi RP2040","Pre-defined RP2040 boards"]},"2704":{"title":"Split keyboard support","titles":["Raspberry Pi RP2040"]},"2705":{"title":"RP2040 second stage bootloader selection","titles":["Raspberry Pi RP2040"]},"2706":{"title":"RP2040 Community Edition","titles":["Raspberry Pi RP2040"]},"2707":{"title":"Choosing an Arm MCU","titles":[]},"2708":{"title":"Selecting an already-supported MCU","titles":["Choosing an Arm MCU"]},"2709":{"title":"STM32 families","titles":["Choosing an Arm MCU","Selecting an already-supported MCU"]},"2710":{"title":"Non-STM32 families","titles":["Choosing an Arm MCU","Selecting an already-supported MCU"]},"2711":{"title":"Adding support for a new STM32 MCU (for an existing family)","titles":["Choosing an Arm MCU"]},"2712":{"title":"Adding support for a new STM32 Family","titles":["Choosing an Arm MCU"]},"2713":{"title":"Adding support for a new MCU Family","titles":["Choosing an Arm MCU"]},"2714":{"title":"Adding Your Keyboard to QMK","titles":[]},"2715":{"title":"readme.md","titles":["Adding Your Keyboard to QMK"]},"2716":{"title":"keyboard.json","titles":["Adding Your Keyboard to QMK"]},"2717":{"title":"Hardware Configuration","titles":["Adding Your Keyboard to QMK","keyboard.json"]},"2718":{"title":"Matrix Configuration","titles":["Adding Your Keyboard to QMK","keyboard.json"]},"2719":{"title":"Diode Matrix","titles":["Adding Your Keyboard to QMK","keyboard.json","Matrix Configuration"]},"2720":{"title":"Direct Pin Matrix","titles":["Adding Your Keyboard to QMK","keyboard.json","Matrix Configuration"]},"2721":{"title":"Layout Macros","titles":["Adding Your Keyboard to QMK","keyboard.json"]},"2722":{"title":"Additional Configuration","titles":["Adding Your Keyboard to QMK"]},"2723":{"title":"Configuration Options","titles":["Adding Your Keyboard to QMK","Additional Configuration"]},"2724":{"title":"Build Options","titles":["Adding Your Keyboard to QMK","Additional Configuration"]},"2725":{"title":"Proprietary Vendor Libraries","titles":[]},"2726":{"title":"Architecture Constraints","titles":["Proprietary Vendor Libraries"]},"2727":{"title":"Common Vendor Library Restrictions","titles":["Proprietary Vendor Libraries"]},"2728":{"title":"Bluetooth Stack Licensing Examples","titles":["Proprietary Vendor Libraries"]},"2729":{"title":"Why the System Library Exception Doesn't Apply","titles":["Proprietary Vendor Libraries"]},"2730":{"title":"System Library Requirements","titles":["Proprietary Vendor Libraries","Why the System Library Exception Doesn't Apply"]},"2731":{"title":"Why Vendor Libraries Fail These Requirements","titles":["Proprietary Vendor Libraries","Why the System Library Exception Doesn't Apply"]},"2732":{"title":"Attempted Workarounds","titles":["Proprietary Vendor Libraries"]},"2733":{"title":"Architectural Separation Attempts","titles":["Proprietary Vendor Libraries","Attempted Workarounds"]},"2734":{"title":"Loader-Based Separation","titles":["Proprietary Vendor Libraries","Attempted Workarounds"]},"2735":{"title":"Real-World Examples","titles":["Proprietary Vendor Libraries"]},"2736":{"title":"Bluetooth/Wireless Stacks","titles":["Proprietary Vendor Libraries","Real-World Examples"]},"2737":{"title":"HAL and Driver Libraries","titles":["Proprietary Vendor Libraries","Real-World Examples"]},"2738":{"title":"Mixed Proprietary/Open","titles":["Proprietary Vendor Libraries","Real-World Examples"]},"2739":{"title":"Legal and Practical Consequences","titles":["Proprietary Vendor Libraries"]},"2740":{"title":"Evaluation Criteria for Libraries","titles":["Proprietary Vendor Libraries"]},"2741":{"title":"Policy Implementation","titles":["Proprietary Vendor Libraries"]},"2742":{"title":"Summary","titles":["Proprietary Vendor Libraries"]},"2743":{"title":"PR checklists","titles":[]},"2744":{"title":"Requirements for all PRs","titles":["PR checklists"]},"2745":{"title":"Keymap PRs","titles":["PR checklists"]},"2746":{"title":"Keyboard PRs","titles":["PR checklists"]},"2747":{"title":"Core PRs","titles":["PR checklists"]},"2748":{"title":"Notes","titles":["PR checklists"]},"2749":{"title":"Review Process","titles":["PR checklists"]},"2750":{"title":"Example GPLv2 Header","titles":["PR checklists"]},"2751":{"title":"Quantum Keycodes","titles":[]},"2752":{"title":"QMK Keycodes","titles":["Quantum Keycodes"]},"2753":{"title":"Quantum Painter LVGL Integration","titles":[]},"2754":{"title":"Enabling LVGL","titles":["Quantum Painter LVGL Integration"]},"2755":{"title":"Quantum Painter LVGL API","titles":["Quantum Painter LVGL Integration"]},"2756":{"title":"Quantum Painter LVGL Attach","titles":["Quantum Painter LVGL Integration","Quantum Painter LVGL API"]},"2757":{"title":"Quantum Painter LVGL Detach","titles":["Quantum Painter LVGL Integration","Quantum Painter LVGL API"]},"2758":{"title":"Enabling/Disabling LVGL features","titles":["Quantum Painter LVGL Integration"]},"2759":{"title":"Changing the LVGL task frequency","titles":["Quantum Painter LVGL Integration"]},"2760":{"title":"Quantum Painter","titles":[]},"2761":{"title":"Quantum Painter Configuration","titles":["Quantum Painter"]},"2762":{"title":"Quantum Painter CLI Commands","titles":["Quantum Painter"]},"2763":{"title":"Quantum Painter Display Drivers","titles":["Quantum Painter"]},"2764":{"title":"Quantum Painter Drawing API","titles":["Quantum Painter"]},"2765":{"title":"List of Useful Core Functions To Make Your Keyboard Better","titles":[]},"2766":{"title":"(OLKB) Tri Layers","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2767":{"title":"update_tri_layer(x, y, z)","titles":["List of Useful Core Functions To Make Your Keyboard Better","(OLKB) Tri Layers"]},"2768":{"title":"Example","titles":["List of Useful Core Functions To Make Your Keyboard Better","(OLKB) Tri Layers","update_tri_layer(x, y, z)"]},"2769":{"title":"update_tri_layer_state(state, x, y, z)","titles":["List of Useful Core Functions To Make Your Keyboard Better","(OLKB) Tri Layers"]},"2770":{"title":"Example","titles":["List of Useful Core Functions To Make Your Keyboard Better","(OLKB) Tri Layers","update_tri_layer_state(state, x, y, z)"]},"2771":{"title":"Setting the Persistent Default Layer","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2772":{"title":"Resetting the keyboard","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2773":{"title":"Reset to bootloader","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2774":{"title":"Wiping the EEPROM (Persistent Storage)","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2775":{"title":"Tap random key","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2776":{"title":"Software Timers","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2777":{"title":"QMK Graphics Format","titles":[]},"2778":{"title":"Block Header","titles":["QMK Graphics Format"]},"2779":{"title":"Graphics descriptor block","titles":["QMK Graphics Format"]},"2780":{"title":"Frame offset block","titles":["QMK Graphics Format"]},"2781":{"title":"Frame descriptor block","titles":["QMK Graphics Format"]},"2782":{"title":"Frame palette block","titles":["QMK Graphics Format"]},"2783":{"title":"Frame delta block","titles":["QMK Graphics Format"]},"2784":{"title":"Frame data block","titles":["QMK Graphics Format"]},"2785":{"title":"QMK Font Format","titles":[]},"2786":{"title":"Block Header","titles":["QMK Font Format"]},"2787":{"title":"Font descriptor block","titles":["QMK Font Format"]},"2788":{"title":"ASCII glyph table","titles":["QMK Font Format"]},"2789":{"title":"Unicode glyph table","titles":["QMK Font Format"]},"2790":{"title":"Font palette block","titles":["QMK Font Format"]},"2791":{"title":"Font data block","titles":["QMK Font Format"]},"2792":{"title":"QMK QGF/QFF RLE data schema","titles":[]},"2793":{"title":"Supporting Your Keyboard in QMK Configurator","titles":[]},"2794":{"title":"How the Configurator Understands Keyboards","titles":["Supporting Your Keyboard in QMK Configurator"]},"2795":{"title":"Building the JSON file","titles":["Supporting Your Keyboard in QMK Configurator"]},"2796":{"title":"How the Configurator Programs Keys","titles":["Supporting Your Keyboard in QMK Configurator"]},"2797":{"title":"Issues and Hazards","titles":["Supporting Your Keyboard in QMK Configurator"]},"2798":{"title":"Workarounds","titles":["Supporting Your Keyboard in QMK Configurator","Issues and Hazards"]},"2799":{"title":"Non-rectangular keys","titles":["Supporting Your Keyboard in QMK Configurator","Issues and Hazards","Workarounds"]},"2800":{"title":"Vertically-offset keys","titles":["Supporting Your Keyboard in QMK Configurator","Issues and Hazards","Workarounds"]},"2801":{"title":"Glossary of QMK Terms","titles":[]},"2802":{"title":"ARM","titles":["Glossary of QMK Terms"]},"2803":{"title":"AVR","titles":["Glossary of QMK Terms"]},"2804":{"title":"AZERTY","titles":["Glossary of QMK Terms"]},"2805":{"title":"Backlight","titles":["Glossary of QMK Terms"]},"2806":{"title":"Bluetooth","titles":["Glossary of QMK Terms"]},"2807":{"title":"Bootloader","titles":["Glossary of QMK Terms"]},"2808":{"title":"Bootmagic","titles":["Glossary of QMK Terms"]},"2809":{"title":"C","titles":["Glossary of QMK Terms"]},"2810":{"title":"Colemak","titles":["Glossary of QMK Terms"]},"2811":{"title":"Compile","titles":["Glossary of QMK Terms"]},"2812":{"title":"Dvorak","titles":["Glossary of QMK Terms"]},"2813":{"title":"Dynamic Macro","titles":["Glossary of QMK Terms"]},"2814":{"title":"Eclipse","titles":["Glossary of QMK Terms"]},"2815":{"title":"Firmware","titles":["Glossary of QMK Terms"]},"2816":{"title":"git","titles":["Glossary of QMK Terms"]},"2817":{"title":"GitHub","titles":["Glossary of QMK Terms"]},"2818":{"title":"ISP","titles":["Glossary of QMK Terms"]},"2819":{"title":"hid_listen","titles":["Glossary of QMK Terms"]},"2820":{"title":"Keycode","titles":["Glossary of QMK Terms"]},"2821":{"title":"Key Down","titles":["Glossary of QMK Terms"]},"2822":{"title":"Key Up","titles":["Glossary of QMK Terms"]},"2823":{"title":"Keymap","titles":["Glossary of QMK Terms"]},"2824":{"title":"Layer","titles":["Glossary of QMK Terms"]},"2825":{"title":"Leader Key","titles":["Glossary of QMK Terms"]},"2826":{"title":"LED","titles":["Glossary of QMK Terms"]},"2827":{"title":"Make","titles":["Glossary of QMK Terms"]},"2828":{"title":"Matrix","titles":["Glossary of QMK Terms"]},"2829":{"title":"Macro","titles":["Glossary of QMK Terms"]},"2830":{"title":"MCU","titles":["Glossary of QMK Terms"]},"2831":{"title":"Modifier","titles":["Glossary of QMK Terms"]},"2832":{"title":"Mousekeys","titles":["Glossary of QMK Terms"]},"2833":{"title":"N-Key Rollover (NKRO)","titles":["Glossary of QMK Terms"]},"2834":{"title":"Oneshot Modifier","titles":["Glossary of QMK Terms"]},"2835":{"title":"ProMicro","titles":["Glossary of QMK Terms"]},"2836":{"title":"Pull Request","titles":["Glossary of QMK Terms"]},"2837":{"title":"QWERTY","titles":["Glossary of QMK Terms"]},"2838":{"title":"QWERTZ","titles":["Glossary of QMK Terms"]},"2839":{"title":"Rollover","titles":["Glossary of QMK Terms"]},"2840":{"title":"Scancode","titles":["Glossary of QMK Terms"]},"2841":{"title":"Space Cadet Shift","titles":["Glossary of QMK Terms"]},"2842":{"title":"Tap","titles":["Glossary of QMK Terms"]},"2843":{"title":"Tap Dance","titles":["Glossary of QMK Terms"]},"2844":{"title":"Teensy","titles":["Glossary of QMK Terms"]},"2845":{"title":"Underlight","titles":["Glossary of QMK Terms"]},"2846":{"title":"Unicode","titles":["Glossary of QMK Terms"]},"2847":{"title":"Unit Testing","titles":["Glossary of QMK Terms"]},"2848":{"title":"USB","titles":["Glossary of QMK Terms"]},"2849":{"title":"USB Host (or simply Host)","titles":["Glossary of QMK Terms"]},"2850":{"title":"Couldn't Find the Term You're Looking For?","titles":[]},"2851":{"title":"info.json Reference","titles":[]},"2852":{"title":"General Metadata","titles":["info.json Reference"]},"2853":{"title":"Hardware Configuration","titles":["info.json Reference"]},"2854":{"title":"Firmware Configuration","titles":["info.json Reference"]},"2855":{"title":"APA102","titles":["info.json Reference"]},"2856":{"title":"Audio","titles":["info.json Reference"]},"2857":{"title":"Backlight","titles":["info.json Reference"]},"2858":{"title":"Battery","titles":["info.json Reference"]},"2859":{"title":"Wireless/Bluetooth","titles":["info.json Reference"]},"2860":{"title":"Bootmagic","titles":["info.json Reference"]},"2861":{"title":"Caps Word","titles":["info.json Reference"]},"2862":{"title":"Combo","titles":["info.json Reference"]},"2863":{"title":"DIP Switches","titles":["info.json Reference"]},"2864":{"title":"EEPROM","titles":["info.json Reference"]},"2865":{"title":"Encoder","titles":["info.json Reference"]},"2866":{"title":"Host","titles":["info.json Reference"]},"2867":{"title":"Indicators","titles":["info.json Reference"]},"2868":{"title":"(Custom) Keycodes","titles":["info.json Reference"]},"2869":{"title":"Layouts","titles":["info.json Reference"]},"2870":{"title":"Leader Key","titles":["info.json Reference"]},"2871":{"title":"LED Matrix","titles":["info.json Reference"]},"2872":{"title":"Matrix","titles":["info.json Reference"]},"2873":{"title":"Mouse Keys","titles":["info.json Reference"]},"2874":{"title":"One Shot","titles":["info.json Reference"]},"2875":{"title":"PS/2","titles":["info.json Reference"]},"2876":{"title":"QMK LUFA Bootloader","titles":["info.json Reference"]},"2877":{"title":"RGBLight","titles":["info.json Reference"]},"2878":{"title":"RGB Matrix","titles":["info.json Reference"]},"2879":{"title":"Secure","titles":["info.json Reference"]},"2880":{"title":"Split Keyboard","titles":["info.json Reference"]},"2881":{"title":"Stenography","titles":["info.json Reference"]},"2882":{"title":"USB","titles":["info.json Reference"]},"2883":{"title":"WS2812","titles":["info.json Reference"]},"2884":{"title":"Language-specific Keycodes","titles":[]},"2885":{"title":"Selecting Your Host Keyboard Layout","titles":["Language-specific Keycodes"]},"2886":{"title":"Sendstring Support","titles":["Language-specific Keycodes"]},"2887":{"title":"Header Files","titles":["Language-specific Keycodes"]},"2888":{"title":"Squeezing the most out of AVR","titles":[]},"2889":{"title":"rules.mk Settings","titles":["Squeezing the most out of AVR"]},"2890":{"title":"config.h Settings","titles":["Squeezing the most out of AVR"]},"2891":{"title":"Audio Settings","titles":["Squeezing the most out of AVR"]},"2892":{"title":"Layers","titles":["Squeezing the most out of AVR"]},"2893":{"title":"OLED tweaks","titles":["Squeezing the most out of AVR"]},"2894":{"title":"RGB Settings","titles":["Squeezing the most out of AVR"]},"2895":{"title":"Final Thoughts","titles":[]},"2896":{"title":"Getting Help","titles":[]},"2897":{"title":"Realtime Chat","titles":["Getting Help"]},"2898":{"title":"OLKB Subreddit","titles":["Getting Help"]},"2899":{"title":"GitHub Issues","titles":["Getting Help"]},"2900":{"title":"Feature support policies","titles":[]},"2901":{"title":"System Constraints","titles":["Feature support policies"]},"2902":{"title":"Deprecation & Removal Policy","titles":["Feature support policies"]},"2903":{"title":"How much advance notice will be given?","titles":["Feature support policies","Deprecation & Removal Policy"]},"2904":{"title":"How will deprecation be communicated?","titles":["Feature support policies","Deprecation & Removal Policy"]},"2905":{"title":"QMK Syllabus","titles":[]},"2906":{"title":"Beginning Topics","titles":[]},"2907":{"title":"Intermediate Topics","titles":[]},"2908":{"title":"Advanced Topics","titles":[]},"2909":{"title":"Tap-Hold Configuration Options","titles":[]},"2910":{"title":"Tapping Term","titles":["Tap-Hold Configuration Options"]},"2911":{"title":"Example","titles":["Tap-Hold Configuration Options","Tapping Term"]},"2912":{"title":"Dynamic Tapping Term","titles":["Tap-Hold Configuration Options","Tapping Term"]},"2913":{"title":"Tap-Or-Hold Decision Modes","titles":["Tap-Hold Configuration Options"]},"2914":{"title":"Comparison","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes"]},"2915":{"title":"Distinct taps (AABB)","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes","Comparison"]},"2916":{"title":"Nested tap (ABBA)","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes","Comparison"]},"2917":{"title":"Rolling keys (ABAB)","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes","Comparison"]},"2918":{"title":"Default Mode","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes"]},"2919":{"title":"Permissive Hold","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes"]},"2920":{"title":"Hold On Other Key Press","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes"]},"2921":{"title":"Quick Tap Term","titles":["Tap-Hold Configuration Options"]},"2922":{"title":"Flow Tap","titles":["Tap-Hold Configuration Options"]},"2923":{"title":"is_flow_tap_key()","titles":["Tap-Hold Configuration Options","Flow Tap"]},"2924":{"title":"get_flow_tap_term()","titles":["Tap-Hold Configuration Options","Flow Tap"]},"2925":{"title":"Chordal Hold","titles":["Tap-Hold Configuration Options"]},"2926":{"title":"Chordal Hold Handedness","titles":["Tap-Hold Configuration Options","Chordal Hold"]},"2927":{"title":"Per-chord customization","titles":["Tap-Hold Configuration Options","Chordal Hold"]},"2928":{"title":"Retro Tapping","titles":["Tap-Hold Configuration Options"]},"2929":{"title":"Retro Shift","titles":["Tap-Hold Configuration Options","Retro Tapping"]},"2930":{"title":"Speculative Hold","titles":["Tap-Hold Configuration Options"]},"2931":{"title":"Why do we include the key record for the per key functions?","titles":["Tap-Hold Configuration Options"]},"2932":{"title":"Why are there no *_kb or *_user functions?!","titles":["Tap-Hold Configuration Options"]},"2933":{"title":"Understanding QMK's Code","titles":[]},"2934":{"title":"Startup","titles":["Understanding QMK's Code"]},"2935":{"title":"The Main Loop","titles":["Understanding QMK's Code"]},"2936":{"title":"Matrix Scanning","titles":["Understanding QMK's Code","The Main Loop"]},"2937":{"title":"Matrix to Physical Layout Map","titles":["Understanding QMK's Code","The Main Loop","Matrix Scanning"]},"2938":{"title":"Keycode Assignment","titles":["Understanding QMK's Code","The Main Loop","Matrix Scanning"]},"2939":{"title":"State Change Detection","titles":["Understanding QMK's Code","The Main Loop","Matrix Scanning"]},"2940":{"title":"Process Record","titles":["Understanding QMK's Code","The Main Loop","Matrix Scanning"]},"2941":{"title":"Unit Testing","titles":[]},"2942":{"title":"Google Test and Google Mock","titles":["Unit Testing"]},"2943":{"title":"Use of C++","titles":["Unit Testing"]},"2944":{"title":"Adding Tests for New or Existing Features","titles":["Unit Testing"]},"2945":{"title":"Running the Tests","titles":["Unit Testing"]},"2946":{"title":"Debugging the Tests","titles":["Unit Testing"]},"2947":{"title":"Full Integration Tests","titles":["Unit Testing"]},"2948":{"title":"Keycode String","titles":[]},"2949":{"title":"Tracing Variables","titles":[]}},"dirtCount":0,"index":[["ąžerty",{"2":{"2887":1}}],["ąƚɂɻɣɉʣ",{"2":{"2762":2}}],["µs",{"2":{"2872":1}}],["↓",{"2":{"2795":3}}],["└──",{"2":{"2600":3}}],["└row1",{"2":{"2466":3}}],["├──",{"2":{"2600":4}}],["¥",{"2":{"2547":1}}],["✔6",{"2":{"2510":1}}],["✔5",{"2":{"2510":4}}],["✔4",{"2":{"2510":2}}],["✔3",{"2":{"2510":4}}],["✔2",{"2":{"2510":3}}],["✔",{"2":{"2510":447}}],["✔️",{"2":{"347":1,"723":12,"1192":4,"1211":1,"1212":1,"2262":2,"2692":10,"2704":6}}],["€",{"2":{"2474":1}}],["┌─┘3",{"2":{"2466":2}}],["┌─┤1",{"2":{"2466":2}}],["┌─┤0",{"2":{"2466":2}}],["─────┴────────┘",{"2":{"2466":8}}],["│",{"2":{"2466":25,"2600":2}}],["│└row0",{"2":{"2466":3}}],["ಠ",{"2":{"2330":2}}],["🇺🇦",{"2":{"2330":1}}],["🎉👍",{"2":{"346":1,"609":1}}],["🤣",{"2":{"2330":1}}],["≤",{"2":{"2330":4}}],["æ",{"2":{"2330":2}}],["å",{"2":{"2330":2,"2884":1}}],["ツ",{"2":{"2329":1}}],["ћ",{"2":{"2329":1}}],["□",{"2":{"1702":25}}],["■",{"2":{"1702":15}}],["ñ",{"2":{"1593":1}}],["⇒",{"2":{"1538":3,"1539":3}}],["\\tmod",{"2":{"1776":1}}],["\\t~0",{"2":{"1776":1}}],["\\tkc",{"2":{"1776":2}}],["\\tko",{"2":{"1776":2}}],["\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tkc",{"2":{"1776":4}}],["\\t\\tmod",{"2":{"1776":1}}],["\\t\\treturn",{"2":{"1663":1}}],["\\tif",{"2":{"1663":1}}],["\\t",{"2":{"1492":1,"1663":1,"1774":1,"1776":6,"1777":2}}],["\\t12",{"2":{"1492":1}}],["\\t24",{"2":{"1492":1}}],["\\t36",{"2":{"1492":1}}],["✅",{"2":{"1423":1,"2262":1}}],["^ge^s^s^w^c",{"2":{"2302":1}}],["^3+0",{"2":{"1968":1}}],["^=",{"2":{"1417":1}}],["^",{"2":{"1409":1,"1986":1,"2013":1,"2466":1,"2510":1,"2534":1,"2542":1,"2555":1}}],["ひらがな",{"2":{"1358":1}}],["変換",{"2":{"1358":1}}],["無変換",{"2":{"1358":1}}],["ç",{"0":{"1355":1}}],["²",{"2":{"690":1}}],["¹",{"2":{"690":1,"2662":1}}],["être",{"2":{"618":1}}],["¯",{"2":{"492":2}}],["☐",{"2":{"492":1}}],["¬",{"2":{"492":2}}],["☒",{"2":{"463":1,"492":1,"2448":2}}],["ψ",{"2":{"429":9,"447":1,"448":5,"449":5,"450":5,"452":2,"453":2,"454":3,"455":1,"456":4,"463":1,"473":1,"474":1,"476":1,"482":1,"483":1,"492":1,"2432":5,"2448":1,"2584":1,"2714":17,"2852":2}}],["\`action",{"2":{"2318":1}}],["\`all\`",{"2":{"454":1}}],["\`layer",{"2":{"2318":2}}],["\`lalt\`",{"2":{"2318":1}}],["\`length\`",{"2":{"2057":1}}],["\`led",{"2":{"1850":1}}],["\`tapping",{"2":{"2317":1}}],["\`finished\`",{"2":{"2318":2}}],["\`ff\`",{"2":{"2317":2}}],["\`f\`",{"2":{"2317":1}}],["\`buffer\`",{"2":{"2317":1}}],["\`reset\`",{"2":{"2318":2}}],["\`rgb",{"2":{"2088":1}}],["\`raw",{"2":{"2057":1}}],["\`data\`",{"2":{"2057":1}}],["\`develop\`",{"2":{"379":1}}],["\`oled",{"2":{"1851":1,"2090":1}}],["\`offset\`",{"2":{"524":1}}],["\`esc\`",{"2":{"2317":1}}],["\`effect",{"2":{"1851":1,"2090":1}}],["\`encoder",{"2":{"307":2}}],["\`set",{"2":{"1794":1}}],["\`some",{"2":{"1613":1}}],["\`start\`",{"2":{"524":1}}],["\`kc",{"2":{"1431":1}}],["\`qk",{"2":{"684":1,"1431":1}}],["\`qmk",{"2":{"456":1}}],["\`cd\`",{"2":{"448":1,"449":1,"450":1,"2432":1}}],["\`master\`",{"2":{"379":1,"2748":3}}],["\`",{"0":{"1360":1},"2":{"353":1,"1613":1,"1671":1,"1673":1,"1674":1,"1777":3,"1794":1,"1851":1,"2090":1,"2318":7,"2510":1,"2519":1,"2526":2,"2544":1,"2552":2,"2557":3,"2558":3,"2678":1,"2782":12}}],["❌",{"2":{"347":1,"723":6,"1423":3}}],["⭕",{"2":{"347":1,"723":4}}],["😃",{"2":{"2410":1,"2850":1}}],["💩",{"2":{"2330":1}}],["🐍",{"2":{"2329":1}}],["👍🎉",{"2":{"346":1,"609":1}}],["😉",{"2":{"123":1}}],["→",{"2":{"176":3,"710":1,"711":2,"712":1,"2331":2}}],["麦田",{"2":{"160":1}}],["|0",{"2":{"2794":1}}],["|ent|",{"2":{"2794":1}}],["|3",{"2":{"2794":1}}],["|2",{"2":{"2794":1}}],["|1",{"2":{"2794":1}}],["|6",{"2":{"2794":1}}],["|5",{"2":{"2794":1}}],["|4",{"2":{"2794":1}}],["|9",{"2":{"2794":1}}],["|8",{"2":{"2794":1}}],["|7",{"2":{"2794":1}}],["|nlk|",{"2":{"2794":1}}],["|ing",{"2":{"2048":1}}],["|mod",{"2":{"1788":1,"2561":5,"2928":1}}],["|=",{"2":{"1533":2,"1992":1,"2041":2}}],["||",{"2":{"1431":1,"1533":1,"1612":1,"2075":1,"2317":2,"2318":1,"2381":9,"2709":1,"2911":1,"2926":1,"2927":1}}],["|kc",{"2":{"681":3}}],["|long",{"2":{"681":1}}],["|",{"2":{"116":1,"426":2,"488":1,"681":4,"729":1,"768":4,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1194":20,"1197":32,"1200":32,"1219":2,"1316":1,"1318":1,"1364":2,"1409":18,"1422":1,"1433":26,"1436":13,"1472":2,"1538":19,"1702":9,"1741":2,"1779":3,"1852":1,"1953":1,"1954":1,"2038":4,"2041":1,"2043":8,"2074":1,"2091":1,"2381":1,"2410":2,"2466":28,"2468":6,"2502":6,"2510":2,"2534":1,"2544":2,"2547":1,"2555":1,"2557":8,"2558":14,"2575":1,"2599":1,"2623":1,"2625":1,"2626":1,"2651":1,"2794":24,"2795":11,"2918":72,"2919":48,"2920":24,"2923":1,"2925":24,"2928":22}}],["5+",{"2":{"2038":2}}],["5=64",{"2":{"1954":1}}],["59",{"2":{"1686":1}}],["58s",{"2":{"2502":1}}],["587968d6cbc2b0e1c7147540872f2a67e59ca18b",{"2":{"2410":1}}],["58",{"2":{"1686":1,"1968":1}}],["54",{"2":{"1686":1}}],["536",{"2":{"2762":1}}],["535",{"2":{"2241":1}}],["53",{"2":{"1686":1,"1968":1}}],["51",{"2":{"1686":1,"1925":1,"1968":1,"2527":1,"2775":1}}],["512",{"2":{"759":1,"1952":1,"2289":1}}],["56",{"2":{"1527":1,"1686":1,"1968":1,"2615":1}}],["5625",{"2":{"588":1}}],["575",{"2":{"1742":3}}],["57",{"2":{"1686":1,"2410":1}}],["577ch",{"2":{"1376":1}}],["577c",{"2":{"1376":1}}],["57600",{"2":{"1207":1,"1272":1}}],["5kb",{"2":{"2893":1}}],["5kro",{"2":{"1356":1}}],["5kω",{"2":{"1197":1}}],["5u",{"2":{"1329":1}}],["55",{"2":{"859":1,"1686":1}}],["55k",{"2":{"859":1}}],["5v",{"2":{"685":1,"713":2,"1296":1,"1297":3,"1298":2,"1679":1,"1739":1,"2261":1,"2280":3,"2484":1,"2487":2,"2499":2,"2669":1,"2689":1,"2690":2,"2691":3,"2693":1}}],["5rows",{"2":{"311":1}}],["52583",{"2":{"1378":1}}],["525",{"2":{"749":1}}],["52",{"2":{"181":2,"1686":1,"2775":1}}],["5291",{"2":{"114":1}}],["5",{"0":{"600":1,"2307":1,"2318":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"176":1,"188":1,"191":1,"199":3,"211":2,"222":2,"249":1,"266":1,"308":1,"317":1,"375":1,"377":1,"412":2,"551":1,"555":1,"558":1,"561":3,"570":1,"589":2,"657":1,"688":1,"690":4,"749":1,"860":2,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":2,"1129":2,"1162":1,"1163":2,"1207":1,"1248":3,"1299":2,"1412":1,"1422":1,"1423":1,"1444":1,"1457":1,"1470":1,"1492":1,"1527":1,"1593":1,"1598":1,"1625":2,"1648":2,"1684":2,"1685":1,"1686":1,"1702":1,"1720":1,"1722":1,"1741":2,"1744":3,"1788":1,"1835":1,"1837":1,"1846":1,"1852":1,"1925":31,"1930":1,"1933":2,"1936":1,"1953":2,"1968":1,"1971":1,"1974":1,"1980":1,"2016":1,"2018":3,"2070":1,"2079":1,"2082":1,"2091":1,"2096":3,"2183":3,"2187":1,"2207":1,"2252":1,"2275":1,"2277":3,"2296":1,"2301":1,"2303":4,"2304":1,"2309":1,"2322":2,"2377":1,"2379":2,"2385":1,"2387":1,"2392":1,"2410":3,"2494":1,"2510":9,"2516":1,"2520":3,"2527":31,"2528":2,"2536":3,"2542":2,"2547":2,"2550":2,"2563":1,"2650":1,"2658":1,"2728":1,"2737":1,"2762":2,"2763":2,"2778":2,"2781":3,"2795":2,"2796":1,"2800":2,"2854":1,"2861":1,"2871":2,"2872":2,"2878":2,"2879":1,"2880":1,"2893":1,"2926":3,"2928":1,"2936":1}}],["50",{"2":{"764":1,"1292":1,"1503":1,"1612":1,"1686":26,"1949":1,"1971":2,"1983":2,"2086":1,"2187":3,"2315":4,"2862":2,"2911":1,"2912":6}}],["5000",{"2":{"1598":1,"1936":1,"1982":1,"2217":1,"2650":1,"2861":1,"2879":1}}],["500",{"2":{"561":2,"564":1,"656":2,"859":2,"1444":1,"1518":1,"1966":1,"1978":1,"1981":1,"2191":4,"2275":1,"2277":1,"2882":2}}],["500ms",{"2":{"176":1,"1786":1,"2277":1}}],["50ms",{"2":{"149":1,"1608":1,"2912":1}}],["5050",{"0":{"1966":1},"2":{"118":1,"1966":2}}],["5x7",{"2":{"143":2,"253":2}}],["5x8",{"2":{"143":4,"1697":2}}],["5x6",{"2":{"143":4,"222":1}}],["5x13",{"2":{"114":1,"249":1}}],["5ms",{"2":{"119":2,"1953":1,"2531":2,"2912":3}}],["$5",{"2":{"2835":1}}],["$path",{"2":{"2628":1}}],["$home",{"2":{"2605":1,"2606":1,"2628":4}}],["$qmk",{"2":{"422":3}}],["$id",{"2":{"308":1}}],["$",{"2":{"111":1,"176":1,"354":1,"376":2,"377":1,"379":3,"429":11,"447":1,"448":1,"450":1,"452":1,"453":1,"454":1,"455":1,"463":2,"473":1,"474":1,"476":1,"482":1,"483":1,"573":1,"589":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1315":4,"1464":2,"1471":2,"1472":2,"2382":1,"2432":1,"2448":2,"2455":9,"2510":1,"2534":1,"2542":1,"2555":1,"2599":5,"2605":1,"2606":1,"2634":2,"2637":2,"2639":1,"2683":2,"2714":1,"2745":1,"2762":5}}],["≈10ms",{"2":{"94":1}}],["⚠",{"2":{"70":23,"450":1,"492":1,"2432":1}}],[">line",{"2":{"2764":1}}],[">width",{"2":{"2764":2}}],[">>>>>>>",{"2":{"2634":1}}],[">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",{"2":{"2615":2}}],[">>>",{"2":{"2615":3}}],[">0",{"2":{"2558":1}}],[">1",{"2":{"2558":2}}],[">|",{"2":{"2468":4}}],[">height",{"2":{"2764":2}}],[">held",{"2":{"2316":5}}],[">hold",{"2":{"2316":2}}],[">interrupted",{"2":{"2316":1,"2317":3,"2318":1}}],[">init",{"2":{"1850":1,"2088":1}}],[">pressed",{"2":{"2316":1,"2317":3,"2318":1,"2319":1}}],[">m2s",{"2":{"2277":1}}],[">s2m",{"2":{"2277":1}}],[">state",{"2":{"324":2}}],[">keys",{"2":{"1612":2}}],[">keycode",{"2":{"1612":5}}],[">=",{"2":{"1533":2,"1612":1,"2095":1,"2314":1,"2315":1,"2381":10,"2792":1}}],[">finished",{"2":{"325":1,"2316":1}}],[">count",{"2":{"325":1,"2314":1,"2315":2,"2316":2,"2317":3,"2318":2,"2319":2}}],[">tap",{"2":{"324":1,"325":1,"1329":2,"1533":2,"1795":1,"2316":3,"2578":1,"2579":3,"2580":1}}],[">user",{"2":{"324":1,"325":1,"2316":1}}],[">event",{"2":{"307":2,"324":1,"325":1,"593":6,"631":2,"647":1,"1329":4,"1366":1,"1367":1,"1417":4,"1420":1,"1431":1,"1446":4,"1447":2,"1452":1,"1462":1,"1471":2,"1472":1,"1743":5,"1795":1,"1924":1,"1962":2,"1992":1,"1993":1,"1994":1,"2013":1,"2076":2,"2077":3,"2079":2,"2225":1,"2316":1,"2578":1,"2579":3,"2580":2,"2768":2,"2912":4}}],[">",{"2":{"70":1,"430":1,"473":2,"474":2,"476":1,"482":1,"483":2,"647":1,"1331":6,"1409":1,"1420":1,"1431":2,"1462":1,"1467":1,"1527":10,"1983":1,"2076":1,"2077":1,"2095":2,"2096":1,"2277":1,"2381":2,"2410":1,"2558":3,"2597":2,"2750":1,"2764":6}}],["~1",{"2":{"2893":1}}],["~175ms",{"2":{"2319":1}}],["~400",{"2":{"2889":1}}],["~5",{"2":{"2667":1}}],["~$6",{"2":{"2664":1,"2895":1}}],["~$",{"2":{"2410":4}}],["~mouse",{"2":{"1992":1}}],["~mod",{"2":{"1533":1,"2074":1}}],["~0x05",{"2":{"2784":1}}],["~0x04",{"2":{"2783":1}}],["~0x03",{"2":{"2782":1}}],["~0x02",{"2":{"2781":1,"2789":1}}],["~0x01",{"2":{"2780":1,"2788":1}}],["~0x00",{"2":{"2779":1,"2787":1}}],["~0",{"2":{"1776":4}}],["~",{"2":{"70":3,"429":5,"448":1,"449":1,"450":1,"509":2,"510":1,"589":1,"1671":1,"1673":1,"1777":1,"1779":2,"2041":1,"2043":3,"2074":1,"2432":1,"2510":2,"2534":1,"2544":2,"2555":1,"2597":5,"2598":1,"2599":1,"2600":1,"2637":2}}],["~22k",{"2":{"2667":1}}],["~2",{"2":{"6":1,"10":1}}],["7da94ac5",{"2":{"2410":1}}],["7kohm",{"2":{"2267":1}}],["7kω",{"2":{"2264":1}}],["7k",{"2":{"2038":3}}],["7k25",{"2":{"1162":1}}],["7=256",{"2":{"1954":1}}],["79",{"2":{"1686":1,"1968":1}}],["7949",{"2":{"65":1}}],["78",{"2":{"1686":1}}],["777",{"2":{"2762":1}}],["77",{"2":{"1686":1}}],["73",{"2":{"1686":1,"1968":1}}],["73b4",{"2":{"377":1}}],["7172",{"2":{"2508":1}}],["71",{"2":{"1527":1,"1686":1}}],["7114",{"2":{"32":1}}],["74",{"2":{"1527":1,"1686":1}}],["72mhz",{"2":{"2689":1}}],["72",{"2":{"724":1,"1158":1,"1686":1,"1845":1,"2081":1}}],["7capi8w",{"2":{"683":1}}],["7u",{"2":{"266":1,"766":1}}],["7000h",{"2":{"1376":2}}],["70",{"2":{"521":1,"615":1,"1332":1,"1686":1,"1968":1,"2615":1}}],["70keys",{"2":{"241":2}}],["70ec",{"2":{"114":1,"149":1}}],["76",{"2":{"512":1,"514":1,"1527":1,"1686":1,"1925":1,"1968":1,"2527":1}}],["76k",{"2":{"211":1}}],["7648",{"2":{"49":1}}],["750",{"2":{"2386":1,"2499":1}}],["750ms",{"2":{"1686":1}}],["75000",{"2":{"1207":1}}],["75kbps",{"2":{"570":1,"2275":1}}],["75",{"2":{"211":2,"266":1,"308":1,"444":1,"1527":1,"1686":1}}],["7521",{"2":{"134":1}}],["7splus",{"2":{"143":2}}],["7skb",{"2":{"143":2,"211":1}}],["7",{"2":{"70":1,"76":1,"149":1,"172":1,"173":1,"211":1,"236":1,"375":1,"413":1,"566":1,"589":2,"615":1,"688":1,"690":4,"717":1,"762":2,"768":1,"770":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"794":1,"803":1,"829":1,"858":1,"890":1,"922":1,"924":1,"957":1,"958":1,"991":1,"992":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1162":1,"1198":2,"1201":2,"1217":1,"1269":4,"1357":2,"1492":1,"1527":1,"1625":2,"1684":1,"1685":1,"1686":1,"1702":1,"1720":1,"1722":1,"1741":2,"1744":3,"1925":5,"1933":2,"1953":2,"1954":3,"1968":1,"1971":1,"1990":1,"2018":3,"2185":1,"2207":1,"2296":1,"2301":1,"2303":5,"2386":1,"2388":1,"2409":1,"2508":1,"2510":8,"2520":3,"2527":5,"2528":2,"2536":3,"2542":2,"2547":4,"2550":2,"2563":1,"2634":1,"2764":3,"2781":1,"2795":2,"2796":1}}],["x=0",{"2":{"2764":1}}],["xbps",{"2":{"2593":1}}],["xvx",{"2":{"2567":1}}],["xl",{"2":{"2508":1}}],["x7f",{"2":{"2222":1}}],["x0",{"2":{"2764":1}}],["x0a",{"2":{"2222":1}}],["x09",{"2":{"2222":1}}],["x08",{"2":{"1702":1,"2222":1}}],["xmas",{"2":{"2181":1,"2532":1}}],["xml",{"0":{"348":1}}],["x+",{"2":{"1971":1}}],["x^2",{"2":{"1968":1}}],["xor",{"2":{"1428":2}}],["xorg",{"2":{"1361":1}}],["xo87",{"2":{"211":1}}],["xfer",{"2":{"1358":1}}],["x1b",{"2":{"2222":1}}],["x1",{"2":{"328":1,"2764":1}}],["xzy",{"2":{"249":1}}],["xprintf",{"2":{"2418":3}}],["xpm",{"2":{"386":3,"387":2,"388":1,"390":1}}],["xpack",{"0":{"386":1},"2":{"387":1,"390":1,"393":1}}],["xp",{"2":{"219":1}}],["xtap",{"2":{"2317":5}}],["xtx",{"2":{"211":1}}],["xt",{"2":{"211":4}}],["xt8x",{"2":{"211":1}}],["xt60",{"2":{"211":2}}],["x2",{"2":{"211":1,"2912":4}}],["x26",{"2":{"105":8,"272":4,"324":4,"325":6,"509":2,"647":2,"1367":1,"1419":4,"1420":2,"1472":2,"1517":5,"1533":6,"1591":1,"1612":3,"1641":6,"1774":2,"1776":6,"1777":2,"1924":2,"1947":1,"1983":2,"1992":1,"1993":2,"2041":1,"2043":5,"2069":2,"2074":2,"2075":1,"2085":11,"2095":7,"2189":3,"2277":2,"2286":1,"2305":2,"2316":9,"2381":25,"2578":2,"2579":6,"2580":2,"2652":8,"2911":3,"2923":1,"2924":4,"2949":1}}],["xs60",{"2":{"197":2,"199":1}}],["xy",{"2":{"176":1}}],["xicolinguada",{"2":{"2425":1}}],["xip",{"2":{"174":1,"191":1}}],["xiudi",{"2":{"102":9,"114":1,"211":1,"253":2,"266":1,"285":1}}],["xap",{"2":{"160":1,"199":1,"211":1}}],["x86",{"2":{"158":1,"2506":2}}],["xealous",{"2":{"294":1}}],["xealousbrown",{"2":{"114":1}}],["xelus22",{"2":{"58":1}}],["xelus",{"0":{"58":1},"2":{"58":4,"197":2,"211":8,"277":1}}],["xd96",{"2":{"102":2}}],["xd87",{"2":{"102":2}}],["xd84pro",{"2":{"102":2}}],["xd84",{"2":{"102":2}}],["xd68",{"2":{"102":2}}],["xd60",{"2":{"93":1,"102":2}}],["xd004",{"2":{"102":2,"211":1,"253":2}}],["xd002",{"2":{"102":2,"114":1,"285":1}}],["xd75",{"2":{"64":1,"102":2,"266":1}}],["x3c",{"2":{"55":2,"105":8,"354":2,"376":1,"379":1,"429":11,"430":13,"434":4,"436":1,"452":2,"453":2,"463":1,"475":3,"497":6,"498":4,"505":2,"524":2,"623":1,"717":2,"718":2,"721":2,"762":2,"764":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1299":2,"1303":2,"1405":1,"1413":1,"1431":1,"1433":3,"1435":2,"1436":6,"1467":5,"1472":1,"1533":1,"1535":1,"1556":2,"1557":2,"1591":2,"1612":1,"1641":8,"1779":2,"1788":2,"1850":2,"1947":1,"1948":1,"1983":1,"2001":3,"2006":1,"2041":8,"2042":1,"2043":32,"2048":2,"2077":1,"2088":2,"2095":5,"2096":1,"2278":2,"2286":1,"2381":10,"2382":2,"2383":4,"2386":3,"2388":2,"2389":2,"2390":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2407":2,"2464":4,"2502":4,"2508":1,"2558":1,"2559":2,"2583":1,"2584":3,"2587":2,"2607":2,"2608":3,"2614":2,"2616":2,"2629":1,"2634":14,"2637":3,"2639":2,"2750":1,"2764":6,"2776":1,"2788":6,"2926":1,"2928":2}}],["x",{"0":{"108":1,"1386":1,"1659":1,"2767":1,"2769":1},"1":{"1660":1,"2768":1,"2770":1},"2":{"49":1,"70":1,"108":1,"113":2,"114":5,"211":3,"219":1,"222":1,"249":2,"266":2,"279":1,"294":1,"308":1,"317":1,"375":1,"376":1,"421":5,"532":1,"589":2,"1384":1,"1409":1,"1428":4,"1448":5,"1450":1,"1605":2,"1612":1,"1625":1,"1647":2,"1651":2,"1659":1,"1660":2,"1702":24,"1740":1,"1742":1,"1743":2,"1766":1,"1846":6,"1852":2,"1934":1,"1935":1,"1953":2,"1954":2,"1968":5,"1970":3,"1971":2,"1974":2,"1975":4,"1983":4,"1985":5,"1987":5,"1990":3,"1993":2,"1994":3,"1996":2,"1997":2,"2014":1,"2047":1,"2050":2,"2082":6,"2091":2,"2181":1,"2199":2,"2222":4,"2226":1,"2280":1,"2290":2,"2313":1,"2317":18,"2318":1,"2332":1,"2380":2,"2417":1,"2421":3,"2455":2,"2466":21,"2510":3,"2532":1,"2540":1,"2542":3,"2563":1,"2579":4,"2694":1,"2721":16,"2763":3,"2764":13,"2767":3,"2769":3,"2794":1,"2795":19,"2796":17,"2800":8,"2869":3,"2871":2,"2878":2,"2918":2,"2926":1,"2949":1}}],["xxxx",{"2":{"2183":1,"2746":4}}],["xxxxxxx",{"2":{"2510":1,"2551":1,"2561":2,"2794":1}}],["xxxxx",{"2":{"1667":1}}],["xxx",{"2":{"201":2,"283":7,"627":1,"764":4,"1423":1,"1781":1,"1782":1,"1788":2,"2794":5,"2928":2}}],["xx",{"2":{"28":1}}],["jdk",{"2":{"2656":1}}],["jre",{"2":{"2656":1}}],["jris75",{"2":{"2567":1}}],["jx",{"2":{"2417":1}}],["jerky",{"2":{"1936":1,"2040":1}}],["jels60v2",{"2":{"222":1}}],["jellybean",{"2":{"114":1,"199":1,"222":1,"285":1,"2085":3,"2894":1}}],["j8",{"2":{"1472":1}}],["jkl",{"2":{"1622":1}}],["jk1",{"2":{"328":1}}],["jk",{"2":{"266":1,"1605":4,"1622":1}}],["jkeys",{"2":{"168":1,"211":2}}],["jm60",{"2":{"241":2}}],["jig",{"2":{"2299":1}}],["jittery",{"2":{"1986":1}}],["jian",{"2":{"236":1}}],["jis",{"0":{"1358":1},"2":{"222":1,"1346":2,"1358":1,"2547":9}}],["jisplit89",{"2":{"143":2}}],["jb",{"2":{"211":1}}],["jf",{"2":{"211":1,"249":1}}],["jsmith",{"2":{"2714":2}}],["jsjson",{"2":{"1968":1}}],["js",{"2":{"386":1,"1744":32,"1749":1,"1968":1,"2057":1,"2520":32}}],["jscotto",{"2":{"199":1,"217":5,"222":1}}],["json\`",{"2":{"456":1}}],["json>",{"2":{"429":1,"430":1,"2608":1}}],["json2c",{"0":{"438":1},"2":{"211":2,"438":1,"2584":1}}],["jsons",{"2":{"114":1}}],["jsonschema",{"2":{"76":1,"114":1,"160":1,"191":2,"222":1,"344":1,"666":1,"668":2,"2851":1}}],["json",{"0":{"120":1,"262":1,"375":1,"436":1,"604":1,"667":1,"1441":1,"1630":1,"2453":2,"2598":1,"2716":1,"2795":1,"2851":1},"1":{"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"1442":1,"1443":1,"1444":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2852":1,"2853":1,"2854":1,"2855":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2861":1,"2862":1,"2863":1,"2864":1,"2865":1,"2866":1,"2867":1,"2868":1,"2869":1,"2870":1,"2871":1,"2872":1,"2873":1,"2874":1,"2875":1,"2876":1,"2877":1,"2878":1,"2879":1,"2880":1,"2881":1,"2882":1,"2883":1},"2":{"70":32,"73":1,"75":1,"76":6,"109":1,"110":1,"111":1,"112":1,"114":5,"120":3,"132":2,"134":3,"141":1,"149":1,"169":3,"176":2,"184":4,"189":1,"191":8,"198":1,"199":5,"201":5,"211":22,"213":2,"222":1,"224":2,"232":1,"236":10,"238":1,"249":27,"262":2,"266":30,"277":3,"285":1,"293":1,"303":2,"305":1,"306":1,"308":1,"314":1,"315":1,"328":1,"333":4,"338":2,"354":1,"369":2,"374":1,"375":1,"376":5,"379":4,"429":3,"433":4,"436":6,"437":2,"439":1,"443":2,"447":4,"448":3,"449":3,"450":2,"452":2,"453":2,"463":4,"500":2,"555":3,"578":1,"580":1,"581":3,"584":1,"585":1,"586":2,"588":3,"589":2,"592":1,"600":5,"604":2,"664":1,"665":3,"666":1,"667":1,"668":1,"669":4,"670":3,"672":1,"673":1,"681":1,"1289":1,"1390":1,"1403":2,"1405":1,"1407":1,"1433":1,"1441":2,"1627":3,"1628":4,"1630":4,"2039":1,"2044":3,"2057":1,"2397":1,"2414":1,"2432":3,"2450":6,"2451":2,"2453":3,"2454":1,"2567":16,"2584":2,"2598":2,"2599":5,"2600":1,"2601":1,"2602":4,"2603":1,"2608":2,"2678":2,"2682":2,"2683":2,"2716":1,"2717":2,"2718":1,"2719":2,"2720":1,"2721":1,"2746":9,"2794":1,"2795":10,"2796":3,"2797":2,"2800":2,"2851":4,"2854":1,"2869":2,"2871":1,"2872":1,"2877":1,"2878":1,"2885":2,"2908":1,"2926":2,"2937":1}}],["jtagen",{"2":{"1383":1}}],["jtag",{"0":{"1383":1},"2":{"160":1,"1383":4,"2498":4,"2503":1,"2818":1}}],["jnao",{"2":{"143":2}}],["jolly",{"2":{"2508":1}}],["jonasfasler",{"2":{"2425":1}}],["jones",{"2":{"222":1}}],["john",{"2":{"1523":3,"1605":2,"2714":1}}],["joint",{"2":{"2427":3,"2428":1}}],["joints",{"2":{"2425":2,"2428":1,"2434":3}}],["join",{"2":{"544":1,"668":1,"672":1,"2427":1,"2504":1}}],["job",{"0":{"370":1,"371":1,"372":1,"376":1,"582":1,"583":1,"584":1},"2":{"367":3,"369":1,"370":2,"376":1,"377":1,"378":2,"580":2,"581":5,"582":1,"583":1,"584":1,"588":1,"1537":1,"2601":1}}],["jobs>",{"2":{"429":2,"430":2}}],["jobs",{"2":{"366":4,"429":3,"455":1,"469":1,"579":1,"585":1,"2599":1}}],["joshajohnson",{"2":{"241":2}}],["jopr",{"2":{"191":1}}],["journey",{"2":{"133":1}}],["joysticks",{"2":{"49":1,"118":2,"277":1,"1968":1}}],["joystick",{"0":{"1738":1,"1746":1,"1748":1,"1750":1,"1751":1,"1753":1,"1755":1,"1758":1,"1760":1,"1968":1,"2520":1},"1":{"1739":1,"1740":1,"1741":1,"1742":1,"1743":1,"1744":1,"1745":1,"1746":1,"1747":2,"1748":1,"1749":2,"1750":1,"1751":1,"1752":2,"1753":1,"1754":2,"1755":1,"1756":2,"1757":2,"1758":1,"1759":2,"1760":1,"1761":2},"2":{"49":7,"63":1,"114":1,"118":1,"149":1,"160":2,"183":5,"188":1,"191":4,"199":1,"231":3,"236":1,"249":3,"285":1,"1738":2,"1739":2,"1740":3,"1741":11,"1742":7,"1743":8,"1744":32,"1746":1,"1747":2,"1750":1,"1968":21,"2520":33,"2940":1}}],["james",{"2":{"2941":1}}],["japan",{"2":{"1346":1}}],["japanese",{"2":{"176":1,"1358":1,"2885":1,"2887":3}}],["jacks",{"2":{"2263":1,"2265":1}}],["jackhumbert",{"2":{"684":1,"1527":1}}],["jack",{"2":{"684":1,"1343":3,"1463":3,"1468":1}}],["jacky",{"2":{"67":3,"72":1,"207":4,"211":2}}],["jan",{"2":{"522":1,"523":1,"524":2}}],["jane",{"2":{"122":2,"134":1}}],["java",{"0":{"391":1,"2656":1},"2":{"391":1,"2057":1,"2653":1,"2656":3}}],["jazz",{"2":{"294":2}}],["jay60",{"2":{"211":1}}],["jaykeeb",{"2":{"207":1,"217":1}}],["ja",{"2":{"199":1}}],["jj50",{"2":{"102":2,"253":2,"266":1}}],["jj4x4",{"2":{"102":2}}],["jj40",{"2":{"102":2,"253":2,"266":1}}],["j",{"2":{"65":1,"211":1,"219":2,"249":2,"266":2,"375":1,"422":1,"429":4,"430":2,"455":2,"469":2,"589":2,"1605":1,"1622":2,"2068":1,"2317":1,"2330":4,"2332":2,"2510":3,"2540":2,"2542":3,"2563":1,"2925":3}}],["jurisdiction",{"2":{"2727":1}}],["judged",{"2":{"2272":2}}],["judgment",{"2":{"414":1}}],["jumbo",{"0":{"1953":1}}],["jumpers",{"2":{"2508":1}}],["jumper",{"2":{"2393":2,"2395":2,"2398":2,"2483":1}}],["jumping",{"2":{"651":1,"1589":1}}],["jump",{"2":{"65":1,"74":1,"149":2,"176":1,"191":1,"616":1,"651":1,"652":3,"653":2,"654":2,"1490":1,"1589":1,"1591":2,"1625":2,"1948":2,"2068":1,"2678":2,"2685":2}}],["jumps",{"2":{"49":1}}],["jun",{"2":{"1343":1,"2412":1}}],["junco",{"2":{"253":2}}],["junk",{"2":{"149":1,"211":1}}],["justifiable",{"2":{"2744":1}}],["justification",{"2":{"2744":3,"2746":1}}],["just60",{"2":{"143":2}}],["just",{"0":{"610":1,"1320":1},"2":{"5":1,"45":1,"116":1,"173":1,"188":2,"233":1,"245":1,"320":1,"393":1,"455":1,"545":1,"600":1,"605":1,"763":1,"1247":2,"1268":1,"1315":1,"1338":1,"1354":1,"1383":1,"1417":1,"1422":2,"1425":1,"1427":1,"1439":1,"1440":1,"1446":2,"1450":1,"1470":1,"1472":1,"1473":1,"1477":1,"1485":1,"1492":1,"1517":1,"1524":1,"1528":1,"1534":1,"1537":1,"1589":1,"1605":1,"1609":1,"1612":1,"1616":1,"1618":1,"1619":1,"1663":1,"1681":1,"1779":1,"1786":2,"1787":1,"1802":2,"1923":1,"1953":1,"1984":1,"1985":2,"2097":1,"2190":1,"2260":1,"2265":2,"2274":1,"2308":1,"2309":2,"2317":1,"2320":1,"2325":1,"2375":1,"2417":1,"2423":1,"2429":2,"2434":1,"2504":1,"2561":1,"2567":14,"2569":1,"2595":1,"2603":1,"2613":1,"2616":1,"2676":1,"2678":1,"2714":1,"2733":1,"2748":1,"2763":1,"2769":1,"2795":1,"2912":1,"2913":1,"2930":1,"2943":1,"2944":1,"2949":1}}],["jpg",{"2":{"684":1,"2746":1}}],["jps",{"2":{"36":1}}],["jp",{"0":{"35":1},"1":{"36":1},"2":{"35":1,"36":4}}],["9a",{"2":{"2238":1,"2240":1,"2242":1,"2244":1}}],["95",{"2":{"1686":1,"2587":1,"2788":2}}],["9501",{"2":{"51":1}}],["9b5c",{"2":{"376":1,"377":1}}],["91",{"2":{"1686":1}}],["910",{"2":{"211":1}}],["9126",{"2":{"199":1}}],["9174",{"2":{"48":1}}],["9171",{"2":{"32":1}}],["9",{"2":{"114":1,"152":1,"211":1,"249":1,"266":3,"308":1,"328":1,"375":1,"413":1,"422":2,"514":1,"589":2,"688":1,"690":4,"863":1,"928":1,"962":1,"996":1,"1132":1,"1396":1,"1433":1,"1434":1,"1492":1,"1514":1,"1527":1,"1593":1,"1625":3,"1686":1,"1695":1,"1744":3,"1925":3,"1968":1,"2018":3,"2183":1,"2189":3,"2191":2,"2246":1,"2259":4,"2260":3,"2291":1,"2296":1,"2301":1,"2303":4,"2410":4,"2510":8,"2520":3,"2527":3,"2536":3,"2542":2,"2547":4,"2550":2,"2563":1,"2775":1,"2795":2,"2796":1,"2882":2}}],["967",{"2":{"2239":1}}],["9600",{"2":{"1272":1,"2298":1}}],["9603",{"2":{"74":1}}],["96",{"2":{"211":1,"954":1,"1686":1,"1845":1,"1968":1}}],["9657",{"2":{"114":1}}],["92",{"2":{"1686":1,"1968":1}}],["9207",{"2":{"713":1,"2499":1}}],["9203",{"2":{"713":1,"2499":1}}],["9205",{"2":{"114":1,"713":1,"2499":1}}],["9284",{"2":{"50":1}}],["97",{"2":{"1333":1,"1686":1}}],["9700",{"2":{"64":1}}],["9703",{"2":{"63":1}}],["9738",{"2":{"49":1}}],["93",{"2":{"1686":1}}],["9335",{"2":{"92":1}}],["9308",{"2":{"51":1}}],["9356",{"2":{"50":1}}],["9355",{"2":{"50":1}}],["9310",{"2":{"50":1}}],["9315",{"2":{"50":1}}],["9318",{"2":{"46":1}}],["98",{"2":{"1686":1}}],["9800",{"0":{"1967":1},"2":{"118":1,"1967":2}}],["9824",{"2":{"114":1}}],["9826",{"2":{"63":1}}],["9842",{"2":{"93":1}}],["9832",{"2":{"50":1}}],["9864",{"2":{"49":1}}],["9856",{"2":{"49":1}}],["94",{"2":{"1686":1}}],["9404",{"2":{"114":1}}],["9485",{"2":{"73":1}}],["9487",{"2":{"49":1}}],["9471",{"2":{"49":1}}],["99",{"2":{"422":1,"1686":1,"2291":1,"2882":1,"2936":1}}],["9973",{"2":{"270":1,"277":1}}],["9952",{"2":{"65":1}}],["9940",{"2":{"63":1}}],["9949",{"2":{"49":1}}],["9905",{"2":{"51":1}}],["9964",{"2":{"49":1}}],["9987",{"2":{"48":1}}],["90°",{"2":{"1413":1,"1741":1}}],["906",{"2":{"1162":2}}],["9054",{"2":{"50":1}}],["9055",{"2":{"50":1}}],["9023",{"2":{"50":1}}],["9020",{"2":{"49":1}}],["9001",{"2":{"1612":1}}],["900",{"2":{"1026":2,"1060":2,"1285":1,"1742":2}}],["900k",{"2":{"647":1}}],["9005",{"2":{"50":1}}],["900000",{"2":{"647":1}}],["9000",{"2":{"23":1,"45":1}}],["9019",{"2":{"26":1}}],["90",{"0":{"1953":1},"2":{"8":1,"1493":1,"1686":1,"1952":2,"1953":3,"1954":2,"1972":2,"1985":2,"1987":2,"2051":2,"2410":1,"2764":1}}],["zxcvm",{"2":{"2887":3}}],["zuoya",{"2":{"2567":1}}],["zr",{"2":{"2301":3}}],["zdst",{"2":{"2295":1}}],["zle12864b",{"2":{"2283":1}}],["zone",{"2":{"2640":1}}],["zolentech",{"2":{"2283":1}}],["zoom",{"2":{"1971":9}}],["zodiark",{"2":{"222":1}}],["z0",{"2":{"1433":1,"1434":1}}],["zshrc",{"2":{"509":1}}],["zsh",{"2":{"507":1,"509":1}}],["zsa",{"0":{"5":1},"2":{"74":1,"241":1,"249":1,"270":1,"277":3}}],["zk3mod",{"2":{"249":1}}],["z34",{"2":{"241":2}}],["z12",{"2":{"241":2}}],["z150",{"2":{"37":2,"159":2,"160":1}}],["zadig",{"0":{"709":1},"1":{"710":1,"711":1,"712":1,"713":1},"2":{"240":3,"709":1,"710":2,"711":3,"712":1,"713":2,"1318":2}}],["zwag75",{"2":{"211":1}}],["z70ultra",{"2":{"211":1,"253":2}}],["ztboards",{"2":{"211":2}}],["zip",{"2":{"367":2}}],["zigotica",{"2":{"241":2,"249":1}}],["zicodia",{"2":{"211":1}}],["zinc",{"0":{"32":1},"2":{"32":1,"143":6}}],["zenkaku",{"2":{"2547":1}}],["zeal60",{"2":{"1591":1}}],["zed65",{"2":{"222":1,"249":1}}],["zeus",{"2":{"211":1}}],["zeroes",{"2":{"211":1,"1990":1}}],["zero",{"2":{"195":1,"222":1,"236":1,"429":1,"720":2,"750":1,"1379":1,"1507":1,"1538":2,"1539":1,"1992":1,"2014":1,"2303":1,"2379":1,"2652":1,"2685":1,"2777":1,"2779":1,"2785":1,"2787":2,"2889":1}}],["zcar",{"2":{"176":1}}],["zvecr",{"2":{"173":1,"182":1,"266":1}}],["z",{"0":{"2767":1,"2769":1},"1":{"2768":1,"2770":1},"2":{"152":1,"191":1,"249":1,"257":1,"258":1,"259":2,"266":1,"277":1,"375":1,"589":2,"797":1,"1428":4,"1508":1,"1513":1,"1527":1,"1538":1,"1593":1,"1600":1,"1602":1,"1622":1,"1625":1,"1679":1,"1691":1,"1740":1,"1766":1,"1787":1,"1974":1,"2065":7,"2069":5,"2074":1,"2246":2,"2296":1,"2301":1,"2317":1,"2365":1,"2472":2,"2510":3,"2542":3,"2563":1,"2767":3,"2769":5,"2775":2,"2922":1,"2923":1,"2927":1,"2930":1}}],["zygomorph",{"2":{"93":1}}],["+size",{"2":{"2746":1}}],["++col",{"2":{"2095":1}}],["++row",{"2":{"2095":1}}],["++i",{"2":{"1535":1,"2764":2}}],["+6",{"2":{"1925":1,"2527":1}}],["+4",{"2":{"1925":1,"2527":1}}],["+3",{"2":{"1925":1,"2527":1,"2668":1}}],["+2",{"2":{"1925":1,"2527":1}}],["+1",{"2":{"1925":1,"2527":1}}],["+127",{"2":{"1740":1}}],["+7",{"2":{"1490":1}}],["+5v",{"2":{"2495":1}}],["+5",{"2":{"1490":1,"1925":1,"2527":1}}],["+=",{"2":{"234":9,"572":4,"573":1,"623":1,"725":2,"801":3,"827":3,"856":3,"888":3,"920":3,"955":3,"989":3,"1023":3,"1057":3,"1091":3,"1125":3,"1159":3,"1215":3,"1332":2,"1414":1,"1420":1,"1464":3,"1471":1,"1472":1,"1612":1,"1622":1,"1633":1,"1994":2,"2455":2,"2597":1,"2760":16,"2763":13,"2764":2,"2912":1}}],["+cleanup",{"2":{"199":1}}],["+",{"0":{"1366":2,"1367":1},"2":{"25":1,"99":2,"134":2,"149":1,"176":3,"199":2,"222":1,"236":1,"332":1,"337":1,"354":2,"411":1,"641":1,"716":9,"1194":8,"1197":8,"1198":1,"1200":8,"1201":1,"1311":4,"1409":18,"1431":1,"1433":15,"1434":1,"1436":8,"1503":1,"1532":1,"1533":3,"1538":42,"1594":1,"1595":4,"1747":1,"1766":4,"1767":4,"1774":2,"1776":11,"1777":4,"1779":2,"1784":1,"1786":1,"1787":1,"1802":1,"1852":1,"1983":3,"1990":4,"2038":4,"2059":2,"2065":6,"2068":16,"2069":9,"2085":2,"2091":1,"2186":2,"2246":1,"2277":1,"2318":1,"2344":1,"2410":2,"2466":8,"2468":20,"2510":2,"2534":1,"2544":1,"2550":1,"2555":1,"2558":2,"2682":8,"2760":22,"2775":1,"2779":1,"2781":1,"2787":1,"2788":1,"2794":10,"2795":2,"2796":1,"2800":4,"2871":1,"2878":1,"2910":1,"2911":2,"2912":1,"2918":36,"2919":24,"2920":12,"2925":16,"2928":8,"2930":1}}],["8bpp",{"2":{"2781":2}}],["8bit",{"2":{"166":1,"1473":1,"2892":1}}],["8px",{"2":{"2764":2}}],["8t",{"2":{"2252":1}}],["86",{"2":{"1686":1}}],["8x",{"2":{"1684":1,"1685":1}}],["8xv1",{"2":{"211":1}}],["81",{"2":{"1162":1,"1686":1,"1924":1}}],["8192",{"2":{"749":1,"750":1,"756":1}}],["8k4",{"2":{"921":1,"924":2,"956":1,"958":2,"990":1,"992":2}}],["8k",{"2":{"860":2,"925":2,"959":2,"993":2,"1027":2,"1058":2,"1061":4,"1095":2,"1129":2,"1163":2}}],["8mhz",{"2":{"328":1,"2499":2}}],["87",{"2":{"1686":1}}],["87h",{"2":{"266":1}}],["8777",{"2":{"49":1}}],["8778",{"2":{"49":1}}],["80x160",{"2":{"2760":1,"2763":1}}],["80k",{"2":{"859":1}}],["8000",{"2":{"1996":1,"1997":1}}],["800",{"2":{"658":1,"1967":1,"1978":1,"1983":2}}],["800ms",{"2":{"658":1}}],["800khz",{"2":{"285":1}}],["80",{"2":{"222":1,"564":2,"859":1,"1455":1,"1686":16,"1924":3,"1935":1,"2763":3,"2764":2,"2854":2}}],["8l",{"2":{"211":1}}],["8|16|32",{"2":{"166":1}}],["88",{"2":{"1686":1}}],["88200u",{"2":{"719":1}}],["8893",{"2":{"65":1}}],["8830",{"2":{"37":1}}],["8200",{"2":{"1967":1}}],["82",{"2":{"1686":1,"1924":1,"1968":1}}],["8237",{"2":{"589":1}}],["8236",{"2":{"377":1}}],["8291",{"2":{"49":1}}],["8256",{"2":{"49":1}}],["8269",{"2":{"24":1}}],["8",{"2":{"49":1,"74":1,"111":1,"114":1,"166":1,"199":1,"211":2,"285":1,"354":2,"375":1,"413":1,"565":1,"589":2,"660":1,"688":1,"690":4,"696":2,"717":1,"719":2,"755":1,"759":1,"781":1,"787":1,"860":2,"893":1,"924":1,"925":2,"958":1,"959":2,"992":1,"993":2,"1026":1,"1027":2,"1030":1,"1060":1,"1061":2,"1064":1,"1095":2,"1098":1,"1129":2,"1163":2,"1166":1,"1197":1,"1252":1,"1300":1,"1303":1,"1413":1,"1417":1,"1420":1,"1423":1,"1492":1,"1527":2,"1532":2,"1538":1,"1609":3,"1625":2,"1685":1,"1686":1,"1702":3,"1720":1,"1722":1,"1740":2,"1741":1,"1742":1,"1744":3,"1747":1,"1788":1,"1852":1,"1925":3,"1926":1,"1930":1,"1933":2,"1934":2,"1935":2,"1936":3,"1939":1,"1947":2,"1949":1,"1952":2,"1953":3,"1954":2,"1968":1,"1971":1,"1990":2,"1994":2,"2018":3,"2043":1,"2091":1,"2182":1,"2186":2,"2189":2,"2207":1,"2238":1,"2242":1,"2251":1,"2252":1,"2286":2,"2288":1,"2289":2,"2296":1,"2298":1,"2301":1,"2303":4,"2332":1,"2344":1,"2409":1,"2498":1,"2507":1,"2508":3,"2510":8,"2520":3,"2527":3,"2528":2,"2536":3,"2540":1,"2542":2,"2547":4,"2550":2,"2557":2,"2562":1,"2563":1,"2576":1,"2656":1,"2761":1,"2762":3,"2764":3,"2777":1,"2783":2,"2785":1,"2795":2,"2796":1,"2803":1,"2871":1,"2877":2,"2878":1,"2892":1,"2928":1}}],["85",{"2":{"1527":1,"1686":1,"1968":1,"2187":1}}],["8591",{"2":{"114":2,"1605":1}}],["8532",{"2":{"94":1}}],["8537",{"2":{"37":1}}],["8564",{"2":{"63":1}}],["8582",{"2":{"35":1}}],["84",{"2":{"1686":1}}],["8422",{"2":{"133":1,"134":1}}],["8403",{"2":{"93":1}}],["8441",{"2":{"49":1}}],["8499",{"2":{"37":1}}],["8412",{"2":{"37":1}}],["8472",{"2":{"33":1}}],["8484",{"2":{"27":1}}],["89",{"2":{"1686":1,"1925":1,"1968":1,"2527":1}}],["8936",{"2":{"460":1,"617":1}}],["8979",{"2":{"38":1}}],["8977",{"2":{"38":1}}],["8974",{"2":{"28":1}}],["8968",{"2":{"38":1}}],["8959",{"2":{"38":1}}],["8958",{"2":{"38":1}}],["8957",{"2":{"38":1}}],["8954",{"2":{"38":1}}],["8903",{"2":{"28":1}}],["83",{"2":{"251":1,"1686":1,"1924":1}}],["8327",{"2":{"50":1}}],["8321",{"2":{"21":1}}],["8318",{"2":{"49":1}}],["8348",{"2":{"22":1}}],["vqge7ok",{"2":{"2746":2}}],["vbat",{"2":{"2666":1}}],["vbus",{"2":{"1396":2,"1397":1,"2278":1,"2279":4,"2280":2,"2667":1}}],["v60",{"2":{"2449":1}}],["v=vkrppahlisy",{"2":{"2187":1}}],["vlc",{"2":{"2510":1}}],["vl",{"2":{"2508":1}}],["vl9",{"2":{"1925":1,"2527":1}}],["vl8",{"2":{"1925":1,"2527":1}}],["vl7",{"2":{"1925":1,"2527":1}}],["vl6",{"2":{"1925":1,"2527":1}}],["vl5",{"2":{"1925":1,"2527":1}}],["vl4",{"2":{"1925":1,"2527":1}}],["vl3",{"2":{"1925":1,"2527":1}}],["vl2",{"2":{"1925":1,"2527":1}}],["vl10",{"2":{"1925":1,"2527":1}}],["vl1",{"2":{"1925":1,"2527":1}}],["vl0",{"2":{"1925":1,"2527":1}}],["vlk",{"2":{"188":1,"191":1}}],["vddio",{"2":{"1217":1}}],["vdd",{"2":{"1194":1,"1197":1,"1200":1}}],["vcs",{"2":{"2593":2}}],["vcc",{"2":{"685":1,"805":1,"829":1,"831":1,"858":1,"890":1,"922":8,"957":8,"991":1,"1025":1,"1059":1,"1093":8,"1127":8,"1161":8,"1297":2,"1681":1,"1838":1,"2208":1,"2265":1,"2266":1,"2267":1,"2393":1,"2395":1,"2398":1,"2431":1,"2485":2,"2487":2,"2489":2,"2491":2,"2493":2,"2495":1,"2690":1,"2691":2}}],["vcl65",{"2":{"211":1}}],["vcl",{"2":{"211":1}}],["vk",{"2":{"188":1,"191":1,"2210":1}}],["vulnerability",{"2":{"312":1}}],["vuhopkep",{"2":{"149":1}}],["vusb",{"2":{"50":1,"134":1,"149":1,"249":1,"266":1,"564":1,"1319":1,"2934":1}}],["vn66",{"2":{"143":2}}],["vpath",{"2":{"114":2,"191":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1622":1}}],["vss",{"2":{"1313":1}}],["vscode",{"2":{"199":1,"308":1,"513":1,"2592":1,"2678":1,"2683":3}}],["vs",{"0":{"627":2,"2674":1,"2677":1,"2681":1,"2682":1},"1":{"2675":1,"2676":1,"2677":1,"2678":2,"2679":1,"2680":1,"2682":1},"2":{"114":1,"199":1,"516":1,"1410":5,"2261":1,"2645":1,"2673":3,"2676":1,"2677":1,"2679":1,"2680":4,"2682":4,"2683":5,"2711":1,"2906":1,"2927":1}}],["vowel",{"2":{"2301":4}}],["vol",{"2":{"1776":4,"2510":2,"2549":2}}],["vold",{"2":{"209":1,"589":2,"1667":1,"1668":1,"1776":1,"2068":1,"2510":1,"2549":1}}],["volunteers",{"2":{"2566":2}}],["volunteer",{"2":{"2566":1}}],["volu",{"2":{"209":1,"589":2,"1667":1,"1668":1,"1776":1,"2068":1,"2510":1,"2549":1}}],["volume",{"0":{"1488":1},"2":{"191":1,"685":1,"719":1,"1488":2,"1668":2,"1767":1,"1776":3,"2068":1,"2510":7,"2548":4,"2549":2,"2889":1}}],["voltages",{"2":{"685":1}}],["voltage",{"2":{"199":1,"308":1,"693":1,"744":8,"749":1,"1296":2,"1409":1,"1684":1,"1685":1,"1697":1,"1738":2,"2278":1,"2279":1,"2503":1,"2858":5}}],["volatile",{"2":{"114":1,"308":1,"2297":1}}],["volcano660",{"2":{"102":2,"114":1,"211":1}}],["voilà",{"2":{"1496":1}}],["voice",{"2":{"231":1,"1489":3,"1495":2,"1685":1,"2512":2}}],["voices",{"0":{"1489":1},"2":{"112":1,"561":2,"1489":4,"1495":2,"2512":2,"2856":2}}],["void",{"0":{"647":2,"701":2,"702":1,"704":1,"706":2,"707":1,"733":1,"735":1,"737":1,"739":1,"768":2,"809":2,"810":1,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"824":2,"825":2,"835":1,"837":1,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"851":1,"853":1,"867":1,"869":1,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"883":1,"885":1,"897":1,"899":1,"901":1,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"915":1,"917":1,"932":1,"934":1,"936":1,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"950":1,"952":1,"966":1,"968":1,"970":1,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"984":1,"986":1,"1000":1,"1002":1,"1004":1,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1020":1,"1034":1,"1036":1,"1038":1,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1054":1,"1068":1,"1070":1,"1072":1,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1086":1,"1088":1,"1102":1,"1104":1,"1106":1,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1120":1,"1122":1,"1136":1,"1138":1,"1140":1,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1154":1,"1156":1,"1170":1,"1172":1,"1174":1,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1188":1,"1190":1,"1223":1,"1225":1,"1227":1,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1243":1,"1250":2,"1257":1,"1265":2,"1271":1,"1273":1,"1275":1,"1277":1,"1279":1,"1281":1,"1305":2,"1306":1,"1308":1,"1310":2,"1560":2,"1561":2,"1562":2,"1563":2,"1564":2,"1565":2,"1566":1,"1568":1,"1570":1,"1572":2,"1573":2,"1574":2,"1575":1,"1582":1,"1585":1,"1587":1,"1652":2,"1653":2,"1654":2,"1655":2,"1656":2,"1657":2,"1658":2,"1659":1,"1704":1,"1706":2,"1707":2,"1708":1,"1710":2,"1711":1,"1713":1,"1715":1,"1717":1,"1719":1,"1721":1,"1723":1,"1725":1,"1730":1,"1732":1,"1734":1,"1736":1,"1750":2,"1751":1,"1753":1,"1758":1,"1760":1,"1807":2,"1808":2,"1812":2,"1813":2,"1814":1,"1818":1,"1819":1,"1857":2,"1858":2,"1859":2,"1860":2,"1861":2,"1862":2,"1863":1,"1865":1,"1867":1,"1869":1,"1871":1,"1873":2,"1874":2,"1875":2,"1876":2,"1877":1,"1879":2,"1880":2,"1881":2,"1882":2,"1883":1,"1885":2,"1886":2,"1887":2,"1888":2,"1889":1,"1891":1,"1893":1,"1895":1,"1897":1,"1899":2,"1900":2,"1901":2,"1902":2,"1903":1,"1905":2,"1906":1,"1908":1,"1910":1,"2020":2,"2021":1,"2023":1,"2025":1,"2027":1,"2032":2,"2033":1,"2035":1,"2061":1,"2063":1,"2099":2,"2100":2,"2101":2,"2102":2,"2103":2,"2104":2,"2105":1,"2107":1,"2109":1,"2111":1,"2113":1,"2115":2,"2116":2,"2117":2,"2118":2,"2119":1,"2121":2,"2122":2,"2123":2,"2124":2,"2125":1,"2127":2,"2128":2,"2129":2,"2130":2,"2131":1,"2133":2,"2134":2,"2135":2,"2136":2,"2137":1,"2139":2,"2140":2,"2141":2,"2142":2,"2143":1,"2145":1,"2147":1,"2149":1,"2151":1,"2153":2,"2154":2,"2155":2,"2156":2,"2157":1,"2159":1,"2161":1,"2163":1,"2165":2,"2166":1,"2168":1,"2170":1,"2228":1,"2230":1,"2232":1,"2234":1,"2236":1,"2238":1,"2240":1,"2242":1,"2244":1,"2246":2,"2334":1,"2336":1,"2338":2,"2339":2,"2340":1,"2342":1,"2344":2,"2345":2,"2346":2,"2347":1,"2349":1,"2357":1,"2359":2,"2360":1,"2362":1,"2367":1,"2369":2,"2370":2,"2371":2},"1":{"703":1,"705":1,"708":1,"734":1,"736":1,"738":1,"740":1,"811":1,"813":1,"815":1,"817":1,"819":1,"821":1,"823":1,"836":1,"838":1,"840":1,"842":1,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"868":1,"870":1,"872":1,"874":1,"876":1,"878":1,"880":1,"882":1,"884":1,"886":1,"898":1,"900":1,"902":1,"904":1,"906":1,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"933":1,"935":1,"937":1,"939":1,"941":1,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"967":1,"969":1,"971":1,"973":1,"975":1,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"1001":1,"1003":1,"1005":1,"1007":1,"1009":1,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":1,"1039":1,"1041":1,"1043":1,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1069":1,"1071":1,"1073":1,"1075":1,"1077":1,"1079":1,"1081":1,"1083":1,"1085":1,"1087":1,"1089":1,"1103":1,"1105":1,"1107":1,"1109":1,"1111":1,"1113":1,"1115":1,"1117":1,"1119":1,"1121":1,"1123":1,"1137":1,"1139":1,"1141":1,"1143":1,"1145":1,"1147":1,"1149":1,"1151":1,"1153":1,"1155":1,"1157":1,"1171":1,"1173":1,"1175":1,"1177":1,"1179":1,"1181":1,"1183":1,"1185":1,"1187":1,"1189":1,"1191":1,"1224":1,"1226":1,"1228":1,"1230":1,"1232":1,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1258":1,"1272":1,"1274":1,"1276":1,"1278":1,"1280":1,"1282":1,"1307":1,"1309":1,"1567":1,"1569":1,"1571":1,"1576":1,"1583":1,"1660":1,"1705":1,"1709":1,"1712":1,"1714":1,"1716":1,"1718":1,"1720":1,"1722":1,"1724":1,"1726":1,"1731":1,"1733":1,"1735":1,"1737":1,"1752":1,"1754":1,"1759":1,"1761":1,"1864":1,"1866":1,"1868":1,"1870":1,"1872":1,"1878":1,"1884":1,"1890":1,"1892":1,"1894":1,"1896":1,"1898":1,"1904":1,"1907":1,"1909":1,"1911":1,"2022":1,"2024":1,"2026":1,"2028":1,"2034":1,"2036":1,"2062":1,"2064":1,"2106":1,"2108":1,"2110":1,"2112":1,"2114":1,"2120":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2150":1,"2152":1,"2158":1,"2162":1,"2164":1,"2167":1,"2169":1,"2171":1,"2229":1,"2231":1,"2233":1,"2235":1,"2237":1,"2239":1,"2241":1,"2243":1,"2245":1,"2335":1,"2337":1,"2341":1,"2343":1,"2348":1,"2350":1,"2358":1,"2361":1,"2363":1,"2368":1,"2372":2},"2":{"31":1,"34":1,"46":2,"90":2,"105":3,"125":3,"185":3,"196":1,"222":1,"249":3,"354":1,"512":1,"624":1,"625":13,"635":1,"636":4,"638":4,"639":5,"641":1,"642":4,"645":4,"646":4,"647":14,"649":3,"650":8,"656":1,"745":2,"768":1,"799":1,"1322":1,"1417":2,"1418":8,"1419":10,"1420":4,"1447":1,"1462":2,"1480":1,"1487":2,"1517":2,"1551":4,"1591":1,"1605":1,"1618":1,"1701":1,"1702":2,"1779":2,"1781":2,"1798":3,"1804":4,"1850":1,"1855":1,"1945":1,"1946":3,"1947":2,"1948":1,"1954":35,"1957":1,"1983":2,"1984":3,"1988":6,"1997":1,"2001":2,"2008":16,"2009":5,"2015":1,"2046":13,"2079":2,"2088":1,"2094":1,"2097":1,"2189":2,"2191":3,"2254":31,"2277":10,"2284":2,"2285":2,"2286":2,"2287":2,"2290":33,"2314":1,"2315":6,"2316":5,"2317":8,"2318":8,"2319":8,"2380":1,"2456":4,"2593":1,"2652":2,"2685":1,"2686":1,"2687":1,"2756":2,"2757":1,"2763":5,"2764":22,"2940":12,"2949":1}}],["v13",{"2":{"339":1}}],["v1",{"0":{"369":1,"370":1,"371":1,"372":1},"2":{"86":1,"102":4,"114":1,"143":7,"149":2,"168":2,"197":10,"199":1,"207":1,"222":1,"226":1,"236":2,"253":2,"277":2,"300":1,"311":1,"339":1,"376":2,"377":1,"379":4,"713":1,"1395":3,"2683":1,"2778":5,"2779":7,"2780":3,"2781":7,"2782":3,"2783":6,"2784":3,"2787":7,"2788":7,"2789":3}}],["v19",{"2":{"49":1}}],["v2j37s7",{"2":{"2508":1}}],["v2",{"2":{"56":2,"86":2,"114":1,"122":1,"143":2,"149":2,"168":2,"191":1,"197":4,"199":2,"207":2,"211":2,"217":4,"222":2,"236":2,"249":3,"277":1,"308":1,"311":24,"328":1,"339":1,"389":1,"1395":2,"2505":1}}],["v2017",{"2":{"181":2}}],["v20",{"2":{"49":1}}],["v32a",{"2":{"197":2}}],["v3x",{"2":{"191":1}}],["v3",{"0":{"56":1},"2":{"56":2,"114":1,"149":2,"191":1,"211":1,"277":1,"2599":3}}],["vtor",{"2":{"50":1}}],["vault",{"2":{"333":1}}],["vault35",{"2":{"249":1}}],["vast",{"2":{"166":1,"1766":1}}],["vagrant",{"2":{"113":1,"114":2,"211":1}}],["vaguettelite",{"2":{"86":2}}],["vanilla",{"2":{"2745":1}}],["vaneelaex",{"2":{"86":2}}],["vaneela",{"2":{"86":2}}],["vanana",{"2":{"86":4}}],["varying",{"2":{"2085":3,"2292":1}}],["vary",{"2":{"1409":1,"2506":1,"2910":1}}],["var",{"2":{"519":3,"1327":2}}],["var>=",{"2":{"429":1,"430":2}}],["varaible",{"2":{"176":1}}],["variety",{"2":{"1968":1,"2705":1}}],["varies",{"2":{"1682":1,"1967":1,"1974":1,"1983":2,"1985":1,"2936":1}}],["variants",{"2":{"145":1,"211":1,"1286":1,"1287":1,"1288":1,"2330":1,"2386":1,"2499":2,"2567":1,"2569":1,"2839":1}}],["variant",{"2":{"114":1,"157":1,"222":3,"308":2,"393":1,"1957":2,"1958":1,"2042":1,"2386":1,"2652":1,"2746":1,"2763":1}}],["variations",{"2":{"236":1,"243":1,"331":1,"1288":1}}],["variation",{"0":{"55":1},"2":{"176":1,"1791":1}}],["variable",{"2":{"50":1,"65":1,"133":1,"134":3,"236":1,"285":1,"332":1,"339":1,"455":1,"469":1,"489":1,"496":1,"519":1,"532":1,"559":1,"669":2,"1367":6,"1410":1,"1434":2,"1464":1,"1521":2,"1539":1,"1665":1,"1994":1,"2008":1,"2009":1,"2057":2,"2189":1,"2295":1,"2310":1,"2407":1,"2417":1,"2418":2,"2434":1,"2513":2,"2628":1,"2683":2,"2686":1,"2780":1,"2782":1,"2784":1,"2789":1,"2790":1,"2791":1,"2912":1,"2949":11}}],["variables",{"0":{"2949":1},"2":{"49":2,"211":2,"302":1,"470":1,"555":1,"560":1,"670":1,"1367":1,"1417":1,"1428":1,"1438":1,"1502":1,"1994":1,"2312":1,"2418":2,"2685":1,"2686":1,"2691":1,"2949":5}}],["various",{"2":{"50":2,"114":1,"149":3,"160":1,"191":2,"211":1,"277":2,"303":1,"338":1,"393":1,"404":1,"529":1,"555":2,"624":1,"1321":1,"1323":1,"1409":1,"1410":1,"1422":1,"1497":1,"1502":1,"1686":1,"1782":1,"2185":1,"2214":1,"2378":1,"2737":1,"2808":1,"2827":1,"2841":1,"2846":1,"2940":1}}],["vars",{"2":{"49":2,"2417":1}}],["valu",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2532":1,"2533":1}}],["valued",{"2":{"1417":1}}],["valueerror",{"2":{"524":2}}],["value>",{"2":{"429":1,"430":2,"475":1,"497":2}}],["values",{"0":{"476":1,"477":1,"482":1,"496":1,"497":1,"498":1,"533":1,"1517":1},"1":{"478":1,"479":1,"480":1,"481":1},"2":{"65":1,"70":1,"83":1,"182":1,"186":2,"198":2,"199":1,"231":1,"236":1,"249":1,"339":1,"433":1,"476":1,"477":1,"491":2,"497":1,"498":1,"533":2,"561":1,"665":1,"668":1,"671":1,"672":1,"673":1,"685":1,"706":1,"719":1,"729":1,"739":1,"743":1,"749":1,"750":1,"751":1,"764":1,"824":1,"825":1,"851":1,"853":1,"859":1,"860":4,"863":1,"883":1,"885":1,"893":1,"915":1,"917":1,"924":1,"925":4,"928":1,"950":1,"952":1,"958":1,"959":4,"962":1,"984":1,"986":1,"992":1,"993":4,"996":1,"1018":1,"1020":1,"1026":1,"1027":4,"1030":1,"1052":1,"1054":1,"1060":1,"1061":4,"1064":1,"1086":1,"1088":1,"1095":4,"1098":1,"1120":1,"1122":1,"1129":4,"1132":1,"1154":1,"1156":1,"1162":1,"1163":4,"1166":1,"1188":1,"1190":1,"1197":1,"1198":1,"1201":1,"1219":1,"1241":1,"1243":1,"1272":1,"1289":1,"1310":1,"1322":1,"1410":1,"1416":1,"1417":4,"1488":1,"1493":2,"1517":2,"1556":1,"1558":1,"1590":1,"1741":1,"1742":4,"1747":1,"1788":2,"1846":2,"1923":2,"1926":2,"1939":2,"1949":1,"1952":2,"1953":1,"1954":1,"1957":1,"1962":1,"1970":1,"1974":2,"1975":1,"1978":1,"1983":2,"1990":1,"1994":7,"2039":1,"2082":2,"2085":1,"2185":2,"2211":1,"2275":1,"2290":1,"2300":1,"2303":2,"2320":1,"2322":1,"2327":1,"2379":3,"2418":1,"2466":1,"2497":1,"2503":1,"2685":1,"2696":1,"2697":1,"2698":1,"2699":1,"2702":1,"2714":1,"2717":2,"2746":3,"2761":1,"2764":1,"2776":1,"2777":1,"2781":2,"2785":1,"2787":1,"2788":1,"2800":1,"2928":2}}],["value",{"0":{"671":1,"771":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"816":2,"818":2,"822":1,"843":2,"845":2,"849":1,"875":2,"877":2,"881":1,"907":2,"909":2,"913":1,"942":2,"944":2,"948":1,"976":2,"978":2,"982":1,"1010":2,"1012":2,"1016":1,"1044":2,"1046":2,"1050":1,"1078":2,"1080":2,"1084":1,"1112":2,"1114":2,"1118":1,"1146":2,"1148":2,"1152":1,"1180":2,"1182":2,"1186":1,"1233":2,"1235":2,"1239":1,"1253":1,"1256":1,"1258":1,"1261":1,"1264":1,"1276":1,"1282":1,"1503":1,"1569":1,"1571":1,"1576":1,"1583":1,"1724":1,"1729":1,"1757":1,"1758":1,"1760":1,"1811":1,"1817":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1864":1,"1865":1,"1867":1,"1878":1,"1884":1,"1894":1,"1904":1,"1907":1,"1909":1,"1911":1,"1914":1,"1917":1,"2031":1,"2034":1,"2106":1,"2120":1,"2126":1,"2132":1,"2138":1,"2148":1,"2158":1,"2164":1,"2167":1,"2169":1,"2171":1,"2174":1,"2177":1,"2335":1,"2353":1,"2356":1,"2361":1,"2363":1,"2366":1,"2368":1},"1":{"817":2,"819":2,"823":1,"844":2,"846":2,"850":1,"876":2,"878":2,"882":1,"908":2,"910":2,"914":1,"943":2,"945":2,"949":1,"977":2,"979":2,"983":1,"1011":2,"1013":2,"1017":1,"1045":2,"1047":2,"1051":1,"1079":2,"1081":2,"1085":1,"1113":2,"1115":2,"1119":1,"1147":2,"1149":2,"1153":1,"1181":2,"1183":2,"1187":1,"1234":2,"1236":2,"1240":1,"1759":1,"1761":1,"1866":1,"1868":1},"2":{"25":1,"45":2,"49":1,"63":1,"70":13,"90":1,"176":1,"191":1,"195":1,"222":1,"236":1,"317":1,"378":1,"412":5,"433":19,"472":1,"474":2,"477":1,"482":1,"484":1,"485":1,"489":3,"496":1,"512":1,"561":1,"564":2,"565":3,"569":1,"588":3,"589":1,"647":1,"656":1,"657":4,"660":2,"667":1,"668":1,"669":5,"671":2,"672":1,"693":4,"694":4,"696":1,"703":3,"705":3,"712":1,"719":7,"720":2,"726":2,"736":3,"738":3,"745":1,"748":2,"749":2,"750":1,"751":1,"754":1,"755":1,"759":1,"762":1,"810":1,"811":1,"813":3,"815":3,"817":2,"819":2,"823":1,"829":1,"837":1,"838":1,"840":3,"842":3,"844":2,"846":2,"850":1,"857":3,"858":1,"861":1,"869":1,"870":1,"872":3,"874":3,"876":2,"878":2,"880":3,"882":2,"890":1,"899":1,"900":1,"904":3,"906":3,"908":2,"910":2,"914":1,"921":3,"922":1,"923":1,"926":1,"934":1,"935":1,"939":3,"941":3,"943":2,"945":2,"949":1,"956":3,"957":1,"960":1,"968":1,"969":1,"973":3,"975":3,"977":2,"979":2,"983":1,"990":3,"991":1,"994":1,"1002":1,"1003":1,"1007":3,"1009":3,"1011":2,"1013":2,"1017":1,"1024":4,"1025":1,"1028":1,"1036":1,"1037":1,"1041":3,"1043":3,"1045":2,"1047":2,"1051":1,"1058":4,"1059":1,"1062":1,"1070":1,"1071":1,"1075":3,"1077":3,"1079":2,"1081":2,"1083":3,"1085":2,"1092":4,"1093":1,"1094":1,"1096":1,"1104":1,"1105":1,"1109":3,"1111":3,"1113":2,"1115":2,"1117":3,"1119":2,"1126":4,"1127":1,"1128":1,"1130":1,"1138":1,"1139":1,"1143":3,"1145":3,"1147":2,"1149":2,"1151":3,"1153":2,"1160":4,"1161":1,"1164":1,"1172":1,"1173":1,"1177":3,"1179":3,"1181":2,"1183":2,"1185":3,"1187":2,"1208":1,"1217":1,"1225":1,"1226":1,"1230":3,"1232":3,"1234":2,"1236":2,"1240":1,"1292":1,"1307":3,"1309":3,"1409":1,"1417":4,"1418":2,"1452":1,"1480":1,"1493":1,"1498":1,"1503":6,"1517":5,"1518":5,"1521":1,"1522":3,"1523":1,"1551":1,"1647":3,"1660":2,"1662":1,"1667":1,"1681":1,"1738":1,"1741":3,"1742":3,"1749":4,"1755":1,"1758":1,"1759":3,"1761":1,"1769":1,"1781":1,"1782":1,"1786":1,"1788":1,"1800":1,"1846":1,"1847":1,"1849":8,"1850":2,"1852":3,"1855":5,"1866":1,"1868":1,"1884":1,"1896":1,"1898":1,"1926":1,"1935":1,"1936":1,"1939":3,"1948":1,"1952":1,"1954":2,"1968":1,"1975":4,"1985":1,"1986":4,"1997":2,"2008":1,"2009":1,"2069":1,"2082":1,"2083":1,"2084":2,"2085":23,"2086":1,"2091":7,"2108":3,"2110":3,"2126":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2150":1,"2152":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2180":2,"2181":6,"2182":4,"2198":9,"2201":10,"2202":2,"2203":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2245":1,"2254":3,"2272":1,"2275":1,"2276":1,"2277":1,"2287":1,"2290":1,"2297":1,"2304":1,"2317":2,"2318":1,"2320":1,"2356":1,"2379":4,"2380":1,"2382":1,"2454":1,"2455":1,"2461":1,"2466":3,"2513":1,"2532":6,"2533":2,"2685":1,"2702":1,"2746":1,"2764":3,"2770":1,"2779":1,"2782":1,"2787":1,"2851":1,"2857":1,"2871":3,"2877":6,"2878":7,"2880":1,"2902":1,"2912":9,"2921":2,"2926":1,"2928":1,"2929":1,"2930":1}}],["vald",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2532":1,"2533":1}}],["valhalla",{"2":{"211":1}}],["valor",{"0":{"58":1},"2":{"58":3,"114":1,"211":1}}],["val",{"0":{"1879":2,"1880":1,"1881":1,"1882":1,"1883":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2201":1},"1":{"1884":1,"2138":1},"2":{"49":1,"160":1,"183":4,"191":1,"222":2,"565":1,"1418":3,"1544":1,"1743":8,"1849":3,"1852":2,"2085":9,"2091":2,"2096":2,"2182":4,"2193":2,"2201":4,"2204":2,"2454":4,"2764":11,"2871":2,"2877":1,"2878":2,"2894":3}}],["validating",{"2":{"2615":1}}],["validation",{"2":{"114":1,"199":2,"222":2,"236":1,"266":1,"273":1,"308":1,"369":1,"1407":1}}],["validated",{"2":{"723":1,"2557":1}}],["validate",{"2":{"76":1,"199":2,"211":1,"333":1,"411":1}}],["valid",{"2":{"49":1,"149":1,"199":2,"241":1,"253":1,"266":1,"270":1,"281":1,"433":1,"456":1,"657":1,"743":1,"754":1,"859":1,"860":2,"924":1,"925":2,"958":1,"959":2,"992":1,"993":2,"1026":1,"1027":2,"1060":1,"1061":2,"1095":2,"1129":2,"1162":1,"1163":2,"1289":1,"1320":1,"1389":1,"1407":1,"1419":2,"1420":1,"1532":1,"1547":1,"1730":1,"1971":1,"2039":1,"2185":2,"2297":1,"2449":1,"2453":1,"2471":1,"2509":1,"2558":1,"2559":1,"2744":4,"2746":4,"2762":2,"2781":1}}],["violates",{"2":{"2733":1}}],["violating",{"2":{"2569":2}}],["violation",{"2":{"2567":2,"2570":1,"2739":1}}],["violations",{"0":{"2566":1},"1":{"2567":1,"2568":1,"2569":1,"2570":1,"2571":1},"2":{"2566":1,"2567":1,"2570":1,"2571":2,"2726":1}}],["violin",{"2":{"1485":2,"1486":3,"1490":1}}],["virster",{"2":{"2298":1}}],["virtually",{"2":{"2711":1}}],["virtual",{"0":{"1743":1},"2":{"1362":1,"1647":1,"1738":1,"1742":3,"1743":3,"1749":1,"2294":2,"2298":1,"2386":1,"2760":1}}],["virtser",{"2":{"575":1}}],["vibrate",{"2":{"1685":1,"1687":1}}],["vibrator",{"2":{"1685":1}}],["vibrations",{"2":{"1684":1}}],["vibration",{"2":{"1684":1}}],["vim",{"2":{"1593":1,"1796":1,"2068":2}}],["vik",{"2":{"1398":1}}],["viktus",{"2":{"134":1,"159":3,"160":1,"211":3}}],["victim",{"2":{"621":1}}],["vice",{"2":{"194":1,"1422":1,"1661":1,"2069":2}}],["viewport",{"2":{"2763":2,"2764":7}}],["viewpoint",{"2":{"2573":1}}],["viewing",{"2":{"2683":1}}],["viewed",{"2":{"676":1,"2523":1}}],["views",{"2":{"368":1,"2269":1}}],["view",{"0":{"2468":1},"2":{"273":1,"353":1,"579":1,"580":1,"711":1,"712":1,"2468":1,"2564":1,"2583":1,"2629":1,"2659":1,"2678":1,"2683":2,"2734":1,"2819":1}}],["viendi",{"2":{"211":1}}],["viper",{"2":{"211":1}}],["visit",{"2":{"430":1,"2417":1,"2598":1,"2601":1,"2683":1}}],["visible",{"2":{"198":1,"379":1,"1290":1,"1699":2,"2737":1}}],["vision",{"2":{"114":1,"620":1}}],["visualize",{"2":{"2563":1}}],["visualizer",{"2":{"133":1,"134":1}}],["visual",{"0":{"2673":1,"2683":1},"2":{"132":1,"2673":1,"2676":1,"2683":1,"2796":2}}],["vitepress",{"2":{"339":1}}],["viterbi",{"2":{"45":1}}],["vitoni",{"2":{"149":1}}],["vitamins",{"2":{"114":1}}],["vintage",{"2":{"1354":1}}],["vinta",{"2":{"102":2,"217":2}}],["videos",{"2":{"2941":2}}],["video",{"2":{"2183":1,"2188":1,"2436":1,"2569":1,"2589":1,"2941":1,"2944":1}}],["videogames",{"2":{"1426":1}}],["vid>",{"2":{"434":1}}],["vid",{"0":{"1319":1},"1":{"1320":1},"2":{"70":1,"111":1,"169":1,"184":1,"249":2,"266":1,"317":2,"434":1,"561":1,"712":1,"713":1,"1319":1,"1356":1,"2569":1,"2717":3,"2746":1,"2882":1}}],["vial",{"2":{"2746":2}}],["via2json",{"0":{"447":1},"2":{"294":1,"447":2}}],["via",{"0":{"35":1,"265":2,"275":2,"312":1},"1":{"36":1},"2":{"35":1,"92":1,"114":7,"134":6,"149":2,"154":1,"160":1,"176":6,"191":2,"194":1,"199":5,"211":7,"218":1,"222":5,"234":1,"249":3,"265":8,"266":4,"268":4,"275":5,"277":8,"294":1,"308":1,"312":6,"317":1,"339":1,"447":3,"665":1,"681":1,"721":1,"748":1,"749":1,"750":1,"759":1,"762":1,"1195":1,"1198":1,"1201":1,"1348":3,"1393":2,"1410":1,"1416":1,"1446":1,"1590":1,"2052":1,"2211":1,"2300":1,"2375":2,"2388":1,"2393":2,"2394":2,"2395":2,"2398":2,"2400":1,"2402":1,"2404":1,"2418":1,"2432":1,"2466":1,"2567":18,"2568":1,"2569":1,"2570":1,"2710":1,"2728":1,"2745":3,"2746":7,"2940":1}}],["vect",{"2":{"2041":2,"2043":2}}],["vector",{"2":{"191":1,"211":1}}],["velu",{"2":{"1925":1,"2527":1}}],["veld",{"2":{"1925":1,"2527":1}}],["velocikey",{"0":{"2209":1},"1":{"2210":1,"2211":1},"2":{"236":1,"2209":1,"2210":5,"2211":2,"2940":1}}],["velocity",{"2":{"63":1,"1919":1,"1925":26,"1926":1,"1934":1,"2527":26}}],["vega",{"2":{"211":1}}],["ventilation",{"2":{"2421":1}}],["venus",{"2":{"114":1,"322":2,"328":1}}],["venv",{"2":{"114":1}}],["vendors",{"0":{"2567":1},"2":{"2566":2,"2567":3,"2568":6,"2569":2,"2570":2,"2571":2,"2733":1,"2746":4}}],["vendor",{"0":{"747":1,"2725":1,"2727":1,"2731":1},"1":{"748":1,"2726":1,"2727":1,"2728":1,"2729":1,"2730":1,"2731":1,"2732":1,"2733":1,"2734":1,"2735":1,"2736":1,"2737":1,"2738":1,"2739":1,"2740":1,"2741":1,"2742":1},"2":{"37":1,"43":1,"70":1,"86":1,"149":13,"160":2,"169":1,"184":1,"191":1,"199":1,"211":1,"236":1,"266":1,"277":1,"561":1,"713":1,"743":1,"746":1,"1198":2,"1201":2,"1289":1,"1292":1,"1319":1,"1332":1,"1393":2,"2039":1,"2044":1,"2057":2,"2059":2,"2414":1,"2499":1,"2566":3,"2567":2,"2568":4,"2569":1,"2570":5,"2571":1,"2725":1,"2727":2,"2729":1,"2731":2,"2737":1,"2739":1,"2742":1,"2745":3,"2746":4,"2858":1,"2864":2,"2875":1,"2880":1,"2882":1,"2883":2}}],["ve",{"2":{"83":1,"89":1,"105":2,"112":1,"158":1,"172":1,"243":1,"273":1,"331":1,"376":1,"521":1,"609":1,"665":1,"749":1,"764":1,"1248":1,"1269":1,"1417":1,"1424":1,"1431":1,"1446":1,"1448":4,"1472":1,"1473":1,"2048":1,"2410":1,"2430":1,"2434":1,"2447":2,"2574":1,"2609":1,"2611":1,"2612":1,"2620":1,"2632":1,"2636":1,"2640":1,"2680":1,"2683":1,"2748":1,"2764":2,"2765":1,"2796":1,"2890":1,"2895":1}}],["vertically",{"0":{"2800":1},"2":{"1992":1,"2428":1,"2797":1,"2800":2}}],["vertical",{"2":{"1939":1,"1968":1,"1976":1,"1977":1,"1986":1,"1990":1,"2764":1,"2800":1,"2869":1,"2871":1,"2878":1}}],["vertex",{"2":{"211":1,"2567":1}}],["verbose=true",{"2":{"2417":1}}],["verbose",{"2":{"599":1,"2417":5,"2762":2}}],["verbosity",{"2":{"211":1}}],["verification",{"2":{"2490":1,"2508":1,"2569":1}}],["verified",{"2":{"543":1,"1943":2,"2502":1,"2508":1,"2747":1}}],["verifying",{"2":{"2502":2}}],["verify",{"2":{"199":1,"712":1,"2639":1,"2663":1,"2740":1,"2746":1,"2949":2}}],["ver20",{"2":{"420":5}}],["vero",{"2":{"211":1}}],["versed",{"2":{"611":1}}],["versatile",{"2":{"2753":1}}],["versa",{"2":{"194":1,"1422":1,"1661":1,"2069":2}}],["versioned",{"2":{"182":1}}],["versioning",{"2":{"182":1,"2816":1}}],["version=yes",{"2":{"65":1}}],["versions",{"2":{"22":1,"35":1,"49":2,"182":2,"189":1,"191":1,"308":1,"328":1,"379":3,"419":1,"596":1,"1316":1,"1364":1,"1395":1,"1417":1,"1470":1,"1663":1,"1666":1,"1765":1,"2183":1,"2330":1,"2331":1,"2409":1,"2417":1,"2483":1,"2497":1,"2567":1}}],["version",{"2":{"10":1,"36":2,"65":1,"69":1,"70":1,"114":2,"134":1,"149":3,"160":1,"169":1,"173":1,"176":1,"182":1,"184":1,"191":1,"199":2,"211":1,"236":1,"279":1,"285":1,"298":1,"328":1,"333":3,"339":1,"379":1,"386":3,"392":1,"397":1,"402":1,"409":3,"413":27,"419":1,"420":1,"422":2,"561":1,"588":1,"596":1,"1214":1,"1390":1,"1405":1,"1419":6,"1467":2,"1470":4,"1472":1,"1498":1,"1499":1,"1518":1,"1592":1,"1624":1,"1625":2,"1633":4,"1638":1,"1962":1,"2040":1,"2043":1,"2397":1,"2432":2,"2461":2,"2465":1,"2508":1,"2560":1,"2634":1,"2658":1,"2683":1,"2685":1,"2686":1,"2687":1,"2717":1,"2746":1,"2750":2,"2779":1,"2787":1,"2882":2,"2929":1}}],["very",{"2":{"182":1,"369":1,"387":1,"542":1,"616":1,"628":1,"633":1,"634":1,"640":1,"681":1,"719":2,"1294":1,"1319":1,"1322":1,"1415":1,"1462":1,"1492":1,"1503":1,"1684":1,"1685":1,"1787":1,"1802":2,"1938":1,"1948":1,"1957":1,"1984":1,"1993":1,"2265":1,"2281":1,"2287":1,"2405":1,"2425":2,"2428":2,"2459":1,"2468":1,"2554":1,"2567":1,"2573":1,"2593":1,"2612":1,"2658":1,"2684":1,"2835":1,"2844":1,"2897":1,"2933":1,"2944":1}}],["ver",{"2":{"70":2,"111":1,"169":1,"184":1,"191":1,"561":1}}],["ver19",{"2":{"10":1}}],["v",{"0":{"21":1,"235":1,"553":1,"1865":1,"1867":1,"2159":1,"2161":1},"1":{"554":1,"1866":1,"1868":1,"2162":1},"2":{"21":2,"49":2,"50":3,"130":2,"134":2,"143":2,"153":1,"176":1,"236":4,"249":1,"266":1,"354":1,"375":1,"386":1,"492":1,"546":1,"589":2,"805":1,"808":1,"831":1,"834":1,"863":1,"866":1,"893":1,"896":1,"928":1,"931":1,"962":1,"965":1,"996":1,"999":1,"1030":1,"1033":1,"1064":1,"1067":1,"1098":1,"1101":1,"1132":1,"1135":1,"1166":1,"1169":1,"1219":1,"1222":1,"1625":1,"1684":1,"1685":3,"1855":1,"1866":1,"1868":1,"1920":1,"1956":1,"1990":2,"1992":2,"1993":1,"1994":9,"1996":1,"1997":1,"2014":1,"2047":1,"2048":1,"2050":1,"2096":2,"2160":1,"2162":1,"2198":8,"2201":4,"2294":1,"2317":1,"2331":1,"2388":1,"2389":1,"2409":2,"2417":3,"2501":1,"2510":3,"2542":3,"2557":1,"2563":1,"2579":4,"2580":2,"2637":3,"2639":2,"2717":1,"2762":2,"2782":1,"2877":1,"2878":1,"2925":5,"2927":1}}],["6=128",{"2":{"1954":1}}],["69",{"2":{"1686":1}}],["61",{"2":{"1686":1,"2775":1}}],["67",{"2":{"1352":1,"1686":1}}],["6739",{"2":{"74":1}}],["63",{"2":{"429":1,"1162":1,"1686":1,"1924":1,"1975":1,"2187":1,"2775":2}}],["6pad",{"2":{"266":1}}],["6kro",{"2":{"236":1,"285":1,"1356":1,"1377":2,"2839":1}}],["6x",{"2":{"1684":1,"1685":1}}],["6x13",{"2":{"249":1}}],["6x7",{"2":{"222":2}}],["6x6",{"2":{"217":1,"222":1}}],["68",{"2":{"211":1,"222":1,"1686":1,"1968":1}}],["6ball",{"2":{"143":2}}],["66",{"2":{"122":2,"149":1,"211":1,"375":1,"429":4,"434":2,"454":1,"455":1,"473":3,"474":2,"483":1,"484":1,"485":2,"1090":1,"1686":1,"2081":1,"2448":2,"2449":1,"2450":6,"2560":1,"2583":3,"2584":1,"2629":7,"2851":2,"2852":1}}],["64x48",{"2":{"1952":2}}],["64x32",{"2":{"1952":2}}],["64x128",{"2":{"1943":2,"1952":3}}],["64kb",{"2":{"755":2}}],["64kb+",{"2":{"545":1}}],["64u",{"2":{"719":2}}],["64",{"2":{"158":1,"750":1,"751":1,"759":1,"861":1,"919":1,"1214":1,"1300":1,"1527":1,"1538":1,"1686":1,"1743":1,"1846":5,"1924":1,"1925":1,"1953":1,"2081":2,"2082":5,"2187":1,"2410":1,"2445":1,"2449":1,"2490":1,"2506":2,"2508":1,"2527":1,"2622":2,"2871":1,"2878":1}}],["6490",{"2":{"114":1}}],["6480",{"2":{"25":1}}],["6",{"0":{"81":1,"601":1,"2319":1},"2":{"23":1,"81":1,"93":1,"114":1,"131":1,"134":1,"176":1,"188":1,"191":1,"211":1,"339":1,"375":1,"551":1,"561":1,"565":2,"570":2,"589":2,"688":1,"690":4,"694":2,"696":1,"717":1,"718":1,"768":1,"800":1,"1026":1,"1060":1,"1492":1,"1493":1,"1527":1,"1544":1,"1609":2,"1625":2,"1639":3,"1684":1,"1685":1,"1686":1,"1702":1,"1738":1,"1740":1,"1741":2,"1744":3,"1925":7,"1933":2,"1949":1,"1953":2,"1971":1,"2018":3,"2057":1,"2081":1,"2183":1,"2189":3,"2191":2,"2205":1,"2207":1,"2277":1,"2278":2,"2288":1,"2296":2,"2301":1,"2303":4,"2418":1,"2507":1,"2510":9,"2520":3,"2527":7,"2528":2,"2536":3,"2542":2,"2547":3,"2550":2,"2563":1,"2762":1,"2781":2,"2788":1,"2789":1,"2795":2,"2796":1,"2800":6,"2804":1,"2837":1,"2838":1,"2857":2,"2863":3,"2926":1}}],["62key",{"2":{"226":1}}],["6259",{"2":{"49":1}}],["6260",{"2":{"30":1}}],["62",{"2":{"21":1,"1686":1,"1968":1,"2775":1}}],["600ºf",{"2":{"2427":1}}],["600",{"2":{"1978":1}}],["60000ms",{"2":{"1949":1,"2288":1}}],["60000",{"2":{"1792":1,"1949":1,"2217":1,"2288":1,"2879":1}}],["6000",{"2":{"665":1}}],["60hz",{"2":{"1935":1}}],["60fps",{"2":{"1852":1,"1939":1,"2091":1}}],["60f",{"2":{"1493":1}}],["606",{"2":{"1357":2}}],["6068",{"2":{"131":1,"134":1}}],["60",{"0":{"1320":1},"2":{"18":2,"143":2,"211":6,"217":2,"222":1,"236":1,"257":1,"258":1,"259":2,"260":1,"266":1,"285":1,"429":1,"444":1,"566":1,"1056":1,"1379":1,"1433":3,"1434":3,"1671":1,"1686":17,"1792":1,"1935":1,"1939":3,"1968":1,"2081":1,"2187":1,"2450":1,"2453":1,"2471":1,"2714":1,"2799":1,"2869":6}}],["650",{"2":{"2003":1}}],["65536",{"2":{"755":1,"2508":1}}],["65keys",{"2":{"241":2}}],["6580",{"2":{"93":1}}],["65",{"2":{"11":1,"67":2,"176":1,"211":6,"236":1,"308":1,"1493":1,"1686":1,"1968":1,"2241":1,"2425":1,"2714":2,"2762":1}}],["0|1",{"2":{"2856":1,"2857":1,"2867":1,"2872":1}}],["03d",{"2":{"2889":1,"2893":1}}],["03h",{"2":{"2705":2}}],["03",{"2":{"2508":17}}],["03eb",{"2":{"713":7,"2498":4,"2612":1,"2615":2}}],["064",{"2":{"1968":2}}],["0=2",{"2":{"1954":1}}],["0ms",{"2":{"1949":1}}],["0°",{"2":{"1741":1}}],["0f",{"2":{"1490":2,"1493":5}}],["05f",{"2":{"1493":1}}],["05",{"2":{"924":1,"958":1,"992":1,"1390":1,"1405":1,"2374":1}}],["05dc",{"2":{"713":1,"2501":2}}],["05df",{"2":{"713":1,"2500":1}}],["0k5",{"2":{"860":2,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":2,"1129":2,"1163":2}}],["0u",{"2":{"766":2}}],["0b11",{"2":{"2466":3}}],["0b10100000",{"2":{"749":2}}],["0b00",{"2":{"2466":1}}],["0b01",{"2":{"2466":3}}],["0b01010000",{"2":{"749":1}}],["0b",{"2":{"2466":1}}],["04",{"2":{"2653":1,"2673":1}}],["04x",{"2":{"1329":1}}],["0483",{"2":{"713":1,"2393":1}}],["0478",{"2":{"713":1}}],["0422",{"2":{"308":1}}],["0v",{"2":{"685":1,"693":1,"694":1}}],["005",{"2":{"2893":1}}],["00s",{"2":{"2502":1}}],["00100000",{"2":{"2296":2}}],["00101000",{"2":{"2295":1,"2296":1}}],["00hwpkts",{"2":{"2295":1}}],["0001",{"2":{"2634":1}}],["00010000",{"2":{"2295":1}}],["00000101",{"2":{"2296":1}}],["00000001ff",{"2":{"2504":1}}],["00000001",{"2":{"2296":1}}],["00000000",{"2":{"2238":1,"2296":7}}],["00000010",{"2":{"2296":1}}],["00001100",{"2":{"2296":1}}],["0000",{"2":{"2240":1,"2612":1,"2615":2}}],["000",{"2":{"1979":2}}],["0003",{"2":{"713":1,"2395":1}}],["000e",{"2":{"713":1,"2499":1}}],["000d",{"2":{"713":1,"2499":1}}],["000c",{"2":{"713":1,"2499":1}}],["003",{"2":{"713":1}}],["0037",{"2":{"713":2,"2499":1}}],["0036",{"2":{"713":2,"2499":1}}],["00am",{"2":{"412":9}}],["00",{"2":{"379":5,"522":2,"523":2,"524":4,"1538":1,"1539":1,"2242":1}}],["004",{"2":{"291":1}}],["002",{"2":{"291":1}}],["0ab",{"2":{"266":1}}],["08t12",{"2":{"2508":17}}],["08752684f7f6",{"2":{"376":1,"377":1}}],["08",{"2":{"265":1}}],["02",{"2":{"249":1}}],["01101010",{"2":{"2296":1}}],["01110000",{"2":{"2295":1}}],["01ue",{"2":{"2295":1}}],["0189",{"2":{"713":1}}],["0106",{"2":{"713":1}}],["0101",{"2":{"713":1,"2499":1}}],["01000010",{"2":{"1364":1,"2295":2}}],["0100",{"2":{"253":1}}],["0131",{"2":{"226":1}}],["0130",{"2":{"226":1}}],["01",{"2":{"211":2,"1538":2,"1539":1}}],["0+atmel3",{"2":{"114":1}}],["07",{"2":{"114":2}}],["0xxx",{"2":{"2503":3}}],["0xe7",{"2":{"2470":1}}],["0xe8",{"2":{"1970":1}}],["0xd7",{"2":{"2501":1}}],["0xd8",{"2":{"2499":8}}],["0xdb",{"2":{"2498":1}}],["0xd9",{"2":{"2498":3}}],["0xd4",{"2":{"1946":1,"2285":1}}],["0xd3",{"2":{"1946":1,"2285":1}}],["0xd2",{"2":{"1946":1,"2285":1}}],["0xd1",{"2":{"1946":1,"2285":1}}],["0xd0",{"2":{"1946":1,"2285":1,"2499":1,"2500":1,"2501":1}}],["0xb4",{"2":{"1946":1,"2285":1}}],["0xb3",{"2":{"1946":1,"2285":1}}],["0xb2",{"2":{"1946":1,"2285":1,"2706":1}}],["0xb1",{"2":{"1946":1,"2285":1}}],["0xb0",{"2":{"1291":1,"1946":1,"2285":1,"2883":1}}],["0xaf",{"2":{"1946":1,"2285":1}}],["0xae",{"2":{"1946":1,"2285":1}}],["0xad",{"2":{"1946":1,"2285":1}}],["0xac",{"2":{"1946":1,"2285":1}}],["0xab",{"2":{"1946":1,"2285":1}}],["0xaa",{"2":{"1946":1,"2285":1}}],["0xa9",{"2":{"1946":1,"2285":1}}],["0xa8",{"2":{"1946":1,"2285":1}}],["0xa7",{"2":{"1946":1,"2285":1}}],["0xa6",{"2":{"1946":1,"2285":1}}],["0xa5",{"2":{"1946":1,"2285":1,"2541":1,"2551":1}}],["0xa4f9",{"2":{"2057":1}}],["0xa4",{"2":{"1946":1,"2285":1}}],["0xa3",{"2":{"1946":1,"2285":1}}],["0xa2",{"2":{"1946":1,"2285":1}}],["0xa1",{"2":{"1946":1,"2285":1}}],["0xa0",{"2":{"1946":1,"2285":1}}],["0x9b",{"2":{"2498":1}}],["0x99",{"2":{"2498":3}}],["0x94",{"2":{"1946":1,"2285":1}}],["0x93",{"2":{"1946":1,"2285":1}}],["0x92",{"2":{"1946":1,"2285":1}}],["0x91",{"2":{"1946":1,"2285":1}}],["0x90",{"2":{"1946":1,"2285":1}}],["0x8f",{"2":{"1946":1,"2285":1}}],["0x8e",{"2":{"1946":1,"2285":1}}],["0x8d",{"2":{"1946":1,"2285":1}}],["0x8c",{"2":{"1946":1,"2285":1}}],["0x8b",{"2":{"1946":1,"2285":1}}],["0x8a",{"2":{"1946":1,"2285":1}}],["0x89",{"2":{"1946":1,"2285":1}}],["0x88",{"2":{"1946":1,"2285":1}}],["0x87",{"2":{"1946":1,"2285":1}}],["0x86",{"2":{"1946":1,"2285":1}}],["0x85",{"2":{"1946":1,"2285":1}}],["0x84",{"2":{"1946":1,"2285":1}}],["0x83",{"2":{"1946":1,"2285":1}}],["0x82",{"2":{"1946":1,"2285":1}}],["0x81",{"2":{"1946":1,"2285":1}}],["0x8000000",{"2":{"2393":1,"2397":1,"2398":1,"2508":1}}],["0x80",{"2":{"1946":1,"1949":1,"2285":1}}],["0x464651",{"2":{"2787":1}}],["0x464751",{"2":{"2779":1}}],["0x4335",{"2":{"2059":1}}],["0x41",{"2":{"2059":2}}],["0x4207",{"2":{"1330":1,"2948":1}}],["0x400",{"2":{"2508":1}}],["0x40b",{"2":{"2329":1}}],["0x40",{"2":{"857":1,"861":1}}],["0x",{"2":{"1329":1}}],["0xf8",{"2":{"2499":1}}],["0xfb",{"2":{"2499":6}}],["0xfe",{"2":{"2499":2}}],["0xfeed",{"2":{"1319":1,"2717":2}}],["0xf3",{"2":{"2498":4}}],["0xffff",{"2":{"2751":2,"2820":1}}],["0xff60",{"2":{"2056":2,"2059":1}}],["0xff",{"2":{"921":1,"926":1,"956":1,"960":1,"990":1,"994":1,"1024":1,"1028":1,"1058":1,"1062":1,"1092":1,"1096":1,"1126":1,"1130":1,"1160":1,"1164":1,"1423":1,"1430":6,"1490":1,"1491":2,"1517":5,"1533":3,"1847":1,"1850":1,"2046":1,"2083":1,"2088":4,"2381":4,"2499":9,"2576":1,"2820":1}}],["0x6fff",{"2":{"2615":1}}],["0x6f",{"2":{"1161":1}}],["0x6e",{"2":{"1161":1}}],["0x6d",{"2":{"1161":1}}],["0x6c",{"2":{"1161":1}}],["0x6b",{"2":{"1161":1}}],["0x6a",{"2":{"1161":1}}],["0x69",{"2":{"1161":1}}],["0x68",{"2":{"1161":1}}],["0x67",{"2":{"1161":1}}],["0x66",{"2":{"1161":1}}],["0x65",{"2":{"1161":1}}],["0x64",{"2":{"1161":1}}],["0x63",{"2":{"1161":1}}],["0x62",{"2":{"1161":1}}],["0x61",{"2":{"1161":1,"2056":2,"2059":1}}],["0x60000002",{"2":{"2558":1}}],["0x60",{"2":{"1161":1}}],["0x7e",{"2":{"2762":3,"2787":1,"2788":1}}],["0x7000",{"2":{"2615":2}}],["0x7fff",{"2":{"2332":1,"2418":1,"2540":1}}],["0x7f",{"2":{"1737":1}}],["0x7a",{"2":{"1430":1}}],["0x77",{"2":{"890":1,"1217":1}}],["0x76",{"2":{"890":1,"1217":1}}],["0x75",{"2":{"890":1,"1217":1}}],["0x74",{"2":{"890":1,"1217":1}}],["0x3",{"2":{"1665":1}}],["0x33",{"2":{"1025":1,"1059":1}}],["0x32",{"2":{"1025":1,"1059":1}}],["0x31",{"2":{"1025":1,"1058":1,"1059":1,"1126":1}}],["0x37",{"2":{"858":1}}],["0x36",{"2":{"858":1}}],["0x35",{"2":{"858":1}}],["0x34",{"2":{"858":1}}],["0x3f80",{"2":{"2615":2}}],["0x3f7f",{"2":{"2615":1}}],["0x3f",{"2":{"829":1,"1735":1}}],["0x3e",{"2":{"829":1}}],["0x3d",{"2":{"829":1}}],["0x3c",{"2":{"829":1,"1950":1}}],["0x30c4",{"2":{"2329":1}}],["0x30",{"2":{"762":1,"1025":1,"1059":1}}],["0x5f",{"2":{"922":1,"957":1,"991":1}}],["0x5e",{"2":{"922":1,"957":1,"2498":4}}],["0x5d",{"2":{"922":1,"957":1}}],["0x5c",{"2":{"922":1,"957":1}}],["0x5b",{"2":{"922":1,"957":1}}],["0x5a",{"2":{"922":1,"957":1,"991":1}}],["0x59",{"2":{"922":1,"957":1}}],["0x58",{"2":{"922":1,"957":1}}],["0x57",{"2":{"922":1,"957":1}}],["0x56f0",{"2":{"1533":1}}],["0x56",{"2":{"922":1,"957":1}}],["0x5678",{"2":{"169":2,"184":2,"561":1}}],["0x55",{"2":{"922":1,"957":1,"991":1}}],["0x53",{"2":{"922":1,"957":1}}],["0x52",{"2":{"922":1,"957":1}}],["0x51",{"2":{"922":1,"957":1}}],["0x50",{"2":{"922":1,"957":1,"991":1}}],["0x54",{"2":{"803":1,"922":1,"957":1}}],["0x2f",{"2":{"1093":1,"1127":1}}],["0x2e2e",{"2":{"2329":1}}],["0x2e",{"2":{"1093":1,"1127":1}}],["0x2d",{"2":{"1093":1,"1127":1}}],["0x2c",{"2":{"1093":1,"1127":1}}],["0x2b",{"2":{"1093":1,"1127":1}}],["0x2a",{"2":{"1093":1,"1127":1,"1974":1}}],["0x29",{"2":{"1093":1,"1127":1}}],["0x28",{"2":{"1093":1,"1127":1}}],["0x27",{"2":{"1093":1,"1127":1}}],["0x26",{"2":{"1093":1,"1127":1}}],["0x25",{"2":{"1093":1,"1127":1}}],["0x24",{"2":{"1093":1,"1127":1}}],["0x23b0",{"2":{"2882":1}}],["0x23",{"2":{"1093":1,"1127":1}}],["0x2330",{"2":{"111":1}}],["0x22",{"2":{"1093":1,"1127":1}}],["0x21",{"2":{"1093":1,"1127":1}}],["0x203d",{"2":{"2329":1}}],["0x20",{"2":{"1093":1,"1127":1,"2762":3,"2787":1,"2788":1}}],["0x2000",{"2":{"379":1}}],["0x100",{"2":{"2820":1}}],["0x10ffff",{"2":{"2418":2}}],["0x1e9587",{"2":{"2502":1}}],["0x1eff",{"2":{"379":1}}],["0x1d",{"2":{"2472":1}}],["0x1c04",{"2":{"2508":1}}],["0x1c",{"2":{"2472":1}}],["0x1f",{"2":{"2501":1}}],["0x1f1e6",{"2":{"2330":1}}],["0x1f1fa",{"2":{"2330":1}}],["0x1f923",{"2":{"2330":1}}],["0x1f4a9",{"2":{"2330":1}}],["0x1f40d",{"2":{"2329":1}}],["0x1fff",{"2":{"379":1}}],["0x15",{"2":{"1702":3}}],["0x18",{"2":{"762":2}}],["0x1234",{"2":{"169":2,"184":2,"561":1}}],["0x03",{"2":{"2781":1,"2782":2,"2790":2}}],["0x03a8",{"2":{"2057":1}}],["0x07",{"2":{"2541":1,"2781":1}}],["0x06",{"2":{"2472":1,"2781":1}}],["0x05",{"2":{"2472":1,"2781":1,"2784":2}}],["0x0ca0",{"2":{"2330":2}}],["0x0f",{"2":{"2046":1,"2500":1}}],["0x09",{"2":{"2016":1}}],["0x0b",{"2":{"2016":1}}],["0x02",{"2":{"1983":1,"2083":1,"2781":3,"2789":2}}],["0x0a",{"2":{"1980":1}}],["0x08001c00",{"2":{"2508":1}}],["0x08001800",{"2":{"2508":1}}],["0x08001400",{"2":{"2508":1}}],["0x08001000",{"2":{"2508":1}}],["0x08000c00",{"2":{"2508":1}}],["0x08000800",{"2":{"2508":1}}],["0x08000400",{"2":{"2508":1}}],["0x08000000",{"2":{"2508":2}}],["0x08",{"2":{"1702":1,"1847":1,"2083":1}}],["0x0410",{"2":{"2508":2}}],["0x04",{"2":{"1702":3,"1847":1,"2083":1,"2472":1,"2473":1,"2501":1,"2781":1,"2783":2,"2791":2}}],["0x0e",{"2":{"1702":1}}],["0x01",{"2":{"1092":1,"1160":1,"1847":1,"2083":1,"2096":2,"2779":1,"2780":2,"2781":2,"2787":1,"2788":2}}],["0x0100",{"2":{"379":1,"561":1}}],["0x0",{"2":{"720":1,"2615":2}}],["0x005f",{"2":{"2330":1}}],["0x00c6",{"2":{"2330":1}}],["0x00e6",{"2":{"2330":1}}],["0x00",{"2":{"1430":8,"1702":1,"1735":1,"1737":1,"1847":1,"1946":1,"2059":1,"2083":1,"2088":1,"2285":1,"2470":1,"2779":2,"2781":2,"2787":2,"2820":1}}],["0x00ff",{"2":{"379":1,"2751":2}}],["0x0008e534",{"2":{"2508":1}}],["0x0002",{"2":{"2059":1}}],["0x00000002",{"2":{"2558":1}}],["0x00000001",{"2":{"2558":1}}],["0x0000",{"2":{"379":1,"2508":1,"2717":1,"2751":2}}],["0x0001",{"2":{"111":1,"169":1,"184":1}}],["0xcf",{"2":{"1946":1,"2285":1}}],["0xce",{"2":{"1946":1,"2285":1}}],["0xcd",{"2":{"1946":1,"2285":1}}],["0xcc",{"2":{"1946":1,"2285":1}}],["0xca",{"2":{"1946":1,"2285":1}}],["0xc9",{"2":{"1946":1,"2285":1}}],["0xc8",{"2":{"1946":1,"2285":1}}],["0xc7",{"2":{"1946":1,"2285":1}}],["0xc6",{"2":{"1946":1,"2285":1}}],["0xc5",{"2":{"1946":1,"2285":1}}],["0xc4",{"2":{"1946":1,"2285":1}}],["0xc3",{"2":{"1946":1,"2285":1}}],["0xc2",{"2":{"1946":1,"2285":1}}],["0xc1",{"2":{"1946":1,"2285":1}}],["0xc1ed",{"2":{"111":1,"2882":1}}],["0xc0",{"2":{"1946":1,"2285":1,"2501":1}}],["0xcb",{"2":{"114":1,"266":1,"322":4,"328":1,"1391":1,"1399":1,"1946":1,"2285":1,"2706":1,"2895":1}}],["0$",{"2":{"70":3}}],["0",{"0":{"56":1,"2431":1,"2488":1},"1":{"2489":1},"2":{"11":1,"14":1,"38":2,"56":1,"90":2,"102":1,"105":4,"114":5,"120":2,"122":2,"152":1,"168":1,"169":2,"176":1,"184":2,"191":2,"195":1,"199":2,"222":1,"231":4,"236":1,"238":2,"240":2,"247":1,"249":2,"266":5,"277":2,"279":1,"285":1,"294":2,"307":1,"308":1,"328":1,"332":2,"337":2,"339":1,"354":1,"375":1,"379":8,"413":54,"429":1,"455":1,"469":1,"524":2,"546":2,"561":1,"564":1,"566":2,"570":1,"589":3,"593":1,"656":3,"657":1,"684":3,"685":1,"688":1,"690":4,"691":2,"694":2,"699":1,"708":1,"713":1,"719":1,"720":1,"726":1,"727":1,"729":2,"732":1,"744":2,"754":1,"755":1,"793":2,"802":1,"828":2,"831":3,"834":1,"857":2,"860":4,"861":1,"863":3,"866":1,"889":2,"893":3,"896":1,"921":5,"925":6,"926":1,"928":3,"931":1,"956":4,"959":6,"960":1,"962":3,"965":1,"990":4,"993":6,"994":1,"996":3,"999":1,"1024":2,"1027":4,"1028":1,"1030":3,"1033":1,"1058":2,"1061":4,"1062":1,"1064":3,"1067":1,"1092":3,"1095":4,"1096":1,"1098":3,"1101":1,"1126":3,"1129":4,"1130":1,"1132":3,"1135":1,"1160":2,"1163":4,"1164":1,"1166":3,"1169":1,"1207":1,"1216":2,"1219":3,"1222":1,"1252":1,"1285":1,"1286":1,"1288":3,"1295":1,"1311":1,"1329":23,"1376":2,"1384":1,"1395":8,"1409":4,"1412":1,"1417":1,"1419":2,"1420":3,"1422":2,"1423":2,"1425":2,"1431":1,"1441":1,"1446":2,"1455":1,"1462":1,"1486":1,"1492":1,"1493":1,"1514":2,"1527":23,"1533":4,"1535":1,"1538":4,"1539":1,"1544":1,"1545":1,"1567":1,"1569":1,"1583":1,"1586":1,"1588":1,"1589":3,"1593":1,"1598":1,"1600":1,"1612":2,"1619":2,"1625":3,"1630":3,"1633":2,"1638":28,"1639":1,"1640":1,"1641":3,"1647":3,"1648":2,"1660":2,"1664":1,"1667":1,"1668":2,"1670":1,"1678":1,"1681":1,"1684":3,"1685":3,"1695":2,"1702":1,"1712":2,"1720":1,"1722":1,"1740":2,"1741":2,"1742":2,"1743":6,"1744":3,"1752":1,"1754":1,"1757":1,"1781":1,"1795":2,"1836":1,"1838":2,"1839":1,"1846":5,"1849":1,"1852":1,"1866":1,"1884":1,"1890":1,"1892":1,"1894":1,"1924":2,"1925":29,"1926":2,"1933":2,"1935":1,"1937":4,"1947":5,"1948":2,"1949":9,"1952":2,"1953":5,"1954":5,"1968":6,"1971":1,"1983":3,"1984":1,"1986":2,"1990":2,"1993":2,"1994":6,"1996":2,"1997":2,"2003":2,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2041":4,"2043":10,"2048":3,"2059":5,"2074":1,"2076":2,"2077":2,"2082":5,"2085":1,"2091":2,"2095":3,"2096":4,"2108":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2160":3,"2162":3,"2182":2,"2183":8,"2185":2,"2190":1,"2191":4,"2198":15,"2201":2,"2202":2,"2205":1,"2206":1,"2207":1,"2217":4,"2228":1,"2232":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":2,"2245":1,"2246":1,"2247":2,"2259":4,"2260":1,"2275":3,"2277":2,"2280":2,"2286":5,"2288":5,"2290":2,"2295":1,"2296":6,"2300":1,"2303":16,"2305":1,"2316":2,"2330":2,"2365":1,"2380":2,"2381":3,"2388":1,"2393":1,"2396":1,"2398":1,"2410":3,"2424":2,"2466":10,"2488":2,"2502":1,"2508":3,"2510":4,"2520":3,"2527":29,"2528":2,"2542":2,"2550":2,"2557":4,"2558":9,"2562":1,"2563":4,"2579":5,"2580":2,"2615":2,"2683":2,"2685":2,"2717":2,"2721":18,"2750":1,"2756":1,"2761":1,"2762":2,"2763":1,"2764":27,"2775":3,"2778":1,"2781":6,"2782":6,"2792":2,"2794":1,"2795":13,"2796":10,"2854":1,"2855":1,"2857":1,"2858":2,"2860":2,"2863":1,"2869":4,"2871":6,"2872":1,"2877":4,"2878":7,"2879":5,"2880":1,"2882":3,"2893":2,"2911":3,"2915":2,"2916":3,"2917":2,"2921":2,"2923":1,"2924":4,"2926":2,"2936":21,"2938":1,"2939":39}}],["3akeyboard",{"2":{"2746":1}}],["3aclosed+label",{"2":{"2746":1}}],["3apr+is",{"2":{"2746":1}}],["3d",{"2":{"2435":1}}],["3+0",{"2":{"1968":1}}],["3=5",{"2":{"1954":1}}],["3|128",{"2":{"1538":1}}],["34",{"2":{"1492":1,"1686":1,"1968":1}}],["3b",{"2":{"1382":1}}],["35",{"2":{"1492":1,"1527":1,"1686":1,"1968":1,"2454":1,"2634":1}}],["3500",{"2":{"1981":1}}],["350",{"2":{"1285":1,"1800":1}}],["351",{"2":{"1022":1,"1845":1}}],["384",{"2":{"2329":1}}],["38400",{"2":{"1207":1,"1272":1}}],["38",{"2":{"1492":1,"1686":1,"1846":1,"1925":1,"1968":1,"2082":1,"2527":1}}],["38u",{"2":{"766":1}}],["3k63",{"2":{"1162":1}}],["3k6",{"2":{"1026":1,"1060":1}}],["3key",{"2":{"143":2}}],["3v3",{"2":{"2499":2}}],["3v",{"2":{"685":2,"713":2,"1296":1,"1297":1,"1298":1,"1697":1,"1739":1,"2261":1,"2507":1,"2668":1,"2669":1,"2689":1,"2690":2,"2691":3}}],["3rd",{"2":{"516":1,"615":1}}],["39000",{"2":{"1207":1}}],["39x9",{"2":{"1022":1}}],["39kbps",{"2":{"570":1,"2275":1}}],["39",{"2":{"377":2,"1492":1,"1686":1}}],["333c30605e739ce9bedee5999fdaf81b",{"2":{"2508":1}}],["33s",{"2":{"2502":1}}],["3389",{"0":{"1983":1},"2":{"1983":3}}],["3300",{"2":{"744":1,"2858":1}}],["33",{"2":{"413":1,"1492":1,"1686":1,"1968":1,"2764":6}}],["3325",{"0":{"1982":1},"2":{"339":1,"1982":1}}],["3360",{"0":{"1983":1},"2":{"118":1,"1983":3}}],["316",{"2":{"1331":4}}],["313",{"2":{"1331":1}}],["315ºc",{"2":{"2427":1}}],["315°",{"2":{"1741":1}}],["315",{"2":{"1331":1}}],["314b",{"2":{"713":1}}],["31",{"0":{"309":1,"334":1},"1":{"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"335":1,"336":1,"337":1,"338":1,"339":1},"2":{"231":4,"285":1,"400":1,"402":1,"413":3,"561":1,"699":2,"708":1,"1353":1,"1492":1,"1544":1,"1686":1,"1744":3,"1752":1,"1754":1,"1968":1,"2018":3,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2187":1,"2508":13,"2520":3,"2536":3,"2557":2,"2558":5,"2855":2,"2857":1}}],["3x",{"2":{"1684":1,"1685":1,"1974":1}}],["3x5+3",{"2":{"249":1}}],["3x5",{"2":{"217":1,"222":2,"249":1,"311":10,"317":2,"1590":1}}],["3x8",{"2":{"143":2}}],["3x7",{"2":{"143":2}}],["3x6",{"2":{"143":2,"311":8,"317":1}}],["360",{"2":{"1937":1,"2764":1,"2782":1}}],["36",{"2":{"143":2,"211":1,"826":1,"1686":1,"1845":1,"1968":1,"2424":1}}],["37",{"2":{"1492":1,"1686":1,"1846":1,"1968":1,"2082":1}}],["3731",{"2":{"236":1}}],["3733",{"2":{"134":1}}],["3741",{"2":{"236":1}}],["378",{"2":{"211":1}}],["378edd9",{"2":{"73":1}}],["3700",{"2":{"57":2}}],["320",{"2":{"2764":3}}],["320x480",{"2":{"2760":2}}],["3204",{"0":{"1978":1},"2":{"1978":2}}],["3286",{"2":{"2490":1}}],["328p",{"2":{"235":1}}],["32k",{"2":{"857":1,"859":2,"925":2,"959":2,"993":2,"1024":2,"1027":4,"1061":2}}],["32kb",{"2":{"753":2}}],["32kb+",{"2":{"545":1}}],["32u2",{"2":{"763":1,"1247":1,"1268":1,"1553":1,"1554":1}}],["32u4rc",{"2":{"2383":1}}],["32u4",{"2":{"211":1,"322":1,"546":1,"688":1,"713":4,"763":1,"1268":1,"1553":1,"1554":1,"2375":2,"2499":4}}],["32bit",{"2":{"647":1}}],["32730",{"2":{"2502":4}}],["32767",{"2":{"564":2,"1985":4}}],["3270",{"2":{"114":1,"207":8}}],["3222",{"0":{"1979":1},"2":{"328":1,"1979":1}}],["32",{"0":{"166":1},"2":{"63":1,"120":1,"231":1,"277":1,"339":1,"413":1,"565":1,"749":1,"750":1,"859":1,"925":2,"954":1,"959":2,"993":2,"1027":2,"1061":2,"1300":1,"1417":1,"1418":1,"1423":1,"1441":1,"1492":1,"1609":1,"1686":1,"1738":1,"1740":1,"1846":2,"1936":1,"1937":2,"1939":3,"1952":2,"1968":1,"2018":3,"2057":1,"2058":1,"2059":1,"2062":2,"2064":2,"2081":1,"2082":2,"2086":1,"2189":2,"2238":1,"2250":1,"2252":1,"2277":1,"2288":1,"2289":2,"2444":1,"2536":3,"2557":2,"2558":1,"2576":1,"2586":1,"2689":1,"2802":1,"2871":1,"2877":1,"2878":1}}],["3",{"0":{"81":1,"598":1,"1384":1,"2307":1,"2316":1,"2471":1,"2595":1,"2628":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"10":1,"23":1,"69":1,"70":1,"76":1,"81":1,"93":1,"114":2,"120":2,"122":2,"131":1,"134":3,"149":1,"176":3,"188":1,"191":1,"199":1,"211":1,"217":1,"222":1,"236":1,"240":1,"251":1,"266":6,"294":1,"307":1,"311":6,"354":1,"375":1,"399":1,"412":1,"420":5,"421":5,"514":1,"551":3,"561":1,"570":1,"581":1,"589":2,"593":6,"599":1,"641":1,"665":1,"684":1,"685":2,"688":1,"690":22,"691":1,"713":1,"716":2,"732":1,"759":1,"828":2,"834":1,"857":2,"866":1,"889":2,"893":1,"896":1,"921":4,"931":1,"956":2,"965":1,"990":2,"999":1,"1024":2,"1026":1,"1033":1,"1058":2,"1060":1,"1067":1,"1092":4,"1101":1,"1126":4,"1135":1,"1160":2,"1162":1,"1169":1,"1198":1,"1201":1,"1207":1,"1216":2,"1222":1,"1252":1,"1296":1,"1297":1,"1298":1,"1346":1,"1384":1,"1441":1,"1470":1,"1474":1,"1492":1,"1538":2,"1544":1,"1553":4,"1554":2,"1556":1,"1598":1,"1622":1,"1625":2,"1641":1,"1667":1,"1670":1,"1684":4,"1685":3,"1686":1,"1697":1,"1702":1,"1739":1,"1740":1,"1741":2,"1744":3,"1803":2,"1843":2,"1846":1,"1849":1,"1925":31,"1933":2,"1937":3,"1951":1,"1953":3,"1954":1,"1967":1,"1971":1,"1974":1,"2018":3,"2043":2,"2047":2,"2082":1,"2085":2,"2183":4,"2185":1,"2189":1,"2190":1,"2191":2,"2205":1,"2206":1,"2207":3,"2259":1,"2261":1,"2264":1,"2266":1,"2267":1,"2275":1,"2296":2,"2298":1,"2301":1,"2303":16,"2309":1,"2315":4,"2317":1,"2322":1,"2377":1,"2416":1,"2450":1,"2454":4,"2455":4,"2465":1,"2466":3,"2507":3,"2510":9,"2516":1,"2520":3,"2527":31,"2528":2,"2536":3,"2542":2,"2547":2,"2550":2,"2563":1,"2573":1,"2576":1,"2582":2,"2632":1,"2634":1,"2658":1,"2669":1,"2689":1,"2690":2,"2691":3,"2695":1,"2721":16,"2763":26,"2781":2,"2782":1,"2795":9,"2796":8,"2825":1,"2857":1,"2877":1,"2879":1,"2903":1,"2918":1,"2931":1,"2937":1}}],["30fps",{"2":{"2764":6}}],["30x6",{"2":{"1056":1}}],["300",{"2":{"564":2,"1800":1,"1801":1,"1939":1,"1971":2,"2048":1,"2291":1,"2870":2}}],["30000",{"2":{"1579":1,"2761":1,"2858":1}}],["3000",{"2":{"266":1,"570":1,"1598":1,"1936":1,"2278":1}}],["30",{"0":{"0":1,"19":1,"318":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1},"2":{"114":1,"176":1,"400":1,"401":1,"402":2,"413":4,"561":1,"1492":1,"1686":8,"1744":3,"1935":1,"1947":1,"1968":1,"2018":3,"2085":2,"2096":1,"2187":2,"2286":1,"2508":4,"2520":3,"2536":3,"2557":1,"2558":4,"2567":1,"2858":1,"2872":2}}],["1bpp",{"2":{"2763":1,"2781":2}}],["1b4f",{"2":{"713":3,"2499":3}}],["1ca027",{"2":{"1973":1}}],["1c11",{"2":{"713":1,"2396":1}}],["1=3",{"2":{"1954":1}}],["1>",{"2":{"1788":1,"2928":1}}],["1x",{"2":{"1684":1,"1685":1,"1974":1,"2264":1,"2689":1}}],["1x4",{"2":{"211":1}}],["1st",{"2":{"1431":1}}],["1️⃣",{"2":{"716":12}}],["1eaf",{"2":{"713":1,"2395":1}}],["1ffb",{"2":{"713":1,"2499":1}}],["1p5",{"2":{"696":1}}],["1u",{"2":{"2869":2}}],["1up60rgb",{"2":{"588":1}}],["1upkeyboards",{"2":{"191":2,"211":2,"236":1,"322":4,"328":1,"588":1}}],["1ul",{"2":{"105":4,"1379":2,"1641":4}}],["19",{"2":{"377":2,"413":1,"1492":1,"1527":1,"1686":1,"1744":3,"1968":2,"2018":3,"2520":3,"2536":3}}],["199",{"2":{"2915":1,"2916":1}}],["19939",{"2":{"236":1}}],["19954",{"2":{"211":1}}],["19997",{"2":{"236":1}}],["19998",{"2":{"211":1}}],["19991",{"2":{"211":1}}],["19993",{"2":{"211":1}}],["19987",{"2":{"211":1}}],["19985",{"2":{"211":1}}],["19980",{"2":{"211":1}}],["19961",{"2":{"211":1}}],["19966",{"2":{"211":1}}],["19925",{"2":{"211":1}}],["19923",{"2":{"199":1}}],["19974",{"2":{"211":1}}],["19948",{"2":{"211":1}}],["19941",{"2":{"199":1}}],["19940",{"2":{"199":1}}],["19912",{"2":{"211":1}}],["19916",{"2":{"199":1}}],["19919",{"2":{"199":1}}],["19918",{"2":{"199":1}}],["19910",{"2":{"199":1}}],["19902",{"2":{"199":1}}],["19901",{"2":{"199":1}}],["19909",{"2":{"199":1}}],["19907",{"2":{"199":1}}],["198",{"2":{"1090":1,"1845":1}}],["19849",{"2":{"211":1}}],["19845",{"2":{"199":1}}],["19842",{"2":{"199":1}}],["19893",{"2":{"199":1}}],["19898",{"2":{"199":1}}],["19891",{"2":{"199":1}}],["19890",{"2":{"199":1}}],["19869",{"2":{"199":1}}],["19867",{"2":{"199":1}}],["19866",{"2":{"199":1}}],["19864",{"2":{"199":1}}],["19863",{"2":{"199":1}}],["19860",{"2":{"199":1}}],["19854",{"2":{"211":1}}],["19857",{"2":{"199":1}}],["19856",{"2":{"199":1}}],["19859",{"2":{"199":1}}],["19851",{"2":{"199":1}}],["19825",{"2":{"211":1}}],["19828",{"2":{"199":1}}],["19821",{"2":{"199":1}}],["19826",{"2":{"199":1}}],["19829",{"2":{"199":1}}],["19808",{"2":{"199":1}}],["19800",{"2":{"199":1}}],["19806",{"2":{"199":1}}],["19889",{"2":{"199":1}}],["19888",{"2":{"199":1}}],["19887",{"2":{"199":1}}],["19885",{"2":{"199":1}}],["19884",{"2":{"199":1}}],["19874",{"2":{"199":1}}],["19879",{"2":{"199":1}}],["19872",{"2":{"199":1}}],["19877",{"2":{"199":1}}],["19875",{"2":{"199":1}}],["19833",{"2":{"199":1}}],["19831",{"2":{"199":1}}],["19830",{"2":{"199":1}}],["19815",{"2":{"199":1}}],["19817",{"2":{"199":1}}],["19813",{"2":{"199":1}}],["19780",{"2":{"222":2}}],["19784",{"2":{"199":1}}],["19738",{"2":{"211":1}}],["19793",{"2":{"199":1}}],["19795",{"2":{"199":1}}],["19778",{"2":{"199":1}}],["19777",{"2":{"199":1}}],["19774",{"2":{"199":1}}],["19767",{"2":{"199":1}}],["19768",{"2":{"199":1}}],["19761",{"2":{"199":1}}],["19749",{"2":{"236":1}}],["19748",{"2":{"199":1}}],["19742",{"2":{"199":1}}],["19752",{"2":{"199":1}}],["19750",{"2":{"199":1}}],["19756",{"2":{"199":1}}],["19755",{"2":{"199":1}}],["19753",{"2":{"199":1}}],["19723",{"2":{"199":1}}],["19721",{"2":{"199":1}}],["19726",{"2":{"199":1}}],["19722",{"2":{"199":1}}],["19720",{"2":{"199":1}}],["19718",{"2":{"199":1}}],["19715",{"2":{"199":1}}],["19714",{"2":{"199":1}}],["19713",{"2":{"199":1}}],["19712",{"2":{"199":1}}],["1970",{"2":{"522":1,"523":1,"524":2}}],["19705",{"2":{"211":1}}],["19700",{"2":{"211":1}}],["19703",{"2":{"199":1}}],["19704",{"2":{"199":1}}],["19701",{"2":{"199":1}}],["19689",{"2":{"211":1}}],["19683",{"2":{"199":1}}],["1967st",{"2":{"211":1}}],["19670",{"2":{"211":1}}],["19675",{"2":{"199":1}}],["19658",{"2":{"199":1}}],["19652",{"2":{"199":1}}],["19656",{"2":{"199":1}}],["19647",{"2":{"199":1}}],["19644",{"2":{"199":1}}],["19649",{"2":{"199":1}}],["19640",{"2":{"199":1}}],["19646",{"2":{"199":1}}],["19699",{"2":{"199":1}}],["19630",{"2":{"199":1}}],["19633",{"2":{"199":1}}],["19632",{"2":{"199":1}}],["19629",{"2":{"199":1}}],["19620",{"2":{"199":1}}],["19602",{"2":{"199":1}}],["19607",{"2":{"199":1}}],["19606",{"2":{"199":1}}],["19603",{"2":{"199":2}}],["19515",{"2":{"222":1}}],["19511",{"2":{"199":1}}],["19537",{"2":{"199":1}}],["19530",{"2":{"199":1}}],["19588",{"2":{"199":1}}],["19581",{"2":{"199":1}}],["19570",{"2":{"199":1}}],["19529",{"2":{"199":1}}],["19599",{"2":{"199":1}}],["19597",{"2":{"199":1}}],["19594",{"2":{"199":1}}],["19562",{"2":{"199":1}}],["19565",{"2":{"199":1}}],["19564",{"2":{"199":1}}],["19563",{"2":{"199":1}}],["19543",{"2":{"211":1}}],["19549",{"2":{"199":1}}],["19548",{"2":{"199":1}}],["19541",{"2":{"199":1}}],["19542",{"2":{"199":1}}],["19545",{"2":{"199":1}}],["19544",{"2":{"199":1}}],["19447",{"2":{"199":1}}],["19468",{"2":{"199":1}}],["19464",{"2":{"199":1}}],["19462",{"2":{"199":1}}],["19463",{"2":{"199":1}}],["19496",{"2":{"199":1}}],["19488",{"2":{"199":1}}],["19487",{"2":{"199":1}}],["19485",{"2":{"199":1}}],["19480",{"2":{"199":1}}],["19474",{"2":{"199":1}}],["19479",{"2":{"199":1}}],["19475",{"2":{"199":1}}],["19453",{"2":{"199":1}}],["19452",{"2":{"199":1}}],["19412",{"2":{"199":1}}],["19411",{"2":{"199":1}}],["19418",{"2":{"199":1}}],["19416",{"2":{"199":1}}],["19415",{"2":{"199":1}}],["19400",{"2":{"199":1}}],["19313",{"2":{"199":1}}],["19341",{"2":{"199":1}}],["19348",{"2":{"199":1}}],["19332",{"2":{"199":1}}],["1930",{"2":{"2812":1}}],["19304",{"2":{"199":1}}],["19302",{"2":{"199":1}}],["19301",{"2":{"199":1}}],["19306",{"2":{"199":1}}],["19303",{"2":{"199":1}}],["19350",{"2":{"199":1}}],["19326",{"2":{"199":1}}],["19325",{"2":{"199":1}}],["19399",{"2":{"199":1}}],["19397",{"2":{"199":1}}],["19394",{"2":{"199":1}}],["19382",{"2":{"199":1}}],["19370",{"2":{"199":1}}],["19366",{"2":{"199":1}}],["192",{"2":{"919":1,"1214":1,"1845":2,"2445":1}}],["19280",{"2":{"249":1}}],["19269",{"2":{"199":1}}],["19267",{"2":{"199":1}}],["19262",{"2":{"199":1}}],["1920",{"2":{"1939":1}}],["19200",{"2":{"1207":1,"1272":1}}],["19201",{"2":{"199":1}}],["19203",{"2":{"199":1}}],["19248",{"2":{"199":1}}],["19243",{"2":{"199":1}}],["19275",{"2":{"199":1}}],["19271",{"2":{"199":1}}],["19277",{"2":{"199":1}}],["19273",{"2":{"199":1}}],["19229",{"2":{"199":1}}],["19226",{"2":{"199":1}}],["19225",{"2":{"199":1}}],["19224",{"2":{"199":1}}],["19216",{"2":{"199":1}}],["19214",{"2":{"199":1}}],["1919",{"2":{"1975":1}}],["19194",{"2":{"199":1}}],["191",{"2":{"1947":1,"2286":1}}],["19172",{"2":{"199":1}}],["19153",{"2":{"199":1}}],["19159",{"2":{"191":1}}],["19160",{"2":{"199":1}}],["19167",{"2":{"199":1}}],["19163",{"2":{"199":1}}],["19135",{"2":{"199":1}}],["19137",{"2":{"191":1}}],["19110",{"2":{"199":1}}],["19119",{"2":{"191":1}}],["19140",{"2":{"191":1}}],["19146",{"2":{"191":1}}],["19144",{"2":{"191":1}}],["19143",{"2":{"188":1,"191":1}}],["19107",{"2":{"191":1}}],["19121",{"2":{"191":1}}],["19120",{"2":{"191":1}}],["19124",{"2":{"191":1}}],["19122",{"2":{"191":1}}],["19049",{"2":{"199":1}}],["19096",{"2":{"191":1}}],["19094",{"2":{"191":1}}],["19053",{"2":{"199":1}}],["19059",{"2":{"191":1}}],["19058",{"2":{"191":1}}],["19056",{"2":{"191":1}}],["19052",{"2":{"191":1}}],["19089",{"2":{"191":1}}],["19086",{"2":{"191":1}}],["19080",{"2":{"191":1}}],["19077",{"2":{"199":1}}],["19075",{"2":{"199":1}}],["19072",{"2":{"191":1}}],["19079",{"2":{"191":1}}],["19031",{"2":{"199":1}}],["19038",{"2":{"191":1}}],["19034",{"2":{"190":1,"191":1}}],["19024",{"2":{"199":1}}],["19028",{"2":{"191":1}}],["19029",{"2":{"191":1}}],["19020",{"2":{"191":1}}],["19015",{"2":{"191":1}}],["19018",{"2":{"191":1}}],["19069",{"2":{"211":1}}],["19066",{"2":{"191":1}}],["19060",{"2":{"191":1}}],["19065",{"2":{"191":1}}],["19063",{"2":{"191":1}}],["19068",{"2":{"191":1}}],["19005",{"2":{"236":1}}],["19006",{"2":{"191":1}}],["19007",{"2":{"191":1}}],["19004",{"2":{"188":1,"191":1}}],["1k81",{"2":{"1162":1}}],["1k8",{"2":{"1026":1,"1060":1}}],["1k05",{"2":{"924":1,"958":1,"992":1}}],["1k",{"2":{"859":1,"860":4,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":4,"1129":4,"1163":4,"2309":1,"2667":1}}],["1kb",{"2":{"748":1}}],["1key",{"2":{"143":2}}],["1khz",{"0":{"137":1},"2":{"137":1,"149":1}}],["1ms",{"2":{"137":1,"176":1,"211":1}}],["15ms",{"2":{"1953":1}}],["15min",{"2":{"647":1}}],["15x9",{"2":{"855":1}}],["15pad",{"2":{"266":1}}],["15",{"2":{"176":1,"413":1,"561":1,"690":4,"891":1,"928":1,"996":1,"1379":1,"1422":2,"1423":2,"1492":1,"1527":2,"1686":1,"1712":1,"1744":3,"1925":2,"1949":1,"1968":2,"2018":3,"2189":1,"2245":1,"2485":1,"2487":1,"2520":3,"2527":2,"2536":3,"2781":1,"2800":2}}],["15699",{"2":{"191":1}}],["15691",{"2":{"149":1}}],["15674",{"2":{"176":1}}],["15657",{"2":{"160":1}}],["15606",{"2":{"149":1}}],["15603",{"2":{"149":1}}],["15609",{"2":{"149":1}}],["15680",{"2":{"160":1}}],["15682",{"2":{"149":1}}],["15687",{"2":{"149":1}}],["15684",{"2":{"149":1}}],["15681",{"2":{"149":1}}],["15668",{"2":{"149":1}}],["15667",{"2":{"149":1}}],["15665",{"2":{"149":1}}],["15662",{"2":{"149":1}}],["15661",{"2":{"149":1}}],["15646",{"2":{"149":1}}],["15647",{"2":{"149":1}}],["15645",{"2":{"149":1}}],["15643",{"2":{"149":1}}],["15641",{"2":{"149":1}}],["15638",{"2":{"149":1}}],["15637",{"2":{"149":1}}],["15636",{"2":{"149":1}}],["15635",{"2":{"149":1}}],["15988",{"2":{"149":1}}],["15985",{"2":{"149":1}}],["15984",{"2":{"149":1}}],["15987",{"2":{"149":1}}],["15976",{"2":{"149":1}}],["15938",{"2":{"149":1}}],["15935",{"2":{"149":1}}],["15919",{"2":{"149":1}}],["15907",{"2":{"176":1}}],["15906",{"2":{"149":1}}],["15904",{"2":{"149":1}}],["15996",{"2":{"160":1}}],["15990",{"2":{"160":1}}],["15999",{"2":{"149":1}}],["15997",{"2":{"149":1}}],["15993",{"2":{"149":1}}],["15992",{"2":{"149":1}}],["15991",{"2":{"149":1}}],["15968",{"2":{"149":1}}],["15959",{"2":{"160":1}}],["15954",{"2":{"149":1}}],["15953",{"2":{"149":1}}],["15944",{"2":{"149":1}}],["15924",{"2":{"149":1}}],["15925",{"2":{"149":1}}],["15923",{"2":{"149":1}}],["15843",{"2":{"1329":1}}],["15847",{"2":{"211":1}}],["15814",{"2":{"149":1}}],["15815",{"2":{"149":1}}],["15801",{"2":{"149":1}}],["15805",{"2":{"149":1}}],["15889",{"2":{"236":1}}],["15880",{"2":{"149":1}}],["15883",{"2":{"149":1}}],["15882",{"2":{"149":1}}],["15866",{"2":{"149":1}}],["15859",{"2":{"149":1}}],["15828",{"2":{"149":1}}],["15827",{"2":{"149":1}}],["15829",{"2":{"149":1}}],["15821",{"2":{"149":1}}],["15703",{"2":{"1329":1}}],["15741",{"2":{"199":1}}],["15740",{"2":{"149":1}}],["15733",{"2":{"160":1}}],["15730",{"2":{"149":1}}],["15799",{"2":{"149":1}}],["15798",{"2":{"149":1}}],["15797",{"2":{"149":1}}],["15791",{"2":{"149":1}}],["15789",{"2":{"149":1}}],["15788",{"2":{"149":1}}],["15786",{"2":{"149":1}}],["15785",{"2":{"149":1}}],["15783",{"2":{"149":1}}],["15781",{"2":{"149":1}}],["15780",{"2":{"149":1}}],["15787",{"2":{"149":1}}],["15767",{"2":{"149":1}}],["15760",{"2":{"149":1}}],["15758",{"2":{"149":1}}],["15725",{"2":{"149":1}}],["15510",{"2":{"1329":1}}],["15519",{"2":{"149":1}}],["15505",{"2":{"1329":1}}],["15592",{"2":{"149":1}}],["15589",{"2":{"149":1}}],["15557",{"2":{"149":1}}],["15559",{"2":{"149":1}}],["15538",{"2":{"149":1}}],["15537",{"2":{"149":1}}],["15579",{"2":{"149":1}}],["15416",{"2":{"149":1}}],["15419",{"2":{"149":1}}],["15483",{"2":{"149":1}}],["15489",{"2":{"149":1}}],["15481",{"2":{"149":1}}],["15492",{"2":{"149":1}}],["15479",{"2":{"149":1}}],["15457",{"2":{"149":1}}],["15450",{"2":{"149":1}}],["15435",{"2":{"149":1}}],["15431",{"2":{"149":1}}],["15420",{"2":{"149":1}}],["15409",{"2":{"149":1}}],["15320",{"2":{"160":1}}],["15321",{"2":{"149":1}}],["15378",{"2":{"149":1}}],["15376",{"2":{"149":1}}],["15340",{"2":{"149":1}}],["15349",{"2":{"149":1}}],["15336",{"2":{"149":1}}],["15368",{"2":{"149":1}}],["15352",{"2":{"149":1}}],["15316",{"2":{"134":1}}],["15313",{"2":{"134":1}}],["15312",{"2":{"134":1}}],["15306",{"2":{"149":1}}],["15305",{"2":{"149":1}}],["15304",{"2":{"149":1}}],["15307",{"2":{"134":1}}],["15302",{"2":{"134":1}}],["15301",{"2":{"134":1}}],["15309",{"2":{"134":1}}],["15303",{"2":{"134":1}}],["15277",{"2":{"149":1}}],["15207",{"2":{"149":1}}],["15205",{"2":{"134":1}}],["15286",{"2":{"176":1}}],["15285",{"2":{"149":1}}],["15282",{"2":{"149":1}}],["15292",{"2":{"176":1}}],["15298",{"2":{"134":1}}],["15299",{"2":{"134":1}}],["15239",{"2":{"134":1}}],["15221",{"2":{"134":1}}],["15223",{"2":{"134":1}}],["15240",{"2":{"134":1}}],["15243",{"2":{"134":1}}],["15244",{"2":{"134":1}}],["15268",{"2":{"134":1}}],["15263",{"2":{"134":1}}],["15262",{"2":{"134":1}}],["15261",{"2":{"134":1}}],["15260",{"2":{"134":1}}],["15269",{"2":{"134":1}}],["15132",{"2":{"149":1}}],["15130",{"2":{"134":1}}],["15167",{"2":{"134":1}}],["15162",{"2":{"133":1,"134":1}}],["15115",{"2":{"134":1}}],["15116",{"2":{"134":1}}],["15109",{"2":{"134":1}}],["15185",{"2":{"134":1}}],["15184",{"2":{"134":1}}],["15171",{"2":{"134":1}}],["15170",{"2":{"134":1}}],["15174",{"2":{"134":1}}],["15199",{"2":{"134":1}}],["15196",{"2":{"134":1}}],["15195",{"2":{"134":1}}],["150",{"2":{"350":1,"726":2,"727":1,"1319":1,"1502":1,"1503":1,"1610":1,"1612":1,"1939":1,"1971":2,"2922":2}}],["15088",{"2":{"149":1}}],["15083",{"2":{"149":1}}],["15029",{"2":{"134":2}}],["15020",{"2":{"134":1}}],["15021",{"2":{"134":1}}],["15073",{"2":{"134":1}}],["15068",{"2":{"134":1}}],["15055",{"2":{"134":1}}],["15019",{"2":{"134":1}}],["15014",{"2":{"134":1}}],["15017",{"2":{"134":1}}],["15012",{"2":{"134":1}}],["15011",{"2":{"134":1}}],["15010",{"2":{"134":1}}],["15018",{"2":{"134":1}}],["15047",{"2":{"134":1}}],["15040",{"2":{"134":2}}],["15031",{"2":{"134":1}}],["15034",{"2":{"134":1}}],["15037",{"2":{"133":1,"134":1}}],["1500",{"2":{"657":2,"1493":1}}],["15006",{"2":{"149":1}}],["15004",{"2":{"134":1}}],["15003",{"2":{"134":1}}],["15002",{"2":{"134":1}}],["18x4",{"2":{"1158":1}}],["18x8",{"2":{"1124":1}}],["18x11",{"2":{"1090":1}}],["18x12",{"2":{"724":1}}],["18499",{"2":{"199":1}}],["18455",{"2":{"191":1}}],["18450",{"2":{"191":1}}],["18459",{"2":{"191":1}}],["18449",{"2":{"191":1}}],["18441",{"2":{"191":1}}],["18477",{"2":{"191":1}}],["18475",{"2":{"191":1}}],["18472",{"2":{"191":1}}],["1840",{"2":{"211":1}}],["18408",{"2":{"191":1}}],["18403",{"2":{"191":1}}],["18402",{"2":{"191":1}}],["18404",{"2":{"190":1,"191":1}}],["18463",{"2":{"199":1}}],["18467",{"2":{"191":1}}],["18464",{"2":{"191":1}}],["18431",{"2":{"191":1}}],["18432",{"2":{"191":1}}],["18439",{"2":{"191":1}}],["18437",{"2":{"191":1}}],["18438880",{"2":{"149":1}}],["18428",{"2":{"191":1}}],["18426",{"2":{"191":1}}],["18423",{"2":{"191":1}}],["18424",{"2":{"191":1}}],["18421",{"2":{"191":1}}],["18414",{"2":{"191":1}}],["18419",{"2":{"191":1}}],["18418",{"2":{"191":1}}],["18417",{"2":{"191":1}}],["18415",{"2":{"191":1}}],["18521",{"2":{"249":1}}],["18527",{"2":{"191":1}}],["18581",{"2":{"191":1}}],["18588",{"2":{"188":1,"191":1}}],["18574",{"2":{"191":1}}],["18577",{"2":{"191":1}}],["18557",{"2":{"191":1}}],["18553",{"2":{"191":1}}],["18566",{"2":{"191":1}}],["18560",{"2":{"191":1}}],["18565",{"2":{"190":1,"191":1}}],["18545",{"2":{"191":1}}],["18544",{"2":{"191":1}}],["18593",{"2":{"191":1}}],["18594",{"2":{"191":1}}],["18599",{"2":{"191":1}}],["18592",{"2":{"191":1}}],["18513",{"2":{"190":1,"191":1}}],["183874",{"2":{"2410":1}}],["183883",{"2":{"2410":3}}],["18314",{"2":{"328":1}}],["18310",{"2":{"191":1}}],["18371",{"2":{"199":1}}],["18370",{"2":{"191":1}}],["18351",{"2":{"191":1}}],["18352",{"2":{"191":1}}],["18332",{"2":{"277":1}}],["18338",{"2":{"191":1}}],["18333",{"2":{"191":1}}],["18345",{"2":{"191":1}}],["18394",{"2":{"191":1}}],["18399",{"2":{"191":1}}],["18396",{"2":{"191":1}}],["18366",{"2":{"191":1}}],["18363",{"2":{"190":1,"191":1}}],["18323",{"2":{"191":1}}],["18309",{"2":{"189":1,"191":1}}],["187",{"2":{"1846":1,"2082":1}}],["18734",{"2":{"191":1}}],["18730",{"2":{"191":1}}],["18725",{"2":{"191":1}}],["18729",{"2":{"191":2}}],["18728",{"2":{"191":1}}],["18727",{"2":{"191":1}}],["18726",{"2":{"191":2}}],["18720",{"2":{"191":1}}],["18721",{"2":{"191":1}}],["18701",{"2":{"191":1}}],["18700",{"2":{"191":1}}],["18709",{"2":{"191":1}}],["18766",{"2":{"191":1}}],["18767",{"2":{"191":1}}],["18769",{"2":{"188":1,"191":1}}],["18751",{"2":{"191":1}}],["18753",{"2":{"191":2}}],["18750",{"2":{"191":1}}],["18716",{"2":{"191":1}}],["18715",{"2":{"191":1}}],["18714",{"2":{"191":1}}],["18717",{"2":{"191":1}}],["18710",{"2":{"188":1,"191":1}}],["18775",{"2":{"191":1}}],["18774",{"2":{"190":1,"191":1}}],["18776",{"2":{"189":1,"191":1}}],["18745",{"2":{"199":1}}],["18749",{"2":{"188":1,"191":1}}],["18740",{"2":{"188":1,"191":1}}],["18789",{"2":{"191":1}}],["18781",{"2":{"191":1}}],["18787",{"2":{"188":1,"191":1}}],["18782",{"2":{"188":1,"191":1}}],["18791",{"2":{"191":1}}],["18796",{"2":{"188":1,"191":1}}],["18792",{"2":{"188":1,"191":1}}],["18249",{"2":{"191":1}}],["18244",{"2":{"191":1}}],["18205",{"2":{"191":1}}],["18299",{"2":{"191":1}}],["18298",{"2":{"191":1}}],["18297",{"2":{"191":1}}],["18292",{"2":{"191":1}}],["18290",{"2":{"188":1,"191":1}}],["18268",{"2":{"191":1}}],["18262",{"2":{"191":1}}],["18260",{"2":{"191":1}}],["18259",{"2":{"191":1}}],["18215",{"2":{"191":2}}],["18212",{"2":{"191":1}}],["18289",{"2":{"191":1}}],["18279",{"2":{"191":1}}],["18274",{"2":{"191":1}}],["18271",{"2":{"188":1,"191":1}}],["18234",{"2":{"191":1}}],["18235",{"2":{"191":1}}],["18230",{"2":{"191":1}}],["18236",{"2":{"189":1,"191":1}}],["18224",{"2":{"191":1}}],["18228",{"2":{"191":1}}],["18222",{"2":{"191":1}}],["18654",{"2":{"191":1}}],["18650",{"2":{"191":1}}],["18651",{"2":{"191":1}}],["18659",{"2":{"190":1,"191":1}}],["18617",{"2":{"191":1}}],["18613",{"2":{"191":1}}],["18618",{"2":{"191":1}}],["18615",{"2":{"191":1}}],["18692",{"2":{"191":1}}],["18693",{"2":{"191":1}}],["18690",{"2":{"191":1}}],["18687",{"2":{"191":1}}],["18689",{"2":{"191":1}}],["18683",{"2":{"188":1,"191":1}}],["18649",{"2":{"191":1}}],["18640",{"2":{"191":1}}],["18641",{"2":{"191":1}}],["18643",{"2":{"188":1,"191":1}}],["18629",{"2":{"191":1}}],["18609",{"2":{"191":1}}],["18608",{"2":{"191":1}}],["18606",{"2":{"191":1}}],["18601",{"2":{"188":1,"191":1}}],["18638",{"2":{"211":1}}],["18635",{"2":{"191":1}}],["18631",{"2":{"191":1}}],["18637",{"2":{"189":1,"191":1}}],["18634",{"2":{"188":1,"191":1}}],["18668",{"2":{"191":1}}],["18667",{"2":{"191":1}}],["18662",{"2":{"191":1}}],["18669",{"2":{"188":1,"191":1}}],["18660",{"2":{"188":1,"191":1}}],["189kbps",{"2":{"570":1,"2275":1}}],["18915",{"2":{"199":1}}],["18910",{"2":{"191":1}}],["18921f",{"2":{"1493":1}}],["18921",{"2":{"191":1}}],["18924",{"2":{"191":1}}],["18984",{"2":{"191":1}}],["18982",{"2":{"191":1}}],["1897",{"2":{"750":1}}],["18977",{"2":{"191":1}}],["18979",{"2":{"191":1}}],["18978",{"2":{"191":1}}],["18974",{"2":{"191":1}}],["18973",{"2":{"191":1}}],["18972",{"2":{"188":1,"191":1}}],["18933",{"2":{"191":1}}],["18939",{"2":{"188":1,"191":1}}],["189000",{"2":{"1207":1}}],["18908",{"2":{"191":1}}],["18901",{"2":{"189":1,"191":1}}],["18992",{"2":{"191":1}}],["18999",{"2":{"191":1}}],["18997",{"2":{"191":1}}],["18991",{"2":{"191":1}}],["18998",{"2":{"191":1}}],["18996",{"2":{"191":1}}],["1895",{"2":{"749":1}}],["18954",{"2":{"191":1}}],["18956",{"2":{"191":1}}],["18959",{"2":{"191":1}}],["18952",{"2":{"191":1}}],["18951",{"2":{"191":1}}],["18958",{"2":{"188":1,"191":1}}],["18943",{"2":{"199":1}}],["18944",{"2":{"191":1}}],["18942",{"2":{"191":1}}],["18940",{"2":{"191":1,"199":1}}],["18949",{"2":{"191":1}}],["18948",{"2":{"191":1}}],["18947",{"2":{"191":1}}],["18946",{"2":{"191":1}}],["18965",{"2":{"191":1}}],["18969",{"2":{"191":1}}],["18961",{"2":{"188":1,"191":1}}],["18964",{"2":{"188":1,"191":1}}],["18963",{"2":{"188":1,"191":1}}],["18962",{"2":{"188":1,"191":1}}],["188",{"2":{"1846":1,"2082":1}}],["18822",{"2":{"191":1}}],["18852",{"2":{"199":1}}],["18855",{"2":{"191":1}}],["18859",{"2":{"191":1}}],["18858",{"2":{"191":1}}],["18887",{"2":{"191":1}}],["18884",{"2":{"191":1}}],["18886",{"2":{"191":1}}],["18882",{"2":{"188":1,"191":1}}],["18876",{"2":{"191":1}}],["18878",{"2":{"191":1}}],["18874",{"2":{"191":1}}],["18877",{"2":{"188":1,"191":1}}],["18860",{"2":{"191":1}}],["18866",{"2":{"191":1}}],["18867",{"2":{"191":1}}],["18864",{"2":{"188":1,"191":1}}],["18811",{"2":{"191":1}}],["18804",{"2":{"191":1}}],["18806",{"2":{"191":1}}],["18803",{"2":{"191":1}}],["18800",{"2":{"188":1,"191":2}}],["18807",{"2":{"188":1,"191":1}}],["18838",{"2":{"191":1}}],["18837",{"2":{"191":1}}],["18832",{"2":{"188":1,"191":1}}],["18834",{"2":{"188":1,"191":1}}],["18890",{"2":{"199":1}}],["18898",{"2":{"188":1,"191":1}}],["18893",{"2":{"188":1,"191":1}}],["18892",{"2":{"188":1,"191":1}}],["18840",{"2":{"191":1}}],["18847",{"2":{"188":1,"191":1}}],["18844",{"2":{"188":1,"191":1}}],["18843",{"2":{"188":1,"191":1}}],["18196",{"2":{"191":1}}],["18194",{"2":{"191":1}}],["18195",{"2":{"191":1}}],["18183",{"2":{"191":1}}],["18178",{"2":{"191":1}}],["18175",{"2":{"176":1}}],["18116",{"2":{"176":1}}],["18117",{"2":{"176":1}}],["18108",{"2":{"191":1}}],["18101",{"2":{"191":1}}],["18102",{"2":{"176":1}}],["18100",{"2":{"176":1}}],["18168",{"2":{"176":1}}],["18131",{"2":{"176":1}}],["18152",{"2":{"169":1,"176":1}}],["18",{"2":{"114":1,"413":1,"800":1,"860":1,"1027":1,"1492":1,"1527":1,"1686":1,"1744":3,"1845":1,"1968":2,"2018":3,"2520":3,"2536":3,"2673":1,"2714":1,"2779":3,"2788":1}}],["180°",{"2":{"1741":1}}],["18098",{"2":{"191":1}}],["18099",{"2":{"176":1}}],["18066",{"2":{"199":1}}],["18060",{"2":{"190":1,"191":1}}],["18067",{"2":{"176":1}}],["18063",{"2":{"176":1}}],["18028",{"2":{"176":1}}],["18025",{"2":{"176":1}}],["18020",{"2":{"176":1}}],["18029",{"2":{"176":1}}],["18036",{"2":{"191":1}}],["18039",{"2":{"176":1}}],["18038",{"2":{"176":1}}],["18032",{"2":{"176":1}}],["18037",{"2":{"176":1}}],["18059",{"2":{"285":1}}],["18058",{"2":{"191":1}}],["18050",{"2":{"176":1}}],["18056",{"2":{"176":1}}],["18057",{"2":{"176":1}}],["18018",{"2":{"176":1}}],["18016",{"2":{"176":1}}],["18011",{"2":{"176":1}}],["18044",{"2":{"191":1}}],["18043",{"2":{"176":1}}],["18045",{"2":{"176":1}}],["18042",{"2":{"176":1}}],["18006",{"2":{"191":1}}],["18008",{"2":{"176":1}}],["18007",{"2":{"176":1}}],["18000",{"2":{"176":1}}],["1800",{"2":{"57":2,"211":1,"308":1,"1967":1,"2797":1,"2800":1}}],["180",{"2":{"31":2,"34":2,"332":2,"337":2,"641":1,"1056":1,"1845":1,"1948":2,"1953":3,"1954":2,"1972":2,"1985":2,"1987":2,"2051":2,"2287":2,"2290":1,"2764":1}}],["14k5",{"2":{"1162":1}}],["14",{"2":{"413":1,"690":4,"1162":1,"1492":1,"1686":1,"1744":3,"1925":2,"1968":1,"2016":1,"2018":3,"2189":1,"2265":1,"2485":1,"2487":1,"2520":3,"2527":2,"2536":3,"2714":2,"2800":4}}],["14674",{"2":{"149":1}}],["14678",{"2":{"134":1}}],["14655",{"2":{"134":1}}],["14659",{"2":{"133":1,"134":1}}],["14639",{"2":{"134":1}}],["14662",{"2":{"134":1}}],["14699",{"2":{"134":1}}],["14600",{"2":{"134":1}}],["149",{"2":{"1846":1,"2082":1}}],["14944",{"2":{"266":1}}],["14948",{"2":{"149":1}}],["14947",{"2":{"134":1}}],["14934",{"2":{"134":1}}],["14906",{"2":{"134":1}}],["14989",{"2":{"149":1}}],["14982",{"2":{"134":1}}],["14983",{"2":{"134":1}}],["14980",{"2":{"134":1}}],["14967",{"2":{"134":1}}],["14969",{"2":{"133":1,"134":1}}],["14928",{"2":{"134":1}}],["14919",{"2":{"134":1}}],["14917",{"2":{"133":1,"134":1}}],["14975",{"2":{"134":1}}],["14973",{"2":{"134":1}}],["14976",{"2":{"133":1,"134":1}}],["14972",{"2":{"133":1,"134":1}}],["14814",{"2":{"199":1}}],["14877",{"2":{"176":1}}],["14879",{"2":{"134":1}}],["14872",{"2":{"134":1}}],["14864",{"2":{"134":1}}],["14848",{"2":{"134":1}}],["14835",{"2":{"134":1}}],["14839",{"2":{"133":1,"134":1}}],["14898",{"2":{"134":1}}],["14899",{"2":{"133":1,"134":1}}],["14895",{"2":{"133":1,"134":1}}],["14894",{"2":{"133":1,"134":1}}],["14888",{"2":{"133":1,"134":1}}],["14859",{"2":{"134":1}}],["14854",{"2":{"134":1}}],["14858",{"2":{"133":1,"134":1}}],["14855",{"2":{"133":1,"134":1}}],["1471",{"2":{"1975":1}}],["14713",{"2":{"134":1}}],["14764",{"2":{"749":2}}],["14760",{"2":{"133":1,"134":1}}],["14785",{"2":{"134":1}}],["14780",{"2":{"134":1}}],["14751",{"2":{"134":1}}],["14752",{"2":{"131":1,"134":1}}],["14730",{"2":{"134":1}}],["14775",{"2":{"134":1}}],["14747",{"2":{"134":1}}],["14749",{"2":{"134":1}}],["14740",{"2":{"134":1}}],["14745",{"2":{"133":1,"134":1}}],["14743",{"2":{"133":1,"134":1}}],["14720",{"2":{"134":1}}],["14729",{"2":{"134":1}}],["14727",{"2":{"133":1,"134":1}}],["14726",{"2":{"133":1,"134":1}}],["14723",{"2":{"133":1,"134":1}}],["14243",{"2":{"149":1}}],["14248",{"2":{"134":2}}],["14261",{"2":{"134":1}}],["14252",{"2":{"134":1}}],["14235",{"2":{"134":1}}],["14231",{"2":{"133":1,"134":1}}],["14289",{"2":{"134":1}}],["14200",{"2":{"176":1}}],["14208",{"2":{"134":1}}],["14206",{"2":{"134":1}}],["14201",{"2":{"134":1}}],["14207",{"2":{"133":1,"134":1}}],["14215",{"2":{"134":1}}],["14213",{"2":{"134":1}}],["14216",{"2":{"133":1,"134":1}}],["14210",{"2":{"133":1,"134":1}}],["144",{"2":{"887":1,"988":1,"1124":1,"1845":3,"2444":1}}],["14464",{"2":{"134":1}}],["14462",{"2":{"132":1,"134":1}}],["14452",{"2":{"191":1}}],["14455",{"2":{"134":1}}],["14454",{"2":{"134":1}}],["14456",{"2":{"133":1,"134":1}}],["14442",{"2":{"134":1}}],["14420",{"2":{"176":1}}],["14421",{"2":{"134":1}}],["14422",{"2":{"130":1,"134":1}}],["14497",{"2":{"134":1}}],["14490",{"2":{"134":1}}],["14496",{"2":{"134":1}}],["14415",{"2":{"134":1}}],["14413",{"2":{"134":1}}],["14419",{"2":{"134":1}}],["14408",{"2":{"134":1}}],["14404",{"2":{"133":1,"134":1}}],["14474",{"2":{"134":1}}],["14470",{"2":{"134":1}}],["14434",{"2":{"134":1}}],["14439",{"2":{"134":2}}],["14433",{"2":{"134":1}}],["14430",{"2":{"134":1}}],["14325",{"2":{"134":1}}],["14327",{"2":{"134":1}}],["14399",{"2":{"134":1}}],["14372",{"2":{"134":1}}],["14374",{"2":{"134":1}}],["14370",{"2":{"132":1,"134":1}}],["14343",{"2":{"134":1}}],["14348",{"2":{"133":1,"134":1}}],["14389",{"2":{"134":1}}],["14380",{"2":{"133":1,"134":1}}],["14388",{"2":{"130":1,"134":1}}],["14308",{"2":{"133":1,"134":1}}],["14580",{"2":{"149":1}}],["14584",{"2":{"130":1,"134":1}}],["14590",{"2":{"134":1}}],["14591",{"2":{"131":1,"134":1}}],["14546",{"2":{"134":1}}],["14508",{"2":{"134":1}}],["14530",{"2":{"133":1,"134":1}}],["14194",{"2":{"134":1}}],["14195",{"2":{"131":1,"134":1}}],["14181",{"2":{"134":1}}],["14155",{"2":{"134":1}}],["14150",{"2":{"114":1}}],["14174",{"2":{"134":1}}],["14171",{"2":{"114":1}}],["14172",{"2":{"114":1}}],["14118",{"2":{"114":1}}],["14146",{"2":{"114":1}}],["14142",{"2":{"114":1}}],["14140",{"2":{"114":1}}],["14144",{"2":{"114":2}}],["14123",{"2":{"114":1}}],["14120",{"2":{"114":1}}],["14106",{"2":{"114":1}}],["14108",{"2":{"114":1}}],["14105",{"2":{"114":1}}],["14136",{"2":{"114":1}}],["14133",{"2":{"114":1}}],["14134",{"2":{"113":1,"114":1}}],["14132",{"2":{"113":1,"114":1}}],["140",{"2":{"2917":1}}],["14091",{"2":{"149":1}}],["14095",{"2":{"114":1}}],["14090",{"2":{"114":1}}],["14097",{"2":{"114":1}}],["14052",{"2":{"114":1}}],["14051",{"2":{"114":1}}],["14017",{"2":{"114":1}}],["14065",{"2":{"149":1}}],["14061",{"2":{"114":1}}],["14063",{"2":{"114":1}}],["14048",{"2":{"114":1}}],["14045",{"2":{"114":1}}],["14033",{"2":{"134":1}}],["14039",{"2":{"114":1}}],["14038",{"2":{"114":1}}],["14005",{"2":{"114":1}}],["14007",{"2":{"114":1}}],["14089",{"2":{"114":1}}],["14084",{"2":{"114":1}}],["14080",{"2":{"114":1}}],["14083",{"2":{"114":2}}],["14079",{"2":{"114":1}}],["14025",{"2":{"113":1,"114":1}}],["12bit",{"2":{"1488":1}}],["12x12",{"2":{"988":1}}],["12x16",{"2":{"919":1}}],["12x8",{"2":{"954":1}}],["12x4",{"2":{"684":1}}],["12e3",{"2":{"294":1}}],["12e4",{"2":{"291":1}}],["12",{"2":{"199":1,"266":1,"354":1,"377":2,"379":1,"412":9,"413":1,"565":3,"688":1,"690":4,"696":1,"719":1,"826":1,"863":1,"1030":1,"1064":1,"1098":1,"1132":1,"1316":1,"1493":1,"1527":2,"1681":1,"1686":1,"1740":1,"1744":3,"1925":3,"1968":1,"2018":3,"2081":1,"2186":1,"2189":4,"2487":1,"2520":3,"2527":3,"2536":3,"2762":1}}],["12674",{"2":{"114":1}}],["12670",{"2":{"114":1,"134":1}}],["12671",{"2":{"94":1}}],["12632",{"2":{"114":1}}],["12637",{"2":{"114":1}}],["12633",{"2":{"93":1}}],["12692",{"2":{"134":1}}],["12691",{"2":{"134":1}}],["12699",{"2":{"114":1}}],["12697",{"2":{"94":1}}],["12689",{"2":{"114":1}}],["12685",{"2":{"93":1}}],["12669",{"2":{"114":1}}],["12641",{"2":{"114":1}}],["12602",{"2":{"94":1}}],["12600",{"2":{"93":1}}],["12625",{"2":{"94":1}}],["12626",{"2":{"94":1}}],["12651",{"2":{"93":1}}],["12617",{"2":{"114":1}}],["12619",{"2":{"93":1}}],["12613",{"2":{"86":1}}],["1252",{"2":{"2331":1}}],["125",{"2":{"1936":1,"1966":2}}],["1250",{"2":{"1285":1,"2910":1,"2912":1}}],["12508",{"2":{"130":1,"134":1}}],["12509",{"2":{"93":1}}],["12538",{"2":{"114":1}}],["12567",{"2":{"114":1}}],["12560",{"2":{"93":1}}],["12561",{"2":{"92":1}}],["12588",{"2":{"93":1}}],["12580",{"2":{"93":1}}],["121",{"2":{"1686":1}}],["12159",{"2":{"114":1}}],["12116",{"2":{"114":1}}],["12160",{"2":{"94":1}}],["12161",{"2":{"94":1}}],["12187",{"2":{"94":1}}],["12197",{"2":{"94":1}}],["12108",{"2":{"134":1}}],["12109",{"2":{"94":1}}],["12107",{"2":{"93":1}}],["12172",{"2":{"93":1}}],["12425",{"2":{"114":1}}],["12495",{"2":{"94":1}}],["12403",{"2":{"93":1}}],["12444",{"2":{"93":1}}],["12417",{"2":{"93":1}}],["12419",{"2":{"93":1}}],["12435",{"2":{"93":1}}],["12482",{"2":{"92":1}}],["123",{"2":{"1446":1,"1686":1}}],["12315",{"2":{"114":1}}],["12314",{"2":{"114":1}}],["12317",{"2":{"93":1}}],["12386",{"2":{"114":1}}],["12327",{"2":{"94":1}}],["12342",{"2":{"93":1}}],["12361",{"2":{"93":1}}],["122",{"2":{"207":5,"1686":1}}],["12240",{"2":{"114":1}}],["12249",{"2":{"94":1}}],["12238",{"2":{"114":1}}],["12237",{"2":{"93":1}}],["12211",{"2":{"114":1}}],["12216",{"2":{"93":1}}],["12284",{"2":{"94":1}}],["12286",{"2":{"94":1}}],["12258",{"2":{"93":1}}],["12226",{"2":{"86":1}}],["129",{"2":{"1527":2}}],["129u",{"2":{"766":1}}],["12950",{"2":{"134":1}}],["12951",{"2":{"114":1}}],["12947",{"2":{"131":1,"134":2}}],["12946",{"2":{"114":1}}],["12949",{"2":{"114":1}}],["12945",{"2":{"92":1}}],["12914",{"2":{"114":1}}],["12915",{"2":{"95":1}}],["12987",{"2":{"93":1}}],["12985",{"2":{"93":1}}],["12936",{"2":{"93":1}}],["12933",{"2":{"92":1}}],["12977",{"2":{"92":1}}],["12976",{"2":{"92":1}}],["128u",{"2":{"719":1}}],["128",{"2":{"688":1,"763":1,"1247":1,"1268":1,"1300":1,"1538":1,"1553":1,"1554":1,"1661":1,"1662":2,"1949":1,"1952":1,"1954":1,"1990":4,"2289":1,"2330":1,"2792":5,"2871":1,"2878":1}}],["128x40",{"2":{"2760":2}}],["128x128",{"2":{"1943":1,"1952":3,"2760":2}}],["128x32",{"2":{"339":1,"1943":2,"1952":1,"1953":1,"1954":1,"2283":1,"2289":1,"2760":1}}],["128x64",{"0":{"1952":1},"1":{"1953":1},"2":{"232":1,"1943":3,"1949":1,"1952":2,"2283":1,"2760":3}}],["12870",{"2":{"114":1}}],["12878",{"2":{"92":1}}],["12819",{"2":{"114":1}}],["12893",{"2":{"114":1}}],["12895",{"2":{"92":1}}],["12859",{"2":{"114":1}}],["12851",{"2":{"114":1}}],["12856",{"2":{"95":1}}],["12845",{"2":{"114":1}}],["12846",{"2":{"94":1}}],["12831",{"2":{"114":1}}],["12833",{"2":{"95":1}}],["12832",{"2":{"95":1}}],["12805",{"2":{"93":1}}],["12861",{"2":{"114":1}}],["12864",{"2":{"94":1}}],["12868",{"2":{"93":1}}],["12866",{"2":{"92":1}}],["12828",{"2":{"93":1}}],["12888",{"2":{"92":1}}],["12881",{"2":{"86":1}}],["127",{"2":{"176":1,"564":2,"1740":1,"1742":2,"1743":1,"1852":1,"1924":2,"1925":1,"1926":1,"1947":1,"1975":1,"1983":5,"1985":4,"1986":2,"1990":8,"1992":5,"2091":1,"2185":1,"2187":2,"2286":1,"2330":2,"2527":1}}],["12795",{"2":{"149":2}}],["12797",{"2":{"114":1}}],["12789",{"2":{"114":1}}],["12767",{"2":{"114":1}}],["12755",{"2":{"114":1}}],["12754",{"2":{"114":1}}],["12750",{"2":{"92":1}}],["12770",{"2":{"94":1}}],["12721",{"2":{"93":1}}],["12723",{"2":{"92":1}}],["120",{"2":{"1487":1,"1686":1,"1937":1,"1986":2,"2187":1,"2916":2,"2921":1}}],["12097",{"2":{"114":1}}],["12091",{"2":{"93":1}}],["12023",{"2":{"114":1}}],["12022",{"2":{"73":1}}],["12069",{"2":{"114":1}}],["12067",{"2":{"94":1}}],["12063",{"2":{"93":1}}],["12054",{"2":{"94":1}}],["12086",{"2":{"93":1}}],["12018",{"2":{"93":1}}],["12039",{"2":{"73":1}}],["12001",{"2":{"77":1}}],["12000",{"2":{"76":1,"1983":1}}],["120000",{"2":{"25":1}}],["1200",{"2":{"25":1,"1272":1,"1978":1,"1986":1}}],["11",{"0":{"1386":1},"2":{"160":1,"176":2,"191":1,"211":1,"249":1,"294":1,"379":2,"412":1,"413":1,"688":1,"690":4,"893":1,"1204":1,"1492":1,"1527":1,"1686":1,"1744":3,"1925":2,"2018":3,"2189":2,"2265":1,"2277":1,"2295":1,"2303":4,"2487":1,"2502":1,"2520":3,"2527":2,"2536":3,"2567":1,"2694":1,"2762":1,"2781":1}}],["112",{"2":{"1527":1,"1686":1,"1846":3,"2082":3,"2871":1,"2878":1}}],["11261",{"2":{"77":1}}],["11237",{"2":{"75":1}}],["118",{"2":{"1686":1}}],["11842",{"2":{"114":1}}],["11846",{"2":{"77":1}}],["11896",{"2":{"114":1}}],["11890",{"2":{"94":1}}],["11893",{"2":{"76":1}}],["11864",{"2":{"92":1}}],["11863",{"2":{"75":1}}],["11820",{"2":{"75":1}}],["11829",{"2":{"75":1}}],["11823",{"2":{"75":1}}],["11824",{"2":{"74":1}}],["11804",{"2":{"75":1}}],["11805",{"2":{"75":1}}],["119972",{"2":{"2410":2}}],["119",{"2":{"1686":1}}],["11988",{"2":{"93":1}}],["11981",{"2":{"72":1}}],["11978",{"2":{"86":1}}],["11927",{"2":{"77":1}}],["11928",{"2":{"76":1}}],["11930",{"2":{"107":1,"114":1}}],["11935",{"2":{"93":1}}],["11936",{"2":{"76":1}}],["11938",{"2":{"74":1}}],["11907",{"2":{"76":1}}],["11905",{"2":{"76":1}}],["11966",{"2":{"75":1}}],["11943",{"2":{"75":1}}],["11940",{"2":{"75":1}}],["11913",{"2":{"74":1}}],["11912",{"2":{"74":1}}],["11000010",{"2":{"2295":1}}],["11001000",{"2":{"2295":1}}],["110",{"2":{"1686":1,"2295":1,"2916":2,"2917":2}}],["11025u",{"2":{"719":1}}],["11036",{"2":{"134":1}}],["11083",{"2":{"93":1}}],["11059",{"2":{"134":2}}],["11055",{"2":{"93":1}}],["11057",{"2":{"74":1}}],["11046",{"2":{"74":1}}],["117",{"2":{"1022":1,"1527":1,"1686":1,"2081":1,"2183":1}}],["11727",{"2":{"93":1}}],["11728",{"2":{"73":1}}],["11793",{"2":{"77":1}}],["11750",{"2":{"75":1}}],["11751",{"2":{"75":1}}],["11768",{"2":{"74":1}}],["116",{"2":{"1527":5,"1686":1}}],["11621",{"2":{"77":1}}],["11620",{"2":{"77":1}}],["11615",{"2":{"77":1}}],["11617",{"2":{"77":1}}],["11646",{"2":{"77":1}}],["11630",{"2":{"77":1}}],["11637",{"2":{"75":1}}],["11607",{"2":{"77":1}}],["11600",{"2":{"73":1}}],["11689",{"2":{"77":1}}],["11688",{"2":{"76":1}}],["11687",{"2":{"74":1}}],["11672",{"2":{"75":1}}],["113",{"2":{"1686":1}}],["11350",{"2":{"74":1}}],["11307",{"2":{"74":1}}],["111",{"2":{"1686":1}}],["11151",{"2":{"114":1}}],["11154",{"2":{"74":1}}],["11123",{"2":{"77":1}}],["11111",{"2":{"77":1}}],["11108",{"2":{"76":1}}],["11101",{"2":{"76":1}}],["11165",{"2":{"75":1}}],["11168",{"2":{"75":1}}],["11162",{"2":{"73":1}}],["11195",{"2":{"72":1}}],["115",{"2":{"1523":2,"1686":1}}],["115200",{"2":{"1207":1,"1272":1,"2298":1}}],["11528",{"2":{"199":1}}],["11529",{"2":{"77":1}}],["11536",{"2":{"93":1}}],["11588",{"2":{"77":1}}],["11584",{"2":{"73":1}}],["11504",{"2":{"77":1}}],["11502",{"2":{"76":1}}],["11548",{"2":{"76":1}}],["11544",{"2":{"76":1}}],["11542",{"2":{"76":1}}],["11576",{"2":{"75":1}}],["11570",{"2":{"74":1}}],["11553",{"2":{"74":1}}],["11552",{"2":{"74":1}}],["11519",{"2":{"74":1}}],["11598",{"2":{"77":1}}],["11595",{"2":{"74":1}}],["11594",{"2":{"73":1}}],["114",{"2":{"1527":2,"1686":1,"1925":1,"2527":1}}],["11487",{"2":{"92":1}}],["11495",{"2":{"77":1}}],["11492",{"2":{"76":1}}],["11408",{"2":{"76":1}}],["11409",{"2":{"73":1}}],["11422",{"2":{"114":1}}],["11426",{"2":{"74":1}}],["11427",{"2":{"73":1}}],["11450",{"2":{"73":1}}],["11435",{"2":{"73":1}}],["11473",{"2":{"73":1}}],["11449",{"2":{"77":1}}],["11447",{"2":{"73":1}}],["11448",{"2":{"73":1}}],["11414",{"2":{"77":1}}],["11413",{"2":{"77":1}}],["11418",{"2":{"74":1}}],["11412",{"2":{"73":1}}],["11415",{"2":{"72":1}}],["1360",{"2":{"2587":1}}],["13606",{"2":{"114":1}}],["13697",{"2":{"114":1}}],["13696",{"2":{"114":1}}],["13695",{"2":{"114":1}}],["13692",{"2":{"114":1}}],["13691",{"2":{"114":1}}],["13690",{"2":{"114":1}}],["13698",{"2":{"114":1}}],["13668",{"2":{"114":1}}],["13667",{"2":{"114":1}}],["13665",{"2":{"114":1}}],["13664",{"2":{"114":1}}],["13658",{"2":{"114":1}}],["13653",{"2":{"114":1}}],["13633",{"2":{"114":1}}],["13688",{"2":{"114":1}}],["13687",{"2":{"114":1}}],["13686",{"2":{"114":1}}],["13685",{"2":{"114":1}}],["13684",{"2":{"114":1}}],["13681",{"2":{"114":1}}],["13689",{"2":{"114":1}}],["13680",{"2":{"114":1}}],["13648",{"2":{"114":1}}],["13647",{"2":{"114":1}}],["13646",{"2":{"114":1}}],["13645",{"2":{"114":1}}],["13649",{"2":{"114":1}}],["13641",{"2":{"114":1}}],["13629",{"2":{"114":1}}],["13677",{"2":{"114":2}}],["13672",{"2":{"114":1}}],["13671",{"2":{"114":1}}],["13676",{"2":{"114":1}}],["13673",{"2":{"113":1,"114":1}}],["135°",{"2":{"1741":1}}],["135",{"2":{"855":1,"1503":1,"1845":1}}],["13546",{"2":{"114":1}}],["13542",{"2":{"114":1}}],["13525",{"2":{"114":1}}],["13523",{"2":{"107":1,"114":1}}],["13533",{"2":{"114":1}}],["13511",{"2":{"114":1}}],["13597",{"2":{"114":1}}],["13596",{"2":{"114":1}}],["13571",{"2":{"114":1}}],["13570",{"2":{"114":1}}],["13551",{"2":{"114":1}}],["13550",{"2":{"114":1}}],["13559",{"2":{"114":1}}],["13504",{"2":{"114":1}}],["13502",{"2":{"114":1}}],["13588",{"2":{"114":1}}],["13566",{"2":{"114":1}}],["134217728",{"2":{"2508":1}}],["13425",{"2":{"114":1}}],["13471",{"2":{"114":1}}],["13470",{"2":{"114":1}}],["13404",{"2":{"114":1}}],["13405",{"2":{"114":1}}],["13403",{"2":{"114":1}}],["13481",{"2":{"114":1}}],["13480",{"2":{"114":1}}],["13442",{"2":{"114":1}}],["13457",{"2":{"114":1}}],["13454",{"2":{"114":1}}],["13450",{"2":{"114":1}}],["13433",{"2":{"114":1}}],["13430",{"2":{"114":1}}],["13418",{"2":{"107":1,"114":1}}],["13310",{"2":{"114":1}}],["13312",{"2":{"113":1,"114":1}}],["13371",{"2":{"114":1}}],["1337",{"2":{"114":1}}],["13377",{"2":{"114":1}}],["13398",{"2":{"114":1}}],["13399",{"2":{"114":1}}],["13389",{"2":{"114":1}}],["13383",{"2":{"114":1}}],["13366",{"2":{"114":1}}],["13360",{"2":{"114":1}}],["13350",{"2":{"114":1}}],["13349",{"2":{"114":1}}],["13333",{"2":{"114":1}}],["13330",{"2":{"114":2}}],["13321",{"2":{"114":1}}],["13304",{"2":{"114":1}}],["13309",{"2":{"114":1}}],["13302",{"2":{"114":1}}],["132x162",{"2":{"2760":1,"2763":1}}],["132x64",{"2":{"1949":1}}],["132",{"2":{"2410":1}}],["13286",{"2":{"154":1,"160":1}}],["13243",{"2":{"114":1}}],["13247",{"2":{"114":1}}],["13209",{"2":{"114":1}}],["13201",{"2":{"114":1}}],["13271",{"2":{"114":1}}],["13228",{"2":{"114":1}}],["13297",{"2":{"114":1}}],["13298",{"2":{"114":1}}],["13296",{"2":{"114":1}}],["13293",{"2":{"114":1}}],["13253",{"2":{"114":1}}],["13251",{"2":{"114":1}}],["13257",{"2":{"114":1}}],["13252",{"2":{"114":1}}],["13236",{"2":{"114":1}}],["13239",{"2":{"114":1}}],["13238",{"2":{"114":1}}],["13237",{"2":{"114":1}}],["131",{"2":{"1527":1}}],["13146",{"2":{"114":1}}],["13147",{"2":{"114":1}}],["13189",{"2":{"114":1}}],["13165",{"2":{"114":1}}],["13172",{"2":{"114":1}}],["13154",{"2":{"114":1}}],["13152",{"2":{"114":1}}],["13151",{"2":{"114":1}}],["13150",{"2":{"114":1}}],["13955",{"2":{"134":1}}],["13954",{"2":{"114":1}}],["13944",{"2":{"134":1}}],["13993",{"2":{"114":1}}],["13992",{"2":{"114":1}}],["13988",{"2":{"114":1}}],["13980",{"2":{"114":1}}],["13985",{"2":{"114":1}}],["13979",{"2":{"114":1}}],["13973",{"2":{"113":1,"114":1}}],["13937",{"2":{"114":1}}],["13931",{"2":{"114":1}}],["13932",{"2":{"114":1}}],["13918",{"2":{"133":1,"134":1}}],["13913",{"2":{"114":1}}],["13912",{"2":{"114":1}}],["13902",{"2":{"134":1}}],["13900",{"2":{"114":1}}],["13908",{"2":{"114":1}}],["13905",{"2":{"114":1}}],["13901",{"2":{"114":1}}],["13968",{"2":{"114":1}}],["13926",{"2":{"114":1}}],["13920",{"2":{"114":1}}],["13927",{"2":{"113":1,"114":1}}],["13810",{"2":{"114":1}}],["13819",{"2":{"114":1}}],["13886",{"2":{"114":1}}],["13885",{"2":{"114":1}}],["13872",{"2":{"114":1}}],["13877",{"2":{"114":1}}],["13838",{"2":{"114":1}}],["13831",{"2":{"114":1}}],["13832",{"2":{"114":1}}],["13830",{"2":{"114":1}}],["13826",{"2":{"114":1}}],["13821",{"2":{"114":1}}],["13823",{"2":{"114":1}}],["13850",{"2":{"114":1}}],["13890",{"2":{"133":1,"134":1}}],["13898",{"2":{"114":1}}],["13896",{"2":{"114":1}}],["13894",{"2":{"113":1,"114":1}}],["13801",{"2":{"114":1}}],["13804",{"2":{"114":1}}],["13800",{"2":{"114":1}}],["13842",{"2":{"134":1}}],["13846",{"2":{"114":1}}],["13843",{"2":{"113":1,"114":1}}],["137000",{"2":{"1207":1}}],["13706",{"2":{"114":1}}],["137kbps",{"2":{"570":1,"2275":1}}],["13789",{"2":{"134":1}}],["13724",{"2":{"114":1}}],["13722",{"2":{"114":1}}],["13720",{"2":{"114":1}}],["13728",{"2":{"114":1}}],["13799",{"2":{"114":1}}],["1375",{"2":{"1966":1}}],["13758",{"2":{"114":1}}],["13755",{"2":{"114":1}}],["13731",{"2":{"114":1}}],["13716",{"2":{"114":1}}],["13717",{"2":{"114":1}}],["13715",{"2":{"114":1}}],["13718",{"2":{"114":1}}],["13713",{"2":{"114":1}}],["13712",{"2":{"114":1}}],["13777",{"2":{"113":1,"114":1}}],["13740",{"2":{"114":1}}],["13747",{"2":{"114":1}}],["13749",{"2":{"113":1,"114":1}}],["13748",{"2":{"113":1,"114":1}}],["130",{"2":{"1527":2,"2096":1,"2910":1,"2912":1,"2917":1}}],["13056",{"2":{"114":1}}],["13098",{"2":{"114":1}}],["13089",{"2":{"114":1}}],["13081",{"2":{"107":1,"114":1}}],["13078",{"2":{"114":1}}],["13077",{"2":{"114":1}}],["13076",{"2":{"114":1}}],["13074",{"2":{"114":1}}],["13070",{"2":{"114":1}}],["13069",{"2":{"114":1}}],["13065",{"2":{"114":1}}],["13064",{"2":{"114":1}}],["13062",{"2":{"114":1}}],["13045",{"2":{"114":1}}],["13044",{"2":{"114":1}}],["13025",{"2":{"114":1}}],["13023",{"2":{"94":1}}],["13024",{"2":{"93":1}}],["13014",{"2":{"93":1}}],["13",{"2":{"70":1,"413":1,"688":1,"690":4,"1166":1,"1205":1,"1219":1,"1492":1,"1686":1,"1744":3,"1925":2,"1968":1,"2018":3,"2189":2,"2374":1,"2487":1,"2520":3,"2527":2,"2536":3,"2783":2,"2800":2}}],["17915",{"2":{"199":1}}],["17911",{"2":{"176":1}}],["17962",{"2":{"190":1,"191":1}}],["17999",{"2":{"176":1}}],["17996",{"2":{"176":1}}],["17989",{"2":{"176":1}}],["17935",{"2":{"191":1}}],["17936",{"2":{"176":1}}],["17931",{"2":{"176":1}}],["17905",{"2":{"176":1}}],["17904",{"2":{"176":2}}],["17923",{"2":{"176":1}}],["17940",{"2":{"167":1,"176":1}}],["17893",{"2":{"211":1}}],["17892",{"2":{"191":1}}],["17880",{"2":{"191":1}}],["17839",{"2":{"176":1}}],["17832",{"2":{"176":1}}],["17817",{"2":{"176":1}}],["17808",{"2":{"176":1}}],["17800",{"2":{"176":1}}],["17803",{"2":{"176":1}}],["17850",{"2":{"176":1}}],["17856",{"2":{"176":1}}],["17855",{"2":{"176":1}}],["17854",{"2":{"176":1}}],["17853",{"2":{"176":1}}],["17862",{"2":{"176":1}}],["17867",{"2":{"176":1}}],["17868",{"2":{"176":1}}],["17863",{"2":{"176":1}}],["17861",{"2":{"176":1}}],["17866",{"2":{"176":1}}],["17864",{"2":{"176":1}}],["17842",{"2":{"176":1}}],["17848",{"2":{"176":1}}],["17840",{"2":{"176":1}}],["17820",{"2":{"199":1}}],["17827",{"2":{"176":1}}],["17823",{"2":{"176":1}}],["17723",{"2":{"191":1}}],["17798",{"2":{"176":1}}],["17795",{"2":{"176":1}}],["17790",{"2":{"176":1}}],["17791",{"2":{"176":1}}],["17716",{"2":{"176":1}}],["17711",{"2":{"176":1}}],["17777",{"2":{"176":1}}],["17776",{"2":{"175":1,"176":1}}],["17732",{"2":{"176":1}}],["17735",{"2":{"176":1}}],["17734",{"2":{"176":1}}],["17786",{"2":{"176":1}}],["17755",{"2":{"176":1}}],["17760",{"2":{"176":1}}],["17748",{"2":{"176":1}}],["17745",{"2":{"176":1}}],["17740",{"2":{"176":1}}],["17706",{"2":{"191":1}}],["17702",{"2":{"176":1}}],["17707",{"2":{"176":1}}],["17708",{"2":{"176":1}}],["17703",{"2":{"176":1}}],["17693",{"2":{"176":1}}],["17695",{"2":{"176":1}}],["17663",{"2":{"191":1}}],["17661",{"2":{"176":1}}],["17669",{"2":{"176":1}}],["17678",{"2":{"176":1}}],["17675",{"2":{"176":1}}],["17679",{"2":{"176":1}}],["17638",{"2":{"176":1}}],["17632",{"2":{"176":1}}],["17639",{"2":{"176":1}}],["17684",{"2":{"176":1}}],["17658",{"2":{"176":1}}],["17656",{"2":{"176":1}}],["17652",{"2":{"176":1}}],["17655",{"2":{"176":1}}],["17654",{"2":{"176":1}}],["17651",{"2":{"176":1}}],["17650",{"2":{"176":1}}],["17645",{"2":{"176":1}}],["17647",{"2":{"176":1}}],["17643",{"2":{"176":1}}],["17615",{"2":{"176":1}}],["17611",{"2":{"176":1}}],["17612",{"2":{"176":1}}],["17613",{"2":{"175":1,"176":1}}],["17601",{"2":{"176":1}}],["17607",{"2":{"176":1}}],["17603",{"2":{"176":1}}],["17602",{"2":{"176":1}}],["175ms",{"2":{"2309":2}}],["175",{"2":{"1503":1,"2309":1}}],["17588",{"2":{"199":1}}],["17584",{"2":{"176":1}}],["17534",{"2":{"176":1}}],["17533",{"2":{"176":1}}],["17593",{"2":{"176":1}}],["17595",{"2":{"176":1}}],["17522",{"2":{"176":1}}],["17549",{"2":{"176":1}}],["17545",{"2":{"176":1}}],["17540",{"2":{"176":1}}],["17559",{"2":{"176":1}}],["17557",{"2":{"176":1}}],["17554",{"2":{"176":1}}],["17501",{"2":{"176":1}}],["17507",{"2":{"176":1}}],["17506",{"2":{"176":1}}],["17579",{"2":{"176":1}}],["17578",{"2":{"176":1}}],["17512",{"2":{"176":1}}],["17519",{"2":{"176":1}}],["17517",{"2":{"176":1}}],["17516",{"2":{"176":1}}],["17514",{"2":{"176":1}}],["174",{"2":{"251":1,"1329":2}}],["17463",{"2":{"176":1}}],["17414",{"2":{"176":1}}],["17492",{"2":{"176":1}}],["17459",{"2":{"176":2}}],["17439",{"2":{"176":1}}],["17435",{"2":{"176":1}}],["17438",{"2":{"176":2}}],["17423",{"2":{"176":2}}],["17426",{"2":{"176":1}}],["17420",{"2":{"176":1}}],["17488",{"2":{"176":1}}],["17481",{"2":{"176":1}}],["17482",{"2":{"175":2,"176":1}}],["17440",{"2":{"176":1}}],["17448",{"2":{"176":1}}],["17444",{"2":{"176":1}}],["17371",{"2":{"176":1}}],["17376",{"2":{"176":1}}],["17335",{"2":{"176":1}}],["17333",{"2":{"176":1}}],["17383",{"2":{"176":1}}],["17385",{"2":{"176":1}}],["17387",{"2":{"176":1}}],["17368",{"2":{"176":1}}],["17397",{"2":{"176":1}}],["17399",{"2":{"176":1}}],["17396",{"2":{"176":1}}],["17354",{"2":{"176":1}}],["17356",{"2":{"176":1}}],["17355",{"2":{"176":1}}],["17352",{"2":{"176":1}}],["17342",{"2":{"176":1}}],["17326",{"2":{"176":1}}],["172",{"2":{"1329":2}}],["17282",{"2":{"199":1}}],["17287",{"2":{"176":1}}],["17265",{"2":{"176":1}}],["17263",{"2":{"176":1}}],["17234",{"2":{"176":1}}],["17232",{"2":{"176":1}}],["17231",{"2":{"176":1}}],["17210",{"2":{"176":1}}],["17295",{"2":{"176":1}}],["17275",{"2":{"176":1}}],["17272",{"2":{"176":1}}],["17271",{"2":{"176":1}}],["17258",{"2":{"176":1}}],["17257",{"2":{"176":1}}],["17256",{"2":{"176":1}}],["17229",{"2":{"176":1}}],["17228",{"2":{"176":1}}],["17222",{"2":{"176":1}}],["170",{"2":{"2187":1}}],["17007",{"2":{"199":1}}],["17046",{"2":{"176":1}}],["17099",{"2":{"176":1}}],["17091",{"2":{"176":1}}],["17095",{"2":{"160":1}}],["17065",{"2":{"176":1}}],["17028",{"2":{"199":1}}],["17020",{"2":{"176":1}}],["17025",{"2":{"160":1}}],["17024",{"2":{"160":1}}],["17037",{"2":{"156":1,"160":1}}],["17189",{"2":{"191":1}}],["17184",{"2":{"176":1}}],["17129",{"2":{"191":1}}],["17174",{"2":{"176":1}}],["17178",{"2":{"176":1}}],["17176",{"2":{"175":1,"176":1}}],["17143",{"2":{"176":1}}],["17142",{"2":{"176":1}}],["17114",{"2":{"176":1}}],["17111",{"2":{"175":1,"176":1}}],["17156",{"2":{"160":1}}],["17150",{"2":{"160":1}}],["17136",{"2":{"160":1}}],["17133",{"2":{"160":1}}],["17104",{"2":{"160":1}}],["17106",{"2":{"160":1}}],["17",{"2":{"55":2,"111":2,"312":1,"413":1,"1492":1,"1527":1,"1686":1,"1744":3,"1968":1,"2018":3,"2182":2,"2454":2,"2520":3,"2536":3,"2794":2,"2877":2,"2937":1}}],["10glbprf",{"2":{"2295":1}}],["10kohm",{"2":{"2267":1}}],["10kω",{"2":{"1297":1}}],["10ms",{"2":{"1974":1,"2912":1}}],["10µf",{"2":{"1697":1}}],["103",{"2":{"1686":1}}],["10388",{"2":{"63":1}}],["10bits",{"2":{"696":1}}],["10bit",{"2":{"696":1}}],["109",{"2":{"1686":1}}],["10904",{"2":{"114":1}}],["10997",{"2":{"74":1}}],["10976",{"2":{"77":1}}],["10973",{"2":{"72":1}}],["10974",{"2":{"65":1}}],["10972",{"2":{"65":1}}],["106",{"2":{"1686":1}}],["10638",{"2":{"65":1}}],["10622",{"2":{"63":1}}],["108",{"2":{"1527":1,"1686":1}}],["10817",{"2":{"76":1}}],["10894",{"2":{"75":1}}],["10807",{"2":{"74":1}}],["10800",{"2":{"62":1}}],["10840",{"2":{"65":1}}],["10824",{"2":{"65":1}}],["10837",{"2":{"64":1}}],["104",{"2":{"1527":2,"1686":1}}],["10419",{"2":{"92":1}}],["10418",{"2":{"77":1}}],["10417",{"2":{"65":1}}],["10400",{"2":{"74":1}}],["10437",{"2":{"73":1}}],["10438",{"2":{"65":1}}],["10439",{"2":{"63":1}}],["10420",{"2":{"65":1}}],["10491",{"2":{"64":1}}],["107",{"2":{"1686":1}}],["10730",{"2":{"74":1}}],["10735",{"2":{"64":1}}],["10767",{"2":{"65":1}}],["10716",{"2":{"65":1}}],["10750",{"2":{"64":1}}],["10706",{"2":{"63":1}}],["105",{"2":{"1527":1,"1686":1}}],["10533",{"2":{"114":1}}],["10530",{"2":{"65":1}}],["10528",{"2":{"72":1}}],["10524",{"2":{"64":1}}],["10563",{"2":{"65":1}}],["10549",{"2":{"63":1}}],["102",{"2":{"1686":1,"1925":1,"2527":1}}],["102559237",{"2":{"1359":1}}],["10259",{"2":{"63":1}}],["1024",{"2":{"748":1,"757":6,"759":3,"1974":1,"2508":2,"2761":1}}],["1023",{"2":{"685":1,"1968":1}}],["10231",{"2":{"65":1}}],["10214",{"2":{"65":1}}],["10206",{"2":{"65":1}}],["10204",{"2":{"63":1}}],["10260",{"2":{"63":1}}],["10",{"0":{"1386":1},"2":{"55":1,"73":1,"111":2,"114":1,"413":1,"561":1,"570":1,"610":1,"643":1,"685":1,"688":1,"690":4,"696":3,"744":1,"764":1,"768":1,"1361":1,"1412":1,"1484":1,"1492":1,"1527":1,"1538":2,"1539":1,"1627":1,"1667":1,"1686":4,"1740":2,"1744":3,"1925":3,"1935":3,"1936":1,"1968":2,"1970":1,"1980":1,"1986":1,"2003":2,"2018":3,"2187":2,"2189":1,"2275":1,"2278":1,"2303":4,"2327":1,"2409":1,"2454":1,"2485":2,"2487":3,"2494":1,"2502":1,"2520":3,"2527":3,"2536":3,"2764":1,"2858":1,"2877":2,"2880":2,"2912":1,"2936":1}}],["10101100",{"2":{"2295":1}}],["10101000",{"2":{"2295":1}}],["10103",{"2":{"50":1}}],["101",{"2":{"207":1,"1527":2,"1686":1,"1968":1}}],["10174",{"2":{"160":1}}],["10171",{"2":{"93":1}}],["10179",{"2":{"63":1}}],["10183",{"2":{"63":1}}],["10127",{"2":{"50":1}}],["10129",{"2":{"50":1}}],["10169",{"2":{"49":1}}],["100ms",{"2":{"2776":2}}],["100ma",{"2":{"134":1}}],["100644",{"2":{"2410":1}}],["100k",{"2":{"1376":1}}],["10088",{"2":{"62":1,"114":1}}],["1000ms",{"2":{"1462":1,"1686":1}}],["1000",{"2":{"120":1,"1420":1,"1441":1,"1448":1,"1462":1,"1801":1,"1936":1,"1939":2,"1978":2,"1981":1,"1997":1,"2003":2,"2046":1,"2882":1}}],["10008",{"2":{"50":1}}],["10000000",{"2":{"2296":3}}],["1000000",{"2":{"1974":1}}],["100000l",{"2":{"561":2}}],["100000",{"2":{"11":1,"765":1,"1376":1}}],["10053",{"2":{"50":1}}],["10040",{"2":{"50":1}}],["100",{"0":{"2307":1,"2314":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"25":2,"273":1,"564":2,"570":1,"720":2,"744":2,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1291":1,"1466":1,"1488":1,"1583":1,"1586":1,"1588":1,"1681":1,"1686":1,"1936":1,"1939":1,"1968":3,"1980":1,"1982":2,"1983":2,"2003":2,"2187":2,"2275":1,"2314":1,"2410":7,"2454":2,"2502":3,"2615":2,"2685":1,"2764":2,"2776":1,"2858":2,"2883":2,"2911":2}}],["16bit",{"2":{"2892":1}}],["16bpp",{"2":{"2763":3}}],["16mb",{"2":{"2778":1}}],["16mhz",{"2":{"2484":1,"2499":2}}],["16ms",{"2":{"1852":1,"2091":1}}],["16t",{"2":{"2252":1}}],["16th",{"2":{"1493":1}}],["16k",{"2":{"925":2,"959":2,"993":2,"1027":2,"1061":2}}],["16kb",{"2":{"545":1}}],["16x2",{"2":{"1697":1,"1712":2}}],["16x",{"2":{"1684":1,"1685":1}}],["16x12",{"2":{"1214":1}}],["16x9",{"2":{"887":1}}],["16x8",{"2":{"855":1,"2764":1}}],["16c0",{"2":{"713":3,"2500":1,"2501":2}}],["16411",{"2":{"1329":1}}],["16436",{"2":{"176":1}}],["16438",{"2":{"160":1}}],["16423",{"2":{"160":1}}],["16441",{"2":{"160":1}}],["169",{"2":{"1329":2}}],["16992",{"2":{"176":1}}],["16996",{"2":{"176":1}}],["16990",{"2":{"176":1}}],["16997",{"2":{"160":1}}],["16949",{"2":{"176":1}}],["16941",{"2":{"160":1}}],["16932",{"2":{"176":1}}],["16939",{"2":{"160":1}}],["16974",{"2":{"160":1}}],["16958",{"2":{"160":1}}],["16951",{"2":{"160":2}}],["16957",{"2":{"160":1}}],["16915",{"2":{"160":1}}],["16961",{"2":{"160":1}}],["16960",{"2":{"160":1}}],["16926",{"2":{"160":1}}],["16909",{"2":{"160":1}}],["16810",{"2":{"176":1}}],["16800",{"2":{"176":1}}],["16806",{"2":{"160":1}}],["16879",{"2":{"176":1}}],["16875",{"2":{"160":1}}],["16874",{"2":{"160":1}}],["16871",{"2":{"160":1}}],["16865",{"2":{"160":1}}],["16863",{"2":{"160":1}}],["16869",{"2":{"160":1}}],["16827",{"2":{"160":1}}],["16892",{"2":{"160":1}}],["16891",{"2":{"160":1}}],["16859",{"2":{"160":2}}],["16843",{"2":{"160":1}}],["16778",{"2":{"176":1}}],["16770",{"2":{"160":1}}],["16773",{"2":{"160":1}}],["16716",{"2":{"160":1}}],["16718",{"2":{"160":1}}],["16705",{"2":{"160":1}}],["16706",{"2":{"160":1}}],["16702",{"2":{"160":1}}],["16723",{"2":{"160":1}}],["16728",{"2":{"160":1}}],["16782",{"2":{"160":1}}],["16785",{"2":{"160":1}}],["16783",{"2":{"160":1}}],["16738",{"2":{"160":1}}],["16737",{"2":{"160":1}}],["16732",{"2":{"160":1}}],["16689",{"2":{"236":1}}],["16681",{"2":{"160":1}}],["16699",{"2":{"199":1}}],["16669",{"2":{"176":1}}],["16668",{"2":{"173":1,"176":1}}],["16667",{"2":{"160":1}}],["16620",{"2":{"160":1}}],["16621",{"2":{"160":1}}],["16617",{"2":{"160":1}}],["16614",{"2":{"160":1}}],["16611",{"2":{"160":1}}],["16630",{"2":{"160":1}}],["16637",{"2":{"160":1}}],["16635",{"2":{"160":1}}],["16640",{"2":{"160":1}}],["16649",{"2":{"160":1}}],["16647",{"2":{"160":1}}],["16600",{"2":{"160":1}}],["16584",{"2":{"176":1}}],["16588",{"2":{"160":1}}],["16597",{"2":{"160":1}}],["16596",{"2":{"160":1}}],["16593",{"2":{"160":1}}],["16559",{"2":{"160":1}}],["16523",{"2":{"160":1}}],["16525",{"2":{"160":1}}],["16505",{"2":{"160":1}}],["16516",{"2":{"160":1}}],["16518",{"2":{"160":1}}],["16561",{"2":{"160":1}}],["16543",{"2":{"160":1}}],["16303",{"2":{"1329":1}}],["16300",{"2":{"149":1}}],["16384",{"2":{"757":2}}],["16384u",{"2":{"719":1}}],["16394",{"2":{"176":1}}],["16336",{"2":{"176":1}}],["16339",{"2":{"160":1}}],["16337",{"2":{"160":1}}],["16331",{"2":{"160":1}}],["16359",{"2":{"149":1}}],["16358",{"2":{"149":1}}],["16357",{"2":{"149":1}}],["16348",{"2":{"149":1}}],["16315",{"2":{"160":1}}],["16316",{"2":{"149":1}}],["16312",{"2":{"149":1}}],["16371",{"2":{"175":2,"176":1}}],["16370",{"2":{"160":1}}],["16378",{"2":{"149":1}}],["16376",{"2":{"149":1}}],["162",{"2":{"1247":1}}],["16269",{"2":{"160":1}}],["16266",{"2":{"160":1}}],["16268",{"2":{"149":1}}],["16292",{"2":{"149":1}}],["16290",{"2":{"149":1}}],["16276",{"2":{"149":1}}],["16277",{"2":{"149":1}}],["16230",{"2":{"149":1}}],["16208",{"2":{"149":1}}],["16287",{"2":{"176":1}}],["16282",{"2":{"149":1}}],["16280",{"2":{"149":1}}],["16257",{"2":{"160":1}}],["16251",{"2":{"160":1}}],["16256",{"2":{"149":1}}],["16252",{"2":{"149":1}}],["16254",{"2":{"149":1}}],["16215",{"2":{"149":1}}],["16217",{"2":{"149":1}}],["16228",{"2":{"149":1}}],["16222",{"2":{"149":1}}],["16225",{"2":{"149":1}}],["16221",{"2":{"149":1}}],["16220",{"2":{"149":2}}],["16188",{"2":{"149":1}}],["16181",{"2":{"149":1}}],["16185",{"2":{"149":1}}],["16163",{"2":{"176":1}}],["16168",{"2":{"149":1}}],["16167",{"2":{"149":1}}],["16166",{"2":{"149":1}}],["16162",{"2":{"149":1}}],["16157",{"2":{"149":1}}],["16135",{"2":{"149":1}}],["16134",{"2":{"149":1}}],["16128",{"2":{"149":1}}],["16127",{"2":{"149":1}}],["16114",{"2":{"160":1}}],["16116",{"2":{"149":1}}],["16113",{"2":{"149":1}}],["16112",{"2":{"149":1}}],["16107",{"2":{"149":1}}],["16109",{"2":{"149":1}}],["16108",{"2":{"149":1}}],["16102",{"2":{"149":1}}],["16100",{"2":{"149":1}}],["16190",{"2":{"149":1}}],["16038",{"2":{"160":1}}],["16032",{"2":{"149":1}}],["16039",{"2":{"149":1}}],["16000",{"2":{"1983":1}}],["16000000",{"2":{"573":1}}],["1600",{"2":{"1978":2,"1983":1}}],["16004",{"2":{"160":1}}],["16001",{"2":{"149":1}}],["16007",{"2":{"149":1}}],["16002",{"2":{"149":1}}],["16095",{"2":{"160":1}}],["16099",{"2":{"149":1}}],["16096",{"2":{"149":1}}],["16091",{"2":{"149":1}}],["16084",{"2":{"160":1}}],["16086",{"2":{"160":1}}],["16089",{"2":{"149":1}}],["16082",{"2":{"149":1}}],["16081",{"2":{"149":1}}],["16080",{"2":{"149":1}}],["16087",{"2":{"149":1}}],["16076",{"2":{"188":1,"191":1}}],["16075",{"2":{"149":1}}],["16072",{"2":{"149":1}}],["16070",{"2":{"149":1}}],["16054",{"2":{"149":1}}],["16059",{"2":{"149":1}}],["16053",{"2":{"149":1}}],["16050",{"2":{"149":1}}],["16051",{"2":{"149":1}}],["16044",{"2":{"149":1}}],["16041",{"2":{"149":1}}],["16040",{"2":{"149":1}}],["16068",{"2":{"160":1}}],["16067",{"2":{"149":1}}],["16063",{"2":{"149":1}}],["1602a",{"2":{"1697":1}}],["16027",{"2":{"149":1}}],["16026",{"2":{"149":1}}],["16028",{"2":{"149":1}}],["16025",{"2":{"149":1}}],["16023",{"2":{"149":1}}],["16020",{"2":{"149":1}}],["16017",{"2":{"149":1}}],["16016",{"2":{"149":1}}],["16015",{"2":{"149":1}}],["16",{"0":{"11":1,"166":1,"1379":1},"2":{"11":2,"63":1,"134":1,"149":1,"166":2,"176":1,"236":1,"339":2,"402":1,"413":1,"610":1,"660":2,"690":4,"729":2,"784":1,"790":1,"922":1,"925":2,"957":1,"959":2,"962":1,"993":2,"1027":2,"1061":2,"1093":1,"1127":1,"1161":1,"1299":1,"1300":2,"1379":5,"1417":1,"1423":1,"1492":1,"1527":1,"1532":2,"1538":2,"1539":1,"1609":1,"1686":1,"1699":1,"1702":2,"1740":2,"1744":3,"1757":1,"1846":2,"1852":3,"1925":2,"1935":1,"1936":2,"1937":4,"1939":3,"1948":1,"1952":1,"1968":1,"2018":3,"2082":2,"2086":1,"2091":5,"2240":1,"2250":1,"2252":1,"2289":1,"2329":1,"2383":1,"2485":1,"2487":1,"2508":17,"2520":3,"2527":2,"2536":3,"2557":1,"2562":1,"2576":1,"2578":1,"2653":1,"2762":3,"2763":2,"2764":1,"2781":1,"2871":4,"2878":6,"2892":1,"2948":1}}],["1",{"0":{"298":3,"407":1,"596":1,"1297":1,"2314":1,"2469":1,"2593":1,"2619":1},"2":{"10":1,"14":1,"45":3,"90":2,"102":1,"105":2,"114":5,"120":2,"134":1,"149":1,"160":1,"168":1,"169":1,"172":1,"176":1,"184":1,"191":2,"195":1,"197":2,"199":2,"201":4,"211":6,"222":1,"231":1,"236":1,"247":1,"249":3,"259":1,"266":14,"272":2,"294":3,"298":3,"307":1,"308":2,"339":1,"341":1,"348":1,"354":2,"375":4,"379":3,"412":2,"512":1,"522":1,"523":1,"524":2,"532":1,"558":1,"570":2,"588":1,"589":6,"593":6,"632":1,"657":1,"675":1,"688":1,"690":22,"691":1,"694":4,"696":3,"716":1,"719":1,"721":1,"726":1,"748":1,"749":2,"755":1,"762":1,"764":1,"828":2,"857":2,"859":1,"860":4,"889":2,"893":2,"921":4,"924":2,"925":2,"956":2,"958":2,"959":2,"990":2,"992":2,"993":2,"1024":3,"1026":1,"1027":2,"1058":2,"1060":1,"1061":2,"1092":4,"1095":4,"1126":4,"1129":4,"1160":2,"1162":1,"1163":4,"1197":1,"1207":1,"1216":2,"1252":1,"1285":1,"1286":1,"1295":1,"1303":1,"1316":1,"1329":5,"1357":2,"1363":1,"1379":3,"1390":1,"1395":1,"1405":1,"1409":4,"1417":10,"1420":1,"1423":4,"1431":1,"1441":1,"1448":1,"1471":1,"1474":1,"1483":2,"1486":2,"1492":1,"1493":5,"1514":1,"1522":2,"1544":2,"1553":16,"1554":7,"1589":1,"1591":1,"1600":1,"1603":1,"1604":2,"1612":1,"1625":2,"1633":1,"1638":26,"1639":1,"1640":1,"1641":3,"1647":3,"1660":2,"1661":7,"1664":3,"1667":1,"1668":2,"1670":1,"1672":1,"1678":1,"1681":2,"1684":3,"1685":5,"1686":1,"1687":1,"1695":1,"1702":2,"1712":1,"1741":5,"1743":2,"1744":3,"1747":2,"1766":2,"1779":1,"1781":1,"1836":2,"1838":2,"1843":2,"1846":6,"1849":1,"1850":2,"1866":1,"1925":32,"1933":4,"1935":4,"1936":1,"1937":9,"1939":4,"1949":1,"1953":3,"1954":2,"1974":1,"1979":1,"1983":5,"1985":1,"1986":5,"1990":1,"2003":1,"2012":2,"2013":1,"2018":3,"2041":3,"2043":13,"2046":4,"2047":1,"2048":2,"2059":4,"2076":1,"2082":6,"2085":1,"2088":2,"2095":1,"2108":1,"2183":7,"2185":3,"2189":1,"2190":1,"2191":6,"2198":2,"2206":1,"2207":1,"2244":1,"2252":1,"2254":1,"2262":1,"2275":2,"2290":1,"2295":1,"2296":4,"2298":1,"2300":3,"2301":2,"2303":16,"2305":1,"2315":4,"2316":1,"2317":1,"2318":1,"2319":1,"2322":1,"2331":1,"2365":1,"2374":1,"2377":1,"2381":1,"2404":1,"2410":13,"2424":1,"2450":1,"2454":8,"2455":8,"2466":12,"2468":1,"2508":3,"2510":9,"2516":1,"2518":4,"2520":3,"2523":1,"2527":32,"2528":4,"2536":3,"2542":2,"2547":2,"2550":2,"2557":2,"2558":7,"2563":1,"2575":1,"2576":1,"2583":1,"2632":1,"2634":8,"2652":2,"2678":1,"2685":1,"2691":1,"2694":1,"2695":1,"2714":2,"2717":1,"2721":16,"2746":1,"2751":1,"2761":1,"2763":11,"2777":1,"2779":1,"2781":3,"2782":2,"2785":1,"2788":4,"2792":2,"2795":10,"2796":9,"2799":1,"2825":1,"2840":1,"2856":1,"2857":2,"2863":1,"2867":1,"2869":3,"2871":1,"2877":2,"2878":1,"2879":2,"2880":1,"2882":3,"2910":1,"2912":1,"2918":1,"2919":1,"2920":1,"2926":2,"2936":1,"2939":1,"2949":1}}],["=+",{"2":{"1504":1,"1506":1,"1515":1}}],["=>",{"2":{"196":4,"1798":4,"1968":1}}],["=helix",{"2":{"55":4}}],["=======",{"2":{"2634":2}}],["==========================",{"2":{"720":1}}],["=================================================",{"2":{"720":1}}],["============================",{"2":{"720":1}}],["=====",{"2":{"720":1}}],["==",{"2":{"13":1,"90":4,"194":1,"433":1,"535":2,"561":1,"720":1,"1332":2,"1364":2,"1366":1,"1595":1,"1612":1,"1625":1,"1663":1,"1668":4,"1781":1,"1947":1,"1993":1,"2000":1,"2012":2,"2059":5,"2074":1,"2096":2,"2286":1,"2316":1,"2317":3,"2318":2,"2319":3,"2381":4,"2652":1,"2764":1,"2778":1,"2779":1,"2781":1,"2783":1,"2787":1,"2788":1,"2926":2,"2927":3,"2931":1}}],["=",{"0":{"156":1,"167":1,"195":1,"245":1},"2":{"10":1,"28":1,"49":1,"87":1,"88":3,"104":3,"118":9,"119":1,"127":3,"134":1,"166":1,"176":4,"199":1,"201":1,"202":1,"232":1,"234":7,"235":1,"247":1,"266":2,"272":2,"285":1,"306":1,"307":6,"315":1,"324":2,"325":4,"328":1,"354":2,"412":1,"433":3,"475":1,"476":1,"497":2,"524":1,"529":1,"532":1,"533":1,"534":2,"567":2,"569":2,"573":5,"575":2,"589":3,"592":1,"593":2,"616":1,"624":2,"625":3,"629":1,"647":4,"655":1,"656":1,"657":1,"686":1,"698":1,"715":1,"716":14,"720":2,"721":4,"725":1,"729":1,"742":1,"744":1,"746":5,"753":4,"755":1,"758":1,"761":1,"801":1,"805":2,"827":1,"831":2,"856":1,"863":2,"888":1,"893":2,"920":1,"928":2,"955":1,"962":2,"989":1,"996":2,"1023":1,"1030":2,"1057":1,"1064":2,"1091":1,"1098":2,"1125":1,"1132":2,"1159":1,"1166":2,"1195":1,"1198":2,"1201":2,"1215":1,"1219":2,"1246":1,"1267":1,"1284":1,"1288":4,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1322":1,"1330":1,"1367":3,"1380":1,"1390":1,"1405":1,"1413":1,"1414":1,"1417":4,"1420":2,"1431":4,"1434":2,"1436":1,"1446":6,"1450":2,"1462":6,"1465":1,"1470":1,"1471":1,"1472":4,"1473":1,"1477":1,"1478":2,"1480":1,"1481":1,"1483":2,"1485":1,"1488":1,"1491":1,"1492":1,"1500":1,"1526":1,"1527":1,"1533":8,"1535":2,"1542":1,"1548":1,"1549":1,"1550":1,"1551":1,"1578":1,"1589":1,"1594":1,"1595":1,"1602":4,"1603":2,"1604":3,"1605":14,"1612":4,"1617":3,"1618":3,"1623":1,"1639":1,"1640":2,"1646":1,"1648":2,"1661":1,"1663":1,"1665":1,"1667":6,"1668":1,"1678":3,"1698":1,"1702":1,"1739":2,"1742":1,"1743":7,"1763":1,"1768":1,"1774":4,"1776":7,"1777":7,"1779":11,"1786":1,"1790":1,"1797":1,"1804":6,"1838":1,"1839":5,"1840":1,"1845":1,"1846":3,"1849":2,"1850":5,"1851":1,"1852":2,"1919":1,"1924":2,"1932":1,"1939":3,"1944":1,"1945":3,"1946":1,"1947":5,"1948":1,"1953":4,"1954":4,"1957":1,"1962":2,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":2,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":5,"1984":1,"1992":6,"1993":7,"1994":14,"1996":7,"1997":4,"2011":1,"2012":1,"2013":3,"2017":1,"2040":3,"2041":4,"2042":3,"2043":13,"2052":1,"2055":1,"2059":14,"2066":1,"2069":1,"2071":1,"2074":1,"2079":1,"2081":1,"2082":3,"2085":2,"2088":5,"2090":1,"2091":2,"2095":7,"2096":6,"2179":3,"2187":7,"2189":6,"2191":4,"2210":4,"2215":1,"2220":1,"2250":1,"2258":1,"2268":2,"2277":7,"2284":2,"2285":1,"2286":5,"2293":2,"2294":1,"2295":5,"2296":5,"2297":2,"2298":1,"2302":1,"2303":1,"2305":1,"2309":1,"2312":4,"2314":2,"2315":4,"2316":13,"2317":11,"2318":3,"2319":7,"2320":1,"2326":1,"2329":6,"2330":5,"2374":2,"2376":3,"2378":1,"2381":13,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2398":1,"2400":1,"2402":1,"2404":1,"2418":1,"2419":2,"2455":3,"2460":1,"2502":1,"2510":3,"2544":1,"2550":2,"2558":6,"2562":1,"2563":1,"2564":1,"2585":1,"2672":1,"2683":3,"2691":2,"2703":1,"2745":1,"2746":3,"2754":3,"2756":1,"2760":1,"2763":12,"2764":31,"2770":2,"2776":1,"2779":6,"2780":6,"2781":14,"2782":6,"2783":6,"2784":6,"2787":6,"2788":6,"2789":6,"2790":2,"2791":2,"2792":9,"2856":1,"2857":1,"2867":1,"2872":1,"2889":9,"2891":1,"2893":1,"2911":4,"2912":6,"2923":1,"2926":1,"2938":2,"2948":2}}],["2d",{"2":{"2889":1}}],["2bpp",{"2":{"2781":2}}],["2c1219002b135937334d4e00",{"2":{"2508":1}}],["2p4g",{"2":{"2377":1,"2516":1}}],["2p4ghz",{"2":{"2377":1,"2516":1}}],["2t",{"2":{"2252":1}}],["2=4",{"2":{"1954":1}}],["2ms",{"2":{"1953":1}}],["2>",{"2":{"1788":1,"2928":1}}],["2x2",{"2":{"2466":1}}],["2x1800",{"2":{"2414":1}}],["2x",{"2":{"1684":1,"1685":1,"1974":2,"2264":2}}],["2x4",{"2":{"114":1,"211":1}}],["2v",{"2":{"1679":1}}],["2u",{"2":{"1329":2,"2799":1}}],["2kro",{"2":{"2839":1}}],["2kω",{"2":{"1197":1}}],["2k1",{"2":{"924":1,"958":1,"992":1}}],["2k",{"2":{"857":2,"859":1,"860":6,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1092":2,"1095":6,"1126":2,"1129":6,"1160":2,"1163":6,"1974":1,"2267":1}}],["2key",{"2":{"143":2}}],["2️⃣",{"2":{"716":3}}],["2e3c",{"2":{"713":1,"2398":1}}],["2a03",{"2":{"713":2}}],["2ffb",{"2":{"713":1,"2498":1}}],["2ff9",{"2":{"713":1,"2498":1}}],["2ff4",{"2":{"713":1,"2498":1,"2612":1,"2615":2}}],["2ff3",{"2":{"713":1,"2498":1}}],["2ff0",{"2":{"713":1}}],["2fef",{"2":{"713":1}}],["23x",{"2":{"2689":1}}],["239",{"2":{"1947":1,"2286":1,"2764":6}}],["239a",{"2":{"713":3,"2499":3}}],["23994",{"2":{"294":1}}],["23999",{"2":{"277":1}}],["23953",{"2":{"285":1}}],["23954",{"2":{"277":1}}],["23945",{"2":{"277":1}}],["23967",{"2":{"277":1}}],["23963",{"2":{"277":1}}],["23987",{"2":{"277":1}}],["23985",{"2":{"277":1}}],["23983",{"2":{"277":1}}],["23981",{"2":{"277":1}}],["23980",{"2":{"277":1}}],["23923",{"2":{"277":1}}],["23925",{"2":{"277":1}}],["23924",{"2":{"277":1}}],["23917",{"2":{"277":1}}],["23911",{"2":{"277":1}}],["23979",{"2":{"277":1}}],["23975",{"2":{"277":1}}],["23901",{"2":{"277":1}}],["23838",{"2":{"285":1}}],["23857",{"2":{"277":1}}],["23818",{"2":{"277":1}}],["23896",{"2":{"277":1}}],["23894",{"2":{"277":1}}],["23884",{"2":{"308":1}}],["23887",{"2":{"285":1}}],["23883",{"2":{"277":1}}],["23885",{"2":{"277":1}}],["23881",{"2":{"277":1}}],["2370",{"2":{"434":2}}],["23709",{"2":{"266":1}}],["23796",{"2":{"277":1}}],["23793",{"2":{"266":1}}],["23792",{"2":{"266":1}}],["23790",{"2":{"266":1}}],["23782",{"2":{"277":1}}],["23789",{"2":{"266":1}}],["23788",{"2":{"266":1}}],["23787",{"2":{"266":1}}],["23786",{"2":{"266":1}}],["23785",{"2":{"266":1}}],["23784",{"2":{"266":1}}],["23783",{"2":{"266":1}}],["23781",{"2":{"266":1}}],["23780",{"2":{"266":1}}],["23779",{"2":{"266":1}}],["23778",{"2":{"266":1}}],["23774",{"2":{"266":1}}],["23773",{"2":{"266":1}}],["23772",{"2":{"266":1}}],["23771",{"2":{"266":1}}],["23770",{"2":{"266":1}}],["23765",{"2":{"277":1}}],["23769",{"2":{"266":1}}],["23768",{"2":{"266":1}}],["23767",{"2":{"266":1}}],["23764",{"2":{"266":1}}],["23763",{"2":{"266":1}}],["23762",{"2":{"266":1}}],["23760",{"2":{"266":1}}],["23759",{"2":{"266":1}}],["23758",{"2":{"266":1}}],["23757",{"2":{"266":1}}],["23754",{"2":{"266":1}}],["23751",{"2":{"266":1}}],["23750",{"2":{"266":1}}],["23749",{"2":{"266":1}}],["23747",{"2":{"266":1}}],["23746",{"2":{"266":1}}],["23745",{"2":{"266":1}}],["23719",{"2":{"266":1}}],["23716",{"2":{"266":1}}],["23714",{"2":{"266":1}}],["23712",{"2":{"266":1}}],["23726",{"2":{"266":1}}],["23266",{"2":{"266":1}}],["23264",{"2":{"266":1}}],["23222",{"2":{"266":1}}],["23221",{"2":{"266":1}}],["23206",{"2":{"266":1}}],["23202",{"2":{"266":1}}],["23292",{"2":{"266":1}}],["23299",{"2":{"266":1}}],["23294",{"2":{"266":1}}],["23293",{"2":{"266":1}}],["23297",{"2":{"266":1}}],["23281",{"2":{"317":1}}],["23289",{"2":{"266":1}}],["23288",{"2":{"266":1}}],["23287",{"2":{"266":1}}],["23286",{"2":{"266":1}}],["23285",{"2":{"266":1}}],["23277",{"2":{"266":1}}],["23276",{"2":{"266":1}}],["23273",{"2":{"266":1}}],["23259",{"2":{"266":1}}],["23246",{"2":{"266":1}}],["23248",{"2":{"266":1}}],["23247",{"2":{"266":1}}],["23236",{"2":{"266":1}}],["23217",{"2":{"266":1}}],["23641",{"2":{"294":1}}],["23642",{"2":{"277":1}}],["23679",{"2":{"285":1}}],["23673",{"2":{"266":1}}],["23699",{"2":{"285":1}}],["23692",{"2":{"277":1}}],["23694",{"2":{"266":1}}],["23697",{"2":{"266":1}}],["23691",{"2":{"266":1}}],["23685",{"2":{"266":1}}],["23668",{"2":{"266":1}}],["23663",{"2":{"266":1}}],["23630",{"2":{"277":1}}],["23635",{"2":{"266":1}}],["23633",{"2":{"266":1}}],["23627",{"2":{"266":1}}],["23624",{"2":{"266":1}}],["23622",{"2":{"266":1}}],["23616",{"2":{"266":1}}],["23614",{"2":{"266":1}}],["23612",{"2":{"266":1}}],["23609",{"2":{"266":1}}],["23607",{"2":{"266":1}}],["23606",{"2":{"266":1}}],["23601",{"2":{"266":1}}],["23650",{"2":{"277":1}}],["23655",{"2":{"266":1}}],["23652",{"2":{"266":1}}],["23658",{"2":{"266":1}}],["23653",{"2":{"266":1}}],["23657",{"2":{"266":1}}],["23656",{"2":{"266":1}}],["23598",{"2":{"266":1}}],["23599",{"2":{"266":1}}],["23593",{"2":{"266":1}}],["23591",{"2":{"266":1}}],["23590",{"2":{"266":1}}],["23589",{"2":{"266":1}}],["23588",{"2":{"266":1}}],["23585",{"2":{"266":1}}],["23576",{"2":{"266":1}}],["23573",{"2":{"266":1}}],["23569",{"2":{"266":1}}],["23567",{"2":{"266":1}}],["23566",{"2":{"266":1}}],["23565",{"2":{"266":1}}],["23564",{"2":{"266":1}}],["23562",{"2":{"266":1}}],["23558",{"2":{"308":1}}],["23557",{"2":{"266":1}}],["23556",{"2":{"266":1}}],["23547",{"2":{"266":1}}],["23542",{"2":{"266":1}}],["23541",{"2":{"266":1}}],["23540",{"2":{"266":1}}],["23534",{"2":{"266":1}}],["23533",{"2":{"266":1}}],["23532",{"2":{"266":1}}],["23530",{"2":{"266":1}}],["23520",{"2":{"277":1}}],["23529",{"2":{"266":1}}],["23525",{"2":{"266":1}}],["23524",{"2":{"266":1}}],["23522",{"2":{"266":1}}],["23516",{"2":{"266":1}}],["23515",{"2":{"266":1}}],["23514",{"2":{"266":1}}],["23512",{"2":{"266":1}}],["23511",{"2":{"266":1}}],["23445",{"2":{"285":1}}],["23448",{"2":{"266":1}}],["23488",{"2":{"266":1}}],["23486",{"2":{"266":1}}],["23462",{"2":{"266":1}}],["23461",{"2":{"266":1}}],["23460",{"2":{"266":1}}],["23463",{"2":{"266":1}}],["23451",{"2":{"285":1}}],["23453",{"2":{"266":1}}],["23452",{"2":{"266":1}}],["23455",{"2":{"266":1}}],["2341",{"2":{"713":2,"2499":2}}],["23419",{"2":{"266":1}}],["23418",{"2":{"266":1}}],["23412",{"2":{"266":1}}],["23406",{"2":{"266":1}}],["23403",{"2":{"266":1}}],["23402",{"2":{"266":1}}],["23405",{"2":{"266":1}}],["23407",{"2":{"266":1}}],["23430",{"2":{"285":1}}],["23437",{"2":{"277":1}}],["23439",{"2":{"277":1}}],["23436",{"2":{"266":1}}],["23434",{"2":{"266":1}}],["23432",{"2":{"266":1}}],["23425",{"2":{"266":1}}],["23424",{"2":{"266":1}}],["23423",{"2":{"266":1}}],["23421",{"2":{"266":1}}],["23426",{"2":{"266":1}}],["23422",{"2":{"266":1}}],["23389",{"2":{"328":1}}],["23384",{"2":{"266":1}}],["23355",{"2":{"277":1}}],["23357",{"2":{"266":1}}],["23341",{"2":{"277":1}}],["23346",{"2":{"266":1}}],["23335",{"2":{"266":1}}],["23330",{"2":{"266":1}}],["23399",{"2":{"266":1}}],["23396",{"2":{"266":1}}],["23395",{"2":{"266":1}}],["23397",{"2":{"266":1}}],["23394",{"2":{"266":1}}],["23393",{"2":{"266":1}}],["23390",{"2":{"266":1}}],["23379",{"2":{"266":1}}],["23378",{"2":{"266":1}}],["23377",{"2":{"266":1}}],["23376",{"2":{"266":1}}],["23373",{"2":{"266":1}}],["23371",{"2":{"266":1}}],["23375",{"2":{"266":1}}],["23367",{"2":{"266":1}}],["23361",{"2":{"266":1}}],["23360",{"2":{"266":1}}],["23311",{"2":{"266":1}}],["23309",{"2":{"266":1}}],["23307",{"2":{"266":1}}],["23305",{"2":{"266":1}}],["23302",{"2":{"266":1}}],["23329",{"2":{"266":1}}],["23324",{"2":{"266":1}}],["23321",{"2":{"266":1}}],["23322",{"2":{"266":1}}],["23188",{"2":{"266":1}}],["23185",{"2":{"266":1}}],["23179",{"2":{"266":1}}],["2316",{"2":{"2629":1}}],["23169",{"2":{"266":1}}],["23162",{"2":{"266":1}}],["23144",{"2":{"266":1}}],["23143",{"2":{"249":1}}],["23111",{"2":{"266":1}}],["23116",{"2":{"249":1}}],["23112",{"2":{"249":1}}],["23110",{"2":{"249":1}}],["23119",{"2":{"249":1}}],["23155",{"2":{"249":1}}],["23129",{"2":{"249":1}}],["23127",{"2":{"249":1}}],["23121",{"2":{"249":1}}],["23128",{"2":{"249":1}}],["23106",{"2":{"249":1}}],["23104",{"2":{"249":1}}],["23102",{"2":{"249":1}}],["23109",{"2":{"249":1}}],["23108",{"2":{"249":1}}],["23",{"0":{"286":1},"1":{"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1},"2":{"249":1,"402":1,"413":2,"615":1,"925":1,"993":1,"1061":1,"1095":1,"1129":1,"1163":1,"1492":1,"1527":3,"1686":1,"1744":3,"1968":22,"2018":3,"2520":3,"2536":3,"2779":1}}],["23038",{"2":{"266":1}}],["23037",{"2":{"249":1}}],["230400",{"2":{"1207":1}}],["23048",{"2":{"249":1}}],["23047",{"2":{"249":1}}],["23049",{"2":{"249":1}}],["23097",{"2":{"277":1}}],["23091",{"2":{"277":1}}],["23096",{"2":{"249":1}}],["23095",{"2":{"249":1}}],["23094",{"2":{"249":1}}],["23092",{"2":{"249":1}}],["23093",{"2":{"249":1}}],["23084",{"2":{"249":1}}],["23083",{"2":{"249":1}}],["23081",{"2":{"249":1}}],["23085",{"2":{"249":1}}],["23076",{"2":{"266":1}}],["23077",{"2":{"249":1}}],["23074",{"2":{"249":1}}],["23073",{"2":{"249":1}}],["23065",{"2":{"294":1}}],["23063",{"2":{"249":1}}],["23067",{"2":{"249":1}}],["23029",{"2":{"249":1}}],["23000",{"2":{"249":1}}],["23002",{"2":{"249":1}}],["23055",{"2":{"266":1}}],["23059",{"2":{"249":1}}],["23056",{"2":{"249":1}}],["23058",{"2":{"249":1}}],["23052",{"2":{"249":1}}],["24bpp",{"2":{"2763":1}}],["24lc256",{"2":{"749":2}}],["24lc128",{"2":{"749":3}}],["24lc64",{"2":{"749":3}}],["24lc32a",{"2":{"176":1,"749":3}}],["24xx",{"0":{"2446":1},"2":{"746":1,"749":1}}],["24989",{"2":{"333":1}}],["24961",{"2":{"328":1}}],["24997",{"2":{"308":1}}],["24990",{"2":{"308":1}}],["24932",{"2":{"308":1}}],["24938",{"2":{"294":1}}],["24952",{"2":{"308":1}}],["24928",{"2":{"294":1}}],["24915",{"2":{"294":1}}],["24912",{"2":{"294":1}}],["24913",{"2":{"294":1}}],["24903",{"2":{"294":1}}],["248",{"2":{"1353":1,"2418":1}}],["24880",{"2":{"294":1}}],["24878",{"2":{"294":1}}],["24877",{"2":{"294":1}}],["24879",{"2":{"294":1}}],["24868",{"2":{"294":1}}],["24807",{"2":{"294":1}}],["24803",{"2":{"294":1}}],["24802",{"2":{"294":1}}],["24800",{"2":{"294":1}}],["24857",{"2":{"294":1}}],["24855",{"2":{"294":1}}],["24850",{"2":{"294":1}}],["24840",{"2":{"294":1}}],["24844",{"2":{"294":1}}],["24842",{"2":{"294":1}}],["24845",{"2":{"294":1}}],["24848",{"2":{"294":1}}],["24846",{"2":{"294":1}}],["24836",{"2":{"294":1}}],["24838",{"2":{"294":1}}],["24835",{"2":{"294":1}}],["24839",{"2":{"294":1}}],["24837",{"2":{"294":1}}],["24834",{"2":{"294":1}}],["24832",{"2":{"294":1}}],["24830",{"2":{"294":1}}],["24817",{"2":{"294":1}}],["247",{"2":{"1947":1,"2286":1}}],["24776",{"2":{"333":1}}],["24772",{"2":{"294":1}}],["24764",{"2":{"308":1}}],["24723",{"2":{"308":1}}],["24724",{"2":{"294":1}}],["24785",{"2":{"308":1}}],["24787",{"2":{"308":1}}],["24786",{"2":{"294":1}}],["24784",{"2":{"294":1}}],["24757",{"2":{"294":1}}],["24749",{"2":{"294":1}}],["24748",{"2":{"294":1}}],["24719",{"2":{"328":1}}],["24714",{"2":{"294":1}}],["24715",{"2":{"294":1}}],["24705",{"2":{"294":1}}],["24701",{"2":{"294":1}}],["24707",{"2":{"294":1}}],["24794",{"2":{"294":1}}],["24649",{"2":{"327":1,"328":1}}],["24640",{"2":{"294":1}}],["24690",{"2":{"308":1}}],["24680",{"2":{"308":1}}],["24666",{"2":{"308":1}}],["24667",{"2":{"294":1}}],["24656",{"2":{"294":1}}],["24655",{"2":{"294":1}}],["24651",{"2":{"294":1}}],["24678",{"2":{"294":1}}],["24611",{"2":{"294":1}}],["24623",{"2":{"294":1}}],["24627",{"2":{"285":1}}],["24622",{"2":{"285":1}}],["24637",{"2":{"294":1}}],["24635",{"2":{"285":1}}],["24633",{"2":{"285":1}}],["24639",{"2":{"285":1}}],["24630",{"2":{"285":1}}],["24553",{"2":{"308":1}}],["24554",{"2":{"285":1}}],["24590",{"2":{"294":1}}],["24593",{"2":{"285":1}}],["24560",{"2":{"294":1}}],["24503",{"2":{"294":1}}],["24502",{"2":{"285":1}}],["24508",{"2":{"285":1}}],["24529",{"2":{"294":1}}],["24525",{"2":{"294":1}}],["24521",{"2":{"294":1}}],["24528",{"2":{"285":1}}],["24520",{"2":{"285":1}}],["24548",{"2":{"285":1}}],["24540",{"2":{"285":1}}],["24573",{"2":{"285":1}}],["24531",{"2":{"294":1}}],["24539",{"2":{"285":1}}],["24535",{"2":{"285":1}}],["24534",{"2":{"285":1}}],["24532",{"2":{"285":1}}],["24515",{"2":{"285":1}}],["24513",{"2":{"285":1}}],["24418",{"2":{"328":1}}],["24413",{"2":{"285":1}}],["24490",{"2":{"285":1}}],["24481",{"2":{"285":1}}],["24484",{"2":{"285":1}}],["24480",{"2":{"285":1}}],["24408",{"2":{"285":1}}],["24456",{"2":{"285":1}}],["24479",{"2":{"285":1}}],["24474",{"2":{"285":1}}],["24473",{"2":{"285":1}}],["24476",{"2":{"285":1}}],["24477",{"2":{"285":1}}],["24471",{"2":{"285":1}}],["24468",{"2":{"285":1}}],["24467",{"2":{"285":1}}],["24449",{"2":{"285":1}}],["24445",{"2":{"285":1}}],["24433",{"2":{"285":1}}],["24432",{"2":{"285":1}}],["24423",{"2":{"308":1}}],["24428",{"2":{"285":1}}],["24422",{"2":{"285":1}}],["24301",{"2":{"308":1}}],["24364",{"2":{"285":1}}],["24398",{"2":{"285":1}}],["24337",{"2":{"285":1}}],["24388",{"2":{"285":1}}],["24379",{"2":{"285":1}}],["24376",{"2":{"285":1}}],["24356",{"2":{"308":1}}],["24355",{"2":{"285":1}}],["24352",{"2":{"285":1}}],["24351",{"2":{"285":1}}],["24348",{"2":{"285":1}}],["24316",{"2":{"277":1}}],["24322",{"2":{"277":1}}],["24266",{"2":{"294":1}}],["24241",{"2":{"294":1}}],["24249",{"2":{"285":1}}],["24240",{"2":{"277":1}}],["24259",{"2":{"294":1}}],["24258",{"2":{"285":1}}],["24251",{"2":{"285":1}}],["24253",{"2":{"277":1}}],["24229",{"2":{"285":1}}],["24223",{"2":{"285":1}}],["24238",{"2":{"277":1}}],["24237",{"2":{"277":1}}],["24236",{"2":{"277":1}}],["24233",{"2":{"277":1}}],["24232",{"2":{"277":1}}],["24231",{"2":{"277":1}}],["24234",{"2":{"277":1}}],["24215",{"2":{"277":1}}],["24201",{"2":{"277":1}}],["24200",{"2":{"277":1}}],["24203",{"2":{"277":1}}],["24202",{"2":{"277":1}}],["24116",{"2":{"277":1}}],["24194",{"2":{"285":1}}],["24191",{"2":{"277":1}}],["24192",{"2":{"277":1}}],["24185",{"2":{"277":1}}],["24180",{"2":{"277":1}}],["24163",{"2":{"277":1}}],["24155",{"2":{"277":1}}],["24146",{"2":{"277":1}}],["24143",{"2":{"277":1}}],["24142",{"2":{"277":1}}],["24136",{"2":{"277":1}}],["24133",{"2":{"277":1}}],["24127",{"2":{"277":1}}],["24122",{"2":{"277":1}}],["24120",{"2":{"277":1}}],["240px",{"2":{"2764":1}}],["240",{"2":{"2763":3,"2764":3}}],["240x80",{"2":{"2763":2}}],["240x320",{"2":{"2760":2,"2763":1,"2764":4}}],["240x240",{"2":{"2760":2,"2763":1,"2764":1}}],["24092",{"2":{"277":1}}],["24094",{"2":{"277":1}}],["24082",{"2":{"328":1}}],["24084",{"2":{"285":1}}],["24086",{"2":{"277":1}}],["24087",{"2":{"277":1}}],["24068",{"2":{"277":1}}],["24064",{"2":{"277":1}}],["24060",{"2":{"277":1}}],["24032",{"2":{"277":1}}],["24017",{"2":{"277":1}}],["24016",{"2":{"277":1}}],["24011",{"2":{"277":1}}],["24010",{"2":{"277":1}}],["24053",{"2":{"285":1}}],["24054",{"2":{"277":1}}],["24055",{"2":{"277":1}}],["24051",{"2":{"277":1}}],["24049",{"2":{"277":1}}],["24020",{"2":{"277":1}}],["2400",{"2":{"1272":1}}],["24009",{"2":{"277":1}}],["24008",{"2":{"277":1}}],["24006",{"2":{"277":1}}],["24003",{"2":{"277":1}}],["24001",{"2":{"277":1}}],["24",{"0":{"278":1},"1":{"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1},"2":{"238":1,"413":2,"1158":1,"1527":2,"1686":1,"1744":3,"1939":1,"1952":1,"1968":6,"2018":3,"2081":1,"2295":1,"2520":3,"2536":3,"2778":1}}],["22947",{"2":{"277":1}}],["22948",{"2":{"249":1}}],["22942",{"2":{"249":1}}],["22934",{"2":{"249":1}}],["22932",{"2":{"249":1}}],["22926",{"2":{"266":1}}],["22922",{"2":{"249":1}}],["22921",{"2":{"249":1}}],["22920",{"2":{"249":1}}],["22997",{"2":{"249":1}}],["22998",{"2":{"249":1}}],["22992",{"2":{"249":1}}],["22991",{"2":{"249":1}}],["22917",{"2":{"249":1}}],["22911",{"2":{"249":1}}],["22910",{"2":{"249":1}}],["22901",{"2":{"249":1}}],["22909",{"2":{"249":1}}],["22908",{"2":{"249":1}}],["22905",{"2":{"249":1}}],["22985",{"2":{"249":1}}],["22971",{"2":{"249":1}}],["22979",{"2":{"249":1}}],["22975",{"2":{"249":1}}],["22970",{"2":{"249":1}}],["22963",{"2":{"285":1}}],["22967",{"2":{"266":1}}],["22962",{"2":{"266":1}}],["22969",{"2":{"249":1}}],["22966",{"2":{"249":1}}],["22961",{"2":{"249":1}}],["22953",{"2":{"249":1}}],["22955",{"2":{"249":1}}],["22951",{"2":{"249":1}}],["22858",{"2":{"285":1}}],["22857",{"2":{"249":1}}],["22851",{"2":{"249":1}}],["22859",{"2":{"249":1}}],["22895",{"2":{"266":1}}],["22891",{"2":{"266":1}}],["22897",{"2":{"249":1}}],["22896",{"2":{"249":1}}],["22899",{"2":{"249":1}}],["22898",{"2":{"249":1}}],["22819",{"2":{"249":1}}],["22811",{"2":{"249":1}}],["22814",{"2":{"249":1}}],["22884",{"2":{"249":1}}],["22873",{"2":{"249":1}}],["22879",{"2":{"249":1}}],["22878",{"2":{"249":1}}],["22872",{"2":{"249":1}}],["22866",{"2":{"249":1}}],["22864",{"2":{"249":1}}],["22863",{"2":{"249":1}}],["22862",{"2":{"249":1}}],["22861",{"2":{"249":1}}],["22860",{"2":{"249":1}}],["22869",{"2":{"249":1}}],["22865",{"2":{"249":1}}],["22832",{"2":{"249":1}}],["22839",{"2":{"249":1}}],["22830",{"2":{"249":1}}],["22829",{"2":{"249":1}}],["22823",{"2":{"249":1}}],["22826",{"2":{"249":1}}],["22825",{"2":{"249":1}}],["22824",{"2":{"249":1}}],["22809",{"2":{"249":1}}],["22802",{"2":{"249":1}}],["22808",{"2":{"249":1}}],["22807",{"2":{"249":1}}],["22806",{"2":{"249":1}}],["22801",{"2":{"249":1}}],["22803",{"2":{"249":1}}],["22800",{"2":{"249":1}}],["22731",{"2":{"266":1}}],["22736",{"2":{"249":1}}],["22799",{"2":{"249":1}}],["22796",{"2":{"249":1}}],["22798",{"2":{"249":1}}],["22797",{"2":{"249":1}}],["22792",{"2":{"249":1}}],["22795",{"2":{"249":1}}],["22771",{"2":{"249":1}}],["22775",{"2":{"249":1}}],["22764",{"2":{"249":1}}],["22763",{"2":{"249":1}}],["22762",{"2":{"249":1}}],["22760",{"2":{"249":1}}],["22759",{"2":{"249":1}}],["22753",{"2":{"249":1}}],["22750",{"2":{"249":1}}],["22741",{"2":{"266":1}}],["22745",{"2":{"249":1}}],["22743",{"2":{"249":1}}],["22740",{"2":{"249":1}}],["22742",{"2":{"249":1}}],["22721",{"2":{"249":1}}],["22726",{"2":{"249":1}}],["22719",{"2":{"249":1}}],["22715",{"2":{"249":1}}],["22714",{"2":{"249":1}}],["22712",{"2":{"249":1}}],["22710",{"2":{"249":1}}],["22709",{"2":{"249":1}}],["22708",{"2":{"249":1}}],["22701",{"2":{"249":1}}],["22695",{"2":{"266":1}}],["22662",{"2":{"266":1}}],["22649",{"2":{"249":1}}],["22652",{"2":{"249":1}}],["22651",{"2":{"249":1}}],["22656",{"2":{"249":1}}],["22603",{"2":{"249":1}}],["22688",{"2":{"249":1}}],["22682",{"2":{"249":1}}],["22681",{"2":{"249":1}}],["22680",{"2":{"249":1}}],["22670",{"2":{"277":1}}],["22675",{"2":{"249":1}}],["22674",{"2":{"249":1}}],["22673",{"2":{"249":1}}],["22638",{"2":{"249":1}}],["22637",{"2":{"249":1}}],["22636",{"2":{"249":1}}],["22635",{"2":{"249":1}}],["22628",{"2":{"249":1}}],["22625",{"2":{"249":1}}],["22620",{"2":{"249":1}}],["22617",{"2":{"249":1}}],["225°",{"2":{"1741":1}}],["22579",{"2":{"249":1}}],["22578",{"2":{"249":1}}],["22577",{"2":{"249":1}}],["22575",{"2":{"249":1}}],["22570",{"2":{"249":1}}],["22558",{"2":{"249":1}}],["22560",{"2":{"249":1}}],["22562",{"2":{"249":1}}],["22530",{"2":{"249":1}}],["22518",{"2":{"249":1}}],["22546",{"2":{"249":1}}],["22543",{"2":{"249":1}}],["22542",{"2":{"249":1}}],["22549",{"2":{"236":1}}],["22548",{"2":{"236":1}}],["22545",{"2":{"236":1}}],["22544",{"2":{"236":1}}],["22526",{"2":{"249":1}}],["22529",{"2":{"249":1}}],["22523",{"2":{"236":1}}],["22528",{"2":{"236":1}}],["22525",{"2":{"236":1}}],["22",{"0":{"329":1},"1":{"330":1,"331":1,"332":1,"333":1},"2":{"236":1,"249":1,"400":1,"413":2,"1492":1,"1686":1,"1744":3,"1968":4,"2018":3,"2520":3,"2536":3}}],["224x64",{"2":{"2086":1}}],["224",{"2":{"1846":4,"2082":4,"2871":1,"2878":1}}],["22459",{"2":{"308":1}}],["22489",{"2":{"277":1}}],["22480",{"2":{"236":1}}],["22474",{"2":{"249":1}}],["22471",{"2":{"236":1}}],["22419",{"2":{"249":1}}],["22497",{"2":{"236":1}}],["22437",{"2":{"236":1}}],["22435",{"2":{"236":1}}],["22434",{"2":{"236":1}}],["22436",{"2":{"236":1}}],["22469",{"2":{"236":1}}],["22446",{"2":{"236":1}}],["22444",{"2":{"236":1}}],["22448",{"2":{"236":1}}],["22445",{"2":{"236":1}}],["22423",{"2":{"236":1}}],["22401",{"2":{"249":1}}],["22403",{"2":{"236":1}}],["22400",{"2":{"236":1}}],["223",{"2":{"1947":1,"1949":1,"2286":1,"2288":1}}],["22396",{"2":{"1376":3}}],["22398",{"2":{"236":1}}],["22374",{"2":{"249":1}}],["22379",{"2":{"236":1}}],["22358",{"2":{"249":1}}],["22357",{"2":{"236":1}}],["22341",{"2":{"249":1}}],["22342",{"2":{"236":1}}],["22332",{"2":{"236":1}}],["22368",{"2":{"249":1}}],["22364",{"2":{"236":1}}],["22366",{"2":{"236":1}}],["22363",{"2":{"236":1}}],["22369",{"2":{"236":1}}],["22365",{"2":{"236":1}}],["22384",{"2":{"249":1}}],["22383",{"2":{"236":1}}],["22381",{"2":{"236":1}}],["22380",{"2":{"236":1}}],["22328",{"2":{"236":1}}],["22325",{"2":{"236":1}}],["22324",{"2":{"236":1}}],["22323",{"2":{"236":1}}],["22321",{"2":{"236":1}}],["22315",{"2":{"249":1}}],["22314",{"2":{"249":1}}],["22312",{"2":{"236":1}}],["22310",{"2":{"236":1}}],["22313",{"2":{"236":1}}],["22311",{"2":{"236":1}}],["22303",{"2":{"249":1}}],["22304",{"2":{"249":1}}],["22305",{"2":{"236":1}}],["22309",{"2":{"236":1}}],["22308",{"2":{"236":1}}],["22201",{"2":{"249":1}}],["22200",{"2":{"236":1}}],["22281",{"2":{"249":1}}],["22280",{"2":{"236":1}}],["22276",{"2":{"249":1}}],["22297",{"2":{"236":1}}],["22239",{"2":{"236":1}}],["22235",{"2":{"236":1}}],["22236",{"2":{"236":1}}],["22242",{"2":{"236":1}}],["22248",{"2":{"236":1}}],["22265",{"2":{"266":1}}],["22263",{"2":{"249":1}}],["22268",{"2":{"236":1}}],["22264",{"2":{"236":1}}],["22267",{"2":{"236":1}}],["22221",{"2":{"236":1}}],["22222",{"2":{"236":1}}],["22251",{"2":{"266":1}}],["22256",{"2":{"236":1}}],["22253",{"2":{"236":1}}],["22212",{"2":{"236":1}}],["22135",{"2":{"266":1}}],["22133",{"2":{"236":1}}],["22114",{"2":{"249":1}}],["22117",{"2":{"236":1}}],["22185",{"2":{"249":1}}],["22188",{"2":{"236":1}}],["22108",{"2":{"236":1}}],["22106",{"2":{"236":1}}],["22105",{"2":{"236":1}}],["22152",{"2":{"236":1}}],["22151",{"2":{"236":1}}],["22149",{"2":{"236":1}}],["22148",{"2":{"236":1}}],["22145",{"2":{"236":1}}],["22144",{"2":{"236":1}}],["22193",{"2":{"236":1}}],["22170",{"2":{"236":1}}],["22163",{"2":{"236":1}}],["22125",{"2":{"236":1}}],["22122",{"2":{"236":1}}],["22121",{"2":{"236":1}}],["22129",{"2":{"236":1}}],["22126",{"2":{"236":1}}],["22123",{"2":{"236":1}}],["220",{"2":{"2915":1,"2916":1}}],["22050u",{"2":{"719":1}}],["22021",{"2":{"236":1}}],["22025",{"2":{"236":1}}],["22082",{"2":{"249":1}}],["22089",{"2":{"236":1}}],["22088",{"2":{"236":1}}],["22087",{"2":{"236":1}}],["22085",{"2":{"236":1}}],["22084",{"2":{"236":1}}],["22068",{"2":{"236":1}}],["22041",{"2":{"236":1}}],["22049",{"2":{"236":1}}],["22034",{"2":{"236":1}}],["22013",{"2":{"236":1}}],["22011",{"2":{"236":1}}],["22010",{"2":{"236":1}}],["22017",{"2":{"236":1}}],["22091",{"2":{"249":1}}],["22099",{"2":{"236":1}}],["22090",{"2":{"236":1}}],["22072",{"2":{"236":1}}],["22073",{"2":{"236":1}}],["22074",{"2":{"236":1}}],["22071",{"2":{"236":1}}],["22009",{"2":{"236":1}}],["22008",{"2":{"236":1}}],["22007",{"2":{"236":1}}],["22006",{"2":{"236":1}}],["22004",{"2":{"236":1}}],["21944",{"2":{"249":1}}],["21948",{"2":{"236":1}}],["21926",{"2":{"236":1}}],["21929",{"2":{"236":1}}],["21939",{"2":{"236":2}}],["21938",{"2":{"236":1}}],["21996",{"2":{"236":1}}],["21995",{"2":{"236":1}}],["21994",{"2":{"236":1}}],["21993",{"2":{"236":1}}],["21991",{"2":{"236":1}}],["21981",{"2":{"236":1}}],["21986",{"2":{"236":1}}],["21975",{"2":{"236":1}}],["21979",{"2":{"236":1}}],["21978",{"2":{"236":1}}],["21977",{"2":{"236":1}}],["21966",{"2":{"236":1}}],["21964",{"2":{"236":1}}],["21960",{"2":{"236":1}}],["21918",{"2":{"236":1}}],["21909",{"2":{"236":1}}],["21906",{"2":{"236":1}}],["21908",{"2":{"236":1}}],["21905",{"2":{"236":1}}],["21904",{"2":{"236":1}}],["21903",{"2":{"236":1}}],["21883",{"2":{"249":1}}],["21825",{"2":{"236":1}}],["21827",{"2":{"222":1}}],["21897",{"2":{"236":1}}],["21898",{"2":{"236":1}}],["21892",{"2":{"236":1}}],["21891",{"2":{"236":1}}],["21890",{"2":{"236":1}}],["21879",{"2":{"236":1}}],["21874",{"2":{"236":1}}],["21878",{"2":{"236":1}}],["21875",{"2":{"236":1}}],["21866",{"2":{"236":1}}],["21865",{"2":{"236":1}}],["21861",{"2":{"236":1}}],["21859",{"2":{"236":1}}],["21804",{"2":{"236":1}}],["21800",{"2":{"222":1}}],["21842",{"2":{"222":1}}],["21830",{"2":{"222":1}}],["21817",{"2":{"222":1}}],["21815",{"2":{"222":1}}],["21775",{"2":{"249":1}}],["21770",{"2":{"249":1}}],["21777",{"2":{"249":1}}],["21773",{"2":{"222":1}}],["21721",{"2":{"249":1}}],["21727",{"2":{"222":1}}],["21767",{"2":{"236":1}}],["21744",{"2":{"236":1}}],["21740",{"2":{"236":1}}],["21792",{"2":{"222":1}}],["21757",{"2":{"222":1}}],["21751",{"2":{"222":1}}],["21717",{"2":{"236":1}}],["21711",{"2":{"236":1}}],["21718",{"2":{"222":1}}],["21714",{"2":{"222":1}}],["21710",{"2":{"222":1}}],["21704",{"2":{"222":1}}],["21709",{"2":{"222":1}}],["21708",{"2":{"222":1}}],["21703",{"2":{"222":1}}],["216",{"2":{"724":1,"2762":1}}],["21695",{"2":{"266":1}}],["21671",{"2":{"236":1}}],["21676",{"2":{"222":1}}],["21687",{"2":{"249":1}}],["21684",{"2":{"236":1}}],["21688",{"2":{"236":1}}],["21682",{"2":{"222":1}}],["21667",{"2":{"236":1}}],["21662",{"2":{"236":1}}],["21664",{"2":{"236":1}}],["21663",{"2":{"222":1}}],["21661",{"2":{"222":1}}],["21656",{"2":{"266":1}}],["21654",{"2":{"236":1}}],["21659",{"2":{"222":1}}],["21653",{"2":{"222":1}}],["21658",{"2":{"222":1}}],["21651",{"2":{"222":1}}],["21642",{"2":{"236":1}}],["21645",{"2":{"222":1}}],["21644",{"2":{"222":1}}],["21640",{"2":{"222":1}}],["21636",{"2":{"222":1}}],["21635",{"2":{"222":1}}],["21630",{"2":{"222":1}}],["21623",{"2":{"249":1}}],["21626",{"2":{"222":1}}],["21625",{"2":{"222":1}}],["21624",{"2":{"222":1}}],["21611",{"2":{"236":1}}],["21614",{"2":{"222":1}}],["21612",{"2":{"222":1}}],["21613",{"2":{"222":1}}],["21576",{"2":{"236":1}}],["21574",{"2":{"236":1}}],["21579",{"2":{"222":1}}],["21572",{"2":{"222":1}}],["21548",{"2":{"249":1}}],["21543",{"2":{"222":1}}],["21540",{"2":{"222":1}}],["21569",{"2":{"222":1}}],["21567",{"2":{"222":1}}],["21526",{"2":{"222":1}}],["21523",{"2":{"222":1}}],["21592",{"2":{"222":1}}],["21596",{"2":{"222":1}}],["21594",{"2":{"222":1}}],["21591",{"2":{"222":1}}],["21583",{"2":{"236":1}}],["21589",{"2":{"222":1}}],["21588",{"2":{"222":1}}],["21580",{"2":{"222":1}}],["21554",{"2":{"222":1}}],["21553",{"2":{"222":1}}],["21558",{"2":{"222":1}}],["21551",{"2":{"222":1}}],["21519",{"2":{"222":1}}],["21517",{"2":{"222":1}}],["21514",{"2":{"222":1}}],["21507",{"2":{"222":1}}],["21410",{"2":{"266":1}}],["21456",{"2":{"249":1}}],["21450",{"2":{"236":1}}],["21454",{"2":{"222":1}}],["21402",{"2":{"236":1}}],["21405",{"2":{"222":1}}],["21448",{"2":{"249":1}}],["21447",{"2":{"222":1}}],["21444",{"2":{"222":1}}],["21467",{"2":{"236":1}}],["21468",{"2":{"222":1}}],["21465",{"2":{"222":1}}],["21494",{"2":{"236":1}}],["21497",{"2":{"222":1}}],["21495",{"2":{"222":1}}],["21498",{"2":{"222":1}}],["21496",{"2":{"222":2}}],["21493",{"2":{"222":1}}],["21489",{"2":{"222":1}}],["21484",{"2":{"222":1}}],["21482",{"2":{"222":1}}],["21486",{"2":{"222":1}}],["21485",{"2":{"222":1}}],["21480",{"2":{"222":1}}],["21476",{"2":{"222":1}}],["21473",{"2":{"222":1}}],["21472",{"2":{"222":1}}],["21435",{"2":{"222":1}}],["21432",{"2":{"222":1}}],["21436",{"2":{"222":1}}],["21434",{"2":{"222":1}}],["21422",{"2":{"222":1}}],["21427",{"2":{"222":1}}],["21424",{"2":{"222":1}}],["213",{"2":{"1359":1}}],["21398",{"2":{"249":1}}],["21391",{"2":{"222":1}}],["21345",{"2":{"222":1}}],["21343",{"2":{"222":1}}],["21307",{"2":{"222":1}}],["21302",{"2":{"222":1}}],["21380",{"2":{"236":1}}],["21389",{"2":{"222":1}}],["21384",{"2":{"222":1}}],["21382",{"2":{"222":1}}],["21370",{"2":{"222":1}}],["21364",{"2":{"236":1}}],["21365",{"2":{"222":1}}],["21363",{"2":{"222":1}}],["21360",{"2":{"222":1}}],["21366",{"2":{"222":1}}],["21339",{"2":{"222":1}}],["21337",{"2":{"222":1}}],["21332",{"2":{"222":1}}],["21324",{"2":{"222":1}}],["21325",{"2":{"222":1}}],["21322",{"2":{"222":1}}],["21320",{"2":{"222":1}}],["21354",{"2":{"222":1}}],["21353",{"2":{"222":1}}],["21352",{"2":{"222":1}}],["21206",{"2":{"222":1}}],["21205",{"2":{"222":1}}],["21298",{"2":{"222":1}}],["21299",{"2":{"222":1}}],["21296",{"2":{"222":1}}],["21292",{"2":{"222":1}}],["21293",{"2":{"222":1}}],["21287",{"2":{"222":1}}],["21284",{"2":{"222":1}}],["21281",{"2":{"222":1}}],["21273",{"2":{"249":1}}],["21272",{"2":{"222":1}}],["21278",{"2":{"222":1}}],["21271",{"2":{"222":1}}],["21260",{"2":{"222":1}}],["21248",{"2":{"222":1}}],["21240",{"2":{"222":1}}],["21247",{"2":{"222":1}}],["21237",{"2":{"222":1}}],["21234",{"2":{"222":1}}],["21217",{"2":{"222":1}}],["21124",{"2":{"249":1}}],["21174",{"2":{"236":1}}],["21171",{"2":{"236":1}}],["21176",{"2":{"222":1}}],["21190",{"2":{"222":1}}],["21144",{"2":{"222":1}}],["21169",{"2":{"222":1}}],["21164",{"2":{"222":1}}],["21157",{"2":{"222":1}}],["21154",{"2":{"222":1}}],["21151",{"2":{"222":1}}],["21139",{"2":{"222":1}}],["21135",{"2":{"222":1}}],["21134",{"2":{"222":1}}],["21113",{"2":{"222":1}}],["21110",{"2":{"222":1}}],["21116",{"2":{"222":1}}],["21115",{"2":{"222":1}}],["21109",{"2":{"222":1}}],["21108",{"2":{"222":1}}],["21107",{"2":{"222":1}}],["210",{"2":{"2915":2,"2916":2,"2917":1}}],["21060",{"2":{"236":1}}],["21079",{"2":{"222":1}}],["21072",{"2":{"222":1}}],["21096",{"2":{"249":1}}],["21095",{"2":{"222":1}}],["21094",{"2":{"222":1}}],["21092",{"2":{"222":1}}],["21054",{"2":{"222":1}}],["21056",{"2":{"222":1}}],["21046",{"2":{"222":1}}],["21044",{"2":{"211":1}}],["21015",{"2":{"222":1}}],["21013",{"2":{"211":1}}],["21086",{"2":{"222":1}}],["21033",{"2":{"211":1}}],["21032",{"2":{"211":1}}],["21005",{"2":{"211":1}}],["21007",{"2":{"211":1}}],["21002",{"2":{"211":1}}],["21029",{"2":{"211":1}}],["21",{"2":{"160":1,"176":2,"191":1,"211":1,"249":1,"294":1,"377":2,"413":1,"1204":1,"1492":1,"1686":1,"1744":3,"1968":3,"2018":3,"2520":3,"2536":3}}],["25mhz",{"2":{"2671":1}}],["25k",{"2":{"1528":1}}],["25keys",{"2":{"143":5,"149":1}}],["25xx",{"2":{"746":1,"750":1}}],["25x1",{"2":{"339":1}}],["25926",{"2":{"339":1}}],["25919",{"2":{"339":1}}],["25963",{"2":{"339":1}}],["25961",{"2":{"339":1}}],["25969",{"2":{"333":1}}],["25958",{"2":{"339":1}}],["25955",{"2":{"333":1}}],["25940",{"2":{"339":1}}],["25946",{"2":{"333":1}}],["25939",{"2":{"333":1}}],["25931",{"2":{"333":1}}],["25902",{"2":{"333":1}}],["25999",{"2":{"333":1}}],["25998",{"2":{"333":1}}],["25970",{"2":{"339":1}}],["25977",{"2":{"333":1}}],["25975",{"2":{"333":1}}],["25897",{"2":{"339":1}}],["25898",{"2":{"333":1}}],["25891",{"2":{"333":1}}],["25899",{"2":{"333":1}}],["25864",{"2":{"333":1}}],["25834",{"2":{"333":1}}],["25882",{"2":{"333":1}}],["25888",{"2":{"333":1}}],["25857",{"2":{"333":1}}],["25856",{"2":{"333":1}}],["25854",{"2":{"333":1}}],["25859",{"2":{"333":1}}],["25808",{"2":{"333":1}}],["25802",{"2":{"328":1}}],["25804",{"2":{"328":1}}],["25818",{"2":{"328":1}}],["25814",{"2":{"328":1}}],["25819",{"2":{"328":1}}],["25707",{"2":{"339":1}}],["25706",{"2":{"328":1}}],["25797",{"2":{"328":1}}],["25730",{"2":{"339":1}}],["25733",{"2":{"328":1}}],["25731",{"2":{"328":1}}],["25774",{"2":{"328":1}}],["25775",{"2":{"328":1}}],["25754",{"2":{"328":1}}],["25751",{"2":{"328":1}}],["25780",{"2":{"328":1}}],["25785",{"2":{"328":1}}],["25786",{"2":{"328":1}}],["25763",{"2":{"328":1}}],["25717",{"2":{"328":1}}],["25716",{"2":{"328":1}}],["255",{"2":{"641":2,"727":1,"861":1,"926":2,"960":2,"994":2,"1028":2,"1062":2,"1096":2,"1130":2,"1164":2,"1288":4,"1533":3,"1544":2,"1846":1,"1852":1,"1884":1,"1890":1,"1892":1,"1894":1,"1939":1,"1949":2,"2082":1,"2091":3,"2096":9,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2160":3,"2162":3,"2182":2,"2185":3,"2187":1,"2198":9,"2201":2,"2202":2,"2243":1,"2254":1,"2288":1,"2380":2,"2764":20,"2781":1,"2782":3,"2857":2,"2871":4,"2877":3,"2878":5}}],["25503",{"2":{"333":1}}],["25502",{"2":{"333":1}}],["25500",{"2":{"317":1}}],["25590",{"2":{"328":1}}],["25599",{"2":{"328":1}}],["25598",{"2":{"328":1}}],["25594",{"2":{"328":1}}],["25595",{"2":{"328":1}}],["25570",{"2":{"333":1}}],["25571",{"2":{"328":1}}],["25572",{"2":{"328":1}}],["25526",{"2":{"328":1}}],["25587",{"2":{"328":1}}],["25580",{"2":{"317":1}}],["25563",{"2":{"328":1}}],["25561",{"2":{"328":1}}],["25560",{"2":{"328":1}}],["25565",{"2":{"328":1}}],["25564",{"2":{"317":1}}],["25537",{"2":{"328":1}}],["25559",{"2":{"328":1}}],["25558",{"2":{"328":1}}],["25556",{"2":{"317":1}}],["25550",{"2":{"317":1}}],["25546",{"2":{"317":1}}],["25547",{"2":{"317":1}}],["25542",{"2":{"317":1}}],["25541",{"2":{"317":1}}],["25516",{"2":{"328":1}}],["25515",{"2":{"328":1}}],["25517",{"2":{"317":1}}],["25513",{"2":{"317":1}}],["254",{"2":{"1947":1,"2286":1}}],["25407",{"2":{"333":1}}],["25408",{"2":{"317":1}}],["25477",{"2":{"317":1}}],["25471",{"2":{"317":1}}],["25475",{"2":{"317":1}}],["25492",{"2":{"328":1}}],["25497",{"2":{"317":1}}],["25498",{"2":{"317":1}}],["25494",{"2":{"317":1}}],["25493",{"2":{"317":1}}],["25491",{"2":{"317":1}}],["25467",{"2":{"328":1}}],["25469",{"2":{"317":1}}],["25468",{"2":{"317":1}}],["25462",{"2":{"317":1}}],["25453",{"2":{"328":1}}],["25458",{"2":{"317":1}}],["25459",{"2":{"317":1}}],["25456",{"2":{"317":1}}],["25452",{"2":{"317":1}}],["25450",{"2":{"317":1}}],["25431",{"2":{"328":1}}],["25436",{"2":{"317":1}}],["25438",{"2":{"317":1}}],["25433",{"2":{"317":1}}],["25430",{"2":{"317":1}}],["25437",{"2":{"317":1}}],["25422",{"2":{"328":1}}],["25423",{"2":{"317":1}}],["25429",{"2":{"317":1}}],["25428",{"2":{"317":1}}],["25421",{"2":{"317":1}}],["25415",{"2":{"328":1}}],["25417",{"2":{"317":1}}],["25414",{"2":{"317":1}}],["25488",{"2":{"317":1}}],["25489",{"2":{"317":1}}],["25487",{"2":{"317":1}}],["25486",{"2":{"317":1}}],["25481",{"2":{"317":1}}],["25444",{"2":{"317":1}}],["25442",{"2":{"317":1}}],["253",{"2":{"1947":1,"2286":1}}],["25322",{"2":{"317":1}}],["25328",{"2":{"317":1}}],["25370",{"2":{"317":1}}],["25369",{"2":{"317":1}}],["25351",{"2":{"317":1}}],["25346",{"2":{"339":1}}],["25342",{"2":{"317":1}}],["25341",{"2":{"317":1}}],["25344",{"2":{"317":1}}],["25334",{"2":{"328":1}}],["25338",{"2":{"317":1}}],["25331",{"2":{"317":1}}],["25317",{"2":{"317":1}}],["25316",{"2":{"317":1}}],["25315",{"2":{"317":1}}],["25383",{"2":{"317":1}}],["25395",{"2":{"317":1}}],["25245",{"2":{"328":1}}],["25247",{"2":{"328":1}}],["25246",{"2":{"308":1}}],["25238",{"2":{"308":1}}],["25237",{"2":{"308":1}}],["25210",{"2":{"308":1}}],["25219",{"2":{"308":1}}],["25291",{"2":{"317":1}}],["25298",{"2":{"308":1}}],["25295",{"2":{"308":1}}],["25294",{"2":{"308":1}}],["25293",{"2":{"308":1}}],["25285",{"2":{"317":1}}],["25288",{"2":{"308":1}}],["25287",{"2":{"308":1}}],["25280",{"2":{"308":1}}],["25263",{"2":{"308":1}}],["25268",{"2":{"308":1}}],["25266",{"2":{"308":1}}],["25262",{"2":{"308":1}}],["25279",{"2":{"317":1}}],["25272",{"2":{"308":1}}],["25274",{"2":{"308":1}}],["25271",{"2":{"308":1}}],["25254",{"2":{"308":1}}],["25250",{"2":{"308":1}}],["25251",{"2":{"308":1}}],["25255",{"2":{"308":1}}],["25204",{"2":{"308":1}}],["25209",{"2":{"308":1}}],["25208",{"2":{"308":1}}],["25207",{"2":{"308":1}}],["25203",{"2":{"308":1}}],["25201",{"2":{"308":1}}],["25200",{"2":{"308":1}}],["251",{"2":{"1947":1,"2286":1}}],["25152",{"2":{"339":1}}],["25157",{"2":{"308":1}}],["25168",{"2":{"328":1}}],["25160",{"2":{"317":1}}],["25166",{"2":{"308":1}}],["25169",{"2":{"308":1}}],["25198",{"2":{"328":1}}],["25194",{"2":{"308":1}}],["25191",{"2":{"308":1}}],["25193",{"2":{"308":1}}],["25190",{"2":{"308":1}}],["25199",{"2":{"308":1}}],["25146",{"2":{"308":1}}],["25142",{"2":{"308":1}}],["25149",{"2":{"308":1}}],["25141",{"2":{"308":1}}],["25116",{"2":{"308":1}}],["25111",{"2":{"308":1}}],["25189",{"2":{"308":1}}],["25181",{"2":{"308":1}}],["25182",{"2":{"308":1}}],["25187",{"2":{"308":1}}],["25184",{"2":{"308":1}}],["25175",{"2":{"308":1}}],["25178",{"2":{"308":1}}],["25176",{"2":{"308":1}}],["25173",{"2":{"308":1}}],["25171",{"2":{"308":1}}],["25135",{"2":{"308":1}}],["25121",{"2":{"308":1}}],["25129",{"2":{"308":1}}],["25125",{"2":{"308":1}}],["250ms",{"2":{"1960":1}}],["250",{"2":{"859":2,"1361":1,"1801":1,"1960":1,"1981":1,"2003":1}}],["25060",{"2":{"308":1}}],["25061",{"2":{"308":1}}],["25015",{"2":{"308":1}}],["25018",{"2":{"308":1}}],["25010",{"2":{"308":1}}],["25088",{"2":{"308":1}}],["25080",{"2":{"308":1}}],["25085",{"2":{"308":1}}],["25070",{"2":{"308":1}}],["25049",{"2":{"317":1}}],["25046",{"2":{"308":1}}],["25042",{"2":{"308":1}}],["25009",{"2":{"317":1}}],["25005",{"2":{"308":1}}],["25001",{"2":{"308":1}}],["25050",{"2":{"308":2}}],["25u×2uh",{"2":{"2869":1}}],["25u",{"2":{"259":1,"2799":1}}],["25",{"0":{"237":1,"267":1,"295":1},"1":{"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1},"2":{"265":1,"266":1,"413":4,"565":1,"959":1,"1162":1,"1492":1,"1527":1,"1686":1,"1744":3,"1925":1,"1968":3,"1971":2,"2003":1,"2018":3,"2086":1,"2187":1,"2379":1,"2424":3,"2520":3,"2527":1,"2536":3,"2775":1,"2787":1,"2800":12,"2869":2,"2924":1,"2926":1}}],["256kb",{"2":{"2689":1}}],["256u",{"2":{"719":2}}],["25672",{"2":{"339":1}}],["25673",{"2":{"328":1}}],["25678",{"2":{"328":1}}],["25671",{"2":{"328":1}}],["25649",{"2":{"328":1}}],["25648",{"2":{"328":1}}],["25644",{"2":{"328":1}}],["25694",{"2":{"328":1}}],["25668",{"2":{"328":1}}],["25665",{"2":{"328":1}}],["25654",{"2":{"328":1}}],["25653",{"2":{"328":1}}],["25650",{"2":{"328":1}}],["25625",{"2":{"328":1}}],["25624",{"2":{"328":1}}],["25623",{"2":{"328":1}}],["25622",{"2":{"328":1}}],["25621",{"2":{"328":1}}],["25620",{"2":{"328":1}}],["25619",{"2":{"328":1}}],["25618",{"2":{"328":1}}],["25617",{"2":{"328":1}}],["25616",{"2":{"328":1}}],["25610",{"2":{"328":1}}],["25609",{"2":{"328":1}}],["25608",{"2":{"328":1}}],["25607",{"2":{"328":1}}],["25606",{"2":{"328":1}}],["25605",{"2":{"328":1}}],["25603",{"2":{"328":1}}],["25602",{"2":{"328":1}}],["25601",{"2":{"328":1}}],["25600",{"2":{"328":1}}],["25638",{"2":{"328":1}}],["25637",{"2":{"328":1}}],["25632",{"2":{"328":1}}],["256",{"2":{"46":1,"759":1,"1300":1,"2753":1,"2761":2,"2762":4,"2764":1,"2781":1}}],["26356",{"2":{"2629":1}}],["266",{"2":{"1387":1}}],["26k7",{"2":{"924":1,"958":1,"992":1}}],["26kbps",{"2":{"570":1,"2275":1}}],["26230",{"2":{"339":1}}],["26237",{"2":{"339":1}}],["26238",{"2":{"339":1}}],["26206",{"2":{"339":1}}],["26186",{"2":{"339":1}}],["26136",{"2":{"339":1}}],["26127",{"2":{"339":1}}],["26115",{"2":{"339":1}}],["26114",{"2":{"339":1}}],["26111",{"2":{"339":1}}],["26195",{"2":{"339":1}}],["26194",{"2":{"339":1}}],["26190",{"2":{"339":1}}],["26167",{"2":{"339":1}}],["26161",{"2":{"339":1}}],["26160",{"2":{"339":1}}],["26156",{"2":{"339":1}}],["26154",{"2":{"339":1}}],["26159",{"2":{"339":1}}],["26153",{"2":{"339":1}}],["26040",{"2":{"339":1}}],["26099",{"2":{"339":1}}],["26075",{"2":{"339":1}}],["26079",{"2":{"339":1}}],["26074",{"2":{"339":1}}],["26073",{"2":{"339":1}}],["26071",{"2":{"339":1}}],["26067",{"2":{"339":1}}],["26066",{"2":{"339":1}}],["26065",{"2":{"339":1}}],["26025",{"2":{"333":1}}],["26024",{"2":{"333":1}}],["26028",{"2":{"333":1}}],["26012",{"2":{"333":1}}],["26011",{"2":{"333":1}}],["26010",{"2":{"333":1}}],["26000",{"2":{"1207":1}}],["26001",{"2":{"339":1}}],["26008",{"2":{"333":1}}],["26007",{"2":{"333":1}}],["26006",{"2":{"333":1}}],["26",{"0":{"135":1,"177":1,"192":1,"223":1,"250":1},"1":{"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1},"2":{"170":1,"279":1,"379":2,"413":6,"924":1,"958":1,"992":1,"1492":1,"1527":1,"1686":1,"1744":3,"1968":3,"2018":3,"2520":3,"2536":3,"2775":1}}],["27312",{"2":{"2587":1}}],["275ms",{"2":{"2319":1}}],["275",{"2":{"2319":1}}],["270",{"2":{"1953":1,"1954":1,"1972":2,"1985":2,"1987":2,"2051":2,"2764":1}}],["270°",{"2":{"1741":1}}],["27749e1",{"2":{"73":1}}],["27",{"0":{"66":1,"115":1,"161":1,"212":1},"1":{"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"176":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1},"2":{"88":1,"104":1,"127":1,"170":1,"413":5,"1492":1,"1686":1,"1744":3,"1968":1,"2018":3,"2520":3,"2536":3}}],["282",{"2":{"1968":2}}],["285",{"2":{"1742":2,"2788":2}}],["28672",{"2":{"1376":2,"2587":1,"2629":1}}],["280",{"2":{"1285":1}}],["28e9",{"2":{"713":1}}],["28",{"0":{"52":1,"96":1,"150":1,"200":1},"1":{"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"211":1},"2":{"55":1,"88":1,"104":1,"127":1,"402":1,"413":5,"1492":1,"1686":1,"1744":3,"1968":2,"2018":3,"2520":3,"2536":3}}],["2",{"0":{"406":1,"408":1,"597":1,"1298":1,"1378":1,"1941":1,"2037":1,"2046":1,"2315":1,"2431":1,"2470":1,"2488":1,"2594":1,"2620":1,"2875":1},"1":{"2038":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2045":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1,"2489":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1},"2":{"37":2,"45":3,"49":1,"69":1,"114":7,"120":2,"133":2,"134":3,"175":1,"176":4,"188":1,"191":5,"201":3,"211":7,"222":2,"236":4,"249":2,"266":12,"272":2,"285":2,"307":1,"311":8,"317":1,"341":1,"354":1,"361":4,"375":3,"379":1,"402":2,"407":1,"408":1,"412":5,"434":1,"507":1,"518":1,"532":1,"546":2,"551":1,"564":2,"570":1,"581":1,"589":2,"591":1,"593":6,"599":1,"629":1,"684":1,"688":1,"690":21,"691":1,"694":2,"696":2,"713":1,"716":2,"719":2,"720":1,"726":1,"749":1,"750":1,"754":1,"755":1,"756":2,"828":2,"857":2,"859":1,"860":4,"889":2,"893":1,"921":4,"924":2,"925":2,"956":2,"958":2,"959":2,"990":2,"992":2,"993":2,"1024":2,"1027":2,"1058":2,"1061":2,"1092":4,"1095":4,"1126":4,"1129":4,"1160":2,"1163":4,"1198":1,"1201":1,"1205":1,"1207":1,"1216":2,"1252":2,"1300":1,"1303":3,"1311":2,"1329":2,"1330":1,"1357":1,"1384":1,"1395":1,"1422":1,"1441":1,"1467":1,"1470":1,"1471":1,"1485":1,"1492":1,"1503":1,"1535":1,"1538":1,"1556":1,"1590":1,"1591":1,"1625":2,"1630":3,"1639":1,"1641":1,"1661":5,"1664":1,"1665":1,"1666":1,"1667":1,"1670":1,"1679":1,"1683":1,"1684":2,"1685":6,"1686":1,"1699":1,"1702":2,"1741":2,"1744":3,"1804":3,"1839":2,"1843":2,"1846":1,"1850":1,"1920":1,"1925":32,"1933":4,"1935":1,"1937":4,"1939":1,"1941":1,"1951":1,"1953":3,"1954":1,"1968":2,"1974":1,"1983":1,"1989":1,"2012":5,"2018":3,"2037":2,"2046":3,"2048":3,"2075":3,"2076":1,"2082":1,"2088":1,"2095":1,"2096":1,"2183":6,"2185":2,"2189":4,"2190":1,"2191":1,"2198":2,"2206":1,"2207":1,"2242":1,"2252":2,"2267":2,"2275":1,"2280":2,"2296":2,"2300":1,"2301":3,"2303":19,"2315":5,"2317":1,"2318":2,"2319":1,"2322":1,"2374":1,"2377":4,"2388":1,"2395":1,"2417":1,"2424":3,"2444":2,"2450":1,"2454":6,"2455":6,"2460":1,"2488":2,"2507":1,"2510":9,"2516":4,"2518":4,"2520":3,"2527":32,"2528":4,"2536":3,"2542":2,"2547":2,"2550":2,"2557":2,"2558":4,"2560":1,"2563":1,"2592":1,"2598":1,"2632":1,"2652":1,"2683":1,"2691":2,"2721":16,"2746":1,"2750":2,"2762":2,"2777":1,"2781":2,"2785":1,"2795":16,"2796":12,"2820":1,"2825":1,"2863":1,"2869":1,"2871":3,"2872":1,"2875":6,"2877":1,"2878":4,"2880":1,"2912":2,"2918":7,"2919":9,"2920":5,"2926":1,"2928":3,"2948":1}}],["290",{"2":{"2788":2}}],["295",{"2":{"2239":1}}],["294",{"2":{"2239":1}}],["29k",{"2":{"1024":1,"1026":2,"1058":1,"1060":2,"1160":1,"1162":2}}],["29",{"0":{"9":1,"39":1,"78":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1},"2":{"88":1,"104":1,"127":1,"413":4,"1026":1,"1060":1,"1162":1,"1492":1,"1686":1,"1744":3,"1968":2,"2018":3,"2520":3,"2536":3,"2557":1,"2558":4}}],["20x4",{"2":{"1697":1}}],["20kbps",{"2":{"570":1,"2275":1}}],["209",{"2":{"251":1}}],["20996",{"2":{"222":1}}],["20992",{"2":{"222":1}}],["20998",{"2":{"211":1}}],["20981",{"2":{"211":1}}],["20949",{"2":{"211":1}}],["20962",{"2":{"211":1}}],["20960",{"2":{"211":1}}],["20969",{"2":{"211":1}}],["20953",{"2":{"236":1}}],["20958",{"2":{"211":1}}],["20957",{"2":{"211":1}}],["20956",{"2":{"211":1}}],["20931",{"2":{"211":1}}],["20932",{"2":{"211":1}}],["20930",{"2":{"211":1}}],["20924",{"2":{"211":1}}],["20923",{"2":{"211":1}}],["20929",{"2":{"211":1}}],["20928",{"2":{"211":1}}],["20927",{"2":{"211":1}}],["20926",{"2":{"211":1}}],["20921",{"2":{"211":1}}],["20920",{"2":{"211":1}}],["20915",{"2":{"211":1}}],["20919",{"2":{"211":1}}],["20918",{"2":{"211":1}}],["20917",{"2":{"211":1}}],["20913",{"2":{"211":1}}],["20912",{"2":{"211":1}}],["20908",{"2":{"211":1}}],["20907",{"2":{"211":1}}],["20906",{"2":{"211":1}}],["20901",{"2":{"211":1}}],["20900",{"2":{"211":1}}],["20799",{"2":{"211":1}}],["20791",{"2":{"211":1}}],["20790",{"2":{"211":1}}],["20789",{"2":{"211":1}}],["20788",{"2":{"211":1}}],["20787",{"2":{"211":1}}],["20786",{"2":{"211":1}}],["20785",{"2":{"211":1}}],["20784",{"2":{"211":1}}],["20783",{"2":{"211":1}}],["20782",{"2":{"211":1}}],["20781",{"2":{"211":1}}],["20779",{"2":{"211":1}}],["20778",{"2":{"211":1}}],["20777",{"2":{"211":1}}],["20776",{"2":{"211":1}}],["20775",{"2":{"211":1}}],["20774",{"2":{"211":1}}],["20773",{"2":{"211":1}}],["20770",{"2":{"211":1}}],["20761",{"2":{"222":1}}],["20765",{"2":{"211":1}}],["20764",{"2":{"211":1}}],["20763",{"2":{"211":1}}],["20756",{"2":{"211":1}}],["20755",{"2":{"211":1}}],["20754",{"2":{"211":1}}],["20753",{"2":{"211":1}}],["20752",{"2":{"211":1}}],["20751",{"2":{"211":1}}],["20750",{"2":{"211":1}}],["20749",{"2":{"211":1}}],["20748",{"2":{"211":1}}],["20747",{"2":{"211":1}}],["20746",{"2":{"211":1}}],["20745",{"2":{"211":1}}],["20744",{"2":{"211":1}}],["20743",{"2":{"211":1}}],["20742",{"2":{"211":1}}],["20741",{"2":{"211":1}}],["20740",{"2":{"211":1}}],["20732",{"2":{"236":1}}],["20733",{"2":{"211":1}}],["20739",{"2":{"211":1}}],["20738",{"2":{"211":1}}],["20737",{"2":{"211":1}}],["20736",{"2":{"211":1}}],["20735",{"2":{"211":1}}],["20731",{"2":{"211":1}}],["20734",{"2":{"211":1}}],["20723",{"2":{"211":1}}],["20728",{"2":{"211":1}}],["20727",{"2":{"211":1}}],["20726",{"2":{"211":1}}],["20725",{"2":{"211":1}}],["20724",{"2":{"211":1}}],["20722",{"2":{"211":1}}],["20720",{"2":{"211":1}}],["20719",{"2":{"211":1}}],["20718",{"2":{"211":1}}],["20717",{"2":{"211":1}}],["20716",{"2":{"211":1}}],["20715",{"2":{"211":1}}],["20714",{"2":{"211":1}}],["20713",{"2":{"211":1}}],["20712",{"2":{"211":1}}],["20711",{"2":{"211":1}}],["20710",{"2":{"211":1}}],["20708",{"2":{"211":1}}],["20706",{"2":{"211":1}}],["20703",{"2":{"211":1}}],["20899",{"2":{"211":1}}],["20895",{"2":{"211":1}}],["20893",{"2":{"211":1}}],["20892",{"2":{"211":1}}],["20891",{"2":{"211":1}}],["20897",{"2":{"211":1}}],["20889",{"2":{"211":1}}],["20888",{"2":{"211":1}}],["20887",{"2":{"211":1}}],["20886",{"2":{"211":1}}],["20885",{"2":{"211":1}}],["20884",{"2":{"211":1}}],["20882",{"2":{"211":1}}],["20881",{"2":{"211":1}}],["20880",{"2":{"211":1}}],["20879",{"2":{"211":1}}],["20878",{"2":{"211":1}}],["20877",{"2":{"211":1}}],["20876",{"2":{"211":1}}],["20875",{"2":{"211":1}}],["20874",{"2":{"211":1}}],["20873",{"2":{"211":1}}],["20872",{"2":{"211":1}}],["20871",{"2":{"211":1}}],["20870",{"2":{"211":1}}],["20863",{"2":{"236":1}}],["20869",{"2":{"211":1}}],["20867",{"2":{"211":1}}],["20866",{"2":{"211":1}}],["20865",{"2":{"211":1}}],["20864",{"2":{"211":1}}],["20861",{"2":{"211":1}}],["20860",{"2":{"211":1}}],["20857",{"2":{"236":1}}],["20859",{"2":{"211":1}}],["20858",{"2":{"211":1}}],["20855",{"2":{"211":1}}],["20854",{"2":{"211":1}}],["20853",{"2":{"211":1}}],["20851",{"2":{"211":1}}],["20850",{"2":{"211":1}}],["20849",{"2":{"211":1}}],["20848",{"2":{"211":1}}],["20847",{"2":{"211":1}}],["20845",{"2":{"211":1}}],["20844",{"2":{"211":1}}],["20843",{"2":{"211":1}}],["20842",{"2":{"211":1}}],["20835",{"2":{"211":1}}],["20834",{"2":{"211":1}}],["20833",{"2":{"211":1}}],["20832",{"2":{"211":1}}],["20831",{"2":{"211":1}}],["20830",{"2":{"211":1}}],["20836",{"2":{"211":1}}],["20828",{"2":{"285":1}}],["20829",{"2":{"211":1}}],["20827",{"2":{"211":1}}],["20825",{"2":{"211":1}}],["20824",{"2":{"211":1}}],["20822",{"2":{"211":1}}],["20821",{"2":{"211":1}}],["20820",{"2":{"211":1}}],["20819",{"2":{"211":1}}],["20818",{"2":{"211":1}}],["20816",{"2":{"211":1}}],["20814",{"2":{"211":1}}],["20813",{"2":{"211":1}}],["20812",{"2":{"211":1}}],["20810",{"2":{"211":1}}],["20806",{"2":{"211":1}}],["20808",{"2":{"211":1}}],["20805",{"2":{"211":1}}],["20804",{"2":{"211":1}}],["20809",{"2":{"211":1}}],["20807",{"2":{"211":1}}],["20802",{"2":{"211":1}}],["20801",{"2":{"211":1}}],["20800",{"2":{"211":1}}],["20699",{"2":{"211":1}}],["20698",{"2":{"211":1}}],["20697",{"2":{"211":1}}],["20696",{"2":{"211":1}}],["20695",{"2":{"211":1}}],["20694",{"2":{"211":1}}],["20693",{"2":{"211":1}}],["20692",{"2":{"211":1}}],["20691",{"2":{"211":1}}],["20689",{"2":{"211":1}}],["20688",{"2":{"211":1}}],["20685",{"2":{"211":1}}],["20684",{"2":{"211":1}}],["20682",{"2":{"211":1}}],["20681",{"2":{"211":1}}],["20680",{"2":{"211":1}}],["2067",{"2":{"713":1}}],["20670",{"2":{"211":1}}],["20679",{"2":{"211":1}}],["20678",{"2":{"211":1}}],["20677",{"2":{"211":1}}],["20676",{"2":{"211":1}}],["20675",{"2":{"211":1}}],["20672",{"2":{"211":1}}],["20671",{"2":{"211":1}}],["20669",{"2":{"211":2}}],["20667",{"2":{"211":1}}],["20666",{"2":{"211":1}}],["20665",{"2":{"211":1}}],["20663",{"2":{"211":1}}],["20662",{"2":{"211":1}}],["20661",{"2":{"211":1}}],["20660",{"2":{"211":1}}],["20653",{"2":{"211":1}}],["20659",{"2":{"211":1}}],["20658",{"2":{"211":1}}],["20657",{"2":{"211":1}}],["20651",{"2":{"211":1}}],["20645",{"2":{"249":1}}],["20646",{"2":{"222":1}}],["20648",{"2":{"211":1}}],["20640",{"2":{"211":1}}],["20642",{"2":{"211":1}}],["20633",{"2":{"211":1}}],["20634",{"2":{"211":1}}],["20639",{"2":{"211":1}}],["20636",{"2":{"211":1}}],["20635",{"2":{"211":1}}],["20638",{"2":{"211":1}}],["20629",{"2":{"211":1}}],["20628",{"2":{"211":1}}],["20622",{"2":{"211":1}}],["20621",{"2":{"211":1}}],["20620",{"2":{"211":1}}],["20623",{"2":{"211":1}}],["20619",{"2":{"211":1}}],["20614",{"2":{"211":1}}],["20613",{"2":{"211":1}}],["20612",{"2":{"211":1}}],["20611",{"2":{"211":1}}],["20610",{"2":{"211":1}}],["20604",{"2":{"211":1}}],["20600",{"2":{"211":1}}],["205",{"2":{"1685":1,"2915":1,"2916":1,"2917":1}}],["20534",{"2":{"222":1}}],["20524",{"2":{"211":1}}],["20599",{"2":{"211":1}}],["20598",{"2":{"211":1}}],["20597",{"2":{"211":1}}],["20596",{"2":{"211":1}}],["20595",{"2":{"211":1}}],["20594",{"2":{"211":1}}],["20593",{"2":{"211":1}}],["20592",{"2":{"211":1}}],["20588",{"2":{"211":1}}],["20586",{"2":{"211":1}}],["20585",{"2":{"211":1}}],["20583",{"2":{"211":1}}],["20580",{"2":{"211":1}}],["20584",{"2":{"211":1}}],["20577",{"2":{"211":1}}],["20571",{"2":{"211":1}}],["20570",{"2":{"211":1}}],["20572",{"2":{"211":1}}],["20569",{"2":{"211":1}}],["20568",{"2":{"211":1}}],["20567",{"2":{"211":1}}],["20566",{"2":{"211":1}}],["20565",{"2":{"211":1}}],["20564",{"2":{"211":1}}],["20563",{"2":{"211":1}}],["20562",{"2":{"211":1}}],["20561",{"2":{"211":1}}],["20560",{"2":{"211":1}}],["20558",{"2":{"211":1}}],["20555",{"2":{"211":1}}],["20554",{"2":{"211":1}}],["20553",{"2":{"211":1}}],["20552",{"2":{"211":1}}],["20549",{"2":{"211":1}}],["20548",{"2":{"211":1}}],["20547",{"2":{"211":1}}],["20546",{"2":{"211":1}}],["20541",{"2":{"211":1}}],["20517",{"2":{"222":1}}],["20515",{"2":{"211":1}}],["20519",{"2":{"211":1}}],["20518",{"2":{"211":1}}],["20516",{"2":{"211":1}}],["20508",{"2":{"211":1}}],["20504",{"2":{"211":1}}],["20500",{"2":{"211":1}}],["20405",{"2":{"266":1}}],["20402",{"2":{"222":1}}],["20456",{"2":{"211":1}}],["20454",{"2":{"211":1}}],["20410",{"2":{"236":1}}],["20411",{"2":{"211":1}}],["20417",{"2":{"211":1}}],["20412",{"2":{"211":1}}],["20499",{"2":{"211":1}}],["20498",{"2":{"211":1}}],["20496",{"2":{"211":1}}],["20495",{"2":{"211":1}}],["20494",{"2":{"211":1}}],["20491",{"2":{"211":1}}],["20490",{"2":{"211":1}}],["20480",{"2":{"2508":1}}],["2048",{"2":{"754":1,"757":3}}],["20481",{"2":{"222":1}}],["20489",{"2":{"211":1}}],["20488",{"2":{"211":1}}],["20487",{"2":{"211":1}}],["20475",{"2":{"211":1}}],["20473",{"2":{"211":1}}],["20478",{"2":{"211":1}}],["20477",{"2":{"211":1}}],["20474",{"2":{"211":1}}],["20470",{"2":{"211":1}}],["20468",{"2":{"211":1}}],["20463",{"2":{"211":1}}],["20443",{"2":{"211":1}}],["20442",{"2":{"211":1}}],["20440",{"2":{"211":1}}],["20433",{"2":{"211":1}}],["20432",{"2":{"211":1}}],["20439",{"2":{"211":1}}],["20438",{"2":{"211":1}}],["20436",{"2":{"211":1}}],["20430",{"2":{"211":1}}],["20427",{"2":{"236":1}}],["20422",{"2":{"211":1}}],["20423",{"2":{"211":1}}],["20395",{"2":{"222":1}}],["20397",{"2":{"211":1}}],["20398",{"2":{"211":1}}],["20389",{"2":{"222":1}}],["20383",{"2":{"211":1}}],["20381",{"2":{"211":1}}],["20367",{"2":{"211":1}}],["20365",{"2":{"211":1}}],["20356",{"2":{"211":1}}],["20350",{"2":{"211":1}}],["20348",{"2":{"211":1}}],["20349",{"2":{"211":1}}],["20341",{"2":{"211":1}}],["20340",{"2":{"211":1}}],["20347",{"2":{"211":1}}],["20330",{"2":{"317":1}}],["20339",{"2":{"211":1}}],["20337",{"2":{"211":1}}],["20334",{"2":{"211":2}}],["20331",{"2":{"211":1}}],["20325",{"2":{"211":1}}],["20326",{"2":{"211":1}}],["20321",{"2":{"211":1}}],["20328",{"2":{"211":1}}],["20320",{"2":{"211":1}}],["20315",{"2":{"236":1}}],["20311",{"2":{"211":1}}],["20317",{"2":{"211":1}}],["20316",{"2":{"211":1}}],["20310",{"2":{"211":1}}],["20314",{"2":{"211":1}}],["20313",{"2":{"211":1}}],["20312",{"2":{"211":1}}],["20308",{"2":{"211":1}}],["20303",{"2":{"211":1}}],["20300",{"2":{"211":1}}],["201",{"2":{"2915":1}}],["20101",{"2":{"266":1}}],["20188",{"2":{"211":1}}],["20183",{"2":{"211":1}}],["20148",{"2":{"211":1}}],["20168",{"2":{"211":1}}],["20167",{"2":{"211":1}}],["20113",{"2":{"211":1}}],["20110",{"2":{"211":1}}],["2017",{"2":{"377":2,"2432":1,"2464":3}}],["20177",{"2":{"211":1}}],["20172",{"2":{"211":1}}],["2015",{"2":{"1343":1,"2464":1}}],["20157",{"2":{"211":1}}],["20156",{"2":{"211":1}}],["20155",{"2":{"211":1}}],["20159",{"2":{"211":1}}],["20154",{"2":{"211":1}}],["20150",{"2":{"211":1}}],["20191",{"2":{"211":1}}],["20194",{"2":{"211":1}}],["20192",{"2":{"211":1}}],["2019",{"0":{"0":1,"1320":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1},"2":{"55":2,"134":1,"413":1}}],["200u",{"2":{"2700":1}}],["20043e64",{"2":{"2410":1}}],["2004a",{"2":{"1697":1}}],["200ms",{"2":{"1959":1,"2317":1,"2910":1,"2914":1,"2919":1,"2920":1}}],["200",{"2":{"561":1,"564":4,"1801":1,"1967":1,"1976":2,"2003":1,"2091":2,"2185":1,"2191":1,"2291":1,"2454":1,"2749":2,"2854":2,"2910":1,"2915":1,"2916":2,"2917":1,"2930":1}}],["20059",{"2":{"236":1}}],["20056",{"2":{"211":1}}],["20097",{"2":{"211":1}}],["20092",{"2":{"211":1}}],["20083",{"2":{"211":1}}],["20084",{"2":{"211":1}}],["20078",{"2":{"211":1}}],["20075",{"2":{"211":1}}],["20079",{"2":{"211":1}}],["20020",{"2":{"211":1}}],["20019",{"2":{"211":1}}],["20013",{"2":{"211":1}}],["20061",{"2":{"211":1}}],["20034",{"2":{"211":1}}],["20033",{"2":{"211":1}}],["20030",{"2":{"211":1}}],["2003",{"2":{"116":1}}],["2000000",{"2":{"1967":1,"1983":1}}],["20000",{"2":{"211":1,"1207":1}}],["20003",{"2":{"211":1}}],["20001",{"2":{"211":1}}],["20006",{"2":{"211":1}}],["20004",{"2":{"211":1}}],["2000th",{"2":{"116":1}}],["2000",{"0":{"116":1},"2":{"570":1,"1971":1,"1982":1,"1983":1,"1996":1,"2278":1,"2466":1,"2880":1}}],["2026",{"0":{"329":1,"334":1},"1":{"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1},"2":{"400":2,"401":1,"402":7,"413":2}}],["20262",{"2":{"211":1}}],["20273",{"2":{"277":1}}],["20274",{"2":{"211":1}}],["2025",{"0":{"286":1,"295":1,"309":1,"318":1},"1":{"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1},"2":{"307":1,"400":1,"402":1,"413":4,"1390":1,"1405":1}}],["20255",{"2":{"222":1}}],["20253",{"2":{"211":1}}],["20292",{"2":{"211":1}}],["20297",{"2":{"211":1}}],["20293",{"2":{"211":1}}],["20290",{"2":{"211":1}}],["20289",{"2":{"211":1}}],["2024",{"0":{"237":1,"250":1,"267":1,"278":1},"1":{"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1},"2":{"249":1,"251":1,"265":1,"268":1,"279":1,"413":4,"2567":1,"2750":2}}],["20241124",{"2":{"403":1}}],["20241",{"2":{"211":1}}],["20248",{"2":{"211":1}}],["20243",{"2":{"211":1}}],["20230",{"2":{"222":1}}],["20234",{"2":{"211":1}}],["20238",{"2":{"211":1}}],["20237",{"2":{"211":1}}],["20236",{"2":{"211":1}}],["20235",{"2":{"211":1}}],["2023",{"0":{"192":1,"200":1,"212":1,"223":1},"1":{"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"211":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1},"2":{"254":1,"413":4}}],["20220",{"2":{"236":1}}],["2022",{"0":{"135":1,"150":1,"161":1,"177":1},"1":{"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"176":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1},"2":{"170":2,"312":1,"379":2,"413":4,"2508":17}}],["20218",{"2":{"211":1}}],["20211",{"2":{"211":1}}],["2021",{"0":{"66":1,"78":1,"96":1,"115":1},"1":{"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1},"2":{"88":3,"104":3,"114":2,"127":3,"413":4}}],["20204",{"2":{"211":1}}],["20203",{"2":{"211":1}}],["2020",{"0":{"9":1,"19":1,"39":1,"52":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1},"2":{"55":2,"413":4,"1287":2}}],["20",{"2":{"49":1,"69":1,"111":1,"134":1,"413":1,"421":5,"566":1,"690":1,"1208":2,"1303":1,"1390":1,"1405":1,"1492":1,"1686":5,"1744":3,"1935":1,"1937":1,"1953":1,"1968":3,"1974":1,"1980":1,"2018":3,"2187":3,"2424":2,"2508":1,"2520":3,"2536":3,"2764":1,"2787":3,"2871":1,"2878":1,"2921":1}}],["k13",{"2":{"2794":4,"2796":1,"2937":2}}],["k12",{"2":{"2794":4,"2796":1,"2937":2}}],["k11",{"2":{"2794":4,"2796":1,"2937":2}}],["k10",{"2":{"2794":4,"2796":1,"2937":2}}],["k03",{"2":{"2794":4,"2796":1,"2937":2}}],["k02",{"2":{"2794":4,"2796":1,"2937":2}}],["k01",{"2":{"2794":4,"2796":1,"2937":2}}],["k00",{"2":{"2794":4,"2796":1,"2937":2}}],["kxy",{"2":{"2434":1}}],["kvm",{"2":{"1961":1}}],["kvms",{"2":{"1960":2,"1961":2}}],["kp",{"2":{"1774":1,"2510":19,"2550":19}}],["kprepublic",{"2":{"102":12,"114":1,"122":10,"134":2,"143":4,"199":1,"226":2,"236":1,"253":4,"266":2,"311":4,"328":3,"2567":1}}],["kω",{"2":{"860":14,"925":14,"959":14,"993":14,"1027":14,"1061":14,"1095":14,"1129":14,"1163":14}}],["khz",{"2":{"859":6,"924":5,"958":5,"992":5,"1026":3,"1060":3,"1162":5}}],["k7",{"2":{"328":1}}],["k6",{"2":{"328":1}}],["k5",{"2":{"328":1}}],["k552",{"2":{"199":2}}],["k42",{"2":{"2794":4,"2796":1,"2937":2}}],["k40",{"2":{"2794":4,"2796":1,"2937":2}}],["k4",{"2":{"328":1}}],["k22",{"2":{"2794":4,"2796":1,"2937":2}}],["k21",{"2":{"2794":4,"2796":1,"2937":2}}],["k20",{"2":{"2794":4,"2796":1,"2937":2}}],["k2",{"2":{"328":1}}],["kth",{"2":{"1794":2}}],["kt60hs",{"2":{"300":2,"308":1}}],["ktec",{"2":{"102":3}}],["kl",{"2":{"1329":7,"2301":3}}],["kle",{"2":{"463":3,"2589":1,"2746":1,"2795":4,"2797":1,"2800":1,"2869":1}}],["kle2json",{"0":{"463":1},"2":{"463":3}}],["klein",{"2":{"249":1}}],["kludge",{"2":{"328":1,"2567":1}}],["kl90",{"2":{"222":1,"249":1}}],["kumaokobo",{"2":{"241":10,"249":2}}],["kudox",{"2":{"241":16}}],["k83",{"2":{"217":1}}],["kj",{"2":{"211":1}}],["kohm",{"2":{"744":2,"2858":2}}],["koyu",{"2":{"211":1}}],["kopibeng",{"2":{"211":5}}],["koalafications",{"2":{"211":1}}],["koolertron",{"2":{"211":1}}],["ko",{"0":{"1770":1,"1771":1,"1772":1,"1773":1,"1782":1},"2":{"188":1,"191":1,"1770":1,"1773":1,"1774":2,"1776":9,"1777":2,"1779":1,"1780":3,"1781":2,"1782":8,"1785":1}}],["korean",{"2":{"176":1,"2887":2}}],["krush60",{"2":{"249":1}}],["kr",{"2":{"176":4}}],["knife",{"2":{"2280":2,"2421":1}}],["knife66",{"2":{"211":3}}],["knight",{"2":{"160":1,"2181":2,"2183":2,"2184":2,"2185":6,"2187":2,"2210":1,"2532":2,"2894":1}}],["knops",{"2":{"114":1}}],["knowledge",{"2":{"626":1,"757":1,"1342":1,"2276":1,"2478":1,"2905":1,"2906":2,"2908":1}}],["know",{"0":{"1336":1},"2":{"228":1,"245":1,"393":1,"397":1,"418":1,"496":1,"505":1,"799":2,"1329":1,"1331":1,"1339":1,"1357":1,"1428":2,"1431":1,"1647":1,"1685":1,"1782":1,"1796":1,"2057":1,"2270":1,"2281":1,"2411":1,"2572":1,"2616":1,"2628":2,"2634":1,"2640":1,"2644":1,"2905":1,"2937":1,"2939":1,"2943":1}}],["knows",{"2":{"49":1,"149":1,"721":1}}],["known",{"0":{"713":1,"1679":1,"2374":1},"1":{"2375":1},"2":{"37":1,"547":1,"613":1,"710":1,"713":1,"1197":1,"1214":1,"1287":1,"1541":1,"1592":1,"1623":1,"1961":1,"2016":1,"2265":1,"2569":1,"2634":1,"2683":1,"2746":1,"2763":2,"2834":1,"2930":1}}],["knobx1",{"2":{"328":1}}],["knobs",{"2":{"249":1}}],["knob",{"2":{"13":1}}],["kkatano",{"2":{"143":6,"149":2,"211":1}}],["kapton",{"2":{"2425":1}}],["kapcave",{"2":{"122":2,"134":1}}],["katakana",{"2":{"1358":1,"2547":2}}],["katana60",{"2":{"440":1,"2448":1}}],["karabiner",{"0":{"1359":1},"2":{"1358":1,"1359":4}}],["karn",{"2":{"249":1}}],["karlk90",{"2":{"163":1}}],["kana",{"2":{"222":1,"1835":1,"1836":2,"1838":1,"2867":2}}],["kangaroo",{"2":{"211":1}}],["kastenwagen",{"2":{"211":2}}],["kamigakushi",{"2":{"207":2,"211":1,"217":2}}],["ka2hiro",{"2":{"149":1}}],["kagamidget",{"2":{"143":2}}],["kagizaraya",{"2":{"143":3,"149":1,"241":1,"249":1}}],["kakunpc",{"2":{"143":11,"149":2}}],["kmac",{"2":{"241":4}}],["km",{"2":{"132":1,"176":1,"429":3,"430":1,"433":2,"437":2,"439":2,"440":1,"445":1,"447":1,"448":1,"449":1,"450":1,"452":3,"453":3,"470":1,"1388":1,"1527":1,"2273":3,"2382":1,"2432":1,"2511":1,"2587":1,"2607":1,"2608":1,"2616":1,"2629":2,"2682":1,"2714":1,"2752":1}}],["kyria",{"2":{"102":2,"114":3,"134":1,"222":2,"277":1}}],["k33",{"2":{"2794":4,"2796":1,"2937":2}}],["k32",{"2":{"2794":4,"2796":1,"2937":2}}],["k320",{"2":{"86":1,"102":2,"181":2,"191":1}}],["k31",{"2":{"2794":4,"2796":1,"2937":2}}],["k310",{"2":{"114":1,"181":2,"191":1}}],["k30",{"2":{"2794":4,"2796":1,"2937":2}}],["k3",{"2":{"328":1}}],["k34",{"2":{"222":1}}],["k3x0",{"2":{"102":1,"181":2}}],["kzar",{"2":{"92":1,"93":1}}],["kiiboom",{"2":{"2567":1}}],["kiibohd",{"0":{"2396":1},"2":{"50":1,"339":1,"713":2,"2396":1}}],["kib",{"2":{"2410":1,"2490":1,"2508":3}}],["kit",{"2":{"684":1}}],["kira80",{"2":{"241":2}}],["kira",{"2":{"241":2,"249":1}}],["kira75",{"2":{"241":2}}],["kikoslab",{"2":{"222":1,"249":1}}],["kiko",{"2":{"211":1}}],["kicad",{"2":{"211":1}}],["kinds",{"2":{"1538":1,"2211":1,"2482":1}}],["kind",{"0":{"592":1,"1796":1},"1":{"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1},"2":{"1538":1,"1539":1,"2317":1}}],["king",{"2":{"176":1}}],["kintwin",{"2":{"222":1}}],["kint41",{"2":{"114":1,"2663":1}}],["kint",{"2":{"114":1,"134":1}}],["kint2pp",{"2":{"94":1}}],["kint36",{"2":{"93":1,"94":1,"114":1,"199":1,"2663":1}}],["kinetis",{"0":{"551":1},"2":{"114":1,"160":2,"191":1,"2396":1,"2685":1,"2707":1,"2802":1}}],["kinetic",{"0":{"1936":1},"2":{"74":1,"160":2,"175":2,"176":1,"222":2,"1934":1,"1936":3,"1939":1,"1940":1,"1985":1}}],["kinesis",{"2":{"93":2,"114":1,"211":1,"217":2,"222":3,"2663":2}}],["k",{"2":{"49":2,"65":1,"114":1,"143":2,"191":1,"236":1,"249":2,"266":8,"277":1,"285":2,"317":1,"375":1,"589":2,"1448":2,"1605":1,"1622":2,"1625":1,"2068":1,"2071":4,"2181":1,"2296":1,"2301":1,"2317":1,"2510":3,"2532":1,"2542":3,"2563":1,"2794":1,"2889":1,"2925":3}}],["kb2",{"2":{"618":2}}],["kb2040",{"0":{"1393":1},"2":{"163":1,"176":2,"322":2,"1389":1,"1391":3,"1394":1,"1397":1,"2702":1,"2895":1}}],["kb1",{"2":{"618":1}}],["kb16",{"2":{"176":1,"191":1,"249":1}}],["kb|user",{"0":{"307":1}}],["kb38",{"2":{"222":1,"266":1}}],["kb83",{"2":{"217":1,"222":1,"317":1}}],["kbo5000",{"2":{"199":1}}],["kbfirmware",{"0":{"450":1},"2":{"173":4,"450":2,"600":1,"2432":2,"2589":1,"2746":2}}],["kbd",{"2":{"1625":1}}],["kbdmania",{"2":{"241":2,"249":1}}],["kbd66",{"2":{"211":1}}],["kbd67mkiirgb",{"2":{"217":1}}],["kbd67",{"2":{"114":1,"217":1,"249":1}}],["kbdfans",{"2":{"143":1,"149":1,"191":1,"211":6,"217":2,"241":2,"249":1}}],["kb",{"0":{"652":1,"1587":1,"1908":1,"1912":1,"2168":1,"2172":1,"2342":1,"2932":1},"1":{"1909":1,"2169":1,"2343":1},"2":{"34":1,"70":1,"90":3,"105":4,"111":1,"125":2,"132":1,"185":2,"190":1,"191":3,"197":13,"199":3,"203":2,"211":1,"229":1,"230":1,"231":3,"266":1,"277":6,"285":1,"294":1,"317":1,"328":2,"429":6,"430":1,"437":4,"439":2,"440":2,"442":1,"443":1,"444":1,"445":1,"447":2,"448":1,"449":1,"450":1,"452":3,"453":3,"470":1,"570":1,"593":3,"625":4,"627":6,"630":1,"632":1,"636":1,"638":1,"642":1,"645":1,"646":1,"650":2,"652":1,"653":1,"654":1,"1351":1,"1388":1,"1416":3,"1418":3,"1419":11,"1428":2,"1432":1,"1470":2,"1491":1,"1527":1,"1635":1,"1636":1,"1638":2,"1641":2,"1668":1,"1837":2,"1838":1,"1850":2,"1855":2,"1954":2,"1958":2,"1983":2,"1988":2,"1989":1,"2005":1,"2006":1,"2088":2,"2094":2,"2273":3,"2277":1,"2310":1,"2382":1,"2432":1,"2448":2,"2456":4,"2461":1,"2510":4,"2511":1,"2548":4,"2584":1,"2587":1,"2607":1,"2608":1,"2616":1,"2629":2,"2652":4,"2682":1,"2714":1,"2746":2,"2747":1,"2752":1,"2753":1,"2756":1,"2763":1,"2764":4,"2940":4,"2948":1}}],["kc5",{"0":{"1832":1},"1":{"1833":1,"1834":1},"2":{"1833":1}}],["kc4",{"0":{"1829":1,"1832":1},"1":{"1830":1,"1831":1,"1833":1,"1834":1},"2":{"1830":1,"1833":1}}],["kc3",{"0":{"1826":1,"1829":1,"1832":1},"1":{"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1},"2":{"1827":1,"1830":1,"1833":1}}],["kc2",{"0":{"1823":1,"1826":1,"1829":1,"1832":1},"1":{"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1},"2":{"1824":1,"1827":1,"1830":1,"1833":1,"2309":3}}],["kc1",{"0":{"1823":1,"1826":1,"1829":1,"1832":1},"1":{"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1},"2":{"1363":1,"1824":1,"1827":1,"1830":1,"1833":1,"2309":3}}],["kc60",{"2":{"236":1,"2187":1}}],["kc",{"0":{"8":2,"89":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":4,"1820":1},"1":{"1821":1,"1822":1},"2":{"7":2,"8":3,"38":6,"89":1,"90":8,"94":1,"176":2,"188":3,"191":5,"194":5,"195":2,"196":9,"199":5,"202":3,"209":6,"231":16,"255":1,"307":6,"375":211,"561":3,"564":3,"589":338,"631":1,"632":1,"1329":7,"1330":3,"1347":2,"1350":3,"1351":5,"1353":1,"1354":6,"1361":1,"1363":71,"1364":5,"1366":9,"1367":14,"1417":1,"1422":4,"1423":4,"1427":2,"1431":2,"1444":2,"1446":1,"1447":10,"1448":4,"1453":6,"1454":1,"1455":4,"1456":1,"1457":1,"1462":8,"1472":4,"1490":3,"1491":1,"1503":1,"1504":1,"1505":1,"1510":3,"1516":1,"1517":8,"1532":2,"1533":3,"1535":1,"1538":2,"1590":6,"1593":13,"1594":3,"1597":2,"1600":10,"1602":6,"1603":3,"1604":7,"1605":19,"1612":3,"1617":5,"1618":9,"1622":19,"1625":1,"1663":2,"1667":4,"1668":6,"1672":3,"1673":1,"1690":1,"1695":2,"1743":6,"1765":1,"1774":6,"1776":6,"1777":4,"1779":8,"1781":3,"1788":15,"1791":1,"1795":2,"1798":9,"1801":3,"1803":3,"1804":3,"1821":1,"2006":3,"2068":40,"2069":11,"2070":11,"2071":3,"2073":1,"2074":3,"2077":1,"2078":1,"2079":10,"2095":1,"2222":6,"2259":34,"2260":9,"2304":2,"2309":6,"2312":2,"2315":2,"2316":2,"2317":12,"2318":7,"2319":2,"2327":3,"2365":4,"2381":8,"2434":1,"2473":1,"2510":329,"2523":3,"2529":69,"2530":72,"2534":41,"2539":2,"2541":2,"2542":36,"2543":24,"2544":34,"2545":13,"2546":23,"2547":36,"2548":64,"2549":63,"2550":37,"2551":3,"2553":1,"2555":41,"2559":7,"2561":10,"2563":72,"2564":22,"2575":73,"2576":2,"2578":7,"2579":7,"2580":4,"2651":2,"2751":3,"2769":1,"2794":8,"2796":1,"2884":1,"2910":2,"2912":2,"2914":3,"2915":9,"2916":14,"2917":9,"2918":19,"2919":16,"2920":9,"2921":6,"2922":7,"2923":8,"2924":2,"2925":18,"2927":5,"2928":19,"2930":3,"2937":5,"2938":17,"2939":1,"2948":3}}],["kent",{"2":{"2941":1}}],["kerpleplork",{"2":{"615":4}}],["kernels",{"2":{"2731":1}}],["kernel",{"0":{"2471":1},"2":{"199":1,"1317":1,"2510":1,"2717":1,"2730":1}}],["kept",{"2":{"588":1,"668":1,"720":1,"1681":1,"1999":1,"2608":1,"2707":1}}],["keaboard",{"2":{"253":2}}],["kezewa",{"2":{"241":2,"249":1}}],["kestra",{"2":{"211":1}}],["kegen",{"2":{"191":1,"211":1}}],["kelowna",{"2":{"143":2}}],["keeb",{"2":{"2762":6}}],["keebzdotnet",{"2":{"211":1}}],["keebs",{"2":{"149":8,"176":1}}],["keebio",{"0":{"45":1},"2":{"45":1,"114":3,"134":1,"191":1,"199":2,"222":1,"277":1,"285":1,"317":1,"328":1,"1388":1,"1390":2,"1405":2,"2278":1}}],["keeps",{"2":{"1366":1,"1367":2,"1662":1,"2568":1}}],["keeping",{"2":{"540":1,"754":1,"1347":1,"1935":1,"2300":1,"2463":1,"2902":1,"2921":1}}],["keep",{"2":{"6":1,"74":2,"113":1,"124":1,"194":1,"211":2,"328":1,"512":2,"516":1,"527":1,"538":1,"561":1,"610":1,"615":1,"619":2,"646":1,"674":1,"675":2,"720":1,"1197":1,"1366":1,"1383":1,"1415":1,"1425":1,"1438":1,"1451":1,"1558":1,"1591":1,"1662":1,"1666":1,"1690":1,"1766":1,"1939":1,"1961":1,"1990":1,"2259":1,"2295":1,"2309":1,"2389":1,"2418":1,"2427":2,"2428":2,"2429":1,"2431":1,"2434":1,"2458":1,"2460":1,"2461":1,"2463":1,"2466":1,"2568":2,"2582":1,"2586":1,"2605":1,"2606":1,"2638":2,"2639":1,"2658":2,"2662":1,"2680":1,"2744":1,"2748":3,"2753":1,"2761":1,"2763":1,"2854":1,"2949":1}}],["keyunit",{"2":{"2869":4}}],["keyup",{"2":{"1363":1,"1452":1,"1454":1,"1667":2,"2222":2,"2854":2,"2871":2,"2878":2}}],["key3",{"2":{"2466":6}}],["key2",{"2":{"2466":10}}],["key0",{"2":{"2466":6}}],["key1",{"2":{"2301":1,"2466":6}}],["keylog",{"2":{"2889":2}}],["keyloggers",{"2":{"312":1}}],["keylogger",{"0":{"312":1},"2":{"317":1}}],["keylight",{"2":{"1847":1,"1852":1,"2083":1,"2091":1,"2095":1}}],["keyreleases",{"2":{"1852":2,"2091":2}}],["keyrepeating",{"2":{"1499":1,"1512":1,"1517":1}}],["keyrepeat",{"2":{"1498":1,"1499":1,"1511":1}}],["keyrecords",{"2":{"2004":1}}],["keyrecord",{"2":{"22":3,"149":1,"194":2,"195":2,"307":1,"324":1,"325":1,"593":2,"631":1,"632":2,"647":1,"1329":1,"1366":1,"1367":1,"1417":1,"1420":1,"1431":1,"1446":2,"1447":2,"1462":1,"1471":1,"1472":2,"1503":1,"1510":2,"1517":3,"1532":1,"1533":1,"1613":2,"1664":1,"1689":1,"1743":1,"1795":1,"1924":1,"1962":1,"1993":1,"1994":1,"2005":2,"2006":1,"2013":1,"2015":1,"2071":1,"2073":1,"2074":1,"2075":1,"2076":1,"2077":1,"2079":2,"2191":2,"2225":1,"2300":2,"2316":1,"2319":1,"2456":1,"2578":1,"2579":1,"2580":1,"2768":1,"2910":1,"2911":2,"2912":2,"2919":1,"2920":1,"2921":1,"2924":2,"2927":2,"2928":1,"2930":1,"2940":42}}],["keyed",{"2":{"669":1}}],["keyevent",{"2":{"211":1,"632":1,"2009":2,"2940":1}}],["key>",{"2":{"475":1,"497":2,"498":2}}],["key=value",{"2":{"433":1}}],["keydown",{"2":{"320":1,"1363":1,"1422":1,"1452":1,"1453":1,"1667":2,"2091":1,"2222":2,"2854":2,"2871":1,"2878":1,"2930":1}}],["keyten",{"2":{"300":2}}],["keypos",{"2":{"632":1,"2095":1,"2303":2,"2926":2}}],["keypads",{"2":{"266":1}}],["keypad",{"2":{"181":2,"222":1,"1351":1,"1357":1,"1743":1,"2510":20,"2541":1,"2545":1,"2549":1,"2550":19}}],["keypresses",{"0":{"1320":1},"2":{"289":1,"1422":1,"1447":1,"1661":1,"1852":1,"2091":1,"2217":1,"2276":1,"2669":1,"2828":1,"2925":1}}],["keypress",{"0":{"1329":1,"1330":1,"1331":1},"2":{"98":1,"328":1,"1329":1,"1363":1,"1427":1,"1493":1,"1662":1,"1664":1,"1680":1,"2091":1,"2300":1,"2535":30,"2651":30,"2829":1,"2870":1}}],["keyhive",{"2":{"159":10,"160":3}}],["keycap",{"2":{"2884":1}}],["keycaps",{"2":{"2293":1,"2805":1}}],["keycapsss",{"2":{"249":1}}],["keycult",{"2":{"308":1}}],["keychron",{"2":{"134":1,"176":1,"191":4,"211":2,"226":14,"236":5,"249":3,"266":2,"317":1}}],["keycode",{"0":{"16":2,"38":1,"157":1,"231":1,"283":1,"327":1,"606":1,"629":1,"630":1,"1330":1,"1431":1,"1809":1,"1815":1,"1992":1,"2226":1,"2301":1,"2351":1,"2364":1,"2820":1,"2938":1,"2948":1},"1":{"631":1,"632":1,"1810":1,"1811":1,"1816":1,"1817":1,"2352":1,"2353":1,"2365":1,"2366":1},"2":{"3":1,"7":1,"15":1,"16":1,"22":4,"38":1,"112":1,"133":1,"134":3,"156":3,"157":1,"160":2,"167":1,"182":4,"188":9,"191":15,"194":9,"195":5,"198":2,"199":7,"222":5,"231":25,"235":1,"236":1,"249":1,"255":2,"259":1,"266":2,"277":2,"285":6,"288":1,"294":1,"307":5,"308":4,"312":1,"317":1,"320":1,"324":3,"325":4,"333":1,"339":1,"563":2,"564":3,"593":14,"599":6,"606":2,"628":2,"629":2,"631":3,"632":3,"647":1,"684":1,"710":1,"1322":1,"1329":2,"1330":6,"1345":1,"1348":1,"1356":2,"1361":3,"1363":1,"1366":4,"1367":4,"1417":4,"1420":1,"1422":1,"1423":4,"1431":7,"1446":14,"1447":5,"1451":1,"1455":1,"1457":1,"1462":3,"1471":2,"1472":7,"1491":6,"1503":2,"1510":5,"1517":13,"1518":2,"1521":1,"1526":1,"1529":1,"1530":1,"1532":2,"1533":15,"1538":3,"1539":3,"1593":2,"1594":2,"1600":3,"1603":1,"1605":2,"1606":1,"1612":2,"1613":2,"1617":3,"1618":3,"1622":1,"1625":1,"1627":1,"1663":2,"1667":1,"1689":1,"1690":2,"1743":2,"1763":1,"1764":1,"1780":1,"1781":6,"1788":5,"1790":1,"1795":6,"1797":1,"1803":2,"1809":1,"1810":2,"1815":1,"1816":2,"1817":1,"1820":1,"1821":1,"1824":2,"1827":3,"1830":4,"1833":5,"1923":1,"1924":2,"1925":1,"1926":1,"1929":1,"1962":2,"1993":2,"1994":2,"1999":1,"2005":2,"2006":3,"2013":3,"2015":2,"2066":2,"2067":1,"2068":1,"2069":11,"2070":3,"2071":5,"2073":2,"2074":2,"2075":2,"2076":3,"2077":7,"2078":6,"2079":11,"2095":1,"2191":4,"2192":1,"2210":1,"2219":1,"2222":5,"2225":3,"2257":1,"2259":3,"2260":3,"2300":3,"2309":7,"2312":1,"2316":4,"2318":5,"2319":2,"2321":1,"2330":3,"2351":1,"2352":2,"2364":1,"2365":2,"2366":1,"2381":39,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2418":1,"2456":1,"2471":2,"2472":2,"2473":1,"2537":1,"2552":1,"2553":1,"2554":1,"2557":2,"2559":3,"2562":3,"2575":1,"2576":4,"2578":5,"2579":5,"2580":2,"2651":1,"2745":1,"2747":1,"2752":1,"2768":2,"2769":1,"2772":1,"2773":1,"2774":1,"2854":1,"2868":4,"2869":1,"2884":3,"2885":1,"2910":2,"2911":4,"2912":5,"2919":2,"2920":2,"2921":3,"2923":3,"2924":12,"2927":6,"2928":8,"2930":4,"2937":1,"2938":1,"2940":41,"2948":13}}],["keycodes",{"0":{"3":1,"7":1,"15":1,"182":1,"188":1,"219":1,"254":1,"316":1,"593":1,"628":1,"1345":1,"1346":1,"1347":1,"1495":1,"1530":1,"1543":1,"1603":1,"1606":1,"1674":1,"1680":1,"1744":1,"1764":1,"1780":1,"1805":1,"1848":1,"1925":1,"2018":1,"2067":1,"2084":1,"2181":1,"2216":1,"2222":1,"2253":1,"2257":1,"2304":1,"2321":1,"2332":1,"2377":1,"2460":1,"2509":1,"2510":1,"2511":1,"2526":1,"2541":1,"2552":1,"2555":1,"2651":1,"2751":1,"2752":1,"2868":1,"2884":1},"1":{"629":1,"630":1,"631":1,"632":1,"1675":1,"1681":1,"1682":1,"1683":1,"1684":1,"1685":1,"1686":1,"1687":1,"1688":1,"2223":1,"2510":1,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2520":1,"2521":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2752":1,"2885":1,"2886":1,"2887":1},"2":{"3":1,"7":1,"15":1,"16":2,"38":1,"49":1,"74":1,"93":1,"94":1,"114":1,"119":1,"120":5,"149":2,"157":2,"160":2,"176":1,"182":4,"186":1,"188":25,"191":29,"194":1,"198":1,"199":8,"211":1,"219":1,"222":1,"231":3,"254":4,"255":1,"257":1,"258":1,"259":2,"266":7,"277":5,"283":6,"285":3,"303":1,"307":4,"308":1,"316":2,"317":2,"327":2,"328":1,"338":1,"375":1,"379":4,"380":1,"564":2,"588":1,"593":4,"616":2,"629":4,"630":1,"631":1,"681":4,"1313":1,"1330":1,"1343":3,"1345":3,"1346":1,"1347":1,"1349":1,"1351":1,"1354":2,"1357":2,"1364":1,"1417":2,"1423":2,"1431":3,"1441":5,"1442":1,"1444":10,"1446":5,"1448":2,"1457":1,"1462":2,"1466":1,"1472":4,"1485":2,"1489":1,"1490":3,"1491":3,"1493":1,"1532":4,"1533":3,"1538":1,"1592":3,"1594":1,"1600":2,"1602":1,"1603":2,"1605":1,"1606":1,"1612":1,"1619":1,"1621":1,"1623":1,"1630":3,"1680":1,"1681":1,"1765":1,"1766":1,"1823":1,"1826":1,"1829":1,"1832":1,"1844":1,"1919":2,"1923":2,"1924":1,"1929":1,"1933":1,"1953":2,"1962":3,"1993":1,"1994":1,"2013":1,"2016":2,"2068":4,"2069":1,"2071":1,"2079":1,"2080":1,"2087":1,"2095":1,"2179":1,"2181":5,"2219":1,"2222":3,"2297":3,"2298":1,"2301":2,"2309":2,"2318":6,"2320":1,"2326":1,"2327":1,"2329":2,"2330":1,"2331":2,"2351":1,"2381":1,"2418":1,"2460":1,"2473":1,"2474":2,"2479":1,"2509":1,"2510":2,"2511":1,"2526":1,"2541":2,"2549":4,"2551":1,"2552":2,"2553":2,"2554":1,"2559":2,"2563":1,"2565":1,"2576":3,"2586":2,"2745":1,"2746":3,"2747":1,"2751":6,"2767":1,"2794":1,"2820":2,"2823":1,"2843":1,"2868":2,"2870":1,"2884":1,"2886":1,"2887":2,"2889":1,"2906":2,"2907":1,"2911":1,"2922":1,"2923":1,"2931":1,"2937":2,"2938":1,"2940":1,"2948":10}}],["keyword",{"2":{"103":1,"120":1,"126":1,"516":1,"1441":1}}],["key",{"0":{"15":1,"42":1,"99":1,"196":2,"202":1,"272":1,"480":1,"566":1,"670":1,"1350":1,"1356":1,"1360":1,"1373":1,"1380":1,"1496":1,"1510":1,"1513":1,"1514":1,"1515":1,"1516":1,"1611":1,"1612":1,"1617":1,"1618":1,"1644":1,"1689":1,"1762":1,"1766":1,"1767":1,"1769":1,"1770":1,"1771":1,"1772":1,"1773":1,"1781":1,"1786":1,"1796":1,"1801":1,"1803":1,"1820":1,"1940":1,"2005":1,"2009":1,"2065":1,"2066":1,"2073":1,"2076":1,"2077":1,"2307":1,"2469":1,"2521":1,"2524":1,"2537":1,"2775":1,"2821":1,"2822":1,"2825":1,"2833":1,"2870":1,"2920":1,"2923":1,"2931":2},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1763":1,"1764":1,"1765":1,"1767":1,"1768":1,"1769":1,"1770":2,"1771":2,"1772":2,"1773":2,"1774":1,"1775":1,"1776":1,"1777":1,"1778":1,"1779":1,"1780":1,"1781":1,"1782":1,"1783":1,"1784":1,"1785":1,"1786":1,"1787":1,"1788":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":2,"1822":2,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"2006":1,"2066":1,"2067":1,"2068":1,"2069":1,"2070":1,"2071":1,"2072":1,"2073":1,"2074":1,"2075":1,"2076":1,"2077":1,"2078":1,"2079":1,"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"22":1,"38":3,"43":1,"50":1,"63":1,"73":2,"93":2,"99":6,"110":1,"112":14,"114":7,"119":1,"134":2,"149":5,"152":1,"175":1,"176":4,"188":2,"191":7,"194":12,"195":3,"196":3,"199":7,"201":1,"202":9,"203":5,"206":2,"211":8,"218":1,"222":5,"231":1,"236":1,"249":1,"255":2,"257":1,"258":1,"259":2,"266":3,"268":1,"272":8,"277":1,"285":1,"288":1,"289":3,"294":1,"297":1,"308":2,"312":2,"320":2,"328":1,"333":1,"339":2,"378":3,"433":23,"437":1,"472":2,"476":3,"477":1,"484":1,"485":1,"496":3,"561":1,"563":1,"564":34,"569":1,"574":6,"588":4,"589":1,"599":4,"630":8,"631":2,"632":1,"647":4,"668":1,"669":1,"671":1,"673":1,"683":2,"684":3,"710":2,"720":1,"1312":1,"1329":3,"1348":1,"1350":4,"1353":1,"1356":2,"1358":3,"1361":1,"1363":3,"1367":5,"1373":1,"1375":1,"1381":1,"1409":1,"1410":18,"1413":14,"1417":1,"1421":1,"1422":6,"1423":1,"1427":2,"1433":1,"1440":1,"1444":8,"1446":4,"1447":2,"1448":3,"1454":1,"1455":2,"1462":1,"1472":1,"1485":2,"1486":1,"1489":1,"1490":1,"1492":1,"1493":2,"1495":1,"1496":3,"1497":1,"1498":10,"1499":4,"1500":1,"1501":1,"1503":2,"1509":1,"1510":6,"1517":7,"1518":6,"1522":4,"1523":1,"1525":2,"1529":1,"1532":1,"1543":1,"1589":5,"1590":6,"1593":5,"1594":2,"1595":3,"1597":1,"1598":1,"1600":5,"1602":1,"1604":2,"1605":3,"1609":3,"1611":1,"1612":6,"1614":2,"1615":1,"1616":1,"1617":9,"1618":8,"1619":2,"1624":2,"1625":35,"1626":1,"1627":1,"1630":1,"1639":1,"1661":1,"1662":1,"1663":1,"1664":1,"1667":1,"1671":2,"1672":3,"1674":1,"1676":1,"1680":1,"1689":1,"1690":3,"1744":1,"1762":4,"1763":3,"1764":2,"1765":4,"1766":7,"1768":2,"1769":2,"1770":3,"1773":1,"1774":14,"1776":16,"1777":5,"1779":7,"1780":6,"1781":9,"1782":5,"1783":3,"1784":9,"1785":6,"1786":12,"1787":8,"1788":3,"1789":5,"1790":2,"1791":7,"1795":3,"1796":2,"1798":2,"1800":1,"1801":7,"1802":6,"1803":2,"1804":1,"1805":1,"1811":1,"1818":1,"1846":6,"1847":2,"1848":1,"1849":8,"1933":2,"1934":2,"1935":3,"1936":1,"1937":4,"1939":5,"1940":2,"1956":1,"1962":2,"1992":1,"1993":1,"1994":2,"1999":7,"2000":7,"2003":1,"2006":1,"2008":5,"2009":5,"2013":5,"2016":2,"2018":1,"2065":9,"2066":5,"2067":4,"2068":8,"2069":9,"2070":2,"2071":1,"2072":3,"2073":6,"2074":2,"2075":2,"2076":9,"2077":8,"2078":5,"2079":1,"2082":6,"2083":2,"2084":1,"2085":13,"2086":3,"2087":1,"2091":1,"2095":1,"2096":1,"2181":1,"2216":1,"2225":1,"2226":1,"2253":1,"2256":4,"2259":15,"2260":7,"2264":1,"2272":5,"2273":1,"2276":2,"2293":1,"2295":1,"2298":2,"2300":4,"2301":5,"2302":1,"2304":3,"2308":1,"2309":13,"2310":8,"2316":1,"2317":16,"2318":3,"2319":12,"2320":1,"2327":6,"2330":2,"2332":1,"2344":3,"2345":1,"2346":1,"2376":1,"2377":1,"2384":1,"2390":2,"2391":1,"2418":8,"2429":1,"2434":1,"2466":5,"2468":2,"2469":5,"2470":2,"2471":1,"2474":2,"2509":2,"2510":7,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2520":1,"2521":4,"2522":1,"2523":1,"2524":2,"2525":1,"2526":4,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":5,"2538":1,"2539":2,"2540":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":3,"2547":1,"2548":2,"2549":1,"2550":1,"2551":3,"2552":4,"2555":1,"2557":2,"2558":1,"2563":5,"2564":1,"2569":1,"2575":8,"2576":1,"2578":1,"2579":2,"2580":1,"2598":1,"2612":1,"2617":1,"2639":1,"2650":10,"2651":4,"2652":4,"2668":1,"2685":1,"2721":1,"2746":2,"2752":1,"2772":1,"2775":1,"2776":3,"2794":2,"2795":8,"2796":4,"2797":2,"2799":2,"2820":1,"2821":2,"2822":1,"2823":1,"2824":1,"2825":3,"2829":1,"2831":3,"2833":1,"2834":5,"2839":2,"2840":1,"2842":3,"2843":1,"2851":1,"2854":6,"2860":2,"2863":1,"2868":1,"2869":24,"2870":3,"2871":1,"2872":1,"2873":1,"2874":2,"2876":2,"2878":1,"2884":1,"2885":1,"2890":1,"2894":1,"2907":1,"2910":4,"2912":6,"2913":13,"2914":4,"2915":4,"2916":6,"2917":4,"2918":3,"2919":28,"2920":18,"2921":4,"2922":6,"2923":5,"2924":9,"2925":10,"2926":11,"2927":1,"2928":7,"2929":1,"2930":10,"2931":3,"2936":2,"2937":1,"2939":2,"2940":2,"2948":2}}],["keyswitch",{"2":{"1640":1,"1644":1,"1667":1,"2428":2,"2429":3,"2431":1,"2434":5,"2466":5,"2872":1}}],["keyswitches",{"2":{"569":1,"1541":1,"2421":1}}],["keystrokes",{"2":{"1440":1,"1525":1,"2086":1,"2219":1,"2223":1,"2317":1,"2327":1,"2378":1,"2759":1}}],["keystroke",{"2":{"312":1,"1447":2}}],["keys",{"0":{"112":1,"353":1,"481":1,"1349":1,"1351":1,"1357":1,"1358":1,"1363":1,"1371":1,"1380":1,"1600":1,"1779":1,"1823":1,"1826":1,"1829":1,"1832":1,"1930":1,"1931":1,"1932":1,"1934":1,"2000":1,"2004":1,"2005":1,"2006":1,"2013":1,"2069":1,"2072":1,"2079":1,"2318":1,"2319":1,"2467":1,"2512":1,"2528":1,"2530":1,"2531":1,"2535":1,"2543":1,"2545":1,"2549":1,"2551":1,"2650":1,"2796":1,"2799":1,"2800":1,"2873":1,"2917":1},"1":{"1784":1,"1785":1,"1786":1,"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1,"1931":1,"1932":2,"1933":2,"1934":1,"1935":2,"1936":2,"1937":2,"1938":2,"1939":2,"1940":2,"1941":1,"2005":1,"2006":2,"2070":1,"2071":1,"2073":1,"2074":1,"2075":1,"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1,"2651":1,"2652":1},"2":{"7":2,"70":1,"74":1,"98":2,"112":2,"114":2,"119":2,"134":2,"143":4,"149":1,"160":1,"176":5,"182":2,"190":2,"191":6,"194":2,"196":3,"199":1,"201":1,"202":3,"211":6,"236":1,"255":1,"259":1,"263":1,"277":1,"289":1,"294":1,"297":2,"308":1,"316":1,"320":1,"433":1,"472":1,"477":1,"561":1,"564":4,"574":1,"584":1,"599":2,"605":1,"607":1,"669":1,"670":1,"673":1,"1349":2,"1351":1,"1353":2,"1356":1,"1358":2,"1362":2,"1364":2,"1367":1,"1371":1,"1375":1,"1410":1,"1413":1,"1421":1,"1422":1,"1425":1,"1434":1,"1442":1,"1444":3,"1447":2,"1448":1,"1458":1,"1460":1,"1473":1,"1490":1,"1492":1,"1499":3,"1503":6,"1504":1,"1506":1,"1507":1,"1510":2,"1513":1,"1514":1,"1515":1,"1516":1,"1517":4,"1518":1,"1519":1,"1520":1,"1521":1,"1522":2,"1532":1,"1533":3,"1541":1,"1591":1,"1593":2,"1594":2,"1597":6,"1598":1,"1600":2,"1602":5,"1604":1,"1608":1,"1609":3,"1611":1,"1612":10,"1619":1,"1622":1,"1625":1,"1661":1,"1663":1,"1690":7,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1765":3,"1766":4,"1779":1,"1784":1,"1785":2,"1787":4,"1788":1,"1789":2,"1791":1,"1796":1,"1798":3,"1801":1,"1802":2,"1804":1,"1849":1,"1930":1,"1931":3,"1932":1,"1934":6,"1937":1,"1938":1,"1940":1,"1941":2,"1964":1,"1968":1,"1999":3,"2000":1,"2004":4,"2005":2,"2006":2,"2009":2,"2016":1,"2057":1,"2068":2,"2069":1,"2071":2,"2072":3,"2073":1,"2074":1,"2075":3,"2076":1,"2079":4,"2085":4,"2086":4,"2095":3,"2213":1,"2255":1,"2258":1,"2259":10,"2260":2,"2269":1,"2292":1,"2293":2,"2294":1,"2295":4,"2296":2,"2298":3,"2300":10,"2301":4,"2308":1,"2309":4,"2317":1,"2319":4,"2320":1,"2330":2,"2418":1,"2421":1,"2432":1,"2434":1,"2460":1,"2466":5,"2475":1,"2509":1,"2526":3,"2528":1,"2529":1,"2535":4,"2552":3,"2556":1,"2558":3,"2559":1,"2561":1,"2562":1,"2563":1,"2564":2,"2572":1,"2579":1,"2585":1,"2586":1,"2612":3,"2617":1,"2650":9,"2651":5,"2652":1,"2721":2,"2751":1,"2767":1,"2774":1,"2775":1,"2794":2,"2795":1,"2796":2,"2797":2,"2799":1,"2800":3,"2804":1,"2808":1,"2825":1,"2841":1,"2851":1,"2861":1,"2869":1,"2873":2,"2874":1,"2886":1,"2889":1,"2890":1,"2909":1,"2910":1,"2911":5,"2912":7,"2913":3,"2919":6,"2920":2,"2922":3,"2924":5,"2925":5,"2926":5,"2928":1,"2930":4,"2931":1,"2936":1,"2937":2}}],["keymapping",{"2":{"1359":1}}],["keymap=",{"2":{"2583":1}}],["keymap=skully",{"2":{"483":1}}],["keymap=none",{"2":{"482":1,"483":1}}],["keymap=default",{"2":{"429":1,"473":1,"474":1,"476":1,"483":1}}],["keymap>",{"2":{"429":2,"452":1,"453":1,"2382":1,"2407":1,"2587":1,"2607":1,"2608":1,"2614":1,"2616":1}}],["keymap",{"0":{"5":1,"272":1,"445":1,"449":1,"559":1,"598":1,"599":1,"600":1,"627":1,"683":1,"1344":1,"1348":1,"1405":1,"1433":1,"1435":1,"1468":1,"2415":1,"2419":1,"2556":1,"2557":1,"2558":1,"2560":1,"2584":1,"2585":1,"2598":1,"2602":1,"2607":1,"2608":1,"2630":1,"2745":1,"2823":1},"1":{"1345":1,"1346":1,"1347":1,"1348":1,"1349":1,"1350":1,"1351":1,"1352":1,"1353":1,"1354":1,"1355":1,"1356":1,"1357":1,"1358":1,"1359":1,"1360":1,"1361":1,"1362":1,"1434":1,"1435":1,"1436":2,"1437":1,"1438":1,"1439":1,"2557":1,"2558":2,"2559":2,"2560":1,"2561":2,"2562":2,"2563":2,"2564":2},"2":{"4":1,"5":4,"18":4,"31":1,"32":1,"34":1,"36":1,"45":1,"48":1,"55":1,"75":2,"86":1,"89":1,"90":1,"92":4,"93":3,"94":1,"114":19,"119":2,"120":3,"123":1,"125":7,"133":1,"134":7,"149":5,"154":1,"160":4,"173":1,"176":19,"185":7,"189":1,"191":10,"199":14,"202":2,"206":1,"211":14,"213":1,"218":1,"222":6,"228":1,"229":1,"236":7,"241":1,"249":7,"253":1,"255":2,"256":1,"266":7,"270":1,"272":2,"273":1,"277":6,"281":1,"284":1,"285":4,"288":1,"294":4,"307":3,"308":6,"317":3,"323":1,"328":3,"333":6,"339":1,"367":1,"375":2,"376":1,"377":2,"378":2,"380":1,"393":1,"414":1,"429":15,"430":3,"433":7,"436":1,"437":4,"438":1,"439":5,"440":4,"445":6,"447":6,"449":5,"452":7,"453":7,"454":3,"462":1,"470":1,"473":4,"474":1,"476":1,"481":1,"482":1,"483":2,"484":2,"485":4,"500":2,"517":3,"555":1,"556":1,"559":1,"561":1,"581":3,"585":1,"586":2,"587":1,"588":8,"589":8,"592":2,"593":2,"596":1,"597":1,"598":1,"600":4,"607":1,"615":2,"618":1,"627":4,"629":2,"632":2,"636":1,"638":1,"642":1,"645":1,"646":1,"647":3,"650":1,"654":1,"660":1,"673":2,"683":1,"1315":1,"1322":2,"1329":1,"1344":1,"1347":1,"1348":4,"1353":1,"1354":1,"1357":1,"1388":2,"1390":2,"1405":2,"1417":4,"1418":1,"1420":2,"1421":1,"1423":1,"1425":1,"1431":1,"1432":2,"1433":4,"1434":1,"1435":1,"1439":1,"1441":3,"1446":2,"1449":2,"1462":1,"1463":3,"1464":2,"1465":1,"1466":2,"1470":9,"1471":1,"1472":11,"1484":1,"1485":1,"1487":1,"1491":1,"1492":1,"1500":1,"1502":1,"1503":1,"1521":1,"1527":2,"1532":1,"1594":1,"1601":1,"1602":1,"1603":1,"1606":1,"1622":4,"1625":1,"1627":4,"1628":3,"1630":1,"1631":1,"1632":1,"1634":5,"1640":4,"1641":2,"1661":1,"1662":1,"1667":4,"1668":2,"1672":1,"1701":1,"1742":1,"1763":1,"1768":1,"1776":1,"1790":1,"1791":1,"1794":1,"1795":1,"1797":1,"1837":1,"1850":2,"1851":2,"1855":1,"1910":1,"1915":1,"1923":1,"1932":1,"1933":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1945":2,"1958":1,"1962":2,"2000":1,"2001":1,"2005":1,"2011":1,"2012":1,"2013":1,"2053":2,"2057":1,"2066":1,"2069":1,"2072":1,"2088":2,"2090":2,"2094":1,"2095":1,"2170":1,"2175":1,"2179":1,"2181":1,"2189":1,"2191":1,"2225":1,"2256":2,"2273":1,"2277":1,"2284":2,"2293":1,"2298":2,"2302":2,"2305":1,"2309":3,"2312":3,"2317":5,"2318":1,"2319":2,"2320":1,"2326":1,"2329":4,"2330":5,"2331":1,"2396":1,"2400":2,"2402":2,"2404":2,"2407":6,"2410":4,"2414":2,"2415":6,"2416":2,"2417":6,"2418":5,"2419":1,"2429":1,"2434":1,"2448":1,"2453":2,"2454":3,"2455":2,"2456":1,"2479":1,"2504":1,"2509":1,"2511":1,"2552":1,"2557":3,"2558":4,"2560":3,"2561":2,"2565":2,"2572":1,"2575":1,"2576":1,"2583":2,"2584":8,"2585":4,"2587":2,"2590":2,"2595":1,"2597":7,"2598":4,"2599":2,"2600":6,"2601":1,"2602":3,"2603":4,"2607":7,"2608":4,"2614":1,"2616":2,"2629":1,"2630":1,"2663":1,"2682":2,"2745":2,"2746":10,"2747":5,"2751":2,"2752":1,"2764":2,"2794":2,"2796":2,"2869":2,"2884":1,"2885":5,"2886":2,"2887":71,"2894":2,"2906":1,"2910":1,"2912":2,"2919":1,"2920":1,"2921":1,"2923":1,"2926":3,"2927":1,"2928":1,"2930":1,"2937":2,"2938":1,"2939":1,"2940":1,"2947":1,"2948":1}}],["keymaps",{"0":{"17":1,"36":1,"120":1,"265":1,"275":1,"442":1,"587":1,"1439":1,"1441":1,"1445":1,"1449":1,"1463":1,"2562":1},"1":{"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"1442":1,"1443":1,"1444":1,"1446":1,"1447":1,"1448":1,"1449":1,"1450":1,"1451":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1461":1,"1462":1,"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1,"2563":1,"2564":1},"2":{"0":1,"2":1,"3":1,"4":2,"5":1,"7":1,"8":1,"9":1,"15":1,"17":2,"19":1,"32":1,"36":3,"39":1,"52":1,"60":1,"65":1,"73":1,"74":1,"75":2,"107":1,"114":3,"125":1,"134":1,"149":2,"154":1,"156":2,"160":2,"167":1,"173":2,"176":3,"182":2,"185":1,"191":8,"199":4,"201":1,"211":2,"213":4,"220":1,"222":1,"224":2,"228":5,"231":1,"232":1,"236":2,"238":1,"249":7,"265":5,"266":5,"268":2,"275":3,"277":1,"283":1,"285":2,"317":1,"333":1,"339":1,"374":1,"380":1,"399":1,"414":1,"416":2,"425":1,"429":4,"430":1,"437":2,"439":1,"442":2,"447":1,"449":1,"557":2,"578":2,"588":5,"589":2,"615":1,"618":1,"619":2,"627":1,"682":1,"683":1,"696":1,"1329":1,"1331":1,"1343":3,"1344":1,"1348":1,"1390":1,"1433":1,"1446":3,"1465":1,"1468":1,"1472":2,"1480":2,"1627":1,"1924":1,"2054":1,"2293":1,"2294":1,"2312":1,"2319":1,"2407":2,"2410":1,"2414":2,"2416":1,"2417":3,"2453":3,"2454":2,"2455":2,"2460":1,"2556":1,"2557":1,"2562":4,"2572":1,"2584":1,"2585":1,"2586":1,"2602":1,"2603":7,"2605":2,"2607":2,"2608":1,"2609":1,"2610":1,"2618":1,"2745":6,"2746":5,"2747":4,"2868":1,"2906":1,"2907":2,"2908":1,"2938":1}}],["keyboard=true",{"2":{"1322":1}}],["keyboard=clueboard",{"2":{"473":1,"474":1,"483":1,"2583":1}}],["keyboard>",{"2":{"429":4,"430":1,"452":1,"453":1,"623":1,"1435":1,"1436":2,"2006":1,"2382":1,"2407":1,"2584":1,"2587":1,"2607":1,"2608":1,"2614":1,"2616":1,"2629":1}}],["keyboard|keymap|kbfirmware",{"0":{"173":1},"2":{"176":1}}],["keyboardio",{"2":{"37":2,"176":1}}],["keyboard",{"0":{"29":1,"37":1,"44":1,"55":1,"59":1,"86":1,"102":1,"122":1,"143":1,"159":1,"168":1,"181":1,"197":1,"207":1,"217":1,"226":1,"241":1,"253":1,"262":1,"270":1,"281":1,"291":1,"300":1,"311":1,"322":1,"353":1,"382":1,"444":1,"448":1,"557":1,"567":1,"580":1,"596":1,"597":1,"602":1,"626":1,"633":1,"634":1,"635":1,"636":1,"640":1,"641":1,"642":1,"646":1,"648":1,"650":1,"651":1,"654":1,"684":1,"1320":1,"1341":1,"1375":1,"1403":1,"1437":1,"1442":1,"1458":1,"1460":1,"1637":1,"1838":1,"1840":1,"1931":1,"1987":1,"1989":1,"2057":1,"2058":1,"2261":1,"2293":1,"2414":1,"2438":1,"2447":1,"2449":1,"2451":1,"2453":1,"2456":1,"2457":1,"2459":1,"2461":1,"2466":1,"2476":1,"2611":1,"2612":1,"2613":1,"2615":1,"2616":1,"2663":1,"2704":1,"2714":1,"2716":1,"2746":1,"2765":1,"2772":1,"2793":1,"2880":1,"2885":1},"1":{"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"45":1,"60":1,"568":1,"569":1,"570":1,"627":1,"634":1,"635":2,"636":2,"637":1,"638":1,"639":1,"640":1,"641":2,"642":2,"647":1,"649":1,"650":1,"652":1,"653":1,"654":1,"1342":1,"1404":1,"1438":1,"1439":1,"1932":1,"1933":1,"2262":1,"2263":1,"2264":1,"2265":1,"2266":1,"2267":1,"2268":1,"2269":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2275":1,"2276":1,"2277":1,"2278":1,"2279":1,"2280":1,"2281":1,"2448":1,"2449":1,"2450":1,"2451":1,"2452":2,"2453":2,"2454":2,"2455":2,"2456":2,"2457":2,"2458":1,"2459":1,"2460":2,"2461":1,"2462":1,"2463":1,"2464":1,"2465":1,"2477":1,"2478":1,"2479":1,"2480":1,"2481":1,"2612":1,"2613":1,"2614":2,"2615":2,"2616":1,"2617":1,"2715":1,"2716":1,"2717":2,"2718":2,"2719":2,"2720":2,"2721":2,"2722":1,"2723":1,"2724":1,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"4":2,"14":2,"31":2,"34":3,"36":1,"50":6,"55":1,"56":1,"62":1,"67":3,"70":5,"74":1,"75":2,"76":2,"82":2,"86":6,"90":3,"92":1,"93":2,"94":3,"99":1,"102":2,"105":4,"107":1,"110":2,"111":2,"112":1,"114":7,"116":2,"119":1,"120":1,"122":2,"124":1,"125":5,"133":4,"134":10,"138":1,"143":4,"149":14,"159":2,"160":3,"168":2,"169":1,"173":2,"176":8,"181":2,"184":1,"185":5,"191":10,"197":2,"199":6,"201":3,"204":1,"207":2,"209":3,"211":10,"217":3,"218":1,"221":2,"222":11,"226":2,"229":3,"233":2,"234":1,"236":11,"238":1,"240":1,"241":4,"249":12,"253":4,"255":1,"262":3,"263":2,"265":1,"266":67,"270":4,"277":7,"281":4,"285":4,"291":2,"293":1,"294":13,"300":2,"305":1,"306":1,"308":8,"311":2,"312":2,"314":1,"315":1,"317":4,"322":2,"328":4,"332":2,"333":4,"337":2,"353":1,"367":1,"369":1,"373":1,"375":4,"380":2,"382":2,"384":1,"396":2,"398":1,"399":1,"429":7,"430":2,"433":2,"434":2,"437":7,"439":1,"440":4,"442":3,"443":2,"444":3,"445":4,"447":1,"448":4,"450":4,"452":6,"453":6,"454":3,"462":1,"470":1,"473":4,"474":2,"480":1,"481":1,"484":2,"485":6,"496":2,"555":3,"556":1,"557":2,"561":8,"565":2,"567":2,"570":1,"572":2,"574":7,"575":4,"578":3,"580":3,"587":1,"588":5,"589":2,"592":2,"593":6,"594":3,"596":4,"599":1,"615":2,"618":5,"622":1,"623":1,"624":1,"625":3,"626":2,"627":4,"632":1,"633":4,"635":3,"636":3,"638":1,"639":6,"640":1,"641":1,"642":3,"643":2,"645":1,"646":1,"647":1,"648":1,"649":2,"650":1,"651":3,"654":1,"660":1,"665":1,"668":3,"673":2,"683":1,"684":6,"709":2,"710":5,"711":6,"713":2,"720":1,"728":1,"729":1,"746":2,"753":1,"754":1,"755":1,"756":1,"758":1,"804":1,"805":1,"830":1,"831":1,"862":1,"863":1,"892":1,"893":1,"927":1,"928":1,"961":1,"962":1,"995":1,"996":1,"1029":1,"1030":1,"1063":1,"1064":1,"1097":1,"1098":1,"1131":1,"1132":1,"1165":1,"1166":1,"1192":1,"1195":1,"1198":1,"1201":2,"1203":3,"1204":3,"1218":1,"1219":1,"1299":1,"1303":1,"1312":1,"1313":1,"1315":1,"1319":1,"1320":3,"1322":2,"1323":1,"1324":1,"1325":1,"1332":1,"1335":1,"1342":1,"1346":1,"1349":1,"1351":1,"1352":1,"1353":1,"1356":3,"1357":1,"1358":4,"1359":2,"1361":2,"1362":1,"1364":2,"1366":1,"1367":1,"1375":2,"1376":5,"1379":1,"1383":1,"1387":2,"1388":1,"1390":2,"1397":1,"1403":2,"1405":1,"1407":3,"1410":1,"1413":1,"1415":1,"1417":3,"1418":1,"1420":1,"1421":1,"1422":1,"1424":1,"1425":1,"1427":1,"1428":4,"1432":1,"1433":1,"1434":4,"1435":1,"1436":1,"1438":7,"1439":1,"1440":1,"1441":1,"1444":1,"1446":1,"1451":2,"1463":1,"1464":1,"1472":6,"1473":1,"1480":1,"1485":2,"1486":1,"1490":1,"1491":2,"1492":5,"1493":1,"1497":1,"1522":1,"1523":1,"1527":1,"1541":1,"1544":1,"1550":2,"1551":1,"1556":2,"1557":1,"1587":1,"1589":1,"1590":1,"1592":1,"1593":2,"1623":1,"1625":4,"1630":1,"1631":1,"1632":1,"1638":6,"1641":1,"1661":4,"1666":2,"1668":3,"1671":1,"1673":1,"1675":1,"1681":2,"1687":1,"1701":1,"1702":1,"1766":3,"1784":3,"1785":3,"1786":1,"1787":2,"1788":1,"1792":1,"1835":3,"1836":1,"1837":4,"1838":1,"1839":1,"1840":2,"1841":1,"1842":1,"1846":9,"1847":1,"1849":1,"1850":3,"1852":2,"1855":1,"1908":1,"1911":1,"1912":1,"1917":1,"1924":1,"1930":1,"1931":1,"1944":1,"1945":3,"1948":5,"1957":1,"1958":1,"1960":2,"1961":4,"1962":4,"1977":1,"1983":1,"1986":1,"1988":2,"1989":1,"1997":1,"1999":2,"2005":1,"2037":2,"2040":1,"2041":1,"2042":1,"2043":1,"2054":1,"2057":4,"2058":1,"2071":4,"2082":9,"2083":1,"2085":6,"2086":1,"2088":3,"2091":2,"2094":1,"2095":1,"2096":1,"2097":1,"2168":1,"2171":1,"2172":1,"2177":1,"2178":3,"2179":1,"2188":1,"2189":6,"2190":1,"2191":1,"2207":1,"2208":1,"2210":2,"2211":1,"2213":1,"2214":1,"2223":2,"2249":1,"2264":1,"2265":1,"2268":2,"2269":2,"2272":2,"2273":5,"2274":1,"2275":2,"2276":9,"2277":9,"2278":2,"2281":1,"2284":4,"2287":5,"2288":1,"2292":5,"2293":3,"2294":4,"2297":3,"2298":2,"2302":1,"2305":2,"2308":1,"2315":2,"2324":1,"2325":1,"2331":3,"2342":1,"2377":1,"2382":1,"2386":1,"2390":2,"2400":3,"2402":3,"2404":3,"2405":1,"2407":6,"2412":2,"2414":8,"2416":3,"2417":11,"2418":7,"2419":3,"2421":2,"2423":5,"2426":2,"2431":1,"2432":7,"2433":1,"2434":4,"2435":1,"2436":2,"2438":1,"2439":1,"2448":2,"2449":3,"2450":13,"2451":5,"2452":1,"2453":7,"2454":4,"2455":3,"2456":2,"2457":2,"2458":1,"2459":1,"2460":3,"2461":1,"2463":1,"2464":1,"2466":4,"2469":1,"2470":2,"2471":2,"2472":1,"2474":1,"2477":1,"2485":3,"2487":4,"2489":3,"2491":1,"2493":1,"2495":1,"2497":1,"2504":1,"2511":5,"2523":1,"2526":2,"2541":1,"2549":1,"2552":3,"2553":1,"2554":1,"2561":1,"2562":1,"2563":2,"2567":1,"2572":5,"2573":1,"2576":1,"2582":1,"2583":5,"2584":1,"2585":1,"2587":1,"2588":1,"2589":2,"2591":1,"2597":1,"2598":1,"2601":1,"2603":1,"2608":1,"2610":1,"2611":1,"2612":7,"2613":2,"2614":2,"2616":5,"2617":3,"2619":1,"2629":4,"2650":1,"2651":1,"2652":1,"2663":1,"2665":1,"2678":1,"2682":2,"2683":2,"2684":5,"2685":2,"2686":2,"2687":1,"2694":1,"2701":1,"2714":11,"2715":2,"2716":2,"2717":8,"2718":2,"2720":1,"2721":1,"2744":2,"2745":1,"2746":26,"2747":4,"2752":5,"2756":1,"2759":1,"2760":1,"2763":2,"2764":4,"2772":1,"2773":1,"2794":6,"2795":8,"2796":1,"2799":1,"2800":3,"2804":2,"2805":1,"2806":1,"2808":1,"2810":1,"2812":2,"2813":2,"2819":1,"2823":1,"2826":1,"2827":1,"2830":1,"2832":1,"2837":2,"2838":2,"2845":1,"2848":1,"2849":1,"2851":4,"2852":7,"2853":2,"2854":1,"2869":4,"2871":1,"2878":1,"2880":2,"2882":5,"2884":5,"2885":3,"2886":1,"2894":1,"2906":1,"2908":4,"2910":2,"2926":4,"2928":1,"2931":2,"2932":1,"2935":6,"2936":2,"2937":3,"2939":1,"2940":1,"2947":1,"2948":1}}],["keyboards",{"0":{"41":1,"54":1,"116":1,"441":1,"618":1,"627":1,"1433":1,"1468":1,"1590":1,"1666":1,"2426":1,"2794":1},"1":{"42":1,"43":1,"55":1,"56":1,"57":1,"58":1,"1434":1,"1435":1,"1436":1,"1437":1,"1438":1,"1439":1},"2":{"2":1,"14":1,"28":1,"30":1,"33":1,"35":2,"36":3,"37":1,"43":3,"49":1,"50":1,"58":1,"65":2,"67":1,"69":2,"70":5,"73":2,"74":3,"86":3,"90":1,"92":1,"93":2,"102":1,"107":3,"109":1,"110":1,"114":9,"116":1,"118":1,"122":1,"123":1,"124":2,"132":1,"134":5,"141":1,"143":1,"149":14,"159":1,"160":2,"168":1,"169":2,"173":2,"176":2,"181":1,"191":4,"197":1,"199":2,"201":3,"209":1,"211":3,"213":2,"218":1,"221":1,"222":5,"235":1,"236":4,"240":2,"249":17,"251":1,"262":1,"266":8,"277":3,"279":1,"285":3,"294":1,"308":4,"317":4,"328":3,"333":1,"339":1,"344":1,"379":4,"425":1,"429":5,"430":1,"432":1,"433":2,"434":2,"437":1,"439":1,"441":2,"448":1,"449":1,"450":1,"488":1,"507":1,"558":2,"561":2,"565":1,"567":1,"568":1,"574":1,"578":1,"580":1,"588":1,"589":1,"597":1,"611":1,"615":1,"618":4,"619":3,"623":1,"627":1,"665":5,"666":1,"682":1,"685":1,"696":1,"710":1,"1192":1,"1195":1,"1198":2,"1201":2,"1206":1,"1208":1,"1209":1,"1318":1,"1319":1,"1321":1,"1335":1,"1343":3,"1350":1,"1354":1,"1356":1,"1388":1,"1392":1,"1393":1,"1404":1,"1413":2,"1414":2,"1433":1,"1439":1,"1464":1,"1465":1,"1471":1,"1472":1,"1480":2,"1490":1,"1492":1,"1517":1,"1523":3,"1541":1,"1542":1,"1544":1,"1546":1,"1589":3,"1595":1,"1622":1,"1623":1,"1639":1,"1681":1,"1835":1,"1852":1,"1948":1,"1949":1,"1956":1,"1983":2,"1998":1,"2014":1,"2091":1,"2095":1,"2096":1,"2178":1,"2179":2,"2182":1,"2189":2,"2191":1,"2208":1,"2261":4,"2265":2,"2272":1,"2278":1,"2287":1,"2292":1,"2294":1,"2377":1,"2378":1,"2382":2,"2383":2,"2385":1,"2387":1,"2394":1,"2396":1,"2397":1,"2400":1,"2402":1,"2407":1,"2410":1,"2412":1,"2413":1,"2414":2,"2416":2,"2417":4,"2418":1,"2423":1,"2432":1,"2435":1,"2439":1,"2447":1,"2448":1,"2450":3,"2451":1,"2454":13,"2455":13,"2462":3,"2466":1,"2467":1,"2477":1,"2500":1,"2510":1,"2550":1,"2556":1,"2567":2,"2570":1,"2583":3,"2584":3,"2587":1,"2589":1,"2603":1,"2607":1,"2612":1,"2616":1,"2618":1,"2629":3,"2700":1,"2702":3,"2703":2,"2704":1,"2705":1,"2706":1,"2707":1,"2714":3,"2744":1,"2746":3,"2747":1,"2762":6,"2793":1,"2794":3,"2833":1,"2851":3,"2852":1,"2853":1,"2871":1,"2878":1,"2884":1,"2894":1,"2908":3,"2926":1,"2933":1}}],["g5",{"2":{"1925":1,"2527":1}}],["g3",{"2":{"1925":1,"2527":1}}],["g1",{"2":{"1925":1,"2527":1}}],["g♯",{"2":{"1925":6,"2527":6}}],["gs5",{"2":{"1925":1,"2527":1}}],["gs4",{"2":{"1925":1,"2527":1}}],["gs3",{"2":{"1925":1,"2527":1}}],["gs2",{"2":{"1925":1,"2527":1}}],["gs1",{"2":{"1925":1,"2527":1}}],["gs",{"2":{"1925":1,"2527":1}}],["gskt00",{"2":{"122":2}}],["g♭",{"2":{"1925":6,"2527":6}}],["gb5",{"2":{"1925":1,"2527":1}}],["gb4",{"2":{"1925":1,"2527":1}}],["gb3",{"2":{"1925":1,"2527":1}}],["gb2",{"2":{"1925":1,"2527":1}}],["gb1",{"2":{"1925":1,"2527":1}}],["gb",{"2":{"1641":1,"1925":1,"2527":1}}],["gboy",{"2":{"191":1}}],["gboards",{"2":{"143":4,"149":1,"160":1,"191":1,"1622":2}}],["gnd",{"2":{"693":1,"694":1,"716":8,"722":1,"829":1,"858":1,"890":1,"922":8,"957":8,"991":1,"1025":1,"1059":1,"1093":8,"1127":8,"1161":8,"1194":1,"1197":1,"1200":1,"1217":1,"1313":1,"1681":1,"1838":1,"2208":1,"2266":1,"2267":1,"2383":1,"2386":1,"2388":1,"2389":1,"2391":1,"2393":1,"2395":1,"2398":1,"2431":1,"2485":2,"2487":4,"2489":2,"2491":2,"2493":2,"2495":2,"2507":2,"2612":1,"2683":1,"2691":6}}],["gnu++14",{"2":{"176":1}}],["gnu11",{"2":{"176":1}}],["gnu",{"0":{"392":1},"2":{"134":1,"236":3,"384":1,"388":1,"1467":4,"2465":1,"2750":4}}],["gd25q64cs",{"2":{"2705":2}}],["gdb",{"2":{"390":1,"397":1,"2683":3,"2946":1}}],["gd32v",{"2":{"191":1,"713":2}}],["gd32vf103",{"2":{"130":2,"134":1,"176":2,"554":1}}],["gmt",{"2":{"377":2,"379":2}}],["gmmk2",{"2":{"236":1}}],["gmmk",{"2":{"102":3,"114":11,"134":1,"149":2,"159":4,"160":2,"176":3,"191":2,"199":1,"222":1,"2397":1}}],["gp3",{"2":{"2702":1}}],["gp8",{"2":{"2694":1}}],["gpx",{"2":{"2694":1}}],["gp0",{"2":{"2044":1,"2702":2}}],["gp19",{"2":{"2702":1}}],["gp18",{"2":{"2702":1}}],["gp17",{"2":{"2700":1}}],["gp1",{"2":{"2044":1,"2702":2}}],["gpt",{"2":{"717":8,"718":4,"1557":4}}],["gptd15",{"2":{"1557":1}}],["gptd8",{"2":{"722":1}}],["gptd8tim8",{"2":{"716":1}}],["gptd6",{"2":{"718":1}}],["gptd6tim6",{"2":{"716":1}}],["gptd9",{"2":{"717":1}}],["gptd7tim7",{"2":{"716":1}}],["gp20",{"2":{"2702":1}}],["gp2",{"2":{"2702":1}}],["gp29",{"2":{"691":1}}],["gp28",{"2":{"691":1}}],["gp27",{"2":{"691":1}}],["gp26",{"2":{"691":1}}],["gpl3",{"2":{"2744":1}}],["gpl2+",{"2":{"2744":1,"2746":1}}],["gpl2",{"2":{"2744":1}}],["gplv3",{"2":{"2465":2}}],["gplv2",{"0":{"2750":1},"2":{"2465":1}}],["gpl",{"2":{"284":1,"581":1,"1467":1,"1630":2,"2465":1,"2567":1,"2568":1,"2725":2,"2726":1,"2727":3,"2728":2,"2729":1,"2733":3,"2734":2,"2736":1,"2739":2,"2740":3,"2741":1,"2742":3,"2744":1,"2750":1}}],["gpioa",{"2":{"1396":1}}],["gpios",{"2":{"797":1,"2684":1,"2685":1,"2686":1}}],["gpiob",{"2":{"768":2}}],["gpiov3",{"2":{"721":1}}],["gpiov2",{"2":{"721":1}}],["gpiov1",{"2":{"721":1}}],["gpiof",{"2":{"65":1}}],["gpio",{"0":{"148":1,"243":1,"331":1,"796":1,"1643":1,"2693":1},"1":{"797":1,"798":1,"799":1,"2694":1,"2695":1},"2":{"49":1,"64":1,"94":1,"114":3,"133":1,"134":1,"149":2,"243":13,"244":1,"249":2,"266":4,"277":1,"308":1,"331":3,"333":1,"635":5,"639":3,"688":1,"699":2,"726":3,"734":1,"740":1,"744":1,"768":2,"796":1,"797":13,"798":1,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1193":1,"1194":1,"1195":1,"1196":1,"1197":1,"1198":2,"1200":2,"1201":1,"1205":2,"1216":1,"1248":2,"1252":1,"1283":1,"1285":1,"1290":1,"1297":3,"1298":2,"1398":2,"1404":1,"1554":1,"1558":2,"1639":1,"1699":4,"1838":6,"2044":2,"2288":3,"2685":2,"2686":2,"2691":1,"2693":1,"2694":3,"2695":3,"2700":1,"2704":1,"2744":1,"2855":2,"2856":3,"2857":3,"2858":1,"2863":1,"2865":2,"2867":6,"2872":4,"2875":2,"2876":4,"2880":3,"2883":1}}],["gc9a01",{"2":{"277":1,"2760":2,"2763":7}}],["gc9107",{"2":{"277":1}}],["gc9xxx",{"2":{"277":1}}],["gcc15",{"2":{"308":1}}],["gcc10",{"2":{"134":1}}],["gcc",{"2":{"73":1,"132":1,"134":2,"222":1,"339":2,"387":1,"393":1,"2417":1,"2662":1}}],["gk61",{"2":{"236":3,"294":1}}],["g2",{"2":{"211":2,"1925":1,"2527":1}}],["g60",{"2":{"211":2}}],["g431",{"2":{"249":1}}],["g4",{"2":{"191":1,"1925":1,"2527":1}}],["g474",{"2":{"49":1}}],["gif",{"2":{"2762":2}}],["gifs",{"2":{"153":1,"2760":1}}],["gigadevice",{"0":{"554":1},"2":{"554":1}}],["gives",{"2":{"492":1,"495":1,"538":1,"1609":1,"1803":1,"1846":1,"1953":1,"2082":1,"2374":1,"2418":1,"2634":1,"2913":1}}],["give",{"0":{"2481":1},"2":{"317":1,"365":1,"1209":1,"1364":1,"1620":2,"1998":1,"2057":1,"2379":1,"2430":1,"2460":1,"2639":1,"2662":1,"2696":1,"2913":1,"2941":1}}],["given",{"0":{"2903":1},"2":{"166":1,"312":1,"693":2,"694":2,"793":1,"810":1,"837":1,"869":1,"899":1,"934":1,"968":1,"1002":1,"1036":1,"1070":1,"1104":1,"1138":1,"1172":1,"1225":1,"1364":1,"1484":1,"1503":1,"1612":3,"1620":1,"1622":1,"1633":1,"1755":1,"1758":1,"1794":1,"1815":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"1934":2,"1959":1,"2198":9,"2201":2,"2222":3,"2300":1,"2319":1,"2351":1,"2354":1,"2357":1,"2364":1,"2371":1,"2417":1,"2432":1,"2459":1,"2470":1,"2474":1,"2475":1,"2559":1,"2565":1,"2567":1,"2612":1,"2711":1,"2744":1,"2746":2,"2747":1,"2764":2,"2796":1,"2912":1,"2926":1,"2939":1,"2948":1}}],["giving",{"2":{"283":1,"1589":1,"1774":1,"2642":1}}],["giabalanai",{"2":{"222":1}}],["ginkgo65hot",{"2":{"176":1}}],["gingham",{"2":{"143":2}}],["gitconfig",{"2":{"444":1}}],["gitignore",{"2":{"149":2,"176":1,"191":1}}],["git",{"0":{"6":1,"1340":1,"2593":1,"2631":1,"2632":1,"2635":1,"2646":1,"2816":1},"1":{"2632":1,"2636":1,"2637":1},"2":{"10":1,"24":1,"114":1,"199":1,"211":1,"249":1,"409":12,"411":16,"414":2,"420":10,"421":11,"422":9,"423":6,"459":1,"487":1,"588":1,"589":2,"613":7,"615":1,"1340":2,"1628":4,"1629":1,"2407":2,"2410":8,"2590":1,"2593":12,"2594":1,"2599":2,"2600":10,"2602":1,"2605":2,"2606":2,"2608":1,"2615":1,"2632":1,"2634":21,"2635":1,"2636":1,"2637":19,"2639":18,"2640":18,"2641":2,"2646":2,"2653":1,"2673":1,"2676":10,"2680":3,"2683":1,"2744":1,"2748":3,"2817":1,"2906":1}}],["github",{"0":{"1340":1,"2410":1,"2590":1,"2594":1,"2599":1,"2600":1,"2605":1,"2610":1,"2817":1,"2899":1},"1":{"2591":1,"2592":1,"2593":1,"2594":1,"2595":1,"2596":1,"2597":1,"2598":1,"2599":1,"2600":1,"2601":1,"2602":1},"2":{"2":1,"21":2,"134":1,"236":1,"344":3,"402":1,"403":2,"409":1,"412":1,"414":1,"420":1,"421":2,"484":1,"505":1,"541":1,"574":1,"579":1,"613":6,"684":1,"1319":1,"1338":1,"1339":1,"1340":2,"1352":1,"1353":2,"1359":3,"1361":1,"1387":1,"1398":1,"1463":1,"1467":3,"1628":2,"1962":1,"2331":1,"2407":1,"2410":6,"2583":2,"2584":2,"2590":3,"2591":2,"2592":2,"2593":1,"2594":1,"2595":1,"2597":2,"2598":2,"2599":4,"2600":7,"2601":2,"2602":2,"2603":2,"2604":1,"2605":2,"2606":2,"2608":1,"2610":3,"2628":2,"2632":1,"2635":1,"2637":11,"2639":5,"2664":1,"2680":2,"2681":1,"2714":1,"2746":1,"2852":1,"2899":1}}],["gluing",{"2":{"2422":1}}],["glue",{"2":{"489":1,"2435":1}}],["glossary",{"0":{"2801":1},"1":{"2802":1,"2803":1,"2804":1,"2805":1,"2806":1,"2807":1,"2808":1,"2809":1,"2810":1,"2811":1,"2812":1,"2813":1,"2814":1,"2815":1,"2816":1,"2817":1,"2818":1,"2819":1,"2820":1,"2821":1,"2822":1,"2823":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":1,"2832":1,"2833":1,"2834":1,"2835":1,"2836":1,"2837":1,"2838":1,"2839":1,"2840":1,"2841":1,"2842":1,"2843":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2849":1}}],["glorious",{"2":{"2397":2}}],["globs",{"2":{"469":1}}],["globe",{"2":{"236":1}}],["globally",{"2":{"1428":1,"1774":2,"1776":1}}],["global",{"0":{"727":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1},"2":{"94":1,"134":1,"172":1,"176":2,"191":1,"285":2,"297":1,"308":1,"387":1,"388":1,"390":1,"519":2,"574":1,"625":1,"699":1,"707":1,"726":2,"727":1,"857":2,"861":1,"921":2,"926":1,"956":2,"960":1,"990":2,"994":1,"1024":2,"1028":1,"1058":2,"1062":1,"1092":2,"1096":1,"1126":2,"1130":1,"1160":2,"1164":1,"1410":4,"1413":1,"1431":1,"1472":1,"1850":3,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1895":1,"1897":1,"1903":1,"2013":1,"2088":3,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2149":1,"2151":1,"2157":1,"2159":1,"2161":1,"2163":1,"2318":1,"2599":1,"2855":1,"2910":1,"2912":1}}],["glcdfont",{"2":{"1946":1,"1949":1,"2288":1}}],["glibc",{"2":{"2731":1}}],["gliding",{"2":{"1939":1}}],["glide",{"2":{"1939":1,"1976":1,"1985":3}}],["glides",{"2":{"1939":1}}],["glitch",{"2":{"211":1,"719":1}}],["glance",{"2":{"492":1,"2640":1,"2934":1}}],["glamorous",{"2":{"251":1}}],["glacier",{"2":{"211":1}}],["glyphs",{"2":{"2762":21,"2785":2,"2787":4,"2788":1,"2789":2,"2790":2}}],["glyph",{"0":{"2788":1,"2789":1},"2":{"176":1,"2762":2,"2785":2,"2787":3,"2788":13,"2789":8,"2790":2}}],["glenpickle",{"2":{"143":4,"149":1}}],["ggkeyboards",{"2":{"114":1}}],["guessed",{"2":{"1962":1,"2926":1}}],["guess",{"2":{"1956":1}}],["guestures",{"2":{"176":1}}],["guarantees",{"2":{"2764":1}}],["guarantee",{"2":{"629":1}}],["guaranteed",{"2":{"403":1,"799":1}}],["guarded",{"2":{"2709":1}}],["guard",{"2":{"160":1,"176":1,"199":1,"222":1,"328":1,"333":1,"418":1}}],["guards",{"2":{"4":1,"134":1,"512":1,"2744":1}}],["gu",{"2":{"285":1,"2526":3,"2552":3}}],["gurindam",{"2":{"143":2}}],["guiding",{"2":{"2905":1}}],["guidance",{"2":{"2573":1}}],["guided",{"2":{"2941":1}}],["guides",{"0":{"2436":1},"2":{"610":1,"1314":1,"2427":1}}],["guidelines",{"0":{"615":1,"2447":1},"1":{"616":1,"617":1,"618":1,"619":1,"620":1,"2448":1,"2449":1,"2450":1,"2451":1,"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":1,"2458":1,"2459":1,"2460":1,"2461":1,"2462":1,"2463":1,"2464":1,"2465":1},"2":{"512":1,"521":1,"609":2,"615":1,"618":1,"619":1,"674":1,"1340":1,"1424":1,"1425":1,"2414":1,"2602":1,"2714":2,"2721":1,"2908":1}}],["guide",{"0":{"365":1,"1955":1,"2420":1,"2482":1},"1":{"2421":1,"2422":1,"2423":1,"2424":1,"2425":1,"2426":1,"2427":1,"2428":1,"2429":1,"2430":1,"2431":1,"2432":1,"2433":1,"2434":1,"2435":1,"2436":1,"2483":1,"2484":1,"2485":1,"2486":1,"2487":1,"2488":1,"2489":1,"2490":1,"2491":1,"2492":1,"2493":1,"2494":1,"2495":1,"2496":1,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":1,"2503":1,"2504":1,"2505":1,"2506":1,"2507":1,"2508":1},"2":{"199":1,"384":2,"385":1,"430":1,"684":2,"1336":1,"2281":1,"2410":2,"2417":1,"2422":1,"2423":1,"2434":1,"2436":3,"2572":1,"2573":3,"2574":1,"2582":1,"2590":2,"2595":1,"2602":1,"2604":1,"2616":1,"2673":1,"2674":1}}],["guitar",{"2":{"1485":2,"1486":3,"1490":1}}],["gui+s",{"2":{"196":1,"1798":1}}],["gui",{"2":{"114":1,"231":2,"266":1,"285":1,"328":1,"354":1,"380":1,"683":1,"1349":2,"1363":15,"1364":8,"1457":1,"1672":1,"1673":1,"1674":1,"1676":2,"1690":1,"1777":3,"1779":1,"1788":8,"2068":1,"2075":3,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2510":4,"2519":1,"2526":26,"2529":16,"2530":16,"2535":15,"2546":4,"2552":26,"2572":1,"2575":19,"2651":15,"2652":4,"2653":1,"2753":1,"2889":1,"2928":8,"2930":1}}],["gr",{"2":{"2300":1,"2301":3}}],["grunt",{"2":{"1462":1}}],["grb",{"2":{"1285":1,"1287":3}}],["grv",{"2":{"375":2,"589":2,"1672":2,"1777":2,"2510":1,"2544":1,"2563":1,"2564":1,"2910":1,"2912":1}}],["growing",{"2":{"2941":1}}],["grow",{"2":{"609":1,"2888":1}}],["grown",{"2":{"113":1,"665":1,"2447":2}}],["grounded",{"2":{"2499":1}}],["ground",{"2":{"396":1,"561":1,"749":1,"1297":1,"1312":1,"1313":1,"1475":1,"1478":2,"1482":1,"1558":1,"1643":1,"1669":1,"2433":1,"2720":1}}],["groupbuys",{"2":{"2746":1}}],["group",{"0":{"1513":1,"1514":1,"1515":1,"1516":1},"2":{"249":5,"465":1,"516":1,"668":1,"1335":1,"1513":1,"1514":1,"1515":1,"1516":1,"2185":1,"2295":4,"2477":1,"2509":1,"2944":1}}],["groups",{"2":{"231":1,"1503":2,"2296":1}}],["gritty",{"0":{"2565":1},"2":{"365":1}}],["grin",{"2":{"179":1}}],["grid",{"2":{"112":1,"249":1,"569":3,"1439":1,"1639":1,"1846":1,"2082":1,"2086":1,"2272":3,"2863":1,"2880":1}}],["grayscale",{"2":{"2762":4,"2781":5}}],["graystudio",{"2":{"211":1}}],["gram",{"2":{"2079":1}}],["grammar",{"2":{"176":1}}],["graphic",{"2":{"2762":2}}],["graphical",{"2":{"2478":1,"2589":1,"2591":1,"2619":1,"2673":1,"2753":1,"2760":1}}],["graphics",{"0":{"466":1,"2777":1,"2779":1},"1":{"2778":1,"2779":1,"2780":1,"2781":1,"2782":1,"2783":1,"2784":1},"2":{"2753":2,"2762":2,"2777":3,"2778":1,"2779":4,"2780":1}}],["grape",{"2":{"211":1}}],["grabbing",{"2":{"2428":1}}],["grab",{"2":{"386":1,"2428":1,"2634":1}}],["gracefully",{"2":{"209":1}}],["granularity",{"2":{"2252":1,"2927":1}}],["granular",{"2":{"195":1,"1498":1,"1503":1,"1510":1,"2910":1,"2919":1,"2920":1,"2921":1,"2928":1}}],["gradients",{"2":{"2085":2}}],["gradient",{"2":{"176":1,"199":1,"354":1,"1417":1,"1849":4,"2085":22,"2087":3,"2181":2,"2183":2,"2184":2,"2186":1,"2187":2,"2532":2,"2894":3}}],["grave",{"0":{"1671":1,"1777":1,"2519":1},"1":{"1672":1,"1673":1,"1674":1,"1675":1,"1676":1},"2":{"114":1,"188":1,"191":1,"199":1,"353":1,"683":1,"1360":1,"1625":1,"1671":2,"1674":1,"1676":4,"1692":1,"1777":4,"2510":1,"2519":2,"2526":2,"2544":1,"2552":2,"2561":2,"2586":1,"2678":1,"2886":1,"2889":1,"2940":1}}],["grs",{"2":{"114":1,"149":1}}],["greyscale",{"2":{"2777":1,"2785":1}}],["grep",{"2":{"2746":2}}],["greek",{"2":{"2886":1,"2887":2}}],["greeting",{"2":{"489":1,"1687":1}}],["greet",{"2":{"485":1,"489":1}}],["green",{"0":{"702":1,"704":1,"735":1,"737":1,"812":1,"814":1,"820":1,"839":1,"841":1,"847":1,"871":1,"873":1,"879":1,"903":1,"905":1,"911":1,"938":1,"940":1,"946":1,"972":1,"974":1,"980":1,"1006":1,"1008":1,"1014":1,"1040":1,"1042":1,"1048":1,"1074":1,"1076":1,"1082":1,"1108":1,"1110":1,"1116":1,"1142":1,"1144":1,"1150":1,"1176":1,"1178":1,"1184":1,"1229":1,"1231":1,"1237":1,"1306":1,"1308":1},"1":{"703":1,"705":1,"736":1,"738":1,"813":1,"815":1,"821":1,"840":1,"842":1,"848":1,"872":1,"874":1,"880":1,"904":1,"906":1,"912":1,"939":1,"941":1,"947":1,"973":1,"975":1,"981":1,"1007":1,"1009":1,"1015":1,"1041":1,"1043":1,"1049":1,"1075":1,"1077":1,"1083":1,"1109":1,"1111":1,"1117":1,"1143":1,"1145":1,"1151":1,"1177":1,"1179":1,"1185":1,"1230":1,"1232":1,"1238":1,"1307":1,"1309":1},"2":{"49":1,"344":3,"403":1,"494":1,"601":2,"652":1,"703":2,"705":2,"710":1,"729":1,"732":1,"736":2,"738":2,"805":1,"808":1,"813":2,"815":2,"821":2,"831":1,"834":1,"840":2,"842":2,"848":2,"863":1,"866":1,"872":2,"874":2,"880":2,"893":1,"896":1,"904":2,"906":2,"912":2,"928":1,"931":1,"939":2,"941":2,"947":2,"962":1,"965":1,"973":2,"975":2,"981":2,"996":1,"999":1,"1007":2,"1009":2,"1015":2,"1030":1,"1033":1,"1041":2,"1043":2,"1049":2,"1064":1,"1067":1,"1075":2,"1077":2,"1083":2,"1098":1,"1101":1,"1109":2,"1111":2,"1117":2,"1132":1,"1135":1,"1143":2,"1145":2,"1151":2,"1166":1,"1169":1,"1177":2,"1179":2,"1185":2,"1219":1,"1222":1,"1230":2,"1232":2,"1238":2,"1287":1,"1288":1,"1307":2,"1309":2,"1417":1,"2089":2,"2094":2,"2095":1,"2108":1,"2110":1,"2181":1,"2185":1,"2189":2,"2191":1,"2198":1,"2205":3,"2532":1,"2683":1,"2749":1}}],["greatest",{"2":{"2709":1}}],["greater",{"2":{"63":1,"414":1,"433":2,"720":1,"1423":1,"1518":2,"2007":1,"2576":1}}],["great",{"2":{"542":1,"565":1,"1336":1,"1503":1,"1589":1,"1591":1,"1801":1,"2608":1,"2645":1,"2646":1,"2665":1,"2680":1,"2707":1}}],["greatly",{"2":{"49":1,"2417":1}}],["gh",{"2":{"2600":4}}],["ghcr",{"2":{"2599":1}}],["gh62",{"2":{"450":5,"2432":5}}],["gh60",{"2":{"429":3,"2615":1}}],["gherkin",{"2":{"266":1,"322":4,"328":1,"2690":1}}],["ghoul",{"2":{"199":1}}],["ghosting",{"0":{"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1},"2":{"134":1,"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"2466":2,"2872":1}}],["ghost",{"2":{"112":1,"199":1,"561":2,"889":1,"2872":1}}],["gh80",{"2":{"57":4,"266":1}}],["gauge",{"2":{"2902":1}}],["gather",{"2":{"1964":1,"2902":1}}],["gathering",{"2":{"429":1}}],["gateway",{"2":{"2940":1}}],["gateron",{"2":{"2421":1}}],["gate",{"2":{"1545":1,"1558":2}}],["gasc",{"2":{"1364":2}}],["gamma",{"2":{"236":1}}],["game",{"2":{"241":6,"1440":1,"1606":1,"1738":1,"2567":1,"2646":1}}],["gamers",{"2":{"137":1}}],["gamebuddy",{"2":{"102":3,"114":1}}],["galleon",{"2":{"211":1}}],["galaxy",{"2":{"114":1}}],["garbled",{"2":{"191":1}}],["gap",{"2":{"134":1,"2466":1}}],["gain",{"2":{"131":1,"688":1,"2894":1}}],["gained",{"2":{"100":1,"107":1,"153":1}}],["gaining",{"2":{"86":1,"2810":1}}],["gold",{"2":{"2089":2,"2205":3}}],["goldenrod",{"2":{"2089":2,"2205":2}}],["golden",{"2":{"1523":1}}],["google",{"0":{"2942":2},"2":{"398":1,"2942":3,"2943":1}}],["googletest",{"2":{"339":1,"2410":1}}],["googling",{"2":{"397":1}}],["goodbye",{"2":{"1485":1,"1486":2}}],["good",{"2":{"119":1,"512":1,"517":2,"532":1,"533":1,"535":1,"610":1,"633":1,"648":1,"1315":1,"1337":1,"1427":1,"1433":1,"1467":1,"1525":1,"1987":1,"1988":1,"2057":1,"2309":1,"2317":2,"2410":1,"2425":1,"2427":2,"2428":1,"2429":1,"2466":1,"2479":1,"2508":1,"2572":1,"2644":1,"2664":1,"2717":1,"2910":1,"2931":1,"2941":1}}],["goal",{"2":{"262":1,"516":1,"1433":1}}],["going",{"2":{"188":1,"268":1,"626":1,"755":1,"1417":1,"2310":1,"2429":2,"2431":1,"2434":1,"2460":1,"2468":1,"2587":1,"2605":1,"2640":2,"2651":1,"2794":2,"2795":1,"2897":1,"2947":1}}],["goes",{"2":{"166":1,"398":1,"416":1,"492":1,"1379":1,"1482":2,"1540":1,"2057":1,"2182":1,"2252":1,"2502":1,"2508":1,"2744":1,"2760":1,"2871":1,"2877":1,"2878":1}}],["gotten",{"2":{"596":1}}],["got",{"2":{"158":1,"164":1,"176":1,"179":1,"182":1,"190":1,"245":1,"513":1,"1352":1,"1473":1,"2434":1}}],["go",{"0":{"612":1},"2":{"92":1,"119":1,"137":1,"152":1,"353":1,"365":1,"393":2,"411":1,"416":1,"512":1,"514":1,"558":1,"668":2,"1422":2,"1472":1,"1482":1,"1522":2,"1539":2,"1680":2,"1947":1,"1954":1,"2011":1,"2209":1,"2286":1,"2290":1,"2310":1,"2331":1,"2393":1,"2395":1,"2398":1,"2410":1,"2416":1,"2422":1,"2429":1,"2432":1,"2587":1,"2650":1,"2678":1,"2683":1,"2707":1,"2712":1,"2746":2,"2795":1,"2912":2}}],["gone",{"2":{"172":1}}],["gon",{"0":{"18":1},"2":{"18":3}}],["g",{"0":{"2107":1,"2109":1},"1":{"2108":1,"2110":1},"2":{"38":2,"65":1,"114":1,"149":1,"160":2,"191":2,"211":6,"236":1,"249":3,"266":2,"328":25,"375":1,"411":1,"565":1,"588":1,"589":2,"690":1,"710":2,"729":2,"732":1,"736":1,"805":3,"808":1,"813":1,"817":1,"821":1,"823":1,"831":3,"834":1,"840":1,"844":1,"848":1,"850":1,"863":3,"866":1,"872":1,"876":1,"880":1,"882":1,"893":3,"896":1,"904":1,"908":1,"912":1,"914":1,"928":3,"931":1,"939":1,"943":1,"947":1,"949":1,"962":3,"965":1,"973":1,"977":1,"981":1,"983":1,"996":3,"999":1,"1007":1,"1011":1,"1015":1,"1017":1,"1030":3,"1033":1,"1041":1,"1045":1,"1049":1,"1051":1,"1064":3,"1067":1,"1075":1,"1079":1,"1083":1,"1085":1,"1098":3,"1101":1,"1109":1,"1113":1,"1117":1,"1119":1,"1132":3,"1135":1,"1143":1,"1147":1,"1151":1,"1153":1,"1166":3,"1169":1,"1177":1,"1181":1,"1185":1,"1187":1,"1196":1,"1200":1,"1219":3,"1222":1,"1230":1,"1234":1,"1238":1,"1240":1,"1288":2,"1363":1,"1376":1,"1392":1,"1393":1,"1410":2,"1413":3,"1422":1,"1446":1,"1449":1,"1465":1,"1484":1,"1538":1,"1590":1,"1601":1,"1603":1,"1618":3,"1622":2,"1665":1,"1767":1,"1781":3,"1787":1,"1788":1,"1835":1,"1846":1,"1850":2,"1925":19,"1945":2,"1948":1,"1953":2,"1968":1,"1985":1,"1986":1,"1999":1,"2014":1,"2051":1,"2082":1,"2086":1,"2088":2,"2094":1,"2095":2,"2096":3,"2108":1,"2110":1,"2181":2,"2189":1,"2191":3,"2192":1,"2198":10,"2210":1,"2273":5,"2276":3,"2287":1,"2296":1,"2301":1,"2309":1,"2318":1,"2414":1,"2423":1,"2425":2,"2426":1,"2435":1,"2490":2,"2510":3,"2527":19,"2529":1,"2532":1,"2542":3,"2563":1,"2602":2,"2627":1,"2662":1,"2663":2,"2669":1,"2683":1,"2685":2,"2744":1,"2745":1,"2746":3,"2747":1,"2749":1,"2764":1,"2854":1,"2889":1,"2912":8,"2928":1,"2930":1}}],["gfx",{"2":{"31":3,"34":2,"1955":10,"2764":2}}],["german",{"2":{"2838":1,"2887":8}}],["gergoplex",{"2":{"160":1,"191":1}}],["gergo",{"2":{"143":2}}],["ge",{"2":{"2526":2,"2552":2}}],["gemini",{"2":{"2297":3,"2300":2}}],["geminipr",{"0":{"2296":1},"2":{"2294":1,"2296":6,"2298":1,"2301":2,"2881":1}}],["geminate60",{"2":{"143":2,"211":1}}],["geekhack",{"2":{"1353":1,"1378":1,"1386":1,"1387":1}}],["geometric",{"2":{"2871":1,"2878":1}}],["geometry",{"2":{"2764":2,"2926":1}}],["geonworks",{"2":{"241":1,"249":1}}],["georgi",{"2":{"143":2}}],["gesture",{"0":{"1971":1},"2":{"1970":1,"1976":1,"1977":1,"1985":3,"2046":1}}],["gestures",{"0":{"1976":1,"1977":1},"2":{"176":1,"1971":3,"1974":2,"1976":2,"1977":1,"1985":3}}],["gesc",{"2":{"191":2,"199":2,"1672":1,"1673":2,"1674":1,"2519":1}}],["genuine",{"2":{"1361":1}}],["gen1",{"2":{"483":1}}],["gentoo",{"2":{"191":1,"211":2,"2593":1}}],["gentleman",{"2":{"176":1}}],["gentleman65",{"2":{"168":2,"211":2}}],["genisis",{"2":{"114":1}}],["genetic",{"2":{"327":1}}],["genesis",{"2":{"102":3}}],["generic",{"0":{"174":1,"1613":1,"1924":1,"2702":1,"2703":1},"2":{"50":1,"172":1,"175":1,"176":3,"236":3,"317":1,"328":1,"709":1,"1433":1,"1503":3,"1924":1,"1964":2,"2261":2,"2508":1,"2549":1,"2703":2,"2705":2,"2805":1,"2845":1}}],["generating",{"2":{"328":1,"665":1,"673":1,"1472":1,"1518":1,"1959":1,"2401":1,"2403":1,"2714":1,"2775":1,"2851":1}}],["generation",{"2":{"12":1,"132":1,"176":1,"191":3,"199":2,"222":4,"231":1,"249":1,"277":1,"285":1,"294":1,"2676":1}}],["generators",{"2":{"340":2,"530":1,"531":1}}],["generator",{"0":{"530":1},"2":{"132":1,"149":2,"1702":1,"2422":1}}],["generates",{"2":{"461":1,"462":1,"672":1,"2589":1}}],["generated",{"2":{"73":1,"308":1,"333":1,"461":1,"580":1,"604":1,"673":1,"719":1,"1450":1,"1481":1,"1488":1,"1620":1,"2417":1,"2557":1,"2683":1,"2746":1,"2759":1,"2762":5}}],["generate",{"0":{"302":1,"461":1,"462":1,"470":1,"673":1},"2":{"70":4,"95":1,"114":1,"132":2,"153":1,"160":1,"191":1,"199":2,"211":1,"236":2,"249":2,"277":1,"308":2,"328":3,"339":1,"344":3,"375":1,"447":1,"461":1,"462":1,"470":1,"580":1,"666":3,"673":5,"1388":1,"1480":3,"1527":1,"1528":1,"1670":1,"1968":1,"1980":1,"1985":1,"2384":2,"2391":2,"2417":2,"2682":1,"2762":4,"2937":1}}],["generally",{"2":{"403":1,"494":1,"516":1,"527":1,"529":1,"532":1,"535":1,"538":1,"544":1,"545":1,"561":1,"656":1,"675":1,"677":1,"712":1,"746":1,"750":1,"764":1,"793":1,"1248":1,"1269":1,"1298":1,"1315":1,"1422":1,"1477":1,"1544":1,"1556":1,"1645":1,"1668":1,"1836":1,"1853":1,"2009":1,"2070":1,"2092":1,"2317":1,"2424":1,"2463":1,"2473":1,"2482":1,"2501":1,"2612":1,"2683":1,"2762":2,"2763":1,"2764":1,"2860":1,"2894":1,"2903":3}}],["generalise",{"2":{"191":1,"236":1}}],["generalize",{"2":{"149":1}}],["general",{"0":{"615":1,"680":1,"2852":1},"1":{"616":1,"617":1,"618":1,"619":1,"620":1},"2":{"5":1,"10":1,"175":1,"201":1,"213":1,"233":1,"491":1,"512":1,"514":1,"609":1,"1303":1,"1467":3,"1557":1,"1766":1,"2015":1,"2317":1,"2465":1,"2644":1,"2646":1,"2707":2,"2711":1,"2749":1,"2750":3,"2763":1,"2764":1,"2777":1,"2785":1,"2901":1}}],["gets",{"2":{"496":1,"578":1,"645":1,"646":1,"651":1,"657":1,"658":1,"659":1,"1440":1,"1451":1,"1464":1,"1517":2,"1537":1,"1794":1,"1954":1,"1961":1,"1988":1,"2008":1,"2204":6,"2300":1,"2323":3,"2466":2,"2561":1,"2685":1,"2949":1}}],["getter",{"2":{"534":1}}],["getters",{"2":{"236":2}}],["getting",{"0":{"420":1,"421":1,"2432":1,"2896":1},"1":{"2897":1,"2898":1,"2899":1},"2":{"211":2,"403":1,"677":1,"684":2,"696":1,"1417":1,"1425":1,"2655":1,"2674":1,"2743":1,"2744":1,"2749":1,"2795":1,"2896":1}}],["getta25",{"2":{"143":2,"308":1}}],["getreuer",{"2":{"179":1,"191":1,"288":1,"1540":1}}],["get",{"0":{"370":1,"371":1,"372":1,"1333":1,"1568":1,"1582":1,"1767":1,"1877":1,"1883":1,"1893":1,"1903":1,"1906":1,"2033":1,"2119":1,"2125":1,"2131":1,"2137":1,"2147":1,"2157":1,"2163":1,"2166":1,"2334":1,"2354":1,"2478":1,"2924":1},"1":{"1569":1,"1583":1,"1878":1,"1884":1,"1894":1,"1904":1,"1907":1,"2034":1,"2120":1,"2126":1,"2132":1,"2138":1,"2148":1,"2158":1,"2164":1,"2167":1,"2335":1,"2355":1,"2356":1},"2":{"22":4,"23":1,"50":1,"75":1,"140":1,"158":1,"160":1,"190":1,"191":3,"194":6,"195":2,"199":1,"222":4,"236":2,"249":1,"273":1,"276":1,"277":1,"284":1,"285":1,"308":1,"317":1,"323":4,"324":2,"325":4,"377":1,"385":1,"386":1,"389":1,"392":1,"434":1,"437":1,"458":1,"513":1,"530":1,"561":1,"564":2,"574":1,"588":1,"610":1,"615":1,"616":1,"619":2,"625":1,"629":1,"645":1,"711":1,"1312":1,"1330":2,"1332":2,"1336":1,"1356":1,"1364":10,"1366":1,"1367":1,"1376":1,"1388":1,"1390":1,"1417":1,"1427":2,"1428":1,"1429":1,"1430":1,"1431":1,"1442":1,"1451":1,"1470":1,"1472":2,"1484":1,"1490":1,"1491":1,"1496":2,"1498":2,"1499":2,"1503":7,"1510":5,"1517":1,"1526":1,"1533":1,"1534":1,"1568":1,"1570":1,"1575":1,"1591":1,"1593":2,"1594":1,"1595":1,"1601":1,"1612":9,"1620":1,"1625":1,"1661":1,"1689":1,"1781":1,"1788":1,"1795":1,"1835":1,"1840":1,"1851":4,"1852":1,"1863":1,"1877":1,"1883":1,"1893":1,"1903":1,"1906":1,"1923":1,"1945":1,"1947":1,"1954":1,"1956":1,"1957":1,"1984":2,"1985":1,"1986":2,"1988":3,"1990":1,"1992":1,"1994":1,"1996":1,"2008":6,"2009":1,"2011":1,"2012":1,"2013":1,"2029":1,"2033":1,"2038":1,"2059":2,"2068":1,"2069":3,"2070":1,"2071":1,"2075":2,"2076":4,"2077":5,"2078":4,"2079":5,"2086":2,"2090":4,"2091":1,"2095":3,"2096":3,"2105":1,"2119":1,"2125":1,"2131":1,"2137":1,"2147":1,"2157":1,"2163":1,"2166":1,"2185":1,"2193":1,"2203":1,"2204":5,"2254":2,"2255":2,"2261":1,"2284":1,"2286":1,"2308":1,"2309":1,"2316":4,"2319":2,"2323":3,"2334":1,"2351":1,"2352":1,"2354":1,"2362":1,"2380":1,"2381":2,"2424":1,"2428":1,"2432":1,"2434":1,"2462":1,"2466":4,"2480":1,"2481":1,"2490":1,"2502":1,"2503":1,"2508":1,"2586":2,"2591":1,"2612":1,"2619":1,"2628":1,"2634":1,"2674":1,"2682":1,"2683":1,"2713":1,"2714":2,"2744":1,"2749":2,"2761":1,"2764":8,"2884":1,"2889":4,"2893":5,"2897":1,"2910":1,"2911":6,"2912":8,"2919":1,"2920":1,"2921":1,"2923":2,"2924":4,"2925":1,"2927":5,"2928":2,"2930":2,"2936":1,"2943":1,"2948":4}}],["gtk",{"2":{"2331":2}}],["gtest",{"2":{"114":1,"339":1}}],["gt",{"0":{"156":1,"167":1,"195":1,"245":1,"370":1,"371":1,"372":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":2,"1457":5,"1633":1,"2456":1,"2457":1},"2":{"4":3,"18":2,"49":1,"55":3,"70":1,"94":1,"113":2,"114":5,"132":2,"133":2,"134":2,"166":1,"176":4,"191":3,"199":3,"201":2,"211":1,"222":1,"249":5,"277":1,"285":1,"317":1,"323":3,"344":1,"352":2,"353":6,"362":1,"393":15,"397":1,"403":1,"407":2,"409":3,"411":8,"412":1,"429":1,"430":1,"433":2,"459":1,"476":2,"492":1,"495":4,"559":1,"569":2,"570":3,"588":2,"593":2,"618":3,"627":8,"672":1,"673":4,"681":1,"729":1,"764":2,"797":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1248":2,"1269":2,"1315":2,"1364":3,"1388":1,"1406":1,"1407":2,"1409":4,"1433":1,"1434":3,"1438":4,"1439":1,"1453":1,"1454":1,"1455":3,"1456":1,"1463":6,"1464":5,"1466":4,"1468":1,"1470":1,"1472":5,"1491":1,"1504":1,"1506":1,"1515":1,"1527":1,"1528":1,"1590":1,"1605":2,"1627":2,"1637":1,"1638":20,"1641":1,"1668":1,"1788":1,"1994":1,"1999":1,"2000":9,"2001":1,"2009":1,"2016":1,"2273":5,"2291":1,"2298":2,"2300":1,"2317":1,"2410":1,"2414":2,"2416":4,"2417":18,"2418":2,"2434":1,"2451":2,"2453":1,"2454":1,"2457":2,"2466":1,"2502":4,"2504":2,"2508":1,"2510":1,"2534":2,"2544":1,"2555":2,"2597":1,"2603":5,"2607":2,"2628":4,"2634":7,"2639":3,"2662":2,"2663":2,"2678":4,"2681":2,"2682":2,"2683":2,"2684":1,"2685":1,"2744":1,"2746":4,"2753":1,"2763":1,"2764":4,"2794":4,"2851":1,"2869":1,"2912":2,"2928":1,"2931":1}}],["e5",{"2":{"1925":1,"2527":1}}],["e4",{"2":{"1925":1,"2527":1}}],["e3",{"2":{"1925":1,"2527":1}}],["e2",{"2":{"1925":1,"2527":1}}],["e♭",{"2":{"1925":6,"2527":6}}],["ebay",{"2":{"2505":1,"2835":1}}],["eb5",{"2":{"1925":1,"2527":1}}],["eb4",{"2":{"1925":1,"2527":1}}],["eb3",{"2":{"1925":1,"2527":1}}],["eb2",{"2":{"1925":1,"2527":1}}],["eb1",{"2":{"1925":1,"2527":1}}],["eb",{"2":{"1925":1,"2527":1}}],["ejct",{"2":{"1361":1,"2510":1,"2549":1}}],["eject",{"0":{"1361":1},"2":{"1361":3,"2510":2,"2549":2}}],["eimsk",{"2":{"2041":2}}],["eicra",{"2":{"2041":1}}],["eight",{"2":{"1702":2,"1740":1,"1953":1,"2238":1,"2252":1}}],["eighth",{"2":{"762":1,"2221":1,"2303":1}}],["either",{"2":{"49":1,"60":1,"87":1,"88":2,"104":2,"127":2,"141":1,"152":1,"339":1,"414":1,"454":1,"463":1,"495":1,"513":1,"614":1,"619":1,"672":1,"690":1,"698":1,"710":1,"714":1,"1198":1,"1201":1,"1284":1,"1297":1,"1316":1,"1346":1,"1367":1,"1467":1,"1474":1,"1477":1,"1480":1,"1525":1,"1538":1,"1625":1,"1627":1,"1661":2,"1662":1,"1712":1,"1738":1,"1954":1,"1996":1,"1999":1,"2001":1,"2068":1,"2267":1,"2279":1,"2292":1,"2293":1,"2298":2,"2427":1,"2460":1,"2465":1,"2607":1,"2626":1,"2627":1,"2668":1,"2676":1,"2686":1,"2746":1,"2750":1,"2763":1,"2764":1,"2767":1,"2787":1,"2869":2,"2913":1,"2925":2,"2926":2}}],["e1",{"2":{"1925":1,"2527":1}}],["e15",{"2":{"690":1}}],["e14",{"2":{"690":1}}],["e12",{"2":{"690":1}}],["e11",{"2":{"690":1}}],["e10",{"2":{"690":1}}],["e13",{"2":{"690":1}}],["e9",{"2":{"690":1}}],["egg",{"2":{"675":1,"2313":1,"2314":3,"2315":2}}],["eggman",{"2":{"143":2}}],["eg",{"2":{"433":1,"518":1,"529":1,"564":1,"618":1,"632":1,"651":1,"693":1,"694":3,"799":1,"1448":1,"1457":1,"1527":1,"1593":1,"1699":1,"1803":1,"2008":1,"2238":1,"2240":1,"2242":1,"2244":1,"2261":1,"2322":1,"2384":2,"2388":1,"2391":2,"2400":1,"2402":1,"2404":1,"2450":1,"2455":1,"2651":1,"2706":1,"2746":1,"2852":2}}],["e7",{"2":{"328":1,"690":1}}],["e8",{"2":{"690":2}}],["e8ghtyneo",{"2":{"317":1}}],["e88",{"2":{"211":1}}],["eubg",{"2":{"2295":1,"2296":1}}],["euro",{"2":{"2474":1}}],["europe",{"2":{"1346":1}}],["eurkey",{"2":{"294":1,"2887":2}}],["eu",{"2":{"241":2,"2301":1}}],["eyes",{"2":{"2428":1}}],["eyeohdesigns",{"2":{"236":1}}],["eyboard",{"2":{"2071":1}}],["eybord",{"2":{"2071":1}}],["eyalroz",{"2":{"176":1}}],["ec44c6c1675c25b9827aacd08c02433cccde7780",{"2":{"2410":1}}],["ec11",{"2":{"1665":1}}],["echo",{"0":{"493":1},"2":{"491":1,"493":1,"517":4,"529":1,"2597":2,"2628":1}}],["eclipse",{"0":{"384":1,"392":1,"393":1,"2653":1,"2657":1,"2658":1,"2661":1,"2814":1},"1":{"385":1,"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"393":1,"394":1,"395":1,"396":1,"397":1,"398":1,"2658":1,"2659":1,"2660":1,"2662":1,"2663":1},"2":{"384":1,"385":1,"388":1,"391":1,"393":2,"2653":3,"2656":1,"2657":2,"2658":6,"2659":3,"2660":1,"2663":1,"2814":1,"2906":1}}],["ecosystem",{"2":{"243":1,"331":1}}],["eccentric",{"2":{"1684":1}}],["ecc",{"2":{"236":1}}],["ec",{"2":{"222":1,"247":2,"277":1,"1640":2,"2526":3,"2552":3}}],["ekow",{"2":{"211":1}}],["ek65",{"2":{"199":1}}],["equo",{"2":{"2593":1}}],["equally",{"2":{"1786":1,"2733":1}}],["equality",{"2":{"1364":1}}],["equal",{"2":{"433":3,"476":1,"1379":1,"1692":1,"2295":1,"2300":1,"2510":3,"2544":1,"2550":2,"2779":2,"2787":2}}],["equals",{"2":{"249":1}}],["equivalency",{"2":{"535":1}}],["equivalents",{"2":{"555":1,"1283":1,"1989":1,"2691":1}}],["equivalent",{"2":{"7":1,"103":1,"185":1,"186":1,"232":1,"234":1,"749":1,"750":1,"753":1,"1398":1,"1620":1,"1638":1,"1645":1,"1697":1,"1852":1,"2091":1,"2181":1,"2559":1,"2567":1,"2568":1,"2652":1,"2685":1,"2686":1,"2746":4}}],["equinox",{"2":{"211":1}}],["eql",{"2":{"176":1,"375":1,"589":2,"2510":1,"2544":1,"2563":1}}],["efuse",{"2":{"2503":2}}],["ef8878fba5d3786e3f9c66436da63a560cd36ac9",{"2":{"589":2}}],["efgh",{"2":{"266":1}}],["ef",{"2":{"249":1}}],["efl",{"2":{"176":2,"191":1,"236":1,"277":1,"754":4,"757":1}}],["effort",{"2":{"665":1,"793":1,"1405":1,"1528":1,"2316":1,"2425":1,"2458":1,"2627":1}}],["efficiently",{"2":{"1525":1,"1685":1}}],["efficient",{"2":{"63":1,"231":1,"1192":2,"1193":1,"1199":1,"1953":1,"1999":1,"2293":1}}],["effect2",{"2":{"1850":6,"2088":6}}],["effective",{"2":{"719":1,"1410":1,"1788":1,"1939":1,"2912":1,"2928":1}}],["effectively",{"2":{"49":1,"163":1,"1297":1,"1742":1,"2272":1,"2475":1,"2568":1,"2921":1}}],["effects",{"0":{"1849":1,"1850":1,"2085":1,"2088":1,"2183":1,"2196":1,"2200":1},"1":{"2086":1,"2087":1,"2184":1,"2185":1,"2186":1,"2187":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1},"2":{"84":1,"93":2,"124":1,"134":1,"156":1,"222":1,"249":1,"266":1,"277":1,"294":1,"298":1,"308":1,"517":3,"719":1,"1489":1,"1635":2,"1636":2,"1846":1,"1849":2,"1850":6,"1851":1,"1852":3,"2082":1,"2085":3,"2087":1,"2088":6,"2090":1,"2091":3,"2197":1,"2209":1,"2210":2,"2746":1,"2770":1,"2871":3,"2877":2,"2878":3}}],["effect",{"0":{"2086":1,"2087":1,"2097":1,"2184":1,"2185":1,"2197":1,"2199":1},"2":{"49":1,"74":1,"93":1,"134":1,"149":2,"160":1,"176":1,"191":6,"194":1,"199":1,"222":1,"236":1,"249":2,"266":1,"276":1,"277":1,"285":4,"294":2,"317":1,"339":1,"354":2,"589":1,"676":1,"1351":1,"1425":1,"1489":1,"1493":2,"1498":1,"1597":1,"1602":1,"1635":1,"1636":1,"1685":1,"1790":1,"1795":1,"1849":3,"1850":21,"1851":3,"1865":1,"1867":1,"1869":1,"1870":1,"1871":1,"1872":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1891":1,"1893":1,"1894":1,"1895":1,"1897":1,"1903":1,"1904":1,"1905":1,"1939":1,"1954":2,"2047":1,"2085":3,"2086":4,"2087":1,"2088":21,"2090":3,"2097":2,"2107":1,"2109":1,"2111":1,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2145":1,"2147":1,"2148":1,"2149":1,"2151":1,"2157":1,"2158":1,"2159":1,"2161":1,"2163":1,"2164":1,"2165":1,"2178":1,"2181":2,"2183":1,"2184":10,"2185":11,"2186":2,"2197":1,"2198":1,"2199":1,"2200":6,"2201":14,"2209":1,"2210":1,"2309":1,"2319":1,"2532":2,"2871":1,"2877":1,"2878":1,"2894":10,"2925":1,"2930":1}}],["ede48346eee4b8d6847c19bc01420bee76a5e486",{"2":{"2410":1}}],["ed",{"2":{"275":1,"2070":2,"2685":1}}],["edges",{"2":{"2085":1,"2926":1}}],["edge",{"2":{"175":1,"1252":8,"2043":1,"2427":1,"2568":1,"2795":2,"2799":2,"2865":1}}],["editable",{"2":{"495":1}}],["editorconfig",{"2":{"2680":1}}],["editors",{"2":{"504":1,"2645":1}}],["editor",{"0":{"2585":1,"2645":1},"2":{"429":2,"448":1,"449":1,"450":1,"676":1,"683":1,"1440":1,"1946":2,"2423":1,"2432":2,"2434":1,"2504":1,"2582":1,"2585":1,"2589":1,"2591":3,"2592":1,"2599":1,"2619":3,"2634":1,"2640":1,"2645":1,"2653":1,"2663":1,"2673":3,"2676":2,"2795":1,"2800":1,"2869":1}}],["edit",{"2":{"409":1,"411":1,"616":2,"668":1,"672":1,"1850":1,"2088":1,"2211":1,"2251":1,"2414":2,"2481":1,"2591":1,"2619":1,"2633":1,"2634":1,"2640":1,"2800":1,"2923":1}}],["edited",{"2":{"397":1,"414":1,"589":1,"1946":1,"2638":1}}],["editing",{"2":{"397":1,"460":1,"467":1,"616":1,"619":1,"1319":1,"1529":1,"2585":1,"2634":1,"2762":1}}],["edition",{"0":{"1397":1,"1401":1,"2706":1},"2":{"211":2,"249":3,"1391":1,"1397":1,"1398":2,"1399":1,"1401":1,"2706":1}}],["edits",{"2":{"211":1,"414":1}}],["edi",{"2":{"143":1,"149":1}}],["eopkg",{"2":{"2593":1}}],["eof",{"2":{"249":1,"2792":1}}],["eol",{"2":{"173":1,"308":1,"333":1}}],["eon95",{"2":{"57":2}}],["eon87",{"2":{"57":2}}],["eon75",{"2":{"57":2}}],["eon65",{"2":{"57":2}}],["eon40",{"2":{"57":2}}],["etc",{"0":{"1320":1},"2":{"169":1,"285":1,"444":2,"510":1,"511":1,"532":1,"538":1,"632":1,"651":1,"729":1,"764":2,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1248":2,"1269":2,"1283":1,"1316":1,"1332":1,"1383":1,"1425":1,"1485":1,"1791":1,"1948":1,"1999":1,"2057":1,"2096":1,"2178":1,"2189":1,"2212":1,"2276":1,"2287":1,"2421":2,"2427":1,"2653":1,"2673":1,"2714":2,"2744":3,"2746":4,"2747":1,"2889":1,"2890":2}}],["eh",{"2":{"143":4,"270":3,"277":1,"2526":2,"2552":2}}],["estonian",{"2":{"2887":3}}],["estimating",{"2":{"2379":1}}],["estimated",{"2":{"2379":1,"2381":1}}],["established",{"2":{"574":1,"2291":1,"2425":1}}],["es",{"2":{"1593":1}}],["esr",{"2":{"610":1}}],["essential",{"2":{"390":1,"1783":1}}],["essentially",{"2":{"263":1,"2255":1,"2424":1}}],["especially",{"2":{"320":1,"619":1,"1410":1,"1427":1,"1517":1,"1546":1,"1589":1,"1593":1,"1986":1,"2417":1,"2429":1,"2711":1,"2759":1,"2899":1,"2930":1,"2931":1,"2941":1}}],["espectro",{"2":{"143":2}}],["eschew",{"2":{"519":1}}],["escaping",{"2":{"191":1}}],["escaped",{"2":{"2852":2}}],["escape",{"0":{"1366":1,"1671":1,"1777":1,"2519":1},"1":{"1672":1,"1673":1,"1674":1,"1675":1,"1676":1},"2":{"114":1,"176":1,"188":1,"191":1,"211":1,"231":1,"683":1,"684":1,"710":2,"1348":1,"1360":1,"1438":1,"1446":1,"1602":1,"1671":3,"1674":2,"1676":4,"1777":2,"2222":1,"2312":1,"2317":1,"2346":2,"2387":1,"2418":1,"2510":2,"2519":3,"2526":8,"2544":2,"2552":8,"2575":2,"2586":1,"2612":1,"2869":1}}],["esc",{"0":{"1360":1,"2312":1},"2":{"105":2,"114":1,"199":1,"375":1,"589":2,"1366":3,"1446":1,"1453":1,"1589":1,"1602":2,"1603":1,"1604":1,"1605":3,"1622":2,"1625":1,"1641":3,"1672":1,"1673":1,"1676":4,"1692":1,"1767":1,"1777":10,"2222":1,"2312":4,"2313":1,"2315":2,"2317":2,"2384":3,"2391":3,"2510":1,"2526":2,"2544":1,"2552":2,"2557":1,"2575":1,"2876":2,"2889":1,"2930":1,"2940":1}}],["epomaker",{"2":{"2567":2}}],["epoch80",{"2":{"241":2}}],["epsize",{"2":{"2057":1,"2058":1}}],["epsize\`",{"2":{"2057":1}}],["ep",{"2":{"114":1,"190":1,"191":1,"211":1,"266":1,"575":2}}],["e6",{"2":{"111":1,"570":1,"1195":1,"2375":1,"2384":1,"2391":1,"2691":1,"2720":1}}],["emergencies",{"2":{"2903":1}}],["emerge",{"2":{"2593":1}}],["emery65",{"2":{"211":1}}],["em",{"2":{"1605":3}}],["emitting",{"2":{"2826":1}}],["emitted",{"2":{"1498":2,"2016":1}}],["emit",{"2":{"1503":1,"2316":1}}],["emac",{"2":{"2332":1,"2540":1}}],["emacs",{"2":{"176":1,"1593":1,"2068":1,"2331":2,"2332":2,"2344":1,"2345":1,"2346":1,"2540":2}}],["email>",{"2":{"1467":1}}],["email",{"2":{"1467":2,"1605":5,"2464":1,"2506":1,"2634":3}}],["emoji",{"0":{"345":1},"1":{"346":1,"347":1},"2":{"341":1,"492":2,"2329":1,"2330":1,"2418":1}}],["employing",{"2":{"1409":1}}],["emphasis",{"2":{"198":1,"201":1}}],["emptystring",{"2":{"181":2,"191":1}}],["empty",{"2":{"50":1,"199":1,"211":2,"222":1,"249":1,"308":2,"339":1,"599":2,"615":1,"1276":1,"1815":1,"2368":1,"2504":1,"2615":2,"2659":1,"2746":2}}],["embed",{"0":{"363":1},"2":{"363":1}}],["embedded",{"0":{"754":1},"2":{"174":1,"176":1,"362":1,"611":1,"753":3,"754":2,"757":3,"2563":1,"2700":1,"2746":2,"2753":1,"2864":1}}],["embracing",{"2":{"116":1}}],["emulating",{"2":{"753":1}}],["emulation",{"0":{"174":1,"757":1},"2":{"94":1,"131":1,"134":1,"249":1,"277":1,"746":1,"1801":1,"2692":1}}],["emulates",{"2":{"1784":1,"1785":1,"1971":1,"2389":1,"2484":1,"2488":1,"2501":1}}],["emulate",{"2":{"174":1,"1923":1,"1930":1,"2318":1,"2486":1,"2947":1}}],["emulated",{"2":{"160":1,"176":2,"746":1,"753":1,"757":1,"1550":1,"1786":1,"2297":1,"2947":1}}],["eep",{"2":{"568":2,"569":2}}],["eeproms",{"2":{"2692":1}}],["eeprom",{"0":{"131":1,"174":1,"663":1,"746":1,"757":1,"1415":1,"1853":1,"1905":1,"2092":1,"2165":1,"2273":1,"2446":1,"2774":1,"2864":1},"1":{"747":1,"748":1,"749":1,"750":1,"751":1,"752":1,"1416":1,"1417":1,"1418":1,"1419":1,"1420":1},"2":{"49":2,"65":1,"73":1,"94":3,"114":7,"131":5,"134":7,"149":5,"160":1,"174":2,"176":10,"188":1,"191":5,"211":1,"236":7,"249":1,"277":3,"285":1,"294":1,"308":1,"333":1,"568":3,"569":3,"651":1,"663":1,"746":12,"748":4,"749":36,"750":13,"751":5,"753":4,"754":1,"755":2,"756":1,"757":2,"1320":5,"1348":5,"1349":1,"1376":2,"1415":3,"1416":2,"1417":10,"1418":2,"1428":2,"1544":3,"1589":1,"1591":1,"1625":4,"1853":1,"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"1905":1,"1926":1,"1962":3,"2092":1,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2165":1,"2182":6,"2198":9,"2199":5,"2200":3,"2201":7,"2202":3,"2273":9,"2297":1,"2327":1,"2331":1,"2385":1,"2387":1,"2394":1,"2399":1,"2401":1,"2403":1,"2418":1,"2446":3,"2511":2,"2523":1,"2668":1,"2692":1,"2752":2,"2774":3,"2864":4}}],["ee",{"2":{"191":1,"249":2,"568":1,"569":2,"1348":1,"1417":1,"1590":1,"1987":1,"2273":2,"2511":1,"2526":4,"2552":4,"2752":1,"2774":1}}],["eeconfig",{"2":{"94":1,"114":1,"134":1,"176":1,"191":2,"211":1,"236":1,"249":5,"266":1,"277":1,"285":1,"308":1,"328":1,"748":1,"1416":6,"1417":7,"1418":7,"1419":22,"1420":6,"2273":1,"2774":1}}],["elbow",{"2":{"2428":1}}],["elapses",{"2":{"771":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"1256":1,"1258":1,"1261":1,"1264":1}}],["elapsed32",{"2":{"647":1,"1420":1,"2277":1,"2764":6}}],["elapsed",{"2":{"249":1,"294":1,"1410":1,"1462":1,"2191":1,"2776":1}}],["elf",{"2":{"236":1,"1376":1,"2587":1,"2629":1,"2683":2}}],["elongate",{"2":{"211":1}}],["ellora65",{"2":{"211":1}}],["ellipse",{"2":{"211":3,"236":1,"2764":3}}],["ellipses",{"2":{"153":1,"2764":3}}],["elevated",{"2":{"2429":1}}],["element++",{"2":{"1947":1,"2286":1}}],["element",{"2":{"1947":2,"2286":2}}],["elements",{"2":{"134":1,"2746":1,"2753":1}}],["electrical",{"2":{"1846":3,"2082":3,"2206":2,"2427":1,"2435":1,"2683":1,"2746":3}}],["electronics",{"2":{"762":1,"1558":1}}],["elephant42",{"2":{"191":2}}],["elephant",{"2":{"67":4,"72":1}}],["elsewhere",{"2":{"560":1,"616":1,"637":1,"2001":1,"2427":1,"2458":2,"2483":1,"2764":1,"2912":1,"2940":1,"2948":1}}],["else",{"2":{"90":6,"105":4,"179":1,"194":1,"196":3,"412":1,"414":2,"512":2,"532":1,"631":2,"641":1,"652":1,"653":1,"710":1,"1366":2,"1367":1,"1406":1,"1417":2,"1446":3,"1452":1,"1462":1,"1470":1,"1533":3,"1593":1,"1601":1,"1618":1,"1641":7,"1668":6,"1779":1,"1798":3,"1804":2,"1924":1,"1948":2,"1954":1,"1992":1,"2008":1,"2069":2,"2076":1,"2077":2,"2096":2,"2277":1,"2287":1,"2298":1,"2316":1,"2317":6,"2318":2,"2319":4,"2331":1,"2381":2,"2405":1,"2454":2,"2464":1,"2580":1,"2680":2,"2768":2,"2776":1,"2792":1,"2906":1}}],["eligible",{"2":{"1297":1,"2072":1}}],["eliminating",{"0":{"2070":1},"2":{"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1}}],["eliminate",{"2":{"76":1,"222":1,"277":1,"1779":1,"2070":1,"2434":1,"2746":1}}],["elitec",{"2":{"122":1,"311":18}}],["elite",{"0":{"1397":1,"1399":1},"1":{"1400":1,"1401":1},"2":{"86":2,"153":1,"189":2,"191":2,"199":1,"311":1,"1389":7,"1391":3,"1399":4,"1407":4,"2273":1,"2385":1,"2424":1,"2706":2,"2853":1,"2895":1}}],["evidence",{"2":{"2569":2}}],["evaporate",{"2":{"2427":1}}],["evaluate",{"2":{"2014":1}}],["evaluates",{"2":{"1847":2,"2083":2,"2247":1,"2248":1}}],["evaluated",{"2":{"563":1}}],["evaluation",{"0":{"2740":1},"2":{"535":1}}],["evaluations",{"0":{"535":1}}],["evo70",{"2":{"211":1}}],["evy",{"0":{"57":1}}],["evyd13",{"0":{"57":1},"2":{"57":22,"211":1}}],["ever",{"2":{"112":1,"154":1,"175":1,"194":1,"1311":1,"1446":3,"2935":1}}],["everywhere",{"2":{"2008":1}}],["everyone",{"2":{"179":1,"411":1,"412":1,"610":1,"621":1,"1498":1,"1503":1,"2573":1}}],["every",{"0":{"2679":1},"2":{"92":1,"188":1,"194":2,"199":1,"303":1,"338":1,"458":1,"474":1,"494":1,"545":1,"556":1,"579":1,"580":1,"581":1,"615":1,"630":1,"645":1,"683":1,"714":1,"719":1,"720":1,"748":1,"1364":1,"1375":1,"1414":1,"1428":1,"1429":1,"1472":1,"1538":1,"1600":1,"1614":1,"1855":1,"1953":1,"2014":2,"2073":1,"2086":1,"2094":1,"2252":3,"2273":1,"2275":2,"2277":1,"2297":1,"2309":2,"2310":1,"2385":1,"2387":1,"2392":1,"2415":1,"2417":1,"2429":1,"2599":1,"2617":1,"2640":1,"2695":1,"2749":1,"2851":1,"2904":1,"2912":1,"2937":2}}],["everything",{"0":{"26":1},"2":{"317":1,"394":1,"422":1,"641":1,"661":1,"1200":1,"1336":1,"1342":1,"1368":1,"1417":1,"1425":1,"1468":1,"1661":1,"2097":1,"2190":1,"2281":1,"2296":1,"2298":1,"2417":2,"2434":1,"2437":1,"2508":1,"2560":1,"2586":1,"2606":1,"2617":1,"2673":1,"2678":1,"2726":1,"2753":1,"2908":1,"2935":1}}],["even",{"2":{"93":1,"153":2,"190":1,"211":1,"288":1,"518":1,"533":1,"540":1,"555":1,"564":2,"565":1,"592":1,"619":1,"634":1,"645":1,"656":2,"1356":1,"1367":2,"1375":1,"1409":1,"1410":1,"1415":1,"1417":2,"1440":1,"1453":1,"1467":1,"1517":1,"1519":1,"1593":1,"1602":1,"1612":2,"1619":1,"1670":1,"1675":1,"1773":1,"1781":1,"1785":1,"1786":1,"1937":1,"1961":1,"1986":1,"2192":1,"2255":1,"2259":1,"2265":1,"2294":1,"2309":1,"2331":1,"2379":1,"2381":1,"2418":1,"2429":1,"2435":1,"2453":1,"2460":1,"2568":2,"2617":1,"2707":1,"2750":1,"2764":1,"2771":1,"2913":2,"2925":1,"2928":1,"2932":1,"2943":2}}],["eventual",{"2":{"1433":1}}],["eventually",{"2":{"169":1,"1376":1,"2410":1,"2466":1}}],["events",{"0":{"412":1,"2009":1},"2":{"73":2,"203":1,"312":1,"412":1,"630":1,"631":1,"632":1,"643":1,"1410":2,"1417":1,"1455":1,"1605":1,"1667":1,"1668":1,"1784":1,"1788":1,"1994":1,"2091":1,"2276":1,"2576":1,"2776":1,"2829":1,"2854":2,"2870":1,"2913":1,"2919":4,"2924":1,"2928":1,"2940":2}}],["event",{"0":{"1452":1,"2471":1},"2":{"46":3,"160":1,"176":1,"199":1,"203":1,"412":5,"580":1,"630":1,"632":1,"1353":1,"1363":2,"1444":4,"1453":1,"1454":1,"1456":1,"1535":1,"1605":2,"1618":3,"1622":1,"1786":1,"1795":1,"1994":1,"2009":3,"2214":1,"2218":1,"2222":3,"2300":1,"2469":1,"2821":1,"2822":1,"2842":1,"2914":1,"2915":2,"2916":3,"2917":2,"2918":1,"2931":1,"2940":1}}],["ez",{"2":{"50":1,"114":1,"270":2,"277":1,"437":1,"442":1,"2249":1,"2746":1}}],["e",{"2":{"38":2,"114":2,"266":2,"328":1,"341":1,"354":1,"375":1,"411":1,"429":1,"430":2,"454":2,"455":2,"466":1,"469":2,"520":1,"565":1,"588":1,"589":2,"710":2,"764":1,"1196":1,"1200":1,"1248":1,"1269":1,"1376":1,"1388":2,"1391":14,"1392":1,"1393":1,"1395":2,"1399":5,"1410":1,"1422":1,"1425":1,"1446":2,"1449":1,"1465":1,"1484":1,"1538":2,"1590":1,"1601":1,"1603":1,"1605":2,"1612":2,"1625":1,"1661":1,"1665":1,"1699":2,"1741":1,"1767":1,"1781":3,"1787":1,"1788":1,"1804":2,"1835":1,"1850":2,"1925":13,"1945":2,"1948":1,"1953":2,"1968":1,"1985":1,"1986":1,"1999":2,"2014":1,"2037":1,"2051":1,"2068":1,"2070":4,"2088":2,"2096":1,"2181":1,"2189":1,"2191":3,"2192":1,"2210":1,"2222":1,"2273":5,"2276":3,"2287":1,"2296":1,"2300":1,"2301":4,"2309":1,"2318":1,"2414":1,"2423":2,"2425":2,"2426":1,"2435":1,"2490":2,"2502":1,"2510":3,"2527":13,"2542":3,"2557":1,"2563":1,"2589":1,"2602":2,"2662":2,"2663":2,"2669":1,"2685":2,"2744":2,"2745":2,"2746":4,"2747":1,"2749":1,"2762":1,"2764":1,"2889":1,"2928":1,"2930":1}}],["eat",{"2":{"2418":1}}],["ea1514b3",{"2":{"376":1,"377":1}}],["eabi",{"2":{"339":2,"387":1}}],["eagle",{"2":{"211":1}}],["eager",{"2":{"94":1,"114":1,"199":1,"222":1,"236":1,"1410":9,"1413":4,"2854":3}}],["earliest",{"2":{"2685":1,"2686":1}}],["earlier",{"2":{"114":1,"1629":1,"1663":1,"1846":1,"2082":1,"2709":1,"2713":1,"2912":1,"2913":4,"2919":2,"2938":1}}],["early",{"0":{"2684":1,"2685":1,"2686":1},"1":{"2685":1,"2686":1,"2687":1},"2":{"49":1,"63":1,"65":1,"77":1,"320":1,"341":2,"633":1,"634":1,"1617":1,"1957":1,"1981":1,"1999":1,"2316":1,"2432":1,"2684":2,"2685":5,"2686":4,"2746":5,"2930":1}}],["each",{"0":{"35":1,"1643":1,"1644":1},"1":{"36":1},"2":{"31":3,"34":1,"36":1,"45":2,"65":1,"118":1,"138":1,"149":1,"166":1,"176":2,"188":1,"222":1,"234":1,"273":1,"307":1,"375":1,"402":1,"411":1,"433":2,"472":1,"473":1,"487":1,"492":1,"521":1,"543":1,"558":1,"561":1,"564":2,"565":1,"568":1,"575":1,"580":1,"615":2,"616":1,"627":1,"628":1,"639":1,"647":3,"669":1,"676":2,"696":1,"711":1,"715":1,"724":1,"729":1,"798":1,"805":1,"826":1,"831":1,"855":1,"863":1,"887":1,"893":1,"919":1,"928":1,"954":1,"962":1,"988":1,"996":1,"1022":1,"1030":1,"1056":1,"1064":1,"1090":1,"1098":1,"1124":1,"1132":1,"1158":1,"1166":1,"1214":1,"1219":1,"1252":1,"1283":1,"1288":1,"1312":1,"1313":1,"1329":1,"1343":1,"1389":1,"1410":1,"1413":1,"1416":1,"1427":1,"1433":1,"1443":1,"1444":2,"1472":1,"1493":3,"1525":2,"1528":1,"1538":2,"1539":1,"1612":1,"1617":1,"1638":1,"1639":2,"1662":2,"1664":1,"1665":2,"1666":1,"1670":1,"1681":1,"1720":1,"1722":1,"1747":1,"1783":1,"1787":1,"1801":1,"1846":1,"1852":1,"1934":1,"1936":1,"1948":1,"1952":1,"1953":2,"1954":1,"1983":1,"1985":2,"1986":1,"1992":1,"2037":1,"2082":1,"2086":2,"2091":1,"2178":1,"2179":1,"2185":3,"2187":7,"2190":1,"2230":1,"2234":1,"2264":1,"2272":1,"2273":1,"2277":1,"2278":1,"2281":1,"2287":1,"2289":1,"2295":1,"2309":6,"2310":2,"2315":3,"2318":6,"2325":1,"2329":1,"2330":3,"2387":1,"2410":1,"2413":1,"2414":1,"2423":1,"2426":1,"2428":2,"2429":1,"2431":1,"2434":1,"2444":1,"2445":1,"2450":1,"2466":1,"2470":1,"2502":1,"2509":2,"2558":1,"2561":2,"2563":1,"2566":1,"2571":1,"2586":1,"2639":1,"2660":1,"2684":1,"2705":1,"2709":2,"2720":2,"2747":1,"2761":1,"2762":1,"2763":2,"2764":3,"2777":2,"2778":1,"2780":2,"2782":2,"2785":2,"2794":2,"2795":2,"2796":1,"2869":4,"2870":1,"2871":2,"2872":1,"2877":1,"2878":2,"2910":1,"2914":1,"2919":1,"2926":2,"2931":1,"2944":3,"2949":1}}],["east",{"2":{"1741":1,"2051":1,"2329":1}}],["eason",{"2":{"222":1}}],["ease",{"2":{"70":1,"2329":1,"2473":1}}],["easyeda",{"2":{"93":1}}],["easy",{"0":{"1311":1},"1":{"1312":1},"2":{"6":1,"114":2,"154":1,"387":1,"439":1,"495":1,"512":2,"532":1,"538":1,"609":1,"610":1,"614":1,"616":1,"665":1,"683":1,"691":1,"762":1,"796":1,"1311":3,"1313":1,"1388":1,"1802":1,"2188":1,"2265":1,"2425":1,"2428":1,"2459":1,"2572":2,"2585":1,"2620":1,"2628":1,"2753":1}}],["easiest",{"2":{"616":1,"1312":1,"1846":1,"2082":1,"2309":1,"2329":1,"2375":1,"2429":1,"2481":1,"2795":1}}],["easier",{"2":{"2":1,"10":1,"21":1,"31":1,"45":1,"70":1,"118":1,"130":1,"133":1,"285":1,"403":1,"425":1,"490":1,"491":1,"516":1,"528":1,"530":1,"540":1,"589":1,"1340":1,"1472":1,"1593":1,"1855":1,"1999":1,"2094":1,"2208":1,"2293":1,"2326":1,"2330":1,"2405":1,"2407":1,"2425":2,"2436":1,"2447":1,"2455":1,"2561":2,"2564":1,"2573":1,"2585":1,"2586":1,"2632":1,"2678":1,"2680":1,"2751":1,"2794":1,"2937":1,"2947":1}}],["easily",{"2":{"6":1,"65":1,"328":1,"447":1,"674":1,"711":1,"1283":1,"1446":1,"1766":1,"1964":1,"2057":1,"2178":1,"2405":1,"2427":1,"2432":1,"2584":1,"2614":1,"2640":1,"2662":1,"2912":1,"2944":1}}],["exempt",{"2":{"2925":1,"2926":2}}],["exempted",{"2":{"2869":1}}],["exe",{"2":{"2615":3,"2678":1,"2683":1}}],["exercise",{"2":{"1612":1,"2794":1}}],["exec",{"2":{"149":1,"574":1,"655":1,"656":1,"657":1,"658":2,"659":2,"1630":1,"2277":2,"2418":1,"2510":1,"2548":1,"2940":1}}],["executor",{"0":{"656":1,"657":1},"2":{"574":1,"656":1,"657":1,"1630":1,"2418":1}}],["executors",{"2":{"134":1,"660":2}}],["executable",{"2":{"397":1,"2572":1,"2659":1,"2683":2,"2726":1,"2944":1,"2946":1}}],["executions",{"2":{"657":1}}],["execution",{"0":{"655":1,"658":1,"659":1},"1":{"656":1,"657":1,"658":1,"659":1,"660":1},"2":{"65":1,"249":1,"574":1,"656":3,"657":1,"658":2,"659":2,"799":1,"2418":1,"2685":1,"2726":1,"2761":1}}],["executing",{"2":{"49":1,"160":1,"656":1,"657":1,"2207":1,"2683":1,"2685":2,"2686":1}}],["executed",{"2":{"483":1,"657":1,"799":2,"2317":1,"2685":3,"2686":2,"2687":1,"2761":1}}],["executes",{"2":{"49":1,"753":1,"756":1}}],["execute",{"2":{"49":1,"65":1,"77":1,"105":2,"247":1,"655":1,"1367":1,"1535":2,"2417":2,"2503":1,"2510":2,"2548":2,"2705":1}}],["exlm",{"2":{"1517":2,"2534":1,"2555":1}}],["exsl",{"2":{"1447":1,"2510":1,"2548":1}}],["exsel",{"2":{"231":2,"1447":3,"2510":2,"2548":2}}],["exhaustion",{"2":{"719":1,"720":1}}],["exhaustive",{"2":{"273":1,"723":1,"2743":1,"2744":1,"2902":1}}],["exiting",{"2":{"2298":1,"2384":2,"2391":2}}],["exit",{"2":{"432":2,"452":1,"453":1,"454":1,"455":1,"460":1,"461":1,"469":1,"710":1,"2059":1,"2508":1,"2762":3,"2876":2}}],["existed",{"2":{"2317":1}}],["existence",{"2":{"199":1,"1451":1,"2569":1}}],["exists",{"2":{"191":1,"266":1,"294":1,"433":2,"463":1,"669":1,"674":1,"1364":2,"1419":1,"1436":1,"1484":1,"1500":1,"1502":1,"1668":1,"1786":1,"2069":1,"2456":1,"2683":1,"2746":1,"2747":1}}],["exist",{"2":{"182":1,"191":1,"199":1,"236":1,"379":2,"555":1,"569":1,"598":1,"613":1,"1343":1,"1485":1,"2317":1,"2410":1,"2503":1,"2691":1,"2779":1,"2787":1,"2944":1}}],["existing",{"0":{"31":1,"34":1,"36":1,"2711":1,"2944":1},"2":{"50":2,"92":1,"118":1,"128":1,"140":1,"149":2,"158":1,"194":1,"201":1,"203":1,"213":1,"221":1,"240":1,"249":1,"262":1,"268":1,"272":1,"275":1,"283":1,"327":1,"344":3,"353":1,"393":1,"403":1,"406":1,"414":1,"445":1,"512":2,"540":1,"619":1,"628":1,"630":1,"1428":8,"1431":1,"1433":1,"1634":1,"1767":1,"1987":1,"2423":1,"2431":1,"2482":1,"2567":1,"2570":1,"2607":1,"2640":2,"2662":2,"2678":1,"2683":2,"2711":2,"2744":1,"2746":5,"2747":1,"2944":2}}],["exaggeration",{"2":{"2936":1}}],["exactly",{"2":{"1438":1,"2057":1,"2296":1,"2410":1,"2473":1}}],["exact",{"2":{"398":1,"597":1,"656":1,"1612":1,"1713":1,"1786":1,"2344":1,"2345":1,"2346":1,"2405":1,"2483":1,"2568":2,"2910":1,"2936":1}}],["examine",{"2":{"1590":1}}],["examines",{"2":{"435":1,"456":1}}],["examining",{"0":{"378":1}}],["examples",{"0":{"517":1,"1328":1,"1365":1,"1469":1,"1605":1,"1648":1,"1700":1,"1767":1,"1775":1,"1778":1,"1948":1,"1991":1,"1995":1,"2010":1,"2095":1,"2096":1,"2224":1,"2287":1,"2311":1,"2313":1,"2728":1,"2735":1},"1":{"1329":1,"1330":1,"1331":1,"1366":1,"1367":1,"1470":1,"1471":1,"1472":1,"1701":1,"1702":1,"1776":1,"1777":1,"1779":1,"1992":1,"1993":1,"1994":1,"1996":1,"1997":1,"2011":1,"2012":1,"2096":1,"2097":1,"2225":1,"2226":1,"2312":1,"2313":1,"2314":2,"2315":2,"2316":2,"2317":2,"2318":2,"2319":2,"2736":1,"2737":1,"2738":1},"2":{"99":1,"114":1,"198":1,"312":1,"434":1,"435":1,"437":1,"439":1,"440":1,"463":1,"465":1,"469":1,"616":1,"668":2,"1328":1,"1365":1,"1414":1,"1415":1,"1433":1,"1453":1,"1469":1,"1612":1,"1613":1,"1766":1,"1773":1,"1788":1,"1850":1,"1995":1,"2057":1,"2088":1,"2295":1,"2296":1,"2309":1,"2310":1,"2313":3,"2319":4,"2417":1,"2425":1,"2439":1,"2449":1,"2466":1,"2646":1,"2727":2,"2762":3,"2764":2,"2831":1,"2928":1,"2943":1}}],["example",{"0":{"375":1,"473":1,"478":1,"479":1,"480":1,"481":1,"522":1,"523":1,"524":1,"589":1,"631":1,"635":1,"641":1,"644":1,"647":1,"649":1,"652":1,"653":1,"1417":1,"1420":1,"1430":1,"1431":1,"1461":1,"1479":1,"1523":1,"1533":1,"1535":1,"1558":1,"1774":1,"1791":1,"1804":1,"1838":1,"1839":1,"1924":1,"1946":1,"1947":1,"2059":1,"2186":1,"2285":1,"2286":1,"2312":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1,"2750":1,"2768":1,"2770":1,"2911":1},"1":{"1462":1},"2":{"49":2,"70":1,"90":2,"98":1,"99":2,"105":2,"111":1,"114":2,"149":1,"194":1,"202":1,"203":1,"211":1,"234":1,"272":1,"288":1,"303":1,"332":1,"337":1,"338":1,"363":1,"376":1,"393":3,"420":1,"429":3,"432":1,"433":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"473":2,"474":3,"476":2,"482":2,"483":1,"484":2,"485":4,"489":2,"491":1,"496":1,"500":2,"512":1,"529":1,"532":1,"572":1,"588":1,"591":1,"599":1,"613":1,"615":2,"616":1,"629":1,"631":1,"635":1,"641":1,"644":2,"647":1,"648":1,"656":1,"660":1,"670":1,"675":1,"684":2,"710":1,"721":1,"729":1,"749":1,"762":1,"764":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1203":1,"1204":1,"1219":1,"1248":1,"1252":1,"1269":2,"1287":1,"1315":1,"1329":1,"1330":2,"1331":1,"1347":1,"1363":1,"1364":2,"1366":2,"1367":2,"1382":1,"1388":1,"1405":2,"1406":1,"1407":1,"1409":2,"1417":4,"1420":2,"1422":1,"1426":1,"1430":2,"1431":1,"1438":1,"1444":8,"1446":1,"1447":1,"1448":2,"1451":1,"1452":1,"1463":1,"1464":1,"1468":1,"1469":2,"1472":1,"1475":1,"1478":1,"1480":1,"1482":1,"1492":1,"1499":1,"1503":1,"1517":1,"1518":1,"1532":1,"1534":1,"1535":1,"1538":2,"1551":1,"1556":1,"1558":1,"1591":1,"1593":1,"1597":1,"1604":1,"1605":3,"1612":1,"1613":1,"1617":2,"1618":2,"1619":1,"1624":1,"1630":1,"1633":1,"1638":1,"1648":1,"1665":1,"1666":1,"1670":2,"1690":1,"1702":1,"1742":1,"1743":1,"1765":1,"1774":2,"1776":1,"1777":1,"1779":2,"1781":1,"1795":1,"1802":1,"1804":1,"1838":1,"1839":1,"1840":1,"1841":1,"1845":1,"1846":1,"1850":1,"1923":1,"1934":1,"1936":1,"1939":1,"1945":1,"1946":1,"1947":1,"1949":1,"1953":1,"1989":1,"1992":1,"1994":1,"1996":1,"1997":1,"2013":1,"2037":1,"2041":1,"2042":1,"2044":2,"2053":1,"2057":1,"2059":1,"2069":2,"2075":1,"2077":1,"2081":1,"2082":1,"2088":1,"2096":1,"2188":1,"2194":1,"2198":1,"2206":1,"2214":1,"2226":2,"2260":1,"2269":1,"2273":1,"2277":1,"2284":1,"2285":1,"2286":1,"2293":1,"2294":1,"2297":1,"2300":1,"2303":2,"2305":1,"2308":1,"2309":2,"2312":1,"2315":1,"2317":5,"2318":1,"2319":2,"2329":2,"2330":1,"2331":1,"2407":2,"2414":1,"2417":4,"2432":1,"2448":2,"2450":2,"2453":1,"2454":2,"2455":1,"2456":1,"2461":1,"2464":3,"2466":2,"2472":1,"2474":1,"2486":1,"2499":1,"2502":3,"2503":1,"2504":1,"2523":1,"2549":1,"2558":1,"2560":1,"2563":1,"2576":1,"2578":1,"2579":1,"2580":1,"2583":2,"2614":1,"2629":2,"2650":1,"2652":1,"2685":1,"2707":1,"2709":1,"2710":1,"2711":1,"2721":1,"2744":1,"2746":3,"2763":1,"2764":1,"2776":1,"2797":1,"2851":1,"2852":6,"2853":2,"2854":1,"2863":1,"2868":2,"2869":6,"2871":4,"2872":3,"2877":3,"2878":4,"2879":1,"2880":1,"2882":3,"2884":1,"2885":2,"2886":1,"2911":2,"2912":3,"2918":3,"2919":2,"2920":1,"2921":1,"2924":1,"2925":1,"2926":3,"2927":1,"2934":1,"2937":2,"2939":1,"2941":1,"2944":1,"2946":1,"2948":1,"2949":1}}],["exclaim",{"2":{"2534":1,"2555":1}}],["exclamation",{"2":{"1517":1}}],["excluding",{"0":{"500":1},"2":{"561":1,"1544":1,"2073":1,"2857":1}}],["excluded",{"2":{"500":1,"2198":2}}],["exclude",{"2":{"176":2,"308":1,"669":2,"1533":7}}],["exclusion",{"0":{"1689":1},"1":{"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1},"2":{"1689":2}}],["exclusions",{"2":{"114":1,"149":1}}],["exclusively",{"2":{"366":1,"2395":1}}],["exclusive",{"2":{"160":1,"1426":1}}],["exchangeable",{"2":{"714":1}}],["excess",{"2":{"677":1,"2428":1}}],["excessive",{"2":{"528":1,"719":1,"2759":1}}],["except",{"2":{"512":1,"520":2,"525":1,"561":1,"793":1,"1285":1,"1319":1,"1398":1,"1422":1,"1765":1,"1992":1,"2383":1,"2393":1,"2453":1,"2523":1,"2933":1}}],["exceptionally",{"2":{"2927":1}}],["exceptional",{"2":{"525":1}}],["exceptionname",{"2":{"519":1}}],["exception",{"0":{"2729":1},"1":{"2730":1,"2731":1},"2":{"189":1,"194":1,"520":1,"525":3,"1477":1,"1484":1,"2317":1,"2482":1,"2541":1,"2711":1,"2729":1,"2730":1,"2731":1,"2733":1,"2787":1,"2922":1,"2925":1}}],["exceptions",{"0":{"525":1},"2":{"160":1,"525":1,"709":1,"1532":1,"1999":1,"2014":1,"2458":1}}],["exceed",{"2":{"2423":1}}],["exceeds",{"2":{"176":1,"540":1}}],["exceeding",{"2":{"160":1}}],["exceeded",{"2":{"28":1,"575":1,"1512":1}}],["ext",{"2":{"2706":1}}],["extreg",{"2":{"1974":5}}],["extremely",{"2":{"538":1,"643":1,"712":1,"2626":1,"2929":1}}],["extraneous",{"2":{"2889":1}}],["extracondensedbold",{"2":{"2762":1}}],["extracts",{"2":{"672":1}}],["extracted",{"2":{"249":1,"2659":1}}],["extract",{"0":{"672":1},"2":{"236":1,"249":5,"277":1,"344":1,"666":1,"672":4,"2658":1,"2870":1}}],["extraction",{"2":{"191":1}}],["extrapolates",{"2":{"665":1}}],["extrakeys",{"2":{"191":1,"2889":1}}],["extrakey",{"2":{"70":1,"111":1,"191":1,"209":1,"574":1,"575":2,"1376":1,"1380":2,"2210":1,"2418":1,"2889":1}}],["extras",{"2":{"48":1,"114":1,"160":1,"199":2,"222":1,"277":1,"1407":1,"2887":1}}],["extra",{"0":{"605":1,"1380":1},"2":{"45":2,"114":1,"145":1,"176":1,"191":2,"199":1,"294":1,"379":1,"622":1,"688":1,"746":1,"758":1,"1376":2,"1478":1,"1550":1,"1609":7,"2189":1,"2278":2,"2298":1,"2417":1,"2431":1,"2504":1,"2585":1,"2676":1,"2684":1,"2691":1,"2762":1,"2913":1}}],["extkeys",{"2":{"143":2}}],["extern",{"2":{"266":1,"1924":1,"2943":1}}],["externs",{"2":{"196":1,"333":1}}],["externally",{"2":{"224":1,"228":1,"379":1,"2603":1}}],["external",{"0":{"228":1,"451":1,"1628":1,"2446":1,"2603":1,"2605":1,"2606":1,"2608":1,"2609":1},"1":{"452":1,"453":1,"454":1,"455":1,"456":1,"2604":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2610":1},"2":{"73":1,"114":1,"134":1,"149":1,"174":1,"220":1,"224":1,"228":3,"241":2,"253":2,"268":1,"270":2,"281":2,"288":1,"308":1,"320":1,"452":1,"453":1,"454":1,"455":1,"456":1,"693":1,"746":1,"749":10,"750":5,"753":1,"755":6,"756":1,"759":7,"1197":1,"1205":1,"1297":1,"1627":2,"1628":2,"1844":1,"1850":1,"1946":1,"2080":1,"2088":1,"2446":1,"2603":5,"2604":1,"2605":1,"2606":1,"2607":2,"2608":2,"2609":3,"2610":1,"2692":1,"2705":2,"2715":1,"2734":1,"2746":1,"2761":1,"2764":1,"2818":1}}],["extent",{"2":{"2305":1,"2764":1}}],["extensively",{"2":{"529":1}}],["extensive",{"2":{"417":1,"1345":1}}],["extensions",{"0":{"2680":1},"2":{"2680":2}}],["extension",{"2":{"199":1,"211":1,"513":1,"519":1,"564":2,"1936":1,"2680":3,"2682":2,"2707":1}}],["extensible",{"2":{"107":1,"114":1,"2653":1}}],["extending",{"0":{"658":1},"2":{"564":2,"630":1}}],["extend",{"2":{"160":1,"191":1,"294":1,"308":1,"658":2}}],["extended",{"2":{"74":1,"176":2,"211":1,"236":1,"285":1,"494":2,"564":2,"749":1,"750":1,"751":1,"1419":1,"1610":1,"1985":4,"1986":1,"2498":1,"2499":1,"2501":1,"2503":2,"2691":1,"2887":2,"2903":1}}],["ext65",{"0":{"60":1},"2":{"60":1}}],["expires",{"2":{"2921":1}}],["expired",{"2":{"2014":1,"2913":1}}],["expansion",{"2":{"2445":1}}],["expands",{"2":{"454":1,"2912":1}}],["expanding",{"2":{"362":1,"1423":1,"2576":1}}],["expandable",{"2":{"362":1}}],["expanders",{"2":{"2439":1}}],["expander",{"2":{"266":1}}],["expanded",{"0":{"118":1},"2":{"70":1,"565":1,"1343":1,"2189":1}}],["expand",{"2":{"134":1,"149":1,"285":1,"393":1,"454":1,"2912":1}}],["expression",{"2":{"528":1}}],["expressions",{"0":{"530":1,"532":1},"2":{"433":2,"532":1}}],["expressed",{"2":{"70":1}}],["explore",{"2":{"2435":1,"2479":1,"2586":1}}],["explorer",{"2":{"2400":1,"2402":1,"2404":1,"2614":2,"2662":1}}],["exploiting",{"2":{"312":1}}],["exploit",{"2":{"312":1}}],["explanations",{"2":{"2415":1}}],["explanation",{"2":{"1421":1,"1961":2,"2310":1,"2320":1}}],["explained",{"2":{"1432":1,"2417":1}}],["explain",{"2":{"512":1,"514":1,"613":1,"619":1,"1786":1,"2411":1,"2933":1}}],["explains",{"2":{"471":1,"1783":1,"2452":1,"2725":1}}],["explaining",{"2":{"173":1,"1783":1,"2746":1,"2937":1,"2941":1}}],["explicit",{"0":{"124":1},"2":{"134":1,"198":1,"1622":1,"2727":1}}],["explicitly",{"2":{"14":1,"114":1,"191":1,"528":1,"749":1,"1519":1,"1589":1,"1623":1,"2184":1,"2198":1,"2298":1,"2719":1,"2728":1,"2736":1,"2894":1}}],["exponent",{"2":{"1986":4}}],["exporting",{"2":{"2762":2}}],["exports",{"2":{"429":2,"430":1}}],["exported",{"2":{"379":1}}],["export",{"2":{"134":1,"438":1,"450":1,"452":2,"453":2,"500":1,"578":1,"2432":2,"2746":1}}],["exposes",{"2":{"1406":1,"1419":2,"2459":1}}],["exposed",{"2":{"754":1,"755":1,"756":1,"2429":2,"2665":1,"2864":1}}],["expose",{"2":{"114":1,"160":1,"176":1,"211":1,"285":1,"2460":1}}],["expert",{"2":{"764":2}}],["experiment",{"2":{"1968":1,"2435":1}}],["experimentation",{"2":{"615":1}}],["experimental",{"2":{"570":1,"1207":1,"1490":1,"2249":2,"2275":1}}],["experiencing",{"2":{"1338":1}}],["experience",{"2":{"555":1,"611":1,"1207":1,"1301":1,"1490":1,"1492":1,"2272":1,"2632":1}}],["expense",{"2":{"555":1,"2379":1}}],["expensive",{"2":{"114":1,"1298":1,"1413":1,"1855":1,"2094":1,"2424":1}}],["expects",{"2":{"1788":1,"2294":1,"2762":1,"2928":1}}],["expect",{"2":{"496":1,"1375":1,"1409":1,"1981":1,"2309":1,"2467":1,"2566":1,"2569":1,"2617":1,"2882":1,"2947":1}}],["expecting",{"2":{"124":1,"1398":1}}],["expected",{"2":{"4":1,"13":1,"303":1,"320":1,"338":1,"379":1,"414":1,"745":1,"762":1,"1534":1,"1803":1,"1846":3,"1999":1,"2082":3,"2298":1,"2869":1,"2914":1,"2930":1}}],["erm",{"0":{"1684":1},"2":{"1679":1,"1684":2,"1685":2}}],["err",{"2":{"555":1}}],["errno",{"2":{"308":1}}],["erroneous",{"2":{"149":1,"160":1}}],["error",{"0":{"141":1},"2":{"28":1,"92":1,"103":1,"114":4,"126":1,"149":4,"160":1,"176":3,"191":2,"199":3,"201":1,"211":1,"222":4,"236":1,"328":1,"333":1,"377":1,"492":1,"559":1,"575":1,"581":1,"615":1,"754":1,"771":2,"774":2,"777":2,"780":2,"783":2,"786":2,"789":2,"792":2,"795":2,"1261":2,"1264":2,"1425":1,"1524":1,"1980":1,"2043":1,"2294":1,"2434":1,"2455":1,"2508":1,"2599":1,"2616":1,"2628":1,"2634":1}}],["errors",{"0":{"2463":1},"2":{"17":1,"34":1,"73":2,"92":1,"114":2,"134":1,"149":1,"160":2,"191":2,"199":1,"211":2,"333":1,"378":1,"422":1,"440":1,"540":1,"615":3,"1376":1,"1388":1,"1390":1,"1524":1,"1980":1,"1986":1,"2275":2,"2291":1,"2417":1,"2434":1,"2463":2,"2490":1,"2590":1,"2599":1,"2601":1,"2678":1,"2778":1,"2779":1,"2787":1,"2943":1}}],["eras",{"2":{"2510":1,"2548":1}}],["erasing",{"2":{"2502":1,"2508":1,"2615":1}}],["erased",{"2":{"2508":8}}],["erase",{"2":{"277":2,"748":1,"752":1,"755":1,"1315":1,"1376":1,"1947":1,"2286":1,"2383":2,"2502":1,"2510":2,"2548":2,"2615":1,"2637":1}}],["era",{"2":{"236":1,"249":1}}],["era65",{"2":{"222":1}}],["erovia",{"2":{"164":1}}],["ergokbd",{"2":{"2567":1}}],["ergosaurus",{"2":{"159":2}}],["ergotaco",{"2":{"143":2}}],["ergodash",{"2":{"143":4}}],["ergodone",{"2":{"102":2}}],["ergodox",{"0":{"1843":1},"2":{"8":1,"114":3,"134":1,"143":2,"211":1,"285":2,"291":2,"294":1,"437":1,"1413":1,"1843":7,"2283":1,"2315":9,"2417":2}}],["ergoarrows",{"2":{"143":2}}],["ergo42",{"2":{"143":2}}],["ergo",{"2":{"143":2}}],["ergoinu",{"2":{"37":2,"149":1}}],["enamelled",{"2":{"2425":1}}],["enablehexnumpad",{"2":{"2331":1}}],["enable=true",{"2":{"1322":1,"1333":1}}],["enable=yes",{"2":{"93":1,"277":1,"434":1,"1332":1,"2210":1,"2946":1}}],["enabled",{"0":{"563":1,"1570":1,"1863":1,"2105":1},"1":{"1571":1,"1864":1,"2106":1},"2":{"112":3,"114":2,"174":1,"191":1,"209":4,"211":1,"222":2,"236":1,"249":2,"265":1,"268":1,"275":2,"277":1,"283":1,"307":1,"308":1,"328":1,"447":1,"456":1,"564":1,"574":1,"575":1,"651":2,"676":1,"691":1,"717":1,"748":1,"799":3,"1301":1,"1320":1,"1327":2,"1329":1,"1383":1,"1392":2,"1393":2,"1397":1,"1406":1,"1417":5,"1428":4,"1444":1,"1464":1,"1471":7,"1485":1,"1489":1,"1500":1,"1505":1,"1510":1,"1518":3,"1519":1,"1526":1,"1533":1,"1536":1,"1542":1,"1571":1,"1576":1,"1589":1,"1595":1,"1610":1,"1621":1,"1623":1,"1640":1,"1664":1,"1667":1,"1678":1,"1687":1,"1689":1,"1779":1,"1781":2,"1851":2,"1852":2,"1863":1,"1864":1,"1873":1,"1874":1,"1875":1,"1876":1,"1905":1,"1925":1,"1965":1,"1977":1,"1998":1,"1999":1,"2001":2,"2008":3,"2013":4,"2044":2,"2068":1,"2090":2,"2091":2,"2105":1,"2106":1,"2115":1,"2116":1,"2117":1,"2118":1,"2165":1,"2179":1,"2181":1,"2183":1,"2199":7,"2203":1,"2204":1,"2210":2,"2220":1,"2221":1,"2254":1,"2261":1,"2276":3,"2278":3,"2292":1,"2321":2,"2328":1,"2331":2,"2379":1,"2409":1,"2415":1,"2418":1,"2459":1,"2503":1,"2527":1,"2663":1,"2746":3,"2761":2,"2764":1,"2771":1,"2854":1,"2856":2,"2857":2,"2860":1,"2861":1,"2863":1,"2871":1,"2873":1,"2875":2,"2877":3,"2878":1,"2879":1,"2880":2,"2881":1,"2889":1,"2894":2,"2919":3,"2920":3,"2922":2,"2923":2,"2925":3,"2928":2}}],["enables",{"2":{"87":1,"114":1,"119":1,"283":1,"308":1,"561":1,"563":1,"564":6,"565":1,"572":1,"574":2,"641":1,"891":1,"1285":1,"1486":4,"1511":1,"1518":1,"1519":1,"1621":1,"1630":1,"1849":20,"1852":1,"1940":1,"1949":1,"1960":1,"1976":1,"1977":1,"1985":2,"1986":2,"1996":1,"2003":1,"2068":1,"2085":49,"2091":1,"2276":8,"2278":1,"2320":1,"2321":4,"2418":7,"2700":1,"2828":1,"2860":1,"2861":1,"2873":1,"2901":1,"2910":1,"2921":1,"2924":1}}],["enable",{"0":{"1500":1,"1526":1,"1561":1,"1573":1,"1594":1,"1790":1,"1859":1,"1860":1,"2001":1,"2008":1,"2066":1,"2101":1,"2102":1,"2200":1,"2250":1},"1":{"1595":1},"2":{"10":1,"28":1,"31":3,"34":3,"49":1,"65":5,"70":1,"74":1,"75":1,"87":3,"88":7,"93":2,"94":1,"103":1,"104":7,"114":6,"118":1,"119":1,"124":1,"126":1,"127":7,"131":1,"133":1,"134":12,"149":2,"160":1,"176":5,"191":3,"194":2,"199":1,"202":2,"209":2,"211":2,"222":2,"232":1,"234":1,"235":2,"236":2,"247":1,"249":1,"266":35,"273":1,"277":2,"285":1,"307":2,"308":2,"312":1,"328":2,"339":1,"380":1,"429":1,"488":1,"507":1,"561":2,"563":2,"564":4,"570":8,"572":1,"574":23,"575":7,"592":1,"641":1,"647":1,"655":2,"717":1,"718":1,"721":1,"726":1,"728":1,"764":4,"799":1,"804":1,"821":3,"823":1,"830":1,"848":3,"850":1,"862":1,"889":1,"891":1,"892":1,"912":3,"914":1,"927":1,"947":3,"949":1,"961":1,"981":3,"983":1,"995":1,"1015":3,"1017":1,"1029":1,"1049":3,"1051":1,"1063":1,"1097":1,"1131":1,"1165":1,"1201":1,"1203":1,"1204":1,"1209":2,"1218":1,"1238":3,"1240":1,"1248":3,"1269":2,"1288":1,"1299":2,"1301":1,"1303":1,"1322":2,"1329":2,"1330":1,"1331":1,"1333":1,"1354":3,"1358":4,"1359":1,"1364":2,"1376":4,"1377":1,"1380":2,"1387":3,"1395":1,"1405":1,"1417":3,"1464":3,"1470":1,"1471":4,"1473":1,"1477":1,"1484":2,"1485":2,"1486":2,"1489":1,"1492":1,"1493":1,"1500":1,"1501":1,"1518":1,"1520":1,"1526":3,"1533":1,"1535":4,"1536":1,"1542":1,"1544":4,"1556":1,"1557":1,"1578":1,"1589":1,"1594":1,"1595":2,"1597":1,"1602":2,"1606":1,"1621":1,"1623":1,"1625":1,"1639":1,"1640":2,"1641":2,"1646":1,"1661":2,"1665":1,"1667":2,"1668":1,"1678":7,"1698":1,"1739":1,"1741":1,"1763":2,"1768":2,"1779":1,"1790":1,"1797":1,"1801":2,"1803":1,"1804":3,"1835":1,"1839":2,"1849":22,"1851":2,"1852":2,"1919":2,"1921":1,"1922":1,"1931":1,"1932":2,"1936":1,"1937":3,"1939":1,"1944":2,"1945":1,"1948":1,"1957":1,"1962":2,"1964":2,"1965":1,"1971":13,"1975":1,"1976":4,"1977":5,"1980":1,"1983":1,"1985":6,"1986":2,"1987":1,"1989":1,"1994":1,"1995":1,"1996":1,"1998":1,"2001":3,"2003":1,"2008":6,"2011":3,"2013":1,"2017":1,"2040":2,"2041":2,"2042":2,"2043":2,"2046":4,"2048":2,"2052":1,"2055":1,"2066":1,"2085":51,"2087":1,"2090":2,"2091":2,"2095":1,"2096":1,"2179":2,"2182":1,"2184":11,"2188":1,"2189":2,"2190":1,"2191":3,"2200":2,"2203":1,"2210":4,"2215":1,"2220":1,"2250":1,"2251":1,"2253":1,"2254":4,"2258":1,"2268":1,"2273":1,"2276":13,"2278":4,"2284":3,"2287":1,"2293":3,"2294":2,"2295":1,"2296":1,"2297":2,"2298":1,"2302":1,"2305":2,"2309":1,"2312":1,"2320":2,"2329":4,"2330":2,"2331":3,"2376":2,"2378":2,"2384":1,"2391":1,"2418":17,"2419":2,"2454":5,"2455":2,"2460":4,"2526":2,"2552":2,"2672":1,"2683":4,"2745":1,"2746":8,"2752":1,"2754":2,"2760":2,"2761":1,"2763":12,"2854":3,"2863":1,"2871":1,"2875":2,"2877":4,"2878":1,"2879":1,"2880":1,"2881":1,"2883":1,"2889":8,"2890":2,"2891":1,"2894":46,"2910":1,"2912":5,"2919":1,"2924":1,"2928":1,"2930":1,"2948":1,"2949":1}}],["enabling",{"0":{"124":1,"234":1,"1383":1,"1932":1,"2190":1,"2754":1,"2758":1},"2":{"10":1,"50":1,"107":2,"134":1,"190":1,"191":1,"195":1,"232":2,"234":1,"447":1,"564":1,"571":1,"1266":1,"1354":1,"1405":1,"1490":1,"2278":1,"2292":1,"2298":1,"2610":1,"2746":1,"2753":1,"2763":11,"2889":2}}],["enjoy",{"2":{"2418":1}}],["enqueue",{"2":{"2310":1}}],["enqueued",{"2":{"376":1,"377":1}}],["ensuring",{"2":{"1633":1,"2742":1}}],["ensures",{"2":{"209":1,"570":4,"1389":1,"1407":1,"2277":1,"2405":1,"2427":1,"2764":1}}],["ensure",{"2":{"31":1,"34":1,"90":1,"92":1,"149":1,"176":2,"191":3,"198":1,"240":1,"249":4,"294":2,"308":1,"317":1,"327":1,"379":1,"403":1,"458":1,"465":1,"469":1,"542":1,"621":1,"643":1,"691":1,"749":1,"1197":1,"1333":1,"1407":1,"1468":1,"1628":1,"1801":1,"1999":1,"2008":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2398":1,"2400":1,"2402":1,"2404":1,"2423":1,"2427":1,"2428":1,"2626":1,"2677":1,"2683":1,"2707":1,"2709":2,"2746":1,"2747":1,"2764":1}}],["energy",{"2":{"610":1,"2374":1}}],["enough",{"2":{"396":1,"545":1,"597":1,"615":1,"644":1,"647":2,"681":1,"1194":1,"1197":1,"1200":1,"1367":1,"1499":1,"1609":1,"1782":1,"1837":1,"1936":1,"1954":1,"2290":1,"2309":1,"2429":2,"2431":1,"2434":1,"2567":1,"2589":1,"2619":1,"2683":1,"2744":1,"2889":1}}],["encryption",{"2":{"2212":1}}],["encompasses",{"2":{"2477":1}}],["encompass",{"2":{"661":1,"665":1,"1368":1}}],["encountering",{"2":{"1777":1}}],["encountered",{"2":{"1318":1,"2221":1}}],["encounter",{"2":{"600":1,"2040":1,"2294":1,"2405":1}}],["encouraging",{"2":{"541":1}}],["encourages",{"2":{"1343":1}}],["encouraged",{"2":{"533":1,"555":1,"1628":1,"1629":1,"1630":1,"2715":1,"2744":1,"2749":1,"2901":1}}],["encourage",{"2":{"512":1,"514":1,"530":1,"596":1,"1623":1,"2746":1,"2836":1}}],["encodes",{"2":{"2296":1}}],["encode",{"2":{"1538":3}}],["encoded",{"2":{"1538":5}}],["encoder2b",{"2":{"1665":1,"1666":1,"2278":1}}],["encoder2a",{"2":{"1665":1,"1666":1,"2278":1}}],["encoder1b",{"2":{"1665":1,"1666":1,"2278":1}}],["encoder1a",{"2":{"1665":1,"1666":1,"2278":1}}],["encodermap",{"2":{"199":2}}],["encoder+encoder",{"2":{"176":1}}],["encoders",{"0":{"1665":1,"1670":1},"1":{"1666":1,"1667":1,"1668":1,"1669":1,"1670":1},"2":{"13":1,"114":3,"154":1,"160":1,"198":1,"201":3,"236":1,"277":1,"307":3,"1665":3,"1666":1,"1667":3,"1668":1,"1669":1,"1670":6,"1986":1,"2305":3,"2746":1}}],["encoder",{"0":{"13":1,"90":1,"154":1,"209":1,"218":1,"307":1,"1667":1,"2305":1,"2865":1},"1":{"2306":1},"2":{"13":2,"63":2,"74":1,"90":11,"93":1,"105":1,"110":1,"114":1,"134":1,"154":2,"160":3,"176":5,"191":5,"199":2,"201":3,"209":5,"211":8,"218":2,"222":3,"226":4,"247":1,"249":3,"255":1,"266":3,"277":2,"307":19,"317":2,"328":2,"333":1,"647":2,"685":1,"1311":2,"1665":13,"1666":13,"1667":16,"1668":9,"1670":9,"2181":1,"2278":3,"2305":5,"2746":4,"2759":1,"2865":5,"2869":2,"2880":2}}],["encoding",{"0":{"1538":1},"2":{"73":1,"211":1,"1286":1,"2762":2,"2777":1,"2785":1,"2846":1}}],["enclosing",{"2":{"356":1}}],["enforce",{"2":{"333":1,"1633":1}}],["enhance",{"2":{"277":1,"288":1,"308":1,"382":1,"627":1,"1626":1}}],["enhancement",{"2":{"93":1,"160":1,"222":2,"236":2,"249":1,"312":1}}],["enhancements",{"0":{"49":1,"63":1,"74":1,"93":1},"2":{"211":1}}],["en",{"2":{"249":1,"726":1,"749":3,"1382":2}}],["engagement",{"2":{"312":1}}],["english",{"2":{"211":1,"1442":1,"1528":4,"2070":1,"2079":1,"2296":1,"2547":1,"2837":1,"2887":5}}],["engineering",{"2":{"2569":1}}],["engineered",{"2":{"2567":1}}],["engine",{"2":{"160":1,"366":1,"1532":1}}],["env",{"2":{"93":1,"455":3,"469":4,"2678":1}}],["environments",{"2":{"132":1}}],["environment",{"0":{"364":1,"2583":1,"2592":1,"2618":1,"2620":1,"2629":1,"2655":1},"1":{"2593":1,"2594":1,"2595":1,"2619":1,"2620":1,"2621":2,"2622":2,"2623":2,"2624":2,"2625":2,"2626":2,"2627":2,"2628":1,"2629":1},"2":{"23":1,"302":1,"383":1,"426":1,"435":4,"456":1,"470":1,"487":1,"496":1,"617":1,"684":2,"709":1,"1314":1,"2405":1,"2407":1,"2432":1,"2496":1,"2501":1,"2573":1,"2582":1,"2583":1,"2584":2,"2587":1,"2590":2,"2616":1,"2618":1,"2620":2,"2626":1,"2629":1,"2632":1,"2653":1}}],["enumerating",{"2":{"629":2,"2059":1,"2410":1}}],["enumeration",{"2":{"308":1,"574":1,"2882":2}}],["enumerated",{"2":{"1446":1}}],["enumerate",{"2":{"629":1,"2059":1,"2498":1}}],["enums",{"2":{"199":1,"512":1,"616":1,"2313":2,"2317":1,"2585":1,"2745":2}}],["enum",{"2":{"50":1,"512":1,"591":1,"593":2,"616":1,"712":2,"1431":1,"1446":1,"1462":1,"1466":1,"1472":1,"1605":1,"1612":1,"1924":1,"1953":2,"1954":2,"2013":1,"2290":2,"2312":1,"2313":1,"2317":3,"2318":2,"2319":3,"2329":2,"2561":1,"2868":1}}],["ent",{"2":{"375":1,"589":2,"1472":1,"1510":1,"1612":1,"2006":1,"2260":1,"2309":2,"2510":1,"2544":1,"2563":1}}],["entities",{"0":{"348":1}}],["entirety",{"2":{"2570":1}}],["entirely",{"2":{"50":1,"222":1,"273":1,"307":1,"308":1,"414":1,"512":1,"1534":1,"2086":1,"2453":1,"2561":1,"2586":1,"2763":1}}],["entire",{"0":{"478":1},"2":{"50":1,"152":1,"199":1,"231":1,"249":1,"465":1,"469":1,"477":2,"1413":1,"1802":1,"1803":1,"1954":3,"2269":1,"2510":1,"2549":1,"2568":1,"2763":3,"2779":2,"2787":2,"2903":1}}],["entered",{"2":{"2634":2}}],["enters",{"2":{"2386":1,"2388":1}}],["entering",{"2":{"386":1,"651":1,"710":1,"2384":1,"2391":1,"2475":1,"2640":1,"2667":1,"2671":1,"2700":1}}],["enter80",{"2":{"241":2}}],["enter67",{"2":{"241":2}}],["enter",{"0":{"1509":1,"2475":1},"2":{"176":1,"211":1,"387":1,"397":2,"631":4,"684":1,"710":1,"1417":3,"1425":1,"1486":1,"1509":1,"1510":1,"1612":1,"1692":1,"2006":1,"2222":1,"2225":1,"2256":1,"2257":2,"2298":1,"2309":2,"2330":1,"2344":1,"2345":2,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2410":1,"2418":1,"2503":1,"2510":4,"2538":2,"2544":2,"2550":2,"2612":1,"2639":2,"2641":1,"2685":2,"2691":1,"2700":1,"2702":1,"2714":2,"2795":2,"2796":1,"2797":1,"2799":1,"2869":1}}],["entry",{"0":{"2700":1},"2":{"149":1,"176":1,"222":1,"236":1,"599":1,"711":2,"1528":1,"1628":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2302":1,"2310":3,"2330":2,"2663":1,"2700":1,"2745":1,"2780":1,"2782":3,"2885":1,"2926":1,"2934":1}}],["entrypoint",{"2":{"94":1,"369":1,"487":2}}],["entries",{"0":{"3":1,"7":1,"15":1},"2":{"712":1,"1492":1,"1528":1,"1589":1,"1590":1,"1620":1,"2329":1,"2782":2}}],["ended",{"2":{"2317":1}}],["endianness",{"2":{"1252":1,"1265":1}}],["endian",{"2":{"784":1,"790":1,"1538":1,"2777":1,"2785":1}}],["ending",{"2":{"265":1,"307":1,"458":1,"1949":1,"2288":1}}],["endings",{"2":{"249":1,"277":1,"458":2,"2676":1}}],["endif",{"2":{"31":2,"34":2,"134":1,"247":1,"307":1,"354":1,"512":1,"647":3,"1329":1,"1406":1,"1438":2,"1464":2,"1471":2,"1472":2,"1485":2,"1510":6,"1533":3,"1535":4,"1612":4,"1640":1,"1641":2,"1667":1,"1804":3,"1839":2,"1850":1,"1945":1,"1948":1,"1954":1,"1983":1,"2040":1,"2041":1,"2043":1,"2088":1,"2284":1,"2287":1,"2305":1,"2316":1,"2454":5,"2455":3}}],["endpoints",{"0":{"263":1},"2":{"176":1,"266":1,"379":2,"575":4,"1920":1,"2298":1}}],["endpoint",{"0":{"575":1},"2":{"49":1,"50":4,"112":2,"160":1,"191":1,"236":1,"249":1,"370":1,"376":1,"379":4,"573":1,"575":4,"2292":1,"2298":1,"2391":1,"2882":3}}],["ends",{"2":{"28":1,"124":1,"1525":2,"1798":1,"1804":1,"1808":1,"2300":1,"2310":1,"2629":1}}],["end",{"0":{"1808":1,"1813":1},"2":{"3":1,"15":1,"149":1,"152":1,"196":2,"199":1,"211":1,"255":2,"265":2,"307":1,"412":5,"414":1,"494":1,"509":1,"512":2,"589":2,"593":1,"609":1,"633":1,"646":1,"647":1,"665":1,"668":1,"754":2,"1265":1,"1333":1,"1376":1,"1410":2,"1431":3,"1450":1,"1593":1,"1602":3,"1603":2,"1604":2,"1605":7,"1612":1,"1617":1,"1618":1,"1648":1,"1664":1,"1694":1,"1798":1,"1804":1,"1813":1,"1945":1,"1949":1,"1954":2,"1986":1,"2068":3,"2198":2,"2284":1,"2288":1,"2300":1,"2309":1,"2310":1,"2317":1,"2417":1,"2427":3,"2428":3,"2434":1,"2456":1,"2504":2,"2507":1,"2510":3,"2548":2,"2550":1,"2564":1,"2587":1,"2599":1,"2627":1,"2634":2,"2673":1,"2686":1,"2744":1,"2746":1,"2763":1,"2764":1,"2918":1,"2935":1,"2949":2}}],["l75",{"2":{"2567":1}}],["lr",{"2":{"1952":2,"2301":3}}],["lra",{"0":{"1685":1},"2":{"1679":1,"1684":1,"1685":5}}],["lpt",{"2":{"2502":1}}],["lp",{"2":{"2318":3}}],["lprn",{"2":{"1765":1,"2318":5,"2534":1,"2555":1}}],["lpad",{"2":{"241":2,"2510":1,"2549":1}}],["lgpl",{"2":{"2740":1}}],["lgr",{"2":{"2301":1}}],["lg",{"2":{"1686":10}}],["lgui",{"2":{"196":1,"375":1,"589":2,"1363":1,"1364":1,"1448":1,"1453":1,"1490":1,"1798":1,"1804":1,"2510":1,"2526":4,"2529":1,"2530":1,"2535":1,"2546":1,"2552":4,"2561":1,"2563":1,"2575":2,"2651":1}}],["l65",{"2":{"1679":1}}],["lyr",{"2":{"1417":2}}],["lyso1",{"2":{"143":2,"149":2}}],["lbrc",{"2":{"375":1,"589":2,"2068":1,"2510":1,"2544":1,"2563":1}}],["l17",{"2":{"1590":2}}],["l16",{"2":{"1590":2}}],["l15",{"2":{"1590":2}}],["l14",{"2":{"1590":2}}],["l13",{"2":{"1590":2}}],["l12",{"2":{"1590":2}}],["l11",{"2":{"1590":2}}],["l10",{"2":{"1590":2}}],["l1",{"0":{"748":1},"2":{"277":1,"748":1}}],["l09",{"2":{"1590":2}}],["l082",{"2":{"2711":1}}],["l08",{"2":{"1590":2}}],["l073rz",{"2":{"2746":1}}],["l072",{"2":{"2711":1}}],["l07",{"2":{"1590":2}}],["l06",{"2":{"1590":2}}],["l05",{"2":{"1590":2}}],["l04",{"2":{"1590":2}}],["l03",{"2":{"1590":2}}],["l02",{"2":{"1590":2}}],["l01",{"2":{"1590":2}}],["l0xx",{"2":{"723":1}}],["l0",{"0":{"748":1},"2":{"277":1}}],["lfs",{"2":{"2676":1}}],["lfuse",{"2":{"2503":2}}],["lf",{"2":{"249":1,"458":1,"2222":1}}],["lfk87",{"2":{"211":1}}],["lfkeyboards",{"2":{"149":1,"211":1}}],["lwin",{"2":{"1363":1,"1448":1,"2510":1,"2529":1,"2530":1,"2546":1,"2575":1}}],["lw75",{"2":{"241":2}}],["lw67",{"2":{"241":2}}],["lv061228b",{"2":{"1679":1}}],["lvgl",{"0":{"2753":1,"2754":1,"2755":1,"2756":1,"2757":1,"2758":1,"2759":1},"1":{"2754":1,"2755":1,"2756":2,"2757":2,"2758":1,"2759":1},"2":{"199":2,"236":1,"308":1,"2753":5,"2754":2,"2756":9,"2757":3,"2758":1,"2759":6,"2761":1}}],["lv",{"2":{"176":2,"2758":1}}],["lsb",{"2":{"2781":8}}],["lsbfirst",{"0":{"1251":1},"1":{"1252":1,"1253":1},"2":{"1252":1,"1967":1,"1974":1}}],["lswp",{"2":{"2526":2,"2552":2}}],["lspo",{"2":{"2256":1,"2257":1,"2259":6,"2260":5,"2538":1}}],["lsusb",{"2":{"2057":1,"2612":1,"2717":2}}],["lshift+rshift+key",{"2":{"2418":1}}],["lshift+rshift+n",{"2":{"1377":1}}],["lshift+ralt",{"2":{"1364":1}}],["lshift",{"2":{"1364":1}}],["lsg",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["lsag",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["lsa",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["lscr",{"2":{"561":1,"1354":1,"2510":1,"2545":1}}],["ls",{"2":{"143":4}}],["lsft",{"2":{"120":2,"375":1,"589":2,"1363":1,"1364":2,"1423":4,"1441":2,"1444":4,"1448":1,"1453":1,"1517":1,"1533":6,"1594":3,"1597":1,"1600":2,"1603":1,"1604":2,"1605":5,"1617":1,"1622":1,"1765":1,"1788":1,"1795":1,"1804":1,"2259":6,"2260":2,"2327":1,"2381":1,"2510":1,"2529":1,"2530":1,"2535":1,"2546":1,"2553":1,"2561":1,"2563":1,"2575":3,"2578":1,"2650":1,"2651":2,"2911":1,"2914":1,"2915":5,"2916":8,"2917":5,"2928":1,"2930":1}}],["ld7032",{"2":{"285":1,"2760":4,"2763":11}}],["lds",{"2":{"236":3}}],["ldscript",{"2":{"114":1}}],["ld",{"2":{"131":1,"134":1,"277":1,"285":1,"1420":1,"2417":2}}],["llck",{"2":{"1790":1,"1795":1,"2522":1}}],["llvm",{"2":{"513":2}}],["ll3ma",{"2":{"311":1,"317":1}}],["ll3macorn",{"2":{"311":1}}],["lld",{"2":{"191":1,"696":1,"764":1}}],["ll",{"2":{"124":1,"158":2,"188":1,"232":1,"254":1,"272":1,"307":1,"378":1,"596":1,"611":1,"616":1,"673":2,"717":1,"718":1,"754":1,"764":2,"1248":2,"1269":2,"1316":1,"1337":1,"1341":1,"1376":1,"1472":2,"1523":1,"1602":1,"1627":1,"1768":1,"1923":1,"1944":1,"2210":1,"2273":1,"2280":2,"2284":1,"2309":2,"2317":2,"2410":4,"2414":1,"2429":3,"2431":2,"2432":1,"2466":2,"2467":1,"2483":2,"2560":2,"2561":1,"2562":3,"2584":1,"2585":3,"2591":2,"2607":1,"2611":1,"2612":1,"2614":1,"2616":1,"2619":3,"2632":1,"2634":1,"2637":1,"2678":1,"2683":2,"2715":1,"2717":1,"2737":1,"2744":1,"2795":1,"2934":1,"2935":1,"2937":1,"2939":1}}],["luminkey",{"2":{"2567":1}}],["lumissil",{"2":{"800":1,"826":1,"855":1,"887":1,"919":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1124":1,"1158":1}}],["lump",{"2":{"618":1,"619":1}}],["lune",{"2":{"211":1}}],["luna",{"2":{"191":1}}],["lucid",{"2":{"211":2}}],["lucky",{"2":{"2890":1}}],["luckily",{"2":{"2382":1,"2628":1}}],["luck",{"2":{"124":1,"173":1,"2617":1}}],["lulu",{"2":{"176":1}}],["lut",{"2":{"149":1,"462":2,"2885":1,"2886":1,"2887":2}}],["lufa",{"0":{"2":1,"6":1,"12":1,"2876":1},"2":{"6":4,"12":2,"49":1,"50":2,"93":1,"111":1,"114":2,"176":2,"191":1,"199":1,"277":1,"546":1,"573":1,"611":1,"1956":1,"2383":2,"2384":1,"2391":1,"2410":1,"2499":1,"2744":1,"2876":1,"2934":3}}],["l400",{"2":{"1417":1}}],["l4",{"2":{"191":1}}],["l422",{"2":{"114":1}}],["l443",{"2":{"93":1}}],["lcb",{"2":{"2868":1}}],["lcbon",{"2":{"2868":1}}],["lcbr",{"2":{"2068":1,"2534":1,"2555":1}}],["lcpo",{"2":{"2256":1,"2257":1,"2259":1,"2538":1}}],["lctrl",{"2":{"1364":1,"2557":1}}],["lctl",{"2":{"38":2,"120":1,"194":5,"196":2,"375":1,"589":2,"1343":1,"1363":2,"1364":2,"1422":1,"1423":1,"1441":1,"1446":1,"1448":2,"1490":1,"1532":1,"1602":1,"1617":1,"1690":1,"1798":2,"1804":2,"2226":1,"2259":2,"2317":2,"2327":1,"2381":1,"2510":1,"2526":2,"2529":1,"2530":1,"2535":1,"2546":1,"2552":2,"2563":1,"2575":3,"2576":1,"2578":1,"2651":2,"2751":1,"2924":1,"2927":1,"2930":1}}],["lcg",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["lcag",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["lca",{"2":{"1363":2,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["lcap",{"2":{"561":1,"1354":1,"2510":1,"2545":1}}],["lcsg",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["lcs",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["lcmd",{"2":{"1363":1,"1448":1,"2510":1,"2529":1,"2530":1,"2546":1,"2575":1}}],["lc",{"2":{"551":1}}],["lck75",{"2":{"143":2}}],["lcds",{"2":{"153":1}}],["lcd",{"0":{"1696":1,"2282":1},"1":{"1697":1,"1698":1,"1699":1,"1700":1,"1701":1,"1702":1,"1703":1,"1704":1,"1705":1,"1706":1,"1707":1,"1708":1,"1709":1,"1710":1,"1711":1,"1712":1,"1713":1,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1719":1,"1720":1,"1721":1,"1722":1,"1723":1,"1724":1,"1725":1,"1726":1,"1727":1,"1728":1,"1729":1,"1730":1,"1731":1,"1732":1,"1733":1,"1734":1,"1735":1,"1736":1,"1737":1,"2283":1,"2284":1,"2285":1,"2286":1,"2287":1,"2288":1,"2289":1,"2290":1},"2":{"114":1,"133":1,"134":1,"277":1,"1697":1,"2283":1,"2439":1,"2760":7}}],["lmn",{"2":{"266":1}}],["lm",{"2":{"38":1,"134":1,"317":1,"1422":3,"1423":6,"1690":1,"1789":1,"1848":11,"2000":1,"2523":2,"2525":11}}],["l",{"2":{"32":1,"116":1,"191":1,"249":1,"266":3,"328":1,"375":1,"434":2,"437":1,"444":1,"447":1,"469":2,"589":2,"632":1,"1364":27,"1538":5,"1622":1,"2068":1,"2070":1,"2296":1,"2301":1,"2502":1,"2510":3,"2542":3,"2563":1,"2869":2,"2918":5,"2919":9,"2920":5,"2926":25}}],["lnrm",{"2":{"2526":2,"2552":2}}],["lng9",{"2":{"2510":1,"2547":1}}],["lng8",{"2":{"2510":1,"2547":1}}],["lng7",{"2":{"2510":1,"2547":1}}],["lng6",{"2":{"2510":1,"2547":1}}],["lng5",{"2":{"2510":1,"2547":1}}],["lng4",{"2":{"2510":1,"2547":1}}],["lng3",{"2":{"2510":1,"2547":1}}],["lng2",{"2":{"2510":1,"2547":1}}],["lng1",{"2":{"2510":1,"2547":1}}],["lnx",{"2":{"2327":1,"2328":1,"2344":1}}],["lnum",{"2":{"561":1,"1354":1,"2510":1,"2545":1}}],["ln",{"2":{"31":2,"510":1,"1851":1,"1945":2,"1954":5,"1955":4,"2090":1,"2284":2,"2290":3}}],["legs",{"2":{"2423":1,"2425":1}}],["leg",{"2":{"1925":1,"2423":3,"2527":1}}],["legato",{"2":{"1925":2,"2527":2}}],["legally",{"2":{"2739":2,"2742":1}}],["legal",{"0":{"2739":1},"2":{"1356":1,"2727":1,"2739":1,"2740":1}}],["legacy",{"0":{"140":1,"757":1,"2437":1},"1":{"2438":1},"2":{"75":1,"86":2,"94":1,"114":2,"133":1,"134":2,"160":2,"176":3,"188":12,"191":18,"211":1,"222":1,"236":1,"254":1,"277":1,"443":1,"564":1,"753":2,"2864":2,"2888":1}}],["leonardo",{"2":{"713":2,"1382":2,"2499":1}}],["len",{"2":{"2059":2}}],["lenght",{"2":{"1527":2}}],["lengths",{"2":{"1487":1,"2425":3}}],["lengthy",{"2":{"720":1}}],["length",{"0":{"540":1,"769":1,"772":1,"775":1,"778":2,"781":1,"784":1,"787":1,"790":1,"1259":1,"1262":1,"1277":1,"1279":1,"2061":1,"2063":1},"1":{"770":1,"771":1,"773":1,"774":1,"776":1,"777":1,"779":2,"780":2,"782":1,"783":1,"785":1,"786":1,"788":1,"789":1,"791":1,"792":1,"1260":1,"1261":1,"1263":1,"1264":1,"1278":1,"1280":1,"2062":1,"2064":1},"2":{"249":2,"375":1,"433":3,"540":1,"561":1,"770":2,"772":1,"773":2,"776":2,"779":4,"782":2,"785":2,"788":2,"791":2,"1260":2,"1263":2,"1278":2,"1280":2,"1285":4,"1286":1,"1295":2,"1419":4,"1498":1,"1518":1,"1527":4,"1544":1,"1609":2,"1618":1,"1681":1,"1934":1,"1954":2,"1976":2,"2057":5,"2058":1,"2059":7,"2062":3,"2064":3,"2185":2,"2290":2,"2363":1,"2431":1,"2561":1,"2719":1,"2777":1,"2778":4,"2779":2,"2780":2,"2781":2,"2782":2,"2783":2,"2784":2,"2785":1,"2787":2,"2788":2,"2789":2,"2790":1,"2791":1,"2792":11,"2857":1}}],["lenient",{"2":{"114":1,"2568":1}}],["leeloo",{"2":{"236":2}}],["lefishe",{"2":{"143":2}}],["left=4",{"2":{"2764":1}}],["leftuf2",{"2":{"2273":1}}],["leftdfu",{"2":{"2273":2}}],["leftavrdude",{"2":{"2273":1}}],["leftmost",{"2":{"1647":1}}],["lefthand",{"2":{"568":1,"569":1}}],["leftover30",{"2":{"211":1}}],["leftover",{"2":{"77":1}}],["lefty",{"2":{"43":2,"134":3,"211":1,"241":6}}],["left",{"2":{"31":1,"34":1,"45":1,"100":1,"114":3,"152":1,"176":1,"202":2,"231":2,"236":2,"249":2,"257":1,"258":1,"259":2,"277":1,"307":4,"332":2,"337":2,"351":1,"375":2,"393":3,"561":2,"565":2,"568":5,"569":4,"570":2,"589":2,"683":1,"684":1,"710":5,"749":1,"762":1,"1194":1,"1197":1,"1200":1,"1294":1,"1348":1,"1362":9,"1363":32,"1364":4,"1366":3,"1379":1,"1423":2,"1448":3,"1492":1,"1594":5,"1595":4,"1605":1,"1612":1,"1624":2,"1667":1,"1672":1,"1692":1,"1694":1,"1781":2,"1788":15,"1846":1,"1849":9,"1852":1,"1933":5,"1948":2,"1949":1,"1951":1,"1954":5,"1971":2,"1977":1,"1983":1,"1987":5,"1989":5,"1990":2,"1996":1,"1997":10,"2048":1,"2049":1,"2068":8,"2073":2,"2082":1,"2085":14,"2091":2,"2207":1,"2226":2,"2255":1,"2256":6,"2257":6,"2260":2,"2269":2,"2271":2,"2272":2,"2273":3,"2274":3,"2278":2,"2287":1,"2290":3,"2301":2,"2305":1,"2315":3,"2327":1,"2344":1,"2345":1,"2346":1,"2385":1,"2387":1,"2394":1,"2399":1,"2401":1,"2403":1,"2417":2,"2428":3,"2429":1,"2456":1,"2510":12,"2526":10,"2528":5,"2529":39,"2530":32,"2534":3,"2535":32,"2538":6,"2544":1,"2546":8,"2548":2,"2550":1,"2552":10,"2553":1,"2555":3,"2563":2,"2575":40,"2576":2,"2586":1,"2612":2,"2634":2,"2651":32,"2662":1,"2691":3,"2746":1,"2762":1,"2764":11,"2783":3,"2795":2,"2796":1,"2841":1,"2860":1,"2861":1,"2869":3,"2871":1,"2878":1,"2894":2,"2925":1,"2926":2,"2928":15}}],["le",{"2":{"143":2,"221":1,"222":1,"236":1,"308":1,"574":1,"2374":3,"2375":4,"2376":1,"2859":1}}],["lean",{"2":{"2590":1}}],["leaps",{"2":{"2447":1}}],["learned",{"0":{"2632":1}}],["learn",{"2":{"2299":1,"2300":1,"2467":1,"2574":1,"2588":1,"2602":1,"2619":1,"2646":1,"2683":1,"2753":1,"2851":1,"2906":2,"2907":2}}],["learning",{"0":{"2299":1,"2642":1},"1":{"2643":1,"2644":1,"2645":1,"2646":1},"2":{"2299":1,"2574":1}}],["leaflabs",{"2":{"2505":1}}],["leaf",{"2":{"1525":1,"1538":7,"1539":1}}],["lease",{"2":{"411":1,"423":2,"2637":2}}],["least",{"2":{"199":1,"521":1,"541":1,"643":1,"690":1,"762":1,"1252":1,"1423":1,"1503":1,"1720":1,"1722":1,"1740":1,"1818":1,"1931":1,"1937":1,"1938":1,"1967":1,"1974":2,"2264":2,"2272":2,"2317":1,"2429":1,"2508":1,"2567":1,"2576":1,"2594":1,"2903":1,"2936":1,"2947":1}}],["leak",{"2":{"236":1}}],["leaving",{"2":{"169":1,"184":1,"541":1,"1376":1,"1423":1,"2427":1,"2576":1,"2662":1,"2911":1}}],["leaves",{"2":{"1297":1,"1428":2,"1525":1}}],["leave",{"2":{"87":1,"103":1,"126":1,"521":1,"541":1,"569":1,"599":1,"1422":1,"1505":1,"1618":1,"2393":1,"2398":1,"2407":2,"2417":1,"2429":1,"2464":1,"2676":1,"2717":1}}],["leading",{"2":{"520":1,"720":1,"1252":6,"1296":1,"2295":1}}],["leader",{"0":{"196":2,"1796":1,"1807":1,"1808":1,"1809":1,"1812":1,"1813":1,"1814":1,"1815":1,"1818":1,"1819":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"2524":1,"2825":1,"2870":1},"1":{"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":2,"1811":2,"1812":1,"1813":1,"1814":1,"1815":1,"1816":2,"1817":2,"1818":1,"1819":1,"1820":1,"1821":2,"1822":2,"1823":1,"1824":2,"1825":2,"1826":1,"1827":2,"1828":2,"1829":1,"1830":2,"1831":2,"1832":1,"1833":2,"1834":2},"2":{"93":1,"112":3,"176":1,"196":15,"199":2,"294":1,"339":1,"564":6,"574":2,"1796":2,"1798":12,"1800":2,"1801":5,"1802":9,"1803":1,"1804":15,"1805":2,"1807":1,"1808":1,"1809":1,"1810":1,"1812":1,"1813":1,"1814":1,"1815":1,"1818":2,"1819":1,"2524":2,"2825":2,"2870":3,"2940":1}}],["lead",{"2":{"73":1,"188":2,"191":2,"1475":2,"1478":1,"1482":1,"1797":1,"1804":1,"1805":1,"1936":1,"2428":1,"2524":1,"2759":1}}],["letting",{"2":{"2428":1}}],["letter",{"2":{"1525":4,"1529":1,"1532":1,"1593":1,"1600":1,"1786":4,"2074":1,"2079":1,"2317":3}}],["letters",{"0":{"2542":1},"2":{"191":1,"211":1,"354":1,"519":1,"1332":1,"1442":1,"1522":3,"1527":1,"1529":1,"1533":1,"1534":1,"1593":1,"1597":1,"2065":1,"2070":1,"2074":1,"2317":3,"2381":1,"2449":1,"2470":1,"2744":1,"2837":1,"2838":1}}],["let",{"2":{"70":1,"110":1,"194":1,"228":1,"245":1,"393":2,"397":1,"418":1,"473":2,"489":1,"507":1,"530":1,"569":1,"574":1,"631":1,"1364":1,"1366":2,"1367":1,"1417":1,"1422":2,"1431":1,"1439":1,"1470":1,"1762":1,"1786":1,"1964":1,"2261":1,"2281":1,"2310":1,"2393":1,"2395":1,"2398":1,"2418":1,"2419":1,"2448":1,"2583":1,"2616":1,"2620":1,"2650":1,"2909":1,"2914":1,"2939":1,"2941":1}}],["lets",{"2":{"70":27,"114":1,"137":1,"143":2,"270":2,"277":1,"431":1,"434":1,"489":1,"565":1,"1367":2,"1451":1,"1472":1,"1602":1,"2209":1,"2418":2,"2829":1,"2832":1,"2843":1,"2912":1}}],["leveraging",{"2":{"2079":1}}],["leveraged",{"2":{"2569":1,"2903":1}}],["leverages",{"2":{"379":1,"1292":1,"1293":1,"1294":1,"1524":1,"1548":1}}],["leverage",{"2":{"153":1,"685":1,"1629":1,"2277":1,"2568":1,"2703":1,"2747":1}}],["lever",{"2":{"1968":2}}],["leveling",{"0":{"174":1,"752":1,"753":1,"754":1,"755":1,"756":1,"757":1},"1":{"754":1,"755":1,"756":1,"757":1},"2":{"114":1,"174":1,"176":4,"191":1,"211":1,"236":5,"249":1,"277":1,"308":1,"333":1,"746":2,"752":3,"753":6,"754":8,"755":7,"756":5,"2864":3}}],["levels",{"0":{"1296":1},"1":{"1297":1,"1298":1},"2":{"112":1,"199":2,"512":1,"555":3,"561":2,"1543":1,"1544":3,"1563":1,"1567":1,"1569":1,"2277":1,"2450":1,"2515":1,"2857":2,"2940":1}}],["level",{"0":{"639":1,"1298":1,"1566":2,"1568":1,"1585":1,"1587":1,"2195":1},"1":{"1567":2,"1569":1},"2":{"4":1,"14":1,"28":1,"75":1,"90":4,"93":2,"125":3,"134":1,"160":2,"185":3,"191":2,"229":2,"243":2,"249":2,"262":1,"266":3,"277":3,"285":1,"308":1,"328":1,"341":1,"417":1,"492":4,"512":1,"521":1,"555":1,"556":1,"557":1,"559":1,"561":2,"569":2,"570":1,"571":1,"576":1,"592":1,"593":2,"615":1,"626":1,"627":5,"635":1,"639":2,"651":2,"653":1,"668":1,"673":1,"685":1,"699":1,"708":1,"728":1,"741":1,"797":6,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1218":1,"1296":1,"1297":1,"1298":1,"1299":1,"1303":1,"1405":1,"1417":1,"1434":1,"1543":2,"1544":2,"1546":1,"1551":2,"1556":1,"1557":1,"1564":1,"1565":1,"1566":1,"1567":2,"1568":1,"1569":1,"1577":2,"1582":1,"1585":1,"1586":1,"1587":1,"1588":1,"1593":1,"1625":1,"1640":1,"1665":1,"1667":1,"1668":3,"1689":1,"1837":3,"1838":1,"1843":1,"1848":2,"1850":1,"1855":1,"1908":1,"1910":1,"1911":1,"1912":1,"1915":1,"1917":1,"1949":1,"1954":3,"1958":1,"1988":2,"2005":2,"2014":1,"2084":2,"2088":1,"2094":1,"2168":1,"2170":1,"2171":1,"2172":1,"2175":1,"2177":1,"2182":1,"2277":2,"2288":1,"2340":1,"2342":1,"2396":1,"2400":1,"2402":1,"2404":1,"2450":1,"2454":2,"2455":1,"2503":1,"2510":1,"2515":2,"2525":2,"2533":2,"2559":1,"2684":2,"2685":1,"2687":1,"2707":1,"2731":1,"2744":1,"2746":2,"2747":2,"2760":1,"2764":1,"2809":1,"2851":1,"2855":1,"2857":1,"2871":1,"2877":1,"2878":1,"2902":1,"2903":1,"2932":2,"2933":1,"2937":1,"2938":1,"2940":1,"2948":1}}],["levinson",{"2":{"45":1}}],["ledmatrix",{"2":{"65":1}}],["led",{"0":{"84":1,"147":1,"185":1,"233":1,"327":1,"729":1,"731":1,"805":1,"807":1,"820":1,"822":1,"825":1,"831":1,"833":1,"847":1,"849":1,"853":1,"863":1,"865":1,"893":1,"895":1,"911":1,"913":1,"917":1,"928":1,"930":1,"946":1,"948":1,"952":1,"962":1,"964":1,"980":1,"982":1,"986":1,"996":1,"998":1,"1014":1,"1016":1,"1020":1,"1030":1,"1032":1,"1048":1,"1050":1,"1054":1,"1064":1,"1066":1,"1098":1,"1100":1,"1132":1,"1134":1,"1166":1,"1168":1,"1219":1,"1221":1,"1237":1,"1239":1,"1243":1,"1635":1,"1835":1,"1837":1,"1838":1,"1839":1,"1840":1,"1841":1,"1842":1,"1844":1,"1849":1,"1850":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1865":1,"1867":1,"1869":1,"1871":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1880":1,"1881":1,"1882":1,"1883":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1891":1,"1893":1,"1895":2,"1897":2,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1905":1,"1906":1,"1908":1,"1910":1,"1912":3,"1915":3,"2149":1,"2151":1,"2172":2,"2175":2,"2315":1,"2525":1,"2826":1,"2871":1},"1":{"732":1,"808":1,"821":1,"823":1,"834":1,"848":1,"850":1,"854":1,"866":1,"896":1,"912":1,"914":1,"918":1,"931":1,"947":1,"949":1,"953":1,"965":1,"981":1,"983":1,"987":1,"999":1,"1015":1,"1017":1,"1021":1,"1033":1,"1049":1,"1051":1,"1055":1,"1067":1,"1101":1,"1135":1,"1169":1,"1222":1,"1238":1,"1240":1,"1244":1,"1836":1,"1837":1,"1838":2,"1839":2,"1840":1,"1841":1,"1842":1,"1843":2,"1845":1,"1846":1,"1847":1,"1848":1,"1849":1,"1850":1,"1851":1,"1852":1,"1853":1,"1854":1,"1855":1,"1856":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":2,"1865":1,"1866":2,"1867":1,"1868":2,"1869":1,"1870":2,"1871":1,"1872":2,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":2,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":2,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":2,"1891":1,"1892":2,"1893":1,"1894":2,"1895":1,"1896":3,"1897":1,"1898":3,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":2,"1905":1,"1906":1,"1907":2,"1908":1,"1909":2,"1910":1,"1911":2,"1912":1,"1913":1,"1914":1,"1915":1,"1916":1,"1917":1,"2150":1,"2152":1},"2":{"32":2,"50":2,"65":1,"70":2,"84":1,"92":3,"93":10,"94":6,"111":1,"113":1,"114":13,"133":1,"134":9,"149":5,"160":2,"176":8,"183":14,"185":5,"191":27,"199":5,"211":3,"214":1,"221":3,"222":16,"233":1,"236":27,"249":33,"266":10,"277":11,"285":4,"294":2,"308":2,"317":1,"328":29,"333":1,"339":1,"354":2,"561":1,"565":2,"570":1,"634":1,"635":2,"699":2,"701":1,"702":1,"703":1,"706":1,"724":1,"725":1,"729":4,"731":1,"732":4,"733":1,"734":1,"735":1,"736":1,"739":1,"800":1,"801":2,"805":6,"807":1,"808":4,"809":1,"812":1,"813":1,"816":1,"817":1,"820":3,"821":1,"822":3,"823":2,"824":1,"825":2,"826":1,"827":2,"831":6,"833":1,"834":5,"835":1,"839":1,"840":1,"843":1,"844":1,"847":3,"848":1,"849":3,"850":2,"851":1,"853":2,"855":1,"856":2,"863":6,"865":1,"866":5,"867":1,"871":1,"872":1,"875":1,"876":1,"879":1,"880":1,"881":1,"882":2,"883":1,"885":1,"887":1,"888":2,"893":6,"895":1,"896":5,"897":1,"901":1,"903":1,"904":1,"907":1,"908":1,"911":3,"912":1,"913":3,"914":2,"915":1,"917":2,"919":1,"920":2,"928":6,"930":1,"931":5,"932":1,"936":1,"938":1,"939":1,"942":1,"943":1,"946":3,"947":1,"948":3,"949":2,"950":1,"952":2,"954":1,"955":2,"962":6,"964":1,"965":5,"966":1,"970":1,"972":1,"973":1,"976":1,"977":1,"980":3,"981":1,"982":3,"983":2,"984":1,"986":2,"988":1,"989":2,"996":6,"998":1,"999":5,"1000":1,"1004":1,"1006":1,"1007":1,"1010":1,"1011":1,"1014":3,"1015":1,"1016":3,"1017":2,"1018":1,"1020":2,"1022":1,"1023":2,"1030":6,"1032":1,"1033":5,"1034":1,"1038":1,"1040":1,"1041":1,"1044":1,"1045":1,"1048":3,"1049":1,"1050":3,"1051":2,"1052":1,"1054":2,"1056":1,"1057":2,"1064":6,"1066":1,"1067":5,"1068":1,"1072":1,"1074":1,"1075":1,"1078":1,"1079":1,"1082":1,"1083":1,"1084":1,"1085":2,"1086":1,"1088":1,"1090":1,"1091":2,"1098":6,"1100":1,"1101":5,"1102":1,"1106":1,"1108":1,"1109":1,"1112":1,"1113":1,"1116":1,"1117":1,"1118":1,"1119":2,"1120":1,"1122":1,"1124":1,"1125":2,"1132":6,"1134":1,"1135":5,"1136":1,"1140":1,"1142":1,"1143":1,"1146":1,"1147":1,"1150":1,"1151":1,"1152":1,"1153":2,"1154":1,"1156":1,"1158":1,"1159":2,"1166":6,"1168":1,"1169":5,"1170":1,"1171":1,"1174":1,"1176":1,"1177":1,"1180":1,"1181":1,"1184":1,"1185":1,"1186":1,"1187":2,"1188":1,"1190":1,"1214":1,"1215":2,"1219":6,"1221":1,"1222":5,"1223":1,"1227":1,"1229":1,"1230":1,"1233":1,"1234":1,"1237":3,"1238":1,"1239":3,"1240":2,"1241":1,"1243":2,"1283":2,"1285":2,"1286":1,"1287":1,"1288":3,"1296":1,"1298":1,"1305":1,"1306":1,"1307":1,"1310":1,"1311":2,"1387":1,"1392":1,"1396":1,"1544":1,"1546":3,"1601":1,"1625":2,"1635":5,"1638":6,"1664":1,"1678":3,"1794":2,"1835":9,"1836":12,"1837":10,"1838":12,"1839":7,"1840":6,"1841":3,"1843":9,"1844":2,"1845":4,"1846":26,"1847":10,"1848":14,"1849":64,"1850":31,"1851":5,"1852":30,"1855":12,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":1,"1865":1,"1866":3,"1896":1,"1898":1,"1906":1,"1907":1,"1913":4,"1916":4,"1945":7,"1983":1,"2080":3,"2081":2,"2082":25,"2083":12,"2085":1,"2086":1,"2088":10,"2091":10,"2092":1,"2094":4,"2095":17,"2096":11,"2107":1,"2108":2,"2150":1,"2152":1,"2173":4,"2176":4,"2178":2,"2179":2,"2185":4,"2186":2,"2189":4,"2190":4,"2195":1,"2198":9,"2206":6,"2207":3,"2208":2,"2210":1,"2276":3,"2284":7,"2315":10,"2384":2,"2391":2,"2418":3,"2431":1,"2443":1,"2455":2,"2456":3,"2525":15,"2652":1,"2668":2,"2689":1,"2691":5,"2700":2,"2746":3,"2854":1,"2855":2,"2867":6,"2871":13,"2876":3,"2877":3,"2878":10,"2883":1,"2907":1}}],["leds",{"0":{"2206":1},"2":{"25":1,"45":1,"50":1,"114":1,"149":1,"201":2,"211":1,"229":1,"249":2,"308":1,"565":4,"645":1,"646":1,"697":2,"699":1,"702":1,"704":1,"724":2,"729":1,"735":1,"736":1,"737":1,"800":2,"805":2,"812":1,"813":1,"814":1,"816":1,"817":1,"818":1,"820":1,"821":1,"822":1,"823":1,"826":2,"831":2,"839":1,"840":1,"841":1,"843":1,"844":1,"845":1,"847":1,"848":1,"849":1,"850":1,"855":2,"857":1,"863":2,"871":1,"872":1,"873":1,"875":1,"876":1,"877":1,"879":1,"880":1,"881":1,"882":1,"887":2,"893":2,"903":1,"904":1,"905":1,"907":1,"908":1,"909":1,"911":1,"912":1,"913":1,"914":1,"919":2,"921":1,"928":2,"938":1,"939":1,"940":1,"942":1,"943":1,"944":1,"946":1,"947":1,"948":1,"949":1,"954":2,"956":1,"962":2,"972":1,"973":1,"974":1,"976":1,"977":1,"978":1,"980":1,"981":1,"982":1,"983":1,"988":2,"990":1,"996":2,"1006":1,"1007":1,"1008":1,"1010":1,"1011":1,"1012":1,"1014":1,"1015":1,"1016":1,"1017":1,"1022":2,"1024":1,"1030":2,"1040":1,"1041":1,"1042":1,"1044":1,"1045":1,"1046":1,"1048":1,"1049":1,"1050":1,"1051":1,"1056":2,"1058":1,"1064":2,"1074":1,"1075":1,"1076":1,"1078":1,"1079":1,"1080":1,"1082":1,"1083":1,"1084":1,"1085":1,"1090":2,"1098":2,"1108":1,"1109":1,"1110":1,"1112":1,"1113":1,"1114":1,"1116":1,"1117":1,"1118":1,"1119":1,"1124":2,"1132":2,"1142":1,"1143":1,"1144":1,"1146":1,"1147":1,"1148":1,"1150":1,"1151":1,"1152":1,"1153":1,"1158":2,"1160":1,"1166":2,"1176":1,"1177":1,"1178":1,"1180":1,"1181":1,"1182":1,"1184":1,"1185":1,"1186":1,"1187":1,"1214":2,"1219":2,"1229":1,"1230":1,"1231":1,"1233":1,"1234":1,"1235":1,"1237":1,"1238":1,"1239":1,"1240":1,"1283":4,"1285":1,"1286":1,"1287":1,"1288":2,"1291":1,"1296":1,"1306":1,"1308":1,"1383":1,"1408":2,"1465":1,"1541":3,"1544":1,"1545":1,"1546":2,"1558":2,"1662":1,"1835":2,"1837":1,"1841":1,"1842":1,"1843":3,"1845":1,"1846":2,"1849":1,"1850":2,"1852":4,"1867":1,"1908":1,"1910":1,"1912":1,"1915":1,"2081":1,"2082":2,"2085":4,"2086":1,"2088":2,"2091":4,"2109":1,"2168":1,"2170":1,"2172":1,"2175":1,"2178":6,"2179":10,"2185":5,"2188":1,"2189":6,"2195":1,"2198":7,"2200":6,"2201":14,"2206":2,"2207":3,"2208":1,"2278":2,"2308":1,"2309":1,"2315":1,"2435":1,"2444":3,"2445":2,"2805":1,"2845":2,"2857":2,"2867":1,"2871":5,"2877":3,"2878":5,"2883":1,"2935":2}}],["less",{"2":{"24":1,"133":1,"134":1,"263":1,"433":2,"514":1,"1298":1,"1376":1,"1410":1,"1413":1,"1490":1,"1491":1,"1498":1,"1522":1,"1610":1,"1615":2,"1953":1,"1974":1,"2295":1,"2309":2,"2417":1,"2454":1,"2583":1,"2695":1,"2744":1,"2776":1,"2851":1,"2913":1}}],["lofree",{"2":{"2567":1}}],["lone",{"2":{"1788":1,"2928":1,"2930":1}}],["longan",{"2":{"554":1}}],["long",{"0":{"1331":1},"2":{"131":1,"140":1,"154":1,"164":1,"243":1,"331":1,"393":1,"495":1,"512":1,"514":1,"540":3,"564":4,"675":1,"676":1,"681":1,"716":1,"720":1,"1286":1,"1376":1,"1379":1,"1493":1,"1497":1,"1499":1,"1501":1,"1503":1,"1527":1,"1538":1,"1551":1,"1605":1,"1609":4,"1628":1,"1670":1,"1681":1,"1686":17,"1762":1,"1789":1,"1801":1,"1999":1,"2057":1,"2185":1,"2187":6,"2210":1,"2275":1,"2281":1,"2317":1,"2319":1,"2330":1,"2431":1,"2460":1,"2633":1,"2663":1,"2707":1,"2764":1,"2794":1,"2899":1}}],["longer",{"2":{"48":1,"50":1,"98":1,"124":1,"130":1,"141":1,"194":1,"196":1,"201":1,"213":1,"218":1,"224":1,"233":1,"240":1,"262":2,"265":1,"268":1,"273":2,"276":1,"283":1,"284":1,"572":1,"581":1,"615":1,"618":1,"647":1,"711":1,"1290":1,"1320":1,"1463":1,"1496":1,"1499":1,"1503":1,"1519":1,"1528":1,"1781":1,"1788":1,"1939":1,"1971":1,"2309":1,"2310":1,"2317":1,"2319":1,"2427":2,"2571":1,"2745":1,"2746":1,"2764":2,"2889":1,"2912":1,"2913":1,"2918":2,"2924":1,"2928":1}}],["loud",{"2":{"1488":1,"1493":1}}],["louder",{"2":{"277":1}}],["lo",{"2":{"1448":4,"1843":1,"2070":1}}],["losh",{"2":{"2255":1}}],["loss",{"2":{"1415":1,"1422":1,"2323":1,"2418":1}}],["loses",{"2":{"1422":1,"2523":1,"2880":1}}],["lose",{"2":{"720":1,"1589":1,"2636":1}}],["lost",{"2":{"176":1,"746":1,"1661":1,"2813":1}}],["love",{"0":{"2632":1},"2":{"620":1,"1342":1,"1448":2,"2749":1}}],["lorem",{"2":{"363":1}}],["loki65",{"2":{"211":1}}],["lopt",{"2":{"176":1,"1363":1,"1448":1,"2510":1,"2529":1,"2530":1,"2546":1,"2575":1}}],["loadable",{"2":{"2762":1}}],["loads",{"2":{"1290":1,"2764":2}}],["loaded",{"2":{"710":1,"2508":1,"2662":1,"2761":3,"2764":2}}],["loader",{"0":{"2700":1,"2734":1},"2":{"354":3,"2388":3,"2391":1,"2508":3,"2700":1,"2702":1,"2734":1}}],["loading",{"2":{"160":1,"1376":1,"2640":1,"2764":2}}],["load",{"0":{"2614":1},"2":{"149":1,"509":1,"600":1,"651":1,"719":1,"1376":1,"2482":1,"2484":1,"2488":1,"2502":1,"2511":1,"2587":1,"2589":1,"2629":1,"2734":1,"2752":1,"2761":1,"2764":11}}],["loose",{"2":{"2434":2,"2608":1}}],["looking",{"0":{"2850":1},"2":{"228":1,"489":2,"542":1,"661":1,"721":2,"1368":1,"2057":1,"2418":1,"2427":1,"2437":1,"2466":1,"2652":1,"2745":1}}],["look",{"2":{"194":1,"403":1,"473":1,"529":1,"618":1,"656":1,"711":1,"712":1,"1299":1,"1303":1,"1319":1,"1349":1,"1409":1,"1417":2,"1470":1,"1492":1,"1527":1,"1556":1,"1557":1,"1786":1,"2298":1,"2330":1,"2416":1,"2428":1,"2497":1,"2559":1,"2560":1,"2567":1,"2572":1,"2584":1,"2669":1,"2751":1,"2753":1,"2912":1,"2934":1,"2937":1,"2939":2,"2940":1,"2943":1,"2944":1}}],["lookup",{"2":{"191":1,"462":1,"1846":1,"2082":1,"2223":1,"2702":1,"2886":1}}],["looks",{"2":{"125":1,"185":1,"1497":1,"1510":1,"2410":1,"2567":1,"2585":1,"2587":1,"2936":1,"2938":1,"2939":1}}],["looping",{"2":{"2427":1,"2935":1}}],["loopgain",{"2":{"1684":1,"1685":1}}],["loops",{"2":{"160":1,"2008":1}}],["loop",{"0":{"2935":1},"1":{"2936":1,"2937":1,"2938":1,"2939":1,"2940":1},"2":{"65":1,"92":1,"113":1,"114":1,"149":1,"176":2,"277":1,"530":1,"647":1,"1485":2,"1551":1,"1947":2,"1949":1,"2087":1,"2286":2,"2384":1,"2387":2,"2391":1,"2427":1,"2764":1,"2934":1,"2935":2,"2939":1}}],["locate",{"2":{"2598":1,"2612":1,"2614":1}}],["locates",{"2":{"2559":1}}],["located",{"2":{"574":1,"710":1,"756":1,"1350":1,"1502":1,"1527":1,"1590":1,"1946":1,"2418":1,"2430":1,"2451":1,"2549":1,"2612":1,"2614":1,"2626":1,"2779":1,"2787":1,"2788":1,"2789":1,"2887":1}}],["locating",{"2":{"317":1,"333":1}}],["locations",{"2":{"132":1,"149":1,"176":1,"204":1,"266":1,"397":1,"599":1,"729":1,"1627":1,"2015":1,"2217":1,"2416":1,"2794":1,"2863":1,"2879":1,"2938":2}}],["location",{"2":{"114":1,"133":1,"134":1,"149":1,"199":1,"234":1,"249":2,"317":1,"509":1,"627":1,"669":1,"749":1,"750":1,"756":1,"1492":1,"1946":1,"2015":1,"2085":1,"2430":1,"2584":1,"2597":1,"2603":1,"2658":1,"2662":1,"2683":2,"2714":1,"2763":2,"2764":3,"2783":5,"2795":2,"2937":1,"2949":1}}],["localhost",{"2":{"617":1}}],["locally",{"0":{"2604":1,"2606":1},"2":{"615":1,"619":1,"1463":1,"2432":1,"2604":2,"2606":1,"2607":1}}],["local",{"2":{"460":2,"489":1,"514":1,"516":1,"519":1,"613":1,"614":1,"657":1,"675":1,"1952":1,"1953":1,"2015":1,"2289":1,"2407":1,"2410":2,"2433":1,"2554":1,"2576":1,"2590":1,"2593":1,"2604":1,"2605":1,"2606":1,"2614":1,"2628":2,"2637":2,"2651":1,"2746":1}}],["locale",{"2":{"249":1}}],["lockout",{"2":{"2003":1}}],["lockkeys",{"0":{"1693":1},"2":{"1693":1}}],["locks",{"2":{"1422":1,"1789":1,"1791":1,"1793":1,"2522":1}}],["lockups",{"2":{"263":1}}],["locking",{"0":{"2214":1},"2":{"176":1,"188":1,"191":2,"199":2,"236":1,"266":32,"561":3,"1354":2,"1790":1,"2510":6,"2545":6,"2663":1,"2854":2,"2890":2}}],["locked",{"2":{"160":1,"266":1,"312":1,"379":2,"402":3,"408":1,"1789":2,"1793":3,"1794":7,"2213":1,"2214":1,"2216":2,"2217":1,"2218":2,"2276":1,"2652":7,"2725":1,"2728":1,"2736":1,"2737":1,"2879":1}}],["lock",{"0":{"1354":1,"1762":1,"1789":1,"1790":1,"1794":1,"1795":1,"2312":1,"2521":1,"2522":1,"2545":1},"1":{"1763":1,"1764":1,"1765":1,"1790":1,"1791":1,"1792":1,"1793":1,"1794":1,"1795":1},"2":{"73":1,"149":2,"176":1,"188":2,"191":2,"199":2,"222":3,"231":2,"285":2,"308":1,"564":1,"565":1,"589":1,"1354":2,"1422":1,"1424":1,"1455":1,"1544":2,"1546":4,"1593":5,"1625":2,"1693":3,"1762":4,"1763":3,"1764":1,"1765":4,"1789":2,"1790":3,"1791":6,"1792":3,"1793":4,"1794":3,"1795":7,"1835":4,"1836":6,"1838":3,"1839":6,"1840":2,"1855":1,"1945":3,"1948":1,"2094":1,"2095":2,"2096":5,"2188":1,"2189":2,"2190":1,"2216":2,"2218":2,"2276":2,"2284":3,"2287":1,"2312":1,"2330":1,"2418":2,"2510":12,"2521":2,"2522":2,"2526":16,"2545":12,"2552":16,"2650":1,"2652":1,"2727":1,"2795":3,"2796":2,"2854":1,"2857":2,"2867":6,"2890":2,"2935":3,"2940":1}}],["lowr",{"2":{"2321":1}}],["lowest",{"2":{"555":1,"1413":1,"1425":1,"1426":1,"1493":1,"1843":1,"2320":1,"2510":1,"2551":1,"2564":1}}],["lower",{"0":{"2330":1},"2":{"198":1,"236":1,"694":1,"696":1,"719":3,"720":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1207":1,"1296":1,"1417":1,"1422":2,"1425":1,"1427":1,"1430":1,"1491":1,"1521":1,"1544":1,"1681":1,"1801":1,"1935":2,"1936":1,"1939":1,"1968":2,"1974":2,"1975":2,"2301":3,"2320":2,"2321":3,"2322":2,"2323":6,"2330":2,"2449":1,"2513":1,"2557":1,"2559":4,"2562":1,"2569":1,"2768":7,"2770":2,"2911":1,"2912":1}}],["lowercase",{"2":{"152":1,"221":1,"1332":1,"1438":1,"1499":1,"2330":3,"2453":1,"2502":1,"2744":2,"2912":1}}],["low",{"0":{"639":1,"2195":1},"2":{"49":1,"134":1,"160":1,"243":2,"561":2,"568":1,"569":5,"570":1,"639":2,"719":3,"749":1,"797":3,"1295":2,"1297":1,"1319":1,"1413":1,"1486":1,"1544":1,"1545":1,"1678":5,"1681":3,"1684":1,"1685":1,"1742":3,"1836":1,"1838":2,"1935":2,"1936":1,"1985":2,"1997":1,"2184":1,"2271":2,"2272":1,"2374":1,"2498":1,"2499":1,"2500":1,"2501":1,"2503":2,"2557":1,"2562":1,"2669":1,"2684":1,"2685":1,"2687":1,"2744":1,"2809":1,"2835":1,"2844":1,"2872":1,"2912":2}}],["login",{"2":{"2678":1}}],["logically",{"2":{"2207":1}}],["logical",{"2":{"134":1,"236":1,"339":1,"615":1,"753":1,"754":2,"755":3,"756":2,"1287":1,"1782":2,"2206":1,"2466":2,"2856":1,"2857":1,"2864":2,"2867":1,"2872":1}}],["logic",{"0":{"1296":1},"1":{"1297":1,"1298":1},"2":{"16":1,"75":1,"94":2,"113":1,"114":2,"133":2,"134":5,"149":1,"160":3,"191":1,"198":1,"199":1,"211":1,"222":2,"249":2,"266":1,"277":6,"285":1,"308":1,"317":1,"320":1,"328":3,"333":1,"593":2,"1296":1,"1298":1,"1431":1,"1539":1,"1591":1,"1632":1,"1634":1,"1849":1,"1962":1,"2085":2,"2261":2,"2310":1,"2652":1,"2744":1,"2926":1,"2930":1}}],["logfile",{"2":{"2417":4}}],["logged",{"2":{"493":1,"1330":1,"2948":1}}],["logger",{"2":{"489":1,"492":1}}],["logging",{"0":{"492":1},"2":{"249":1,"308":1,"489":1,"529":1,"1329":1,"1330":1,"1331":1}}],["log",{"0":{"492":1},"2":{"114":1,"199":2,"211":1,"411":1,"429":1,"489":3,"491":2,"492":12,"493":2,"496":1,"500":1,"525":2,"529":2,"588":1,"589":2,"613":1,"2436":1,"2601":1}}],["logo",{"0":{"1946":1,"2285":1},"2":{"31":2,"1946":7,"1948":2,"2285":5,"2287":2}}],["logs",{"2":{"17":1,"1330":1,"2634":1,"2717":1}}],["lots",{"2":{"560":1,"2479":1,"2567":2}}],["lotus58",{"2":{"211":1,"266":1,"311":8,"317":1}}],["lot",{"2":{"6":1,"10":2,"114":1,"153":1,"172":1,"175":1,"187":1,"198":2,"201":1,"213":1,"224":1,"233":1,"238":1,"403":1,"494":1,"525":1,"611":1,"619":1,"626":1,"645":1,"665":1,"1336":1,"1417":2,"1423":1,"1524":1,"1609":1,"1622":1,"1623":1,"2261":1,"2309":1,"2427":1,"2429":1,"2435":1,"2439":1,"2481":1,"2572":2,"2576":1,"2586":1,"2587":1,"2629":1,"2716":1,"2722":1,"2746":1,"2747":1,"2765":1,"2893":1,"2894":1,"2896":1,"2908":1,"2934":1}}],["laziness",{"2":{"2744":1}}],["lazydesigners",{"2":{"102":3}}],["lapo",{"2":{"2256":1,"2257":1,"2259":1,"2538":1}}],["laptop",{"2":{"1421":1}}],["laid",{"2":{"620":1,"665":1}}],["lambdas",{"0":{"531":1},"2":{"531":1}}],["larr",{"2":{"348":1,"2450":6}}],["largely",{"2":{"244":1,"554":1,"611":1,"2396":1,"2418":2}}],["largest",{"2":{"176":1,"2889":1}}],["larger",{"2":{"153":1,"174":1,"175":1,"176":1,"211":1,"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"403":1,"721":1,"754":2,"755":2,"1419":1,"1483":1,"1609":2,"1949":1,"1986":1,"2260":1,"2423":1,"2463":1,"2763":1,"2846":1,"2926":1,"2937":1}}],["large",{"2":{"134":1,"153":1,"163":1,"174":1,"175":1,"176":1,"233":1,"403":1,"414":1,"574":1,"661":1,"665":1,"720":1,"1368":1,"1376":1,"1609":1,"1936":1,"1938":1,"2379":1,"2572":1,"2664":1,"2676":1,"2747":1,"2763":1,"2764":1,"2771":1,"2895":1,"2903":1}}],["lacking",{"2":{"2746":1}}],["lacks",{"2":{"2208":1}}],["lack",{"2":{"312":1,"1196":1,"1472":1,"1850":1,"2088":1,"2279":1,"2280":1,"2567":1,"2902":1}}],["lags",{"2":{"719":1}}],["laggy",{"2":{"320":1,"2930":1}}],["lag",{"2":{"297":1,"1290":1,"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1,"2922":1,"2936":1}}],["la+",{"2":{"211":1}}],["labor",{"2":{"2749":1}}],["labk",{"2":{"2534":1,"2555":1}}],["labeled",{"2":{"764":1,"1248":1,"1269":1,"2612":1}}],["label",{"2":{"403":4,"2795":18,"2796":18,"2800":8,"2868":1,"2869":2}}],["labels",{"2":{"191":1,"333":1,"2884":1}}],["lab",{"2":{"211":3,"2567":1}}],["latches",{"2":{"1286":1}}],["latter",{"2":{"419":1,"1351":1,"1615":1,"1798":1,"1969":1,"2097":1,"2656":1,"2764":3,"2919":1,"2924":1,"2926":1}}],["lattice60",{"2":{"159":2}}],["latam",{"2":{"249":1}}],["latvian",{"2":{"176":1,"2887":3}}],["latin",{"2":{"2886":1,"2887":6}}],["latinpad",{"2":{"143":2}}],["latinpadble",{"2":{"143":2,"211":1}}],["latin6rgb",{"2":{"143":2}}],["latin64ble",{"2":{"143":2}}],["latin60rgb",{"2":{"143":2}}],["latin47ble",{"2":{"143":2}}],["latincompass",{"2":{"143":7,"149":2}}],["latin17rgb",{"2":{"143":2}}],["late",{"2":{"656":1}}],["late9",{"2":{"241":2,"249":1,"300":2}}],["latency",{"2":{"94":1,"199":1,"2379":2}}],["later",{"2":{"23":1,"157":1,"414":1,"507":1,"527":1,"600":1,"615":1,"716":1,"1367":1,"1467":1,"1630":2,"1962":1,"2189":2,"2309":2,"2431":1,"2464":1,"2498":1,"2561":1,"2628":1,"2632":1,"2750":2}}],["latest",{"2":{"10":1,"24":1,"176":1,"191":1,"211":1,"254":1,"294":1,"308":1,"392":1,"2331":1,"2593":1,"2599":1,"2621":1}}],["lanes",{"2":{"2265":1}}],["laneware",{"2":{"241":5,"249":1}}],["landed",{"2":{"131":1}}],["languages",{"2":{"134":1,"2294":1,"2329":1,"2418":1,"2653":1,"2673":1,"2884":1,"2885":1}}],["language",{"0":{"5":1,"2223":1,"2884":1},"1":{"2885":1,"2886":1,"2887":1},"2":{"74":1,"429":1,"538":1,"1442":3,"2057":1,"2294":1,"2510":18,"2547":13,"2568":1,"2680":1,"2682":2,"2809":1,"2837":1,"2846":1,"2884":2,"2885":2,"2887":1}}],["lalt",{"2":{"120":1,"375":1,"589":2,"1347":1,"1363":2,"1364":1,"1366":2,"1422":1,"1441":1,"1444":1,"1448":1,"1462":4,"1490":1,"1618":2,"2259":2,"2317":2,"2318":2,"2510":1,"2523":1,"2526":2,"2529":1,"2530":1,"2535":1,"2546":1,"2552":2,"2561":1,"2563":1,"2575":2,"2651":1,"2923":1}}],["laser",{"2":{"118":1,"191":1,"241":2,"1967":1}}],["lastly",{"2":{"1417":1}}],["last",{"0":{"202":1,"2367":1},"1":{"2368":1},"2":{"23":1,"74":1,"103":1,"105":1,"167":1,"176":2,"184":1,"189":1,"198":1,"201":1,"202":2,"206":1,"211":2,"213":1,"222":1,"224":2,"238":1,"249":1,"275":1,"284":1,"379":2,"402":1,"405":1,"406":1,"407":1,"412":4,"521":1,"588":1,"640":1,"646":1,"647":2,"754":2,"1420":3,"1422":1,"1431":1,"1447":2,"1499":1,"1517":1,"1525":2,"1529":1,"1538":1,"1690":1,"1784":1,"1913":1,"1916":1,"2003":1,"2065":3,"2067":2,"2068":2,"2069":3,"2070":1,"2072":2,"2073":2,"2074":1,"2075":1,"2076":1,"2077":1,"2078":5,"2079":6,"2173":1,"2176":1,"2191":1,"2275":2,"2277":3,"2295":1,"2297":1,"2309":1,"2310":2,"2317":1,"2331":1,"2367":1,"2432":1,"2504":1,"2537":2,"2569":1,"2580":1,"2584":1,"2601":1,"2641":1,"2652":1,"2678":1,"2691":1,"2761":1,"2763":1,"2764":25,"2791":1,"2927":1,"2938":1,"2939":1}}],["launchpad",{"2":{"143":2,"199":2,"231":1,"317":1,"1923":1,"2510":2,"2549":2}}],["launch",{"0":{"2659":1},"2":{"114":2,"543":1,"2298":1,"2379":2,"2510":5,"2549":5,"2659":1,"2683":2}}],["layr",{"2":{"2319":3}}],["lays",{"2":{"340":1}}],["layout=ortho",{"2":{"1436":2}}],["layout>",{"2":{"1435":1,"1436":4}}],["layouts+users",{"2":{"191":1}}],["layouts",{"0":{"35":1,"1433":1,"1436":1,"1437":1,"2869":1},"1":{"36":1,"1434":1,"1435":1,"1436":1,"1437":1,"1438":2,"1439":2},"2":{"70":3,"73":1,"74":1,"99":1,"111":1,"114":1,"169":1,"176":1,"191":3,"199":4,"201":3,"211":23,"213":1,"222":3,"236":2,"249":3,"256":2,"308":1,"317":1,"429":2,"437":1,"572":2,"597":2,"1346":2,"1422":1,"1426":1,"1433":8,"1434":3,"1436":2,"1465":1,"1619":1,"1774":1,"2094":1,"2453":6,"2603":1,"2607":2,"2714":1,"2721":1,"2746":3,"2795":2,"2797":1,"2837":1,"2869":5,"2884":1,"2886":2,"2926":3,"2937":1}}],["layout",{"0":{"17":1,"89":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"597":1,"605":1,"1434":1,"1442":1,"2269":1,"2586":1,"2721":1,"2885":1,"2937":1},"1":{"257":1,"258":1,"259":1,"260":1},"2":{"17":1,"36":1,"48":1,"70":2,"76":1,"89":2,"94":1,"111":4,"114":2,"120":2,"149":1,"160":2,"191":4,"199":4,"201":3,"211":248,"213":1,"222":11,"236":9,"238":1,"249":4,"255":3,"256":4,"257":2,"258":2,"259":4,"260":1,"266":10,"277":2,"285":5,"294":3,"308":3,"328":1,"339":1,"375":4,"429":1,"447":1,"513":1,"588":2,"589":6,"597":3,"599":4,"683":6,"684":1,"1390":3,"1405":3,"1422":2,"1425":2,"1426":1,"1433":10,"1434":6,"1436":4,"1439":6,"1441":2,"1442":2,"1449":1,"1465":2,"1492":5,"1590":2,"1593":1,"1619":1,"1671":1,"1846":2,"1924":1,"1957":1,"2070":1,"2076":1,"2079":1,"2082":2,"2223":2,"2259":2,"2269":3,"2273":1,"2293":2,"2294":1,"2298":2,"2318":1,"2330":1,"2331":1,"2414":2,"2422":1,"2423":2,"2432":2,"2453":18,"2472":2,"2473":2,"2474":6,"2475":1,"2556":1,"2558":2,"2563":4,"2564":1,"2585":1,"2589":1,"2598":2,"2602":1,"2603":1,"2607":4,"2683":1,"2702":1,"2714":2,"2721":8,"2746":15,"2794":6,"2795":11,"2796":2,"2799":1,"2800":2,"2804":1,"2810":1,"2812":1,"2823":1,"2837":1,"2838":1,"2869":18,"2871":1,"2878":1,"2884":3,"2885":3,"2886":3,"2887":3,"2922":1,"2926":6,"2937":5,"2938":3}}],["layering",{"2":{"2564":1}}],["layer>",{"2":{"2001":3}}],["layer9",{"2":{"1625":1}}],["layer8",{"2":{"1625":1}}],["layer7",{"2":{"1625":1,"2011":2}}],["layer6",{"2":{"1625":1}}],["layer5",{"2":{"1625":1,"2011":2}}],["layer4",{"2":{"1625":1}}],["layer3",{"2":{"1625":1,"2189":2}}],["layer2",{"2":{"1625":1,"2189":2}}],["layer1",{"2":{"1625":1,"2189":2}}],["layer0",{"2":{"1625":3}}],["layers\`",{"2":{"1431":1}}],["layers",{"0":{"166":1,"591":1,"1369":1,"1421":1,"1422":1,"1424":1,"1431":1,"1620":1,"1771":2,"1772":2,"1773":2,"2011":1,"2188":1,"2189":1,"2190":1,"2320":1,"2557":1,"2562":1,"2766":1,"2892":1},"1":{"1422":1,"1423":2,"1424":1,"1425":2,"1426":2,"1427":2,"1428":1,"1429":1,"1430":1,"1431":1,"1432":1,"2189":1,"2190":1,"2191":1,"2192":1,"2193":1,"2321":1,"2322":1,"2323":1,"2558":1,"2559":1,"2563":1,"2564":1,"2767":1,"2768":1,"2769":1,"2770":1},"2":{"112":4,"114":1,"120":1,"160":1,"166":4,"176":1,"190":1,"191":1,"198":1,"199":3,"211":1,"266":1,"285":1,"307":1,"367":1,"375":1,"447":1,"562":1,"565":6,"588":1,"589":2,"591":1,"607":1,"616":2,"1320":1,"1353":1,"1369":1,"1417":1,"1421":1,"1422":12,"1423":2,"1424":1,"1425":6,"1426":3,"1427":5,"1428":12,"1429":1,"1430":1,"1431":3,"1432":1,"1441":1,"1486":1,"1533":1,"1619":3,"1620":2,"1622":1,"1667":1,"1690":1,"1765":1,"1770":1,"1771":2,"1776":6,"1779":1,"1781":2,"1790":1,"1791":1,"1794":2,"1945":1,"1999":1,"2003":1,"2011":2,"2072":1,"2188":3,"2189":21,"2190":1,"2191":9,"2192":3,"2193":3,"2194":1,"2284":1,"2294":1,"2318":1,"2319":1,"2320":1,"2322":1,"2323":2,"2523":1,"2557":6,"2558":2,"2559":5,"2561":1,"2562":5,"2585":1,"2586":2,"2650":1,"2651":1,"2767":1,"2769":2,"2770":1,"2877":2,"2885":1,"2892":5,"2906":1,"2926":1}}],["layer",{"0":{"3":1,"15":1,"246":1,"662":1,"1353":1,"1429":1,"1430":1,"1432":1,"1619":1,"1620":1,"1779":1,"1789":1,"1790":1,"1794":1,"1795":1,"1999":1,"2000":2,"2008":1,"2012":2,"2014":1,"2191":1,"2203":1,"2318":1,"2319":2,"2522":1,"2523":1,"2558":1,"2559":1,"2563":1,"2564":1,"2767":1,"2769":1,"2771":1,"2824":1},"1":{"1430":1,"1431":1,"1432":1,"1620":1,"1784":1,"1785":1,"1786":1,"1790":1,"1791":1,"1792":1,"1793":1,"1794":1,"1795":1,"2000":1,"2001":1,"2002":1,"2003":1,"2004":1,"2005":1,"2006":1,"2007":1,"2008":1,"2009":1,"2010":1,"2011":1,"2012":1,"2013":1,"2014":1,"2015":1,"2768":1,"2770":1},"2":{"31":1,"38":10,"49":2,"73":1,"93":1,"105":4,"114":2,"149":1,"160":1,"166":3,"176":2,"190":1,"191":5,"194":4,"198":1,"199":7,"211":4,"236":4,"246":2,"249":1,"266":2,"285":7,"297":1,"298":1,"307":1,"308":2,"328":2,"375":1,"562":1,"563":3,"564":2,"565":3,"570":2,"588":2,"591":2,"616":4,"646":1,"662":1,"710":1,"796":1,"798":1,"1353":4,"1416":1,"1417":29,"1421":1,"1422":30,"1423":4,"1424":2,"1425":10,"1426":2,"1427":13,"1428":90,"1429":2,"1430":5,"1431":30,"1432":6,"1466":1,"1470":13,"1473":1,"1486":3,"1490":1,"1533":9,"1605":3,"1612":4,"1613":5,"1619":3,"1620":31,"1622":6,"1625":28,"1638":6,"1641":8,"1661":1,"1662":2,"1663":1,"1667":1,"1690":5,"1766":1,"1779":14,"1781":2,"1789":26,"1790":4,"1791":15,"1792":3,"1793":13,"1794":9,"1795":10,"1803":1,"1841":1,"1845":1,"1855":1,"1945":4,"1948":1,"1994":9,"1996":6,"1999":17,"2000":15,"2001":8,"2003":6,"2004":2,"2006":2,"2008":31,"2009":1,"2011":12,"2012":30,"2013":3,"2014":4,"2015":2,"2053":1,"2072":2,"2073":1,"2075":7,"2081":1,"2094":1,"2095":13,"2096":5,"2188":1,"2189":18,"2190":14,"2191":24,"2203":4,"2276":3,"2284":4,"2287":1,"2292":1,"2293":1,"2298":3,"2302":1,"2304":1,"2309":9,"2318":4,"2319":26,"2320":4,"2321":8,"2322":13,"2323":22,"2381":4,"2522":3,"2523":20,"2535":2,"2554":1,"2556":2,"2557":2,"2558":18,"2559":5,"2560":1,"2561":5,"2562":4,"2563":3,"2564":6,"2579":2,"2585":2,"2651":6,"2652":14,"2684":1,"2707":2,"2745":1,"2746":4,"2767":4,"2768":8,"2769":10,"2770":7,"2771":10,"2824":1,"2868":1,"2869":2,"2870":1,"2877":2,"2880":2,"2890":1,"2892":3,"2911":5,"2912":2,"2918":2,"2919":7,"2920":5,"2921":1,"2922":1,"2948":1,"2949":7}}],["lter",{"2":{"1538":1}}],["ltoboolean",{"2":{"2854":1}}],["lto",{"2":{"111":1,"112":2,"114":3,"134":5,"149":1,"160":1,"211":2,"249":1,"266":2,"572":2,"2683":1}}],["lt",{"0":{"15":1,"370":1,"371":1,"372":1,"1453":1,"1454":1,"1455":1,"1456":2,"1457":5,"1633":1,"2456":1,"2457":1},"2":{"4":3,"18":2,"55":1,"70":1,"132":2,"133":1,"134":1,"176":4,"195":1,"199":1,"201":1,"211":1,"249":2,"297":1,"317":1,"344":1,"403":1,"407":2,"409":3,"411":8,"429":1,"430":1,"433":2,"459":1,"476":2,"492":1,"495":4,"521":1,"559":1,"564":1,"569":2,"570":3,"588":2,"593":2,"618":3,"627":6,"672":1,"673":4,"681":1,"721":1,"729":1,"755":1,"797":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1315":2,"1316":1,"1330":1,"1347":1,"1364":3,"1379":6,"1388":1,"1406":1,"1407":2,"1422":2,"1423":1,"1433":1,"1434":3,"1438":4,"1439":1,"1453":1,"1454":1,"1455":3,"1456":1,"1463":6,"1464":5,"1466":4,"1468":1,"1470":1,"1472":5,"1491":2,"1504":1,"1506":1,"1515":1,"1590":1,"1593":1,"1603":1,"1604":2,"1605":2,"1627":2,"1637":1,"1638":20,"1641":1,"1668":1,"1690":1,"1781":2,"1788":1,"1789":2,"1795":1,"1803":2,"1937":5,"1999":1,"2000":11,"2001":1,"2273":3,"2318":1,"2410":1,"2414":2,"2416":4,"2417":16,"2418":2,"2434":1,"2451":2,"2453":1,"2454":1,"2457":2,"2502":4,"2504":2,"2508":1,"2510":1,"2523":1,"2534":2,"2544":1,"2555":2,"2579":4,"2580":2,"2597":1,"2603":5,"2607":2,"2628":2,"2634":7,"2639":3,"2682":2,"2683":2,"2684":1,"2685":1,"2744":1,"2746":2,"2769":1,"2794":4,"2851":1,"2869":1,"2910":1,"2912":3,"2918":4,"2919":7,"2920":4,"2922":1,"2928":4,"2948":1}}],["liability",{"2":{"2739":1}}],["liatris",{"0":{"1397":1},"2":{"211":1,"1389":2,"1391":3,"1399":3,"2706":1,"2895":1}}],["liking",{"0":{"2586":1},"2":{"2179":1}}],["likewise",{"2":{"570":1,"2579":1}}],["likelihood",{"2":{"263":1,"403":1,"754":1,"2744":2}}],["likely",{"2":{"118":1,"132":1,"156":1,"182":1,"213":2,"403":1,"716":1,"754":1,"1376":1,"1647":1,"2048":1,"2185":1,"2294":1,"2397":1,"2506":1,"2593":1,"2612":1,"2685":1,"2694":1,"2710":1,"2744":1,"2756":1,"2760":1,"2891":1}}],["like",{"0":{"1355":1},"2":{"100":1,"114":1,"120":1,"125":3,"152":3,"156":1,"169":2,"175":1,"176":1,"185":3,"189":1,"194":1,"201":1,"230":1,"244":1,"247":1,"263":1,"307":1,"320":1,"341":1,"382":1,"505":1,"513":1,"541":1,"544":1,"568":2,"569":1,"574":1,"578":1,"610":1,"613":2,"615":2,"647":1,"656":1,"668":1,"712":1,"757":1,"1200":1,"1299":1,"1303":1,"1311":4,"1330":2,"1332":2,"1343":1,"1354":1,"1358":1,"1364":3,"1366":1,"1383":1,"1387":1,"1405":1,"1409":2,"1416":1,"1417":1,"1421":1,"1422":3,"1423":1,"1441":1,"1442":1,"1446":1,"1448":2,"1450":1,"1456":1,"1463":1,"1464":2,"1466":1,"1471":1,"1481":1,"1485":4,"1490":1,"1491":1,"1493":2,"1510":2,"1519":1,"1527":1,"1528":2,"1538":1,"1546":1,"1556":1,"1557":1,"1590":1,"1591":1,"1593":2,"1594":1,"1595":1,"1597":1,"1605":1,"1614":1,"1625":1,"1630":1,"1666":1,"1668":1,"1670":1,"1766":1,"1779":1,"1787":2,"1788":2,"1794":1,"1801":2,"1851":1,"1919":2,"1923":1,"1938":1,"1939":2,"1964":1,"1994":1,"2054":1,"2065":2,"2068":1,"2079":1,"2090":1,"2096":2,"2181":1,"2192":1,"2193":1,"2209":1,"2211":2,"2273":1,"2276":2,"2292":1,"2300":1,"2304":1,"2309":5,"2313":1,"2317":1,"2319":1,"2329":1,"2331":1,"2381":1,"2382":1,"2390":1,"2410":1,"2415":1,"2416":1,"2418":1,"2423":1,"2426":1,"2427":1,"2428":2,"2430":1,"2431":1,"2447":1,"2450":1,"2464":2,"2466":2,"2477":1,"2483":2,"2523":2,"2575":2,"2576":1,"2583":1,"2584":1,"2585":1,"2621":1,"2628":1,"2634":1,"2651":1,"2652":2,"2663":1,"2680":1,"2686":1,"2691":2,"2695":1,"2720":1,"2731":1,"2746":2,"2747":2,"2749":1,"2751":1,"2762":1,"2771":1,"2797":2,"2889":3,"2890":1,"2911":1,"2919":2,"2920":1,"2925":1,"2928":2,"2930":1,"2934":3,"2936":1,"2938":1,"2939":2,"2944":1,"2945":1,"2948":2}}],["lilypadusb",{"2":{"713":1,"2499":1}}],["lily58",{"0":{"30":1,"31":1},"1":{"31":1},"2":{"30":2}}],["live",{"2":{"460":1,"461":1,"1627":1,"2300":1,"2680":1}}],["lives",{"2":{"99":1,"288":1,"2482":1}}],["licensing",{"0":{"2568":1,"2728":1},"2":{"273":1,"284":1,"414":1,"2710":2,"2726":1}}],["licensed",{"2":{"2465":1,"2727":1}}],["licenses",{"2":{"1467":1,"2727":1,"2728":2,"2737":1,"2742":1,"2744":1,"2750":1}}],["license",{"0":{"2465":1,"2566":1},"1":{"2567":1,"2568":1,"2569":1,"2570":1,"2571":1},"2":{"199":1,"276":1,"308":1,"344":3,"403":1,"1319":1,"1467":5,"1630":3,"2465":2,"2566":1,"2567":2,"2568":4,"2569":1,"2570":2,"2726":1,"2728":3,"2736":1,"2739":1,"2740":1,"2742":1,"2744":7,"2746":2,"2750":5}}],["lights",{"0":{"2315":1},"2":{"648":1,"1430":1,"1465":1,"2209":1,"2210":1}}],["lightweight",{"2":{"279":1}}],["lightcycle",{"2":{"222":1}}],["light",{"0":{"565":1},"2":{"199":1,"222":1,"565":1,"570":1,"647":1,"1545":1,"1966":1,"1978":1,"1981":1,"2085":1,"2087":1,"2096":1,"2182":1,"2183":1,"2185":2,"2188":1,"2189":6,"2210":1,"2278":1,"2281":1,"2315":1,"2443":1,"2658":1,"2746":1,"2753":1,"2826":1,"2845":1,"2877":1,"2894":2}}],["lighting",{"0":{"233":1,"1844":1,"2080":1,"2178":1,"2188":1,"2189":1,"2190":1,"2191":1,"2192":1,"2532":1},"1":{"1845":1,"1846":1,"1847":1,"1848":1,"1849":1,"1850":1,"1851":1,"1852":1,"1853":1,"1854":1,"1855":1,"1856":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":1,"1865":1,"1866":1,"1867":1,"1868":1,"1869":1,"1870":1,"1871":1,"1872":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":1,"1891":1,"1892":1,"1893":1,"1894":1,"1895":1,"1896":1,"1897":1,"1898":1,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":1,"1905":1,"1906":1,"1907":1,"1908":1,"1909":1,"1910":1,"1911":1,"1912":1,"1913":1,"1914":1,"1915":1,"1916":1,"1917":1,"2081":1,"2082":1,"2083":1,"2084":1,"2085":1,"2086":1,"2087":1,"2088":1,"2089":1,"2090":1,"2091":1,"2092":1,"2093":1,"2094":1,"2095":1,"2096":1,"2097":1,"2098":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":1,"2107":1,"2108":1,"2109":1,"2110":1,"2111":1,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":1,"2145":1,"2146":1,"2147":1,"2148":1,"2149":1,"2150":1,"2151":1,"2152":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2164":1,"2165":1,"2166":1,"2167":1,"2168":1,"2169":1,"2170":1,"2171":1,"2172":1,"2173":1,"2174":1,"2175":1,"2176":1,"2177":1,"2179":1,"2180":1,"2181":1,"2182":1,"2183":1,"2184":1,"2185":1,"2186":1,"2187":1,"2188":1,"2189":2,"2190":2,"2191":2,"2192":2,"2193":2,"2194":1,"2195":1,"2196":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2205":1,"2206":1,"2207":1,"2208":1,"2209":1,"2210":1,"2211":1},"2":{"114":1,"191":1,"221":1,"233":1,"236":3,"244":1,"249":2,"266":1,"308":1,"316":1,"462":1,"565":4,"1392":1,"1393":1,"1464":1,"2178":1,"2179":1,"2181":1,"2182":3,"2183":1,"2188":2,"2189":2,"2190":2,"2191":2,"2192":4,"2193":2,"2194":1,"2203":2,"2209":1,"2532":2,"2764":1,"2805":1,"2877":2,"2907":2}}],["little",{"2":{"191":1,"646":1,"712":1,"1376":1,"1499":1,"1503":2,"1519":2,"1523":1,"1538":1,"2309":1,"2310":1,"2316":1,"2324":1,"2410":2,"2428":1,"2617":1,"2777":1,"2785":1}}],["lithuanian",{"2":{"176":2,"2887":6}}],["literal",{"2":{"160":2,"671":1,"1450":1}}],["literals",{"2":{"114":1,"191":1,"2222":1}}],["lite",{"0":{"245":1,"624":1},"2":{"87":3,"88":3,"93":1,"103":4,"104":3,"112":1,"126":5,"127":3,"134":1,"149":2,"245":2,"249":2,"317":1,"328":1,"624":1,"2746":3,"2872":2}}],["liftoff",{"2":{"1983":2}}],["lifted",{"2":{"1785":1,"1983":1}}],["lifting",{"2":{"1776":1,"2616":1}}],["lift",{"2":{"175":1,"1983":1,"1985":2}}],["life",{"2":{"123":1,"307":1,"610":1,"1415":1,"2185":1,"2749":1}}],["lime",{"2":{"134":1}}],["limitation",{"2":{"690":1,"1518":1,"2490":1,"2578":1,"2669":1}}],["limitations",{"0":{"575":1,"1499":1,"2665":1},"1":{"2666":1,"2667":1,"2668":1,"2669":1},"2":{"293":1,"305":1,"314":1,"611":1,"1303":1,"2262":1,"2294":1,"2325":1,"2418":1,"2725":1,"2727":2,"2740":1}}],["limits",{"0":{"660":1},"2":{"176":2,"236":1,"285":2,"294":1,"575":1,"719":1,"1850":2,"1852":3,"1985":1,"2088":2,"2091":3,"2669":1,"2871":2,"2878":2}}],["limiting",{"2":{"114":1,"429":1,"1852":1,"2091":1,"2459":1,"2685":1,"2686":1}}],["limited",{"0":{"593":1,"2669":1},"2":{"92":1,"130":1,"174":1,"306":1,"315":1,"592":1,"615":1,"619":1,"685":1,"719":1,"1322":1,"1349":1,"1415":1,"1423":2,"1528":1,"1662":1,"1777":1,"2070":1,"2096":1,"2249":1,"2277":1,"2329":1,"2374":1,"2396":1,"2469":1,"2474":3,"2475":1,"2576":1,"2639":1,"2749":1,"2888":1,"2902":1}}],["limit",{"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"63":1,"114":1,"160":2,"176":1,"191":1,"222":1,"236":1,"399":1,"540":1,"629":1,"657":1,"719":1,"755":1,"798":1,"1410":1,"1544":1,"1681":2,"1850":1,"1852":2,"1949":1,"2086":3,"2088":1,"2091":2,"2182":2,"2454":2,"2761":1,"2871":2,"2878":2,"2892":1}}],["linx",{"2":{"2332":1,"2540":1}}],["linworks",{"2":{"191":1,"266":1}}],["lingering",{"2":{"191":3,"199":1}}],["linux1",{"2":{"2510":1}}],["linux",{"0":{"1315":1,"1316":1,"1317":1},"1":{"1316":1,"1317":1},"2":{"158":1,"222":1,"426":1,"1315":1,"1316":1,"1326":1,"1332":2,"1361":1,"1784":1,"1957":1,"1958":1,"2016":1,"2057":1,"2327":1,"2328":1,"2331":3,"2332":2,"2344":1,"2345":1,"2346":1,"2407":1,"2502":1,"2506":1,"2510":1,"2540":2,"2613":1,"2619":1,"2620":1,"2626":3,"2627":1,"2644":1,"2683":2,"2717":1,"2731":1,"2887":2}}],["linting",{"0":{"501":1,"502":1,"506":1},"1":{"502":1,"503":1,"504":1,"505":1,"506":1}}],["lint",{"0":{"440":1,"2448":1},"2":{"134":1,"160":1,"191":1,"199":1,"236":1,"249":1,"266":1,"294":1,"308":4,"317":1,"328":1,"333":2,"339":1,"344":3,"403":1,"440":3,"501":1,"506":1,"2448":5}}],["linear",{"2":{"1685":2,"2781":3}}],["linebreak",{"2":{"521":1}}],["lined",{"2":{"354":1,"512":1}}],["lines",{"0":{"342":1},"2":{"64":1,"113":1,"153":1,"211":1,"272":1,"273":1,"277":1,"512":2,"514":2,"521":1,"527":1,"540":1,"615":1,"647":1,"721":1,"1390":1,"1450":1,"1669":2,"1699":3,"1954":5,"1962":1,"2038":1,"2290":4,"2294":1,"2295":1,"2296":1,"2297":1,"2497":1,"2504":1,"2585":2,"2717":1,"2764":1}}],["line",{"0":{"1711":1,"2616":1,"2644":1},"1":{"1712":1},"2":{"45":1,"65":1,"112":1,"114":2,"118":2,"157":1,"199":1,"226":2,"236":1,"249":1,"264":1,"274":1,"277":1,"282":1,"285":1,"292":1,"301":1,"302":1,"313":1,"326":1,"336":1,"344":3,"354":2,"425":1,"458":3,"459":1,"470":1,"473":1,"489":1,"496":1,"512":4,"513":1,"516":1,"518":2,"521":3,"527":3,"532":1,"615":2,"622":1,"676":3,"1197":1,"1205":1,"1252":1,"1297":1,"1333":1,"1392":1,"1396":2,"1403":1,"1407":1,"1412":1,"1413":1,"1438":1,"1465":1,"1605":3,"1612":1,"1644":2,"1699":2,"1712":2,"1713":1,"1932":1,"1954":5,"1964":1,"2038":1,"2250":1,"2290":3,"2298":1,"2320":1,"2383":1,"2386":1,"2388":2,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2410":2,"2417":1,"2423":1,"2428":1,"2466":2,"2504":2,"2585":3,"2589":1,"2599":1,"2613":2,"2619":1,"2634":2,"2639":2,"2644":1,"2653":1,"2673":1,"2676":1,"2678":1,"2691":1,"2703":1,"2714":1,"2764":7,"2787":1,"2795":1,"2802":1,"2803":1,"2816":1,"2923":1,"2927":1,"2949":2}}],["linkid=830387",{"2":{"2683":1}}],["linking",{"2":{"236":2,"341":1,"572":2,"1376":1,"2458":1,"2567":1,"2587":1,"2629":1,"2726":1,"2733":4}}],["link007",{"2":{"2506":1}}],["linked",{"2":{"236":1,"572":1,"2458":1,"2501":1,"2726":1,"2869":1}}],["linker",{"2":{"114":1}}],["links",{"0":{"2436":1},"2":{"199":1,"341":2,"393":1,"413":1,"661":1,"1340":1,"1368":1,"1538":1,"2430":1,"2437":1,"2452":1,"2483":1,"2509":1,"2567":1,"2746":1}}],["link",{"2":{"10":2,"50":1,"93":1,"94":1,"114":1,"133":1,"134":2,"277":1,"389":2,"411":1,"572":2,"616":1,"681":1,"1313":1,"1345":1,"1538":2,"1539":1,"2046":2,"2394":4,"2410":2,"2424":4,"2505":1,"2506":2,"2507":2,"2508":4,"2658":1,"2676":1,"2744":1,"2746":3,"2854":1,"2889":1}}],["libusbk",{"2":{"713":1}}],["libusb",{"2":{"240":3}}],["liberal",{"2":{"514":1,"530":1}}],["liberally",{"2":{"512":1,"514":1}}],["liber",{"2":{"143":2,"149":1}}],["libc",{"2":{"114":1,"746":1,"2889":1}}],["lib8tion",{"2":{"114":1,"308":1}}],["libraries",{"0":{"2725":1,"2731":1,"2737":1,"2740":1},"1":{"2726":1,"2727":1,"2728":1,"2729":1,"2730":1,"2731":1,"2732":1,"2733":1,"2734":1,"2735":1,"2736":1,"2737":1,"2738":1,"2739":1,"2740":1,"2741":1,"2742":1},"2":{"30":1,"33":1,"2057":1,"2567":1,"2725":3,"2727":4,"2729":1,"2730":1,"2731":2,"2733":2,"2736":1,"2738":1,"2741":1,"2742":2,"2903":1}}],["library",{"0":{"1527":1,"1686":1,"2727":1,"2729":1,"2730":1},"1":{"1528":1,"2730":1,"2731":1},"2":{"30":2,"160":1,"473":1,"474":1,"476":1,"482":1,"483":1,"538":1,"572":1,"798":2,"1526":3,"1527":2,"1686":1,"2057":2,"2058":1,"2059":1,"2727":1,"2729":1,"2733":1,"2739":1,"2740":1,"2753":2}}],["lib",{"2":{"6":1,"75":1,"113":1,"114":1,"234":2,"344":3,"411":2,"422":1,"489":2,"505":1,"542":1,"543":1,"544":2,"572":8,"666":3,"672":1,"673":3,"2410":4,"2684":1,"2727":1}}],["lists",{"0":{"344":1,"527":1},"2":{"441":1,"442":1,"454":1,"533":1,"710":1}}],["listings",{"2":{"211":1,"2683":1}}],["listing",{"2":{"149":1,"430":1,"681":1,"1444":1}}],["listed",{"2":{"43":1,"120":1,"204":1,"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"513":1,"568":1,"633":1,"639":1,"716":1,"719":1,"762":1,"1423":1,"1427":1,"1628":1,"1954":1,"2270":1,"2309":1,"2497":1,"2502":1,"2503":1,"2601":1,"2705":1,"2709":1,"2760":1,"2884":1,"2940":1}}],["listening",{"2":{"1329":1,"1332":2,"2218":1}}],["listen",{"0":{"1326":1,"1332":1,"2819":1},"2":{"34":1,"562":1,"1326":1,"1332":4,"1333":1,"2278":1,"2418":2,"2819":1}}],["list",{"0":{"71":1,"441":1,"442":1,"454":1,"713":1,"2421":1,"2474":1,"2765":1},"1":{"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1},"2":{"0":1,"19":1,"76":1,"93":1,"114":1,"116":1,"120":1,"124":1,"134":3,"149":2,"157":1,"172":1,"182":1,"186":1,"188":2,"189":1,"191":2,"199":1,"202":1,"204":1,"211":1,"233":2,"234":1,"249":1,"272":1,"279":1,"288":1,"298":1,"316":1,"354":1,"375":1,"378":3,"379":1,"393":1,"403":1,"433":3,"434":1,"441":1,"442":1,"452":1,"453":1,"454":2,"455":1,"469":5,"516":1,"526":1,"572":3,"596":1,"671":1,"710":2,"713":1,"723":1,"1343":1,"1364":2,"1441":1,"1446":2,"1470":1,"1485":5,"1602":1,"1605":2,"1612":1,"1633":1,"1639":1,"1686":1,"1765":1,"1788":2,"1845":1,"1961":1,"2057":1,"2068":1,"2081":1,"2089":1,"2189":3,"2191":1,"2194":1,"2199":4,"2205":1,"2277":1,"2300":1,"2327":1,"2331":2,"2435":1,"2470":1,"2473":1,"2474":1,"2556":2,"2562":1,"2563":1,"2570":1,"2571":1,"2583":2,"2585":2,"2586":1,"2598":1,"2599":2,"2602":1,"2610":1,"2629":2,"2634":4,"2663":1,"2684":1,"2709":1,"2710":1,"2716":1,"2717":3,"2724":1,"2744":1,"2746":1,"2771":1,"2777":1,"2852":1,"2857":1,"2863":2,"2865":1,"2868":2,"2869":2,"2871":2,"2872":3,"2878":2,"2879":1,"2902":1,"2906":1,"2928":2}}],["sz",{"2":{"2331":1}}],["s2",{"2":{"2296":1,"2301":2}}],["s2m",{"2":{"2277":9}}],["s1",{"2":{"2296":1,"2301":2}}],["sg",{"2":{"1364":1}}],["sgk50",{"2":{"294":1}}],["sbin",{"2":{"1316":1}}],["s4",{"2":{"294":1}}],["svc",{"2":{"2728":1,"2733":1,"2736":1,"2742":1}}],["svd",{"2":{"2683":5}}],["svdfile",{"2":{"2683":2}}],["svlinky",{"0":{"1398":1},"2":{"285":1,"1389":1,"1391":3,"1398":1,"2714":1}}],["svnroot",{"2":{"420":1}}],["svn",{"2":{"114":1,"149":1,"420":8}}],["s3",{"2":{"222":1,"366":2,"367":1,"370":1,"578":1,"2301":1}}],["sq",{"2":{"2252":9,"2253":12}}],["sq80",{"2":{"249":1}}],["sqrt",{"2":{"222":1}}],["squash",{"2":{"619":1}}],["square",{"2":{"222":1,"721":1,"1480":2,"1488":1}}],["squigglies",{"2":{"429":1}}],["squigglybob",{"2":{"222":1}}],["squiggle",{"2":{"143":2}}],["squishytkl",{"2":{"197":2}}],["squishy65",{"2":{"197":2}}],["squeeze",{"2":{"160":1,"545":1,"675":1}}],["squeezing",{"0":{"123":1,"2888":1},"1":{"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"134":1,"2901":1,"2907":1}}],["sfbs",{"0":{"2070":1}}],["sf",{"2":{"211":1}}],["sftent",{"2":{"2259":3,"2260":1}}],["sftllck",{"2":{"1795":4}}],["sft",{"2":{"195":1,"1605":2,"2530":1,"2575":1,"2910":1,"2912":1,"2918":3,"2921":6,"2925":8}}],["s65",{"2":{"211":1}}],["sram",{"2":{"2508":3}}],["srand",{"2":{"1947":1,"2286":1}}],["sr",{"2":{"2301":3}}],["srst",{"2":{"397":1}}],["srom",{"2":{"273":2,"277":1}}],["sriwedari70",{"2":{"211":1}}],["src",{"2":{"75":1,"114":1,"133":1,"134":1,"149":1,"234":9,"236":1,"429":1,"572":8,"673":2,"725":1,"801":2,"827":2,"856":2,"888":2,"920":2,"955":2,"989":2,"1023":2,"1057":2,"1091":2,"1125":2,"1159":2,"1215":2,"1414":1,"1464":4,"1633":1,"2454":1,"2597":1,"2944":1}}],["sdep",{"2":{"2375":1}}],["sdio",{"2":{"1966":2,"1978":2,"1981":2,"1985":3}}],["sd",{"2":{"1605":4}}],["sd2",{"2":{"1269":1}}],["sd3",{"2":{"1203":2}}],["sd1",{"2":{"1203":1,"1269":2}}],["sdb",{"2":{"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1}}],["sdk",{"2":{"191":1,"199":1,"308":1,"2737":1}}],["sdadel",{"2":{"766":1}}],["sda",{"2":{"176":1,"763":2,"764":4,"829":1,"858":1,"890":1,"922":8,"957":8,"991":1,"1025":1,"1059":1,"1093":8,"1127":8,"1161":8,"1217":1,"1682":1,"2267":1,"2702":1}}],["ssh",{"2":{"2594":1,"2600":1}}],["ssion",{"2":{"2079":1}}],["ssp",{"2":{"1194":3}}],["ssk",{"2":{"207":3}}],["ss",{"2":{"176":2,"196":2,"1247":5,"1252":1,"1446":1,"1448":24,"1450":1,"1798":2,"1804":4,"2222":4,"2225":1,"2226":2,"2288":1}}],["ssd1351",{"2":{"176":1,"2760":2,"2763":7}}],["ssd1306oled",{"2":{"31":3,"34":3,"220":1}}],["ssd1306",{"0":{"1955":1,"2442":1},"2":{"30":1,"33":1,"50":1,"153":1,"176":1,"220":2,"221":2,"248":1,"249":1,"1943":5,"1945":3,"1949":1,"1952":1,"1953":3,"1954":2,"2442":1,"2760":2,"2763":2}}],["snek",{"2":{"2329":3}}],["snes",{"2":{"236":1}}],["sn",{"2":{"2181":1,"2532":1}}],["snippers",{"2":{"2421":1}}],["snippet",{"2":{"1663":1,"2044":1}}],["snip>",{"2":{"379":1}}],["sn74lv1t34",{"2":{"1298":1}}],["sn74x154",{"2":{"160":1}}],["sn74x138",{"2":{"148":1,"149":1,"160":1}}],["snled27351",{"0":{"1214":1,"1221":1,"1223":1,"1225":1,"1227":1,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1243":1},"1":{"1215":1,"1216":1,"1217":1,"1218":1,"1219":1,"1220":1,"1221":1,"1222":2,"1223":1,"1224":2,"1225":1,"1226":2,"1227":1,"1228":2,"1229":1,"1230":2,"1231":1,"1232":2,"1233":1,"1234":2,"1235":1,"1236":2,"1237":1,"1238":2,"1239":1,"1240":2,"1241":1,"1242":2,"1243":1,"1244":2},"2":{"236":2,"249":1,"1214":1,"1215":4,"1216":7,"1217":6,"1219":6,"1229":1,"1230":1,"1233":1,"1234":1,"1237":1,"1238":1,"1239":1,"1240":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["snowe",{"2":{"191":1}}],["snprintf",{"2":{"191":1,"2889":3,"2893":1}}],["snapping",{"2":{"1986":1}}],["snapshot",{"2":{"613":1}}],["snap",{"2":{"277":1}}],["snake",{"2":{"160":1,"2181":2,"2183":2,"2184":2,"2185":2,"2187":2,"2210":1,"2532":2,"2877":1,"2894":1}}],["snagpad",{"2":{"43":2}}],["skeleton",{"2":{"2605":1}}],["skeletyl",{"2":{"311":8,"317":1}}],["sketches",{"2":{"2499":1}}],["sketch",{"2":{"2486":1}}],["skewed",{"2":{"1492":1}}],["sk6805",{"2":{"1283":1,"1287":1,"2178":1}}],["sk6812rgbw",{"2":{"1288":1}}],["sk6812mini",{"2":{"1283":1,"2178":1}}],["sk6812",{"2":{"1283":1,"1287":1,"2178":1}}],["skully",{"2":{"483":1}}],["skullydazed",{"2":{"111":1,"2852":1}}],["skills",{"2":{"616":1,"1801":1,"2054":1}}],["skiller",{"2":{"294":1}}],["skips",{"2":{"1447":2,"1665":1,"1974":1,"2000":2,"2510":1}}],["skipped",{"2":{"277":1,"2310":1}}],["skipping",{"2":{"240":1,"656":1,"2310":1}}],["skip",{"2":{"49":1,"65":1,"114":1,"149":1,"176":1,"214":1,"307":2,"328":1,"630":1,"631":1,"1198":1,"1201":1,"1417":1,"1533":1,"1970":1,"1974":1,"2407":1,"2423":1,"2504":1,"2549":2,"2561":1,"2592":1,"2613":1,"2634":2,"2658":1,"2659":1,"2907":1}}],["skyloong",{"2":{"222":1,"236":4,"294":1}}],["slct",{"2":{"2510":1,"2548":1}}],["sl",{"2":{"2301":2}}],["slep",{"2":{"1351":1,"2510":1,"2549":1}}],["sleeping",{"2":{"1625":1,"2418":1}}],["sleep",{"0":{"1381":1,"1387":1},"2":{"70":1,"73":1,"93":1,"190":2,"191":1,"222":1,"249":2,"317":1,"647":1,"1381":1,"1387":1,"1625":1,"1852":1,"2091":1,"2182":2,"2418":1,"2510":2,"2549":2,"2871":2,"2877":2,"2878":2}}],["slovenian",{"2":{"2887":3}}],["slovak",{"2":{"2887":3}}],["slows",{"2":{"1985":1}}],["slowdown",{"2":{"1953":1}}],["slower",{"2":{"1949":1,"1997":1,"2253":1,"2254":1,"2590":1}}],["slowest",{"2":{"1937":1,"1938":1,"1954":1,"2880":1}}],["slowly",{"2":{"1947":1,"2085":1,"2286":1}}],["slow",{"2":{"565":1,"1410":2,"1490":1,"1681":1,"1935":1,"1968":1,"1986":1,"2189":1,"2626":1,"2759":1}}],["slots",{"2":{"218":1}}],["slsh",{"2":{"375":1,"589":2,"2381":1,"2510":1,"2544":1,"2563":1,"2922":1,"2923":1,"2927":1,"2930":1}}],["sla0044",{"2":{"2728":1,"2737":1}}],["slash",{"2":{"1625":1,"1692":1,"2449":1,"2510":2,"2544":1,"2550":1}}],["slashes",{"2":{"149":1}}],["slated",{"2":{"753":1}}],["slate",{"2":{"618":1,"2746":1}}],["slavepin",{"0":{"1251":1},"1":{"1252":1,"1253":1},"2":{"1248":1,"1252":1}}],["slave",{"2":{"74":1,"92":1,"93":1,"107":1,"211":1,"568":2,"570":13,"750":2,"759":2,"923":3,"1094":3,"1128":3,"1200":2,"1247":1,"1248":2,"1265":1,"1835":1,"2043":1,"2096":1,"2191":1,"2198":4,"2261":1,"2275":4,"2276":8,"2277":24,"2278":7,"2279":1,"2288":1,"2378":1}}],["slim",{"2":{"2086":1,"2388":1}}],["sliding",{"2":{"1939":1}}],["slicing",{"2":{"1484":1}}],["slightly",{"2":{"619":1,"696":1,"1199":1,"1214":1,"1286":1,"1493":1,"1496":1,"1614":1,"1681":1,"1994":1,"2269":1,"2379":1,"2498":1,"2503":1,"2746":1,"2919":1}}],["slight",{"2":{"149":1,"236":1,"2085":3}}],["slipped",{"2":{"95":1}}],["smith",{"2":{"2714":1}}],["smithrune",{"2":{"211":1}}],["smp",{"2":{"696":1}}],["smpr",{"2":{"696":1}}],["smartmmd",{"2":{"2567":1}}],["smart",{"2":{"610":1}}],["smallest",{"2":{"2744":1,"2747":1}}],["smaller",{"2":{"134":1,"166":1,"248":1,"249":2,"540":1,"1681":1,"1954":1,"2295":1,"2744":1,"2763":3,"2889":2,"2903":1}}],["smallice",{"2":{"159":2}}],["small",{"0":{"25":1},"2":{"153":1,"174":1,"191":2,"211":1,"277":1,"294":1,"540":1,"572":1,"1283":1,"1517":1,"1525":1,"1526":1,"1622":1,"1679":1,"1935":1,"1938":1,"2178":1,"2280":2,"2393":1,"2421":1,"2424":1,"2427":2,"2429":1,"2463":1,"2567":1,"2569":1,"2586":1,"2640":1,"2941":1}}],["smoke",{"2":{"2428":2}}],["smoothly",{"2":{"2379":1}}],["smoothed",{"2":{"2379":1}}],["smoother",{"2":{"74":1,"564":1,"1935":1,"1936":1,"1986":1}}],["smoothing",{"2":{"1986":2}}],["smoothness",{"2":{"1936":1,"2379":1}}],["smooth1",{"2":{"1686":12}}],["smooth2",{"2":{"1686":12}}],["smooth",{"2":{"308":1,"317":1,"415":1,"1686":5,"1939":1,"1986":1,"2085":3,"2632":1}}],["smoll",{"2":{"241":4,"249":1}}],["smolka",{"2":{"211":1}}],["syllabus",{"0":{"2905":1},"2":{"2574":1}}],["syllable",{"2":{"2291":2}}],["syrq",{"2":{"2510":1,"2548":1}}],["sysreq",{"2":{"2510":1,"2548":1}}],["sys",{"2":{"2059":2}}],["syscalls",{"2":{"308":1}}],["sysclk",{"2":{"134":1}}],["sysex",{"2":{"114":1,"133":1,"134":1}}],["systemctl",{"2":{"1316":2}}],["systemd",{"2":{"1316":1}}],["systems",{"2":{"134":1,"234":1,"651":1,"1351":1,"1472":1,"1919":1,"2325":1,"2330":1,"2417":2,"2475":1,"2738":1,"2742":1,"2777":1,"2785":1,"2889":1,"2930":1}}],["system",{"0":{"140":1,"510":1,"511":1,"1380":1,"2472":1,"2679":1,"2729":1,"2730":1,"2901":1},"1":{"2730":1,"2731":1},"2":{"49":2,"75":1,"76":1,"84":1,"93":1,"114":1,"149":1,"176":1,"231":3,"232":1,"234":1,"249":1,"262":2,"272":1,"283":1,"293":2,"305":2,"314":2,"461":1,"472":1,"493":1,"510":1,"516":1,"538":1,"539":1,"574":1,"648":1,"664":1,"673":1,"710":1,"721":1,"746":1,"752":1,"1292":1,"1316":1,"1351":1,"1380":1,"1630":1,"1632":1,"1844":1,"1846":1,"1853":1,"1934":1,"1935":1,"1964":1,"1988":1,"1990":1,"1993":2,"2016":1,"2057":1,"2080":1,"2082":1,"2092":1,"2219":1,"2260":1,"2267":1,"2294":1,"2331":2,"2378":1,"2405":1,"2410":1,"2416":1,"2418":2,"2471":1,"2472":1,"2475":1,"2510":8,"2548":2,"2549":7,"2593":1,"2603":2,"2607":1,"2612":1,"2653":1,"2658":1,"2678":1,"2692":1,"2717":1,"2726":1,"2729":1,"2730":1,"2731":3,"2734":1,"2760":1,"2764":1,"2809":1,"2818":1,"2884":1,"2889":1,"2901":1,"2919":1,"2920":1}}],["systick",{"0":{"11":1},"2":{"11":2}}],["symb",{"2":{"2770":1}}],["symbol",{"2":{"393":1,"1506":1,"2183":2,"2330":2,"2372":1,"2466":1,"2474":1,"2553":1}}],["symbolic",{"2":{"236":1,"1515":1}}],["symbols",{"0":{"1506":1,"1515":1,"2534":1,"2553":1},"1":{"2554":1,"2555":1},"2":{"176":2,"1510":2,"1516":1,"2329":1,"2418":1,"2509":1,"2534":1}}],["symmetric",{"2":{"1410":2,"2070":1}}],["symmetric70",{"2":{"114":1,"134":1}}],["symlink",{"0":{"510":1},"2":{"510":1,"511":1}}],["symlinks",{"2":{"461":1}}],["sym",{"2":{"94":1,"149":1,"199":1,"236":2,"1410":3,"1413":8,"2330":4,"2854":5}}],["synapse",{"2":{"241":2}}],["synth",{"2":{"1480":2}}],["synthesis",{"2":{"1480":1}}],["synthesis60",{"2":{"211":1}}],["syntaxwarning",{"2":{"249":1}}],["syntax",{"2":{"92":1,"176":1,"191":1,"285":1,"433":1,"1527":1,"2417":1,"2502":1,"2572":1,"2599":1,"2639":1,"2912":2}}],["synchronous",{"2":{"2043":1}}],["synchronizes",{"2":{"2276":1}}],["synchronized",{"2":{"923":1,"1094":1,"1128":1}}],["synchronization",{"0":{"923":1,"1094":1,"1128":1},"2":{"923":1,"1094":1,"1128":1,"2182":1,"2275":1,"2278":1,"2877":1}}],["synchronizing",{"2":{"570":1}}],["synced",{"2":{"1835":1,"2096":1,"2191":1}}],["syncs",{"2":{"570":2}}],["syncing",{"2":{"328":1,"2095":1,"2276":4}}],["sync",{"0":{"1637":1,"2276":1,"2277":1,"2635":1},"1":{"2636":1,"2637":1},"2":{"74":1,"107":1,"112":2,"114":4,"211":1,"222":1,"236":2,"249":2,"285":1,"333":1,"339":1,"565":1,"570":3,"921":12,"923":5,"1092":12,"1094":5,"1126":12,"1128":5,"1171":2,"1420":3,"1472":1,"1637":1,"1835":1,"1987":1,"2095":1,"2096":1,"2189":1,"2191":1,"2275":3,"2276":1,"2277":16,"2632":1,"2637":1,"2880":1}}],["s7",{"2":{"67":4,"72":1}}],["schottky",{"2":{"2280":2}}],["school",{"2":{"2265":1,"2744":1}}],["scheikled",{"2":{"222":1}}],["schemes",{"2":{"690":1,"2846":2}}],["scheme",{"2":{"182":1,"2468":1,"2781":3,"2787":3}}],["schemas",{"2":{"191":1,"308":1,"344":1,"666":1,"668":1,"2851":1}}],["schematics",{"2":{"1382":1}}],["schematic",{"0":{"1558":1,"2468":1},"2":{"93":1,"1313":1,"1378":1,"1382":2}}],["schema",{"0":{"668":1,"2792":1},"2":{"76":2,"149":1,"176":3,"199":1,"222":1,"249":1,"266":2,"277":1,"308":1,"344":1,"666":1,"2746":1,"2851":1}}],["scheduled",{"2":{"401":1,"657":1,"660":1,"2759":1}}],["schedule",{"0":{"88":1,"104":1,"127":1,"170":1},"2":{"184":1}}],["score",{"2":{"2378":1,"2381":1}}],["scope",{"2":{"2016":1,"2249":1,"2727":1,"2936":1,"2937":1}}],["scottoalp",{"2":{"266":1}}],["scottostarter",{"2":{"217":2}}],["scottocmd",{"2":{"217":2}}],["scotto9",{"2":{"217":2}}],["scottokeebs",{"2":{"217":5}}],["scotto36",{"2":{"217":2}}],["scotto40",{"2":{"199":1,"217":2}}],["sck",{"2":{"1247":2,"1248":4,"1299":4,"2668":1,"2702":1,"2763":2}}],["scenario",{"2":{"312":1,"1329":1,"1331":1,"2300":1,"2466":1,"2559":1,"2569":1}}],["scenarios",{"2":{"263":1,"723":1,"2466":1,"2568":1,"2914":1}}],["scenes",{"2":{"198":1,"201":1,"213":1,"224":1,"238":1,"251":1,"2310":1}}],["science",{"2":{"199":1}}],["sclr",{"2":{"2253":1}}],["sclk",{"2":{"1966":2,"1978":2,"1981":2,"1985":3,"2483":1,"2485":1,"2487":2,"2489":1,"2491":2,"2493":2,"2495":1}}],["scll",{"2":{"766":1}}],["sclh",{"2":{"766":1}}],["scldel",{"2":{"766":1}}],["scln",{"2":{"176":1,"375":1,"589":2,"1593":1,"1774":3,"2316":1,"2510":1,"2544":1,"2563":1,"2922":1,"2923":1}}],["scl",{"2":{"176":1,"561":1,"763":3,"764":4,"829":1,"858":1,"890":1,"922":8,"957":8,"991":1,"1025":1,"1059":1,"1093":8,"1127":8,"1161":8,"1217":1,"1682":1,"2267":1,"2702":1}}],["sculpt",{"2":{"149":1,"160":1}}],["scythe",{"2":{"143":2}}],["scylla",{"2":{"114":1,"311":8,"317":1}}],["scary",{"2":{"2943":1}}],["scarlet",{"2":{"211":1}}],["scarletbandana",{"2":{"143":2}}],["scattered",{"2":{"2941":1}}],["scaling",{"0":{"879":1,"881":1,"885":1,"1082":1,"1084":1,"1088":1,"1116":1,"1118":1,"1122":1,"1150":1,"1152":1,"1156":1,"1184":1,"1186":1,"1190":1},"1":{"880":1,"882":1,"886":1,"1083":1,"1085":1,"1089":1,"1117":1,"1119":1,"1123":1,"1151":1,"1153":1,"1157":1,"1185":1,"1187":1,"1191":1},"2":{"176":1,"249":2,"726":2,"879":2,"880":3,"881":2,"882":1,"885":1,"1082":2,"1083":3,"1084":2,"1085":1,"1088":1,"1116":2,"1117":3,"1118":2,"1119":1,"1122":1,"1150":2,"1151":3,"1152":2,"1153":1,"1156":1,"1184":2,"1185":3,"1186":2,"1187":1,"1190":1,"1492":1,"1974":1,"2046":3}}],["scaled",{"2":{"1742":2,"2857":1,"2871":1,"2877":1,"2878":1}}],["scale8",{"2":{"308":1}}],["scale",{"2":{"176":1,"191":1,"199":1,"1490":5,"1492":1,"1980":1,"2086":1,"2747":1}}],["scancode",{"0":{"2840":1},"2":{"2470":2,"2471":1}}],["scancodes",{"2":{"1357":1,"2470":2,"2563":1,"2846":1}}],["scans",{"2":{"1410":2,"1427":1}}],["scanned",{"2":{"696":1,"1329":1,"1331":1,"2466":10}}],["scanning",{"0":{"643":1,"2936":1},"1":{"644":1,"645":1,"2937":1,"2938":1,"2939":1,"2940":1},"2":{"49":1,"134":1,"266":1,"574":1,"622":1,"624":2,"625":3,"643":1,"645":1,"719":1,"720":1,"1410":4,"1681":1,"2269":1,"2418":1,"2466":1,"2709":1,"2759":1,"2794":1,"2872":2,"2935":1,"2936":4,"2937":2,"2939":2}}],["scanf",{"2":{"396":1}}],["scan",{"0":{"644":1,"645":1,"1331":1},"2":{"31":1,"65":1,"93":2,"112":1,"113":1,"114":1,"149":2,"176":2,"196":1,"199":2,"214":1,"277":1,"333":1,"624":1,"625":5,"645":3,"646":2,"647":1,"711":1,"1331":7,"1410":2,"1413":1,"1414":1,"1462":1,"1591":5,"1681":2,"1949":1,"1980":1,"2275":1,"2276":1,"2288":1,"2298":1,"2384":1,"2391":1,"2456":1,"2469":1,"2563":1,"2938":1,"2939":3}}],["sc",{"2":{"55":11,"2256":7,"2257":7,"2259":1,"2260":1,"2538":7}}],["scratch",{"2":{"2417":1,"2658":1}}],["scr",{"2":{"1945":1,"2284":1}}],["scrutiny",{"2":{"414":1}}],["scrl",{"2":{"375":1,"589":2,"1354":1,"2510":1,"2545":1,"2564":1}}],["scrollwheel",{"2":{"2046":1}}],["scrolls",{"2":{"1949":1}}],["scroll",{"0":{"1993":2,"1994":1,"2048":1,"2050":1},"2":{"175":1,"176":3,"188":1,"191":1,"199":1,"222":1,"236":2,"308":1,"570":1,"1693":1,"1835":1,"1836":2,"1838":1,"1930":1,"1934":5,"1935":4,"1937":13,"1938":1,"1945":1,"1948":2,"1949":3,"1954":7,"1971":3,"1974":1,"1976":5,"1977":3,"1985":3,"1986":11,"1992":1,"1993":4,"1994":25,"1997":1,"2046":3,"2048":15,"2050":1,"2284":1,"2287":1,"2510":4,"2545":4,"2867":2,"2935":1}}],["scrolling",{"0":{"1986":1},"2":{"48":1,"175":1,"308":1,"1493":1,"1849":6,"1934":2,"1935":4,"1936":1,"1937":1,"1943":4,"1948":1,"1954":17,"1971":1,"1986":8,"1990":2,"1992":1,"1993":5,"1994":18,"1995":1,"1996":8,"1997":1,"2046":1,"2048":2,"2085":9}}],["screw",{"2":{"114":1}}],["screens",{"2":{"651":1,"1954":1,"2439":1}}],["screen",{"0":{"1776":1},"2":{"34":1,"153":1,"570":1,"1493":1,"1648":1,"1694":1,"1776":1,"1939":1,"1946":1,"1947":1,"1949":3,"1953":2,"1954":12,"1955":1,"2276":2,"2285":1,"2286":1,"2288":1,"2290":11,"2510":2,"2548":2,"2587":1,"2659":1,"2662":1,"2764":11}}],["script",{"2":{"94":1,"114":2,"134":1,"149":3,"191":1,"199":1,"277":1,"285":1,"312":1,"397":2,"426":1,"487":1,"489":2,"510":1,"511":1,"709":1,"1318":1,"2407":1,"2626":1}}],["scripts",{"2":{"10":1,"211":1,"312":1,"397":2}}],["shcurl",{"2":{"2623":1,"2625":1,"2626":1}}],["shcd",{"2":{"1628":1,"2605":1,"2606":1}}],["shqmk",{"2":{"1388":1,"1527":1,"2583":2,"2584":2,"2587":2,"2607":1,"2609":1,"2616":2,"2628":4,"2629":2}}],["sheer",{"2":{"2902":1}}],["sheet",{"2":{"716":2,"721":2,"1483":1}}],["shenzhen",{"2":{"2567":1}}],["she",{"2":{"1673":1}}],["shell",{"2":{"116":1,"176":1,"249":1,"432":2,"487":1,"2071":1,"2411":1,"2678":1}}],["shade",{"2":{"2762":4}}],["shades",{"2":{"2086":1}}],["shall",{"2":{"2309":1,"2746":1}}],["shapes",{"2":{"2797":1}}],["shaped",{"2":{"2278":1}}],["shapped",{"2":{"2085":1}}],["sha",{"2":{"588":2}}],["sha1",{"2":{"411":1}}],["shandoncodes",{"2":{"241":5,"249":1}}],["shark",{"2":{"2567":1}}],["sharkropad",{"2":{"328":1}}],["sharp2",{"2":{"1686":12}}],["sharp1",{"2":{"1686":12}}],["sharp",{"2":{"1686":8,"1925":30,"2421":1,"2527":30}}],["sharing",{"0":{"1463":1},"1":{"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1},"2":{"107":1,"1343":1,"1630":1,"1670":1,"2720":1}}],["shares",{"2":{"1592":1,"2726":1}}],["share",{"2":{"63":1,"474":1,"1343":1,"1439":1,"1463":1,"1467":1,"1662":1,"1670":2,"1671":1,"2450":1,"2566":1,"2680":1,"2739":1}}],["shared",{"0":{"2668":1},"2":{"30":1,"33":1,"50":1,"107":1,"112":2,"114":1,"138":1,"160":1,"190":1,"191":1,"262":1,"561":1,"575":2,"688":1,"1464":1,"1472":1,"1853":1,"1941":1,"1989":2,"2092":1,"2181":1,"2450":1,"2666":1,"2668":4,"2691":2,"2726":1,"2882":3}}],["shutdown",{"0":{"229":1,"651":1,"652":1,"653":1,"654":1},"1":{"652":1,"653":1,"654":1},"2":{"229":6,"230":1,"236":2,"249":1,"266":1,"277":1,"288":1,"333":1,"651":3,"652":2,"653":1,"654":2,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1626":1,"1638":3,"1948":1}}],["sh1107",{"2":{"210":1,"294":1,"1943":4,"1945":1,"1949":1,"1952":1,"1953":3,"1954":1}}],["sh1106",{"2":{"153":1,"232":2,"1943":2,"1945":1,"1949":2,"1953":2,"1954":1,"2760":6,"2763":16}}],["shpkg",{"2":{"2627":1}}],["shpython3",{"2":{"158":1}}],["shpacman",{"2":{"158":1}}],["shbrew",{"2":{"158":1}}],["sh",{"2":{"114":1,"199":1,"422":1,"426":2,"488":1,"509":1,"510":3,"511":1,"1316":1,"1318":1,"1686":10,"2304":10,"2407":7,"2539":8,"2593":1,"2608":1,"2623":1,"2624":1,"2625":1,"2626":1}}],["shine",{"2":{"2805":1,"2845":1}}],["shiny",{"2":{"2427":1,"2428":1}}],["ships",{"2":{"2567":1}}],["shipping",{"2":{"2465":2}}],["shipped",{"2":{"709":1,"2498":1,"2568":1,"2571":1,"2734":1,"2746":1}}],["ship",{"2":{"1203":1,"1204":1,"2569":1}}],["shisaku",{"2":{"211":1}}],["shield",{"2":{"113":1,"114":1}}],["shifting",{"2":{"1499":2,"1519":1,"1600":1}}],["shifter",{"0":{"1298":1},"2":{"333":2,"639":1,"1297":1,"1298":1}}],["shifted",{"0":{"1517":1,"2534":1,"2553":1},"1":{"2554":1,"2555":1},"2":{"176":1,"188":1,"191":2,"249":1,"266":1,"749":2,"1496":1,"1498":3,"1499":3,"1503":3,"1510":5,"1517":12,"1518":3,"1522":1,"1533":1,"1593":2,"1600":2,"1673":1,"1765":1,"2069":2,"2074":1,"2085":1,"2534":1,"2553":1,"2578":1,"2929":1}}],["shift+option",{"2":{"2510":1}}],["shift+v",{"2":{"1624":1}}],["shift+s",{"2":{"1597":1}}],["shift+a",{"2":{"1597":2}}],["shift+escape",{"2":{"710":1}}],["shift+b",{"2":{"710":1}}],["shift+right",{"2":{"710":3,"1624":2}}],["shift+click",{"2":{"320":1,"2930":1}}],["shift+2",{"2":{"99":1}}],["shifts",{"2":{"134":2,"1367":2,"1593":1,"1594":4,"1595":2,"1919":1,"2085":4,"2861":1}}],["shift",{"0":{"1367":1,"1496":2,"1497":1,"1499":1,"1500":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1518":1,"1519":1,"1520":1,"1597":1,"2513":1,"2841":1,"2929":1},"1":{"1497":2,"1498":2,"1499":2,"1500":2,"1501":2,"1502":2,"1503":3,"1504":3,"1505":3,"1506":3,"1507":3,"1508":3,"1509":3,"1510":3,"1511":3,"1512":3,"1513":3,"1514":3,"1515":3,"1516":3,"1517":2,"1518":2,"1519":3,"1520":2,"1521":3,"1522":3,"1523":3},"2":{"49":1,"63":1,"99":1,"114":1,"134":4,"152":4,"176":1,"188":1,"191":1,"211":3,"222":2,"236":2,"255":1,"257":1,"258":1,"259":2,"353":1,"561":1,"605":1,"710":1,"762":2,"1352":1,"1362":9,"1363":14,"1364":11,"1367":7,"1379":1,"1423":2,"1451":2,"1457":1,"1472":4,"1496":1,"1497":2,"1498":10,"1499":5,"1500":1,"1501":4,"1502":3,"1503":7,"1504":1,"1505":2,"1506":1,"1507":1,"1508":1,"1509":1,"1510":10,"1512":1,"1516":1,"1517":7,"1518":9,"1519":3,"1520":1,"1521":12,"1522":4,"1523":1,"1529":1,"1532":2,"1533":3,"1593":2,"1594":9,"1595":4,"1597":10,"1600":3,"1605":1,"1617":1,"1624":1,"1625":1,"1672":1,"1673":1,"1674":1,"1676":2,"1690":1,"1762":2,"1765":1,"1766":2,"1767":1,"1774":6,"1776":5,"1777":2,"1784":1,"1785":2,"1786":6,"1788":1,"1795":1,"1949":1,"2065":3,"2068":2,"2069":5,"2074":4,"2181":10,"2255":4,"2256":6,"2257":6,"2258":1,"2260":4,"2288":1,"2318":1,"2330":1,"2332":1,"2351":1,"2460":1,"2510":4,"2511":2,"2513":13,"2519":1,"2529":16,"2530":14,"2532":10,"2535":14,"2538":6,"2540":1,"2546":4,"2553":1,"2554":1,"2575":20,"2576":2,"2612":2,"2650":4,"2651":14,"2652":4,"2682":4,"2752":2,"2831":1,"2841":3,"2861":6,"2869":1,"2911":1,"2915":6,"2916":3,"2921":2,"2925":2,"2928":1,"2929":3,"2930":2,"2940":1,"2945":2}}],["shore",{"2":{"2941":1}}],["shorting",{"2":{"2434":1,"2690":1}}],["shorts",{"2":{"2425":1,"2427":1}}],["shortcuts",{"0":{"2071":1},"2":{"1448":1,"1450":1,"1766":1,"1767":1,"1787":2,"1788":1,"2071":1,"2079":1,"2331":1,"2474":1,"2553":1,"2575":1,"2928":1}}],["shortcut",{"2":{"1366":1,"1367":1,"1675":2,"1945":1,"2247":1,"2248":1,"2284":1,"2291":1,"2620":1,"2837":1}}],["shortly",{"2":{"634":1,"1786":1,"2300":1}}],["shortest",{"2":{"1503":1}}],["shorted",{"2":{"569":1,"2690":1}}],["shorter",{"2":{"516":1,"1286":1,"1662":1,"1936":1,"2604":1}}],["shortened",{"2":{"202":1,"2812":1,"2868":1}}],["shorten",{"2":{"149":1,"1415":1}}],["shorthands",{"2":{"2089":1,"2205":1}}],["shorthand",{"2":{"199":1,"2639":1,"2794":1}}],["shortages",{"2":{"172":1}}],["short",{"2":{"114":1,"123":1,"134":1,"266":1,"297":1,"521":1,"525":1,"527":1,"540":1,"599":1,"613":2,"615":1,"675":1,"683":1,"684":1,"720":2,"768":1,"1312":1,"1335":1,"1409":1,"1498":1,"1594":1,"1609":2,"1686":16,"1786":3,"1790":1,"1802":1,"1957":1,"2066":2,"2265":2,"2319":1,"2383":1,"2386":1,"2388":1,"2389":1,"2391":1,"2393":1,"2395":1,"2398":1,"2425":1,"2429":1,"2430":1,"2433":1,"2434":1,"2612":1,"2650":1,"2690":1,"2691":1,"2806":1,"2856":1,"2868":1,"2922":1,"2924":1}}],["shop",{"2":{"2490":1,"2895":1}}],["shooting",{"2":{"2434":1}}],["shot",{"0":{"1352":1,"1371":1,"2535":1,"2650":1,"2874":1},"1":{"2651":1,"2652":1},"2":{"93":1,"160":2,"188":1,"191":1,"194":1,"199":1,"231":1,"562":1,"564":1,"1352":1,"1364":11,"1371":1,"1422":1,"1533":3,"1594":2,"1597":2,"1765":2,"1789":1,"1999":2,"2000":1,"2304":1,"2535":7,"2539":1,"2650":8,"2651":10,"2652":7,"2874":1,"2911":2,"2919":1,"2921":1,"2948":1}}],["showcasing",{"2":{"2746":1}}],["showed",{"2":{"1523":1}}],["shows",{"2":{"362":1,"377":1,"475":1,"582":1,"583":1,"615":1,"1430":1,"1431":1,"1774":1,"1779":1,"2417":2,"2692":1,"2709":1}}],["shown",{"2":{"134":1,"156":1,"565":1,"690":1,"729":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1203":1,"1204":1,"1219":1,"1346":1,"1705":1,"1709":1,"1713":1,"1769":1,"2192":1,"2295":1,"2296":1,"2423":2,"2780":1,"2885":1,"2912":1,"2919":1,"2927":1}}],["show",{"2":{"83":1,"114":1,"119":1,"176":1,"230":1,"254":1,"285":1,"434":4,"437":4,"452":1,"453":1,"454":1,"455":2,"460":1,"461":1,"469":1,"492":1,"647":1,"1313":1,"1376":1,"1701":1,"1705":1,"1709":1,"1995":1,"2188":1,"2298":1,"2417":2,"2464":1,"2466":2,"2554":1,"2576":1,"2627":1,"2634":1,"2678":1,"2709":1,"2717":1,"2762":3}}],["showing",{"2":{"70":1,"77":1,"312":1,"565":1,"1313":1,"1409":1,"2188":1,"2653":1,"2673":1,"2800":1}}],["shouldn",{"2":{"560":1,"634":1,"1376":1,"1526":1,"1956":1,"2275":1,"2428":1,"2746":1}}],["should",{"2":{"3":1,"6":1,"10":2,"11":1,"15":1,"17":1,"49":1,"70":1,"103":1,"125":1,"126":1,"131":2,"156":1,"157":2,"167":1,"182":1,"185":2,"194":1,"198":1,"201":7,"206":1,"234":1,"236":1,"240":1,"245":1,"249":1,"254":1,"268":1,"271":1,"275":1,"279":1,"304":2,"317":1,"332":1,"340":1,"344":3,"353":1,"365":1,"368":1,"377":3,"381":1,"383":1,"386":1,"394":2,"396":1,"398":1,"403":3,"419":1,"423":1,"465":1,"469":1,"491":2,"493":2,"494":3,"500":1,"506":1,"512":1,"516":2,"519":1,"521":1,"525":2,"527":1,"531":1,"532":1,"535":1,"537":1,"541":1,"557":1,"576":1,"588":6,"589":1,"614":1,"615":3,"617":1,"618":1,"619":5,"627":2,"630":1,"632":1,"633":1,"639":3,"640":1,"643":1,"644":1,"645":1,"647":1,"656":1,"657":2,"659":1,"668":1,"675":1,"677":2,"682":1,"683":1,"701":1,"710":1,"711":2,"712":1,"720":2,"733":1,"754":1,"756":1,"762":1,"793":1,"798":1,"809":1,"835":1,"867":1,"897":1,"932":1,"966":1,"1000":1,"1034":1,"1068":1,"1102":1,"1136":1,"1170":1,"1192":1,"1199":1,"1203":1,"1204":1,"1223":1,"1248":1,"1305":1,"1313":1,"1314":1,"1315":1,"1319":1,"1320":2,"1336":2,"1344":1,"1349":1,"1362":1,"1381":1,"1407":3,"1410":1,"1417":1,"1426":2,"1433":1,"1435":1,"1438":1,"1446":1,"1466":1,"1467":1,"1472":2,"1480":1,"1483":1,"1491":1,"1503":1,"1510":1,"1522":1,"1527":1,"1532":1,"1533":2,"1544":1,"1556":1,"1593":1,"1595":1,"1600":3,"1612":3,"1613":3,"1633":1,"1634":1,"1640":1,"1643":3,"1661":1,"1662":1,"1667":1,"1669":2,"1704":1,"1742":1,"1781":1,"1836":1,"1844":1,"1949":1,"1962":1,"1984":1,"1987":1,"2008":2,"2009":1,"2012":1,"2015":1,"2058":1,"2080":1,"2179":1,"2181":1,"2184":1,"2212":1,"2218":1,"2265":1,"2267":1,"2275":1,"2277":2,"2297":1,"2298":1,"2300":1,"2310":1,"2317":1,"2396":1,"2417":2,"2428":4,"2431":1,"2432":1,"2434":2,"2450":2,"2451":3,"2452":1,"2453":4,"2454":1,"2456":3,"2457":1,"2460":1,"2461":1,"2464":3,"2466":3,"2485":1,"2487":1,"2489":1,"2501":1,"2502":2,"2504":1,"2508":2,"2565":1,"2566":1,"2567":2,"2569":2,"2584":1,"2587":1,"2589":1,"2603":1,"2612":1,"2619":1,"2622":1,"2629":2,"2637":1,"2639":1,"2667":3,"2669":3,"2676":2,"2678":1,"2683":4,"2687":1,"2691":1,"2711":1,"2712":1,"2714":1,"2717":2,"2718":1,"2720":1,"2723":1,"2744":4,"2745":3,"2746":19,"2747":8,"2750":1,"2761":1,"2763":2,"2764":6,"2769":1,"2777":1,"2781":2,"2783":1,"2792":1,"2860":1,"2869":3,"2872":1,"2882":2,"2889":1,"2906":2,"2908":1,"2912":1,"2926":1,"2943":2,"2946":1,"2949":1}}],["sadly",{"2":{"2628":1}}],["sabayon",{"2":{"2593":1}}],["sasha",{"2":{"2425":1,"2436":1}}],["said",{"2":{"1450":1,"2567":3}}],["saikoutype",{"2":{"249":1}}],["salt",{"2":{"2390":1}}],["sall",{"2":{"2253":1}}],["salad",{"2":{"1376":1}}],["salicylic",{"2":{"143":13,"149":2,"211":1,"308":1}}],["sag",{"2":{"1364":1}}],["sa",{"2":{"1364":1,"1776":2}}],["sake",{"2":{"1347":1}}],["sanitisation",{"2":{"1532":1}}],["sanitise",{"2":{"1532":1}}],["sane",{"2":{"719":2}}],["sango",{"2":{"249":1}}],["sacrifices",{"2":{"719":1}}],["says",{"2":{"2410":1,"2567":3,"2612":1,"2943":1}}],["saying",{"2":{"604":1,"2628":1}}],["say",{"2":{"596":1,"1364":1,"1762":1,"1851":1,"2090":1,"2259":1,"2260":1,"2300":1,"2419":1,"2622":1,"2775":1,"2936":1}}],["sawnsprojects",{"2":{"211":2,"249":1}}],["sauce",{"2":{"211":1}}],["saevus",{"2":{"211":1,"281":2,"285":1}}],["safemode",{"2":{"2502":1}}],["safest",{"2":{"1668":1}}],["safety",{"0":{"1376":1,"2314":1},"2":{"2275":1,"2314":1}}],["safe",{"2":{"199":1,"229":2,"294":1,"593":1,"616":1,"629":3,"1446":3,"1462":1,"1472":5,"1924":1,"1962":1,"1993":1,"1994":1,"2013":1,"2071":1,"2079":1,"2599":2,"2742":1,"2912":1}}],["safely",{"2":{"31":1,"34":1,"240":1,"646":1,"1947":1,"2286":1,"2503":1,"2628":1,"2640":1}}],["savage65",{"2":{"308":1}}],["saves",{"2":{"1974":1,"1990":1,"2640":2}}],["save",{"0":{"600":1},"2":{"249":1,"285":2,"499":1,"562":1,"600":1,"648":1,"1417":1,"1471":1,"1493":1,"1538":1,"1609":1,"1766":1,"2186":1,"2275":1,"2432":1,"2504":1,"2591":2,"2598":1,"2599":1,"2619":2,"2634":1,"2636":1,"2640":1,"2676":1,"2681":1,"2889":1,"2893":1}}],["saved",{"2":{"131":1,"452":1,"453":1,"1320":1,"1417":1,"1589":1}}],["saving",{"2":{"131":1,"134":1,"641":3,"665":1,"2795":1}}],["savings",{"2":{"25":1,"2889":1}}],["sata",{"2":{"2265":1}}],["satan",{"2":{"429":3,"2615":1}}],["satisfied",{"2":{"600":1,"2912":1,"2913":1}}],["satisfaction75",{"2":{"134":2,"199":1,"249":1}}],["satu",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2532":1,"2533":1}}],["saturation",{"2":{"111":1,"114":1,"565":1,"2084":4,"2085":6,"2091":2,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2180":2,"2181":6,"2182":2,"2201":8,"2532":6,"2533":4,"2764":2,"2782":1,"2877":2,"2878":2}}],["satd",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2532":1,"2533":1}}],["satellite",{"2":{"191":1,"211":1}}],["satt99",{"2":{"149":1}}],["satt",{"2":{"143":1,"149":1,"176":1}}],["sat",{"0":{"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2201":1},"1":{"2132":1},"2":{"49":1,"183":2,"222":3,"354":1,"377":2,"565":1,"2085":12,"2091":2,"2182":2,"2186":1,"2201":4,"2204":2,"2454":2,"2764":11,"2877":1,"2878":2,"2894":3}}],["sampling",{"2":{"149":1,"696":2,"741":1,"1577":1,"2379":1,"2858":1}}],["sampled",{"2":{"1410":1}}],["samples",{"2":{"719":2,"1480":1,"1488":1,"1579":1,"1742":1,"2569":1}}],["sample",{"2":{"31":1,"176":1,"222":1,"719":6,"720":4,"745":1,"1252":4,"1480":6,"1488":4,"1502":1,"1526":1,"1579":1,"1582":1,"1755":1,"2043":1,"2046":3,"2379":6,"2472":1,"2858":1}}],["same",{"2":{"27":1,"45":2,"73":1,"157":1,"166":1,"169":1,"222":1,"234":1,"235":1,"289":1,"307":2,"341":1,"375":1,"512":2,"521":1,"555":1,"570":2,"581":1,"588":2,"599":1,"600":1,"605":1,"627":1,"656":1,"659":1,"666":1,"690":1,"712":1,"722":1,"753":1,"756":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1200":1,"1219":1,"1286":1,"1338":2,"1353":1,"1361":1,"1362":1,"1364":1,"1388":1,"1410":1,"1425":1,"1428":1,"1439":2,"1442":1,"1463":1,"1464":1,"1465":2,"1466":1,"1470":1,"1501":1,"1533":1,"1538":3,"1546":2,"1595":1,"1605":1,"1608":1,"1611":1,"1612":3,"1619":2,"1622":2,"1635":1,"1636":1,"1643":1,"1662":1,"1670":1,"1787":1,"1801":1,"1844":1,"1846":1,"1849":4,"1934":1,"1935":1,"1939":3,"1940":1,"1953":1,"1983":3,"2000":1,"2047":1,"2051":1,"2057":1,"2070":3,"2080":1,"2082":1,"2085":5,"2191":1,"2206":1,"2258":1,"2261":1,"2278":1,"2294":1,"2303":1,"2309":2,"2310":2,"2317":1,"2330":1,"2384":1,"2391":1,"2396":1,"2405":1,"2407":1,"2417":1,"2424":1,"2427":1,"2428":1,"2444":1,"2450":2,"2453":1,"2454":1,"2464":1,"2499":1,"2561":1,"2567":2,"2602":1,"2603":1,"2607":2,"2612":1,"2622":1,"2633":2,"2634":1,"2637":1,"2638":1,"2686":1,"2709":1,"2711":3,"2713":1,"2720":1,"2726":1,"2728":1,"2733":1,"2744":1,"2746":4,"2761":1,"2762":4,"2763":2,"2769":1,"2790":1,"2795":1,"2843":1,"2869":1,"2890":1,"2919":1,"2925":3,"2926":3,"2935":1,"2944":1,"2948":1}}],["sprintf",{"2":{"2889":2,"2893":2}}],["springgreen",{"2":{"2089":2,"2205":2}}],["spring",{"2":{"1685":1}}],["springs",{"2":{"1685":1}}],["spread",{"2":{"2086":2,"2481":1}}],["spreads",{"2":{"2086":1}}],["spruce",{"2":{"222":1}}],["splash",{"2":{"1849":3,"2085":6,"2894":2}}],["splaytoraid",{"2":{"266":1,"322":4,"328":1}}],["spleeb",{"2":{"317":1}}],["splicing",{"2":{"1486":1}}],["splinky",{"2":{"176":1,"311":13,"2706":1}}],["splitography",{"2":{"2294":1}}],["splitting",{"0":{"416":1}}],["splitty",{"2":{"253":2}}],["split75",{"2":{"159":2}}],["splitreus62",{"2":{"143":2}}],["splitkb",{"2":{"102":1,"114":1,"134":2,"211":1,"222":1,"277":1}}],["split",{"0":{"30":1,"32":1,"35":1,"80":1,"107":1,"138":1,"567":1,"1590":1,"1637":1,"1666":1,"1987":1,"1989":1,"1995":1,"2261":1,"2426":1,"2704":1,"2880":1},"1":{"31":1,"36":1,"568":1,"569":1,"570":1,"1996":1,"1997":1,"2262":1,"2263":1,"2264":1,"2265":1,"2266":1,"2267":1,"2268":1,"2269":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2275":1,"2276":1,"2277":1,"2278":1,"2279":1,"2280":1,"2281":1},"2":{"30":3,"32":2,"45":3,"65":2,"70":28,"74":3,"80":1,"92":2,"93":4,"94":1,"107":7,"111":1,"112":10,"114":13,"134":4,"138":1,"143":8,"149":10,"160":3,"175":1,"176":15,"191":7,"199":3,"211":7,"222":9,"236":5,"249":4,"253":2,"259":5,"260":2,"266":8,"270":2,"277":11,"285":2,"300":1,"308":3,"332":1,"333":1,"337":1,"339":2,"561":1,"565":6,"567":5,"568":8,"569":7,"570":26,"574":5,"670":2,"1192":2,"1197":2,"1198":1,"1205":1,"1392":1,"1393":1,"1395":2,"1397":1,"1414":1,"1433":1,"1439":3,"1492":1,"1590":3,"1637":1,"1639":1,"1666":3,"1835":2,"1852":3,"1948":2,"1949":1,"1974":1,"1977":1,"1983":1,"1985":1,"1987":1,"1989":1,"1995":1,"2014":1,"2091":3,"2095":2,"2096":2,"2179":2,"2182":2,"2189":4,"2191":2,"2207":1,"2261":4,"2265":2,"2268":1,"2269":2,"2271":1,"2272":3,"2273":10,"2274":1,"2275":5,"2276":21,"2277":4,"2278":14,"2279":3,"2280":2,"2281":2,"2287":2,"2305":1,"2378":1,"2385":3,"2387":3,"2394":3,"2399":2,"2401":2,"2403":2,"2418":9,"2426":2,"2439":1,"2526":2,"2552":2,"2704":1,"2721":1,"2746":1,"2747":1,"2852":1,"2871":2,"2877":4,"2878":2,"2880":5,"2908":1,"2926":1}}],["splits",{"2":{"18":1,"35":1,"114":1}}],["sponge",{"2":{"2427":1}}],["spots",{"2":{"605":1}}],["spot",{"2":{"251":1,"599":2,"651":1,"2564":1}}],["spooky",{"2":{"176":1}}],["sp111",{"2":{"211":1}}],["spc",{"2":{"195":1,"266":1,"375":2,"589":2,"1593":1,"1622":2,"2309":3,"2510":1,"2544":1,"2563":2,"2910":1,"2912":1,"2921":1,"2922":1,"2923":2,"2928":4}}],["spdu",{"2":{"1667":1,"1848":1,"2084":1,"2087":1,"2181":1,"2525":1,"2532":1,"2533":1}}],["spdd",{"2":{"1667":1,"1848":1,"2084":1,"2087":1,"2181":1,"2525":1,"2532":1,"2533":1}}],["spdx",{"2":{"1630":1,"2750":2}}],["spd",{"2":{"183":4,"222":1,"1852":2,"2091":2,"2182":1}}],["spacing",{"2":{"2599":1,"2745":1}}],["space+b",{"2":{"710":1}}],["spaces",{"0":{"605":1},"2":{"354":1,"475":1,"512":2,"514":1,"578":1,"580":1,"586":2,"2278":1,"2720":1,"2745":1,"2896":1,"2937":1}}],["spacebars",{"2":{"259":1}}],["spacebar",{"2":{"259":1,"2510":1,"2544":1,"2612":1}}],["spacey",{"0":{"255":1},"2":{"241":2,"255":1,"266":1}}],["spaceholdings",{"2":{"143":3,"149":2,"253":2,"266":1}}],["space",{"0":{"123":1,"2255":1,"2538":1,"2841":1},"1":{"2256":1,"2257":1,"2258":1,"2259":1,"2260":1},"2":{"49":2,"123":1,"124":3,"134":1,"143":8,"166":1,"176":3,"188":1,"189":1,"191":2,"203":1,"211":2,"249":1,"255":1,"259":1,"260":1,"545":1,"589":1,"605":2,"671":1,"720":1,"1423":1,"1471":1,"1490":1,"1493":1,"1528":1,"1538":1,"1593":1,"1594":1,"1662":1,"1692":1,"1766":1,"2184":1,"2255":1,"2257":7,"2258":1,"2259":3,"2260":3,"2297":1,"2309":2,"2330":1,"2345":1,"2379":1,"2381":1,"2510":1,"2538":8,"2544":1,"2576":1,"2590":1,"2664":1,"2726":1,"2753":1,"2841":1,"2886":1,"2893":2,"2894":1,"2907":1,"2923":1,"2940":1}}],["spaceman",{"2":{"37":4}}],["span",{"2":{"2057":1}}],["spanish",{"2":{"176":1,"249":1,"1593":1,"2887":9}}],["spamming",{"2":{"222":1,"2949":1}}],["sparse",{"2":{"328":1}}],["spare",{"2":{"218":1,"1473":1}}],["sparkfun",{"0":{"271":1,"1394":1,"2490":1},"1":{"2491":1},"2":{"163":1,"176":1,"271":3,"277":1,"546":1,"749":3,"1389":1,"1391":3,"2374":2,"2484":1,"2486":1,"2490":3,"2499":4,"2702":2,"2895":1}}],["sp",{"2":{"134":1,"211":1}}],["spi0",{"2":{"2698":2}}],["spiral",{"2":{"1849":4,"2085":12,"2894":3}}],["spid0",{"2":{"2698":1,"2702":1}}],["spid2",{"2":{"1248":2}}],["spid1",{"2":{"1248":1,"1299":1,"2698":1}}],["spiderisland",{"2":{"143":1}}],["spidey3",{"2":{"74":1,"176":1,"191":1}}],["spi3",{"2":{"1248":1}}],["spi2",{"2":{"1248":4}}],["spi1",{"2":{"1248":2,"1299":2,"2698":2}}],["spinning",{"2":{"1849":3,"2085":9}}],["spins",{"2":{"1684":1}}],["spin",{"2":{"176":1}}],["spi",{"0":{"750":1,"755":1,"759":1,"1245":1,"1250":1,"1251":1,"1254":2,"1257":2,"1259":2,"1262":2,"1265":1,"1294":1,"1299":1,"1951":1,"2375":1,"2698":1},"1":{"1246":1,"1247":1,"1248":1,"1249":1,"1250":1,"1251":1,"1252":2,"1253":2,"1254":1,"1255":3,"1256":3,"1257":1,"1258":3,"1259":1,"1260":3,"1261":3,"1262":1,"1263":3,"1264":3,"1265":1,"1300":1,"1301":1},"2":{"93":1,"114":2,"118":2,"134":1,"149":2,"174":1,"176":9,"210":1,"232":1,"234":4,"236":5,"277":2,"285":1,"294":1,"308":1,"317":3,"724":1,"725":1,"726":4,"728":1,"746":3,"750":9,"753":2,"755":2,"758":1,"759":6,"1245":1,"1246":3,"1247":3,"1248":23,"1250":1,"1251":1,"1252":4,"1253":1,"1254":1,"1256":2,"1257":1,"1258":1,"1259":1,"1261":3,"1262":1,"1264":3,"1265":2,"1289":1,"1294":4,"1299":12,"1300":2,"1301":1,"1943":1,"1945":2,"1951":4,"1967":8,"1973":2,"1974":9,"1979":2,"1982":2,"1983":4,"2283":1,"2288":2,"2374":3,"2375":5,"2431":1,"2668":3,"2689":1,"2692":2,"2695":1,"2698":4,"2702":6,"2705":1,"2744":1,"2760":25,"2763":71,"2864":2,"2883":2}}],["spent",{"2":{"2936":1}}],["spend",{"2":{"173":1,"1525":1,"2749":1}}],["speaks",{"2":{"2294":1}}],["speak",{"2":{"2294":2}}],["speakers",{"2":{"715":1,"716":1,"1484":1}}],["speaker",{"2":{"715":3,"1473":1,"1474":3,"1475":1,"1477":2,"1481":1,"1483":1,"1484":1,"1486":5,"2221":1,"2384":2,"2391":2,"2689":1,"2691":2,"2856":3,"2876":2}}],["spelled",{"2":{"1528":1}}],["spelling",{"2":{"49":1,"92":1,"1448":2,"2291":1}}],["speculation",{"2":{"2930":2}}],["speculatively",{"2":{"320":1,"2930":2}}],["speculative",{"0":{"320":1,"2930":1},"2":{"320":5,"328":2,"339":3,"2930":18}}],["specially",{"2":{"2077":1}}],["specialization",{"2":{"1638":1}}],["specializations",{"2":{"1638":1}}],["specialized",{"2":{"1291":1,"2501":1}}],["special",{"0":{"1355":1,"1380":1,"1504":1,"1516":1,"2551":1},"2":{"222":1,"482":1,"491":1,"564":1,"626":1,"646":1,"709":1,"768":1,"1247":1,"1268":1,"1283":1,"1422":1,"1473":1,"1490":1,"1502":1,"1503":2,"1504":1,"1505":1,"1510":1,"1527":1,"1532":1,"1618":1,"1765":1,"1855":1,"1992":1,"2094":1,"2178":1,"2220":1,"2297":1,"2330":1,"2431":1,"2484":1,"2488":1,"2558":1,"2563":1,"2612":2,"2665":1,"2746":1,"2751":1,"2770":1,"2807":1,"2841":1,"2910":1,"2912":1}}],["specifying",{"2":{"76":1,"87":1,"103":1,"118":1,"126":1,"166":1,"170":2,"211":1,"246":1,"247":1,"341":1,"473":1,"533":1,"754":2,"1423":2,"1456":1,"2407":1,"2616":1,"2762":1}}],["specify",{"2":{"55":1,"87":1,"134":1,"169":1,"184":1,"201":1,"234":1,"375":1,"430":1,"477":1,"489":1,"533":1,"564":1,"570":2,"572":1,"670":1,"1200":1,"1207":1,"1376":1,"1417":1,"1436":1,"1527":1,"1589":2,"1620":1,"1630":1,"1666":1,"1681":1,"1843":1,"1952":1,"1964":1,"1970":2,"2191":1,"2206":1,"2278":3,"2308":1,"2309":1,"2417":1,"2418":1,"2419":1,"2502":1,"2584":1,"2587":1,"2616":1,"2639":1,"2691":1,"2700":1,"2718":1,"2719":1,"2762":7,"2778":1,"2923":1,"2926":2,"2949":1}}],["specifiers",{"2":{"2889":1}}],["specifies",{"2":{"1410":1,"1773":1,"1776":1,"1980":1,"2417":1,"2746":1,"2781":2,"2851":1,"2930":1}}],["specified",{"0":{"141":1},"2":{"49":1,"58":1,"70":14,"109":1,"149":1,"184":1,"302":1,"430":2,"442":1,"443":1,"459":1,"470":1,"565":1,"572":2,"655":1,"693":2,"694":3,"749":2,"750":1,"759":5,"1292":1,"1410":1,"1428":12,"1444":1,"1448":1,"1634":1,"1666":1,"1711":1,"1770":1,"1850":1,"1954":1,"2069":1,"2088":1,"2191":2,"2271":1,"2290":1,"2300":1,"2309":2,"2331":1,"2379":2,"2400":1,"2402":1,"2404":1,"2417":6,"2450":1,"2454":1,"2502":1,"2554":1,"2576":2,"2616":2,"2628":1,"2652":1,"2683":2,"2719":1,"2720":1,"2746":1,"2762":7,"2763":3,"2778":1,"2787":1,"2790":1,"2853":2,"2869":1,"2926":2}}],["specifics",{"2":{"714":1,"1300":1,"1320":1}}],["specifications",{"2":{"1970":2}}],["specification",{"0":{"1924":1,"1928":1},"2":{"169":1,"182":1,"184":1,"1350":1,"1398":1,"1923":1,"2057":1,"2470":1,"2751":1}}],["specifically",{"2":{"107":1,"2424":1,"2645":1,"2709":1,"2728":1,"2777":1,"2785":1,"2931":1}}],["specific",{"0":{"1468":1,"2431":1,"2884":1},"1":{"2885":1,"2886":1,"2887":1},"2":{"5":1,"21":1,"49":1,"74":2,"77":1,"94":1,"113":1,"114":2,"118":1,"124":1,"133":3,"134":3,"176":2,"191":2,"199":1,"211":2,"386":1,"429":1,"433":1,"459":1,"516":1,"567":1,"611":1,"668":1,"691":1,"696":1,"710":1,"721":1,"752":1,"793":1,"798":1,"1205":1,"1358":1,"1364":2,"1392":1,"1393":1,"1405":1,"1438":1,"1442":1,"1464":1,"1466":1,"1472":3,"1489":1,"1684":1,"1685":2,"1687":1,"1689":1,"1762":1,"1781":1,"1850":1,"1954":2,"1956":2,"1970":1,"1984":1,"2000":1,"2042":1,"2044":1,"2088":1,"2096":1,"2222":1,"2261":1,"2290":1,"2310":1,"2317":1,"2383":1,"2401":1,"2403":1,"2414":2,"2417":1,"2418":1,"2435":1,"2450":1,"2459":1,"2475":1,"2482":1,"2568":1,"2612":1,"2663":1,"2683":1,"2696":1,"2727":1,"2744":1,"2745":3,"2746":4,"2756":1,"2758":1,"2764":2,"2765":1,"2767":1,"2776":1,"2796":2,"2851":3,"2884":2,"2887":1,"2894":1,"2912":1,"2935":1,"2940":1,"2945":1}}],["specs",{"2":{"114":1}}],["spec",{"2":{"114":1,"592":1,"1835":1,"1990":4,"2267":1,"2884":1}}],["speeds",{"2":{"570":1,"1930":1,"1934":2,"1937":3,"1938":2,"1954":1,"2187":1,"2211":1}}],["speedo",{"0":{"56":1},"2":{"56":6}}],["speed",{"0":{"1885":1,"1886":1,"1887":1,"1888":1,"1889":2,"1891":2,"1893":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":2,"2145":2,"2147":1,"2187":1,"2202":1},"1":{"1890":2,"1892":2,"1894":1,"2144":2,"2146":2,"2148":1},"2":{"49":3,"112":2,"114":1,"198":1,"222":1,"317":1,"429":1,"561":1,"566":1,"570":4,"765":1,"1207":4,"1252":2,"1294":1,"1410":1,"1472":1,"1487":1,"1490":1,"1848":4,"1849":2,"1852":2,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":2,"1891":1,"1892":2,"1893":1,"1894":1,"1925":4,"1934":6,"1935":10,"1936":14,"1937":12,"1938":4,"1939":5,"1949":1,"1954":3,"1967":2,"1968":2,"1974":2,"1983":3,"1994":2,"2047":1,"2084":4,"2085":5,"2087":1,"2091":2,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":2,"2145":1,"2146":2,"2147":1,"2148":1,"2181":6,"2182":1,"2202":12,"2204":2,"2209":2,"2210":2,"2211":1,"2252":1,"2275":2,"2276":1,"2469":1,"2503":1,"2510":1,"2525":4,"2527":4,"2532":6,"2533":4,"2871":4,"2873":1,"2877":2,"2878":4,"2880":2}}],["stsw",{"2":{"2506":1}}],["stk500v1",{"2":{"2486":1}}],["stk500",{"2":{"2486":1}}],["st4",{"2":{"2301":1}}],["st3",{"2":{"2301":1}}],["st2",{"2":{"2301":1}}],["st1",{"2":{"2301":1}}],["st110r2",{"2":{"249":1}}],["stn",{"2":{"2300":5,"2301":113}}],["stmc",{"2":{"1395":2}}],["stm",{"2":{"1395":1}}],["stmicroelectronics",{"0":{"548":1},"2":{"393":1}}],["stm32cubemx",{"2":{"1300":1}}],["stm32s",{"2":{"721":1}}],["stm32h733",{"2":{"548":1}}],["stm32h723",{"2":{"222":1,"548":1}}],["stm32g0x1",{"2":{"308":1}}],["stm32g431",{"2":{"77":1,"548":1}}],["stm32g4xx",{"2":{"74":1,"249":1}}],["stm32g474",{"2":{"49":1,"77":1,"548":1}}],["stm32g4",{"2":{"49":1}}],["stm32duino",{"0":{"2395":1,"2505":1},"1":{"2506":1,"2507":1,"2508":1},"2":{"114":1,"548":1,"713":1,"2393":1,"2395":2,"2505":1}}],["stm32f2",{"2":{"1483":1}}],["stm32f2xx",{"2":{"765":1}}],["stm32f7xx",{"2":{"766":1}}],["stm32f070",{"2":{"757":1}}],["stm32f072xb",{"2":{"746":1}}],["stm32f072",{"0":{"1212":1},"2":{"50":1,"191":1,"757":1}}],["stm32f042",{"2":{"757":1,"2393":1}}],["stm32f0",{"2":{"694":1}}],["stm32f0x2",{"2":{"548":1}}],["stm32f0xx",{"2":{"199":1,"690":1,"753":1,"757":1,"766":1}}],["stm32f1x",{"2":{"2508":2}}],["stm32f1xx",{"2":{"93":1,"690":2,"746":1,"765":1,"1477":1,"1481":1,"1483":1}}],["stm32f103c8",{"2":{"716":1,"721":2,"723":1}}],["stm32f103c6",{"2":{"176":1}}],["stm32f103x",{"2":{"690":1}}],["stm32f103",{"0":{"1213":1},"2":{"199":1,"548":1,"554":1,"1198":1,"1200":1,"1201":1,"1213":1,"2393":1,"2395":1,"2482":1,"2505":1,"2508":1}}],["stm32f3discovery",{"2":{"397":2}}],["stm32f303xc",{"2":{"2424":1,"2688":1,"2709":2}}],["stm32f303xe",{"2":{"160":1}}],["stm32f303",{"0":{"1211":1},"2":{"444":1,"548":1,"554":1,"764":1,"1200":1,"1248":1,"1269":1,"1556":1,"1681":1,"2683":2,"2691":1}}],["stm32f303cct6",{"2":{"723":1,"2689":1}}],["stm32f303cc",{"2":{"393":1}}],["stm32f3",{"2":{"222":1,"393":2,"397":1,"694":1}}],["stm32f3xx",{"2":{"93":1,"690":1,"746":1,"766":1}}],["stm32f4x1",{"0":{"2664":1},"1":{"2665":1,"2666":1,"2667":1,"2668":1,"2669":1,"2670":1,"2671":1,"2672":1},"2":{"753":1,"757":1}}],["stm32f4xx",{"2":{"93":1,"690":2,"765":1}}],["stm32f411",{"2":{"433":1,"548":1,"757":1}}],["stm32f4",{"2":{"285":1}}],["stm32f407",{"2":{"548":1}}],["stm32f407x",{"2":{"114":1}}],["stm32f405vg",{"2":{"723":1}}],["stm32f405",{"2":{"548":1}}],["stm32f405rg",{"2":{"277":1}}],["stm32f401",{"2":{"548":1,"757":1}}],["stm32f446",{"2":{"93":1,"328":1,"548":1}}],["stm32l1xx",{"2":{"746":1,"765":1}}],["stm32l073rz",{"2":{"2746":1}}],["stm32l072",{"2":{"2711":1}}],["stm32l0xx",{"2":{"746":1,"765":1}}],["stm32l0",{"2":{"294":1,"748":1}}],["stm32l082kz",{"2":{"2746":1}}],["stm32l082",{"2":{"49":1,"2711":1}}],["stm32l443",{"2":{"548":1}}],["stm32l442",{"2":{"145":1,"149":1,"548":1}}],["stm32l422",{"2":{"548":1}}],["stm32l422xb",{"2":{"114":1}}],["stm32l412",{"2":{"548":1}}],["stm32l412xb",{"2":{"114":1}}],["stm32l4xx",{"2":{"249":1,"766":1}}],["stm32l432",{"2":{"145":1,"149":1,"236":1,"548":1}}],["stm32l433",{"2":{"93":1,"548":1}}],["stm32l4+",{"2":{"49":1}}],["stm32",{"0":{"548":1,"690":1,"748":1,"1210":1,"2393":1,"2709":1,"2710":1,"2711":1,"2712":1},"1":{"1211":1,"1212":1,"1213":1,"2394":1},"2":{"49":4,"50":2,"65":1,"114":1,"131":1,"133":1,"134":5,"176":3,"211":1,"222":1,"277":1,"285":1,"291":2,"294":1,"308":1,"713":2,"716":1,"717":10,"718":6,"721":2,"748":1,"764":7,"768":4,"798":1,"1198":2,"1200":1,"1201":2,"1203":4,"1204":4,"1248":3,"1269":3,"1299":3,"1300":1,"1303":5,"1392":1,"1477":2,"1483":1,"1556":3,"1557":3,"1740":1,"1953":1,"2393":3,"2394":1,"2396":1,"2482":1,"2505":1,"2508":1,"2612":1,"2685":8,"2691":1,"2707":1,"2709":8,"2710":2,"2711":2,"2853":1,"2864":1}}],["stylus",{"2":{"1645":1,"1974":1}}],["styling",{"0":{"349":1},"1":{"350":1,"351":1,"352":1,"353":1,"354":1,"355":1,"356":1,"357":1,"358":1,"359":1,"360":1,"361":1},"2":{"243":1,"331":1,"341":1}}],["styled",{"0":{"678":1},"1":{"679":1,"680":1},"2":{"678":1}}],["styles",{"2":{"527":1,"614":1,"619":1,"1311":1,"2941":1}}],["style=file",{"2":{"513":1}}],["style",{"0":{"243":1},"2":{"133":1,"134":1,"176":1,"199":1,"243":1,"265":1,"283":2,"331":1,"341":2,"491":1,"492":6,"494":2,"495":2,"497":2,"498":2,"512":9,"514":1,"515":1,"526":1,"529":2,"614":1,"619":2,"674":1,"1632":1,"1977":1,"2320":1,"2499":1,"2676":2}}],["st7789",{"2":{"2760":2,"2763":8}}],["st7735",{"2":{"176":1,"236":1,"2760":2,"2763":8}}],["st7565p",{"2":{"2283":1}}],["st7565r",{"2":{"2283":1}}],["st7565",{"0":{"2282":1},"1":{"2283":1,"2284":1,"2285":1,"2286":1,"2287":1,"2288":1,"2289":1,"2290":1},"2":{"114":5,"191":1,"570":2,"2276":2,"2283":1,"2284":11,"2285":1,"2286":4,"2287":3,"2288":13,"2289":11,"2290":39,"2880":2}}],["stdlayout",{"2":{"420":1}}],["stderr",{"2":{"378":1,"2946":1}}],["stdout",{"2":{"378":1}}],["std",{"2":{"339":1,"765":1}}],["stdint",{"2":{"176":1}}],["stdbool",{"2":{"73":1}}],["stilgar",{"2":{"2425":1}}],["still",{"2":{"16":1,"124":2,"125":1,"156":1,"170":1,"185":1,"191":2,"203":1,"228":3,"232":1,"241":1,"253":1,"270":1,"273":1,"281":1,"340":1,"370":1,"423":1,"494":1,"513":1,"526":1,"569":1,"749":1,"757":1,"1320":1,"1362":1,"1367":2,"1377":1,"1472":1,"1490":1,"1491":1,"1499":1,"1503":1,"1533":1,"1663":1,"1670":1,"1690":3,"1770":1,"1785":2,"1802":1,"2059":1,"2259":1,"2300":1,"2309":1,"2317":3,"2428":2,"2466":1,"2603":3,"2617":1,"2637":1,"2728":1,"2764":1,"2850":1,"2884":1,"2889":1,"2895":1,"2904":1,"2909":1,"2912":2,"2913":1,"2919":1,"2930":1}}],["sticky",{"2":{"2435":1,"2650":1,"2834":1}}],["stick",{"2":{"1433":1,"1488":1,"1968":1}}],["stickandgum",{"2":{"114":1}}],["steve",{"2":{"2255":1,"2941":1}}],["steelseries",{"2":{"285":1,"328":1}}],["stef9998",{"2":{"253":2}}],["steadily",{"2":{"251":1}}],["steal",{"2":{"143":2}}],["stello65",{"2":{"211":1}}],["stella",{"2":{"143":2}}],["stemcell",{"0":{"1395":1,"1400":1},"2":{"176":1,"311":6,"317":1,"1389":2,"1391":3,"1395":3,"1399":3,"1400":1,"2895":1}}],["stenographers",{"2":{"2291":1}}],["stenography",{"0":{"2291":1,"2299":1,"2881":1},"1":{"2292":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2299":1,"2300":1,"2301":1},"2":{"2291":2,"2294":2,"2296":1,"2297":2,"2298":2,"2299":1,"2881":3,"2908":1}}],["stenotype",{"2":{"2079":1,"2298":1}}],["stenothe",{"2":{"197":1}}],["steno",{"0":{"2292":1,"2294":1,"2298":1},"1":{"2295":1,"2296":1,"2297":1},"2":{"114":1,"176":4,"199":1,"231":3,"236":1,"249":1,"2210":1,"2291":2,"2292":3,"2293":1,"2294":4,"2295":4,"2296":2,"2297":10,"2298":4,"2299":1,"2300":13,"2301":2,"2881":1,"2940":1}}],["stepped",{"2":{"1986":1}}],["stepping",{"2":{"194":1,"1493":2}}],["steps",{"0":{"602":1},"2":{"111":3,"191":1,"211":1,"222":2,"231":1,"255":1,"595":1,"633":1,"1195":1,"1198":1,"1201":1,"1203":1,"1204":1,"1388":1,"1414":1,"1493":1,"1852":1,"1935":1,"1937":8,"1944":1,"1959":1,"2091":1,"2185":2,"2187":6,"2210":1,"2250":2,"2251":1,"2252":2,"2253":4,"2254":6,"2284":1,"2583":1,"2599":1,"2600":1,"2617":1,"2637":1,"2658":1,"2871":3,"2877":3,"2878":5,"2901":1,"2944":1}}],["step",{"0":{"595":2,"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"1563":1,"1873":1,"1874":1,"1875":1,"1876":1,"1899":1,"1900":1,"1901":1,"1902":1,"2115":1,"2116":1,"2117":1,"2118":1,"2153":1,"2154":1,"2155":1,"2156":1,"2250":1,"2338":1,"2339":1},"1":{"596":2,"597":2,"598":2,"599":2,"600":2,"601":2,"602":2},"2":{"49":1,"63":1,"222":2,"354":2,"375":1,"565":6,"629":1,"665":1,"1198":2,"1201":2,"1522":2,"1543":2,"1681":3,"1850":2,"1852":2,"1934":2,"1935":2,"1936":2,"1940":2,"2086":1,"2088":2,"2091":4,"2182":3,"2185":2,"2186":2,"2199":4,"2249":1,"2251":1,"2253":4,"2254":16,"2319":1,"2410":1,"2423":1,"2436":2,"2454":6,"2496":1,"2504":1,"2515":2,"2564":1,"2584":1,"2586":1,"2589":2,"2592":1,"2598":1,"2599":1,"2601":1,"2637":1,"2641":1,"2658":2,"2709":1,"2889":1,"2940":1}}],["story",{"2":{"512":1,"514":1}}],["stores",{"2":{"753":1,"1367":1,"1410":1,"1538":1,"2939":1}}],["store",{"2":{"339":1,"495":1,"578":2,"613":1,"647":2,"754":1,"755":1,"756":1,"1367":1,"1416":1,"1417":1,"1525":1,"1661":1,"1962":9,"1994":1,"2259":1,"2590":1,"2603":1,"2607":2,"2608":1,"2705":1,"2949":1}}],["stored",{"0":{"2606":1},"2":{"228":2,"490":1,"569":1,"1348":1,"1364":1,"1415":1,"1419":2,"1526":1,"1533":1,"1538":1,"1625":1,"1702":1,"1926":1,"1953":1,"1962":1,"2297":1,"2329":1,"2557":1,"2590":1,"2603":1,"2614":1,"2761":1}}],["storing",{"2":{"224":1,"1525":1,"1538":1,"2603":1}}],["storage",{"0":{"1853":1,"2092":1,"2774":1},"2":{"93":1,"131":1,"366":1,"751":1,"753":1,"754":2,"755":1,"756":3,"757":1,"2273":1,"2407":1,"2676":1,"2700":1,"2734":1,"2761":1,"2774":1,"2864":1}}],["stone",{"2":{"194":1}}],["stock",{"2":{"114":1,"380":1,"568":1,"569":1,"2273":1,"2292":1,"2745":1,"2895":1}}],["stopped",{"2":{"651":2,"1664":1,"2764":1}}],["stopping",{"2":{"211":1,"648":1,"714":1,"1427":1,"1686":1}}],["stops",{"2":{"588":1,"1387":1,"1593":1,"1935":1,"1936":2,"1939":2,"1954":1,"2201":8,"2379":1,"2559":1,"2757":1,"2764":1}}],["stop",{"0":{"1265":1,"2632":1},"2":{"74":1,"134":1,"160":1,"176":1,"222":1,"277":1,"720":1,"1490":2,"1535":1,"1600":1,"1661":2,"1925":1,"1939":1,"2043":1,"2191":1,"2198":2,"2253":1,"2254":1,"2278":1,"2298":1,"2435":1,"2510":6,"2518":1,"2526":1,"2527":1,"2548":2,"2549":4,"2552":1,"2764":6}}],["sturdy",{"2":{"2428":1,"2429":1}}],["stumbled",{"2":{"604":1}}],["stuttered",{"2":{"294":1}}],["stub",{"2":{"236":1}}],["stubs",{"2":{"114":1,"2942":1}}],["stuck",{"0":{"1353":1},"2":{"211":1,"222":1,"263":1,"294":1,"1353":1,"1491":1,"2008":1}}],["studiokestra",{"2":{"226":2}}],["studios",{"2":{"211":1}}],["studio",{"0":{"2673":1,"2683":1},"2":{"67":3,"132":1,"207":4,"211":16,"249":1,"291":2,"294":2,"2567":1,"2673":1,"2676":1,"2683":1}}],["stuff",{"2":{"50":2,"114":1,"231":2,"634":1,"637":1,"1463":2,"1464":2,"1605":1,"2417":1,"2561":1,"2889":1}}],["stlink",{"2":{"49":1,"2394":1,"2506":3,"2508":3}}],["st",{"2":{"49":1,"266":1,"389":2,"1490":2,"1556":1,"2394":6,"2505":1,"2506":3,"2507":2,"2508":7,"2727":1,"2728":3,"2733":2,"2734":1,"2736":1,"2737":1,"2742":1,"2746":1,"2802":1}}],["stapelberg",{"2":{"2663":2}}],["staff",{"2":{"2566":1}}],["staying",{"2":{"2431":1}}],["stay",{"2":{"279":1,"1789":2,"2499":1}}],["stays",{"2":{"199":1,"1417":1,"1498":1,"1681":1,"1791":1}}],["staging",{"2":{"2640":2}}],["staggering",{"2":{"1471":1}}],["staggered",{"2":{"211":1,"2429":1}}],["stage2",{"2":{"176":1}}],["stage",{"0":{"2705":1},"2":{"119":1,"156":1,"2683":1,"2684":1,"2687":1,"2705":1}}],["stabilisers",{"2":{"2421":1,"2422":1}}],["stability",{"0":{"1959":1},"2":{"1670":1,"1960":1}}],["stabilizes",{"2":{"1959":1}}],["stabilize",{"2":{"176":1,"191":1}}],["stable",{"2":{"211":1,"294":2,"412":1,"1959":2,"1960":1}}],["stacks",{"0":{"2736":1},"2":{"2728":1,"2731":1,"2738":1,"2742":1}}],["stackexchange",{"2":{"1558":1}}],["stacked",{"2":{"222":1}}],["stacktrace",{"2":{"525":1}}],["stack",{"0":{"2728":1},"2":{"199":2,"222":1,"364":2,"546":1,"563":1,"1421":1,"1422":2,"1427":1,"2004":1,"2008":2,"2012":2,"2015":3,"2298":1,"2320":1,"2557":1,"2559":1,"2657":1,"2728":2,"2733":1}}],["stale",{"2":{"191":1}}],["stands",{"2":{"2694":1}}],["stand",{"2":{"1326":1}}],["standpoint",{"2":{"628":1,"1343":2}}],["standing",{"2":{"154":1}}],["standalone",{"2":{"698":1,"725":1,"761":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1}}],["standaside",{"2":{"143":2,"149":1}}],["standards",{"2":{"244":1,"266":1,"308":1,"1192":1,"1343":1,"1433":1,"2569":1,"2746":1,"2902":1}}],["standardisation",{"2":{"238":1}}],["standardised",{"2":{"198":1,"2760":1}}],["standardise",{"2":{"149":1,"182":1}}],["standardizing",{"2":{"616":1}}],["standardization",{"2":{"236":1,"266":2}}],["standardized",{"2":{"134":1}}],["standard",{"2":{"125":2,"134":1,"163":1,"176":3,"185":2,"191":1,"199":1,"220":2,"266":1,"308":1,"320":1,"490":1,"513":1,"516":1,"538":1,"567":1,"574":2,"798":1,"1248":1,"1346":1,"1490":3,"1632":1,"1765":1,"1784":1,"1785":1,"1786":1,"1841":2,"1974":1,"1999":1,"2291":1,"2293":2,"2294":2,"2296":1,"2325":1,"2417":1,"2418":2,"2486":1,"2553":1,"2626":1,"2682":1,"2706":1,"2746":4,"2751":1,"2756":1,"2764":1,"2799":1,"2804":1,"2837":2,"2838":1,"2889":1,"2930":1}}],["star",{"2":{"713":1,"1804":2,"2386":1,"2499":1}}],["starlight",{"2":{"236":1,"277":1,"294":1,"308":1,"317":1,"2085":12}}],["staryu",{"2":{"102":2}}],["started",{"0":{"1767":1,"2478":1},"2":{"583":1,"616":1,"633":1,"634":1,"637":1,"684":2,"1312":1,"1335":1,"1336":1,"1343":1,"1425":1,"1614":1,"1615":1,"1954":1,"2481":1,"2586":1,"2591":1,"2619":1,"2655":1,"2659":1,"2674":1,"2714":1,"2764":1,"2795":1,"2934":1}}],["start=none",{"2":{"524":1}}],["starting",{"0":{"2422":1},"2":{"119":1,"512":1,"646":1,"714":1,"1484":1,"1493":1,"1525":1,"1538":1,"1662":1,"1802":1,"1949":1,"2189":2,"2272":1,"2288":1,"2317":1,"2428":1,"2447":1,"2508":2,"2655":1,"2674":1,"2714":1,"2764":1,"2779":1,"2787":1,"2882":1,"2890":1,"2922":1}}],["start",{"0":{"1251":1,"1336":1,"1807":1,"1812":1,"2344":1,"2359":1,"2405":1},"1":{"1252":1,"1253":1,"2406":1,"2407":1,"2408":1,"2409":1},"2":{"50":1,"75":1,"132":1,"191":3,"196":1,"198":1,"211":1,"277":1,"353":1,"383":1,"412":5,"448":1,"449":1,"450":1,"489":1,"512":2,"521":1,"524":7,"544":1,"564":1,"576":1,"618":1,"668":1,"675":1,"684":1,"712":1,"1198":1,"1201":1,"1247":1,"1248":2,"1251":1,"1265":1,"1327":1,"1336":1,"1340":1,"1431":3,"1464":1,"1490":1,"1492":1,"1503":1,"1539":1,"1661":5,"1662":1,"1664":2,"1713":1,"1798":2,"1802":1,"1804":4,"1949":1,"1954":7,"1968":1,"2009":1,"2057":1,"2185":2,"2198":4,"2249":1,"2251":1,"2253":1,"2254":1,"2288":1,"2290":5,"2295":1,"2326":1,"2330":1,"2407":1,"2410":1,"2422":1,"2427":1,"2432":1,"2466":1,"2518":4,"2567":1,"2582":1,"2585":1,"2589":1,"2614":1,"2622":1,"2629":1,"2634":2,"2638":1,"2651":1,"2657":1,"2678":1,"2682":2,"2683":1,"2685":1,"2700":1,"2776":1,"2779":1,"2780":1,"2781":1,"2787":1,"2907":1,"2930":1,"2934":1,"2949":1}}],["startup",{"0":{"2934":1},"2":{"49":1,"65":1,"112":1,"114":1,"134":1,"183":8,"191":3,"266":1,"574":2,"633":2,"634":1,"1485":3,"1486":4,"1551":1,"1687":1,"1957":1,"1961":1,"2278":1,"2331":1,"2659":1,"2860":1,"2882":2}}],["starts",{"2":{"49":1,"369":1,"460":1,"574":1,"1383":1,"1485":1,"1486":1,"1498":1,"1939":1,"1954":2,"2001":1,"2273":1,"2762":1,"2934":1}}],["stat",{"2":{"1985":1}}],["station",{"2":{"2280":2,"2421":1}}],["stating",{"2":{"414":1,"2567":1}}],["statically",{"2":{"2726":1,"2763":1}}],["static",{"2":{"50":1,"214":1,"328":1,"354":1,"461":1,"579":1,"647":2,"1367":1,"1420":2,"1527":1,"1743":3,"1839":1,"1849":2,"1850":5,"1946":1,"1947":1,"1948":1,"1996":1,"2079":2,"2085":5,"2088":5,"2181":2,"2182":1,"2183":3,"2184":2,"2186":1,"2187":1,"2277":1,"2285":1,"2286":1,"2287":1,"2317":1,"2318":1,"2319":1,"2532":2,"2653":1,"2726":1,"2727":1,"2733":1,"2742":1,"2763":1,"2764":11,"2778":1,"2779":1,"2781":1,"2783":1,"2787":1,"2788":1,"2877":1,"2894":1,"2948":1}}],["statuses",{"2":{"377":1}}],["status",{"0":{"377":1,"769":1,"772":1,"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"1254":1,"1257":1,"1259":1,"1262":1,"1536":1,"2192":1,"2558":1},"1":{"770":1,"771":1,"773":1,"774":1,"776":1,"777":1,"779":1,"780":1,"782":1,"783":1,"785":1,"786":1,"788":1,"789":1,"791":1,"792":1,"794":1,"795":1,"1255":1,"1256":1,"1258":1,"1260":1,"1261":1,"1263":1,"1264":1},"2":{"92":1,"149":1,"191":2,"199":2,"366":1,"367":1,"374":1,"377":2,"579":1,"580":1,"581":3,"582":2,"583":2,"584":2,"645":1,"771":3,"774":3,"777":3,"780":3,"783":3,"786":3,"789":3,"792":3,"795":3,"1256":2,"1258":1,"1261":3,"1264":3,"1329":1,"1367":3,"1413":2,"1417":2,"1431":1,"1471":1,"1526":1,"1529":1,"1530":1,"1621":2,"1625":2,"1678":4,"1945":2,"1948":1,"1985":1,"1988":9,"2009":1,"2015":1,"2096":1,"2188":1,"2204":1,"2276":6,"2284":2,"2287":1,"2295":1,"2514":1,"2526":1,"2535":1,"2552":1,"2558":1,"2651":1,"2692":1,"2700":1,"2880":2,"2888":1,"2935":2}}],["stats",{"2":{"50":1}}],["stateless",{"2":{"2869":1}}],["state|default",{"2":{"2095":1,"2096":1}}],["state++",{"2":{"1850":1,"2088":1}}],["stated",{"2":{"1629":1,"2713":1}}],["states",{"2":{"247":1,"646":1,"1362":1,"1409":1,"1640":1,"1747":1,"1990":1,"2034":1,"2036":1,"2318":2,"2319":1,"2634":1}}],["statement",{"0":{"231":1},"2":{"194":1,"236":1,"317":1,"333":1,"512":2,"518":1,"591":1,"1438":1,"1446":1,"1533":1,"1622":1,"2309":1,"2464":1}}],["statements",{"0":{"518":1},"2":{"160":1,"231":1,"516":1,"518":1,"520":1,"525":1,"528":1,"532":1,"535":1,"666":1,"2949":1}}],["state",{"0":{"14":1,"323":1,"1364":1,"1430":1,"1432":1,"1545":1,"1601":1,"1609":1,"1794":1,"1840":1,"1842":1,"1906":1,"2166":1,"2769":2,"2939":1},"1":{"1365":1,"1366":1,"1367":1,"1843":1,"1907":1,"2167":1,"2770":2},"2":{"14":2,"31":1,"49":1,"50":1,"62":1,"63":1,"74":1,"93":1,"105":10,"112":1,"114":2,"149":3,"166":2,"176":2,"179":1,"199":2,"211":1,"247":1,"285":3,"298":1,"323":9,"325":7,"328":2,"512":1,"561":3,"565":1,"570":7,"613":1,"625":2,"639":4,"656":1,"714":1,"716":7,"717":4,"718":1,"722":1,"745":1,"749":1,"1205":1,"1292":1,"1356":1,"1362":7,"1364":9,"1367":9,"1409":1,"1410":1,"1413":7,"1417":10,"1425":1,"1428":37,"1430":6,"1431":7,"1432":9,"1451":1,"1470":18,"1485":1,"1486":2,"1495":1,"1496":1,"1498":2,"1499":1,"1503":3,"1518":1,"1521":1,"1539":3,"1544":3,"1545":2,"1558":1,"1570":1,"1575":1,"1597":1,"1601":1,"1609":1,"1613":1,"1620":1,"1621":2,"1638":6,"1641":7,"1648":4,"1650":1,"1651":3,"1662":2,"1681":1,"1746":1,"1747":1,"1751":1,"1753":1,"1781":1,"1793":1,"1794":2,"1795":1,"1835":7,"1836":2,"1837":4,"1838":7,"1839":8,"1840":5,"1841":1,"1842":1,"1847":1,"1850":3,"1852":1,"1858":1,"1860":1,"1862":1,"1863":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"1906":1,"1907":1,"1941":1,"1945":6,"1947":1,"1948":1,"1990":1,"1994":7,"1996":6,"2008":12,"2009":2,"2011":10,"2012":12,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2075":2,"2079":1,"2083":1,"2088":3,"2091":1,"2095":6,"2096":5,"2100":1,"2102":1,"2104":1,"2105":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2166":1,"2167":1,"2188":1,"2190":23,"2191":3,"2200":2,"2203":2,"2213":1,"2214":1,"2216":1,"2276":9,"2284":6,"2286":1,"2287":1,"2309":1,"2310":4,"2314":4,"2315":10,"2316":14,"2317":40,"2318":29,"2319":35,"2351":1,"2456":1,"2512":1,"2513":1,"2526":1,"2552":1,"2558":8,"2634":2,"2641":1,"2651":1,"2652":3,"2669":1,"2764":2,"2769":3,"2770":17,"2854":2,"2856":4,"2857":4,"2861":1,"2866":1,"2867":2,"2871":1,"2872":2,"2877":1,"2878":1,"2879":1,"2880":7,"2892":2,"2936":1,"2937":1,"2939":2,"2949":4}}],["struggle",{"2":{"2835":1}}],["structs",{"2":{"236":1,"249":1,"285":2,"2777":1,"2785":1}}],["struct",{"0":{"731":1,"807":1,"833":1,"865":1,"895":1,"930":1,"964":1,"998":1,"1032":1,"1066":1,"1100":1,"1134":1,"1168":1,"1221":1,"1650":1,"1746":1,"1748":1},"1":{"732":1,"808":1,"834":1,"866":1,"896":1,"931":1,"965":1,"999":1,"1033":1,"1067":1,"1101":1,"1135":1,"1169":1,"1222":1,"1651":1,"1747":1,"1749":1},"2":{"31":1,"236":1,"266":1,"328":1,"1417":1,"1420":1,"1648":1,"1769":1,"1837":1,"1846":1,"1926":1,"1954":1,"1955":1,"2082":1,"2164":1,"2277":2,"2290":1,"2316":1,"2317":1,"2319":1,"2778":1,"2779":1,"2780":1,"2781":1,"2782":2,"2783":1,"2784":1,"2787":1,"2788":1,"2789":2}}],["structured",{"2":{"627":1,"1988":1,"1989":1}}],["structures",{"2":{"211":1,"558":1}}],["structure",{"0":{"2412":1,"2413":1,"2414":1,"2415":1,"2451":1},"1":{"2413":1,"2414":1,"2415":1,"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":1},"2":{"22":1,"125":1,"185":1,"236":1,"323":1,"540":1,"757":1,"765":1,"766":1,"1417":5,"1463":1,"1525":2,"1602":1,"1947":2,"1988":1,"1989":1,"2057":1,"2286":2,"2310":2,"2319":1,"2414":2,"2556":1,"2585":1,"2603":1,"2777":1,"2785":1,"2944":1}}],["stroke",{"2":{"2295":1,"2300":2}}],["strokes",{"2":{"2291":2,"2295":1,"2296":1,"2298":1}}],["stronger",{"2":{"2436":1}}],["strongly",{"2":{"182":1,"403":1,"1193":1,"1627":1,"1629":1,"1939":1,"2605":1,"2626":1,"2627":1,"2747":1}}],["strong",{"2":{"182":1,"403":2,"531":1,"537":1,"1686":10,"2212":1,"2427":1,"2434":1,"2746":1}}],["stress",{"2":{"1802":1}}],["strength",{"2":{"1680":2,"1688":1,"2669":1}}],["stretching",{"2":{"1497":1}}],["streamed",{"2":{"2764":1}}],["stream2",{"2":{"1303":1}}],["streampad",{"2":{"249":1}}],["stream",{"2":{"50":1,"114":1,"134":1,"1303":2,"1534":1,"2046":2}}],["streamline",{"2":{"50":1,"425":1}}],["streams",{"2":{"49":2}}],["strategies",{"2":{"2936":1}}],["strategy",{"2":{"312":1,"2599":1}}],["stranded",{"2":{"2429":1}}],["strange",{"2":{"14":1}}],["straight",{"2":{"2407":1,"2427":1,"2432":1}}],["straightforward",{"2":{"417":1,"472":1,"495":1,"683":1,"1375":1,"2483":1,"2617":1}}],["strain",{"2":{"2291":1}}],["strapped",{"2":{"1953":1}}],["stray",{"2":{"199":1,"211":1}}],["str",{"0":{"2349":1},"1":{"2350":1},"2":{"160":1,"191":1,"671":1,"1450":4,"1534":1,"1535":4,"1686":8,"2301":4,"2350":1,"2764":3,"2889":3,"2893":5}}],["strives",{"2":{"2902":1}}],["strike",{"2":{"182":1,"240":1}}],["stringified",{"2":{"2948":1}}],["stringify",{"2":{"1968":1}}],["strings",{"0":{"529":1,"1450":1},"2":{"176":1,"191":1,"308":1,"433":2,"475":1,"491":1,"526":1,"529":1,"670":1,"671":2,"675":1,"1333":1,"1443":2,"1448":2,"1450":1,"1534":2,"1801":1,"2059":1,"2384":1,"2391":1,"2948":1}}],["string",{"0":{"370":1,"371":1,"372":1,"1446":1,"2219":1,"2228":2,"2230":2,"2232":2,"2234":2,"2247":2,"2248":2,"2349":1,"2948":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"2220":1,"2221":1,"2222":1,"2223":1,"2224":1,"2225":1,"2226":1,"2227":1,"2228":1,"2229":3,"2230":1,"2231":3,"2232":1,"2233":3,"2234":1,"2235":3,"2236":1,"2237":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":1,"2245":1,"2246":1,"2247":1,"2248":1,"2350":1},"2":{"94":1,"114":2,"149":1,"157":1,"160":3,"176":1,"190":1,"191":4,"196":5,"211":1,"249":1,"266":1,"294":1,"308":2,"482":1,"491":2,"494":1,"588":3,"593":6,"670":1,"671":1,"1327":8,"1330":5,"1446":9,"1448":21,"1450":7,"1471":2,"1472":3,"1486":1,"1490":2,"1534":1,"1535":5,"1538":4,"1539":1,"1605":1,"1622":2,"1715":1,"1716":1,"1717":1,"1718":1,"1798":5,"1801":1,"1804":2,"1945":1,"1954":6,"2071":2,"2076":2,"2077":3,"2079":10,"2219":1,"2220":2,"2222":5,"2223":1,"2225":1,"2226":2,"2228":3,"2229":2,"2230":1,"2231":2,"2232":3,"2233":2,"2234":3,"2235":2,"2247":4,"2248":4,"2284":1,"2290":6,"2314":1,"2349":1,"2350":1,"2384":1,"2391":1,"2762":1,"2764":2,"2852":10,"2853":5,"2856":2,"2857":1,"2858":1,"2859":1,"2864":2,"2868":3,"2869":4,"2871":2,"2872":1,"2875":1,"2877":2,"2878":2,"2880":2,"2881":1,"2882":3,"2883":2,"2886":4,"2948":11}}],["strictly",{"2":{"1366":1,"1407":1,"1648":1,"2676":1}}],["strict",{"0":{"1611":1,"1615":1,"1803":1},"2":{"75":1,"112":1,"191":1,"440":1,"563":1,"564":2,"1316":1,"1367":1,"1615":1,"1803":1,"2044":1,"2741":1,"2870":1}}],["strippers",{"2":{"2421":1}}],["stripped",{"2":{"328":1,"2425":1}}],["stripping",{"2":{"339":1,"2425":2,"2429":1}}],["strip",{"2":{"45":1,"199":1,"211":2,"1464":1,"1471":1,"1472":1,"2179":2,"2185":1,"2208":2,"2281":1,"2425":1,"2427":1,"2455":3}}],["s",{"0":{"626":1,"1320":1,"1715":1,"1717":1,"2159":1,"2161":1,"2638":1,"2933":1},"1":{"627":1,"1716":1,"1718":1,"2162":1,"2639":1,"2640":1,"2641":1,"2934":1,"2935":1,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1},"2":{"14":1,"46":1,"49":1,"69":1,"70":1,"72":1,"82":1,"99":2,"109":1,"114":4,"116":1,"119":2,"125":1,"133":1,"134":1,"149":31,"153":1,"156":1,"158":1,"163":1,"174":1,"176":7,"182":3,"185":1,"191":2,"194":1,"196":5,"202":1,"211":6,"224":1,"243":1,"249":2,"265":1,"266":4,"268":1,"273":1,"276":1,"279":2,"288":3,"308":2,"312":2,"317":1,"320":1,"328":1,"331":1,"340":1,"344":6,"348":1,"353":1,"369":2,"375":2,"382":1,"389":2,"393":1,"399":1,"403":2,"411":1,"420":1,"426":1,"443":1,"445":1,"461":3,"462":1,"473":2,"484":1,"488":1,"489":3,"491":2,"494":3,"495":1,"496":3,"500":2,"510":1,"512":3,"517":1,"529":1,"532":2,"561":2,"568":1,"569":1,"574":2,"585":1,"588":3,"589":3,"591":1,"593":1,"596":1,"610":1,"613":2,"619":1,"622":1,"629":1,"633":2,"634":1,"637":1,"639":2,"646":1,"647":2,"651":1,"656":2,"657":1,"658":1,"659":1,"664":1,"668":1,"669":1,"673":1,"675":1,"683":1,"693":1,"694":1,"710":2,"711":2,"721":1,"726":2,"732":3,"746":1,"748":1,"750":1,"753":1,"754":3,"755":1,"756":1,"757":1,"764":3,"802":1,"803":1,"808":3,"834":3,"866":3,"896":3,"931":3,"965":3,"999":3,"1033":3,"1067":3,"1101":3,"1135":3,"1169":3,"1197":1,"1199":1,"1203":3,"1204":3,"1222":3,"1248":3,"1252":2,"1269":2,"1285":2,"1294":1,"1295":2,"1297":1,"1298":1,"1327":3,"1330":1,"1332":1,"1336":1,"1338":2,"1342":1,"1343":3,"1347":2,"1356":1,"1363":1,"1364":1,"1366":1,"1367":1,"1375":1,"1376":1,"1388":1,"1390":2,"1403":1,"1407":1,"1415":1,"1417":2,"1422":3,"1424":1,"1425":3,"1427":1,"1433":1,"1434":3,"1439":1,"1442":1,"1447":1,"1448":1,"1454":1,"1457":1,"1464":4,"1465":1,"1467":1,"1470":1,"1485":2,"1492":1,"1493":1,"1499":2,"1500":1,"1517":1,"1518":1,"1528":2,"1532":2,"1535":2,"1539":1,"1546":1,"1558":1,"1590":1,"1593":1,"1597":1,"1605":2,"1609":1,"1612":1,"1617":1,"1618":2,"1620":1,"1623":1,"1625":1,"1627":1,"1628":2,"1634":2,"1640":1,"1661":1,"1665":1,"1667":1,"1685":1,"1699":4,"1716":1,"1718":1,"1738":2,"1741":1,"1762":1,"1765":1,"1774":1,"1777":1,"1786":1,"1788":1,"1798":5,"1801":1,"1844":1,"1846":3,"1851":1,"1853":1,"1928":1,"1932":1,"1935":1,"1936":2,"1937":1,"1938":1,"1939":3,"1952":1,"1954":1,"1962":2,"1977":1,"1984":1,"1986":1,"1992":1,"1993":1,"2048":2,"2057":3,"2069":1,"2078":1,"2079":6,"2080":1,"2082":3,"2085":3,"2086":2,"2090":1,"2092":1,"2160":1,"2162":1,"2188":1,"2198":8,"2201":4,"2219":1,"2253":1,"2255":1,"2258":1,"2261":2,"2265":1,"2269":2,"2271":3,"2273":3,"2276":1,"2277":2,"2278":2,"2281":1,"2288":3,"2290":1,"2296":2,"2300":1,"2301":3,"2302":1,"2305":1,"2308":4,"2309":1,"2310":4,"2312":1,"2319":1,"2326":1,"2330":2,"2331":1,"2371":1,"2375":4,"2383":3,"2390":1,"2391":1,"2393":1,"2397":3,"2398":1,"2407":3,"2409":1,"2410":2,"2412":1,"2414":1,"2417":3,"2418":3,"2419":2,"2425":8,"2428":2,"2429":4,"2430":1,"2431":1,"2434":4,"2436":4,"2439":1,"2443":1,"2450":1,"2451":1,"2452":2,"2458":1,"2459":1,"2464":2,"2468":1,"2482":1,"2483":1,"2485":1,"2487":1,"2489":1,"2492":1,"2501":2,"2502":1,"2506":2,"2510":3,"2511":1,"2523":1,"2529":1,"2542":3,"2557":1,"2561":1,"2563":4,"2567":2,"2568":3,"2569":1,"2570":1,"2572":1,"2583":1,"2584":1,"2586":1,"2591":1,"2593":2,"2603":1,"2612":1,"2616":2,"2617":2,"2619":1,"2626":1,"2628":1,"2629":1,"2632":1,"2633":1,"2634":3,"2635":2,"2637":5,"2639":2,"2640":3,"2643":2,"2652":1,"2676":2,"2678":3,"2679":2,"2680":2,"2683":3,"2684":1,"2685":2,"2686":2,"2687":2,"2694":1,"2702":2,"2709":2,"2710":2,"2713":1,"2718":1,"2720":1,"2721":1,"2727":4,"2728":2,"2729":1,"2733":3,"2744":1,"2746":6,"2747":1,"2748":1,"2749":1,"2752":1,"2753":1,"2759":2,"2761":1,"2762":3,"2763":3,"2764":4,"2771":1,"2776":2,"2777":1,"2780":2,"2781":2,"2782":1,"2784":1,"2785":1,"2786":1,"2787":1,"2790":1,"2791":1,"2794":3,"2795":8,"2796":2,"2800":1,"2812":1,"2819":1,"2837":1,"2852":2,"2856":2,"2858":1,"2865":2,"2876":2,"2880":1,"2884":1,"2888":1,"2891":1,"2894":2,"2902":1,"2912":5,"2919":2,"2925":1,"2926":1,"2928":1,"2930":1,"2931":2,"2935":1,"2936":4,"2937":2,"2939":1,"2941":3,"2942":1,"2943":1,"2944":6,"2947":1,"2948":2,"2949":2}}],["sixty",{"2":{"1493":1}}],["sixtyfive",{"2":{"211":1}}],["sixth",{"2":{"1356":1}}],["six",{"2":{"1292":1,"2252":1,"2296":1}}],["sipeed",{"2":{"554":1}}],["situation",{"2":{"525":1,"1297":1,"1410":1,"1802":1}}],["situations",{"2":{"525":1,"542":1,"626":1,"1377":1,"1446":1,"1465":1,"2628":4,"2842":1,"2889":1}}],["sites",{"2":{"2569":1}}],["site",{"2":{"461":1,"2942":1}}],["sit",{"2":{"363":1,"675":1}}],["silvery",{"2":{"2427":1}}],["silakka54",{"2":{"294":1}}],["silent=true",{"2":{"2417":1}}],["silent",{"2":{"236":1}}],["silicon",{"2":{"49":1}}],["sizing",{"2":{"211":1,"350":1}}],["size=x",{"2":{"2949":1}}],["sizey",{"2":{"2764":1}}],["sizex",{"2":{"2764":1}}],["sized",{"0":{"1952":1,"2289":1},"1":{"1953":1},"2":{"2295":1}}],["sizeof",{"2":{"1419":4,"1420":2,"1952":1,"2277":2,"2289":1,"2778":1,"2779":2,"2780":1,"2781":2,"2782":1,"2783":1,"2787":2,"2788":2,"2889":1,"2949":1}}],["sizes",{"0":{"1609":1},"2":{"134":1,"149":1,"201":1,"210":1,"754":1,"1609":3,"1943":1,"1952":1,"2277":1,"2763":1,"2778":1,"2794":1}}],["size",{"0":{"720":1},"2":{"3":1,"15":1,"28":1,"69":1,"70":1,"75":1,"113":1,"114":10,"134":4,"149":4,"153":1,"166":1,"176":2,"191":1,"199":1,"201":1,"211":4,"215":1,"222":2,"236":5,"266":2,"555":1,"562":1,"563":1,"565":1,"570":2,"572":1,"619":1,"719":3,"720":4,"748":2,"749":4,"750":4,"751":3,"753":2,"754":11,"755":9,"756":11,"759":10,"1376":4,"1419":8,"1420":1,"1527":2,"1532":1,"1533":4,"1661":1,"1662":3,"1681":3,"1697":1,"1747":1,"1849":1,"1935":2,"1936":2,"1940":2,"1943":1,"1952":6,"1953":3,"1954":7,"2068":1,"2085":2,"2086":1,"2189":1,"2275":1,"2277":6,"2283":1,"2289":6,"2290":2,"2300":2,"2309":1,"2330":1,"2379":2,"2381":1,"2382":2,"2417":2,"2418":2,"2429":1,"2458":1,"2503":1,"2587":2,"2629":2,"2711":1,"2746":1,"2753":1,"2760":1,"2761":1,"2762":7,"2763":3,"2779":4,"2787":4,"2864":4,"2888":2,"2889":2,"2892":1,"2901":2,"2949":2}}],["sion",{"2":{"2079":1}}],["siod0",{"2":{"2699":1,"2702":2}}],["siod3",{"2":{"1204":2}}],["siod1",{"2":{"1204":1,"2699":1}}],["sio",{"0":{"1204":1},"2":{"176":1,"199":1,"249":1,"1198":1,"1201":1,"1204":6,"1405":2,"2692":2,"2699":2,"2702":1,"2704":3}}],["sinks",{"2":{"2669":1}}],["sink",{"2":{"2566":1}}],["sinusoidal",{"2":{"1684":1}}],["sine",{"2":{"1480":2,"1849":2}}],["singa",{"2":{"211":1}}],["single",{"0":{"480":1,"1360":1,"1996":1,"2307":1,"2312":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"16":1,"94":1,"112":1,"113":1,"114":2,"138":1,"191":1,"211":3,"222":1,"236":1,"262":1,"285":3,"311":1,"328":1,"375":1,"396":1,"465":1,"469":1,"477":1,"483":1,"518":1,"520":1,"527":2,"575":2,"578":1,"665":2,"676":1,"690":1,"691":1,"702":1,"724":1,"731":1,"735":1,"764":1,"793":1,"800":1,"801":1,"805":1,"807":1,"808":1,"812":1,"816":2,"818":1,"820":1,"822":2,"826":1,"827":1,"831":1,"833":1,"834":1,"839":1,"843":2,"845":1,"847":1,"849":2,"855":1,"856":1,"863":1,"865":1,"866":1,"871":1,"875":2,"877":1,"879":1,"881":2,"887":1,"888":1,"893":1,"895":1,"896":1,"903":1,"907":2,"909":1,"911":1,"913":2,"919":1,"920":1,"928":1,"930":1,"931":1,"938":1,"942":2,"944":1,"946":1,"948":2,"954":1,"955":1,"962":1,"964":1,"965":1,"972":1,"976":2,"978":1,"980":1,"982":2,"988":1,"989":1,"996":1,"998":1,"999":1,"1006":1,"1010":2,"1012":1,"1014":1,"1016":2,"1022":1,"1023":1,"1030":1,"1032":1,"1033":1,"1040":1,"1044":2,"1046":1,"1048":1,"1050":2,"1056":1,"1057":1,"1064":1,"1066":1,"1067":1,"1074":1,"1078":2,"1080":1,"1082":1,"1084":2,"1090":1,"1091":1,"1098":1,"1100":1,"1101":1,"1108":1,"1112":2,"1114":1,"1116":1,"1118":2,"1124":1,"1125":1,"1132":1,"1134":1,"1135":1,"1142":1,"1146":2,"1148":1,"1150":1,"1152":2,"1158":1,"1159":1,"1166":1,"1168":1,"1169":1,"1176":1,"1180":2,"1182":1,"1184":1,"1186":2,"1192":2,"1214":1,"1215":1,"1219":1,"1221":1,"1222":1,"1229":1,"1233":2,"1235":1,"1237":1,"1239":2,"1273":1,"1275":1,"1283":2,"1306":1,"1311":6,"1312":1,"1313":1,"1363":1,"1364":1,"1375":1,"1395":1,"1409":1,"1413":1,"1428":2,"1444":3,"1468":1,"1486":1,"1493":1,"1538":3,"1541":2,"1589":1,"1593":1,"1648":1,"1685":1,"1699":1,"1748":1,"1776":1,"1849":6,"1850":1,"1865":1,"1947":2,"1954":2,"1960":1,"1961":1,"1971":2,"1985":2,"1989":1,"2059":1,"2080":1,"2085":18,"2088":1,"2107":1,"2178":1,"2198":2,"2244":1,"2254":1,"2259":1,"2272":1,"2286":2,"2290":2,"2297":1,"2305":1,"2309":2,"2310":1,"2312":1,"2317":17,"2318":12,"2319":11,"2347":1,"2417":1,"2429":2,"2445":1,"2453":1,"2504":1,"2563":1,"2580":1,"2617":1,"2714":1,"2726":1,"2733":1,"2734":1,"2744":1,"2746":1,"2751":1,"2771":2,"2782":1,"2789":1,"2792":1,"2829":1,"2840":1}}],["sinanju",{"2":{"211":1}}],["sinc",{"2":{"191":1}}],["since",{"2":{"113":1,"175":1,"240":1,"297":1,"522":1,"523":1,"524":1,"572":1,"696":1,"719":1,"720":2,"1417":1,"1425":1,"1470":1,"1471":1,"1484":1,"1488":1,"1514":1,"1525":1,"1558":1,"1595":1,"1647":1,"1685":1,"1785":1,"1788":1,"1795":1,"1977":1,"2189":1,"2249":1,"2265":1,"2269":1,"2275":2,"2310":2,"2331":1,"2379":1,"2396":1,"2429":1,"2447":1,"2466":1,"2502":1,"2554":1,"2634":2,"2676":1,"2720":1,"2763":1,"2769":1,"2795":1,"2918":2,"2922":1,"2925":1,"2928":1,"2943":1}}],["signed",{"2":{"1757":1,"1990":4,"2076":1,"2078":1}}],["sign",{"2":{"476":1,"613":1,"2912":2}}],["significance",{"2":{"2320":1}}],["significantly",{"2":{"196":1,"572":1,"1410":1,"1935":1,"2761":2}}],["significant",{"2":{"107":1,"169":1,"182":1,"215":1,"228":1,"545":1,"619":2,"753":1,"762":1,"1252":1,"1720":1,"1722":1,"1967":1,"1974":1,"2272":1,"2296":1,"2418":1,"2464":1,"2566":1,"2761":2,"2763":1}}],["signifies",{"2":{"403":1,"2685":1,"2781":1}}],["signum",{"2":{"122":2}}],["signature65",{"2":{"211":1}}],["signature",{"0":{"272":1},"2":{"114":1,"272":1,"656":1,"2502":1}}],["signals",{"2":{"2466":1}}],["signalling",{"2":{"125":1,"185":1}}],["signal",{"2":{"92":1,"176":1,"396":4,"1481":1,"1541":1,"1549":1,"1630":1,"1648":1,"1684":1,"1685":1}}],["sided",{"2":{"1989":1,"2435":1}}],["sidebar",{"2":{"681":1,"2586":1,"2683":2}}],["side",{"2":{"74":1,"138":1,"149":2,"156":1,"191":2,"211":1,"393":2,"555":1,"568":6,"570":1,"581":2,"666":1,"1313":1,"1639":1,"1643":3,"1666":2,"1685":2,"1974":1,"1976":3,"1977":2,"1983":1,"1987":2,"1989":3,"1997":5,"2014":1,"2016":1,"2057":1,"2059":1,"2198":4,"2270":1,"2271":1,"2274":3,"2276":12,"2277":6,"2278":7,"2305":1,"2401":1,"2403":1,"2427":1,"2428":1,"2431":1,"2466":1,"2507":1,"2634":1,"2746":1,"2747":1,"2764":5,"2925":3}}],["sides",{"0":{"2277":1},"2":{"31":1,"34":1,"107":2,"134":1,"211":1,"570":2,"1666":1,"1781":1,"1977":1,"1983":1,"1987":1,"2189":2,"2261":1,"2274":2,"2276":1,"2278":1,"2305":1,"2434":2,"2526":6,"2552":6}}],["sidestep",{"2":{"24":1}}],["simulation",{"2":{"2085":1}}],["simulate",{"2":{"1493":1,"2085":1}}],["simultaneous",{"2":{"622":1,"719":4,"1474":1,"1986":1,"2309":2}}],["simultaneously",{"2":{"283":1,"719":1,"1477":1,"1486":1,"1593":1,"1594":1,"1670":1,"1934":1,"2181":1,"2300":1,"2309":1,"2557":1}}],["similarity",{"2":{"2746":1}}],["similarly",{"2":{"82":1,"1364":1,"1475":1,"1478":1,"1647":1,"1795":1,"2071":1,"2076":1,"2948":1}}],["similar",{"2":{"49":2,"99":1,"128":1,"154":1,"203":1,"220":1,"231":1,"294":1,"430":1,"491":1,"588":1,"628":1,"646":1,"697":1,"1300":1,"1338":1,"1423":1,"1457":1,"1463":1,"1549":1,"1681":1,"1766":1,"1777":1,"2000":1,"2012":1,"2181":1,"2261":1,"2304":1,"2309":1,"2319":3,"2320":1,"2331":1,"2502":1,"2508":1,"2567":1,"2572":1,"2579":1,"2587":1,"2612":1,"2615":1,"2629":1,"2637":1,"2700":1,"2728":1,"2730":1,"2733":1,"2929":1,"2930":1,"2944":1,"2946":1}}],["simplfy",{"2":{"222":1}}],["simplified",{"2":{"2812":1}}],["simplifies",{"2":{"149":1,"198":1}}],["simplifying",{"2":{"164":1}}],["simplify",{"2":{"10":1,"160":1,"176":1,"191":2,"198":1,"222":1,"236":1,"262":1,"328":2,"425":1,"2714":1,"2747":1}}],["simply",{"0":{"2849":1},"2":{"31":1,"110":1,"194":1,"283":1,"376":1,"432":1,"487":1,"493":1,"661":1,"668":1,"673":1,"714":1,"719":1,"753":1,"772":1,"1288":1,"1368":1,"1499":1,"1503":1,"1510":1,"1538":1,"1648":1,"1717":1,"1721":1,"1850":1,"1865":1,"1867":1,"2058":1,"2076":1,"2088":1,"2107":1,"2109":1,"2179":1,"2228":1,"2232":1,"2234":1,"2300":1,"2317":1,"2437":1,"2474":1,"2501":1,"2502":1,"2508":1,"2553":1,"2636":1,"2660":1,"2718":1,"2885":1}}],["simplest",{"2":{"2613":1,"2636":1,"2709":1}}],["simpler",{"2":{"236":1,"403":1,"2676":1,"2931":1}}],["simple",{"0":{"473":1,"522":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1511":1,"1512":1,"1774":1,"2059":1,"2312":1},"2":{"13":1,"94":1,"114":2,"249":1,"285":1,"368":1,"377":1,"540":1,"626":1,"669":1,"670":1,"1327":3,"1348":1,"1364":1,"1366":1,"1388":1,"1425":1,"1451":1,"1473":1,"1537":1,"1539":1,"1551":1,"1673":1,"1781":2,"1849":3,"1850":1,"2085":3,"2088":1,"2225":1,"2280":1,"2295":1,"2303":1,"2309":1,"2312":1,"2384":1,"2391":1,"2423":1,"2432":1,"2468":1,"2470":1,"2572":1,"2610":1,"2616":1,"2658":1,"2677":1,"2704":1,"2744":1,"2844":1,"2894":1,"2931":1,"2940":1}}],["sea",{"2":{"2706":1}}],["searches",{"2":{"443":1,"1433":1,"1528":1}}],["searched",{"2":{"317":1,"1528":1}}],["searching",{"2":{"294":1,"433":1,"1525":1,"2559":1,"2902":1}}],["search",{"2":{"114":1,"191":1,"236":2,"341":1,"433":2,"1525":1,"1539":1,"2510":2,"2549":2,"2559":1,"2567":1,"2746":1,"2949":1}}],["sep",{"2":{"2567":1}}],["sepr",{"2":{"2510":1,"2548":1}}],["separator",{"2":{"2510":2,"2548":2}}],["separation",{"0":{"2733":1,"2734":1},"2":{"236":1,"2449":1,"2726":1}}],["separated",{"2":{"323":1,"472":1,"521":1,"671":2,"2277":1,"2327":1,"2634":1,"2746":1}}],["separately",{"2":{"228":1,"420":1,"1466":1,"1612":1,"1639":1,"1934":1,"2747":2,"2772":1}}],["separate",{"2":{"18":1,"35":1,"114":1,"134":1,"222":2,"236":1,"266":1,"277":1,"285":2,"323":1,"416":1,"513":1,"561":1,"575":1,"615":3,"618":1,"671":1,"714":1,"715":1,"1343":1,"1433":1,"1450":1,"1546":1,"1551":1,"1953":1,"1999":1,"2012":1,"2302":1,"2329":1,"2330":1,"2435":1,"2462":1,"2501":1,"2678":1,"2714":1,"2720":1,"2734":1,"2744":1,"2764":1,"2766":1,"2937":1,"2944":2}}],["seq",{"2":{"1686":3,"1952":3}}],["sequential",{"2":{"191":1,"1947":1,"2217":1,"2286":1}}],["sequence",{"0":{"1814":1,"1815":1,"1818":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"2213":1},"1":{"1816":1,"1817":1,"1821":1,"1822":1,"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1},"2":{"196":4,"294":1,"339":1,"527":3,"532":1,"564":1,"1446":1,"1524":1,"1602":1,"1686":4,"1687":4,"1796":1,"1798":6,"1800":1,"1801":2,"1802":7,"1803":2,"1804":5,"1805":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1818":1,"1819":1,"1820":1,"1822":1,"1823":1,"1825":1,"1826":1,"1828":1,"1829":1,"1831":1,"1832":1,"1834":1,"2216":3,"2217":3,"2218":3,"2251":1,"2327":4,"2331":2,"2344":1,"2345":1,"2346":1,"2359":1,"2362":1,"2363":1,"2364":1,"2367":1,"2368":1,"2369":1,"2370":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2524":1,"2764":1,"2796":1,"2825":1,"2870":1,"2879":3,"2918":6,"2919":7,"2920":2,"2925":1}}],["sequences",{"2":{"134":1,"196":1,"494":2,"1686":2,"2219":1,"2331":1,"2475":1,"2913":1,"2919":1}}],["sequencer",{"0":{"2249":1,"2250":1},"1":{"2250":1,"2251":1,"2252":1,"2253":1,"2254":1},"2":{"63":1,"191":1,"199":1,"231":3,"2249":1,"2250":2,"2251":1,"2252":1,"2253":12,"2254":32,"2940":1,"2944":1}}],["sequencing",{"2":{"49":1,"176":1,"229":1}}],["semi",{"2":{"2317":1}}],["semitone",{"2":{"1925":2,"2527":2}}],["semitones",{"2":{"1925":10,"2527":10}}],["semicolon",{"2":{"1593":1,"1692":1,"1774":5,"1850":1,"2088":1,"2308":2,"2510":1,"2544":1}}],["semantics",{"2":{"199":1,"277":1}}],["seil",{"2":{"1358":2}}],["seigaiha",{"2":{"143":2}}],["selling",{"2":{"2567":26}}],["self",{"2":{"487":1,"534":6,"668":1,"1620":1,"1622":1,"1850":1,"2088":1}}],["selectable",{"2":{"1410":1}}],["selects",{"2":{"564":1,"1446":1,"2775":1,"2796":1,"2913":3,"2920":1}}],["selectively",{"2":{"2186":1}}],["selecting",{"0":{"1442":1,"2696":1,"2708":1,"2885":1},"1":{"2697":1,"2698":1,"2699":1,"2709":1,"2710":1},"2":{"266":1,"393":1,"746":1,"1313":1,"2298":1,"2576":1,"2663":1}}],["selection",{"0":{"2180":1,"2705":1},"2":{"75":1,"114":1,"188":1,"191":2,"199":1,"211":1,"222":1,"249":1,"285":1,"685":1,"743":1,"1289":1,"1547":1,"1620":1,"1937":2,"2039":1,"2068":1,"2375":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2398":1,"2400":1,"2402":1,"2404":1,"2455":1,"2695":1,"2705":1,"2707":1,"2746":1,"2775":1,"2872":1}}],["select",{"0":{"596":1,"597":1,"901":1,"936":1,"970":1,"1004":1,"1038":1,"1072":1,"1106":1,"1140":1,"1174":1,"1227":1},"1":{"902":1,"937":1,"971":1,"1005":1,"1039":1,"1073":1,"1107":1,"1141":1,"1175":1,"1228":1},"2":{"222":1,"236":1,"393":16,"397":3,"561":1,"570":1,"596":3,"597":1,"710":2,"711":1,"712":1,"726":2,"734":1,"740":1,"750":2,"759":2,"902":1,"937":1,"971":1,"1005":1,"1039":1,"1073":1,"1107":1,"1141":1,"1175":1,"1207":1,"1228":1,"1247":1,"1248":4,"1265":1,"1312":1,"1413":1,"1480":1,"1489":1,"1681":2,"1937":3,"1966":1,"1967":1,"1971":1,"1974":1,"1979":1,"1981":1,"1982":1,"1983":4,"2065":1,"2068":1,"2180":1,"2251":1,"2273":1,"2275":1,"2288":1,"2295":1,"2296":1,"2298":1,"2410":2,"2433":1,"2510":3,"2548":2,"2549":1,"2598":2,"2601":2,"2659":3,"2662":2,"2663":1,"2668":1,"2676":2,"2682":2,"2683":1,"2703":1,"2714":1,"2760":1,"2763":11,"2885":1,"2913":1,"2919":2,"2920":2}}],["selector",{"2":{"176":1,"2659":1}}],["selected",{"0":{"1210":1},"1":{"1211":1,"1212":1,"1213":1},"2":{"65":1,"186":1,"599":1,"721":1,"722":1,"753":1,"754":1,"764":1,"769":1,"772":1,"775":1,"778":1,"1198":1,"1200":1,"1201":1,"1203":3,"1204":4,"1254":1,"1257":1,"1259":1,"1262":1,"1294":1,"1475":1,"1480":1,"1481":1,"1482":1,"1485":4,"1486":4,"1683":1,"1687":1,"2187":1,"2327":2,"2328":5,"2331":4,"2332":2,"2344":1,"2345":1,"2346":1,"2377":1,"2540":2,"2702":1,"2705":1,"2902":2,"2903":1,"2913":2}}],["session",{"2":{"312":1}}],["segregrate",{"2":{"285":1}}],["segments",{"2":{"2189":5,"2191":2,"2425":1}}],["segment",{"2":{"236":3,"2189":6,"2191":3}}],["seven",{"2":{"2794":2}}],["seventyfive",{"2":{"211":1}}],["severity",{"2":{"312":1}}],["several",{"2":{"204":2,"213":1,"367":1,"378":1,"420":1,"490":1,"508":1,"540":1,"596":1,"610":1,"619":1,"633":1,"1192":1,"1198":1,"1201":1,"1206":1,"1343":1,"1348":1,"1676":1,"1787":1,"2007":1,"2270":1,"2294":1,"2313":1,"2397":1,"2450":1,"2451":1,"2482":1,"2499":1,"2574":1,"2652":1,"2657":1,"2691":1,"2869":1,"2902":1,"2930":1,"2944":1}}],["severely",{"2":{"123":1,"2888":1}}],["sekigon",{"2":{"114":1}}],["serbian",{"2":{"2887":5}}],["servicing",{"2":{"720":1}}],["services",{"2":{"575":1}}],["service",{"0":{"368":1},"1":{"369":1,"370":1,"371":1,"372":1},"2":{"294":1,"366":2,"368":1,"374":1,"377":1,"683":1,"1316":2,"1981":1,"2415":1,"2715":1,"2746":1}}],["served",{"2":{"579":1}}],["serves",{"2":{"461":1}}],["serve",{"2":{"461":3,"2824":1}}],["servertype",{"2":{"2683":1}}],["server",{"2":{"377":1,"429":1,"460":1,"2481":1,"2680":1,"2682":2,"2706":1,"2897":1}}],["serratus",{"2":{"211":1}}],["serenity",{"2":{"211":1}}],["serpent65",{"2":{"211":1}}],["serious",{"2":{"377":1,"2749":1}}],["series",{"0":{"2446":1},"2":{"149":1,"249":1,"393":2,"554":1,"591":1,"749":1,"750":1,"1477":1,"2490":1,"2941":1}}],["serialport>",{"2":{"2386":1}}],["serialized",{"2":{"1537":1,"1538":3}}],["serial",{"0":{"1192":1,"1203":1,"1317":1,"2266":1},"1":{"1193":1,"1194":1,"1195":1,"1196":1,"1197":1,"1198":1,"1199":1,"1200":1,"1201":1,"1202":1,"1203":1,"1204":1,"1205":1,"1206":1,"1207":1,"1208":1,"1209":1,"1210":1,"1211":1,"1212":1,"1213":1},"2":{"30":1,"45":1,"63":2,"65":1,"74":1,"93":1,"94":1,"111":1,"112":2,"114":3,"133":2,"134":2,"149":2,"176":2,"191":5,"199":3,"277":11,"285":1,"308":2,"317":1,"570":7,"709":1,"1192":2,"1193":1,"1194":2,"1195":2,"1197":2,"1198":5,"1200":6,"1201":8,"1203":8,"1204":3,"1205":3,"1207":4,"1208":1,"1209":2,"1269":2,"1317":1,"1625":1,"1966":1,"1978":1,"1981":1,"2261":4,"2262":1,"2266":1,"2275":7,"2294":4,"2297":1,"2298":3,"2378":1,"2386":1,"2484":1,"2486":1,"2488":1,"2494":1,"2499":1,"2502":2,"2508":1,"2683":1,"2692":1,"2702":7,"2704":1,"2848":1,"2880":2}}],["sergiopoverony",{"2":{"114":1}}],["sentence",{"2":{"2317":1}}],["sentences",{"2":{"681":1,"1522":1,"1762":1}}],["sent",{"2":{"211":1,"263":2,"297":1,"320":1,"646":1,"1252":1,"1283":1,"1286":1,"1287":1,"1288":1,"1362":1,"1363":2,"1367":1,"1427":1,"1447":2,"1454":1,"1486":1,"1501":1,"1517":1,"1651":1,"1681":1,"1747":1,"1781":1,"1788":1,"1795":1,"1986":2,"1990":3,"1992":1,"1993":1,"2048":2,"2053":1,"2059":1,"2178":1,"2219":2,"2222":1,"2256":1,"2257":1,"2259":2,"2277":1,"2300":5,"2309":1,"2347":1,"2470":1,"2538":1,"2840":1,"2921":4,"2922":1,"2925":1,"2928":1,"2930":1}}],["sensible",{"2":{"2076":1}}],["sensitivity",{"2":{"1974":1,"1983":1,"2047":1}}],["sensitive",{"2":{"513":1,"644":1,"1440":1,"1974":3}}],["sensing",{"2":{"1313":1}}],["sense75",{"2":{"222":1}}],["senselessclay",{"2":{"211":1}}],["sense",{"2":{"123":1,"512":1,"619":1,"1343":1,"1519":1,"2068":1,"2667":1,"2714":1,"2907":1}}],["sensors",{"2":{"160":1,"273":1,"276":1,"284":1,"285":1,"1965":1,"1983":5,"1984":1,"1988":2,"2746":1}}],["sensor",{"0":{"276":1,"284":1,"1965":1,"1966":1,"1967":1,"1978":1,"1979":1,"1981":1,"1982":1,"1983":1},"1":{"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1971":1,"1972":1,"1973":1,"1974":1,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1984":1},"2":{"114":3,"118":2,"149":4,"175":1,"176":1,"249":2,"273":3,"276":1,"284":1,"285":1,"328":1,"339":1,"691":2,"1965":2,"1966":5,"1967":5,"1968":1,"1970":2,"1973":1,"1974":7,"1975":4,"1978":4,"1979":2,"1980":2,"1981":5,"1982":2,"1983":15,"1984":2,"1985":7,"1988":3}}],["sends",{"0":{"2470":1},"2":{"202":1,"683":1,"1363":1,"1375":1,"1422":1,"1444":1,"1453":1,"1454":1,"1455":1,"1525":1,"1690":2,"1770":1,"1774":1,"1988":3,"1990":1,"2073":1,"2309":4,"2511":1,"2575":1,"2617":1,"2752":1,"2775":1,"2884":1,"2929":1,"2930":1}}],["sendstring",{"0":{"157":1,"2886":1},"2":{"114":1,"160":1,"188":1,"191":1,"211":1,"1449":1,"1486":1,"2221":1,"2885":1,"2886":3,"2887":53}}],["sending",{"0":{"1327":1,"1923":1,"2057":1},"2":{"176":2,"191":2,"199":1,"561":1,"626":1,"1192":1,"1456":1,"1662":1,"1730":1,"1732":1,"1774":2,"1990":1,"1999":1,"2046":1,"2048":1,"2054":1,"2300":1,"2309":1,"2418":1,"2764":1,"2882":1,"2884":1}}],["sendyyeah",{"2":{"74":1}}],["sendz",{"2":{"74":1}}],["send",{"0":{"1446":1,"2063":1,"2219":1,"2228":1,"2230":1,"2232":1,"2234":1,"2236":1,"2238":1,"2240":1,"2242":1,"2244":1,"2247":1,"2248":1,"2312":1,"2314":1,"2316":1,"2349":1,"2474":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"2064":1,"2220":1,"2221":1,"2222":1,"2223":1,"2224":1,"2225":1,"2226":1,"2227":1,"2228":1,"2229":2,"2230":1,"2231":2,"2232":1,"2233":2,"2234":1,"2235":2,"2236":1,"2237":2,"2238":1,"2239":2,"2240":1,"2241":2,"2242":1,"2243":2,"2244":1,"2245":2,"2246":1,"2247":1,"2248":1,"2350":1},"2":{"50":1,"94":1,"114":1,"149":1,"157":1,"160":1,"176":1,"190":1,"191":4,"195":1,"196":3,"222":1,"236":1,"249":1,"266":1,"294":1,"574":1,"593":6,"630":1,"631":1,"769":1,"772":1,"778":1,"1259":1,"1356":1,"1364":2,"1396":1,"1417":1,"1423":1,"1440":2,"1444":2,"1446":8,"1447":2,"1448":5,"1450":6,"1455":1,"1462":1,"1471":2,"1472":3,"1486":1,"1518":1,"1535":5,"1538":1,"1539":1,"1602":1,"1605":2,"1622":1,"1652":1,"1665":1,"1676":4,"1726":1,"1730":1,"1731":1,"1732":1,"1733":1,"1750":1,"1766":1,"1767":3,"1776":7,"1781":1,"1798":3,"1801":1,"1804":2,"1919":1,"1924":2,"1953":1,"1954":4,"1988":1,"1990":5,"1992":1,"2015":1,"2032":1,"2048":3,"2057":2,"2058":3,"2059":3,"2063":1,"2064":1,"2071":2,"2076":2,"2077":3,"2079":10,"2219":1,"2220":1,"2222":7,"2223":1,"2225":1,"2228":1,"2232":1,"2234":1,"2247":2,"2248":2,"2259":9,"2260":5,"2276":1,"2277":3,"2298":1,"2300":2,"2308":2,"2309":1,"2314":1,"2317":8,"2318":1,"2331":1,"2332":3,"2348":1,"2349":1,"2350":1,"2357":1,"2371":1,"2418":5,"2466":2,"2470":2,"2475":1,"2540":3,"2553":1,"2554":1,"2575":1,"2576":1,"2578":2,"2579":4,"2580":2,"2775":1,"2829":1,"2846":1,"2856":1,"2882":2,"2886":3,"2918":2,"2928":2}}],["sectors",{"2":{"754":3}}],["sector",{"2":{"333":1,"754":3,"756":2,"759":2}}],["section>",{"2":{"497":2,"498":2}}],["sections",{"0":{"352":1,"362":1},"2":{"194":1,"341":1,"661":1,"1368":1,"2180":1,"2468":1,"2560":1,"2573":1,"2621":1,"2634":1,"2696":1,"2722":1,"2761":1,"2792":1}}],["section",{"0":{"479":1},"2":{"31":2,"34":1,"124":1,"195":1,"206":1,"236":1,"240":1,"356":1,"382":1,"404":1,"476":1,"477":1,"496":4,"504":1,"512":1,"667":1,"712":1,"713":1,"746":2,"752":1,"758":1,"1198":2,"1200":1,"1201":2,"1312":1,"1330":1,"1427":1,"1537":1,"1627":1,"1783":1,"2178":1,"2281":1,"2300":1,"2313":1,"2393":1,"2418":1,"2423":1,"2437":1,"2451":1,"2482":1,"2502":2,"2503":2,"2554":1,"2576":1,"2582":1,"2601":1,"2613":1,"2616":1,"2632":2,"2651":1,"2655":1,"2695":1,"2697":1,"2698":1,"2709":1,"2718":1,"2745":1,"2754":1,"2756":1,"2764":1,"2794":2,"2906":1,"2907":1,"2935":1,"2938":1}}],["security",{"0":{"312":1},"2":{"312":8,"317":1,"1440":1}}],["secure",{"0":{"2212":1,"2879":1},"1":{"2213":1,"2214":1,"2215":1,"2216":1,"2217":1,"2218":1},"2":{"160":2,"188":2,"191":2,"2212":2,"2214":1,"2216":4,"2217":3,"2218":7,"2435":1,"2676":1,"2775":1,"2879":3,"2940":1}}],["secondary",{"2":{"176":1,"191":1,"716":1,"1475":1,"1477":1,"1645":1,"1974":1,"1977":1,"2085":1,"2880":11}}],["second",{"0":{"2705":1},"2":{"90":2,"157":1,"266":1,"434":1,"565":1,"615":1,"616":2,"643":1,"656":1,"726":1,"748":1,"1367":1,"1446":1,"1448":1,"1474":1,"1478":1,"1486":2,"1503":1,"1525":1,"1668":2,"1774":1,"1824":1,"1827":1,"1830":1,"1833":1,"1846":1,"1936":3,"1939":1,"1983":2,"2076":1,"2082":1,"2085":1,"2261":1,"2272":1,"2278":1,"2309":2,"2310":1,"2427":1,"2464":1,"2503":1,"2612":1,"2634":1,"2683":1,"2705":1,"2876":1,"2921":3,"2936":3,"2937":1}}],["seconds>",{"2":{"434":1}}],["seconds",{"0":{"25":1},"2":{"11":1,"522":1,"523":2,"524":4,"561":1,"581":1,"657":1,"1544":1,"1593":1,"1598":2,"1627":1,"1792":1,"2379":5,"2385":1,"2386":1,"2387":1,"2388":1,"2392":1,"2510":1,"2857":2,"2861":1,"2879":1,"2880":1}}],["setpixel",{"2":{"2764":4}}],["setpinoutputopendrain",{"2":{"243":1}}],["setpinoutputpushpull",{"2":{"243":1}}],["setpinoutput",{"2":{"243":1}}],["setpininputlow",{"2":{"243":1}}],["setpininput",{"2":{"243":1}}],["setpininputhigh",{"2":{"34":2,"243":1}}],["setrgb",{"2":{"1430":5,"2089":1,"2198":5,"2205":3}}],["setw",{"2":{"339":1}}],["settling",{"2":{"1410":3}}],["settle",{"2":{"1409":1,"2926":1,"2930":1}}],["settles",{"2":{"1409":1,"2927":1,"2930":1}}],["settled",{"2":{"289":1,"320":1,"2925":6,"2930":2}}],["setter",{"2":{"534":2}}],["setta21",{"2":{"143":2}}],["settable",{"2":{"114":1}}],["setting",{"0":{"474":1,"476":1,"497":1,"568":1,"1300":1,"1842":1,"2005":1,"2197":1,"2270":1,"2503":1,"2604":1,"2618":1,"2653":1,"2673":1,"2771":1},"1":{"569":1,"1843":1,"2006":1,"2271":1,"2272":1,"2273":1,"2274":1,"2619":1,"2620":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1,"2628":1,"2629":1},"2":{"87":1,"88":3,"93":1,"104":3,"127":3,"176":2,"191":1,"303":1,"338":1,"383":1,"426":1,"429":1,"474":2,"482":1,"494":1,"556":3,"561":1,"564":1,"575":2,"592":1,"615":1,"637":1,"684":1,"696":1,"727":1,"762":1,"764":3,"861":1,"891":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1200":1,"1316":1,"1381":1,"1412":1,"1425":1,"1471":1,"1487":1,"1489":1,"1493":1,"1502":1,"1503":1,"1517":1,"1538":1,"1598":1,"1601":1,"1684":1,"1685":1,"1736":1,"1763":1,"1777":1,"1794":1,"1838":1,"1842":1,"1850":1,"1935":5,"1936":3,"1937":1,"1960":2,"1966":1,"1967":2,"1968":1,"1970":3,"1971":1,"1972":1,"1974":4,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1985":1,"1986":2,"1987":1,"1988":1,"2001":3,"2011":1,"2013":1,"2088":1,"2191":1,"2207":1,"2210":1,"2250":1,"2272":1,"2273":2,"2278":2,"2296":2,"2385":1,"2387":1,"2394":1,"2396":1,"2397":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2407":1,"2414":1,"2416":6,"2417":1,"2432":1,"2496":1,"2501":1,"2503":1,"2672":1,"2683":1,"2774":1,"2910":3,"2924":1}}],["settings",{"0":{"798":1,"1970":1,"1971":1,"1972":1,"1974":1,"1975":1,"2045":1,"2052":1,"2185":1,"2889":1,"2890":1,"2891":1,"2894":1},"1":{"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1},"2":{"69":1,"74":1,"75":1,"114":1,"131":1,"134":1,"353":1,"393":1,"555":1,"557":2,"564":5,"641":1,"719":1,"798":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1200":1,"1320":1,"1381":1,"1415":2,"1416":1,"1417":3,"1420":1,"1466":2,"1472":1,"1486":1,"1589":1,"1592":1,"1605":1,"1607":1,"1678":2,"1681":3,"1787":1,"1935":1,"1936":2,"1937":1,"1938":1,"1939":1,"1940":1,"1970":1,"1974":1,"2046":1,"2211":1,"2278":1,"2298":1,"2323":1,"2416":1,"2418":1,"2454":1,"2455":1,"2610":1,"2651":1,"2678":4,"2683":1,"2714":1,"2717":1,"2746":1,"2771":1,"2774":1,"2884":1,"2892":1,"2912":1,"2919":1,"2920":1,"2921":1}}],["sets",{"2":{"50":1,"561":5,"564":4,"570":1,"635":1,"641":3,"693":1,"696":3,"715":1,"1417":1,"1422":1,"1428":5,"1493":5,"1662":2,"1681":3,"1688":1,"1838":1,"1852":6,"1938":3,"1954":4,"1967":5,"1968":3,"1970":3,"1974":7,"1980":1,"1983":8,"1988":3,"1989":2,"1997":1,"2008":1,"2091":8,"2096":1,"2180":1,"2202":2,"2273":1,"2275":3,"2278":3,"2290":2,"2322":3,"2323":1,"2380":1,"2385":1,"2387":1,"2394":1,"2399":1,"2401":1,"2403":1,"2414":2,"2455":1,"2746":1,"2911":2}}],["sethsv",{"0":{"2159":1,"2161":1},"1":{"2162":1},"2":{"49":1,"641":1,"1417":7,"2089":1,"2097":1,"2198":7,"2201":2,"2205":3}}],["setups",{"2":{"719":1,"722":1,"1962":13,"2564":1}}],["setup",{"0":{"364":1,"508":1,"1195":1,"1198":1,"1201":1,"1387":1,"1520":1,"1521":1,"1683":1,"1768":1,"2592":1,"2605":1,"2606":1,"2628":1,"2678":1},"1":{"509":1,"510":1,"511":1,"1521":1,"1522":1,"1523":1,"1684":1,"1685":1,"2593":1,"2594":1,"2595":1},"2":{"14":1,"23":1,"93":1,"176":1,"364":1,"384":1,"393":1,"394":1,"396":2,"426":1,"487":1,"504":1,"508":1,"515":1,"633":1,"684":1,"763":1,"1200":1,"1247":1,"1268":1,"1314":1,"1425":1,"1503":1,"1522":1,"1668":1,"1947":1,"1953":1,"1956":1,"1957":1,"1962":2,"1987":1,"2189":1,"2220":1,"2286":1,"2325":1,"2417":1,"2431":1,"2444":1,"2445":1,"2446":1,"2464":1,"2573":1,"2590":2,"2591":1,"2594":1,"2600":1,"2602":1,"2604":1,"2628":8,"2663":1,"2814":1,"2934":2}}],["set",{"0":{"412":1,"702":1,"704":1,"707":1,"735":1,"737":1,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1306":1,"1308":1,"1430":1,"1432":1,"1659":1,"1711":1,"1734":1,"1736":1,"1758":1,"1760":1,"1865":1,"1867":1,"1889":1,"1891":1,"1895":1,"1897":1,"2012":1,"2035":1,"2107":1,"2109":1,"2143":1,"2145":1,"2149":1,"2151":1,"2336":1,"2340":1,"2342":1,"2432":1,"2674":1},"1":{"703":1,"705":1,"708":1,"736":1,"738":1,"813":1,"815":1,"817":1,"819":1,"821":1,"823":1,"840":1,"842":1,"844":1,"846":1,"848":1,"850":1,"872":1,"874":1,"876":1,"878":1,"880":1,"882":1,"904":1,"906":1,"908":1,"910":1,"912":1,"914":1,"939":1,"941":1,"943":1,"945":1,"947":1,"949":1,"973":1,"975":1,"977":1,"979":1,"981":1,"983":1,"1007":1,"1009":1,"1011":1,"1013":1,"1015":1,"1017":1,"1041":1,"1043":1,"1045":1,"1047":1,"1049":1,"1051":1,"1075":1,"1077":1,"1079":1,"1081":1,"1083":1,"1085":1,"1109":1,"1111":1,"1113":1,"1115":1,"1117":1,"1119":1,"1143":1,"1145":1,"1147":1,"1149":1,"1151":1,"1153":1,"1177":1,"1179":1,"1181":1,"1183":1,"1185":1,"1187":1,"1230":1,"1232":1,"1234":1,"1236":1,"1238":1,"1240":1,"1307":1,"1309":1,"1660":1,"1712":1,"1735":1,"1737":1,"1759":1,"1761":1,"1866":1,"1868":1,"1890":1,"1892":1,"1896":1,"1898":1,"2036":1,"2108":1,"2110":1,"2144":1,"2146":1,"2150":1,"2152":1,"2337":1,"2341":1,"2343":1,"2675":1,"2676":1,"2677":1,"2678":1,"2679":1,"2680":1},"2":{"6":1,"23":1,"25":1,"28":1,"30":1,"33":1,"38":1,"49":1,"50":2,"63":1,"83":1,"90":1,"92":1,"93":1,"114":2,"134":1,"141":1,"153":2,"163":1,"173":2,"191":5,"195":2,"199":3,"209":1,"211":1,"222":2,"228":1,"236":4,"243":6,"266":2,"277":2,"285":2,"333":1,"379":1,"422":1,"430":1,"444":1,"455":2,"469":2,"472":1,"473":1,"474":1,"476":1,"489":1,"492":1,"497":1,"505":1,"521":1,"555":1,"556":1,"560":1,"561":1,"564":1,"568":4,"571":1,"579":1,"588":1,"617":1,"633":1,"635":6,"637":1,"639":2,"651":1,"652":2,"653":2,"655":1,"661":1,"666":1,"669":3,"696":3,"698":1,"702":1,"703":3,"704":1,"705":3,"707":1,"708":1,"709":1,"716":1,"722":1,"725":1,"735":1,"736":3,"737":1,"738":3,"744":2,"754":1,"760":1,"764":1,"768":4,"797":16,"801":1,"810":1,"811":1,"812":1,"813":3,"814":1,"815":3,"816":1,"817":1,"818":1,"819":1,"827":1,"829":1,"837":1,"838":1,"839":1,"840":3,"841":1,"842":3,"843":1,"844":1,"845":1,"846":1,"856":1,"858":1,"869":1,"870":1,"871":1,"872":3,"873":1,"874":3,"875":1,"876":1,"877":1,"878":1,"888":1,"890":1,"899":1,"900":1,"903":1,"904":3,"905":1,"906":3,"907":1,"908":1,"909":1,"910":1,"920":1,"922":1,"923":1,"934":1,"935":1,"938":1,"939":3,"940":1,"941":3,"942":1,"943":1,"944":1,"945":1,"955":1,"957":1,"968":1,"969":1,"972":1,"973":3,"974":1,"975":3,"976":1,"977":1,"978":1,"979":1,"989":1,"991":1,"1002":1,"1003":1,"1006":1,"1007":3,"1008":1,"1009":3,"1010":1,"1011":1,"1012":1,"1013":1,"1023":1,"1025":1,"1036":1,"1037":1,"1040":1,"1041":3,"1042":1,"1043":3,"1044":1,"1045":1,"1046":1,"1047":1,"1057":1,"1059":1,"1070":1,"1071":1,"1074":1,"1075":3,"1076":1,"1077":3,"1078":1,"1079":1,"1080":1,"1081":1,"1091":1,"1093":1,"1094":1,"1104":1,"1105":1,"1108":1,"1109":3,"1110":1,"1111":3,"1112":1,"1113":1,"1114":1,"1115":1,"1125":1,"1127":1,"1128":1,"1138":1,"1139":1,"1142":1,"1143":3,"1144":1,"1145":3,"1146":1,"1147":1,"1148":1,"1149":1,"1159":1,"1161":1,"1172":1,"1173":1,"1176":1,"1177":3,"1178":1,"1179":3,"1180":1,"1181":1,"1182":1,"1183":1,"1215":1,"1217":1,"1225":1,"1226":1,"1229":1,"1230":3,"1231":1,"1232":3,"1233":1,"1234":1,"1235":1,"1236":1,"1245":1,"1248":1,"1252":1,"1266":1,"1269":1,"1284":1,"1285":1,"1306":1,"1307":3,"1308":1,"1309":3,"1333":1,"1364":4,"1367":1,"1368":1,"1383":1,"1394":1,"1395":1,"1397":1,"1398":1,"1413":4,"1414":1,"1416":1,"1417":9,"1423":1,"1425":1,"1427":1,"1428":9,"1430":2,"1431":1,"1432":2,"1433":1,"1434":1,"1442":1,"1470":6,"1472":2,"1474":1,"1477":2,"1480":1,"1481":2,"1484":2,"1486":1,"1487":4,"1488":1,"1491":1,"1498":1,"1503":1,"1517":1,"1518":2,"1523":1,"1528":1,"1538":1,"1543":1,"1546":1,"1551":1,"1556":1,"1566":1,"1567":1,"1589":1,"1590":1,"1601":2,"1607":1,"1608":2,"1609":1,"1620":4,"1621":1,"1625":3,"1638":6,"1647":1,"1648":1,"1659":1,"1678":1,"1681":3,"1683":1,"1684":2,"1687":3,"1702":1,"1708":1,"1713":1,"1734":1,"1736":1,"1741":2,"1743":4,"1751":1,"1758":1,"1759":2,"1760":1,"1761":1,"1776":1,"1781":6,"1782":4,"1794":2,"1837":1,"1843":3,"1846":1,"1847":2,"1850":2,"1852":5,"1855":4,"1865":1,"1866":1,"1867":1,"1868":1,"1869":1,"1871":1,"1889":1,"1890":1,"1891":1,"1892":1,"1895":1,"1896":1,"1897":1,"1898":1,"1925":49,"1933":3,"1935":1,"1936":1,"1938":1,"1939":5,"1948":1,"1949":6,"1952":1,"1954":5,"1958":4,"1970":1,"1974":1,"1983":3,"1984":1,"1986":1,"1988":3,"1989":3,"1990":2,"1992":2,"1993":4,"1994":13,"1996":4,"1997":4,"1999":2,"2000":1,"2001":5,"2008":13,"2011":3,"2012":8,"2013":2,"2021":1,"2025":1,"2035":1,"2043":1,"2046":6,"2047":1,"2048":1,"2072":1,"2078":4,"2082":1,"2083":2,"2085":3,"2086":1,"2088":2,"2091":8,"2094":4,"2095":4,"2096":3,"2107":1,"2108":3,"2109":1,"2110":3,"2111":1,"2113":1,"2143":1,"2144":1,"2145":1,"2146":1,"2149":1,"2150":1,"2151":1,"2152":1,"2159":1,"2160":3,"2161":1,"2162":3,"2190":6,"2191":1,"2194":1,"2195":3,"2197":2,"2198":10,"2199":2,"2201":2,"2202":2,"2203":1,"2207":4,"2210":1,"2213":1,"2219":1,"2223":1,"2246":1,"2253":2,"2254":12,"2260":1,"2266":1,"2273":1,"2275":3,"2278":5,"2288":2,"2290":1,"2295":2,"2297":1,"2298":3,"2300":3,"2301":1,"2302":1,"2309":2,"2310":1,"2315":1,"2319":6,"2322":1,"2323":4,"2327":2,"2331":2,"2336":1,"2337":1,"2380":1,"2381":1,"2382":1,"2396":1,"2407":1,"2409":1,"2416":1,"2417":2,"2418":2,"2419":1,"2427":1,"2454":1,"2455":1,"2459":1,"2460":1,"2466":1,"2472":1,"2474":1,"2496":1,"2503":1,"2508":1,"2515":1,"2523":2,"2526":2,"2527":49,"2528":3,"2541":1,"2552":2,"2569":1,"2576":1,"2582":1,"2583":4,"2604":1,"2607":1,"2610":1,"2616":1,"2618":1,"2620":1,"2629":1,"2632":1,"2637":1,"2640":4,"2651":3,"2652":1,"2653":2,"2673":1,"2674":2,"2676":1,"2678":2,"2683":2,"2685":1,"2716":1,"2747":1,"2756":1,"2761":2,"2762":5,"2763":2,"2764":10,"2769":1,"2770":2,"2771":5,"2795":1,"2841":1,"2846":1,"2858":2,"2860":1,"2879":2,"2884":1,"2886":2,"2910":1,"2912":1,"2914":1,"2921":4,"2930":1,"2935":1,"2939":1,"2940":1}}],["se",{"2":{"5":1,"176":1,"1741":1,"2216":4,"2885":1}}],["seeks",{"2":{"2510":1}}],["seen",{"2":{"175":1,"232":1,"339":1,"709":1,"1485":1,"1538":1,"2275":1,"2566":1,"2567":1,"2643":1}}],["seemingly",{"2":{"2567":4}}],["seem",{"2":{"119":1,"273":1,"276":2,"1387":1,"1801":1,"2764":1}}],["seems",{"2":{"50":1,"1361":1,"2567":1}}],["sees",{"0":{"1673":1},"2":{"49":1,"215":1,"1781":1}}],["see",{"2":{"2":1,"14":1,"118":1,"132":1,"138":1,"152":1,"153":1,"166":1,"172":1,"174":1,"179":1,"182":2,"186":1,"189":1,"196":1,"228":1,"229":1,"232":1,"240":1,"247":1,"288":1,"289":1,"297":1,"298":1,"304":1,"306":1,"315":1,"316":1,"320":1,"331":1,"341":1,"375":1,"377":1,"393":2,"403":1,"411":1,"426":1,"431":1,"466":1,"467":1,"468":1,"488":1,"491":2,"552":1,"555":1,"561":2,"564":4,"570":3,"574":2,"594":1,"599":1,"606":1,"669":2,"684":1,"693":1,"694":1,"710":2,"716":1,"719":3,"721":1,"743":1,"746":2,"752":1,"755":1,"758":1,"762":1,"765":1,"766":1,"891":1,"1198":4,"1201":4,"1289":1,"1312":1,"1315":2,"1318":1,"1319":1,"1320":1,"1330":1,"1332":1,"1333":5,"1338":1,"1343":1,"1345":1,"1355":1,"1356":1,"1359":1,"1360":1,"1364":1,"1378":1,"1386":1,"1398":1,"1403":1,"1409":2,"1414":1,"1417":1,"1421":1,"1422":3,"1428":1,"1446":1,"1452":1,"1463":1,"1467":2,"1470":1,"1476":1,"1480":1,"1489":1,"1493":1,"1494":1,"1499":1,"1503":1,"1518":1,"1528":1,"1533":1,"1547":1,"1558":1,"1580":1,"1592":2,"1593":2,"1595":1,"1605":1,"1635":1,"1636":1,"1637":1,"1673":1,"1690":2,"1697":1,"1768":1,"1770":1,"1773":1,"1774":1,"1786":3,"1835":1,"1845":1,"1923":1,"1960":2,"1974":2,"1987":1,"1989":1,"1990":1,"1999":2,"2011":1,"2039":1,"2044":1,"2046":2,"2068":1,"2075":1,"2081":1,"2095":1,"2096":1,"2178":1,"2179":1,"2188":1,"2191":1,"2194":1,"2195":1,"2219":1,"2258":1,"2275":1,"2293":1,"2319":1,"2326":1,"2327":1,"2382":1,"2393":1,"2410":2,"2413":1,"2414":2,"2418":6,"2428":1,"2435":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2453":1,"2454":1,"2455":1,"2466":2,"2480":1,"2490":1,"2510":1,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2520":1,"2521":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2541":1,"2561":1,"2565":1,"2581":1,"2584":1,"2586":1,"2602":1,"2612":1,"2615":1,"2616":2,"2622":1,"2634":1,"2637":1,"2650":2,"2671":1,"2694":1,"2714":3,"2716":1,"2721":1,"2723":1,"2724":1,"2744":1,"2745":1,"2746":4,"2749":1,"2750":2,"2763":2,"2764":2,"2767":1,"2778":1,"2781":3,"2787":3,"2788":1,"2794":1,"2795":1,"2851":1,"2880":4,"2889":1,"2910":1,"2912":2,"2929":1,"2930":1,"2931":1,"2939":1}}],["swy",{"2":{"860":4,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1}}],["sw1",{"2":{"729":6,"863":5,"928":5,"962":5,"996":5,"1030":5,"1064":5,"1098":5,"1132":5,"1166":5}}],["swo",{"2":{"396":1}}],["swordfish",{"2":{"222":1}}],["swclk",{"2":{"396":2,"2507":1,"2508":1,"2683":1,"2691":1}}],["swdio",{"2":{"396":2,"2507":1,"2508":1,"2683":1,"2691":1}}],["swd",{"2":{"384":1,"390":1,"396":1,"2691":1}}],["swx",{"2":{"236":1,"857":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1095":3,"1126":1,"1129":3,"1160":1,"1163":3}}],["sw",{"2":{"217":1,"857":3,"860":15,"921":1,"925":2,"956":1,"959":2,"990":1,"993":2,"1024":1,"1027":2,"1058":1,"1061":2,"1092":2,"1095":6,"1126":2,"1129":6,"1160":2,"1163":6,"1741":1,"2181":1,"2532":1}}],["switzerland",{"2":{"2887":2}}],["switched",{"2":{"1427":1,"1486":1,"2182":1,"2652":1}}],["switches",{"0":{"1639":1,"1924":1,"2863":1},"1":{"1640":1,"1641":1,"1642":1,"1643":1,"1644":1},"2":{"114":1,"199":1,"236":1,"247":1,"249":1,"622":1,"1313":1,"1354":1,"1409":1,"1410":1,"1422":1,"1493":1,"1558":1,"1639":1,"1640":3,"1681":2,"1789":1,"1924":1,"1961":1,"2073":1,"2264":1,"2422":1,"2423":2,"2424":1,"2425":1,"2466":1,"2639":1,"2721":1,"2805":1,"2863":2,"2880":1}}],["switchplate",{"2":{"211":1}}],["switchs",{"2":{"160":1}}],["switching",{"0":{"1422":1,"2297":1,"2523":1},"1":{"1423":1},"2":{"50":1,"114":1,"132":1,"191":1,"575":1,"1353":2,"1384":1,"1422":1,"1424":1,"1541":1,"1765":1,"1948":1,"1960":2,"1961":2,"2054":1,"2287":1,"2293":2,"2309":1,"2327":1,"2377":1,"2503":1,"2523":1}}],["switch",{"0":{"26":1,"105":1,"231":1,"247":1,"1354":1,"1640":1,"1643":2,"1644":2,"1655":1,"1656":1,"1657":1,"1658":1,"1741":1,"2319":1},"2":{"3":1,"15":1,"16":1,"94":1,"105":15,"107":1,"114":8,"191":2,"194":3,"195":2,"231":3,"235":1,"236":5,"247":7,"249":4,"285":1,"307":1,"317":1,"324":1,"325":1,"328":1,"396":1,"561":3,"593":2,"622":1,"631":1,"632":1,"710":1,"1311":1,"1313":3,"1331":1,"1354":1,"1366":2,"1367":1,"1377":1,"1383":1,"1409":5,"1410":1,"1417":2,"1422":5,"1426":3,"1427":1,"1430":1,"1431":1,"1446":3,"1447":2,"1452":1,"1462":1,"1471":1,"1472":1,"1491":1,"1503":3,"1510":2,"1517":3,"1533":2,"1541":1,"1600":1,"1605":1,"1612":5,"1613":1,"1617":2,"1618":5,"1620":1,"1622":1,"1625":3,"1639":8,"1640":7,"1641":7,"1643":1,"1644":1,"1645":2,"1651":2,"1655":1,"1656":1,"1657":1,"1658":1,"1681":6,"1738":1,"1741":1,"1743":1,"1747":1,"1760":1,"1761":1,"1789":2,"1791":1,"1795":1,"1850":1,"1870":1,"1872":1,"1924":1,"1945":1,"1958":1,"1961":1,"1962":1,"1968":1,"1994":1,"1996":1,"2003":1,"2006":1,"2011":1,"2012":2,"2013":1,"2044":1,"2069":2,"2070":1,"2071":2,"2072":2,"2073":1,"2074":1,"2076":1,"2077":2,"2079":4,"2088":1,"2095":1,"2096":1,"2112":1,"2114":1,"2191":2,"2194":1,"2225":1,"2284":1,"2293":2,"2294":2,"2297":3,"2298":1,"2315":1,"2316":1,"2317":2,"2318":2,"2319":7,"2331":1,"2332":6,"2377":1,"2393":1,"2398":1,"2414":1,"2418":1,"2423":2,"2427":1,"2428":5,"2434":1,"2435":2,"2453":1,"2466":3,"2483":1,"2516":1,"2535":1,"2540":6,"2558":2,"2578":1,"2579":1,"2580":1,"2651":1,"2659":1,"2663":1,"2683":1,"2720":1,"2746":2,"2768":1,"2794":4,"2854":2,"2863":1,"2880":1,"2890":1,"2895":1,"2910":3,"2911":2,"2912":2,"2919":3,"2920":2,"2921":1,"2923":1,"2924":1,"2927":1,"2928":1,"2930":1,"2937":3,"2948":1}}],["swillkb",{"2":{"2422":1}}],["swipe",{"2":{"1971":12}}],["swirls",{"2":{"2185":1}}],["swirling",{"2":{"2183":1,"2187":1}}],["swirl",{"2":{"354":1,"2181":2,"2183":1,"2184":2,"2185":2,"2186":1,"2187":1,"2209":1,"2210":1,"2532":2,"2894":1}}],["swift65",{"2":{"266":2}}],["swiftrax",{"2":{"191":2,"277":1}}],["swiss",{"2":{"211":1,"2424":1,"2887":4}}],["sweet16v2",{"2":{"322":4,"328":1}}],["sweep",{"2":{"191":1,"249":1}}],["swedish",{"2":{"5":2,"2884":1,"2885":1,"2887":11}}],["swaps",{"2":{"1774":1}}],["swapping",{"2":{"194":1,"754":1,"1201":1,"1349":3,"2305":1,"2508":1,"2704":1,"2808":1,"2889":1}}],["swapped",{"0":{"1349":1},"2":{"166":1,"222":1,"746":1,"758":1,"1287":2,"1742":1}}],["swap",{"0":{"2302":1,"2304":1,"2539":1},"1":{"2303":1,"2304":1,"2305":1,"2306":1},"2":{"94":1,"114":1,"149":1,"157":1,"176":2,"191":1,"199":2,"211":2,"231":4,"247":1,"317":1,"1200":2,"1201":2,"1211":1,"1212":1,"1213":1,"1395":1,"1485":4,"1486":6,"1533":4,"1640":1,"1665":1,"2302":4,"2303":3,"2304":17,"2305":3,"2306":9,"2377":5,"2516":5,"2526":31,"2539":16,"2552":31}}],["suturation",{"2":{"2877":1}}],["sudden",{"2":{"2379":1}}],["sudo",{"2":{"513":1,"1315":8,"1316":4,"1332":1,"2417":1,"2593":7,"2717":1}}],["sunk",{"2":{"727":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1}}],["sunsetter",{"2":{"211":1}}],["suffer",{"2":{"720":1,"755":1,"1497":1}}],["sufficient",{"2":{"2297":1,"2569":1,"2747":1,"2936":1}}],["suffices",{"2":{"1781":1}}],["suffice",{"2":{"417":1}}],["suffix",{"2":{"627":4}}],["sugar|",{"2":{"681":1}}],["sugar||order",{"2":{"681":1}}],["sugar",{"2":{"681":1}}],["suggests",{"2":{"2734":1}}],["suggest",{"2":{"2448":1}}],["suggestions",{"2":{"620":1,"2565":1,"2616":1}}],["suggested",{"2":{"199":1,"403":1,"646":1,"1962":1,"2015":1,"2317":1,"2626":1,"2627":1}}],["summary",{"0":{"2742":1},"2":{"362":1}}],["sust",{"2":{"1925":1,"2527":1}}],["sustain",{"2":{"249":1,"1925":2,"2527":2}}],["susceptible",{"2":{"403":1,"1409":2,"1413":1}}],["suspense",{"2":{"222":1}}],["suspend",{"0":{"649":2,"650":1,"1906":1,"2166":1},"1":{"1907":1,"2167":1},"2":{"92":3,"93":1,"94":1,"112":1,"114":4,"133":1,"134":1,"149":2,"176":1,"222":3,"249":1,"263":2,"266":1,"277":2,"288":1,"328":1,"561":1,"574":1,"647":2,"648":2,"649":2,"650":4,"1626":1,"1638":6,"1906":1,"2166":1,"2272":1,"2760":1,"2764":4,"2882":2}}],["suspended",{"2":{"74":1,"114":2,"134":1,"222":1,"249":2,"649":1,"1678":1,"1685":1,"1852":1,"1907":1,"2091":1,"2167":1}}],["suspending",{"2":{"25":1,"561":1}}],["succeeds",{"2":{"2275":1}}],["succeed",{"2":{"1804":6}}],["success",{"2":{"613":1,"771":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"1256":1,"1261":1,"1264":1,"1988":2,"2615":4,"2626":1}}],["successfully",{"2":{"465":1,"469":1,"611":1,"1468":1,"1804":1,"1954":1,"2272":1,"2290":1,"2508":1,"2601":1,"2705":1}}],["successful",{"2":{"386":1,"1208":1,"1253":1,"1427":1,"2278":1}}],["successive",{"2":{"266":1}}],["succession",{"2":{"191":1}}],["such",{"2":{"55":1,"69":1,"87":1,"103":1,"118":1,"123":1,"124":1,"126":1,"132":1,"153":1,"163":1,"198":1,"229":1,"230":1,"234":1,"240":1,"244":1,"246":1,"263":1,"284":2,"297":1,"302":1,"414":1,"425":1,"430":1,"433":3,"470":1,"491":1,"516":1,"538":1,"540":1,"564":1,"588":1,"592":1,"627":1,"634":1,"644":1,"645":1,"651":2,"658":1,"665":1,"685":1,"709":1,"749":1,"750":1,"759":1,"761":1,"1246":1,"1288":1,"1298":1,"1311":1,"1317":1,"1423":1,"1448":1,"1453":1,"1464":1,"1465":1,"1466":2,"1472":1,"1485":1,"1486":1,"1492":1,"1518":1,"1532":2,"1592":1,"1603":1,"1606":1,"1630":1,"1690":1,"1738":1,"1739":1,"1765":1,"1781":1,"1789":1,"1801":1,"1855":1,"1920":2,"1946":1,"1962":1,"1974":2,"2011":1,"2013":1,"2054":2,"2094":2,"2273":1,"2276":1,"2278":1,"2280":1,"2318":2,"2330":2,"2331":2,"2389":1,"2393":1,"2400":1,"2402":1,"2404":1,"2409":1,"2422":1,"2434":1,"2435":1,"2452":1,"2458":2,"2474":2,"2477":1,"2503":1,"2553":1,"2558":1,"2562":1,"2566":1,"2568":1,"2569":3,"2589":1,"2607":1,"2626":3,"2653":3,"2673":3,"2684":2,"2685":1,"2709":1,"2714":1,"2715":1,"2725":1,"2734":1,"2746":4,"2747":3,"2749":1,"2751":1,"2760":2,"2761":1,"2764":1,"2771":1,"2802":1,"2808":1,"2851":1,"2869":1,"2886":1,"2911":1,"2912":1,"2918":1,"2919":1,"2921":1,"2922":1,"2930":1,"2932":1,"2934":1,"2940":1}}],["surprised",{"2":{"2747":1}}],["surplus",{"2":{"160":1}}],["surrogate",{"2":{"2331":1,"2347":1}}],["surrounding",{"2":{"512":2,"2086":2}}],["surfaces",{"2":{"2427":3,"2763":4}}],["surface",{"2":{"191":1,"328":1,"1651":1,"1967":1,"1983":1,"2428":1,"2760":2,"2763":31,"2845":1}}],["sure",{"2":{"50":1,"396":1,"422":1,"512":2,"514":1,"567":1,"596":2,"599":1,"607":1,"610":1,"615":7,"616":1,"619":2,"668":1,"672":1,"681":1,"710":1,"711":1,"1317":2,"1319":1,"1338":1,"1361":1,"1375":1,"1417":1,"1422":1,"1423":1,"1462":1,"1517":1,"1609":1,"1615":1,"2258":1,"2265":1,"2278":1,"2293":1,"2317":1,"2319":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2398":1,"2400":1,"2402":1,"2404":1,"2410":1,"2417":1,"2428":1,"2429":1,"2431":1,"2434":1,"2461":1,"2464":1,"2497":1,"2503":1,"2508":1,"2572":1,"2591":1,"2598":1,"2617":1,"2619":1,"2634":1,"2645":1,"2652":1,"2674":1,"2746":1,"2764":1,"2889":1,"2891":1}}],["suits",{"2":{"2639":1}}],["suite",{"2":{"465":2,"469":2}}],["suited",{"2":{"211":1,"417":1}}],["suitable",{"2":{"153":1,"1376":1,"1413":1,"2573":1,"2809":1,"2912":1,"2949":1}}],["suihankey",{"2":{"143":6}}],["supremely",{"2":{"1440":1}}],["superfluous",{"2":{"2912":1}}],["supervisor",{"2":{"2733":2}}],["supercharged",{"2":{"1762":1}}],["superior",{"2":{"1397":1,"1410":1}}],["super",{"0":{"1462":1},"2":{"675":1,"2388":1,"2510":2,"2546":2,"2575":2,"2677":1}}],["superscripted",{"2":{"355":1}}],["superscript",{"0":{"355":1}}],["supersedes",{"2":{"2603":1}}],["superseded",{"2":{"3":1,"7":1,"15":1,"25":1,"38":1}}],["superseeds",{"2":{"236":1}}],["suppression",{"2":{"1788":1,"2928":1}}],["suppressed",{"2":{"1774":2,"1779":1,"1781":2,"1784":1,"1785":1,"1788":2,"1974":1}}],["suppress",{"2":{"328":1,"1781":3,"1961":1}}],["supposing",{"2":{"1789":1,"2076":1,"2925":1,"2948":1}}],["supposed",{"2":{"2191":1,"2935":1}}],["suppose",{"2":{"289":1,"2635":1,"2925":1}}],["support=1",{"2":{"2407":1}}],["supports",{"2":{"166":1,"243":1,"248":1,"331":1,"375":1,"380":1,"469":1,"513":1,"547":1,"558":1,"572":1,"597":1,"619":1,"648":1,"685":1,"690":1,"696":1,"724":1,"746":3,"749":1,"750":1,"758":1,"759":1,"800":1,"826":1,"855":1,"887":1,"919":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1124":1,"1158":1,"1196":1,"1214":1,"1395":1,"1411":1,"1422":2,"1436":1,"1661":1,"1681":1,"1683":1,"1934":1,"1954":1,"1969":1,"1973":1,"1974":1,"1983":1,"2178":1,"2261":1,"2265":1,"2291":1,"2292":1,"2293":1,"2297":1,"2298":1,"2329":2,"2330":1,"2331":5,"2417":1,"2453":3,"2496":1,"2567":1,"2603":1,"2673":1,"2709":1,"2710":1,"2761":2,"2762":4,"2907":1,"2913":1,"2925":1}}],["supporting",{"0":{"1434":1,"2793":1},"1":{"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"50":1,"380":1,"594":1,"1738":1,"1985":3,"2255":1,"2296":1,"2400":1,"2402":1,"2569":1,"2902":1}}],["supported",{"0":{"1357":1,"1389":1,"1411":1,"1679":1,"1697":1,"1943":1,"2283":1,"2374":1,"2708":1},"1":{"1412":1,"1413":1,"1414":1,"2375":1,"2709":1,"2710":1},"2":{"49":2,"69":1,"118":1,"137":1,"153":1,"154":2,"163":2,"172":1,"213":1,"248":1,"262":1,"266":1,"285":1,"316":1,"347":1,"380":1,"430":1,"433":1,"496":1,"514":1,"570":1,"597":1,"619":1,"659":1,"665":1,"684":1,"685":1,"690":1,"716":2,"721":1,"723":2,"746":1,"764":1,"1199":1,"1203":2,"1204":2,"1205":1,"1300":1,"1303":1,"1343":1,"1351":1,"1357":1,"1391":2,"1392":2,"1393":2,"1399":2,"1423":1,"1444":1,"1446":1,"1481":1,"1544":1,"1550":1,"1553":1,"1554":1,"1603":1,"1627":1,"1639":1,"1665":1,"1697":1,"1740":1,"1845":1,"1945":1,"1952":2,"1965":1,"1973":1,"1974":1,"1976":1,"1978":1,"1983":1,"1984":1,"1985":2,"1988":2,"1989":1,"2046":1,"2047":1,"2048":1,"2081":1,"2219":2,"2222":1,"2292":1,"2294":1,"2309":2,"2331":1,"2374":2,"2375":2,"2376":1,"2400":1,"2402":1,"2407":1,"2418":3,"2505":1,"2567":2,"2583":1,"2603":1,"2616":2,"2626":1,"2627":1,"2629":1,"2684":1,"2704":2,"2707":2,"2709":4,"2713":1,"2745":1,"2747":1,"2753":3,"2760":1,"2761":2,"2803":1,"2869":2,"2889":1}}],["support",{"0":{"14":1,"35":1,"80":1,"81":1,"100":1,"108":1,"118":1,"130":1,"138":1,"145":1,"163":1,"232":1,"592":1,"593":1,"1288":1,"1341":1,"1354":1,"1378":1,"1468":1,"1603":1,"2037":1,"2223":1,"2292":1,"2536":1,"2540":1,"2672":1,"2704":1,"2711":1,"2712":1,"2713":1,"2886":1,"2900":1},"1":{"36":1,"1342":1,"2038":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2045":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1,"2901":1,"2902":1,"2903":1,"2904":1},"2":{"10":3,"35":1,"46":1,"49":4,"50":2,"63":5,"65":1,"74":3,"75":1,"76":1,"81":1,"86":2,"89":1,"93":12,"107":1,"108":1,"113":1,"114":15,"118":2,"120":1,"130":5,"131":1,"133":1,"134":14,"138":1,"145":1,"146":1,"149":9,"153":1,"154":1,"156":1,"160":7,"163":2,"167":1,"175":4,"176":18,"189":2,"190":1,"191":9,"199":10,"201":1,"210":3,"211":28,"213":1,"218":1,"222":5,"232":2,"234":1,"236":14,"248":2,"249":11,"262":1,"265":1,"266":4,"277":2,"279":1,"285":5,"288":1,"298":1,"306":1,"308":6,"315":1,"317":1,"328":4,"382":2,"429":1,"450":1,"461":1,"473":1,"474":1,"476":1,"482":1,"483":1,"491":1,"492":1,"529":1,"552":1,"554":1,"561":2,"564":1,"565":1,"574":2,"593":1,"594":1,"596":2,"665":1,"666":1,"667":1,"668":1,"697":1,"714":2,"741":1,"753":1,"1192":1,"1266":1,"1283":1,"1285":1,"1317":1,"1342":1,"1343":1,"1354":1,"1356":1,"1395":1,"1397":1,"1398":2,"1400":1,"1401":1,"1410":1,"1414":1,"1434":1,"1439":1,"1464":2,"1470":1,"1471":1,"1486":1,"1498":1,"1541":1,"1542":2,"1627":1,"1641":1,"1670":2,"1739":1,"1849":1,"1931":1,"1943":1,"1953":2,"1985":2,"2016":1,"2057":1,"2085":2,"2210":1,"2211":1,"2249":2,"2260":1,"2275":1,"2276":7,"2279":1,"2292":1,"2293":1,"2294":1,"2301":1,"2302":1,"2320":1,"2331":3,"2374":3,"2376":1,"2377":1,"2382":1,"2407":1,"2414":1,"2418":2,"2432":1,"2439":2,"2441":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2459":1,"2480":1,"2490":1,"2540":1,"2566":4,"2569":2,"2570":1,"2572":1,"2573":1,"2603":1,"2626":1,"2627":1,"2634":3,"2658":1,"2672":2,"2676":3,"2683":1,"2684":1,"2692":1,"2696":1,"2707":10,"2709":1,"2710":3,"2711":1,"2714":2,"2725":1,"2745":1,"2746":1,"2747":2,"2760":2,"2763":12,"2793":1,"2797":1,"2854":1,"2884":2,"2888":1,"2890":2,"2897":1,"2901":1,"2902":1,"2944":1}}],["supplements",{"2":{"631":1,"2738":1}}],["supplement",{"2":{"622":1}}],["supplying",{"2":{"657":1}}],["supply",{"2":{"123":1,"284":1,"380":1,"429":1,"513":1,"516":1,"1296":1,"1558":1,"2664":1}}],["supplied",{"2":{"118":1,"146":1,"230":1,"367":1,"433":1,"452":2,"453":2,"475":1,"489":3,"1248":1,"1253":1,"1448":1,"2684":1,"2705":1,"2756":1,"2762":1,"2763":1,"2764":14}}],["sublime",{"2":{"2645":1}}],["subfolder",{"2":{"2414":1,"2449":1,"2944":1}}],["subchain",{"2":{"1538":1}}],["subcommands",{"0":{"489":1},"2":{"486":1,"488":1,"489":1,"501":1}}],["subcommand|general|default>",{"2":{"475":1}}],["subcommand",{"2":{"95":1,"114":1,"132":1,"134":1,"149":1,"439":1,"472":1,"487":3,"489":5,"491":1,"492":1,"494":1,"495":3,"500":1}}],["subreddit",{"0":{"2898":1},"2":{"610":1,"2435":1}}],["subprocess",{"2":{"543":1}}],["subjective",{"2":{"2747":1}}],["subjected",{"2":{"2566":1}}],["subject",{"2":{"379":1,"2645":1,"2728":1,"2764":1}}],["subdirectories",{"2":{"236":1,"2414":1}}],["subdirectory",{"2":{"160":1,"176":1}}],["subtracting",{"2":{"1994":1}}],["subtraction",{"2":{"1410":1}}],["subtracted",{"2":{"524":1}}],["subtlety",{"2":{"194":1}}],["subtarget",{"2":{"49":1}}],["subs",{"2":{"1622":2}}],["subscripted",{"2":{"355":1}}],["subscript",{"2":{"294":1}}],["substrings",{"2":{"1528":1}}],["substring",{"2":{"1528":1,"2944":1,"2945":1}}],["substituting",{"2":{"403":1}}],["substitutions",{"2":{"49":1}}],["substantially",{"2":{"109":1}}],["subsequent",{"2":{"312":1,"403":1,"420":1,"1614":1,"1960":1,"2764":1,"2902":1,"2948":1}}],["subsequently",{"2":{"49":1,"265":1,"307":1,"402":1,"2610":1,"2747":1,"2756":1}}],["subset",{"2":{"65":1,"746":1,"1954":1,"2475":1,"2940":1,"2944":1}}],["subsystem==",{"2":{"1332":1}}],["subsystems",{"0":{"2329":1},"1":{"2330":1},"2":{"77":2,"163":1,"198":1,"2261":1,"2326":1,"2329":1,"2704":1,"2709":2,"2903":1}}],["subsystem",{"0":{"234":1,"1202":1},"1":{"1203":1,"1204":1,"1205":1},"2":{"11":1,"107":1,"114":2,"153":1,"175":1,"244":1,"308":1,"379":2,"574":1,"755":1,"1197":1,"1198":2,"1201":2,"1203":2,"1204":3,"1205":1,"1844":1,"2044":1,"2080":1}}],["sub",{"0":{"355":1,"2450":1},"2":{"6":1,"113":1,"114":1,"133":1,"134":1,"149":1,"558":1,"1317":1,"2449":1,"2450":7,"2454":21,"2455":21,"2781":1}}],["submission",{"2":{"414":2,"415":1,"417":1,"418":1,"2746":1}}],["submissions",{"2":{"103":1,"126":1,"275":1,"403":1,"1463":1,"2567":1,"2745":1,"2746":1}}],["submits",{"2":{"578":1}}],["submit",{"2":{"366":1,"414":1,"416":2,"506":1,"613":1,"615":2,"618":2,"619":1,"2569":1,"2747":1,"2836":2}}],["submitters",{"2":{"2569":1,"2744":1,"2746":2}}],["submitter",{"2":{"403":1,"2744":1,"2747":1}}],["submitted",{"2":{"116":1,"581":1,"2569":1,"2743":1,"2744":1,"2745":1,"2746":2,"2902":1}}],["submitting",{"0":{"376":1},"2":{"1":1,"369":1,"377":1,"619":1,"682":1,"2410":2,"2569":2,"2746":1}}],["submodules=on",{"2":{"2637":2}}],["submodules",{"0":{"10":1,"422":1},"2":{"10":1,"26":1,"69":1,"266":1,"411":1,"422":1,"1629":1,"2407":2,"2410":2,"2599":1,"2637":2}}],["submodule",{"0":{"6":1,"12":1,"21":1},"2":{"6":1,"10":1,"12":1,"21":1,"24":1,"114":2,"134":1,"160":1,"176":4,"191":1,"199":4,"211":2,"222":1,"249":2,"266":1,"285":1,"294":1,"308":1,"328":1,"339":1,"411":2,"1628":2,"2410":4}}],["soi8",{"2":{"2668":1}}],["sost",{"2":{"1925":1,"2527":1}}],["sostenuto",{"2":{"1925":2,"2527":2}}],["soyuz",{"2":{"317":1}}],["socket",{"2":{"2264":1,"2430":1}}],["sockets",{"2":{"114":1,"2264":1}}],["socd",{"2":{"288":1}}],["sodium62",{"2":{"249":1}}],["soda",{"2":{"176":1,"226":2,"236":2}}],["sonix",{"2":{"1214":1}}],["sony",{"2":{"133":1,"134":1}}],["songs",{"0":{"1485":1},"2":{"714":1,"1485":2,"1486":1,"1487":1,"2771":2}}],["song",{"0":{"27":1},"2":{"27":1,"134":1,"631":1,"1417":1,"1485":23,"1486":16,"1535":4,"1641":4,"1804":12,"1839":4,"2221":1,"2328":10,"2771":4}}],["sof",{"2":{"294":1}}],["sofle",{"2":{"114":1,"134":1,"249":1,"308":1}}],["softdevice",{"2":{"2727":1,"2728":2,"2733":3,"2736":1,"2742":1}}],["soft",{"2":{"63":1,"112":2,"199":3,"277":4,"308":1,"512":1,"514":1,"570":2,"651":3,"652":1,"653":1,"1194":1,"1195":1,"1207":1,"1686":4,"1925":3,"2266":1,"2275":2,"2378":1,"2527":3,"2702":1,"2772":1}}],["software",{"0":{"385":1,"722":1,"1481":1,"1550":1,"2496":1,"2506":1,"2776":1},"1":{"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"1482":1},"2":{"14":2,"215":1,"386":2,"711":1,"716":1,"722":2,"723":1,"1409":2,"1449":1,"1467":2,"1481":2,"1546":1,"1547":1,"1550":1,"1953":1,"2016":1,"2042":1,"2212":1,"2262":1,"2278":1,"2292":1,"2317":1,"2325":1,"2469":1,"2472":1,"2475":2,"2572":2,"2573":1,"2618":1,"2619":1,"2653":1,"2676":2,"2730":1,"2750":2,"2815":1,"2816":1,"2827":1,"2856":1,"2857":2,"2903":1,"2941":1}}],["sought",{"2":{"2712":1}}],["sourcing",{"2":{"2669":1}}],["sources",{"2":{"173":1,"665":1,"2331":1,"2567":28,"2568":1,"2569":1,"2744":1,"2746":2}}],["source",{"0":{"372":1},"2":{"5":1,"36":1,"67":1,"86":1,"102":1,"122":1,"130":1,"132":1,"143":1,"159":1,"168":1,"181":1,"197":1,"199":1,"234":1,"284":1,"366":1,"367":2,"372":1,"374":1,"378":2,"384":1,"439":1,"509":1,"581":2,"584":1,"586":2,"613":1,"623":1,"665":2,"693":1,"749":1,"750":1,"1357":3,"1464":4,"1533":1,"1634":2,"1855":1,"1952":4,"1958":1,"1966":1,"1978":1,"1981":1,"2094":1,"2207":2,"2291":1,"2331":1,"2388":1,"2395":1,"2397":1,"2417":11,"2432":1,"2455":1,"2477":1,"2478":1,"2483":1,"2556":1,"2563":1,"2566":3,"2567":8,"2568":7,"2569":3,"2571":1,"2573":1,"2590":1,"2597":2,"2600":1,"2602":2,"2628":1,"2653":1,"2673":1,"2685":1,"2686":1,"2687":1,"2727":2,"2728":2,"2737":2,"2740":1,"2741":1,"2742":1,"2744":2,"2746":3,"2753":1,"2827":1,"2895":3,"2944":2}}],["southwest",{"2":{"1741":1}}],["south",{"2":{"1741":1,"2051":1}}],["southeast",{"2":{"1741":1}}],["southpad",{"2":{"226":2,"236":1,"339":1}}],["southpaw75",{"2":{"67":2,"72":1}}],["southpole",{"2":{"159":2}}],["sound",{"2":{"1480":1,"1485":3,"1486":14,"1493":3,"1535":2,"1601":1,"1804":2,"1839":3,"2221":2,"2652":1,"2771":3}}],["soundmonster",{"2":{"92":1}}],["sounds",{"2":{"74":1,"1473":1,"1485":2,"1493":3,"1605":1,"1681":1,"2255":1,"2328":1,"2771":2}}],["solus",{"2":{"2593":1}}],["solutions",{"2":{"1337":1}}],["solution",{"0":{"1788":1},"2":{"1325":1,"1503":1,"1525":1,"1528":1,"1602":1,"1619":1,"1678":1,"1961":2,"2212":1,"2709":1,"2733":1,"2930":1}}],["solve",{"2":{"1423":1,"2576":1,"2634":1}}],["solves",{"2":{"1352":1}}],["solved",{"2":{"672":1}}],["sold",{"2":{"684":1}}],["soldering",{"0":{"2427":1,"2428":1,"2429":1},"1":{"2428":1,"2429":1},"2":{"2208":1,"2375":1,"2421":2,"2425":1,"2427":3,"2428":3,"2429":1,"2431":2}}],["solder",{"2":{"207":2,"211":4,"253":1,"266":1,"300":1,"2208":1,"2280":2,"2421":1,"2425":1,"2427":12,"2428":6,"2429":3,"2431":2,"2434":4,"2483":1}}],["solderd",{"2":{"176":1}}],["soldered",{"2":{"122":1,"197":1,"199":1,"211":4,"226":1,"241":2,"333":1,"1697":1,"2425":1,"2428":3,"2434":1}}],["solanis",{"2":{"211":1}}],["solidifies",{"2":{"2428":1}}],["solid",{"0":{"2087":1},"2":{"176":1,"249":1,"266":2,"1417":1,"1849":28,"1852":1,"2085":32,"2087":2,"2097":2,"2183":2,"2187":1,"2428":1,"2871":1,"2878":1,"2894":10}}],["sol3",{"2":{"149":1,"176":1}}],["sol",{"2":{"114":1,"149":1,"176":1,"294":1}}],["solomon",{"2":{"2425":1,"2436":1}}],["solo",{"2":{"107":1,"114":1}}],["solenoids",{"0":{"1681":1},"2":{"160":1,"1681":2}}],["solenoid",{"2":{"64":1,"114":1,"134":1,"191":1,"221":2,"236":1,"1678":2,"1680":3,"1681":28}}],["solheim68",{"2":{"57":2}}],["sorts",{"2":{"2477":1}}],["sorting",{"2":{"110":1,"211":1}}],["sort",{"2":{"49":1,"209":1,"211":1,"352":1,"651":1,"1356":1,"2264":1,"2428":1}}],["sooner",{"2":{"527":1,"2310":1}}],["soon",{"2":{"49":1,"377":1,"398":1,"564":1,"720":1,"1311":4,"1383":1,"1422":2,"1462":1,"1999":1,"2466":1}}],["somewhat",{"2":{"1351":1,"2329":1,"2410":1,"2684":1}}],["somewhere",{"2":{"412":1,"432":1,"1449":1,"1628":1,"2001":1,"2015":1,"2634":1,"2912":1}}],["somebody",{"2":{"1338":1,"2680":3,"2897":1}}],["someone",{"2":{"538":1,"540":1,"610":1,"616":1,"672":1,"2464":1,"2566":1,"2573":1}}],["something",{"2":{"125":1,"137":2,"185":1,"377":1,"414":1,"492":1,"493":1,"588":1,"631":2,"646":1,"656":1,"710":1,"712":1,"1326":1,"1405":1,"1409":1,"1417":2,"1427":1,"1450":1,"1470":1,"1471":1,"1485":1,"1489":1,"1490":1,"1499":1,"1546":1,"1591":1,"1593":1,"1601":2,"1766":1,"1794":1,"1798":1,"1801":1,"1851":1,"1923":1,"1939":1,"2012":1,"2090":1,"2096":1,"2211":1,"2275":1,"2309":1,"2427":1,"2428":1,"2431":2,"2482":1,"2566":1,"2584":1,"2628":1,"2634":1,"2637":1,"2640":1,"2652":1,"2683":1,"2749":1,"2762":1,"2776":2,"2897":1}}],["sometimes",{"2":{"119":1,"474":1,"493":1,"516":1,"540":1,"597":1,"665":1,"710":2,"711":1,"716":1,"1327":1,"1347":1,"1405":1,"1409":1,"1410":1,"1426":1,"1427":1,"1446":1,"1545":1,"1762":1,"1789":1,"1802":1,"1994":1,"2410":1,"2434":1,"2482":1,"2557":1,"2562":1,"2633":1,"2651":1,"2710":1,"2794":1,"2902":1,"2930":1,"2937":1,"2949":1}}],["some",{"0":{"1349":1,"2432":1},"2":{"2":1,"12":1,"25":1,"28":1,"50":1,"64":1,"95":1,"113":3,"114":6,"123":3,"124":1,"134":1,"149":4,"153":1,"157":1,"158":3,"160":4,"166":1,"174":2,"176":1,"182":2,"191":5,"196":1,"199":2,"209":1,"211":8,"215":1,"218":1,"222":2,"234":2,"235":1,"236":7,"246":1,"256":1,"266":3,"288":2,"294":4,"317":2,"333":1,"362":2,"369":1,"374":1,"393":1,"396":1,"397":1,"412":1,"414":3,"439":1,"487":1,"495":1,"500":1,"511":1,"512":1,"513":1,"514":2,"538":1,"540":1,"557":1,"558":1,"564":1,"571":1,"575":1,"597":1,"609":1,"610":1,"615":1,"618":1,"619":2,"637":1,"668":3,"684":1,"690":3,"710":2,"712":1,"719":1,"720":1,"749":1,"771":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"799":3,"1200":1,"1201":1,"1261":1,"1264":1,"1286":1,"1287":1,"1288":1,"1296":1,"1340":1,"1347":1,"1364":1,"1367":1,"1376":2,"1377":1,"1384":1,"1387":2,"1409":2,"1424":1,"1427":1,"1438":1,"1450":1,"1451":2,"1453":1,"1465":1,"1472":1,"1473":1,"1490":2,"1502":1,"1503":1,"1522":1,"1589":1,"1591":1,"1592":1,"1609":2,"1613":2,"1622":1,"1623":1,"1626":1,"1662":1,"1664":1,"1678":1,"1681":1,"1781":1,"1787":1,"1789":1,"1792":1,"1796":1,"1842":1,"1850":3,"1920":1,"1947":2,"1957":1,"1960":2,"1961":3,"1999":1,"2008":1,"2046":1,"2054":1,"2057":1,"2072":1,"2088":3,"2091":1,"2094":1,"2178":1,"2191":2,"2207":3,"2208":1,"2251":1,"2261":1,"2270":1,"2272":1,"2273":1,"2278":2,"2286":2,"2293":1,"2298":1,"2309":1,"2317":1,"2325":1,"2330":1,"2331":1,"2375":1,"2379":1,"2381":1,"2383":1,"2386":1,"2389":1,"2393":1,"2397":1,"2398":1,"2416":1,"2417":5,"2422":1,"2425":1,"2427":1,"2428":1,"2429":1,"2430":1,"2431":2,"2447":1,"2451":1,"2454":1,"2462":1,"2475":1,"2483":2,"2499":1,"2501":1,"2502":1,"2503":1,"2508":1,"2549":1,"2557":1,"2561":2,"2563":1,"2564":1,"2567":2,"2568":1,"2575":1,"2585":1,"2590":1,"2612":1,"2618":1,"2632":2,"2644":1,"2677":1,"2680":1,"2683":2,"2690":1,"2711":1,"2722":1,"2745":1,"2763":4,"2764":3,"2777":1,"2785":1,"2795":1,"2842":1,"2889":2,"2890":1,"2892":1,"2894":2,"2901":2,"2906":1,"2907":3,"2909":1,"2927":1,"2930":1,"2943":1,"2944":2,"2948":1,"2949":1}}],["so",{"2":{"0":1,"9":1,"13":2,"19":1,"39":1,"50":1,"52":1,"60":1,"73":1,"99":1,"112":1,"114":1,"118":1,"149":2,"163":2,"174":1,"176":1,"182":2,"191":1,"199":1,"231":1,"232":1,"245":1,"248":1,"273":1,"279":1,"284":2,"288":1,"323":1,"328":1,"353":1,"386":1,"391":1,"399":2,"403":1,"412":1,"489":1,"494":1,"505":1,"513":2,"526":1,"540":1,"586":1,"589":1,"610":2,"613":1,"616":1,"619":1,"647":1,"661":1,"665":1,"675":1,"677":1,"696":1,"709":1,"711":1,"720":1,"748":1,"755":1,"763":1,"1203":1,"1204":1,"1208":1,"1248":1,"1266":1,"1313":1,"1314":1,"1327":1,"1343":1,"1348":2,"1350":1,"1351":1,"1356":2,"1362":1,"1364":1,"1367":2,"1368":1,"1376":1,"1379":1,"1417":2,"1423":1,"1425":1,"1431":1,"1433":1,"1440":1,"1446":2,"1447":1,"1470":2,"1472":2,"1483":1,"1490":1,"1492":1,"1493":1,"1525":2,"1526":2,"1529":1,"1538":1,"1551":1,"1558":1,"1589":2,"1591":1,"1622":1,"1625":1,"1628":1,"1661":1,"1665":1,"1670":1,"1675":1,"1684":1,"1702":1,"1738":1,"1788":1,"1790":1,"1795":1,"1844":1,"1923":2,"1926":1,"1939":2,"1941":1,"1953":1,"1962":1,"1983":1,"1984":1,"1988":2,"1989":2,"1992":1,"1994":1,"1996":1,"2070":1,"2072":1,"2074":1,"2076":1,"2080":1,"2181":1,"2188":1,"2191":1,"2198":1,"2220":1,"2249":1,"2260":1,"2277":1,"2280":1,"2294":1,"2295":1,"2297":1,"2301":1,"2309":1,"2316":1,"2317":2,"2319":1,"2327":1,"2329":1,"2376":1,"2409":1,"2417":1,"2419":2,"2423":1,"2428":2,"2434":1,"2437":1,"2456":1,"2462":1,"2464":2,"2466":3,"2474":1,"2482":1,"2496":1,"2508":1,"2560":1,"2568":1,"2569":1,"2575":1,"2576":1,"2587":1,"2591":1,"2607":1,"2619":1,"2636":1,"2640":1,"2652":1,"2656":1,"2657":1,"2666":1,"2678":1,"2682":1,"2683":2,"2686":1,"2690":1,"2694":1,"2718":1,"2746":3,"2747":1,"2749":1,"2763":2,"2764":2,"2769":1,"2771":2,"2772":1,"2774":1,"2796":1,"2799":1,"2834":1,"2884":1,"2886":1,"2888":1,"2889":2,"2894":1,"2912":2,"2925":1,"2928":1,"2930":1,"2931":1,"2932":1,"2937":1,"2941":1,"2944":1,"2945":1,"2949":2}}],["ndel",{"2":{"2795":1}}],["ndash",{"2":{"348":1,"2069":3,"2295":1}}],["n↓",{"2":{"2795":1}}],["n→",{"2":{"2795":1}}],["n←",{"2":{"2795":1}}],["n↑",{"2":{"2795":1}}],["nhome",{"2":{"2795":1}}],["nhd",{"2":{"2283":1}}],["nrf5",{"2":{"2710":1}}],["nrf51822",{"2":{"2374":1,"2375":1}}],["nrst",{"2":{"2400":2,"2402":2,"2508":1,"2666":1,"2683":1}}],["nbsp",{"2":{"2922":1}}],["nb",{"2":{"2301":1}}],["n9",{"2":{"2301":1}}],["n8",{"2":{"2301":1}}],["n7",{"2":{"2301":1}}],["n3",{"2":{"1925":1,"2301":1,"2527":1}}],["n4",{"2":{"1925":1,"2301":1,"2527":1}}],["n40",{"2":{"222":1}}],["n5",{"2":{"1925":1,"2301":1,"2527":1}}],["n2",{"2":{"1925":2,"2301":1,"2527":2}}],["nw",{"2":{"1741":1}}],["nter",{"2":{"2079":1}}],["ntil",{"2":{"1593":1}}],["nt660",{"2":{"57":2}}],["nfer",{"2":{"1358":1}}],["ns",{"2":{"1292":1}}],["n1",{"2":{"411":1,"1925":2,"2301":1,"2527":2}}],["nyx",{"2":{"285":1}}],["nyquist",{"2":{"45":1,"285":1}}],["nucleo64",{"2":{"2746":1}}],["nucleo",{"2":{"2746":1}}],["nuanced",{"2":{"1934":1}}],["nubs",{"2":{"375":1,"589":2,"2510":1,"2544":1,"2563":1}}],["nuhs",{"2":{"375":1,"589":2,"2510":1,"2544":1,"2563":1}}],["nullbitsco",{"2":{"277":1}}],["null",{"2":{"222":1,"249":1,"272":2,"325":1,"377":1,"657":3,"1538":1,"1702":1,"1779":1,"1781":2,"2059":1,"2316":2,"2317":1,"2318":1,"2319":1,"2720":3,"2764":4}}],["nue",{"2":{"211":1}}],["numlock",{"2":{"1311":2}}],["numerous",{"2":{"188":1,"2261":1}}],["numerically",{"2":{"1427":1}}],["numerical",{"2":{"1330":2,"1427":1,"2884":1,"2948":1}}],["numeric",{"0":{"1507":1,"1514":1,"1695":1},"2":{"181":2,"591":1,"1503":1,"1507":1,"1510":2,"1695":1,"2320":1}}],["numpad",{"2":{"134":1,"143":2,"211":1,"236":1,"2331":1,"2344":1,"2547":1,"2794":5,"2795":5,"2936":1,"2937":2}}],["num",{"2":{"70":1,"188":1,"191":2,"199":1,"201":3,"222":2,"247":2,"249":2,"307":2,"328":1,"429":3,"430":2,"570":1,"696":1,"1354":1,"1413":1,"1414":1,"1640":2,"1667":2,"1693":1,"1835":1,"1836":2,"1838":1,"1945":2,"2096":1,"2185":1,"2195":1,"2197":1,"2276":1,"2284":2,"2301":12,"2305":1,"2510":5,"2545":5,"2761":2,"2763":13,"2764":2,"2787":1,"2795":3,"2796":3,"2867":2,"2935":1,"2938":1,"2939":1}}],["numbered",{"2":{"344":1,"694":1,"1425":2,"1426":1}}],["numbers",{"0":{"2542":1},"2":{"166":1,"524":2,"629":1,"1440":1,"1923":1,"1962":1,"2183":1,"2269":1,"2381":1,"2449":1,"2470":1,"2561":1,"2634":1,"2694":3,"2751":1,"2840":1}}],["number",{"0":{"591":1,"2238":1,"2240":1,"2242":1,"2244":1,"2550":1},"1":{"2239":1,"2241":1,"2243":1,"2245":1},"2":{"95":1,"114":2,"119":1,"134":1,"163":1,"166":2,"169":1,"174":3,"183":1,"199":1,"201":2,"211":1,"215":1,"233":1,"236":1,"285":1,"386":1,"425":1,"429":2,"433":4,"455":1,"460":1,"469":1,"522":1,"523":2,"524":4,"561":4,"565":4,"575":1,"613":1,"619":1,"629":2,"648":1,"656":1,"657":1,"660":1,"665":1,"671":1,"696":1,"719":4,"749":1,"750":1,"752":1,"753":1,"754":3,"755":3,"756":3,"770":1,"773":1,"776":1,"779":2,"782":1,"785":1,"788":1,"791":1,"802":1,"828":1,"857":1,"889":1,"902":1,"921":1,"937":1,"956":1,"971":1,"990":1,"1005":1,"1024":1,"1039":1,"1058":1,"1073":1,"1092":1,"1107":1,"1126":1,"1141":1,"1160":1,"1175":1,"1203":1,"1204":1,"1216":1,"1228":1,"1252":1,"1260":1,"1263":1,"1278":1,"1280":1,"1285":1,"1343":1,"1415":1,"1419":4,"1425":1,"1428":2,"1434":1,"1440":1,"1448":1,"1465":1,"1471":1,"1480":1,"1534":1,"1538":2,"1539":1,"1544":1,"1553":1,"1625":1,"1662":1,"1664":1,"1686":1,"1687":2,"1699":2,"1712":2,"1766":1,"1787":1,"1846":4,"1851":1,"1852":3,"1926":1,"1935":1,"1936":3,"1939":1,"1947":1,"1949":1,"1952":4,"1954":2,"1959":1,"1965":1,"1980":2,"2082":4,"2086":2,"2090":1,"2091":3,"2179":3,"2183":4,"2185":5,"2191":1,"2207":1,"2239":1,"2241":1,"2243":1,"2245":1,"2267":1,"2275":4,"2278":4,"2286":1,"2289":1,"2290":2,"2293":1,"2298":1,"2300":2,"2301":12,"2305":1,"2309":1,"2317":1,"2318":1,"2362":1,"2417":2,"2421":1,"2423":3,"2424":2,"2439":1,"2474":1,"2572":1,"2634":5,"2635":1,"2650":1,"2664":1,"2665":2,"2678":1,"2680":1,"2685":1,"2694":3,"2700":1,"2714":1,"2717":1,"2720":1,"2761":3,"2762":2,"2763":11,"2764":5,"2769":1,"2771":1,"2775":1,"2778":1,"2780":1,"2782":1,"2787":1,"2792":1,"2802":1,"2820":1,"2828":1,"2833":1,"2840":1,"2854":4,"2855":1,"2857":5,"2858":5,"2861":1,"2862":1,"2864":4,"2865":2,"2869":4,"2870":1,"2871":17,"2872":2,"2873":5,"2874":3,"2877":14,"2878":21,"2879":2,"2880":4,"2882":6,"2883":1,"2888":1,"2892":1,"2895":1,"2902":1,"2948":1,"2949":2}}],["numbering",{"2":{"50":1,"690":1}}],["numbrero",{"2":{"43":2}}],["nvram",{"2":{"191":1}}],["nvm",{"2":{"131":1,"134":1}}],["nqg",{"2":{"181":2,"191":1}}],["nc",{"2":{"2301":1}}],["ncr80",{"2":{"277":1}}],["ncc1701kb",{"2":{"249":1}}],["nced",{"2":{"176":1}}],["nckiibs",{"2":{"86":8}}],["nnbs",{"2":{"176":1}}],["nkeys",{"2":{"1625":1}}],["nk",{"2":{"211":1,"235":1,"303":1,"338":1,"2191":3,"2293":1,"2418":1,"2526":3,"2552":3}}],["nknl7jp",{"2":{"143":2}}],["nknl7en",{"2":{"143":2}}],["nk87b",{"2":{"211":1}}],["nk87",{"2":{"143":2,"211":1}}],["nk65",{"2":{"143":2,"311":2,"317":1}}],["nk1",{"2":{"143":2}}],["nkro",{"0":{"235":1,"303":2,"338":2,"1377":1,"2833":1},"2":{"50":1,"70":1,"111":1,"112":1,"191":1,"199":2,"211":1,"235":2,"236":3,"277":1,"303":6,"308":4,"317":2,"338":6,"339":1,"561":1,"574":2,"575":2,"1377":4,"1387":1,"1625":2,"2191":1,"2292":3,"2293":6,"2294":1,"2376":2,"2418":6,"2526":3,"2552":3,"2746":1,"2828":1,"2839":1,"2866":2,"2889":1}}],["nibble",{"0":{"2244":1},"1":{"2245":1}}],["nins",{"2":{"2795":1}}],["nine",{"2":{"1507":1}}],["ninja",{"2":{"191":1,"241":2}}],["nit",{"2":{"514":1}}],["nitty",{"0":{"2565":1},"2":{"365":1}}],["nickname",{"2":{"2639":1}}],["nicinabox",{"2":{"2281":1}}],["nicities",{"2":{"495":1}}],["nicer",{"2":{"2745":1,"2948":1}}],["nicest",{"2":{"2308":1}}],["nice",{"2":{"490":1,"492":1,"1340":1,"2178":1,"2281":1,"2678":1}}],["nightly",{"2":{"211":1,"222":1}}],["niu",{"2":{"143":2,"149":1}}],["nixpkgs",{"2":{"249":1}}],["nix",{"2":{"113":1,"114":1,"176":1,"211":1,"249":1,"308":1}}],["npgdn",{"2":{"2795":1}}],["npgup",{"2":{"2795":1}}],["npkc",{"2":{"2187":1}}],["npn",{"2":{"1545":1}}],["npm",{"2":{"386":1}}],["npminila",{"2":{"143":2}}],["npspears",{"2":{"149":1}}],["np21",{"2":{"143":2,"149":2}}],["nphhkb",{"2":{"143":2}}],["np64",{"2":{"143":2}}],["n6",{"2":{"114":1,"1925":1,"2301":1,"2527":1}}],["nxp",{"0":{"551":1},"2":{"108":1,"2396":1,"2802":1}}],["na",{"2":{"2301":1}}],["nav",{"0":{"1694":1},"2":{"1620":5,"1622":2,"1694":1,"1791":5,"1794":1}}],["navigating",{"2":{"2411":1}}],["navigation",{"2":{"1791":5,"2068":2,"2558":1,"2653":1,"2673":1}}],["navigate",{"2":{"617":1,"2433":1,"2502":1,"2614":1,"2709":1}}],["navi10",{"2":{"159":2}}],["nack",{"2":{"211":1}}],["nacly",{"2":{"143":2,"149":2,"249":1}}],["nanoseconds",{"2":{"1285":3,"1295":2}}],["nanoboot",{"2":{"311":1}}],["nano",{"2":{"191":1,"554":1}}],["naked64",{"2":{"143":2}}],["naked60",{"2":{"143":2}}],["naked48",{"2":{"143":2}}],["naiping",{"2":{"143":6}}],["nafuda",{"2":{"143":2}}],["naming",{"0":{"221":1,"233":1,"519":1,"1851":1,"2090":1,"2449":1},"1":{"520":1},"2":{"134":1,"156":1,"167":1,"182":2,"221":1,"222":6,"224":1,"233":2,"236":9,"238":1,"243":1,"244":1,"249":1,"266":1,"331":1,"616":1,"629":1,"1382":1,"1410":7,"2329":1,"2614":1,"2714":1,"2744":1,"2745":1}}],["name\`",{"2":{"1851":1,"2090":1}}],["name|description|",{"2":{"681":1}}],["name|short",{"2":{"681":1}}],["named",{"2":{"271":1,"376":1,"448":1,"449":1,"450":1,"489":1,"544":1,"593":1,"1350":1,"1433":2,"1463":2,"1464":1,"1945":1,"2284":1,"2432":1,"2453":3,"2595":1,"2636":1,"2640":1,"2794":1,"2795":1,"2804":1,"2837":1,"2838":1,"2937":1,"2949":1}}],["namely",{"2":{"202":1,"1472":1,"2388":1}}],["namecard2x4",{"2":{"143":2}}],["name>",{"2":{"55":2,"430":1,"1467":1,"1472":1}}],["name",{"0":{"57":1,"347":1,"598":1},"2":{"37":2,"43":2,"55":1,"56":2,"57":2,"58":2,"67":2,"70":1,"86":3,"102":2,"111":1,"114":2,"122":2,"134":1,"143":2,"149":2,"159":2,"167":1,"168":2,"169":1,"181":2,"182":2,"184":1,"188":1,"191":1,"197":2,"199":3,"207":2,"217":2,"226":2,"231":1,"236":1,"241":2,"253":2,"266":3,"270":2,"277":1,"281":2,"291":2,"294":1,"300":2,"311":2,"317":1,"322":2,"328":1,"339":1,"341":1,"403":1,"433":2,"444":1,"459":3,"463":1,"472":1,"484":2,"485":4,"489":12,"492":1,"495":2,"496":1,"516":1,"519":9,"520":1,"529":2,"561":1,"588":1,"591":1,"598":1,"613":3,"618":2,"668":1,"711":1,"712":3,"713":5,"1313":1,"1364":1,"1413":2,"1434":2,"1439":1,"1463":7,"1464":5,"1465":4,"1466":4,"1467":2,"1468":1,"1470":2,"1471":1,"1472":3,"1484":1,"1523":3,"1612":4,"1622":1,"1628":2,"1630":2,"1633":1,"1679":1,"1686":4,"1687":2,"1849":1,"1850":1,"1851":7,"1852":2,"1964":1,"2059":1,"2085":1,"2088":1,"2090":7,"2091":2,"2322":1,"2323":1,"2331":6,"2407":1,"2417":1,"2434":1,"2441":2,"2449":1,"2451":2,"2453":2,"2464":7,"2473":1,"2502":1,"2506":1,"2561":2,"2583":2,"2584":1,"2598":1,"2599":7,"2600":1,"2607":3,"2616":1,"2634":1,"2639":5,"2640":3,"2662":4,"2683":4,"2714":3,"2717":4,"2721":1,"2746":1,"2750":2,"2771":1,"2795":6,"2852":1,"2853":1,"2868":1,"2869":2,"2944":1,"2948":4,"2949":2}}],["names",{"0":{"520":1,"1347":1},"2":{"36":1,"37":1,"43":1,"92":1,"114":1,"157":1,"182":2,"188":3,"191":3,"222":2,"241":2,"253":2,"270":2,"277":1,"281":2,"333":1,"339":1,"434":1,"507":1,"516":1,"519":2,"520":2,"591":1,"696":1,"1203":1,"1204":1,"1347":2,"1433":1,"1438":2,"1593":1,"1635":1,"1636":1,"1741":1,"2320":1,"2329":2,"2417":2,"2449":3,"2453":1,"2561":2,"2567":1,"2718":1,"2746":3,"2794":1,"2868":1,"2869":2,"2948":7}}],["narrow",{"2":{"119":1,"176":1,"2057":1}}],["nat",{"2":{"2941":1}}],["nature",{"2":{"665":1,"1205":1,"2008":1,"2726":1}}],["naturally",{"2":{"1788":1,"2297":1,"2928":1}}],["natural",{"2":{"119":1,"1492":1,"2910":1}}],["natively",{"2":{"1953":1,"2691":1}}],["native",{"2":{"38":1,"49":1,"248":1,"249":1,"546":1,"588":1,"2761":2,"2762":2,"2763":12,"2764":3,"2945":1}}],["n",{"0":{"2833":1},"2":{"14":1,"196":1,"236":1,"266":2,"375":1,"434":2,"435":2,"455":2,"489":1,"521":1,"574":1,"589":2,"615":1,"829":2,"858":2,"890":2,"922":2,"923":2,"957":2,"991":2,"1025":2,"1059":2,"1093":2,"1094":2,"1127":2,"1128":2,"1161":2,"1203":1,"1204":1,"1207":2,"1213":1,"1217":2,"1268":6,"1329":1,"1330":1,"1333":1,"1377":1,"1410":1,"1420":1,"1446":2,"1535":1,"1545":1,"1558":1,"1625":2,"1701":1,"1713":1,"1741":1,"1798":1,"1804":1,"1843":3,"1847":2,"1945":4,"1952":2,"2068":1,"2070":1,"2083":2,"2222":1,"2225":1,"2253":6,"2277":2,"2284":4,"2293":1,"2298":1,"2300":4,"2327":1,"2328":5,"2330":1,"2376":1,"2501":1,"2510":9,"2526":3,"2542":3,"2552":3,"2563":1,"2714":1,"2762":4,"2780":3,"2782":4,"2784":3,"2789":3,"2927":1,"2948":1}}],["neo2",{"2":{"2887":2}}],["neopad",{"2":{"241":2,"300":2}}],["nend",{"2":{"2795":1}}],["neat",{"2":{"2425":1,"2891":1}}],["near",{"2":{"1462":1,"1485":1,"1849":2,"1976":1,"2085":2,"2429":1,"2794":1}}],["nearest",{"2":{"1252":1,"2301":1}}],["nearly",{"2":{"555":1,"665":1,"2510":1,"2640":1,"2695":1}}],["nearing",{"2":{"279":1}}],["nearfield",{"2":{"211":1}}],["neighbour",{"2":{"2427":1}}],["neighboring",{"2":{"2086":1}}],["neither",{"2":{"489":1,"494":1,"710":1,"1498":1,"2274":1,"2397":1,"2767":1,"2774":1}}],["negated",{"2":{"2778":1,"2779":1,"2787":1}}],["negatively",{"2":{"2276":1,"2902":1}}],["negative",{"0":{"1772":1,"1773":1},"2":{"643":1,"716":1,"722":1,"793":1,"1478":1,"1479":1,"1482":1,"1486":1,"1772":1,"1779":1,"1781":2,"1782":2,"1784":2,"1785":1,"2076":1}}],["neg",{"2":{"2778":1,"2779":2,"2780":1,"2781":1,"2782":1,"2783":1,"2784":1,"2787":2,"2788":1,"2789":1}}],["negmods",{"0":{"1772":1,"1773":1},"2":{"1770":1,"1776":5}}],["ne",{"2":{"1741":1}}],["nexus",{"2":{"1849":3,"2085":3,"2894":1}}],["nexecstart=",{"2":{"1316":2}}],["next",{"0":{"401":1,"412":1,"602":1},"1":{"402":1},"2":{"23":1,"103":1,"104":1,"133":1,"134":1,"156":1,"203":1,"230":1,"236":1,"265":1,"276":1,"307":1,"393":2,"401":1,"403":1,"408":1,"409":2,"412":1,"512":1,"589":2,"646":1,"647":1,"675":1,"717":2,"718":2,"719":3,"721":2,"764":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1283":1,"1292":1,"1299":2,"1303":2,"1367":1,"1405":1,"1422":1,"1431":4,"1489":2,"1490":2,"1495":4,"1539":2,"1556":2,"1557":2,"1594":1,"1600":1,"1612":1,"1614":1,"1622":1,"1667":1,"1675":1,"1680":3,"1699":1,"1713":1,"1762":1,"1764":1,"1776":3,"1848":3,"1865":1,"1867":1,"1873":1,"1874":1,"1899":1,"1900":1,"1947":1,"1954":4,"2003":1,"2042":1,"2057":1,"2068":2,"2084":3,"2107":1,"2109":1,"2115":1,"2116":1,"2153":1,"2154":1,"2178":1,"2181":2,"2199":2,"2231":1,"2235":1,"2273":1,"2286":1,"2290":4,"2304":1,"2309":1,"2317":1,"2331":2,"2332":2,"2338":1,"2377":5,"2379":1,"2423":1,"2428":1,"2429":1,"2468":1,"2508":1,"2510":3,"2512":4,"2516":5,"2521":1,"2525":3,"2532":2,"2533":3,"2539":1,"2540":2,"2549":3,"2551":1,"2564":1,"2598":1,"2650":1,"2662":1,"2683":2,"2686":1,"2709":1,"2718":1,"2721":1,"2886":1}}],["networks",{"2":{"2374":1}}],["net",{"2":{"420":1,"1378":1,"1379":1}}],["necessarily",{"2":{"2694":1,"2745":1}}],["necessary",{"0":{"2660":1},"2":{"218":1,"234":1,"375":1,"384":1,"385":1,"386":1,"393":2,"396":1,"397":1,"426":1,"429":1,"436":1,"574":1,"643":1,"711":1,"721":1,"768":1,"793":1,"1203":2,"1204":2,"1213":1,"1286":1,"1343":1,"1517":1,"1661":1,"1668":1,"1781":2,"1782":1,"1784":5,"2037":1,"2056":1,"2272":1,"2289":1,"2294":1,"2296":1,"2396":1,"2418":1,"2427":1,"2453":1,"2455":1,"2456":1,"2483":1,"2503":1,"2568":1,"2593":1,"2613":1,"2620":1,"2657":1,"2703":1,"2746":3,"2851":1,"2912":1}}],["necessitating",{"2":{"414":1}}],["never",{"0":{"2638":1},"1":{"2639":1,"2640":1,"2641":1},"2":{"229":1,"491":1,"493":1,"519":1,"613":1,"627":1,"652":1,"653":1,"1598":1,"1661":1,"1782":1,"1795":1,"2008":1,"2573":1,"2632":1,"2633":1,"2635":1,"2638":1,"2748":2,"2934":1}}],["neutralized",{"2":{"1788":1,"2928":1}}],["neutralizer",{"2":{"1788":4,"2928":4,"2930":1}}],["neutralize",{"2":{"222":1,"1788":6,"2928":6,"2930":1}}],["nebula68",{"2":{"143":2}}],["nebula68b",{"2":{"143":2,"253":2,"266":1}}],["nebula12b",{"2":{"211":1}}],["nebula12",{"2":{"143":2}}],["nest",{"2":{"2450":1}}],["nesting",{"2":{"1661":1,"1662":1,"2318":1}}],["nested",{"0":{"358":1,"359":1,"2916":1},"2":{"134":1,"344":4,"358":1,"359":1,"361":2,"670":1,"1662":1,"2869":1,"2913":1,"2919":3,"2925":1}}],["neson",{"2":{"114":1}}],["nerdtkl",{"2":{"18":1}}],["nerd60",{"2":{"18":1}}],["nerdd",{"2":{"18":1}}],["nerd",{"0":{"18":1},"2":{"18":3}}],["needle",{"2":{"2421":1,"2428":1}}],["needlessly",{"2":{"2012":1}}],["needless",{"2":{"222":2,"2775":1}}],["needing",{"2":{"125":1,"164":1,"185":1,"228":1,"1762":1,"2294":1,"2434":1}}],["needs",{"0":{"1378":1},"2":{"46":1,"411":1,"414":1,"416":1,"430":1,"458":1,"639":1,"656":1,"657":1,"691":1,"717":1,"718":1,"746":1,"749":1,"754":1,"755":1,"756":1,"758":1,"1311":1,"1422":1,"1470":1,"1485":1,"1535":1,"1612":3,"1651":1,"1747":1,"1977":1,"2011":1,"2015":1,"2270":1,"2295":1,"2297":1,"2305":1,"2329":1,"2418":2,"2441":1,"2466":1,"2482":2,"2509":1,"2640":1,"2671":1,"2682":1,"2683":2,"2684":1,"2712":1,"2713":1,"2740":1,"2746":1,"2762":1,"2764":2,"2794":1,"2795":1,"2851":1,"2864":1,"2940":1}}],["needed",{"2":{"21":1,"45":1,"113":1,"134":1,"158":1,"179":1,"196":1,"391":1,"420":1,"512":1,"514":1,"565":2,"639":1,"666":1,"714":1,"1194":1,"1197":2,"1200":1,"1311":1,"1332":1,"1395":2,"1450":1,"1463":1,"1496":1,"1534":1,"1591":1,"1605":1,"1681":1,"1779":1,"1985":1,"2012":1,"2013":1,"2038":1,"2076":1,"2086":1,"2261":1,"2277":1,"2298":1,"2302":1,"2309":2,"2319":1,"2374":1,"2459":1,"2593":1,"2637":1,"2640":1,"2673":1,"2676":2,"2679":1,"2714":1,"2744":1,"2800":2,"2889":1,"2933":1,"2944":1}}],["need",{"0":{"1496":1,"2438":1,"2480":1},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1},"2":{"5":1,"7":1,"14":1,"22":1,"31":1,"45":1,"49":1,"50":1,"89":1,"90":1,"107":1,"118":1,"124":1,"158":2,"164":1,"194":1,"199":1,"218":1,"220":1,"222":1,"232":1,"240":1,"241":1,"253":1,"255":1,"256":1,"259":1,"270":1,"272":2,"279":1,"281":1,"307":2,"323":2,"344":3,"388":1,"393":1,"403":2,"411":1,"414":1,"419":1,"420":1,"429":1,"433":1,"493":1,"496":1,"499":1,"509":2,"521":1,"525":2,"530":1,"531":1,"537":1,"541":1,"564":2,"589":1,"591":1,"612":1,"616":1,"619":1,"634":1,"637":1,"639":1,"644":1,"645":1,"665":1,"666":2,"672":1,"673":2,"685":1,"698":1,"710":1,"712":1,"720":1,"721":1,"725":1,"728":1,"752":1,"754":2,"761":1,"764":2,"801":1,"804":1,"827":1,"830":1,"856":1,"861":1,"862":1,"888":1,"892":1,"920":1,"926":1,"927":1,"955":1,"960":1,"961":1,"989":1,"994":1,"995":1,"1023":1,"1028":1,"1029":1,"1057":1,"1062":1,"1063":1,"1091":1,"1096":1,"1097":1,"1125":1,"1130":1,"1131":1,"1159":1,"1164":1,"1165":1,"1207":1,"1215":1,"1218":1,"1246":1,"1247":1,"1248":2,"1267":1,"1269":2,"1284":1,"1287":1,"1299":1,"1300":1,"1303":1,"1313":1,"1315":1,"1316":1,"1318":1,"1319":1,"1332":1,"1336":2,"1342":1,"1348":1,"1354":1,"1366":1,"1376":1,"1377":1,"1380":1,"1388":1,"1390":1,"1417":1,"1423":1,"1426":1,"1439":2,"1442":1,"1450":1,"1464":1,"1470":1,"1472":2,"1510":1,"1522":2,"1526":3,"1527":1,"1537":1,"1538":1,"1544":1,"1546":1,"1556":2,"1557":1,"1589":1,"1590":1,"1591":2,"1594":1,"1602":2,"1603":1,"1606":1,"1612":2,"1615":1,"1622":1,"1627":1,"1634":1,"1640":1,"1648":1,"1666":1,"1667":1,"1681":1,"1762":1,"1768":2,"1779":2,"1781":2,"1782":1,"1789":1,"1802":1,"1836":1,"1923":3,"1944":1,"1947":1,"1953":1,"1965":2,"1983":2,"2012":1,"2037":1,"2043":1,"2046":1,"2054":1,"2057":1,"2058":1,"2070":1,"2086":1,"2179":1,"2189":2,"2194":1,"2198":1,"2208":1,"2210":2,"2211":1,"2220":1,"2264":2,"2266":1,"2267":1,"2268":1,"2273":2,"2275":2,"2277":1,"2278":1,"2280":4,"2281":1,"2284":1,"2286":1,"2293":1,"2298":1,"2300":1,"2309":2,"2316":1,"2317":4,"2318":1,"2319":2,"2327":1,"2329":1,"2331":2,"2393":1,"2395":1,"2397":1,"2398":1,"2410":1,"2411":1,"2416":1,"2417":3,"2418":3,"2421":1,"2427":1,"2428":2,"2432":1,"2434":2,"2452":1,"2454":2,"2475":1,"2482":2,"2483":2,"2484":1,"2488":1,"2497":1,"2506":1,"2561":1,"2569":1,"2576":1,"2586":1,"2587":1,"2591":2,"2594":1,"2595":1,"2604":2,"2608":1,"2616":1,"2618":1,"2619":3,"2621":1,"2622":1,"2624":1,"2635":1,"2637":2,"2640":2,"2651":2,"2653":1,"2656":1,"2657":1,"2658":1,"2660":1,"2673":1,"2677":1,"2678":1,"2680":1,"2683":3,"2691":1,"2714":1,"2744":3,"2745":1,"2748":1,"2753":1,"2760":2,"2762":1,"2764":3,"2794":1,"2842":1,"2851":1,"2886":1,"2888":2,"2889":2,"2894":1,"2897":1,"2901":1,"2905":1,"2912":5,"2932":2,"2940":1,"2949":2}}],["newhaven",{"2":{"2283":1}}],["newbs",{"2":{"684":2,"1336":1,"2604":1,"2642":1,"2674":1,"2748":2}}],["newline",{"2":{"1333":1,"1448":2,"1713":1}}],["newlines",{"2":{"344":1,"513":1,"2563":1}}],["newlib",{"2":{"191":1}}],["newly",{"2":{"188":1,"191":1,"266":1,"275":1,"1472":1,"2310":1,"2433":1,"2610":1,"2678":1,"2683":1,"2744":1,"2747":1}}],["newest",{"2":{"163":1,"173":1,"408":1,"411":1,"412":1}}],["newer",{"2":{"10":2,"49":1,"123":1,"133":1,"149":1,"157":1,"236":3,"308":1,"2068":1,"2383":1,"2888":1}}],["news",{"2":{"133":1,"134":1}}],["new",{"0":{"82":1,"112":1,"130":1,"145":1,"146":1,"444":1,"445":1,"629":1,"1796":1,"2584":1,"2711":1,"2712":1,"2713":1,"2944":1},"1":{"147":1,"148":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1},"2":{"1":1,"22":1,"24":1,"25":1,"36":1,"37":2,"38":1,"43":2,"46":1,"49":1,"56":2,"57":1,"58":1,"67":1,"70":4,"82":1,"86":1,"93":1,"99":2,"102":1,"103":1,"112":2,"113":2,"114":3,"118":3,"122":1,"123":1,"125":1,"126":1,"130":1,"132":1,"133":1,"134":4,"143":1,"149":7,"152":1,"153":2,"156":2,"158":1,"159":1,"160":1,"164":1,"167":1,"168":1,"173":2,"176":2,"181":1,"182":5,"183":3,"185":1,"186":1,"191":1,"194":1,"197":1,"199":3,"202":1,"203":1,"207":1,"211":1,"213":1,"217":1,"218":1,"219":1,"221":6,"224":1,"226":1,"228":3,"229":1,"230":2,"234":1,"236":3,"240":1,"241":1,"243":2,"244":1,"249":2,"253":1,"254":1,"265":1,"266":3,"270":1,"271":1,"273":1,"277":1,"281":1,"283":1,"285":3,"288":1,"291":1,"294":1,"300":1,"303":1,"307":3,"308":6,"311":1,"322":1,"328":1,"331":1,"333":2,"338":1,"353":2,"366":1,"402":2,"403":2,"405":1,"412":2,"414":1,"422":1,"432":1,"443":1,"444":2,"445":2,"448":1,"449":1,"450":3,"485":2,"486":1,"495":1,"540":1,"542":1,"613":2,"618":1,"619":2,"623":2,"628":1,"630":1,"651":1,"666":2,"668":2,"672":2,"673":3,"681":1,"682":1,"684":1,"710":1,"711":1,"712":1,"1332":1,"1338":1,"1343":1,"1350":1,"1417":2,"1431":1,"1433":1,"1446":1,"1472":5,"1500":1,"1521":1,"1522":1,"1535":1,"1551":1,"1622":1,"1627":1,"1628":1,"1630":1,"1846":1,"1850":2,"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1890":1,"1891":1,"1892":1,"1897":1,"1900":1,"1902":1,"1940":2,"1947":1,"1948":1,"1954":2,"1955":1,"1984":1,"1988":2,"1990":1,"1999":1,"2082":1,"2088":2,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2144":1,"2145":1,"2146":1,"2151":1,"2154":1,"2156":1,"2161":1,"2259":1,"2286":1,"2290":2,"2295":2,"2298":1,"2303":1,"2310":1,"2341":1,"2343":1,"2387":1,"2400":1,"2402":1,"2404":1,"2405":1,"2410":1,"2418":1,"2428":1,"2432":2,"2459":1,"2500":1,"2502":1,"2504":2,"2567":1,"2568":1,"2583":1,"2584":4,"2588":1,"2603":1,"2607":4,"2610":1,"2621":1,"2622":1,"2637":1,"2638":2,"2640":5,"2642":1,"2643":1,"2662":1,"2678":1,"2691":1,"2707":1,"2711":1,"2712":1,"2713":1,"2714":5,"2744":2,"2746":3,"2747":6,"2795":1,"2836":1,"2893":2,"2912":5,"2925":1,"2941":1,"2944":2}}],["nose",{"2":{"2421":1,"2428":1}}],["nose2",{"2":{"501":1,"505":2}}],["nos",{"2":{"1490":1,"2434":1}}],["nobody",{"2":{"513":1}}],["nodes",{"2":{"585":1,"1538":5}}],["node",{"2":{"386":1,"460":1,"461":1,"582":1,"585":1,"1525":1,"1538":23,"1539":8,"2057":2}}],["nomenclature",{"0":{"2694":1}}],["nomis",{"2":{"339":1}}],["nomu30",{"2":{"143":2}}],["nop",{"2":{"249":1}}],["nopq",{"2":{"249":1}}],["noop",{"2":{"2510":1,"2551":1,"2561":1}}],["noodlepad",{"2":{"249":1}}],["noon",{"2":{"211":1}}],["noxary",{"2":{"211":2}}],["noevent",{"2":{"199":1}}],["noeeprom",{"0":{"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1},"1":{"1872":1,"1892":1,"1898":1,"2114":1,"2146":1,"2152":1,"2162":1},"2":{"49":2,"191":1,"641":3,"1417":14,"2097":2,"2199":3,"2200":3,"2201":7,"2202":3,"2205":1}}],["noconfirm",{"2":{"158":1,"2593":1}}],["noci",{"2":{"149":1,"191":1}}],["norwegian",{"2":{"2887":3}}],["northwest",{"2":{"1741":1}}],["northeast",{"2":{"1741":1}}],["north",{"2":{"1346":1,"1741":2,"2051":1}}],["noroadsleft",{"2":{"266":1}}],["norm",{"2":{"191":1,"247":1,"525":1,"1485":4,"1486":6,"1640":1,"2526":6,"2552":6}}],["norman",{"2":{"176":1,"2887":3}}],["normalized",{"2":{"1647":1}}],["normalise",{"2":{"188":9,"191":10,"199":1,"266":1,"277":1}}],["normal",{"2":{"128":1,"152":1,"154":1,"224":1,"288":1,"340":1,"350":1,"494":1,"570":1,"630":1,"754":1,"757":2,"1320":2,"1349":1,"1364":2,"1413":1,"1417":2,"1425":1,"1446":1,"1447":2,"1498":3,"1503":1,"1518":1,"1522":1,"1535":1,"1610":1,"1626":1,"1633":1,"1638":1,"1640":1,"1667":2,"1784":1,"1785":1,"1786":1,"1787":1,"1986":1,"2051":1,"2255":1,"2265":1,"2273":1,"2275":1,"2276":1,"2277":1,"2379":1,"2417":1,"2579":3,"2603":1,"2607":1,"2637":1,"2650":1,"2651":1,"2683":2,"2687":1,"2704":1,"2730":1,"2746":1,"2760":1,"2763":1,"2764":2,"2903":1,"2931":1,"2943":1}}],["normally",{"2":{"99":1,"164":1,"302":1,"470":1,"495":1,"496":1,"569":1,"631":1,"683":1,"1417":1,"1431":1,"1447":1,"1514":1,"1614":1,"1630":1,"1781":2,"1962":1,"2076":1,"2077":1,"2192":1,"2206":1,"2272":1,"2292":1,"2318":1,"2523":1,"2658":1,"2919":1,"2920":1,"2940":1}}],["nor",{"2":{"174":1,"494":1,"637":1,"746":1,"753":1,"755":2,"758":1,"759":2,"1298":1,"1535":1,"2393":1,"2398":1,"2707":1,"2749":1}}],["nordic",{"2":{"5":1,"2375":2,"2727":2,"2728":5,"2733":4,"2734":1,"2736":1,"2737":1,"2742":1}}],["novices",{"2":{"2632":1}}],["novice",{"2":{"2460":1}}],["novelpad",{"2":{"143":2}}],["novelkeys",{"2":{"143":4,"149":1,"211":2,"311":2,"317":1}}],["november",{"0":{"115":1,"177":1,"223":1,"278":1},"1":{"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1},"2":{"279":1}}],["nov",{"0":{"52":1,"318":1},"1":{"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1},"2":{"55":1,"88":1,"104":1,"127":1,"170":1,"400":1,"413":6}}],["nonus",{"2":{"2510":2,"2544":2}}],["nonactuated",{"2":{"1681":2}}],["nonnull",{"2":{"1419":4}}],["nonstandard",{"2":{"317":1}}],["nonex",{"2":{"2455":1}}],["none",{"2":{"266":1,"328":1,"333":1,"339":2,"387":1,"397":1,"473":2,"474":2,"476":1,"482":2,"483":2,"484":3,"485":5,"487":1,"534":1,"713":2,"749":1,"750":1,"759":1,"860":2,"921":4,"923":1,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1092":4,"1094":1,"1095":2,"1126":4,"1128":1,"1129":2,"1163":2,"1192":1,"1248":1,"1318":1,"1522":1,"1551":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1847":1,"1849":1,"1852":6,"2003":1,"2008":7,"2009":3,"2059":2,"2083":1,"2085":1,"2091":8,"2183":4,"2298":1,"2317":3,"2318":1,"2319":3,"2377":2,"2455":1,"2516":2,"2685":1,"2714":1,"2760":1}}],["non",{"0":{"2462":1,"2710":1,"2799":1},"2":{"28":1,"49":1,"51":1,"70":1,"94":1,"133":1,"134":2,"160":2,"176":2,"199":1,"213":1,"222":1,"249":1,"308":2,"514":1,"581":1,"719":1,"757":1,"1417":1,"1428":2,"1439":1,"1442":1,"1517":1,"1527":1,"1528":1,"1666":1,"1681":2,"1692":2,"1781":2,"1784":1,"1785":2,"1787":2,"1999":1,"2000":1,"2003":1,"2009":1,"2014":1,"2072":2,"2269":1,"2276":1,"2296":1,"2297":1,"2317":1,"2319":1,"2331":1,"2389":1,"2434":1,"2435":1,"2460":1,"2510":3,"2544":2,"2551":1,"2559":2,"2566":1,"2568":2,"2704":1,"2710":2,"2739":1,"2743":1,"2744":1,"2746":1,"2792":1,"2797":1,"2895":1}}],["noise",{"2":{"17":1,"1409":4,"1410":6,"1413":2,"2053":1,"2384":1,"2391":1}}],["nowhere",{"2":{"2567":1}}],["now",{"0":{"90":1,"105":1,"137":1,"273":1},"2":{"10":3,"11":2,"16":1,"18":2,"25":1,"45":1,"49":5,"50":2,"58":1,"69":2,"70":2,"73":1,"74":1,"76":1,"80":1,"83":1,"94":1,"98":1,"99":2,"103":1,"104":1,"105":1,"107":1,"114":1,"118":2,"119":1,"120":2,"124":2,"125":1,"126":2,"127":1,"130":1,"131":1,"134":1,"137":1,"138":1,"141":1,"146":1,"153":1,"172":1,"173":1,"174":1,"182":2,"185":1,"194":1,"195":1,"196":1,"201":3,"206":2,"209":1,"211":1,"214":1,"224":1,"234":2,"235":1,"245":1,"246":1,"248":1,"262":2,"263":1,"273":1,"275":2,"283":2,"293":2,"305":2,"307":1,"314":3,"323":2,"331":1,"389":1,"392":1,"393":3,"403":1,"405":1,"406":1,"407":1,"408":2,"411":4,"473":2,"512":1,"539":1,"540":1,"589":1,"665":1,"721":1,"1311":1,"1362":4,"1387":1,"1417":3,"1448":1,"1472":1,"1523":4,"1592":1,"1604":1,"1615":1,"1673":2,"1762":1,"1786":1,"1801":1,"1802":1,"2189":1,"2190":1,"2249":1,"2255":1,"2259":1,"2260":1,"2277":1,"2298":1,"2302":1,"2310":1,"2315":1,"2317":1,"2319":1,"2410":2,"2430":1,"2466":2,"2498":1,"2502":1,"2508":1,"2561":1,"2566":1,"2582":1,"2583":1,"2603":2,"2608":1,"2611":1,"2629":1,"2630":1,"2634":2,"2635":1,"2636":1,"2637":3,"2639":3,"2640":1,"2662":1,"2663":1,"2678":1,"2682":1,"2684":1,"2714":2,"2747":2,"2894":1,"2912":1}}],["no",{"0":{"141":1,"592":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1512":1,"1616":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2932":1},"2":{"2":2,"5":1,"6":1,"48":1,"50":1,"74":1,"88":2,"92":1,"103":2,"104":2,"112":1,"114":1,"118":1,"124":1,"126":1,"127":2,"130":1,"134":1,"141":1,"149":3,"154":1,"176":1,"189":1,"191":1,"196":1,"199":2,"201":1,"211":2,"213":1,"218":1,"224":1,"231":1,"233":1,"240":1,"245":1,"249":1,"255":1,"262":1,"265":1,"266":4,"268":1,"273":3,"276":1,"279":1,"284":1,"285":1,"312":1,"317":1,"328":1,"348":1,"402":1,"409":1,"411":1,"412":1,"422":1,"434":1,"439":1,"455":1,"459":1,"475":2,"540":1,"562":5,"564":2,"570":1,"574":1,"575":1,"589":1,"596":1,"607":1,"613":1,"615":3,"618":1,"639":2,"675":1,"676":1,"709":1,"711":1,"723":1,"750":1,"752":1,"763":1,"764":1,"923":1,"1094":1,"1128":1,"1213":1,"1247":1,"1248":3,"1268":1,"1276":1,"1297":1,"1298":1,"1319":1,"1320":1,"1361":1,"1366":1,"1383":1,"1405":1,"1408":1,"1410":1,"1413":7,"1416":1,"1424":1,"1431":1,"1462":1,"1463":1,"1481":1,"1490":1,"1491":1,"1496":1,"1498":3,"1500":1,"1502":2,"1503":1,"1510":5,"1517":1,"1518":1,"1522":2,"1528":4,"1533":2,"1534":1,"1590":6,"1595":1,"1598":1,"1605":1,"1609":1,"1616":1,"1618":2,"1620":1,"1622":2,"1647":1,"1661":1,"1662":2,"1664":1,"1668":1,"1670":1,"1671":2,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1742":1,"1776":5,"1779":3,"1781":5,"1782":2,"1785":2,"1786":1,"1788":3,"1790":1,"1802":1,"1804":1,"1815":1,"1818":1,"1846":10,"1847":1,"1849":1,"1925":1,"1937":2,"1938":1,"1943":4,"1971":1,"2016":2,"2059":1,"2068":1,"2069":1,"2082":10,"2083":1,"2085":1,"2095":1,"2181":1,"2191":2,"2198":1,"2210":2,"2220":1,"2258":1,"2259":3,"2260":1,"2275":2,"2278":2,"2292":2,"2298":3,"2310":1,"2316":1,"2317":1,"2325":1,"2376":1,"2388":1,"2417":1,"2418":5,"2419":1,"2425":4,"2433":1,"2450":1,"2460":1,"2466":3,"2478":1,"2504":1,"2510":1,"2527":1,"2532":1,"2541":1,"2551":1,"2561":2,"2564":1,"2567":4,"2568":1,"2571":1,"2579":1,"2580":2,"2612":1,"2618":1,"2636":1,"2653":1,"2657":1,"2673":1,"2679":1,"2683":1,"2685":1,"2720":1,"2726":2,"2727":2,"2728":1,"2731":2,"2733":1,"2740":4,"2741":4,"2742":1,"2744":1,"2745":1,"2746":15,"2760":1,"2762":8,"2764":3,"2778":1,"2781":5,"2787":1,"2794":8,"2854":1,"2869":1,"2871":1,"2872":1,"2878":1,"2882":1,"2886":2,"2889":7,"2890":2,"2891":2,"2892":1,"2912":1,"2925":2,"2928":3,"2930":2,"2932":1,"2934":1,"2936":1,"2937":5}}],["noto11",{"2":{"2762":4,"2764":3}}],["notosans",{"2":{"2762":1}}],["notset",{"2":{"492":1}}],["nothing",{"0":{"1320":1},"2":{"432":1,"666":1,"750":1,"1362":3,"1431":2,"1625":1,"1786":1,"2013":1,"2069":1,"2260":1,"2417":1,"2686":1,"2687":1,"2906":1,"2912":1,"2926":1,"2928":2}}],["noting",{"2":{"1605":1,"2309":1}}],["notion",{"2":{"1534":1}}],["notification",{"2":{"352":1,"362":1,"1627":1}}],["notified",{"2":{"312":1}}],["noticeably",{"2":{"1953":1}}],["noticeable",{"2":{"572":1,"2919":1}}],["noticed",{"2":{"1671":1,"1953":1}}],["notices",{"0":{"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"330":1,"336":1},"1":{"265":1,"275":1,"276":1,"283":1,"284":1,"293":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"314":1,"315":1,"316":1,"327":1,"331":1,"332":1,"337":1,"338":1},"2":{"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1}}],["notice",{"0":{"2903":1},"2":{"263":1,"264":1,"274":1,"276":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"411":1,"1447":2,"1448":1,"2903":1,"2931":1,"2937":2,"2938":1}}],["notably",{"2":{"158":1,"1343":1,"1961":1}}],["notable",{"0":{"79":1,"97":1,"106":1,"117":1,"129":1,"136":1,"144":1,"151":1,"162":1,"171":1,"178":1,"187":1,"198":1,"201":1,"208":1,"213":1,"224":1,"227":1,"238":1,"242":1,"251":1,"261":1,"268":1,"279":1,"287":1,"296":1,"319":1,"335":1},"1":{"80":1,"81":1,"82":1,"83":1,"84":1,"98":1,"99":1,"100":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"118":1,"119":1,"120":1,"130":1,"131":1,"132":1,"133":1,"137":1,"138":1,"145":1,"146":1,"147":1,"148":1,"152":1,"153":1,"154":1,"163":1,"164":1,"172":1,"173":1,"174":1,"175":1,"179":1,"188":1,"189":1,"190":1,"202":1,"203":1,"204":1,"209":1,"210":1,"214":1,"215":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"262":1,"263":1,"288":1,"289":1,"297":1,"298":1,"320":1},"2":{"224":1,"279":1,"709":1,"1477":1,"2569":1}}],["notation",{"0":{"111":1},"2":{"111":1,"323":2,"670":1,"2466":1}}],["noted",{"2":{"103":1,"126":1,"276":1,"1472":1,"2085":1,"2589":1}}],["note",{"0":{"27":1,"2426":1},"2":{"27":1,"132":1,"199":1,"201":1,"213":1,"222":5,"241":1,"253":1,"270":1,"272":1,"273":1,"281":1,"396":1,"397":1,"423":1,"430":1,"432":1,"439":1,"461":1,"538":1,"565":1,"593":2,"615":1,"656":1,"690":2,"694":2,"712":1,"713":1,"717":1,"742":1,"799":1,"891":1,"1192":1,"1197":1,"1200":1,"1290":1,"1315":1,"1316":1,"1376":1,"1382":1,"1407":1,"1422":2,"1438":1,"1440":1,"1448":1,"1463":1,"1471":1,"1477":1,"1481":1,"1487":1,"1488":1,"1493":3,"1503":1,"1514":1,"1518":1,"1522":1,"1551":1,"1554":1,"1597":1,"1633":1,"1664":1,"1740":1,"1786":1,"1787":1,"1788":1,"1790":1,"1846":1,"1850":1,"1919":3,"1925":72,"1926":1,"1954":2,"1957":1,"1965":1,"1983":1,"1985":1,"2001":1,"2009":1,"2012":2,"2014":1,"2040":1,"2047":1,"2082":1,"2086":1,"2088":1,"2183":1,"2188":1,"2189":3,"2191":1,"2198":1,"2221":1,"2266":1,"2267":1,"2272":1,"2303":1,"2319":2,"2320":1,"2323":1,"2331":1,"2374":1,"2407":2,"2417":2,"2418":1,"2425":1,"2430":2,"2431":1,"2434":1,"2485":1,"2487":1,"2489":1,"2496":1,"2498":1,"2502":1,"2506":1,"2527":72,"2559":2,"2561":1,"2563":1,"2564":1,"2589":1,"2599":1,"2622":1,"2626":1,"2627":1,"2628":1,"2653":1,"2660":1,"2682":1,"2694":1,"2710":1,"2744":1,"2745":1,"2752":1,"2761":1,"2764":1,"2886":1,"2889":1,"2906":1,"2912":2,"2913":1,"2914":1,"2926":2,"2928":1,"2943":2,"2944":3,"2945":1}}],["notes",{"0":{"720":1,"723":1,"2748":1},"2":{"10":1,"215":1,"409":1,"714":1,"720":1,"1392":1,"1393":1,"1408":2,"1476":1,"1485":2,"1490":1,"1491":1,"1493":1,"1697":1,"1925":2,"1943":1,"2008":1,"2011":1,"2262":1,"2283":1,"2527":2,"2691":1,"2891":1,"2925":1}}],["not",{"0":{"604":1,"1317":1,"1349":1},"2":{"0":1,"5":1,"9":1,"14":1,"19":1,"23":3,"25":1,"28":1,"31":1,"34":1,"39":1,"49":1,"50":1,"52":1,"73":1,"90":1,"92":2,"114":2,"125":1,"134":3,"149":1,"153":2,"154":1,"160":2,"166":1,"176":1,"182":1,"185":1,"194":1,"198":1,"199":4,"201":2,"209":1,"211":1,"214":1,"221":1,"222":1,"232":1,"236":2,"240":2,"241":1,"249":2,"251":1,"253":1,"266":2,"268":1,"270":1,"273":1,"276":1,"277":2,"281":1,"284":1,"303":1,"317":1,"320":1,"328":1,"338":1,"339":1,"344":6,"347":2,"365":1,"370":1,"380":1,"396":2,"399":1,"403":3,"414":1,"419":1,"433":2,"439":3,"444":2,"461":1,"463":1,"489":1,"492":1,"494":1,"495":1,"496":1,"499":2,"500":1,"505":2,"511":1,"512":6,"514":3,"516":1,"518":1,"519":2,"524":2,"525":1,"526":1,"528":1,"530":1,"531":1,"532":1,"533":2,"535":1,"538":1,"539":1,"540":1,"542":1,"544":1,"545":1,"546":1,"555":1,"556":1,"561":1,"564":3,"568":1,"569":2,"572":1,"574":1,"575":1,"582":1,"588":1,"592":1,"596":2,"597":1,"599":1,"600":1,"604":2,"610":1,"611":1,"613":1,"614":1,"615":5,"618":2,"619":2,"626":1,"633":1,"639":2,"643":1,"647":2,"651":1,"653":1,"656":1,"657":2,"659":1,"668":2,"672":2,"676":1,"683":1,"688":2,"690":2,"699":2,"702":1,"709":1,"710":2,"711":1,"712":1,"713":1,"714":3,"719":1,"723":3,"726":3,"735":1,"744":1,"748":1,"749":1,"753":1,"754":4,"755":1,"763":1,"770":1,"773":1,"776":1,"779":2,"782":1,"785":1,"788":1,"791":1,"793":2,"798":1,"799":1,"802":1,"812":1,"816":1,"820":1,"822":1,"828":5,"839":1,"843":1,"847":1,"849":1,"857":5,"871":1,"875":1,"879":1,"881":1,"889":6,"903":1,"907":1,"911":1,"913":1,"921":5,"938":1,"942":1,"946":1,"948":1,"956":5,"972":1,"976":1,"980":1,"982":1,"990":5,"1006":1,"1010":1,"1014":1,"1016":1,"1024":5,"1040":1,"1044":1,"1048":1,"1050":1,"1058":5,"1074":1,"1078":1,"1082":1,"1084":1,"1092":5,"1108":1,"1112":1,"1116":1,"1118":1,"1126":5,"1142":1,"1146":1,"1150":1,"1152":1,"1160":5,"1176":1,"1180":1,"1184":1,"1186":1,"1193":1,"1199":1,"1203":2,"1204":3,"1205":1,"1216":5,"1229":1,"1233":1,"1237":1,"1239":1,"1247":1,"1248":2,"1260":1,"1263":1,"1266":1,"1278":1,"1280":1,"1285":3,"1292":1,"1294":1,"1297":1,"1299":2,"1302":1,"1303":3,"1306":1,"1315":2,"1316":2,"1332":1,"1338":1,"1346":1,"1348":2,"1349":1,"1356":1,"1358":1,"1361":2,"1362":2,"1364":1,"1366":1,"1367":1,"1376":2,"1382":1,"1387":1,"1392":2,"1393":2,"1395":2,"1398":1,"1408":1,"1409":4,"1410":2,"1415":1,"1422":3,"1425":1,"1427":2,"1428":1,"1431":1,"1438":1,"1444":1,"1446":2,"1448":3,"1464":1,"1467":1,"1471":1,"1472":2,"1485":1,"1486":8,"1491":1,"1498":1,"1499":6,"1501":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1510":1,"1517":2,"1518":3,"1519":1,"1533":1,"1534":1,"1535":1,"1538":1,"1542":1,"1544":4,"1550":1,"1556":2,"1558":2,"1590":1,"1593":4,"1595":1,"1605":1,"1609":1,"1615":1,"1617":1,"1620":4,"1627":1,"1638":1,"1643":1,"1645":1,"1648":1,"1662":4,"1666":1,"1668":2,"1675":1,"1678":4,"1680":1,"1681":6,"1687":1,"1690":1,"1697":1,"1699":5,"1702":1,"1739":1,"1742":1,"1765":2,"1770":1,"1772":1,"1776":2,"1777":1,"1779":1,"1781":5,"1782":2,"1784":2,"1785":1,"1786":2,"1787":1,"1788":3,"1789":1,"1795":2,"1802":1,"1836":6,"1837":1,"1846":2,"1850":1,"1851":1,"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"1919":1,"1920":1,"1923":1,"1926":1,"1934":1,"1935":1,"1937":2,"1939":1,"1940":1,"1949":2,"1951":3,"1952":9,"1953":4,"1954":7,"1956":1,"1957":1,"1959":1,"1961":1,"1962":3,"1968":6,"1970":4,"1972":3,"1974":3,"1975":1,"1976":1,"1977":3,"1979":1,"1982":1,"1983":1,"1985":15,"1986":1,"1987":8,"1990":4,"1994":2,"1999":1,"2001":2,"2003":1,"2014":1,"2037":1,"2040":1,"2047":1,"2048":1,"2057":1,"2069":1,"2070":2,"2074":1,"2082":2,"2088":1,"2090":1,"2091":2,"2097":1,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2179":1,"2181":1,"2182":2,"2183":1,"2184":12,"2185":1,"2188":1,"2192":1,"2198":9,"2199":3,"2200":3,"2201":7,"2202":3,"2210":1,"2212":2,"2219":1,"2221":1,"2259":1,"2260":2,"2261":2,"2265":2,"2270":1,"2272":1,"2273":2,"2275":2,"2278":2,"2279":2,"2288":3,"2290":4,"2294":3,"2300":4,"2301":2,"2309":2,"2310":4,"2317":12,"2318":1,"2319":1,"2320":1,"2323":1,"2325":1,"2329":2,"2331":5,"2332":1,"2368":1,"2374":2,"2376":1,"2377":12,"2379":3,"2381":1,"2384":1,"2391":1,"2393":1,"2395":1,"2396":1,"2407":2,"2409":1,"2411":1,"2414":2,"2415":1,"2417":2,"2418":3,"2419":1,"2423":2,"2425":1,"2427":2,"2428":2,"2429":2,"2431":1,"2432":1,"2434":3,"2449":2,"2450":2,"2454":3,"2455":1,"2456":2,"2457":1,"2458":1,"2460":1,"2464":1,"2466":1,"2470":1,"2471":1,"2474":2,"2475":1,"2482":2,"2483":1,"2485":1,"2487":1,"2489":1,"2490":1,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":2,"2503":3,"2505":1,"2506":2,"2508":1,"2510":1,"2511":1,"2516":12,"2540":1,"2549":1,"2553":2,"2563":1,"2564":2,"2566":3,"2567":5,"2568":1,"2569":4,"2572":1,"2575":1,"2576":1,"2584":1,"2585":2,"2587":1,"2589":3,"2591":1,"2593":1,"2594":1,"2595":1,"2598":1,"2612":3,"2613":1,"2616":5,"2617":2,"2619":1,"2621":1,"2622":1,"2626":3,"2628":1,"2633":1,"2634":1,"2635":1,"2637":2,"2639":1,"2640":1,"2645":1,"2659":2,"2660":1,"2662":1,"2664":1,"2666":3,"2667":1,"2669":2,"2676":1,"2683":1,"2685":2,"2686":1,"2687":1,"2690":1,"2691":2,"2693":1,"2694":1,"2703":1,"2704":1,"2705":1,"2707":3,"2709":1,"2710":2,"2714":1,"2717":2,"2720":1,"2728":1,"2730":2,"2731":2,"2733":1,"2744":8,"2745":2,"2746":17,"2747":3,"2749":2,"2750":1,"2752":1,"2760":1,"2761":1,"2762":1,"2763":1,"2764":8,"2765":1,"2767":1,"2769":1,"2771":1,"2775":1,"2781":1,"2787":1,"2789":1,"2795":2,"2796":1,"2797":2,"2800":1,"2805":1,"2847":1,"2851":1,"2853":2,"2869":4,"2870":1,"2882":1,"2884":1,"2886":2,"2887":2,"2889":4,"2890":1,"2891":1,"2892":1,"2893":1,"2901":1,"2902":3,"2909":1,"2912":2,"2913":3,"2918":2,"2919":4,"2920":2,"2928":3,"2930":3,"2931":1,"2933":1,"2937":1,"2943":1,"2947":2,"2948":1,"2949":1}}],["y1",{"2":{"2764":1}}],["y0",{"2":{"2764":1}}],["y+",{"2":{"1971":1}}],["yyyy",{"2":{"411":2,"420":3,"421":3,"422":2,"423":2}}],["yyyyqn",{"2":{"403":1}}],["yynmt",{"2":{"143":2,"149":2}}],["yz",{"2":{"266":1,"328":1}}],["y",{"0":{"1659":1,"2767":1,"2769":1},"1":{"1660":1,"2768":1,"2770":1},"2":{"249":1,"308":1,"375":1,"435":2,"589":2,"1428":4,"1647":2,"1651":2,"1659":1,"1660":2,"1740":1,"1742":1,"1743":2,"1766":1,"1846":7,"1852":2,"1934":1,"1954":2,"1968":2,"1970":3,"1971":2,"1974":2,"1975":4,"1983":4,"1985":5,"1987":5,"1990":3,"1993":2,"1994":3,"1996":2,"1997":2,"2014":1,"2047":1,"2050":2,"2069":5,"2082":7,"2091":2,"2290":2,"2472":2,"2510":3,"2542":3,"2563":1,"2593":4,"2628":4,"2714":2,"2721":16,"2763":3,"2764":14,"2767":3,"2769":3,"2795":19,"2796":17,"2800":9,"2869":3,"2871":2,"2878":2,"2926":1}}],["ymlname",{"2":{"2599":1}}],["yml",{"2":{"2597":1,"2599":2,"2600":1,"2601":1,"2602":1}}],["ym68",{"2":{"211":1}}],["ymd96",{"2":{"143":2,"149":1}}],["ymd75",{"2":{"143":2,"149":1,"222":1}}],["ymdk",{"2":{"143":5,"149":5,"159":1,"160":1,"211":5,"222":1,"226":2,"236":1,"291":2,"294":1,"308":1}}],["yttyx",{"2":{"211":1}}],["yum",{"2":{"2593":1}}],["yunzii",{"2":{"2567":1}}],["yugo",{"2":{"207":2,"211":1}}],["yurei",{"2":{"143":2}}],["yosino58",{"2":{"176":1}}],["youtube",{"2":{"2187":2}}],["yourgithub",{"2":{"2750":2}}],["yours",{"0":{"2479":1},"2":{"672":1}}],["yourself",{"2":{"398":1,"418":1,"513":1,"542":1,"1382":1,"1424":1,"1622":1,"1762":1,"2208":1,"2298":1,"2501":1,"2560":1,"2572":1}}],["yourkeyboard",{"2":{"201":1}}],["yourkeymap",{"2":{"132":1}}],["yourkb",{"2":{"132":1}}],["your",{"0":{"416":1,"417":1,"509":1,"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"602":1,"626":1,"1327":1,"1414":1,"1442":1,"1627":1,"1628":1,"1673":1,"1931":1,"2434":1,"2449":1,"2582":1,"2583":1,"2585":1,"2586":1,"2587":1,"2588":1,"2602":1,"2611":1,"2612":1,"2613":1,"2615":1,"2616":1,"2618":1,"2620":1,"2629":1,"2630":1,"2634":1,"2636":1,"2637":1,"2638":1,"2639":1,"2641":1,"2663":1,"2714":1,"2765":1,"2793":1,"2885":1},"1":{"627":1,"1932":1,"1933":1,"2583":1,"2584":1,"2585":1,"2586":1,"2587":1,"2588":1,"2612":1,"2613":1,"2614":2,"2615":2,"2616":1,"2617":1,"2619":1,"2620":1,"2621":2,"2622":2,"2623":2,"2624":2,"2625":2,"2626":2,"2627":2,"2628":1,"2629":1,"2639":1,"2640":1,"2641":1,"2715":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2722":1,"2723":1,"2724":1,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"1":1,"14":1,"18":4,"23":1,"25":1,"31":1,"34":1,"36":1,"37":1,"43":1,"45":2,"49":3,"82":1,"87":1,"89":1,"90":1,"107":2,"110":3,"116":1,"119":4,"120":1,"124":3,"132":1,"196":1,"201":1,"202":2,"218":1,"228":1,"233":2,"235":1,"240":1,"241":2,"253":2,"255":2,"256":1,"257":1,"258":1,"259":2,"270":2,"272":2,"273":3,"276":1,"281":2,"284":1,"288":1,"307":7,"323":2,"344":3,"353":1,"365":1,"374":1,"376":2,"377":1,"378":1,"381":1,"382":1,"384":1,"386":1,"389":2,"393":3,"396":1,"397":2,"398":2,"403":4,"414":2,"415":1,"416":2,"417":2,"418":2,"420":1,"426":1,"429":2,"432":1,"434":1,"435":4,"439":1,"448":1,"449":1,"450":1,"456":1,"458":1,"460":1,"462":1,"476":1,"489":2,"490":1,"491":3,"494":2,"495":1,"505":5,"506":1,"509":1,"512":2,"513":1,"515":1,"519":1,"521":1,"525":2,"537":1,"540":3,"541":1,"561":7,"563":1,"567":1,"574":2,"593":3,"594":3,"595":1,"596":3,"597":1,"599":4,"600":3,"607":1,"609":1,"610":2,"613":9,"615":3,"616":1,"617":2,"618":3,"619":11,"622":1,"623":2,"624":2,"625":2,"626":2,"627":1,"629":4,"632":1,"643":3,"646":1,"647":2,"648":1,"660":1,"666":2,"668":2,"671":1,"672":3,"673":4,"675":2,"676":1,"677":1,"681":3,"683":2,"684":1,"686":2,"693":1,"694":1,"696":4,"698":2,"699":1,"709":1,"710":3,"711":3,"713":1,"720":2,"721":1,"725":1,"726":1,"727":1,"729":1,"742":1,"746":1,"749":2,"750":1,"753":1,"754":2,"755":1,"756":1,"757":1,"759":1,"761":2,"762":1,"763":1,"764":3,"768":1,"793":1,"801":1,"802":1,"805":1,"827":1,"828":1,"829":1,"831":1,"856":1,"857":1,"858":1,"859":1,"860":1,"861":1,"863":1,"888":1,"889":1,"890":1,"891":1,"893":1,"920":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"928":1,"955":1,"956":1,"957":1,"958":1,"959":1,"960":1,"962":1,"989":1,"990":1,"991":1,"992":1,"993":1,"994":1,"996":1,"1023":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1030":1,"1057":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1064":1,"1091":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1098":1,"1125":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1132":1,"1159":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1166":1,"1195":2,"1198":4,"1200":1,"1201":4,"1203":6,"1204":7,"1206":1,"1208":1,"1209":1,"1213":1,"1215":1,"1216":1,"1217":1,"1219":1,"1246":2,"1247":1,"1248":3,"1267":2,"1268":1,"1269":2,"1284":2,"1285":1,"1286":1,"1287":2,"1288":1,"1294":1,"1297":2,"1300":2,"1301":1,"1303":1,"1311":1,"1312":1,"1313":2,"1315":2,"1317":3,"1320":2,"1322":4,"1323":1,"1324":1,"1325":1,"1327":2,"1329":1,"1330":1,"1331":1,"1332":2,"1333":1,"1342":1,"1347":1,"1348":2,"1349":1,"1354":2,"1359":1,"1375":2,"1376":3,"1379":1,"1381":1,"1383":1,"1388":2,"1390":1,"1392":1,"1396":1,"1403":1,"1406":1,"1407":1,"1410":2,"1414":2,"1415":3,"1417":2,"1420":2,"1422":3,"1423":2,"1424":1,"1425":4,"1426":2,"1427":3,"1431":1,"1439":1,"1440":1,"1442":1,"1443":2,"1448":1,"1449":2,"1451":1,"1463":3,"1464":5,"1465":2,"1466":1,"1467":4,"1468":1,"1470":9,"1471":6,"1472":7,"1473":2,"1480":4,"1485":5,"1488":3,"1490":6,"1491":3,"1492":4,"1493":1,"1497":1,"1498":1,"1500":2,"1501":1,"1502":1,"1503":3,"1518":1,"1520":1,"1521":3,"1522":5,"1523":1,"1524":1,"1526":1,"1527":1,"1533":1,"1542":1,"1544":2,"1545":1,"1546":1,"1551":1,"1556":2,"1578":1,"1579":1,"1589":2,"1590":1,"1591":2,"1592":1,"1594":3,"1601":1,"1602":2,"1603":1,"1605":2,"1606":1,"1607":1,"1612":1,"1613":1,"1617":1,"1618":1,"1619":1,"1622":4,"1623":2,"1625":1,"1627":4,"1628":3,"1639":2,"1640":3,"1641":1,"1646":1,"1661":3,"1662":1,"1663":2,"1665":4,"1666":1,"1667":4,"1668":2,"1670":1,"1672":1,"1676":1,"1683":1,"1684":2,"1685":2,"1698":1,"1699":1,"1701":1,"1713":1,"1738":1,"1739":2,"1740":1,"1741":1,"1742":2,"1763":2,"1765":1,"1766":3,"1768":2,"1769":1,"1779":1,"1784":1,"1786":1,"1788":2,"1790":2,"1795":1,"1797":2,"1798":1,"1800":1,"1801":2,"1802":13,"1803":1,"1836":2,"1841":1,"1845":1,"1846":3,"1849":1,"1850":3,"1851":3,"1919":1,"1921":1,"1922":1,"1923":1,"1930":1,"1931":1,"1932":1,"1933":1,"1934":1,"1935":2,"1936":1,"1937":1,"1938":4,"1939":4,"1944":2,"1945":3,"1952":1,"1957":1,"1959":1,"1962":5,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":1,"1978":1,"1979":2,"1980":1,"1981":1,"1982":2,"1983":2,"1984":1,"1987":1,"1990":1,"1998":1,"2001":1,"2017":1,"2037":1,"2040":1,"2041":1,"2042":1,"2043":1,"2046":1,"2048":1,"2053":1,"2055":1,"2056":1,"2057":5,"2058":1,"2066":2,"2070":1,"2072":1,"2079":1,"2081":1,"2082":3,"2085":2,"2086":1,"2088":2,"2090":3,"2178":2,"2179":6,"2181":2,"2182":2,"2183":1,"2188":2,"2191":1,"2192":1,"2193":1,"2194":1,"2206":1,"2208":2,"2209":1,"2210":3,"2215":1,"2220":1,"2221":1,"2223":1,"2225":1,"2249":1,"2250":2,"2256":2,"2258":1,"2259":2,"2268":1,"2269":1,"2271":1,"2272":4,"2273":1,"2274":2,"2275":1,"2276":1,"2278":1,"2284":5,"2292":3,"2293":3,"2294":2,"2295":1,"2296":1,"2297":5,"2298":7,"2300":1,"2301":1,"2302":2,"2305":1,"2308":1,"2309":4,"2310":1,"2312":4,"2317":6,"2318":4,"2319":5,"2320":1,"2322":2,"2324":2,"2326":1,"2327":1,"2328":2,"2329":6,"2330":5,"2331":4,"2376":1,"2378":1,"2381":1,"2382":2,"2383":1,"2384":1,"2386":1,"2388":1,"2389":1,"2390":2,"2391":2,"2393":1,"2395":1,"2397":1,"2398":1,"2400":1,"2402":1,"2404":1,"2405":2,"2410":13,"2415":3,"2417":1,"2418":16,"2419":4,"2421":1,"2423":3,"2425":3,"2427":3,"2428":4,"2429":2,"2430":2,"2432":5,"2433":3,"2434":3,"2447":1,"2448":2,"2451":2,"2453":4,"2454":1,"2455":1,"2456":1,"2458":1,"2459":3,"2460":3,"2461":4,"2463":1,"2464":7,"2467":1,"2469":1,"2472":1,"2473":1,"2479":1,"2481":1,"2494":1,"2497":1,"2502":1,"2506":2,"2508":1,"2513":1,"2552":2,"2562":1,"2565":1,"2567":1,"2572":7,"2573":2,"2575":1,"2576":1,"2582":5,"2583":4,"2584":6,"2585":5,"2587":3,"2588":2,"2590":3,"2591":2,"2593":1,"2594":1,"2595":1,"2597":1,"2598":4,"2599":1,"2600":2,"2601":2,"2602":2,"2603":4,"2604":1,"2605":5,"2607":4,"2608":5,"2609":2,"2610":4,"2611":1,"2612":10,"2613":2,"2614":4,"2616":6,"2617":4,"2618":1,"2619":1,"2620":1,"2622":1,"2626":2,"2628":4,"2629":2,"2630":2,"2632":3,"2633":3,"2634":5,"2635":5,"2636":3,"2637":14,"2638":4,"2639":8,"2640":10,"2641":3,"2650":2,"2652":2,"2658":2,"2659":2,"2663":1,"2665":1,"2678":2,"2680":1,"2682":1,"2683":5,"2684":2,"2685":2,"2686":2,"2687":2,"2694":2,"2700":1,"2701":1,"2702":3,"2703":1,"2705":1,"2707":1,"2709":1,"2713":1,"2714":10,"2715":3,"2716":1,"2717":2,"2718":2,"2719":1,"2744":8,"2746":3,"2747":2,"2748":10,"2749":2,"2750":3,"2751":3,"2752":1,"2753":1,"2754":1,"2756":1,"2758":1,"2759":3,"2760":1,"2761":1,"2763":11,"2764":6,"2771":3,"2772":1,"2774":1,"2807":1,"2811":1,"2815":1,"2819":1,"2827":1,"2830":1,"2832":2,"2849":2,"2850":1,"2851":3,"2884":2,"2885":1,"2886":2,"2888":1,"2889":3,"2890":3,"2891":2,"2892":1,"2894":3,"2895":1,"2899":1,"2905":1,"2906":2,"2908":1,"2910":3,"2912":10,"2919":2,"2920":2,"2921":3,"2922":1,"2923":1,"2925":1,"2926":1,"2928":5,"2930":5,"2931":2,"2936":2,"2939":1,"2942":1,"2943":1,"2944":1,"2945":2,"2949":1}}],["you",{"0":{"1767":1,"2469":1,"2474":1,"2850":1},"2":{"1":2,"7":2,"16":1,"23":3,"31":5,"34":2,"37":1,"43":1,"45":2,"49":2,"70":1,"82":1,"83":2,"89":1,"90":3,"107":2,"110":2,"112":2,"119":6,"120":2,"124":3,"152":3,"157":2,"158":3,"182":1,"190":1,"194":2,"202":2,"206":3,"218":2,"228":2,"232":3,"233":2,"240":7,"241":2,"245":1,"248":2,"253":2,"254":2,"255":2,"256":2,"259":2,"270":2,"272":2,"281":2,"307":4,"323":4,"353":1,"365":3,"368":1,"373":2,"374":2,"375":2,"377":3,"378":1,"379":1,"381":2,"382":1,"383":2,"384":1,"388":2,"389":2,"393":4,"394":2,"396":1,"398":2,"403":3,"414":1,"415":1,"416":3,"418":2,"420":1,"429":8,"430":1,"431":1,"432":1,"433":1,"434":1,"435":2,"436":1,"437":2,"440":1,"442":1,"445":1,"447":1,"452":1,"453":1,"454":2,"455":2,"456":4,"458":2,"460":1,"463":1,"465":2,"469":2,"474":2,"476":1,"477":2,"482":1,"483":1,"488":4,"489":1,"490":1,"491":4,"492":1,"493":3,"494":4,"495":3,"496":2,"497":1,"498":1,"499":1,"500":1,"501":1,"504":1,"505":5,"506":3,"507":3,"508":1,"509":2,"510":2,"511":2,"512":6,"513":4,"514":2,"515":1,"516":3,"520":1,"521":1,"525":5,"526":1,"527":1,"528":1,"530":1,"533":4,"535":1,"537":2,"538":1,"540":3,"542":1,"544":2,"547":1,"559":3,"561":3,"562":2,"563":2,"564":8,"565":1,"567":1,"568":1,"569":4,"570":4,"572":1,"574":2,"576":2,"579":1,"580":3,"581":1,"591":1,"596":4,"597":1,"598":2,"599":4,"600":4,"601":1,"604":2,"605":1,"610":3,"611":2,"612":2,"613":13,"614":2,"615":6,"616":4,"617":2,"618":4,"619":13,"620":1,"621":3,"625":1,"626":3,"627":1,"629":3,"630":3,"632":1,"633":6,"634":2,"637":1,"640":1,"643":1,"644":2,"645":4,"646":2,"647":1,"660":1,"666":3,"668":4,"669":1,"670":2,"671":1,"672":4,"673":4,"675":1,"678":1,"681":3,"682":1,"683":2,"684":1,"685":1,"688":1,"696":3,"698":4,"702":1,"709":3,"710":7,"711":6,"712":2,"713":1,"717":2,"718":1,"719":2,"720":2,"721":2,"722":1,"725":3,"728":1,"735":1,"742":2,"749":3,"750":1,"754":1,"759":1,"761":3,"762":2,"764":3,"799":3,"801":3,"804":1,"812":1,"816":1,"820":1,"822":1,"827":3,"830":1,"839":1,"843":1,"847":1,"849":1,"856":3,"861":1,"862":1,"871":1,"875":1,"879":1,"881":1,"888":3,"892":1,"903":1,"907":1,"911":1,"913":1,"920":3,"926":1,"927":1,"938":1,"942":1,"946":1,"948":1,"955":3,"960":1,"961":1,"972":1,"976":1,"980":1,"982":1,"989":3,"994":1,"995":1,"1006":1,"1010":1,"1014":1,"1016":1,"1023":3,"1028":1,"1029":1,"1040":1,"1044":1,"1048":1,"1050":1,"1057":3,"1062":1,"1063":1,"1074":1,"1078":1,"1082":1,"1084":1,"1091":3,"1096":1,"1097":1,"1108":1,"1112":1,"1116":1,"1118":1,"1125":3,"1130":1,"1131":1,"1142":1,"1146":1,"1150":1,"1152":1,"1159":3,"1164":1,"1165":1,"1176":1,"1180":1,"1184":1,"1186":1,"1195":1,"1198":1,"1200":2,"1201":1,"1203":3,"1204":3,"1207":5,"1208":2,"1209":3,"1215":3,"1218":1,"1229":1,"1233":1,"1237":1,"1239":1,"1246":3,"1247":2,"1248":4,"1267":3,"1269":3,"1272":1,"1283":1,"1284":4,"1287":2,"1297":1,"1299":1,"1300":1,"1301":1,"1303":1,"1306":1,"1311":4,"1312":1,"1313":4,"1314":2,"1315":4,"1316":2,"1318":2,"1319":6,"1320":1,"1322":2,"1327":1,"1332":5,"1336":3,"1337":1,"1338":1,"1339":1,"1340":1,"1342":3,"1343":1,"1344":2,"1345":1,"1347":1,"1348":2,"1349":1,"1353":1,"1354":2,"1357":1,"1358":1,"1359":1,"1362":1,"1363":2,"1364":8,"1365":1,"1366":1,"1375":2,"1376":8,"1377":4,"1378":1,"1379":2,"1380":1,"1383":1,"1388":4,"1390":2,"1392":1,"1396":2,"1398":2,"1405":2,"1406":1,"1407":1,"1409":6,"1410":5,"1414":2,"1415":5,"1416":4,"1417":15,"1418":1,"1421":1,"1422":8,"1423":2,"1425":3,"1426":4,"1427":8,"1428":7,"1431":1,"1435":1,"1438":3,"1439":2,"1440":4,"1441":2,"1442":4,"1443":1,"1446":4,"1447":1,"1448":5,"1449":1,"1450":4,"1451":6,"1454":1,"1455":2,"1457":2,"1462":1,"1463":3,"1464":8,"1465":4,"1466":1,"1467":5,"1468":2,"1470":14,"1471":10,"1472":15,"1473":3,"1480":1,"1482":1,"1483":2,"1485":11,"1486":5,"1488":4,"1490":5,"1491":4,"1492":5,"1493":4,"1496":2,"1498":5,"1499":3,"1500":1,"1501":2,"1502":1,"1503":9,"1510":1,"1517":2,"1520":1,"1522":8,"1523":2,"1526":5,"1527":3,"1529":2,"1532":1,"1533":1,"1534":1,"1535":2,"1537":1,"1541":1,"1542":2,"1544":2,"1545":1,"1546":3,"1551":4,"1556":3,"1557":1,"1589":6,"1590":2,"1591":4,"1592":2,"1593":2,"1594":3,"1595":1,"1600":1,"1602":5,"1603":2,"1605":3,"1606":2,"1608":1,"1609":8,"1610":1,"1612":11,"1613":2,"1615":2,"1617":3,"1618":2,"1619":2,"1621":1,"1622":6,"1623":1,"1624":1,"1625":1,"1627":4,"1634":1,"1639":1,"1647":1,"1648":2,"1661":5,"1663":1,"1664":4,"1665":2,"1666":5,"1667":1,"1668":3,"1670":2,"1671":3,"1676":1,"1680":1,"1681":3,"1683":1,"1739":2,"1740":1,"1741":1,"1742":1,"1762":6,"1765":1,"1766":5,"1768":2,"1769":1,"1773":2,"1777":3,"1779":3,"1781":2,"1782":2,"1785":1,"1786":7,"1787":1,"1788":5,"1789":1,"1790":1,"1794":1,"1796":3,"1798":1,"1800":2,"1801":3,"1802":8,"1803":2,"1804":2,"1836":2,"1840":1,"1844":4,"1846":2,"1849":1,"1851":2,"1852":1,"1855":2,"1919":2,"1923":6,"1930":2,"1931":1,"1933":1,"1935":5,"1936":1,"1937":6,"1938":2,"1944":1,"1947":1,"1948":1,"1952":2,"1953":1,"1954":1,"1956":1,"1957":1,"1958":2,"1962":3,"1964":3,"1965":2,"1968":2,"1970":1,"1974":2,"1983":3,"1984":1,"1985":1,"1987":1,"1990":2,"1993":1,"1994":2,"1998":2,"2011":1,"2037":1,"2040":1,"2041":1,"2043":2,"2044":1,"2046":1,"2047":1,"2048":6,"2049":1,"2050":2,"2054":2,"2057":6,"2058":2,"2070":1,"2076":1,"2080":4,"2082":2,"2085":1,"2086":1,"2088":1,"2090":2,"2091":1,"2094":2,"2096":4,"2097":2,"2178":1,"2179":6,"2181":1,"2183":2,"2184":2,"2187":1,"2188":2,"2189":3,"2191":3,"2192":1,"2193":1,"2194":3,"2206":3,"2207":4,"2208":2,"2209":2,"2210":2,"2211":3,"2223":2,"2249":1,"2250":1,"2251":2,"2255":3,"2259":3,"2260":5,"2263":1,"2264":4,"2265":3,"2267":1,"2268":2,"2271":2,"2272":4,"2273":5,"2274":1,"2275":7,"2278":7,"2280":7,"2281":1,"2284":1,"2286":1,"2287":1,"2290":1,"2292":3,"2293":4,"2294":3,"2297":4,"2298":8,"2300":5,"2301":1,"2302":1,"2305":1,"2309":11,"2310":4,"2317":11,"2318":3,"2319":1,"2322":3,"2327":1,"2328":2,"2329":4,"2330":4,"2331":3,"2375":1,"2379":2,"2381":5,"2382":1,"2386":2,"2388":1,"2393":1,"2394":2,"2395":1,"2397":1,"2398":1,"2405":5,"2407":7,"2410":16,"2411":3,"2414":2,"2416":4,"2417":10,"2418":17,"2419":3,"2421":1,"2422":2,"2423":5,"2425":1,"2426":1,"2427":4,"2428":5,"2429":12,"2430":3,"2431":8,"2432":5,"2434":9,"2435":6,"2441":2,"2447":2,"2448":1,"2450":3,"2453":5,"2454":4,"2460":5,"2461":3,"2464":8,"2465":4,"2466":2,"2467":3,"2468":1,"2469":1,"2470":1,"2473":2,"2474":6,"2475":1,"2477":1,"2480":1,"2481":1,"2482":3,"2483":4,"2484":1,"2488":1,"2490":2,"2496":1,"2497":3,"2501":1,"2502":6,"2503":6,"2504":2,"2506":4,"2508":5,"2509":1,"2552":2,"2554":1,"2556":1,"2557":1,"2558":3,"2560":3,"2561":6,"2562":5,"2564":3,"2565":2,"2567":5,"2572":6,"2573":4,"2574":2,"2575":4,"2576":3,"2582":3,"2583":5,"2584":7,"2585":5,"2586":6,"2587":6,"2589":1,"2591":4,"2592":2,"2593":1,"2594":1,"2595":1,"2598":1,"2600":2,"2602":1,"2603":6,"2604":4,"2605":3,"2606":2,"2607":5,"2608":4,"2609":3,"2610":3,"2611":2,"2612":7,"2613":1,"2614":4,"2615":1,"2616":8,"2617":4,"2618":3,"2619":8,"2620":2,"2621":3,"2622":1,"2624":1,"2626":1,"2627":1,"2628":9,"2629":6,"2630":1,"2632":3,"2633":3,"2634":4,"2635":5,"2636":3,"2637":6,"2638":1,"2639":4,"2640":12,"2650":6,"2651":5,"2652":8,"2655":2,"2656":3,"2657":1,"2658":6,"2659":3,"2660":1,"2662":1,"2674":3,"2676":1,"2678":5,"2680":4,"2681":1,"2682":1,"2683":8,"2685":1,"2686":1,"2690":1,"2691":3,"2694":3,"2701":1,"2702":1,"2709":1,"2713":1,"2714":4,"2715":2,"2716":1,"2717":5,"2718":1,"2719":1,"2720":2,"2721":1,"2723":1,"2743":1,"2744":5,"2746":2,"2747":1,"2748":4,"2750":2,"2751":2,"2753":1,"2758":1,"2759":1,"2760":1,"2761":1,"2763":3,"2764":10,"2765":1,"2766":2,"2767":1,"2769":6,"2770":3,"2771":11,"2772":3,"2774":3,"2775":2,"2819":1,"2825":1,"2827":1,"2829":1,"2832":1,"2834":1,"2841":1,"2842":1,"2843":2,"2851":2,"2869":2,"2884":1,"2886":6,"2887":1,"2888":1,"2889":8,"2890":9,"2891":3,"2892":5,"2893":2,"2894":4,"2895":1,"2897":1,"2899":1,"2905":3,"2906":4,"2907":2,"2908":1,"2909":1,"2910":5,"2911":2,"2912":30,"2919":7,"2920":4,"2921":2,"2924":1,"2926":3,"2927":1,"2928":7,"2930":3,"2931":2,"2933":2,"2934":3,"2935":1,"2936":1,"2937":2,"2941":4,"2943":6,"2944":5,"2945":1,"2946":2,"2947":3,"2949":17}}],["yiancar",{"2":{"149":1}}],["yiancardesigns",{"2":{"143":3,"149":1}}],["yd68",{"2":{"143":2}}],["yd60mq",{"2":{"143":2,"149":1}}],["ydkb",{"2":{"143":3,"149":1,"211":2}}],["yapf",{"0":{"515":1},"2":{"501":1,"504":3,"515":1,"527":3}}],["yarn",{"2":{"460":1,"461":1}}],["yakiimo",{"2":{"211":1}}],["yandrstudio",{"2":{"199":1}}],["yangdigi",{"2":{"149":1}}],["yanghu",{"2":{"134":1}}],["yasui",{"2":{"143":2}}],["yaml",{"2":{"114":1}}],["yellow",{"2":{"393":1,"492":1,"494":1,"2089":2,"2095":1,"2205":2,"2612":1}}],["yet",{"2":{"149":1,"154":1,"209":1,"236":1,"555":1,"582":1,"596":1,"597":1,"633":1,"714":1,"1314":1,"1795":1,"2210":1,"2300":2,"2374":1,"2377":12,"2418":1,"2475":1,"2516":12,"2595":1,"2628":1,"2659":1,"2686":1,"2687":1,"2709":1,"2714":1,"2717":1,"2722":1,"2781":1,"2787":1,"2914":1,"2947":1}}],["yes",{"2":{"10":1,"28":1,"49":1,"74":1,"87":1,"88":3,"103":4,"104":3,"118":1,"119":1,"126":3,"127":3,"202":1,"232":1,"234":7,"235":1,"266":1,"354":1,"567":1,"575":1,"592":1,"625":1,"655":1,"686":1,"698":1,"725":1,"742":1,"761":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1322":1,"1330":1,"1380":1,"1446":1,"1464":1,"1471":2,"1472":2,"1473":1,"1499":1,"1500":1,"1526":1,"1542":1,"1578":1,"1589":1,"1594":1,"1602":1,"1623":1,"1639":1,"1640":1,"1646":1,"1661":1,"1665":1,"1667":1,"1668":1,"1678":1,"1698":1,"1739":1,"1763":1,"1768":1,"1790":1,"1797":1,"1850":2,"1919":1,"1932":1,"1944":1,"1957":1,"1962":1,"1964":1,"2017":1,"2040":2,"2041":2,"2042":2,"2043":2,"2055":1,"2066":1,"2088":2,"2179":2,"2191":2,"2210":2,"2215":1,"2220":1,"2250":1,"2255":1,"2268":1,"2284":1,"2293":2,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2302":1,"2303":1,"2309":1,"2312":1,"2320":1,"2326":1,"2329":2,"2330":1,"2376":1,"2378":1,"2418":1,"2419":1,"2455":2,"2683":1,"2746":1,"2754":2,"2760":1,"2763":11,"2889":2,"2912":1,"2948":1}}],["year>",{"2":{"1467":1}}],["years",{"2":{"6":1,"10":1,"213":1,"2464":1}}],["year",{"2":{"0":2,"9":2,"19":2,"39":2,"52":2,"173":1,"1467":1,"2464":3}}],["r=4",{"2":{"2764":1}}],["rbt",{"2":{"2511":1,"2752":1,"2772":1}}],["rbrc",{"2":{"375":1,"589":2,"2068":1,"2510":1,"2544":1,"2563":1}}],["rr",{"2":{"2301":3}}],["rle",{"0":{"2792":1},"2":{"2762":4,"2777":1,"2781":1,"2785":1,"2792":1}}],["rl",{"2":{"2301":3}}],["rj",{"2":{"2265":2}}],["rz",{"2":{"1740":1}}],["ry",{"2":{"1740":1,"2869":1}}],["ryanbaekr",{"2":{"222":1}}],["r09",{"2":{"1590":2}}],["r08",{"2":{"1590":2}}],["r07",{"2":{"1590":2}}],["r06",{"2":{"1590":2}}],["r05",{"2":{"1590":4}}],["r04",{"2":{"1590":2}}],["r03",{"2":{"1590":2}}],["r02",{"2":{"1590":2}}],["r01",{"2":{"1590":2}}],["r|64",{"2":{"1538":1}}],["rw",{"2":{"1699":2}}],["rwin",{"2":{"1363":1,"1448":1,"2510":1,"2529":1,"2530":1,"2546":1,"2575":1}}],["rwx",{"2":{"236":3}}],["rnrm",{"2":{"2526":2,"2552":2}}],["rn",{"0":{"1359":1},"2":{"1359":1,"2374":5}}],["rn42",{"2":{"134":1,"149":1,"191":1,"211":1,"221":2,"574":1,"2374":1,"2376":1,"2859":1}}],["rts",{"2":{"1266":1,"1268":1,"1269":4}}],["rtc",{"2":{"236":1}}],["rgui",{"2":{"589":2,"1350":1,"1363":1,"1364":1,"1448":1,"1779":5,"2510":1,"2526":4,"2529":1,"2530":1,"2535":1,"2546":1,"2552":4,"2561":1,"2575":2,"2651":1}}],["rght",{"2":{"375":1,"589":2,"1933":1,"2068":2,"2510":1,"2526":1,"2528":1,"2548":1,"2552":1,"2563":1,"2918":4,"2919":3,"2920":2}}],["rgbtest",{"2":{"2181":1,"2532":1}}],["rgb|led",{"2":{"317":1}}],["rgb888",{"2":{"199":1,"328":1,"2762":2,"2763":4}}],["rgbmatrix",{"2":{"191":1}}],["rgb565",{"2":{"191":1,"199":1,"2762":3,"2763":11,"2764":1}}],["rgb+via",{"2":{"176":1}}],["rgb64",{"2":{"143":2}}],["rgbw",{"0":{"1288":1},"2":{"112":1,"134":1,"266":2,"565":2,"1285":2,"1288":2,"2883":2}}],["rgbkb",{"2":{"93":1,"114":2,"149":1,"176":2,"191":1,"211":1,"266":1,"294":2,"328":1}}],["rgblight=true",{"2":{"433":1}}],["rgblight",{"0":{"2877":1},"2":{"49":3,"65":1,"70":3,"74":2,"75":1,"111":6,"112":5,"113":1,"114":6,"160":2,"176":2,"191":10,"199":2,"211":3,"221":3,"222":6,"236":5,"249":4,"266":6,"277":1,"283":3,"285":2,"308":2,"354":6,"462":2,"565":10,"574":1,"641":4,"647":11,"668":1,"670":2,"698":1,"1284":1,"1285":1,"1417":16,"1430":5,"1464":2,"2080":2,"2179":2,"2182":14,"2183":14,"2184":12,"2185":12,"2186":6,"2188":1,"2189":18,"2190":4,"2191":16,"2192":1,"2193":2,"2194":1,"2195":2,"2197":1,"2198":16,"2199":7,"2200":6,"2201":14,"2202":6,"2203":2,"2204":6,"2205":3,"2206":4,"2207":6,"2278":2,"2454":9,"2455":3,"2854":1,"2877":3,"2894":11}}],["rgbleds",{"2":{"191":1}}],["rgbled",{"2":{"45":2,"70":1,"191":1,"222":2,"249":2,"565":2,"570":1,"2179":1,"2187":7,"2278":1,"2455":6}}],["rgb",{"0":{"25":1,"45":1,"80":1,"124":1,"214":1,"233":1,"283":1,"316":1,"327":1,"462":1,"565":1,"1636":1,"2080":1,"2085":1,"2086":1,"2087":1,"2088":1,"2097":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2107":1,"2109":1,"2111":1,"2113":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2145":1,"2147":1,"2149":1,"2151":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2159":1,"2161":1,"2163":1,"2165":1,"2166":1,"2168":1,"2170":1,"2172":1,"2175":1,"2178":1,"2192":1,"2532":1,"2533":1,"2878":1,"2894":1},"1":{"2081":1,"2082":1,"2083":1,"2084":1,"2085":1,"2086":2,"2087":2,"2088":1,"2089":1,"2090":1,"2091":1,"2092":1,"2093":1,"2094":1,"2095":1,"2096":1,"2097":1,"2098":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":2,"2107":1,"2108":2,"2109":1,"2110":2,"2111":1,"2112":2,"2113":1,"2114":2,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":2,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":2,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":2,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":2,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":2,"2145":1,"2146":2,"2147":1,"2148":2,"2149":1,"2150":2,"2151":1,"2152":2,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":2,"2159":1,"2160":1,"2161":1,"2162":2,"2163":1,"2164":2,"2165":1,"2166":1,"2167":2,"2168":1,"2169":2,"2170":1,"2171":2,"2172":1,"2173":1,"2174":1,"2175":1,"2176":1,"2177":1,"2179":1,"2180":1,"2181":1,"2182":1,"2183":1,"2184":1,"2185":1,"2186":1,"2187":1,"2188":1,"2189":1,"2190":1,"2191":1,"2192":1,"2193":1,"2194":1,"2195":1,"2196":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2205":1,"2206":1,"2207":1,"2208":1,"2209":1,"2210":1,"2211":1},"2":{"25":7,"32":3,"45":2,"49":4,"63":1,"65":3,"70":1,"73":1,"80":1,"93":5,"94":1,"112":1,"114":27,"124":3,"133":1,"134":9,"143":4,"149":6,"153":2,"160":1,"176":3,"183":14,"185":7,"191":15,"199":2,"201":1,"211":7,"214":2,"221":3,"222":11,"229":1,"231":3,"233":1,"236":13,"238":1,"244":1,"249":31,"266":8,"277":9,"283":7,"285":11,"298":1,"308":8,"316":3,"317":4,"328":5,"339":1,"433":2,"462":2,"565":5,"570":1,"633":1,"641":2,"647":20,"648":1,"651":1,"652":5,"653":5,"697":1,"698":1,"724":1,"725":1,"731":1,"800":1,"801":2,"807":1,"808":3,"812":1,"814":1,"820":1,"826":1,"827":2,"833":1,"834":3,"839":1,"841":1,"847":1,"855":1,"856":2,"865":1,"866":3,"871":1,"873":1,"879":1,"887":1,"888":2,"895":1,"896":3,"903":1,"905":1,"911":1,"919":1,"920":2,"930":1,"931":3,"938":1,"940":1,"946":1,"954":1,"955":2,"964":1,"965":3,"972":1,"974":1,"980":1,"988":1,"989":2,"998":1,"999":3,"1006":1,"1008":1,"1014":1,"1022":1,"1023":2,"1032":1,"1033":3,"1040":1,"1042":1,"1048":1,"1056":1,"1057":2,"1066":1,"1067":3,"1074":1,"1076":1,"1082":1,"1090":1,"1091":2,"1100":1,"1101":3,"1108":1,"1110":1,"1116":1,"1124":1,"1125":2,"1134":1,"1135":3,"1142":1,"1144":1,"1150":1,"1158":1,"1159":2,"1168":1,"1169":3,"1176":1,"1178":1,"1184":1,"1214":1,"1215":2,"1221":1,"1222":3,"1229":1,"1231":1,"1237":1,"1283":1,"1284":1,"1285":2,"1286":1,"1287":1,"1288":3,"1392":1,"1393":1,"1416":1,"1417":25,"1430":1,"1463":2,"1464":8,"1465":1,"1541":2,"1617":1,"1636":5,"1638":6,"1668":4,"1844":2,"1853":1,"1958":8,"1980":1,"2080":1,"2081":2,"2082":1,"2084":18,"2085":152,"2086":7,"2087":2,"2088":21,"2089":22,"2090":5,"2091":29,"2094":8,"2095":11,"2096":15,"2097":6,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":1,"2108":1,"2166":1,"2167":1,"2178":3,"2179":3,"2180":1,"2181":25,"2182":3,"2183":2,"2184":2,"2188":3,"2189":2,"2191":2,"2192":3,"2194":1,"2198":5,"2199":10,"2205":24,"2208":1,"2210":6,"2276":1,"2278":2,"2281":2,"2435":2,"2443":1,"2444":2,"2445":2,"2532":22,"2533":19,"2746":5,"2747":2,"2760":8,"2762":2,"2764":5,"2774":1,"2852":1,"2854":1,"2855":1,"2877":2,"2878":3,"2890":1,"2894":51,"2907":2,"2940":1}}],["rq",{"0":{"585":1},"2":{"366":2,"367":2,"585":2}}],["rk61",{"2":{"328":1}}],["rms",{"2":{"1685":1}}],["rm24c512c",{"2":{"749":2}}],["rm",{"2":{"283":1,"2084":15,"2087":2,"2533":15,"2634":1}}],["rmi",{"2":{"197":13,"199":1}}],["rswp",{"2":{"2526":2,"2552":2}}],["rspc",{"2":{"2256":1,"2257":1,"2259":5,"2260":3,"2538":1}}],["rsi",{"2":{"1497":1}}],["rstp",{"2":{"1661":2,"1663":2,"2518":1}}],["rst",{"2":{"1493":1,"1495":1,"1680":1,"1681":1,"1687":2,"1951":3,"2288":1,"2375":1,"2383":1,"2386":1,"2388":1,"2389":1,"2391":1,"2431":1,"2491":1,"2493":1,"2495":1,"2512":1,"2760":11,"2763":4}}],["rsg",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["rsag",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["rsa",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["rs232",{"2":{"1192":1}}],["rs485",{"2":{"1192":1}}],["rs40",{"2":{"211":1}}],["rsft",{"2":{"328":1,"375":1,"589":2,"1363":1,"1448":1,"1533":4,"1594":1,"1597":1,"2259":9,"2260":1,"2381":1,"2510":1,"2529":1,"2530":1,"2535":1,"2546":1,"2561":1,"2563":1,"2575":2,"2651":1,"2911":1,"2930":1}}],["rs",{"2":{"249":1,"1699":2}}],["rshift",{"2":{"211":1,"260":1,"1364":1}}],["r17",{"2":{"1590":2}}],["r16",{"2":{"1590":2}}],["r15",{"2":{"1590":2}}],["r14",{"2":{"1590":2}}],["r13",{"2":{"1590":2}}],["r12",{"2":{"1590":2}}],["r11",{"2":{"1590":2}}],["r10",{"2":{"1590":2}}],["r1",{"2":{"211":1,"300":1,"744":1,"2858":1}}],["r2",{"2":{"207":1,"211":2,"277":1,"744":1,"2858":1}}],["rxc1",{"2":{"2043":1}}],["rxcie1",{"2":{"2043":1}}],["rxen1",{"2":{"2043":3}}],["rxled",{"2":{"1392":2,"1396":2}}],["rx",{"0":{"778":2},"1":{"779":2,"780":2},"2":{"191":1,"779":2,"1198":1,"1200":8,"1201":5,"1205":1,"1211":11,"1212":9,"1213":8,"1268":2,"1269":4,"1740":1,"2043":6,"2691":2,"2702":2,"2704":2,"2869":1}}],["rp2",{"2":{"2612":1}}],["rp2040",{"0":{"163":1,"271":1,"691":1,"756":1,"1394":1,"1397":1,"1401":1,"2044":1,"2404":1,"2692":1,"2701":1,"2702":1,"2703":1,"2705":1,"2706":1},"1":{"2693":1,"2694":1,"2695":1,"2696":1,"2697":1,"2698":1,"2699":1,"2700":1,"2701":1,"2702":2,"2703":2,"2704":1,"2705":1,"2706":1},"2":{"163":5,"174":1,"176":11,"191":9,"199":5,"211":3,"236":3,"266":1,"271":6,"277":1,"294":1,"308":1,"311":1,"317":1,"322":1,"328":1,"552":3,"691":2,"723":1,"753":2,"756":3,"1197":1,"1198":2,"1201":2,"1205":2,"1292":1,"1389":2,"1391":4,"1393":1,"1398":2,"1399":3,"1401":1,"2044":1,"2273":1,"2404":4,"2589":1,"2613":1,"2692":1,"2693":1,"2694":3,"2695":2,"2696":1,"2697":1,"2698":1,"2699":1,"2700":5,"2701":1,"2702":3,"2703":3,"2704":1,"2705":6,"2706":1,"2864":1,"2895":1}}],["rprn",{"2":{"2534":1,"2555":1}}],["rpt",{"2":{"1521":1,"1522":2,"1523":1,"2513":1}}],["rp",{"2":{"1405":2,"2697":2,"2698":2,"2699":2,"2703":1}}],["rpi",{"2":{"339":1,"2404":1}}],["rpc",{"2":{"176":2,"2277":7}}],["rdesc",{"2":{"134":1}}],["rocky",{"2":{"2626":1}}],["rocketboard",{"2":{"149":1}}],["road",{"2":{"2463":1}}],["roadmap",{"2":{"88":1,"104":1}}],["roastpotatoes",{"2":{"2423":1,"2436":1}}],["rosin",{"2":{"2421":1,"2428":2}}],["rosaline",{"2":{"211":1}}],["roving",{"2":{"2374":1}}],["rofl",{"2":{"2330":3}}],["robot",{"2":{"762":1}}],["robustness",{"2":{"211":1}}],["robust",{"2":{"76":1}}],["ro",{"2":{"431":1}}],["rooms",{"2":{"2481":1}}],["room",{"2":{"1846":1,"1954":1,"2082":1,"2290":1,"2445":1}}],["root",{"2":{"341":1,"513":1,"572":1,"615":1,"1332":1,"1387":1,"1425":1,"1538":3,"1539":1,"1850":1,"2088":1,"2417":3,"2608":1,"2609":1,"2614":1,"2683":1,"2944":1}}],["rookiebwoy",{"2":{"241":2,"249":2,"300":2,"308":1}}],["royal",{"2":{"328":1,"2567":1}}],["rot",{"2":{"308":1,"2902":1}}],["rotary",{"2":{"236":1,"685":1,"1311":1,"2865":1,"2880":1}}],["rotates",{"2":{"1953":1,"1985":3,"1987":3}}],["rotate",{"0":{"2051":1},"2":{"1953":1,"2051":4}}],["rotated",{"2":{"31":1,"34":1,"1413":1,"1953":2,"1983":1}}],["rotating",{"2":{"1670":3,"1684":1,"1954":1,"2290":1}}],["rotations",{"2":{"1988":1,"1989":1,"2759":1,"2869":1}}],["rotational",{"2":{"149":1,"1983":2}}],["rotation",{"0":{"1953":1,"1972":1},"2":{"31":5,"34":5,"199":1,"307":2,"332":7,"337":7,"1668":2,"1948":5,"1953":10,"1954":19,"1972":6,"1985":3,"1987":4,"2051":1,"2287":5,"2290":12,"2756":1,"2763":1,"2764":13,"2797":1,"2869":3}}],["rogue87",{"2":{"211":1}}],["ropt",{"2":{"176":1,"1363":1,"1448":1,"2510":1,"2529":1,"2530":1,"2546":1,"2575":1}}],["rollover",{"0":{"2833":1,"2839":1},"2":{"574":1,"1625":1,"2293":1,"2376":1,"2526":3,"2552":3}}],["rolls",{"2":{"308":1,"2913":1}}],["roll",{"2":{"294":1,"409":1,"1804":2,"2065":1}}],["rolled",{"2":{"289":1,"2925":1}}],["rollback",{"2":{"191":1}}],["rolling",{"0":{"2917":1},"2":{"134":1,"2378":1,"2919":3}}],["roles",{"2":{"2309":1,"2880":1}}],["role",{"2":{"114":1,"149":1,"194":1,"564":3,"2572":1,"2728":1,"2912":2,"2913":8,"2919":8,"2920":5,"2921":1}}],["roughly",{"2":{"1939":1}}],["rouge87",{"2":{"211":1}}],["routing",{"2":{"716":1,"2431":1}}],["routine",{"2":{"49":1,"574":2,"622":1,"624":1,"625":5,"1427":1,"1681":1,"2418":2,"2651":1}}],["routines",{"2":{"49":1,"125":1,"185":1,"567":1,"2687":1}}],["route",{"0":{"369":1,"370":1,"371":1,"372":1},"2":{"2429":1}}],["rounded",{"2":{"1252":1,"1292":1}}],["round",{"2":{"133":1,"134":1,"403":1,"596":1,"1478":1}}],["row1",{"2":{"2466":11}}],["row0",{"2":{"2466":12}}],["row2col",{"2":{"111":1,"561":1,"622":1,"639":3,"2719":2,"2872":1}}],["row",{"2":{"92":2,"114":1,"199":1,"222":1,"255":3,"289":1,"333":2,"561":1,"570":5,"624":1,"625":4,"632":1,"639":13,"1329":8,"1400":1,"1401":1,"1408":1,"1410":4,"1413":8,"1490":3,"1492":1,"1589":2,"1590":2,"1591":2,"1613":1,"1625":1,"1639":1,"1644":1,"1671":1,"1720":2,"1722":2,"1802":2,"1846":3,"1849":4,"2082":3,"2085":4,"2095":4,"2269":1,"2272":1,"2278":2,"2303":5,"2384":1,"2391":1,"2423":1,"2428":2,"2429":2,"2431":4,"2434":1,"2466":8,"2557":1,"2669":2,"2720":3,"2721":1,"2746":1,"2762":2,"2794":1,"2797":1,"2869":1,"2872":2,"2876":1,"2912":1,"2922":1,"2925":1,"2926":1,"2931":5,"2936":1}}],["rows",{"2":{"63":1,"111":1,"114":1,"211":2,"317":2,"328":1,"561":6,"589":1,"639":1,"1413":1,"1414":2,"1446":2,"1490":1,"1492":1,"1846":2,"1924":1,"1954":2,"2082":2,"2095":1,"2269":3,"2272":1,"2278":2,"2303":1,"2312":1,"2423":3,"2425":1,"2431":1,"2466":5,"2557":1,"2562":3,"2585":1,"2718":1,"2719":3,"2720":1,"2746":1,"2794":1,"2828":1,"2872":3,"2926":4,"2938":1}}],["romanian",{"2":{"2887":3}}],["rominronin",{"2":{"440":1,"2448":1}}],["roms",{"2":{"273":1}}],["rom",{"0":{"276":1,"284":1},"2":{"49":1,"273":1,"1713":1,"2482":1,"2505":1,"2949":1}}],["rcpc",{"2":{"2256":1,"2257":1,"2259":1,"2538":1}}],["rcbr",{"2":{"2068":1,"2534":1,"2555":1}}],["rctrl",{"2":{"1364":1}}],["rctl",{"2":{"328":1,"375":1,"589":2,"1350":1,"1363":1,"1448":1,"2259":2,"2381":1,"2510":1,"2526":2,"2529":1,"2530":1,"2535":1,"2546":1,"2552":2,"2563":1,"2575":2,"2651":1,"2924":1,"2927":1}}],["rcg",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["rcsg",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["rcs",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["rcag",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["rca",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["rcmd",{"2":{"1363":1,"1448":1,"2510":1,"2529":1,"2530":1,"2546":1,"2575":1}}],["rc",{"2":{"49":3,"1409":1,"2685":1}}],["radius",{"2":{"2764":1}}],["radio",{"2":{"2728":1}}],["rabk",{"2":{"2534":1,"2555":1}}],["rabbit",{"2":{"143":2}}],["rapc",{"2":{"2256":1,"2257":1,"2259":1,"2538":1}}],["rapidly",{"2":{"1493":1,"1541":1,"2308":1}}],["rag",{"2":{"1363":1,"2529":1,"2530":1,"2535":1,"2575":1,"2651":1}}],["rarely",{"2":{"2331":1}}],["rare",{"2":{"399":1,"643":1,"2568":1}}],["rart",{"2":{"211":1}}],["rartlice",{"2":{"211":1}}],["rartand",{"2":{"211":1}}],["rart80",{"2":{"211":2}}],["rart75m",{"2":{"211":1}}],["rart75",{"2":{"211":2}}],["rart67m",{"2":{"211":1}}],["rart67",{"2":{"211":1}}],["rart60",{"2":{"211":1}}],["rart45",{"2":{"211":1}}],["ralt|mod",{"2":{"1423":1}}],["ralt",{"2":{"375":1,"589":2,"1363":1,"1364":1,"1448":1,"1779":5,"1788":1,"2074":1,"2259":2,"2510":1,"2526":2,"2529":1,"2530":1,"2535":1,"2546":1,"2552":2,"2561":1,"2563":1,"2575":2,"2651":1,"2911":1,"2928":1}}],["rastersoft",{"2":{"222":1}}],["raspberry",{"0":{"163":1,"552":1,"2404":1,"2692":1},"1":{"2693":1,"2694":1,"2695":1,"2696":1,"2697":1,"2698":1,"2699":1,"2700":1,"2701":1,"2702":1,"2703":1,"2704":1,"2705":1,"2706":1},"2":{"163":1,"176":1,"1198":1,"1201":1,"1205":1,"2044":1,"2694":1,"2695":1}}],["rand",{"2":{"1947":1,"2286":1}}],["randomly",{"2":{"2085":4}}],["randomness",{"2":{"1493":3}}],["random",{"0":{"2246":1,"2775":1},"2":{"263":1,"607":1,"1409":1,"1681":2,"1947":2,"1962":1,"2085":5,"2286":2,"2764":1,"2775":3}}],["random8",{"2":{"199":2}}],["ran",{"2":{"640":1}}],["ranges",{"0":{"231":1},"2":{"191":1,"199":2,"231":2,"236":1,"379":1,"1533":1,"1946":1,"1968":1,"2187":1,"2189":1,"2285":1}}],["range",{"0":{"1653":1,"1654":1,"2197":1,"2207":1},"2":{"149":1,"176":2,"191":1,"199":3,"231":22,"285":3,"294":1,"339":1,"593":1,"616":1,"629":4,"1431":2,"1446":4,"1462":1,"1472":5,"1583":1,"1586":1,"1588":1,"1648":3,"1651":2,"1653":1,"1654":1,"1685":1,"1741":1,"1742":1,"1846":3,"1924":1,"1962":1,"1966":1,"1967":1,"1968":2,"1978":1,"1979":1,"1981":1,"1982":1,"1983":2,"1993":1,"1994":1,"2003":1,"2013":1,"2071":1,"2079":1,"2082":3,"2185":2,"2195":3,"2197":2,"2198":5,"2200":6,"2201":14,"2205":1,"2207":5,"2219":1,"2222":1,"2260":1,"2541":1,"2551":1,"2751":1,"2761":1,"2764":3,"2806":1,"2884":1,"2912":1}}],["raison",{"2":{"618":1}}],["raises",{"2":{"521":1,"524":1,"1935":1}}],["raised",{"2":{"403":1,"405":1,"412":2,"1937":2,"2567":1,"2747":2}}],["raise",{"2":{"198":1,"265":1,"524":1,"720":1,"1417":1,"1422":1,"1430":1,"1491":1,"1521":1,"1996":2,"2513":1,"2768":7,"2770":3}}],["rainbow",{"2":{"354":1,"2085":9,"2181":2,"2183":4,"2184":4,"2185":2,"2186":1,"2187":4,"2209":1,"2210":2,"2532":2,"2764":3,"2877":1,"2894":5}}],["raindrop",{"2":{"241":2}}],["raindrops",{"2":{"114":1,"222":1,"285":1,"294":1,"328":1,"2085":6,"2894":2}}],["rainkeeb",{"2":{"143":2}}],["rainkeebs",{"2":{"143":3,"149":2}}],["rain",{"2":{"134":1,"160":1,"199":1,"222":2,"285":1,"328":1,"2085":6,"2894":2}}],["rampdown",{"2":{"1686":24}}],["rampup",{"2":{"1686":24}}],["ramlord",{"2":{"211":1}}],["rama",{"2":{"199":1,"211":4}}],["ram",{"2":{"176":1,"191":1,"236":1,"719":1,"720":1,"746":1,"753":2,"1410":1,"1661":1,"1702":1,"2054":1,"2685":2,"2686":1,"2689":1,"2711":1,"2761":5,"2763":2,"2901":1}}],["ramonimbao",{"2":{"102":3,"197":13,"199":1}}],["ratio",{"2":{"1541":1,"1949":1}}],["ratio65",{"2":{"211":2}}],["rationale",{"2":{"49":1}}],["rated",{"2":{"1684":1,"1685":1}}],["rates",{"2":{"697":1}}],["rate",{"0":{"137":1},"2":{"65":1,"114":1,"137":1,"143":3,"149":4,"222":1,"236":1,"285":1,"561":2,"696":2,"719":4,"1272":1,"1331":1,"1410":1,"1413":1,"1484":4,"1935":1,"1939":1,"1949":1,"1974":1,"1986":1,"2046":3,"2211":1,"2288":1,"2298":1,"2378":1,"2759":3,"2936":1}}],["rather",{"2":{"49":1,"50":1,"124":1,"201":1,"230":1,"234":1,"323":1,"474":1,"512":1,"527":1,"535":1,"561":1,"564":1,"616":1,"619":1,"629":1,"630":1,"655":1,"1192":1,"1297":1,"1330":1,"1415":1,"1455":1,"1480":1,"1801":1,"1803":1,"2009":1,"2180":1,"2394":2,"2396":1,"2441":1,"2566":1,"2622":1,"2634":1,"2651":1,"2712":1,"2744":1,"2746":2,"2764":1,"2772":1,"2834":1,"2911":1,"2919":1,"2921":1}}],["raw",{"0":{"2054":1,"2061":1,"2063":1},"1":{"2055":1,"2056":1,"2057":1,"2058":1,"2059":1,"2060":1,"2061":1,"2062":2,"2063":1,"2064":2},"2":{"17":1,"50":1,"62":1,"114":1,"160":1,"191":1,"222":1,"266":1,"308":1,"463":1,"575":1,"625":1,"669":1,"671":1,"676":2,"1414":1,"1417":7,"1947":3,"1954":6,"1988":1,"1989":1,"2052":1,"2054":1,"2056":5,"2057":2,"2058":2,"2059":8,"2061":1,"2286":3,"2290":4,"2690":2,"2691":1,"2762":4,"2764":3,"2795":3,"2869":1}}],["ribbon",{"2":{"2431":1}}],["river",{"2":{"2085":1}}],["riverflow",{"2":{"277":1,"285":1,"2085":3}}],["riccks",{"2":{"2567":1}}],["rick",{"2":{"1804":2}}],["richly",{"2":{"2745":1}}],["rich",{"2":{"114":1,"248":1}}],["rigid",{"2":{"2425":1}}],["rigor",{"2":{"615":1}}],["right=11",{"2":{"2764":1}}],["righthand",{"2":{"568":1,"569":1}}],["rightmost",{"2":{"55":1,"317":1,"1647":1,"1720":1,"1722":1}}],["righty",{"2":{"43":2}}],["right",{"2":{"31":1,"34":1,"100":2,"114":2,"119":2,"149":2,"152":1,"160":1,"176":1,"199":2,"202":1,"203":1,"231":2,"249":1,"255":1,"307":4,"328":1,"351":1,"353":1,"375":1,"393":3,"397":1,"512":1,"543":1,"561":2,"565":2,"568":7,"569":5,"570":10,"596":1,"651":1,"711":1,"1194":1,"1197":1,"1200":1,"1363":25,"1364":1,"1423":5,"1483":1,"1492":1,"1503":1,"1523":3,"1526":1,"1590":6,"1594":2,"1595":4,"1639":2,"1666":10,"1667":1,"1692":1,"1694":1,"1779":2,"1781":2,"1788":4,"1802":1,"1843":4,"1846":1,"1849":9,"1852":1,"1933":4,"1949":3,"1954":4,"1971":1,"1977":3,"1983":8,"1987":11,"1989":7,"1990":2,"1996":1,"1997":3,"2006":1,"2048":1,"2049":1,"2065":1,"2068":6,"2082":1,"2085":15,"2091":2,"2207":1,"2255":1,"2256":7,"2257":8,"2260":1,"2269":2,"2271":1,"2272":1,"2273":7,"2274":2,"2278":10,"2288":1,"2290":2,"2301":2,"2305":1,"2310":1,"2315":12,"2327":1,"2382":1,"2385":1,"2387":1,"2394":1,"2399":1,"2401":1,"2403":1,"2410":1,"2425":1,"2428":2,"2429":1,"2510":12,"2526":6,"2528":4,"2529":25,"2530":25,"2534":3,"2535":25,"2538":8,"2544":1,"2546":8,"2548":2,"2550":1,"2552":6,"2555":3,"2575":29,"2576":6,"2598":1,"2634":2,"2651":25,"2659":1,"2678":1,"2691":3,"2707":1,"2764":6,"2783":2,"2799":2,"2841":1,"2869":1,"2871":1,"2878":1,"2880":3,"2894":2,"2925":1,"2926":2,"2928":4}}],["rising",{"2":{"1252":2}}],["risky",{"2":{"1376":1}}],["risk",{"2":{"414":1,"574":1,"757":1,"1376":1,"2427":1,"2739":1,"2903":1}}],["risc",{"0":{"553":1},"1":{"554":1},"2":{"130":2,"134":2,"153":1}}],["riot",{"2":{"222":1,"241":2,"266":1}}],["rionlion100",{"2":{"37":1}}],["rider",{"2":{"2181":1,"2532":1}}],["rid",{"2":{"222":4}}],["ringing",{"2":{"1558":1}}],["ring",{"2":{"199":1,"285":1,"1976":1}}],["rip",{"2":{"149":1}}],["ruin",{"2":{"2429":1}}],["russian",{"2":{"236":1,"2886":1,"2887":2}}],["ruled",{"2":{"2851":1}}],["rule",{"2":{"149":1,"199":1,"289":1,"294":1,"516":1,"666":1,"673":1,"2925":3,"2926":1,"2927":2}}],["ruler",{"2":{"143":2,"2427":1}}],["rules",{"0":{"571":1,"1316":1,"1464":1,"1632":2,"1678":1,"2376":1,"2418":1,"2455":1,"2889":1},"1":{"572":1,"573":1,"574":1,"575":1,"1465":1},"2":{"32":1,"49":1,"50":2,"70":29,"74":1,"75":1,"76":3,"87":1,"94":1,"103":1,"114":2,"118":2,"119":1,"133":2,"134":5,"141":1,"149":1,"172":1,"176":2,"191":2,"199":1,"202":1,"211":5,"235":1,"262":1,"266":11,"285":1,"293":1,"305":1,"308":2,"314":1,"344":1,"348":1,"426":1,"433":1,"516":1,"555":2,"558":1,"567":1,"623":1,"624":1,"625":1,"655":1,"665":3,"666":1,"667":1,"669":3,"672":2,"673":6,"686":1,"698":1,"725":1,"742":1,"743":1,"746":1,"753":1,"761":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1195":1,"1198":2,"1201":2,"1215":1,"1246":1,"1267":1,"1284":1,"1289":1,"1315":1,"1316":1,"1322":1,"1330":1,"1332":2,"1380":1,"1391":1,"1399":1,"1413":1,"1414":2,"1427":1,"1433":1,"1434":2,"1463":2,"1464":7,"1465":1,"1471":2,"1472":2,"1473":1,"1477":1,"1480":1,"1481":1,"1483":1,"1500":2,"1526":1,"1542":1,"1547":1,"1578":1,"1589":1,"1594":1,"1595":1,"1602":1,"1622":1,"1623":1,"1633":1,"1639":1,"1640":1,"1646":1,"1661":1,"1665":1,"1667":1,"1678":1,"1698":1,"1739":1,"1763":1,"1768":1,"1790":1,"1797":1,"1845":1,"1850":2,"1919":1,"1932":1,"1944":1,"1957":1,"1962":1,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1984":1,"2017":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2055":1,"2066":1,"2081":1,"2088":2,"2179":2,"2210":1,"2215":1,"2220":1,"2250":1,"2258":1,"2268":1,"2284":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2302":1,"2309":1,"2312":1,"2320":1,"2326":1,"2329":2,"2330":1,"2374":1,"2376":2,"2378":1,"2382":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2398":1,"2400":2,"2402":2,"2404":2,"2414":2,"2415":1,"2417":2,"2419":4,"2451":1,"2455":19,"2497":1,"2572":1,"2597":1,"2600":1,"2646":1,"2683":1,"2691":1,"2702":1,"2703":1,"2724":1,"2744":1,"2746":3,"2754":1,"2760":2,"2763":11,"2764":2,"2851":1,"2889":1,"2891":1,"2908":1,"2912":2,"2940":1,"2944":3,"2946":1,"2948":1}}],["runoff",{"2":{"1846":1,"2082":1}}],["rundown",{"2":{"613":1}}],["runner",{"2":{"285":3,"294":1}}],["runner3680",{"2":{"143":20}}],["running",{"0":{"398":1,"583":1,"2945":1},"2":{"11":1,"50":1,"69":2,"108":1,"132":1,"149":1,"249":1,"377":3,"404":1,"581":1,"586":1,"588":3,"598":1,"617":1,"633":1,"641":1,"712":1,"1205":1,"1252":1,"1315":1,"1316":1,"1318":1,"1526":1,"1550":1,"1551":1,"1613":1,"1625":1,"1865":1,"1867":1,"1869":1,"1871":1,"1877":1,"1878":1,"1911":1,"1917":1,"2107":1,"2109":1,"2111":1,"2113":1,"2119":1,"2120":1,"2171":1,"2177":1,"2184":1,"2375":1,"2382":1,"2409":1,"2410":1,"2417":1,"2482":1,"2508":1,"2597":1,"2616":1,"2623":1,"2625":1,"2626":1,"2627":1,"2637":2,"2639":1,"2759":1,"2847":1}}],["run",{"0":{"1523":1,"2628":1},"2":{"51":1,"90":1,"114":1,"158":2,"176":2,"199":1,"254":1,"263":1,"390":1,"426":1,"455":2,"459":3,"465":3,"469":4,"473":1,"475":1,"485":1,"487":1,"501":1,"505":1,"506":1,"513":2,"542":1,"543":1,"564":1,"574":1,"580":1,"589":1,"645":1,"649":2,"712":2,"1296":1,"1318":2,"1332":3,"1348":1,"1375":1,"1431":1,"1468":1,"1527":1,"1528":1,"1605":1,"1609":1,"1617":1,"1618":1,"1668":1,"1697":1,"1767":1,"1781":1,"1837":1,"1850":3,"1852":1,"1865":1,"1867":1,"1957":1,"1962":3,"1983":1,"1994":1,"2088":3,"2091":1,"2107":1,"2109":1,"2273":2,"2294":1,"2310":1,"2331":2,"2389":1,"2390":1,"2407":2,"2417":3,"2432":1,"2461":1,"2501":1,"2502":2,"2508":3,"2554":1,"2572":2,"2576":1,"2587":1,"2597":1,"2599":2,"2600":1,"2601":1,"2607":1,"2616":2,"2617":1,"2628":6,"2634":6,"2637":3,"2639":2,"2656":1,"2676":1,"2677":1,"2679":1,"2682":1,"2707":1,"2709":1,"2711":1,"2714":1,"2746":1,"2756":1,"2769":1,"2774":1,"2811":1,"2817":1,"2827":1,"2871":1,"2878":1,"2940":1,"2944":1,"2945":5,"2946":2,"2949":1}}],["runtime=",{"2":{"2407":1}}],["runtime",{"0":{"1661":1},"1":{"1662":1,"1663":1,"1664":1},"2":{"24":1,"720":1,"754":1,"1348":1,"2001":1,"2002":1,"2407":2,"2912":2}}],["runs",{"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"386":1,"465":2,"469":2,"492":1,"545":1,"634":1,"647":3,"1429":1,"1447":1,"1488":1,"1551":3,"1967":1,"1974":1,"1983":1,"2054":1,"2499":1,"2501":1,"2572":1,"2599":1,"2612":1,"2934":1,"2936":3}}],["r",{"0":{"2107":1,"2109":1},"1":{"2108":1,"2110":1},"2":{"32":1,"191":1,"266":2,"308":1,"317":1,"375":1,"589":2,"729":1,"732":1,"805":1,"808":1,"831":1,"834":1,"863":1,"866":1,"893":1,"896":1,"928":1,"931":1,"962":1,"965":1,"996":1,"999":1,"1030":1,"1033":1,"1064":1,"1067":1,"1098":1,"1101":1,"1132":1,"1135":1,"1166":1,"1169":1,"1197":2,"1219":1,"1222":1,"1288":2,"1364":27,"1538":2,"1804":1,"2094":1,"2096":1,"2108":1,"2110":1,"2181":1,"2198":10,"2253":1,"2296":2,"2301":2,"2390":1,"2449":1,"2481":1,"2510":3,"2532":1,"2542":3,"2563":1,"2746":1,"2762":4,"2869":2,"2882":1,"2898":1,"2926":25}}],["req",{"2":{"2216":1}}],["requried",{"2":{"249":1}}],["requesting",{"2":{"393":1,"2567":1}}],["requested",{"2":{"99":1,"164":1,"586":1,"625":1,"1954":1,"2290":1,"2568":1}}],["request",{"0":{"414":1,"2836":1},"1":{"415":1,"416":1,"417":1,"418":1},"2":{"45":1,"50":1,"87":1,"103":1,"126":1,"379":1,"414":3,"417":1,"418":1,"596":1,"609":2,"613":9,"617":1,"619":1,"683":1,"793":1,"1339":1,"1341":1,"1414":1,"1468":1,"2059":8,"2216":2,"2218":1,"2410":3,"2481":1,"2510":1,"2548":1,"2567":1,"2633":1,"2635":1,"2683":1,"2749":1,"2836":1,"2850":1,"2949":1}}],["requests",{"2":{"38":1,"69":1,"199":1,"333":1,"417":1,"578":2,"608":1,"1343":1,"2566":1,"2638":1,"2747":1,"2748":1,"2836":1,"2902":1}}],["requirement",{"2":{"236":1,"716":1,"1689":1,"2712":1,"2744":1}}],["requirements",{"0":{"1404":1,"2406":1,"2730":1,"2731":1,"2744":1},"2":{"160":1,"176":1,"488":1,"749":1,"1286":1,"1290":1,"2044":1,"2568":1,"2727":1,"2733":1,"2747":1}}],["requires",{"2":{"158":1,"397":1,"460":1,"461":2,"709":1,"749":1,"750":1,"753":1,"755":1,"757":1,"759":1,"761":1,"1246":1,"1267":1,"1298":1,"1356":1,"1376":1,"1535":1,"1633":1,"1920":1,"1952":1,"1966":1,"1978":1,"1981":1,"1997":1,"1999":1,"2058":1,"2278":1,"2283":1,"2292":2,"2330":1,"2331":1,"2375":1,"2388":1,"2394":2,"2409":2,"2523":1,"2568":1,"2590":1,"2599":1,"2683":1,"2687":1,"2746":2,"2747":1,"2752":1,"2756":1,"2761":2,"2762":4,"2764":3,"2908":1}}],["require",{"0":{"124":1},"2":{"58":1,"132":1,"134":1,"232":1,"297":1,"308":2,"339":1,"380":1,"403":1,"414":1,"417":2,"430":1,"514":1,"575":1,"588":1,"592":1,"646":1,"709":1,"710":1,"719":1,"753":1,"754":2,"757":1,"1317":1,"1518":1,"1681":1,"1781":1,"1787":1,"1835":1,"1974":1,"1984":1,"2095":1,"2096":1,"2191":1,"2276":1,"2292":1,"2318":1,"2325":1,"2386":1,"2426":1,"2466":1,"2499":1,"2602":1,"2711":1,"2733":1,"2746":1,"2747":1,"2761":1,"2763":3,"2764":1,"2771":1,"2892":1,"2894":1,"2899":1,"2906":1}}],["required",{"0":{"23":1,"2264":1},"1":{"2265":1},"2":{"10":2,"24":1,"50":1,"69":1,"70":1,"107":1,"118":1,"211":1,"228":1,"234":9,"262":1,"285":1,"354":1,"570":1,"575":1,"611":1,"615":1,"625":1,"630":1,"656":1,"657":1,"669":1,"686":1,"698":1,"714":1,"725":1,"742":1,"748":1,"761":1,"763":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1197":1,"1205":1,"1215":1,"1246":1,"1247":1,"1248":1,"1267":1,"1268":1,"1284":1,"1299":2,"1303":1,"1405":1,"1419":2,"1444":1,"1503":1,"1517":2,"1532":1,"1648":2,"1689":1,"1699":4,"1781":1,"1782":1,"1951":2,"1953":1,"1957":1,"1966":3,"1967":1,"1968":2,"1970":3,"1974":2,"1978":2,"1979":2,"1980":1,"1981":3,"1982":2,"1983":1,"1987":3,"2001":3,"2003":2,"2054":1,"2212":1,"2276":1,"2277":1,"2288":3,"2292":1,"2320":1,"2347":1,"2379":1,"2407":1,"2415":2,"2425":2,"2427":1,"2430":1,"2454":1,"2455":1,"2456":2,"2457":1,"2478":1,"2483":1,"2505":1,"2568":1,"2569":1,"2591":2,"2593":1,"2598":1,"2665":1,"2684":1,"2727":1,"2744":1,"2746":2,"2747":1,"2763":4,"2764":6,"2852":4,"2853":2,"2855":2,"2856":2,"2857":1,"2858":2,"2865":3,"2867":1,"2868":1,"2869":3,"2871":5,"2876":2,"2877":1,"2878":5,"2882":3,"2883":1,"2943":1,"2944":1}}],["requiring",{"0":{"40":1,"53":1,"67":1,"72":1,"85":1,"101":1,"121":1,"139":1,"155":1,"165":1,"180":1,"193":1,"205":1,"216":1,"225":1,"239":1,"252":1,"269":1,"280":1,"290":1,"299":1,"310":1,"321":1},"1":{"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"86":1,"87":1,"88":1,"89":1,"90":1,"102":1,"103":1,"104":1,"105":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"140":1,"141":1,"142":1,"143":1,"156":1,"157":1,"158":1,"159":1,"166":1,"167":1,"168":1,"169":1,"170":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"194":1,"195":1,"196":1,"197":1,"206":1,"207":1,"217":1,"218":1,"219":1,"220":1,"221":1,"226":1,"240":1,"241":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"270":1,"271":1,"272":1,"273":1,"281":1,"291":1,"300":1,"311":1,"312":1,"322":1,"323":1,"324":1,"325":1},"2":{"173":1,"234":1,"276":1,"285":1,"414":2,"615":1,"754":1,"1591":1,"1593":1,"2302":1,"2567":1,"2738":1}}],["reregister",{"2":{"1776":5,"1782":1,"1785":1}}],["reusing",{"2":{"659":1,"2569":1}}],["reused",{"2":{"2410":3,"2869":1}}],["reuse",{"2":{"134":1,"2948":1}}],["reintroduced",{"2":{"2628":1}}],["reinitializes",{"2":{"2511":1,"2752":1}}],["reinitilization",{"2":{"1960":1}}],["reinstall",{"2":{"2658":1}}],["reinstalling",{"2":{"1318":1}}],["reinstate",{"2":{"285":1}}],["reimplementing",{"2":{"447":1}}],["reimplements",{"2":{"134":1}}],["reimplemented",{"2":{"118":1}}],["rekt1800",{"2":{"211":1}}],["rejects",{"2":{"294":1}}],["reject",{"2":{"191":1,"266":1,"294":2,"308":1}}],["rebase",{"2":{"2634":10}}],["rebasing",{"0":{"2634":1}}],["rebuilding",{"2":{"1379":1}}],["rebrand",{"2":{"317":1}}],["rebranded",{"2":{"57":1}}],["reboots",{"2":{"2297":1}}],["rebooted",{"2":{"1661":1,"2813":1}}],["rebooting",{"2":{"651":1,"1948":1}}],["reboot",{"0":{"651":1,"654":1},"1":{"652":1,"653":1,"654":1},"2":{"160":1,"176":1,"191":1,"229":1,"570":1,"651":1,"711":1,"2278":1,"2331":1,"2511":1,"2691":1,"2752":1,"2772":1,"2880":1}}],["rect",{"2":{"2764":5}}],["rectangle",{"2":{"2764":1}}],["rectangles",{"2":{"153":1,"2764":2}}],["rectangular",{"0":{"2799":1},"2":{"1492":1,"2797":1,"2799":1}}],["recalculations",{"2":{"2759":1}}],["recall",{"2":{"1992":1}}],["recreate",{"2":{"2432":2}}],["recreated",{"2":{"149":1}}],["recutting",{"2":{"2431":1}}],["recurse",{"2":{"2407":1,"2410":2,"2637":4}}],["recursion",{"2":{"339":1}}],["recursive",{"2":{"149":1,"1628":1,"1661":1,"2599":1}}],["recv",{"2":{"2277":1}}],["rec2",{"2":{"1661":3,"2518":1}}],["rec1",{"2":{"1661":3,"2518":1}}],["receiving",{"0":{"2058":1},"2":{"1194":1,"1197":1,"1200":2,"2410":1,"2418":1,"2819":1}}],["receives",{"2":{"1837":1,"2466":2,"2794":1}}],["received",{"2":{"585":1,"764":1,"1467":1,"2057":1,"2058":1,"2059":1,"2061":1,"2062":1,"2295":1,"2567":1,"2750":1}}],["receive",{"0":{"775":1,"778":1,"1262":1,"1279":1,"2061":1},"1":{"776":1,"777":1,"779":1,"780":1,"1263":1,"1264":1,"1280":1,"2062":1},"2":{"191":1,"323":1,"328":1,"775":1,"778":1,"1262":1,"1272":1,"1275":1,"1276":1,"1279":1,"1281":1,"1986":1,"2016":1,"2057":1,"2059":1,"2310":1,"2471":1,"2508":1,"2742":1,"2880":1}}],["reception",{"2":{"1192":3}}],["recently",{"2":{"236":1,"2086":1}}],["recent",{"2":{"114":1,"134":2,"149":1,"160":1,"191":1,"199":1,"222":1,"312":1,"1525":1,"1962":1,"2374":1,"2656":1}}],["recolored",{"2":{"2764":3}}],["recolor",{"2":{"2764":9}}],["recognised",{"2":{"1962":1,"2470":1}}],["recognises",{"2":{"1675":1}}],["recognise",{"2":{"1446":1,"2331":1}}],["recognizes",{"2":{"1361":1,"2510":1}}],["recognized",{"2":{"1351":1,"1356":1,"1358":1,"1525":1,"1608":1,"2948":1}}],["recognize",{"0":{"1332":1},"2":{"176":1,"540":1,"710":1,"2510":1,"2862":1}}],["reconstruct",{"2":{"2634":1}}],["reconfigure",{"2":{"1594":1}}],["reconfiguration",{"2":{"757":1}}],["reconnect",{"2":{"62":1}}],["recopy",{"2":{"511":1}}],["recovering",{"0":{"711":1},"2":{"240":1}}],["recover",{"2":{"228":1}}],["recompilation",{"2":{"2475":1}}],["recompile",{"2":{"124":1,"143":4,"149":1,"2297":1}}],["recommends",{"2":{"613":1,"1627":1}}],["recommendations",{"2":{"2459":1,"2573":1,"2743":1,"2941":1}}],["recommendation",{"2":{"403":1}}],["recommend",{"2":{"160":1,"709":1,"749":1,"2011":1,"2384":1,"2391":1,"2459":1,"2460":1,"2628":1,"2676":1,"2748":1,"2941":1,"2944":1,"2949":1}}],["recommended",{"2":{"3":1,"4":1,"15":1,"354":2,"426":1,"623":1,"749":1,"1193":1,"1316":1,"1351":1,"1410":7,"1446":1,"1463":1,"1464":2,"1630":1,"1685":1,"1769":1,"1788":1,"1801":1,"1846":2,"1939":3,"1955":1,"2008":1,"2037":1,"2040":1,"2082":2,"2181":1,"2265":1,"2277":1,"2331":2,"2383":2,"2386":2,"2388":2,"2389":2,"2390":2,"2391":2,"2393":2,"2395":2,"2396":2,"2397":2,"2398":1,"2409":1,"2422":1,"2429":2,"2496":1,"2500":1,"2605":1,"2621":1,"2638":1,"2639":1,"2640":2,"2710":1,"2744":1,"2747":1,"2748":1,"2753":1,"2922":1,"2928":1}}],["records",{"2":{"2009":1,"2013":1}}],["recorded",{"2":{"1661":1,"2518":1,"2634":1,"2813":1}}],["recording",{"2":{"222":1,"328":1,"1490":4,"1661":6,"1662":1,"1663":1,"1664":3,"2518":2}}],["record",{"0":{"203":1,"631":1,"632":1,"1446":1,"1452":1,"1661":1,"2931":1,"2940":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"1662":1,"1663":1,"1664":1},"2":{"3":1,"7":1,"15":1,"22":2,"176":1,"194":2,"195":2,"203":7,"211":3,"285":1,"294":1,"307":5,"317":1,"324":3,"325":3,"593":14,"627":2,"630":2,"631":4,"632":6,"643":1,"647":3,"1329":8,"1366":3,"1367":3,"1417":8,"1420":3,"1431":3,"1446":10,"1447":9,"1452":1,"1462":3,"1471":5,"1472":9,"1503":1,"1510":3,"1517":3,"1532":1,"1533":3,"1537":1,"1605":1,"1613":2,"1638":9,"1661":3,"1662":1,"1663":3,"1664":4,"1667":1,"1689":1,"1743":7,"1795":5,"1923":1,"1924":3,"1962":4,"1992":1,"1993":3,"1994":4,"2004":1,"2005":4,"2006":4,"2009":2,"2013":3,"2015":2,"2071":2,"2073":1,"2074":1,"2075":1,"2076":5,"2077":5,"2079":5,"2181":1,"2191":5,"2225":3,"2300":3,"2310":4,"2316":4,"2319":1,"2456":2,"2461":1,"2518":3,"2578":5,"2579":8,"2580":5,"2602":1,"2746":1,"2768":4,"2910":1,"2911":2,"2912":8,"2919":1,"2920":1,"2921":1,"2924":3,"2927":6,"2928":1,"2930":1,"2931":2,"2939":1,"2940":59}}],["reordering",{"2":{"182":1,"191":1}}],["reorderable",{"2":{"176":1}}],["reordered",{"2":{"98":1}}],["reorg",{"2":{"114":1}}],["regress",{"2":{"2381":2}}],["regression",{"2":{"134":1,"149":2,"211":1,"2379":2,"2381":1}}],["regulated",{"2":{"2690":1}}],["regulator",{"2":{"1968":1,"2280":1}}],["regularly",{"2":{"645":1}}],["regular",{"2":{"89":1,"114":1,"709":1,"1213":1,"1457":1,"1597":2,"1681":1,"1787":1,"2300":1,"2330":1,"2423":1,"2575":1,"2914":1}}],["regex",{"2":{"1434":1}}],["regen",{"2":{"199":4}}],["regenerate",{"2":{"198":1,"199":1,"249":2,"294":1}}],["region",{"2":{"2508":1,"2763":5}}],["regions",{"2":{"1346":1,"2733":1}}],["registry",{"2":{"2709":1,"2711":1}}],["registrations",{"2":{"660":1}}],["registration",{"0":{"657":1},"2":{"63":1}}],["registered",{"0":{"2467":1},"1":{"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"1367":6,"1776":1,"1781":2,"1782":1,"1784":1,"1971":8,"2277":1,"2309":1,"2919":3,"2920":2}}],["registering",{"2":{"564":1,"1367":1,"1455":1,"1457":2,"1785":1,"1953":1}}],["register16",{"0":{"784":1,"790":1},"1":{"785":1,"786":1,"791":1,"792":1},"2":{"244":2}}],["registers",{"0":{"825":1,"853":1,"885":1,"917":1,"952":1,"986":1,"1020":1,"1054":1,"1088":1,"1122":1,"1156":1,"1190":1,"1243":1},"1":{"854":1,"886":1,"918":1,"953":1,"987":1,"1021":1,"1055":1,"1089":1,"1123":1,"1157":1,"1191":1,"1244":1},"2":{"134":1,"820":2,"822":2,"847":2,"849":2,"879":2,"881":2,"911":2,"913":2,"946":2,"948":2,"980":2,"982":2,"1014":2,"1016":2,"1048":2,"1050":2,"1082":2,"1084":1,"1116":2,"1118":1,"1150":2,"1152":1,"1184":2,"1186":1,"1213":1,"1237":2,"1239":2,"1618":1,"1665":1,"1974":1,"2466":1,"2685":2}}],["register",{"0":{"781":1,"787":1,"810":1,"820":1,"822":1,"837":1,"847":1,"849":1,"869":1,"879":1,"881":1,"899":1,"911":1,"913":1,"934":1,"946":1,"948":1,"968":1,"980":1,"982":1,"1002":1,"1014":1,"1016":1,"1036":1,"1048":1,"1050":1,"1070":1,"1082":1,"1084":1,"1104":1,"1116":1,"1118":1,"1138":1,"1150":1,"1152":1,"1172":1,"1184":1,"1186":1,"1225":1,"1237":1,"1239":1,"1320":1,"1453":1,"1457":1,"1751":1,"2025":1,"2347":1,"2357":1,"2371":1},"1":{"782":1,"783":1,"788":1,"789":1,"811":1,"821":1,"823":1,"838":1,"848":1,"850":1,"870":1,"880":1,"882":1,"900":1,"912":1,"914":1,"935":1,"947":1,"949":1,"969":1,"981":1,"983":1,"1003":1,"1015":1,"1017":1,"1037":1,"1049":1,"1051":1,"1071":1,"1083":1,"1085":1,"1105":1,"1117":1,"1119":1,"1139":1,"1151":1,"1153":1,"1173":1,"1185":1,"1187":1,"1226":1,"1238":1,"1240":1,"1752":1,"2026":1,"2348":1,"2358":1,"2372":1},"2":{"114":1,"134":1,"149":1,"190":1,"191":2,"236":3,"244":2,"249":5,"564":1,"731":1,"732":3,"781":1,"782":1,"784":1,"785":1,"787":1,"788":1,"790":1,"791":1,"793":2,"807":1,"808":4,"810":1,"811":1,"825":1,"833":1,"834":4,"837":1,"838":1,"853":1,"863":1,"865":1,"866":4,"869":1,"870":1,"885":1,"893":1,"895":1,"896":4,"899":1,"900":1,"917":1,"928":1,"930":1,"931":4,"934":1,"935":1,"952":1,"962":1,"964":1,"965":4,"968":1,"969":1,"986":1,"996":1,"998":1,"999":4,"1002":1,"1003":1,"1020":1,"1024":1,"1030":1,"1032":1,"1033":4,"1036":1,"1037":1,"1054":1,"1058":1,"1064":1,"1066":1,"1067":4,"1070":1,"1071":1,"1084":1,"1088":1,"1092":1,"1098":1,"1100":1,"1101":4,"1104":1,"1105":1,"1118":1,"1122":1,"1126":1,"1132":1,"1134":1,"1135":4,"1138":1,"1139":1,"1152":1,"1156":1,"1160":1,"1166":1,"1168":1,"1169":4,"1172":1,"1173":1,"1186":1,"1190":1,"1219":1,"1221":1,"1222":4,"1225":1,"1226":1,"1243":1,"1364":1,"1366":2,"1367":1,"1447":2,"1454":1,"1455":1,"1457":1,"1462":3,"1517":3,"1618":1,"1781":2,"1788":1,"1953":1,"1985":1,"2277":1,"2310":1,"2316":2,"2317":5,"2318":3,"2434":1,"2469":2,"2683":1,"2686":1,"2865":1,"2928":1}}],["reg",{"0":{"810":1,"837":1,"869":1,"899":1,"934":1,"968":1,"1002":1,"1036":1,"1070":1,"1104":1,"1138":1,"1172":1,"1225":1},"1":{"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1226":1},"2":{"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1226":1,"2331":2}}],["regaddr",{"0":{"781":1,"784":1,"787":1,"790":1},"1":{"782":1,"783":1,"785":1,"786":1,"788":1,"789":1,"791":1,"792":1},"2":{"782":1,"785":1,"788":1,"791":1}}],["regards",{"2":{"1518":1,"1787":1,"1974":1,"2317":1,"2665":1}}],["regard",{"2":{"799":1}}],["regardless",{"2":{"49":1,"621":1,"764":1,"1367":1,"1791":1,"2057":1,"2210":1,"2267":1,"2568":1,"2638":1,"2733":1,"2741":1,"2748":1}}],["regarding",{"0":{"27":1},"2":{"92":1,"176":1,"191":1,"213":1,"798":1,"1315":1}}],["retirement",{"2":{"2902":1}}],["retail",{"2":{"2569":1}}],["retaining",{"2":{"1470":1,"2790":1}}],["retained",{"2":{"1415":1,"2273":1,"2602":1,"2771":2}}],["retain",{"0":{"2193":1},"2":{"114":1,"191":1,"199":1,"2193":2}}],["retn",{"2":{"2510":1,"2548":1}}],["ret",{"2":{"2332":1,"2540":1}}],["retries",{"2":{"2277":1}}],["retrieves",{"2":{"2639":2}}],["retrieve",{"2":{"379":1,"2764":1}}],["retrieved",{"2":{"379":1}}],["retrieval",{"2":{"191":1,"211":1,"639":1}}],["retry",{"2":{"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1376":1}}],["retro",{"0":{"1518":1,"1519":1,"2928":1,"2929":1},"1":{"1519":1,"2929":1},"2":{"63":1,"112":2,"134":2,"222":1,"236":1,"294":1,"339":1,"564":4,"1499":1,"1517":5,"1518":11,"1519":3,"2854":2,"2928":7,"2929":3,"2930":1,"2945":2}}],["returned",{"2":{"656":1,"657":1,"658":1,"659":1,"685":1,"1594":1,"1729":1,"1840":1,"2069":1,"2193":1,"2763":11,"2924":1,"2936":1}}],["returncode",{"2":{"487":1,"543":1}}],["returns",{"2":{"487":1,"512":1,"521":1,"523":1,"524":2,"656":1,"693":1,"694":1,"797":1,"1536":1,"1599":1,"1620":2,"1621":1,"1668":1,"1770":1,"1839":1,"1937":1,"1954":12,"1957":1,"1968":1,"1988":6,"1989":3,"1990":1,"2008":1,"2014":1,"2076":1,"2203":1,"2290":8,"2306":1,"2319":1,"2380":1,"2461":1,"2634":2,"2764":2,"2923":1}}],["returning",{"2":{"90":1,"105":2,"203":1,"528":1,"651":1,"656":1,"1600":2,"1617":1,"1668":1,"1837":2,"2073":1,"2217":1,"2384":1,"2391":1,"2879":1,"2924":1,"2927":2}}],["return",{"0":{"771":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"1253":1,"1256":1,"1258":1,"1261":1,"1264":1,"1276":1,"1282":1,"1569":1,"1571":1,"1576":1,"1583":1,"1724":1,"1729":1,"1757":1,"1811":1,"1817":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1864":1,"1878":1,"1884":1,"1894":1,"1904":1,"1907":1,"1909":1,"1911":1,"1914":1,"1917":1,"2031":1,"2034":1,"2106":1,"2120":1,"2126":1,"2132":1,"2138":1,"2148":1,"2158":1,"2164":1,"2167":1,"2169":1,"2171":1,"2174":1,"2177":1,"2335":1,"2353":1,"2356":1,"2361":1,"2363":1,"2366":1,"2368":1},"2":{"31":2,"34":2,"50":1,"90":4,"105":7,"125":3,"134":3,"185":3,"191":2,"194":5,"195":4,"199":1,"249":3,"294":1,"307":2,"312":1,"324":1,"325":1,"328":1,"332":2,"333":1,"337":2,"354":1,"386":1,"512":4,"522":2,"523":2,"524":3,"528":1,"534":1,"588":1,"593":8,"615":3,"624":1,"625":2,"630":2,"631":3,"652":2,"653":1,"656":2,"657":1,"745":2,"1281":2,"1329":1,"1349":1,"1353":1,"1366":3,"1367":4,"1417":6,"1418":1,"1420":1,"1430":1,"1431":4,"1446":3,"1447":2,"1462":1,"1470":2,"1471":1,"1472":2,"1491":3,"1503":3,"1510":4,"1517":2,"1533":12,"1535":5,"1600":3,"1612":12,"1613":2,"1617":2,"1618":3,"1620":4,"1641":6,"1668":4,"1743":6,"1779":1,"1781":2,"1794":1,"1795":2,"1838":1,"1839":1,"1850":3,"1855":3,"1924":2,"1945":1,"1946":1,"1947":1,"1948":4,"1954":1,"1958":2,"1962":3,"1983":1,"1984":3,"1988":1,"1993":2,"1994":3,"1996":2,"1997":1,"2006":4,"2008":7,"2009":2,"2011":1,"2012":1,"2013":1,"2014":2,"2015":1,"2059":2,"2069":7,"2070":6,"2071":4,"2073":2,"2074":1,"2075":2,"2076":2,"2077":4,"2079":5,"2088":3,"2094":3,"2095":3,"2096":2,"2190":3,"2225":2,"2254":5,"2286":1,"2287":3,"2290":1,"2300":3,"2303":1,"2316":1,"2317":11,"2318":6,"2319":6,"2381":5,"2461":1,"2510":3,"2544":1,"2548":2,"2578":3,"2579":10,"2580":2,"2633":1,"2635":1,"2637":1,"2639":1,"2747":1,"2764":1,"2768":3,"2770":3,"2910":3,"2911":5,"2912":4,"2919":2,"2920":2,"2921":2,"2923":3,"2924":7,"2926":3,"2927":3,"2928":2,"2930":2,"2940":1}}],["rewinding",{"2":{"2634":1}}],["rewind",{"2":{"2068":1,"2510":3,"2549":3}}],["rework",{"0":{"196":2},"2":{"114":1,"134":1,"160":2,"176":1,"191":1,"199":1,"222":1,"236":1,"249":1,"277":1,"285":1,"328":1,"619":1,"2586":1}}],["reworked",{"2":{"60":1,"86":1,"118":1,"188":1,"191":1,"283":1}}],["rewritten",{"2":{"107":1,"1348":1,"2893":1}}],["rewrite",{"2":{"31":1,"75":1,"176":2,"191":1,"1376":2}}],["re",{"0":{"2850":1},"2":{"51":1,"107":1,"119":3,"124":1,"132":1,"134":1,"149":1,"157":1,"176":2,"182":1,"188":1,"198":1,"211":1,"224":1,"228":1,"232":1,"240":1,"241":1,"248":1,"253":1,"268":1,"270":1,"272":1,"273":1,"279":1,"281":1,"283":1,"294":1,"370":2,"379":1,"406":1,"407":1,"512":1,"514":1,"564":2,"599":1,"600":1,"605":1,"610":1,"613":2,"615":1,"618":1,"633":1,"658":1,"661":1,"711":1,"1207":1,"1209":1,"1311":1,"1318":1,"1364":1,"1368":1,"1417":5,"1420":1,"1450":1,"1490":1,"1501":1,"1593":1,"1608":1,"1609":2,"1612":1,"1671":1,"1689":1,"1785":3,"1788":1,"1796":1,"1923":1,"1996":1,"2048":1,"2263":1,"2268":1,"2273":2,"2275":2,"2330":1,"2331":1,"2379":1,"2410":3,"2429":8,"2431":2,"2434":1,"2437":1,"2460":1,"2462":1,"2464":1,"2497":1,"2508":1,"2567":1,"2583":1,"2603":1,"2608":1,"2613":1,"2616":1,"2617":1,"2629":1,"2634":1,"2638":1,"2651":1,"2652":1,"2666":1,"2680":1,"2682":1,"2683":1,"2711":1,"2713":1,"2715":1,"2734":1,"2742":1,"2743":1,"2744":2,"2746":1,"2748":1,"2763":2,"2766":1,"2774":1,"2794":2,"2795":1,"2890":1,"2891":2,"2892":2,"2894":1,"2912":1,"2928":1}}],["rear",{"2":{"2795":1}}],["reapply",{"2":{"2634":1}}],["reapplying",{"2":{"1367":1}}],["reap",{"2":{"412":1}}],["reasons",{"2":{"622":1}}],["reasonable",{"2":{"619":1,"1997":1,"2909":1}}],["reason",{"2":{"288":1,"416":1,"525":1,"619":1,"1350":1,"1364":1,"1423":1,"1450":1,"1466":1,"2265":1,"2567":1,"2568":1,"2717":1,"2744":1,"2764":1,"2912":1,"2932":1,"2944":1}}],["reacting",{"2":{"2276":1}}],["reactive",{"0":{"2087":1},"2":{"93":1,"124":1,"176":1,"199":1,"249":1,"266":1,"317":1,"1849":22,"1852":2,"2085":25,"2087":3,"2091":2,"2894":8}}],["react",{"2":{"2276":1,"2871":2,"2878":2}}],["reached",{"2":{"1818":1,"1935":2,"1939":1}}],["reaches",{"2":{"1427":1,"1934":3,"2472":1,"2634":1}}],["reach",{"2":{"418":1,"616":1,"1525":1,"1802":2,"1939":1,"2291":1,"2744":1}}],["reachable",{"2":{"249":1,"1975":5}}],["reaching",{"2":{"188":1,"1497":1,"2379":1,"2935":1}}],["realtime",{"0":{"2897":1}}],["realpath",{"2":{"2605":1,"2606":1}}],["realising",{"2":{"2567":1}}],["realized",{"2":{"1774":1}}],["realign",{"2":{"211":1}}],["realloc",{"2":{"236":1}}],["reallocate",{"2":{"199":2}}],["really",{"2":{"153":1,"1319":1,"1413":1,"1499":1,"1501":1,"1517":1,"1593":1,"1779":1,"1782":1,"1787":1,"2425":1,"2679":1,"2931":1}}],["real",{"0":{"1362":1,"2735":1},"1":{"2736":1,"2737":1,"2738":1},"2":{"49":1,"245":1,"1328":1,"1356":1,"1362":7,"1409":1,"1517":1,"2291":2,"2714":1}}],["reader",{"2":{"1612":1,"1947":7,"1954":1,"2286":7,"2290":1}}],["readers",{"2":{"519":1}}],["read32",{"2":{"647":1,"1420":1,"2277":1,"2744":1,"2764":6}}],["reads",{"2":{"561":2,"568":1,"569":1,"570":1,"639":3,"693":2,"694":3,"750":1,"1968":1,"2059":1,"2407":1,"2794":1}}],["readily",{"2":{"538":1,"2505":1}}],["readings",{"2":{"234":1}}],["reading",{"0":{"477":1,"496":1,"594":1},"1":{"478":1,"479":1,"480":1,"481":1},"2":{"114":1,"134":1,"149":1,"160":1,"176":1,"500":1,"561":2,"619":1,"626":1,"746":1,"793":1,"1417":1,"1742":1,"1840":1,"2441":1,"2455":1,"2466":1,"2502":4,"2503":1,"2615":1,"2872":1,"2906":1}}],["readability",{"2":{"512":1,"527":1,"538":1,"589":1,"1347":1,"2561":1}}],["readable",{"2":{"308":1,"1330":2,"1347":1,"2795":1,"2811":1,"2948":1}}],["ready",{"2":{"344":3,"403":1,"1332":1,"1462":1,"1483":1,"1622":1,"1957":1,"2043":1,"2298":1,"2384":1,"2391":1,"2418":1,"2502":1,"2508":1,"2582":1,"2612":1,"2616":1,"2617":1,"2630":1,"2682":1}}],["readreg",{"2":{"244":1}}],["readreg16",{"2":{"134":1,"244":1}}],["readpin",{"2":{"243":1}}],["readport",{"2":{"114":1}}],["readonly",{"2":{"236":1}}],["readd",{"2":{"199":1}}],["readmes",{"2":{"266":1}}],["readme",{"0":{"683":1,"684":1,"1467":2,"2452":1,"2715":1},"2":{"114":3,"134":1,"160":1,"191":1,"211":1,"222":2,"294":2,"308":1,"328":1,"409":1,"411":1,"618":2,"710":1,"1433":3,"1463":1,"2390":1,"2414":1,"2415":1,"2417":1,"2448":1,"2451":1,"2452":1,"2458":2,"2501":1,"2715":3,"2746":1}}],["read",{"0":{"610":1,"787":1,"790":1,"1257":1,"1275":1,"1379":1,"1727":1,"1755":1,"1947":1,"2286":1},"1":{"788":1,"789":1,"791":1,"792":1,"1258":1,"1276":1,"1728":1,"1729":1,"1756":1,"1757":1},"2":{"2":1,"31":3,"49":1,"114":2,"160":2,"194":1,"195":1,"199":1,"206":1,"243":1,"244":2,"249":1,"285":1,"294":1,"308":1,"346":1,"365":2,"473":1,"477":1,"483":1,"540":1,"589":1,"609":1,"639":3,"688":1,"693":1,"694":2,"745":1,"762":2,"776":2,"779":2,"787":1,"788":3,"790":1,"791":3,"793":1,"797":1,"1192":1,"1257":1,"1258":1,"1263":2,"1276":2,"1280":2,"1281":1,"1282":1,"1314":1,"1344":1,"1365":1,"1379":1,"1409":1,"1416":3,"1417":5,"1418":3,"1419":6,"1420":2,"1428":1,"1462":1,"1539":1,"1612":1,"1661":1,"1662":1,"1727":1,"1728":1,"1738":2,"1742":2,"1749":1,"1756":1,"1773":1,"1835":1,"1935":1,"1947":6,"1954":1,"1968":1,"1980":1,"1983":2,"1985":1,"2059":1,"2271":2,"2272":1,"2286":6,"2290":1,"2310":1,"2418":1,"2454":1,"2466":2,"2503":1,"2585":1,"2633":1,"2635":1,"2697":1,"2698":1,"2714":1,"2744":1,"2754":1,"2756":1,"2776":2,"2792":3,"2794":1,"2795":1,"2896":1,"2906":2,"2907":1,"2926":1,"2943":1,"2948":1}}],["reddit",{"2":{"2898":1}}],["redragon",{"2":{"2567":1}}],["redetect",{"2":{"1961":1}}],["redesigning",{"2":{"1379":1}}],["redefined",{"2":{"2746":1}}],["redefine",{"2":{"559":1,"1396":1,"1472":1,"2259":2}}],["redirect",{"2":{"586":1,"661":1,"1368":1,"2437":1,"2637":1}}],["redirected",{"2":{"268":1,"2566":1}}],["redistribution",{"2":{"2710":1,"2725":1,"2727":1,"2740":1,"2744":1}}],["redistributed",{"2":{"2710":1}}],["redistribute",{"2":{"1467":1,"2750":1}}],["redis",{"0":{"585":1},"2":{"366":1,"370":1}}],["redox",{"2":{"241":2,"249":3}}],["redoing",{"2":{"191":1}}],["redo",{"2":{"160":1}}],["red",{"0":{"702":1,"704":1,"735":1,"737":1,"812":1,"814":1,"820":1,"839":1,"841":1,"847":1,"871":1,"873":1,"879":1,"903":1,"905":1,"911":1,"938":1,"940":1,"946":1,"972":1,"974":1,"980":1,"1006":1,"1008":1,"1014":1,"1040":1,"1042":1,"1048":1,"1074":1,"1076":1,"1082":1,"1108":1,"1110":1,"1116":1,"1142":1,"1144":1,"1150":1,"1176":1,"1178":1,"1184":1,"1229":1,"1231":1,"1237":1,"1306":1,"1308":1},"1":{"703":1,"705":1,"736":1,"738":1,"813":1,"815":1,"821":1,"840":1,"842":1,"848":1,"872":1,"874":1,"880":1,"904":1,"906":1,"912":1,"939":1,"941":1,"947":1,"973":1,"975":1,"981":1,"1007":1,"1009":1,"1015":1,"1041":1,"1043":1,"1049":1,"1075":1,"1077":1,"1083":1,"1109":1,"1111":1,"1117":1,"1143":1,"1145":1,"1151":1,"1177":1,"1179":1,"1185":1,"1230":1,"1232":1,"1238":1,"1307":1,"1309":1},"2":{"49":1,"344":3,"403":1,"429":1,"492":2,"494":1,"652":1,"653":2,"703":2,"705":2,"729":1,"732":1,"736":2,"738":2,"805":1,"808":1,"813":2,"815":2,"821":2,"831":1,"834":1,"840":2,"842":2,"848":2,"863":1,"866":1,"872":2,"874":2,"880":2,"893":1,"896":1,"904":2,"906":2,"912":2,"928":1,"931":1,"939":2,"941":2,"947":2,"962":1,"965":1,"973":2,"975":2,"981":2,"996":1,"999":1,"1007":2,"1009":2,"1015":2,"1030":1,"1033":1,"1041":2,"1043":2,"1049":2,"1064":1,"1067":1,"1075":2,"1077":2,"1083":2,"1098":1,"1101":1,"1109":2,"1111":2,"1117":2,"1132":1,"1135":1,"1143":2,"1145":2,"1151":2,"1166":1,"1169":1,"1177":2,"1179":2,"1185":2,"1219":1,"1222":1,"1230":2,"1232":2,"1238":2,"1287":1,"1288":1,"1307":2,"1309":2,"1417":1,"1475":1,"1478":3,"1482":2,"1958":1,"2089":2,"2094":2,"2095":1,"2108":1,"2110":1,"2181":1,"2182":1,"2185":1,"2189":3,"2191":1,"2198":1,"2205":2,"2532":1,"2593":1}}],["redux",{"2":{"339":1}}],["reducing",{"2":{"69":1,"624":1,"2379":1}}],["reduces",{"2":{"215":1,"265":1,"619":1,"2379":1}}],["reduced",{"2":{"195":1,"1196":1,"1199":1}}],["reduce",{"0":{"55":1,"323":1,"2186":1},"2":{"17":1,"94":1,"114":2,"134":1,"149":1,"160":1,"191":6,"199":2,"211":4,"213":1,"222":3,"236":1,"266":1,"297":1,"328":1,"572":1,"1524":1,"1949":2,"2068":1,"2288":1,"2417":1,"2418":2,"2638":1,"2746":1,"2888":1,"2892":1,"2922":1}}],["reduction",{"2":{"3":1,"15":1,"149":1}}],["redundant",{"2":{"8":1,"94":1,"114":1,"211":1,"249":5,"266":3,"293":1,"305":1,"308":1,"333":3,"1619":1}}],["renaming",{"0":{"243":1,"245":1},"2":{"182":1,"194":1,"2747":1}}],["renamed",{"0":{"271":1},"2":{"37":1,"50":1,"142":1,"183":1,"186":1,"219":1,"271":1}}],["rename",{"0":{"142":1,"219":1},"2":{"25":1,"65":1,"94":1,"133":1,"134":3,"149":4,"160":2,"176":4,"191":1,"199":1,"211":13,"222":3,"236":4,"243":1,"249":6,"266":3,"277":4,"285":3,"308":1,"331":1,"1343":1}}],["renderers",{"2":{"2869":1}}],["rendered",{"2":{"676":1,"1474":1,"1908":1,"1910":1,"1912":1,"1915":1,"1953":1,"1954":1,"2168":1,"2170":1,"2172":1,"2175":1,"2290":1,"2763":2,"2764":1,"2799":1,"2800":1}}],["rendering",{"2":{"285":1,"1288":1,"1299":1,"1855":1,"1952":5,"1953":2,"1954":1,"2094":1,"2289":3,"2290":1,"2568":1,"2781":1}}],["renders",{"2":{"284":1,"679":1,"680":1,"1948":2,"1953":1,"1954":1,"2287":2,"2290":1}}],["render",{"2":{"31":1,"191":2,"222":1,"230":1,"1484":1,"1946":3,"1948":8,"1949":1,"1954":5,"1955":3,"2285":2,"2287":4,"2290":2,"2503":1,"2753":1}}],["remediated",{"2":{"2571":1}}],["remediation",{"0":{"2571":1}}],["remembered",{"0":{"2074":1},"2":{"2072":1,"2073":2,"2074":5,"2075":1,"2079":1}}],["remembers",{"2":{"2065":1}}],["remembering",{"2":{"563":1}}],["remember",{"2":{"494":2,"513":1,"568":1,"1417":1,"2057":1,"2072":1,"2073":2,"2074":1,"2075":1,"2079":1,"2297":1,"2298":1,"2300":1,"2331":1,"2466":2,"2627":1,"2943":1,"2949":1}}],["remotes",{"2":{"2637":2}}],["remote",{"2":{"222":1,"236":1,"420":1,"421":1,"2046":3,"2277":1,"2410":5,"2554":3,"2576":3,"2600":2,"2637":9,"2639":9,"2651":2}}],["removal",{"0":{"89":1,"103":1,"126":1,"276":1,"284":1,"293":1,"304":1,"305":1,"314":1,"316":1,"331":1,"332":1,"337":1,"338":1,"2902":1},"1":{"104":1,"127":1,"2903":1,"2904":1},"2":{"114":1,"124":1,"126":1,"134":1,"240":1,"249":6,"279":2,"285":1,"753":1,"2000":2,"2902":2,"2903":2}}],["removes",{"2":{"27":1,"49":1,"50":1,"176":1,"453":1,"1366":1,"1417":1,"2417":1}}],["removed",{"0":{"140":1},"2":{"6":1,"8":1,"36":1,"50":6,"67":1,"86":2,"89":1,"128":1,"140":1,"156":1,"157":1,"194":2,"201":1,"206":1,"211":1,"213":1,"218":1,"228":1,"245":1,"249":1,"254":1,"255":1,"256":1,"262":1,"273":1,"276":1,"283":1,"284":1,"303":1,"304":1,"307":1,"314":1,"316":1,"327":1,"331":1,"332":1,"453":1,"1784":2,"1785":1,"1955":2,"2008":2,"2011":1,"2569":1,"2570":1,"2571":1,"2628":1,"2746":4,"2903":3}}],["remove",{"0":{"8":1,"128":1,"218":1,"220":1,"254":1,"327":1,"453":1,"2023":1,"2367":1},"1":{"2024":1,"2368":1},"2":{"4":1,"5":1,"31":3,"32":1,"34":3,"36":1,"38":1,"50":1,"64":1,"65":1,"70":1,"72":1,"75":9,"76":1,"86":1,"94":4,"114":17,"133":8,"134":15,"149":10,"160":5,"176":9,"188":15,"191":42,"199":33,"211":23,"222":19,"236":17,"249":22,"255":1,"257":1,"258":1,"259":2,"265":1,"266":22,"275":1,"277":16,"285":9,"294":10,"307":2,"308":14,"317":7,"328":3,"333":10,"339":6,"409":1,"416":1,"453":2,"455":2,"469":1,"588":1,"712":1,"1362":1,"1522":1,"1802":1,"2008":3,"2011":3,"2012":2,"2086":1,"2184":1,"2298":1,"2317":1,"2367":1,"2504":1,"2585":1,"2586":1,"2615":1,"2691":1,"2707":1,"2744":2,"2746":1,"2795":1,"2892":1,"2921":1,"2923":1}}],["removing",{"2":{"3":1,"15":1,"50":1,"134":1,"182":1,"259":1,"272":1,"273":1,"1422":1,"1535":1,"1766":1}}],["remnants",{"2":{"211":1}}],["remainder",{"2":{"1954":2,"2290":2}}],["remainders",{"2":{"236":1}}],["remains",{"2":{"320":1,"1463":1,"1598":1,"1937":1,"2003":1,"2930":1}}],["remain",{"2":{"312":1,"539":1,"2218":1,"2650":1,"2761":2}}],["remaining",{"2":{"22":1,"87":1,"103":1,"114":2,"126":1,"191":1,"199":2,"211":2,"249":1,"308":1,"317":2,"1283":1,"1529":1,"1947":3,"1954":1,"2178":1,"2286":3,"2290":1,"2295":1,"2296":1,"2906":1}}],["remapped",{"2":{"1213":1,"1954":2,"2290":2}}],["remapping",{"2":{"328":1,"1213":1,"1593":1}}],["remap",{"2":{"182":1,"1198":2,"1201":2,"1213":5,"1492":1,"1953":2,"2877":1}}],["refused",{"2":{"2567":1}}],["refuses",{"2":{"2567":2}}],["reflashing",{"2":{"2375":1,"2482":1}}],["reflash",{"2":{"1348":1,"1666":1}}],["reflected",{"2":{"1348":1,"2637":1}}],["reflection",{"2":{"538":1}}],["reflects",{"2":{"182":1,"2652":1}}],["reflect",{"2":{"90":1,"114":1,"182":1,"199":1,"262":1,"283":1,"285":1,"1367":1,"1678":1,"1835":1,"2464":1,"2717":1,"2746":1}}],["refills",{"2":{"720":4}}],["refill",{"2":{"719":1}}],["refine",{"2":{"74":1,"1962":1}}],["ref",{"2":{"693":3,"744":1,"1620":11,"1622":2}}],["refreshed",{"2":{"2214":1}}],["refreshes",{"2":{"647":1}}],["refreshing",{"2":{"1413":1}}],["refresh",{"2":{"393":1,"647":5,"697":1,"1935":1,"1939":1,"1953":1,"2510":2,"2549":2}}],["refers",{"2":{"1364":1,"2842":1}}],["referencing",{"2":{"1503":1,"1519":1}}],["referenced",{"0":{"591":1},"2":{"1850":1,"2088":1,"2559":1,"2637":1}}],["reference",{"0":{"1620":1,"1781":1,"1782":1,"2301":1,"2851":1},"1":{"2852":1,"2853":1,"2854":1,"2855":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2861":1,"2862":1,"2863":1,"2864":1,"2865":1,"2866":1,"2867":1,"2868":1,"2869":1,"2870":1,"2871":1,"2872":1,"2873":1,"2874":1,"2875":1,"2876":1,"2877":1,"2878":1,"2879":1,"2880":1,"2881":1,"2882":1,"2883":1},"2":{"95":1,"182":1,"191":2,"199":1,"222":1,"294":1,"339":1,"512":1,"599":2,"606":2,"693":1,"1300":1,"1367":1,"1417":1,"1425":1,"1433":1,"1533":1,"1620":8,"1622":4,"1769":1,"1781":1,"1923":1,"1928":1,"2453":1,"2479":1,"2509":1,"2568":1,"2748":1,"2796":1,"2858":1,"2908":1}}],["references",{"0":{"1927":1},"1":{"1928":1,"1929":1},"2":{"27":2,"38":1,"64":1,"95":1,"114":1,"133":1,"134":1,"191":4,"211":2,"222":2,"245":1,"266":1,"285":1,"1955":2,"2637":1}}],["refereed",{"2":{"1200":2}}],["referring",{"2":{"605":1,"757":1}}],["referred",{"2":{"201":1,"1194":1,"1197":1,"2557":1,"2558":1,"2562":1,"2639":1}}],["refer",{"2":{"233":1,"245":1,"505":1,"602":1,"670":1,"710":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1200":1,"1209":1,"1247":1,"1328":1,"1349":1,"1362":1,"1397":1,"1556":1,"1628":1,"1684":1,"1685":2,"1713":1,"1730":1,"1998":1,"2037":1,"2057":1,"2269":1,"2300":1,"2330":1,"2483":1,"2561":1,"2589":1,"2694":1,"2695":1,"2696":1,"2902":1,"2942":1}}],["refs",{"2":{"114":2,"149":1,"2634":1,"2639":2}}],["refactoring",{"0":{"125":1,"169":1,"182":1,"183":1,"184":1,"185":1,"186":1,"188":1,"620":1},"1":{"170":1},"2":{"187":1,"188":1,"191":3,"198":1,"199":1,"222":1,"235":1,"236":1,"244":1,"249":1,"266":1,"294":1,"403":1,"620":1,"2653":1,"2673":1,"2747":1}}],["refactored",{"2":{"49":1}}],["refactor",{"0":{"17":1,"18":1,"32":1,"33":1,"60":1,"87":1,"263":1},"1":{"34":1,"88":1},"2":{"17":1,"32":1,"49":1,"51":1,"72":1,"75":3,"86":1,"93":1,"94":2,"114":4,"134":2,"149":4,"160":5,"176":4,"190":1,"191":6,"199":5,"211":4,"222":10,"236":3,"249":19,"266":8,"277":8,"285":5,"294":2,"308":1,"317":15,"328":6,"333":3,"339":1,"2744":1}}],["refactors",{"0":{"29":1,"58":1},"1":{"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1},"2":{"16":1,"620":1,"2746":1}}],["reformatting",{"2":{"317":1}}],["reformat",{"2":{"1":1,"114":1}}],["res2",{"2":{"2296":1,"2301":1}}],["res1",{"2":{"2296":1,"2301":1}}],["resd",{"2":{"2253":1}}],["rescue",{"2":{"1791":1,"2729":1}}],["reschedules",{"2":{"656":1}}],["resistant",{"2":{"1409":1,"1410":4,"1413":1}}],["resistance",{"2":{"744":2,"860":2,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":2,"1129":2,"1163":2,"1410":1,"2267":1,"2858":2}}],["resistors",{"2":{"1313":1,"1558":1,"2264":1,"2267":2}}],["resistor",{"2":{"236":1,"797":2,"857":2,"860":2,"921":2,"925":2,"956":2,"959":2,"990":2,"993":2,"1024":2,"1027":2,"1058":2,"1061":2,"1092":2,"1095":2,"1126":2,"1129":2,"1160":2,"1163":2,"1197":3,"1205":1,"1297":1,"1558":2,"2667":3,"2671":1}}],["res",{"2":{"696":2,"1838":3,"2252":9}}],["resynchronize",{"2":{"2637":3,"2748":1}}],["resynchronizing",{"0":{"2635":1,"2637":1},"1":{"2636":1,"2637":1},"2":{"2632":1}}],["resync",{"2":{"561":1,"1354":1,"2854":1,"2890":1}}],["responds",{"2":{"2059":1}}],["responding",{"2":{"750":1}}],["respond",{"2":{"610":1,"793":1,"1551":1,"1852":1,"2091":1}}],["responsibility",{"2":{"403":1}}],["responsible",{"2":{"367":1,"618":1,"621":1,"1297":1,"2310":1,"2572":1,"2684":1,"2759":1,"2935":3}}],["responsiveness",{"2":{"1413":1,"1852":2,"1985":1,"2091":2,"2310":1,"2759":1,"2871":1,"2878":1}}],["responsive",{"2":{"320":1,"417":1,"646":1,"2091":1,"2930":1}}],["responses",{"2":{"581":1,"2711":1}}],["response",{"2":{"312":1,"764":1,"770":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"793":1,"794":1,"1413":3,"2059":10,"2469":1,"2567":2}}],["respected",{"2":{"2764":1}}],["respecting",{"2":{"2351":1}}],["respectively",{"2":{"648":1,"669":1,"709":1,"805":1,"831":1,"860":1,"863":1,"893":1,"925":1,"928":1,"959":1,"962":1,"993":1,"996":1,"1027":1,"1030":1,"1061":1,"1064":1,"1095":1,"1098":1,"1129":1,"1132":1,"1163":1,"1166":1,"1219":1,"1498":1,"1645":1,"1742":1,"1935":2,"2267":1,"2330":1,"2331":1,"2561":1,"2651":1,"2668":1,"2795":1,"2944":1}}],["respective",{"2":{"50":1,"222":1,"233":1,"234":1,"283":1,"569":1,"1198":1,"1201":1,"1300":1,"1405":1,"1448":1,"1845":1,"1937":3,"2081":1,"2222":1,"2331":1,"2557":1,"2727":1,"2761":1,"2764":1,"2765":1,"2778":1}}],["respect",{"2":{"14":1,"98":1,"176":1,"211":1,"222":1,"285":2,"294":1,"621":1,"2710":1,"2763":1,"2783":1}}],["resembles",{"2":{"2794":1}}],["reserves",{"2":{"2707":1}}],["reserved",{"2":{"520":1,"1702":1,"1946":1,"2285":1,"2449":1,"2503":1,"2551":1,"2751":1}}],["researchers",{"2":{"312":1}}],["reset6",{"2":{"2691":1}}],["resets",{"2":{"564":1,"1493":1,"1495":1,"1529":1,"1954":1,"2290":1,"2309":1,"2511":1,"2512":1,"2691":1,"2752":1,"2763":2}}],["resetting",{"0":{"2772":1},"2":{"230":1,"748":1,"1320":1,"1591":1,"1812":1,"2685":1}}],["reset",{"0":{"156":1,"167":1,"1378":1,"1819":1,"2700":1,"2773":1},"2":{"49":2,"114":2,"149":1,"156":3,"167":2,"176":2,"188":1,"191":4,"199":2,"222":1,"308":2,"339":1,"396":2,"397":3,"398":1,"411":1,"423":2,"492":6,"494":3,"651":6,"652":1,"653":1,"684":2,"709":1,"710":2,"1265":1,"1285":1,"1286":1,"1315":1,"1320":3,"1364":2,"1376":1,"1378":1,"1417":3,"1451":2,"1493":1,"1495":1,"1533":1,"1589":2,"1614":1,"1680":2,"1702":1,"1753":1,"1815":1,"1819":1,"1846":1,"1940":5,"1960":2,"1961":2,"1999":1,"2006":1,"2008":1,"2009":2,"2023":1,"2027":1,"2082":1,"2273":4,"2288":1,"2301":2,"2309":2,"2310":5,"2314":1,"2315":3,"2316":2,"2317":3,"2318":3,"2319":4,"2323":1,"2383":3,"2386":3,"2388":2,"2389":2,"2390":1,"2391":2,"2393":5,"2395":5,"2396":2,"2397":2,"2398":5,"2404":3,"2418":1,"2433":2,"2483":1,"2485":4,"2487":5,"2489":4,"2491":1,"2493":1,"2495":1,"2499":1,"2508":3,"2512":1,"2612":2,"2615":1,"2637":1,"2651":1,"2689":1,"2691":2,"2700":5,"2702":1,"2746":1,"2763":11,"2772":2,"2773":2,"2774":3,"2852":1,"2870":1}}],["resu",{"2":{"2253":1}}],["resume",{"0":{"1387":1},"2":{"222":1,"263":2,"1387":1}}],["results",{"0":{"378":1},"2":{"99":1,"103":1,"126":1,"236":1,"263":1,"366":2,"377":1,"379":1,"433":1,"516":1,"578":1,"1522":1,"1959":1,"1960":1,"1986":1,"2379":1,"2925":1,"2929":1,"2939":2}}],["resulting",{"2":{"25":1,"119":1,"374":1,"580":1,"586":1,"589":1,"1602":1,"1622":1,"1667":1,"1986":1,"2407":1,"2609":1}}],["result",{"2":{"3":2,"8":1,"15":2,"87":1,"156":1,"166":1,"182":1,"377":2,"378":1,"540":1,"657":1,"696":4,"750":1,"755":2,"793":2,"1378":1,"1427":1,"1466":1,"1492":1,"1493":1,"1499":1,"1518":1,"1519":1,"1612":1,"1622":1,"1681":1,"1959":1,"1960":1,"1977":1,"1986":2,"2309":1,"2317":1,"2569":1,"2570":1,"2610":1,"2756":1,"2763":2,"2764":2,"2902":1,"2928":2,"2948":1}}],["resort",{"2":{"1959":1,"2331":1,"2569":1}}],["resonance",{"2":{"1685":2}}],["resonant",{"2":{"1685":1}}],["resources",{"0":{"2281":1,"2574":1,"2581":1,"2642":1,"2643":1,"2644":1,"2645":1,"2646":1},"1":{"2643":1,"2644":1,"2645":1,"2646":1},"2":{"1410":1,"2299":1,"2554":1,"2565":1,"2574":2,"2576":1,"2619":1,"2642":1,"2651":1,"2704":1,"2707":1,"2726":1,"2757":1,"2764":2,"2896":1,"2941":1}}],["resource",{"2":{"123":1,"575":1,"720":1,"1662":1,"2704":1,"2777":1,"2785":1,"2888":1}}],["resolving",{"0":{"2633":1},"1":{"2634":1},"2":{"203":1,"2410":2,"2632":1,"2744":2}}],["resolved",{"2":{"2634":1}}],["resolves",{"2":{"1610":1,"1617":1}}],["resolve",{"2":{"95":1,"191":3,"236":2,"294":1,"308":2,"333":1,"570":1,"613":1,"2634":1}}],["resolution",{"0":{"1986":1},"2":{"134":1,"183":2,"211":2,"308":1,"317":1,"328":2,"339":1,"696":3,"744":2,"1292":1,"1665":2,"1666":2,"1740":3,"1742":1,"1939":1,"1970":8,"1986":11,"2046":3,"2047":1,"2252":2,"2253":5,"2254":12,"2858":2,"2865":1}}],["resolutions",{"0":{"2252":1},"2":{"63":1,"1665":1,"1666":4,"1970":1,"2763":1}}],["rests",{"2":{"2845":1}}],["resting",{"2":{"1742":1,"1749":1,"1757":1,"2428":1}}],["restricts",{"2":{"2728":1,"2930":1}}],["restricted",{"2":{"2695":1,"2728":1,"2737":2}}],["restricting",{"2":{"2930":1}}],["restriction",{"2":{"2687":1}}],["restrictions",{"0":{"2727":1},"2":{"2686":1,"2710":1,"2725":1,"2727":3,"2739":1,"2740":1,"2741":2}}],["restrictive",{"2":{"1528":1,"2728":1,"2742":1}}],["restrict",{"2":{"328":1}}],["restructuring",{"2":{"133":1,"619":1}}],["restructure",{"0":{"113":1,"133":1},"2":{"113":1,"176":2,"328":1,"525":1}}],["rest",{"2":{"243":1,"331":1,"521":1,"754":1,"755":1,"756":1,"1742":2,"1802":3,"2415":1,"2424":1,"2428":1,"2432":1,"2482":1,"2549":1,"2620":1,"2640":1,"2662":1,"2864":1,"2943":2}}],["restarted",{"2":{"1954":1}}],["restart",{"2":{"199":2,"710":1,"1316":1,"1491":1,"2660":2,"2680":1,"2682":1}}],["restarting",{"2":{"191":1}}],["restoration",{"2":{"149":1}}],["restored",{"2":{"279":1,"2388":1}}],["restore",{"2":{"62":1,"199":1,"211":2,"222":3,"285":1,"294":1,"328":1,"414":1,"1320":1,"1367":1}}],["revoke",{"2":{"2568":1,"2570":1}}],["revealed",{"2":{"312":1}}],["reverence",{"2":{"744":1,"2858":1}}],["reversed",{"2":{"2303":1}}],["reverses",{"2":{"2069":2}}],["reverse",{"0":{"1875":1,"1876":1,"1901":1,"1902":1,"2117":1,"2118":1,"2155":1,"2156":1,"2339":1},"2":{"191":1,"339":1,"1366":1,"1489":1,"1495":1,"1525":1,"1848":2,"2050":1,"2068":1,"2069":2,"2070":1,"2084":3,"2181":2,"2199":2,"2206":1,"2332":1,"2512":1,"2525":2,"2532":2,"2533":3,"2540":1,"2567":1}}],["reversing",{"2":{"13":1,"2634":1}}],["reverted",{"2":{"176":1}}],["revert",{"2":{"114":2,"134":2,"149":1,"160":1,"176":2,"191":2,"199":5,"206":1,"211":1,"222":3,"236":1,"285":1,"339":1,"2213":1,"2214":1,"2216":1,"2912":1}}],["rev7",{"2":{"277":1}}],["rev6",{"0":{"1320":1},"2":{"211":1,"393":2,"429":2,"452":2,"453":2,"454":1,"455":1,"1320":1,"1492":1,"1527":1,"2407":2}}],["reva",{"2":{"143":2}}],["revamp",{"2":{"74":1,"222":1}}],["reviewing",{"2":{"613":1,"2743":1,"2749":1}}],["reviewed",{"2":{"613":1}}],["reviewer",{"2":{"613":1}}],["reviews",{"2":{"403":1,"2746":1,"2749":2}}],["review",{"0":{"2601":1,"2749":1},"2":{"285":1,"403":2,"417":1,"1341":1,"2569":1,"2601":2,"2744":1,"2746":1,"2747":1}}],["revisit",{"2":{"539":1,"541":1}}],["revision",{"2":{"10":2,"17":1,"60":1,"86":1,"114":1,"236":3,"294":1,"442":1,"627":4,"632":1,"636":1,"638":1,"642":1,"645":1,"646":1,"650":1,"654":1,"1418":1,"1432":1,"1438":1,"1837":1,"2417":2,"2450":3,"2453":1}}],["revisions",{"2":{"10":1,"58":1,"114":1,"160":1,"249":1,"262":1,"277":1,"308":1,"411":1,"557":1,"561":1,"619":2,"753":1,"2450":4,"2684":1}}],["revised",{"2":{"236":1}}],["reviung61",{"2":{"143":2}}],["reviung5",{"2":{"143":2}}],["reviung53",{"2":{"143":2}}],["reviung41",{"2":{"143":2}}],["reviung39",{"2":{"143":2}}],["reviung34",{"2":{"143":2}}],["reviung33",{"2":{"143":2}}],["reviung",{"2":{"143":7,"149":2}}],["rev0",{"2":{"143":2}}],["rev",{"2":{"114":1,"134":3,"211":6,"226":2,"249":1,"253":1,"2057":1,"2634":4}}],["rev5",{"2":{"114":1,"211":1,"437":1,"2587":4,"2614":2}}],["rev4",{"2":{"114":1,"134":1,"222":1,"226":1,"285":1,"429":2,"473":3,"474":2,"484":1,"485":2,"684":3,"1376":3,"1438":2,"2384":2,"2391":2,"2417":5,"2583":3}}],["rev3",{"2":{"57":2,"86":4,"102":1,"134":1,"143":2,"191":1,"241":4,"253":1,"266":1,"311":4,"317":2,"434":2,"454":1,"455":1,"684":1,"1320":1,"2417":1,"2448":2,"2449":1,"2450":2,"2584":1,"2629":6}}],["rev1+rev2",{"2":{"72":1}}],["rev1",{"2":{"45":1,"55":4,"58":2,"67":3,"86":5,"102":5,"122":3,"143":34,"149":1,"159":2,"191":1,"207":2,"211":5,"222":1,"226":2,"236":2,"241":12,"249":1,"253":14,"266":2,"285":1,"291":3,"300":4,"311":1,"317":1,"684":1,"1388":1,"1390":2,"1405":2,"2273":3,"2450":2}}],["revs",{"2":{"45":3}}],["rev2",{"2":{"45":1,"55":29,"57":2,"67":3,"70":24,"72":1,"86":2,"102":6,"114":3,"143":12,"160":1,"176":3,"211":2,"222":1,"226":1,"236":3,"241":6,"277":1,"311":2,"317":1,"328":3,"375":1,"440":1,"684":1,"2448":1,"2450":2}}],["revx",{"2":{"32":1}}],["reliability",{"2":{"2331":1}}],["reliably",{"2":{"2319":1,"2331":1}}],["relies",{"2":{"2602":1}}],["relieves",{"2":{"2300":1}}],["relied",{"2":{"1956":1}}],["relying",{"2":{"1801":1,"1850":1,"2088":1}}],["rely",{"2":{"222":1,"526":1,"2603":1,"2616":1,"2759":1}}],["relay",{"2":{"1681":2}}],["relaxed",{"2":{"564":1,"1614":1,"1615":1,"2744":2}}],["relax",{"2":{"199":1}}],["relates",{"2":{"2846":1}}],["related",{"2":{"2":1,"16":1,"124":1,"131":1,"163":1,"175":1,"187":1,"188":1,"191":2,"199":1,"236":1,"265":2,"279":1,"344":3,"403":1,"456":1,"637":1,"668":1,"1340":1,"1387":1,"1427":1,"1428":1,"2310":1,"2460":1,"2503":1,"2604":1,"2640":1,"2680":1,"2717":1,"2746":3,"2757":1,"2764":2,"2889":1}}],["relation",{"2":{"2869":1}}],["relating",{"2":{"215":1,"618":1}}],["relatively",{"2":{"279":1,"368":1,"1528":1,"1634":1,"2505":1,"2638":1}}],["relatives",{"2":{"157":1}}],["relative",{"0":{"1977":1},"2":{"149":1,"176":1,"308":1,"1487":1,"1538":1,"1628":1,"1645":1,"1974":2,"2502":1,"2583":1,"2608":1,"2629":1,"2780":1}}],["reloading",{"2":{"461":1}}],["reload",{"0":{"1905":1,"2165":1},"2":{"149":1,"460":1,"1316":1,"1905":1,"2165":1,"2199":2}}],["relocalize",{"2":{"114":1}}],["relocations",{"2":{"238":1}}],["relocating",{"0":{"43":1},"2":{"236":1}}],["relocate",{"2":{"113":1,"114":2,"133":3,"134":3,"149":2,"188":1,"191":1,"199":1,"211":1,"222":1,"236":1,"277":5,"294":1,"317":2}}],["relocated",{"0":{"41":1,"54":1},"1":{"42":1,"43":1,"55":1,"56":1,"57":1,"58":1},"2":{"213":1}}],["releasing",{"2":{"564":1,"768":1,"1518":1,"1618":1,"1786":1,"1939":1,"2226":1,"2612":1,"2650":2,"2746":1,"2842":1,"2919":1,"2925":1,"2928":3}}],["releases",{"0":{"1617":1},"2":{"720":1,"1431":1,"1448":2,"1617":1,"2316":1,"2428":1,"2757":1,"2764":2,"2823":1}}],["released",{"2":{"43":1,"57":1,"320":1,"630":1,"1446":4,"1447":2,"1452":1,"1498":2,"1617":1,"1618":1,"1690":2,"1762":1,"1782":1,"1784":1,"1923":1,"1939":1,"1992":1,"1994":1,"2048":1,"2301":1,"2309":3,"2310":1,"2319":2,"2469":1,"2650":5,"2821":1,"2822":1,"2834":1,"2874":1,"2913":3,"2914":1,"2918":1,"2919":2,"2921":1,"2925":2,"2930":1,"2939":1}}],["release",{"2":{"23":1,"56":1,"111":1,"191":1,"213":1,"222":1,"238":1,"249":1,"251":1,"266":1,"268":1,"277":1,"279":1,"392":1,"402":1,"563":2,"564":1,"631":2,"768":1,"1204":1,"1353":1,"1362":2,"1363":1,"1367":3,"1395":1,"1417":2,"1447":1,"1448":2,"1455":1,"1517":2,"1518":3,"1529":1,"1594":1,"1616":1,"1617":6,"1680":1,"1754":1,"1785":1,"1786":1,"1791":1,"1934":1,"1999":1,"2024":1,"2028":1,"2259":1,"2300":1,"2309":4,"2331":1,"2345":2,"2346":2,"2567":2,"2593":1,"2610":1,"2621":1,"2628":1,"2919":2,"2920":1,"2921":1}}],["relevant",{"2":{"7":1,"31":1,"132":1,"639":1,"681":1,"1938":1,"2427":1,"2684":1,"2685":4,"2744":1,"2747":1,"2761":1,"2944":1}}],["repairing",{"2":{"2428":1}}],["reparenting",{"2":{"538":1}}],["repurposing",{"2":{"1841":1}}],["repetition",{"2":{"2076":1}}],["repetitively",{"2":{"1497":1}}],["repetitive",{"2":{"1440":1}}],["repeating",{"0":{"2068":1},"2":{"1786":1,"2065":1,"2070":1,"2072":2,"2073":1,"2074":1,"2076":1,"2077":5,"2078":3,"2777":1,"2792":1}}],["repeat",{"0":{"202":1,"1511":1,"1512":1,"1786":1,"2065":1,"2066":1,"2537":1},"1":{"2066":1,"2067":1,"2068":1,"2069":1,"2070":1,"2071":1,"2072":1,"2073":1,"2074":1,"2075":1,"2076":1,"2077":1,"2078":1,"2079":1},"2":{"195":3,"202":6,"211":3,"231":1,"308":1,"339":1,"393":1,"564":3,"656":2,"711":1,"1498":9,"1786":6,"1939":1,"2065":7,"2066":2,"2067":3,"2068":9,"2069":3,"2070":4,"2071":4,"2073":2,"2076":8,"2077":8,"2078":2,"2079":1,"2191":3,"2537":4,"2921":5}}],["repeatedly",{"2":{"1376":1,"1422":1,"2198":1,"2304":1}}],["repeated",{"0":{"2076":1,"2077":1},"2":{"64":1,"93":1,"191":1,"312":1,"656":2,"712":1,"1409":1,"1786":1,"1961":1,"2072":2,"2073":1,"2075":1,"2076":4,"2077":1,"2078":4,"2079":1,"2570":1,"2792":2,"2921":1}}],["repeats",{"2":{"63":1,"202":1}}],["replays",{"2":{"1661":1}}],["replay",{"0":{"1661":1},"1":{"1662":1,"1663":1,"1664":1},"2":{"1661":5,"2518":2,"2634":1}}],["replacing",{"0":{"27":1},"2":{"567":1,"574":2,"630":1,"1628":1,"2330":1,"2600":1}}],["replacement",{"0":{"625":1,"1770":1,"1771":1,"1772":1,"1773":1},"2":{"172":1,"189":1,"204":1,"240":1,"279":1,"1388":1,"1534":1,"1538":1,"1770":1,"1776":1,"1779":1,"1781":5,"1784":2,"1785":1,"2212":1,"2564":1,"2685":1,"2686":1,"2687":1,"2688":1,"2706":1}}],["replacements",{"2":{"172":1,"2895":1}}],["replaced",{"2":{"7":1,"8":1,"27":1,"169":1,"184":1,"195":3,"254":1,"544":1,"711":1,"1367":1,"1398":1,"1470":1,"1988":1,"2434":1,"2746":1,"2903":1}}],["replace",{"2":{"5":1,"7":1,"31":4,"34":1,"50":1,"172":1,"176":1,"191":1,"199":2,"211":1,"240":4,"266":1,"393":1,"569":1,"622":1,"1332":1,"1364":1,"1422":2,"1446":1,"1467":1,"1472":2,"1534":2,"1538":1,"1591":2,"1628":1,"1672":1,"1766":1,"1989":1,"2256":4,"2418":2,"2599":1,"2600":1,"2912":2}}],["replicated",{"2":{"2568":1}}],["replicate",{"2":{"2181":1}}],["replicates",{"2":{"1640":1,"1667":1}}],["replied",{"2":{"414":1}}],["replugging",{"2":{"1490":1}}],["replug",{"2":{"710":1,"1348":1}}],["reply",{"2":{"386":1}}],["reproducing",{"2":{"1477":1,"2568":1}}],["reproduce",{"2":{"263":1}}],["reprimanded",{"2":{"621":1}}],["repress",{"0":{"1618":1},"2":{"285":1,"1618":4}}],["representing",{"0":{"1601":1,"1794":1},"2":{"1513":1,"1514":1,"1515":1,"1527":1,"1990":4,"2473":1,"2562":1,"2846":1}}],["represented",{"2":{"762":1,"1741":1,"2764":1,"2869":1}}],["represents",{"2":{"262":1,"597":1,"1523":1,"1539":1,"1846":5,"1990":1,"2074":1,"2082":5,"2295":1,"2300":1,"2417":1,"2466":2,"2634":1,"2795":1,"2820":1,"2840":1,"2949":1}}],["representation",{"2":{"199":1,"578":1,"1364":1,"1367":1,"2453":1,"2796":1,"2851":1,"2936":1}}],["represent",{"2":{"160":1,"495":1,"1525":1,"1601":1,"1794":1,"1990":1,"2466":2,"2503":1,"2634":1,"2728":1,"2795":1}}],["rep",{"2":{"202":1,"211":1,"2066":1,"2067":1,"2537":1}}],["reposition",{"2":{"1802":1}}],["repositories",{"2":{"26":1,"1433":2,"2744":1}}],["repository",{"0":{"2595":1,"2605":1},"2":{"21":1,"126":1,"163":1,"182":2,"224":1,"228":3,"233":1,"241":1,"253":1,"265":4,"268":3,"270":1,"275":1,"281":1,"288":2,"308":1,"399":1,"409":1,"411":2,"414":1,"458":1,"576":1,"588":3,"592":1,"594":1,"613":5,"1316":1,"1343":1,"1463":1,"1628":3,"2407":1,"2458":1,"2501":1,"2590":2,"2591":1,"2595":1,"2599":1,"2601":1,"2602":1,"2603":3,"2605":2,"2607":4,"2608":1,"2610":2,"2626":1,"2632":1,"2635":1,"2637":5,"2639":3,"2662":1,"2683":3,"2717":1,"2744":1,"2745":1,"2746":4,"2749":1,"2902":2,"2903":2}}],["reported",{"2":{"1387":1,"1410":1,"1522":1,"1740":1,"2301":1,"2508":1,"2717":1,"2949":1}}],["reporting",{"2":{"312":1,"564":1,"1410":1,"2046":2,"2833":1}}],["reports",{"0":{"1990":1},"1":{"1991":1,"1992":1,"1993":1,"1994":1,"1995":1,"1996":1,"1997":1},"2":{"149":1,"175":2,"176":2,"222":1,"285":1,"564":2,"608":1,"646":1,"711":1,"1974":2,"1980":1,"1985":3,"1986":3,"1988":1,"1989":2,"1990":2,"1994":1,"1997":1,"2052":1,"2057":4,"2291":1,"2829":1,"2882":3}}],["report",{"0":{"2033":1,"2035":2},"1":{"2034":1,"2036":2},"2":{"50":4,"74":1,"114":2,"160":3,"190":1,"191":6,"199":3,"211":1,"236":3,"285":2,"308":1,"317":1,"333":1,"339":1,"367":1,"435":1,"564":1,"1356":2,"1362":2,"1364":2,"1520":1,"1521":2,"1648":1,"1652":1,"1653":1,"1654":1,"1655":1,"1656":1,"1657":1,"1658":1,"1659":1,"1750":1,"1751":1,"1753":1,"1766":1,"1784":3,"1785":3,"1840":1,"1960":2,"1961":1,"1962":1,"1983":15,"1984":5,"1985":5,"1986":1,"1987":2,"1988":18,"1989":18,"1990":16,"1992":5,"1993":11,"1994":12,"1995":1,"1996":10,"1997":13,"2014":4,"2015":4,"2020":1,"2025":1,"2027":1,"2032":1,"2033":1,"2035":1,"2036":1,"2053":2,"2057":2,"2058":1,"2059":13,"2061":1,"2063":1,"2272":1,"2481":1,"2513":2,"2840":1}}],["repo",{"0":{"6":1},"2":{"6":1,"22":1,"77":1,"283":1,"288":1,"339":1,"422":1,"429":1,"448":1,"449":1,"598":1,"615":1,"1433":1,"1485":1,"1628":2,"2261":1,"2273":1,"2458":1,"2634":2,"2639":6,"2640":1,"2746":1}}],["q=is",{"2":{"2746":1}}],["ql",{"2":{"2319":14}}],["qn",{"2":{"420":3,"421":3,"422":2,"423":2}}],["qr",{"2":{"328":1}}],["qc60",{"2":{"253":2}}],["q9",{"2":{"249":1}}],["q8",{"2":{"249":1}}],["q7",{"2":{"249":1}}],["q4z",{"2":{"241":2}}],["q4",{"2":{"226":2,"236":1}}],["q0",{"2":{"211":2,"226":4,"236":1}}],["qol",{"2":{"211":1}}],["q5",{"2":{"191":1,"249":1}}],["q6",{"2":{"191":1}}],["q3",{"2":{"191":1,"236":1}}],["qff",{"0":{"2792":1},"2":{"191":1,"266":1,"467":1,"468":1,"2762":6,"2764":6,"2785":2,"2787":8,"2788":12,"2789":2,"2790":1,"2791":1,"2792":1}}],["qgfimagefile",{"2":{"249":1}}],["qgf",{"0":{"2792":1},"2":{"191":1,"266":1,"466":1,"2762":4,"2764":6,"2777":2,"2778":5,"2779":10,"2780":3,"2781":7,"2782":3,"2783":6,"2784":3,"2786":1,"2787":4,"2788":2,"2789":1,"2790":1,"2791":1,"2792":1}}],["q2m3ueu",{"2":{"684":1}}],["q2",{"2":{"176":1,"236":1}}],["qp",{"2":{"160":1,"176":1,"191":2,"199":1,"211":1,"222":1,"236":4,"249":2,"285":1,"328":1,"2756":6,"2757":2,"2759":1,"2763":33,"2764":104}}],["qpocket",{"2":{"149":2}}],["qpockets",{"2":{"143":4}}],["q",{"2":{"149":1,"191":1,"266":1,"277":2,"375":1,"439":1,"462":1,"589":2,"1605":1,"1622":1,"2317":1,"2510":3,"2542":3,"2557":1,"2563":1,"2683":1,"2887":3}}],["qaz",{"2":{"143":2}}],["qk100",{"2":{"266":1}}],["qk21",{"2":{"236":1}}],["qk",{"0":{"156":1,"167":1,"327":1},"2":{"120":8,"156":2,"167":2,"176":3,"188":4,"189":1,"191":8,"194":2,"199":5,"202":6,"231":26,"266":1,"277":1,"285":1,"307":1,"324":1,"325":2,"339":1,"375":1,"379":3,"563":1,"589":2,"593":1,"651":2,"710":1,"1348":1,"1376":1,"1431":1,"1441":4,"1485":4,"1486":1,"1489":2,"1490":4,"1493":6,"1495":15,"1521":6,"1530":3,"1533":22,"1543":7,"1594":1,"1606":3,"1612":8,"1661":5,"1672":1,"1673":2,"1674":2,"1680":13,"1744":32,"1762":1,"1763":1,"1764":1,"1780":3,"1790":2,"1795":1,"1797":1,"1804":1,"1805":2,"1848":11,"1925":144,"1933":19,"2018":32,"2066":4,"2067":4,"2084":15,"2181":11,"2191":2,"2216":4,"2253":9,"2257":7,"2297":3,"2300":2,"2304":7,"2316":2,"2319":2,"2321":2,"2332":8,"2377":15,"2381":16,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2511":7,"2512":15,"2513":6,"2514":3,"2515":7,"2516":15,"2517":1,"2518":5,"2519":2,"2520":32,"2521":1,"2522":2,"2524":1,"2525":11,"2526":35,"2527":144,"2528":19,"2531":3,"2532":11,"2533":15,"2535":3,"2536":32,"2537":4,"2538":7,"2539":7,"2540":8,"2552":35,"2651":3,"2685":1,"2745":1,"2752":8,"2772":2,"2773":2,"2911":10,"2912":3}}],["q11",{"2":{"249":1}}],["q1v1",{"2":{"226":4,"236":1,"266":1}}],["q1",{"2":{"114":1,"191":1,"226":4}}],["qw",{"2":{"1605":4,"1622":1}}],["qwertz",{"0":{"2838":1}}],["qwertlekeys",{"2":{"211":1}}],["qwertykeys",{"2":{"2567":1}}],["qwertyydox",{"2":{"253":2}}],["qwerty",{"0":{"2293":1,"2837":1},"2":{"92":1,"176":2,"257":1,"258":1,"259":2,"631":1,"1417":1,"1422":2,"1425":1,"1426":1,"1442":1,"1449":1,"1485":1,"1619":1,"1620":3,"1622":2,"1945":2,"2070":1,"2284":2,"2292":1,"2293":1,"2302":1,"2472":1,"2473":1,"2474":4,"2558":1,"2562":1,"2771":2,"2887":4,"2922":1}}],["qwiic",{"0":{"128":1},"2":{"74":2,"128":2,"134":6}}],["quokka",{"2":{"249":1}}],["quote",{"2":{"1692":1,"2510":1,"2534":1,"2544":1,"2555":1}}],["quoted",{"2":{"160":1,"671":1}}],["quot",{"0":{"1362":4,"1545":2,"1600":2,"2079":2,"2314":2,"2504":2,"2632":2},"2":{"5":2,"14":2,"75":2,"92":2,"110":8,"114":4,"119":10,"134":4,"152":2,"160":6,"174":2,"175":2,"176":5,"182":4,"187":2,"189":2,"190":2,"191":8,"194":2,"199":6,"201":16,"202":2,"210":2,"211":14,"215":2,"218":2,"222":6,"230":2,"234":2,"236":8,"245":4,"249":10,"263":6,"266":6,"277":2,"289":2,"294":2,"297":2,"307":2,"308":8,"339":4,"344":6,"375":1,"379":4,"403":2,"412":4,"414":2,"433":2,"488":2,"489":2,"516":2,"521":6,"525":2,"561":6,"564":2,"582":2,"583":2,"589":2,"613":6,"616":2,"633":2,"648":2,"656":2,"657":2,"670":4,"671":2,"677":2,"693":2,"694":2,"714":2,"719":2,"746":2,"753":2,"754":2,"755":2,"756":2,"793":2,"923":4,"1094":4,"1128":4,"1198":4,"1200":2,"1201":4,"1214":2,"1283":2,"1285":4,"1286":8,"1290":2,"1295":4,"1327":8,"1330":4,"1332":2,"1348":2,"1350":4,"1351":2,"1362":2,"1376":2,"1409":2,"1413":4,"1416":2,"1417":4,"1425":4,"1427":2,"1433":2,"1438":2,"1444":66,"1446":2,"1448":14,"1455":2,"1471":4,"1472":4,"1478":2,"1484":2,"1486":6,"1489":2,"1503":2,"1504":1,"1506":1,"1515":1,"1534":2,"1535":2,"1544":4,"1545":2,"1550":2,"1589":2,"1593":4,"1595":2,"1597":8,"1600":6,"1602":2,"1605":2,"1616":2,"1630":4,"1648":2,"1653":2,"1654":2,"1667":4,"1675":2,"1681":6,"1686":2,"1718":2,"1741":2,"1789":2,"1803":2,"1804":6,"1836":2,"1949":2,"1962":2,"1977":4,"1990":2,"2048":2,"2059":6,"2065":4,"2068":6,"2069":2,"2070":4,"2071":14,"2072":2,"2074":4,"2077":2,"2079":2,"2086":2,"2094":2,"2178":2,"2181":2,"2185":12,"2225":2,"2261":2,"2273":2,"2278":2,"2288":2,"2302":2,"2317":2,"2319":5,"2320":14,"2321":12,"2322":8,"2323":18,"2325":4,"2330":6,"2331":2,"2384":2,"2391":2,"2410":10,"2414":2,"2423":2,"2427":2,"2433":6,"2436":8,"2481":2,"2486":2,"2494":2,"2502":2,"2504":2,"2510":2,"2532":2,"2534":1,"2544":2,"2553":2,"2554":6,"2555":1,"2562":8,"2563":5,"2566":2,"2567":2,"2568":4,"2576":6,"2578":3,"2586":2,"2601":6,"2614":4,"2622":4,"2627":2,"2628":2,"2636":2,"2639":4,"2640":2,"2650":4,"2651":4,"2683":14,"2704":2,"2706":2,"2711":2,"2720":4,"2721":2,"2728":2,"2730":2,"2733":2,"2744":6,"2745":2,"2746":15,"2747":2,"2756":2,"2762":2,"2763":2,"2764":4,"2770":2,"2777":4,"2785":2,"2792":2,"2795":6,"2796":142,"2797":2,"2852":16,"2853":4,"2857":2,"2864":2,"2868":4,"2869":24,"2871":10,"2872":18,"2875":2,"2876":4,"2877":6,"2878":12,"2879":2,"2880":6,"2881":2,"2882":10,"2883":4,"2913":8,"2914":4,"2919":18,"2920":8,"2922":2,"2925":4,"2926":16,"2930":2,"2931":2,"2935":2,"2941":4,"2942":2,"2943":2,"2944":1,"2948":4,"2949":2}}],["quirky",{"2":{"2763":1}}],["quit",{"2":{"1431":1}}],["quite",{"2":{"119":1,"429":1,"1343":1,"1523":1,"1766":1,"1957":1,"2255":1,"2317":1,"2382":1,"2887":1,"2941":1,"2943":2,"2949":1}}],["quickly",{"2":{"1690":2,"1936":1,"1939":1,"2185":1,"2317":2,"2383":1,"2386":1,"2388":1,"2389":1,"2391":1,"2427":2,"2428":2,"2499":1,"2568":1,"2663":1,"2910":1}}],["quicker",{"2":{"1503":1,"2428":1,"2744":2}}],["quickest",{"2":{"124":1}}],["quickstart",{"0":{"1312":1}}],["quick",{"0":{"195":1,"2405":1,"2921":1},"1":{"2406":1,"2407":1,"2408":1,"2409":1},"2":{"112":1,"114":1,"195":8,"199":3,"297":1,"308":1,"564":4,"613":1,"1503":1,"2187":1,"2319":1,"2434":1,"2696":1,"2897":1,"2921":13}}],["quad",{"0":{"2317":1},"2":{"2317":1}}],["quadratic",{"2":{"1934":1,"1936":1,"1939":1}}],["quality",{"2":{"719":7,"1343":1,"2569":1,"2902":1}}],["quark",{"2":{"143":2}}],["quarter",{"2":{"133":1,"189":1,"279":1}}],["quackfire",{"2":{"57":2}}],["quantum",{"0":{"153":1,"232":1,"248":1,"254":1,"619":1,"2476":1,"2511":1,"2751":1,"2753":1,"2755":1,"2756":1,"2757":1,"2760":1,"2761":1,"2762":1,"2763":1,"2764":1},"1":{"2477":1,"2478":1,"2479":1,"2480":1,"2481":1,"2752":1,"2754":1,"2755":1,"2756":2,"2757":2,"2758":1,"2759":1,"2761":1,"2762":1,"2763":1,"2764":1},"2":{"1":1,"74":1,"75":2,"94":1,"113":2,"114":7,"133":1,"134":1,"149":3,"153":5,"158":1,"160":3,"176":2,"191":2,"199":7,"203":2,"211":3,"222":9,"231":1,"232":5,"234":2,"236":1,"248":3,"249":1,"266":4,"285":2,"294":2,"317":2,"462":1,"466":1,"467":1,"468":1,"574":1,"627":1,"1335":1,"1345":1,"1414":1,"1417":1,"1470":2,"1472":1,"1485":7,"1486":2,"1489":1,"1493":1,"1532":2,"1533":1,"1638":1,"1850":1,"1929":7,"1983":1,"1984":1,"2088":1,"2183":1,"2310":2,"2412":1,"2418":3,"2477":1,"2511":1,"2562":1,"2586":1,"2662":1,"2746":2,"2751":3,"2753":2,"2754":4,"2756":1,"2760":20,"2761":12,"2762":4,"2763":27,"2764":4,"2771":1,"2772":1,"2777":1,"2785":1,"2820":1,"2825":1,"2887":1,"2932":1,"2934":1,"2935":1,"2940":4,"2944":1}}],["queried",{"2":{"1525":1}}],["queries",{"2":{"312":1}}],["query",{"0":{"2204":1},"2":{"132":1,"134":1,"352":1,"1793":1}}],["queued",{"0":{"582":1},"2":{"263":1,"377":1,"581":1}}],["queue",{"2":{"191":1,"366":1,"377":1,"585":1,"2764":1}}],["ques",{"2":{"134":1,"191":1,"2534":1,"2555":1}}],["questioned",{"2":{"2746":1}}],["questions",{"0":{"1314":1,"1334":1},"1":{"1315":1,"1316":1,"1317":1,"1318":1,"1319":1,"1320":1,"1335":1,"1336":1,"1337":1,"1338":1,"1339":1,"1340":1,"1341":1,"1342":1,"1343":1},"2":{"417":1,"610":4,"613":1,"618":1,"1314":1,"1321":1,"1342":1,"1344":1}}],["question",{"0":{"610":1},"2":{"48":1,"191":1,"588":1,"610":2,"618":1,"1558":1,"2534":1,"2555":1,"2566":1,"2850":2}}],["quefrency",{"2":{"45":1,"114":1,"317":1,"2278":1}}],["qmkuser",{"2":{"2637":2}}],["qmkurl",{"2":{"1446":4,"2746":1}}],["qmk+vial",{"2":{"2567":1}}],["qmk+current",{"2":{"49":1}}],["qmklayer",{"2":{"1533":2}}],["qmkbest",{"2":{"1446":9,"1533":2,"2746":1}}],["qmks",{"2":{"339":1}}],["qmk",{"0":{"0":1,"9":1,"19":1,"26":1,"39":1,"51":1,"52":1,"65":1,"66":1,"70":1,"76":1,"78":1,"82":1,"83":1,"95":1,"96":1,"115":1,"135":1,"150":1,"161":1,"164":1,"177":1,"192":1,"200":1,"212":1,"223":1,"237":1,"250":1,"267":1,"278":1,"286":1,"295":1,"302":1,"309":1,"318":1,"329":1,"334":1,"365":1,"373":1,"380":1,"424":1,"427":1,"429":1,"430":1,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":1,"438":1,"439":1,"440":1,"441":1,"442":1,"443":1,"444":1,"445":1,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"458":1,"459":1,"460":1,"461":1,"462":1,"463":1,"464":1,"465":1,"466":1,"467":1,"468":1,"469":1,"470":1,"471":1,"475":1,"486":1,"507":1,"555":1,"556":1,"576":1,"581":1,"586":1,"587":1,"595":1,"1324":1,"1325":1,"1335":1,"1342":1,"1343":1,"1629":1,"1630":1,"1929":1,"2291":1,"2292":1,"2298":1,"2384":1,"2391":1,"2410":1,"2412":1,"2439":1,"2447":1,"2448":1,"2477":1,"2569":1,"2572":1,"2589":1,"2590":1,"2603":1,"2604":1,"2613":1,"2614":1,"2618":1,"2628":1,"2631":1,"2643":1,"2653":1,"2661":1,"2673":1,"2681":1,"2714":1,"2752":1,"2777":1,"2785":1,"2792":1,"2793":1,"2801":1,"2876":1,"2905":1,"2933":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"176":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"211":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1,"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1,"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1,"374":1,"375":1,"376":1,"377":1,"378":1,"379":1,"381":1,"382":1,"383":1,"425":1,"426":1,"476":1,"477":1,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1,"508":1,"509":1,"510":1,"511":1,"556":1,"557":1,"558":1,"559":1,"582":1,"583":1,"584":1,"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"602":1,"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1,"2292":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2299":1,"2300":1,"2301":1,"2413":1,"2414":1,"2415":1,"2448":1,"2449":1,"2450":1,"2451":1,"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":1,"2458":1,"2459":1,"2460":1,"2461":1,"2462":1,"2463":1,"2464":1,"2465":1,"2573":1,"2574":1,"2591":1,"2592":1,"2593":1,"2594":1,"2595":1,"2596":1,"2597":1,"2598":1,"2599":1,"2600":1,"2601":1,"2602":1,"2604":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2610":1,"2614":1,"2615":1,"2619":1,"2620":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1,"2628":1,"2629":1,"2632":1,"2662":1,"2663":1,"2682":1,"2715":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2722":1,"2723":1,"2724":1,"2778":1,"2779":1,"2780":1,"2781":1,"2782":1,"2783":1,"2784":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1,"2802":1,"2803":1,"2804":1,"2805":1,"2806":1,"2807":1,"2808":1,"2809":1,"2810":1,"2811":1,"2812":1,"2813":1,"2814":1,"2815":1,"2816":1,"2817":1,"2818":1,"2819":1,"2820":1,"2821":1,"2822":1,"2823":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":1,"2832":1,"2833":1,"2834":1,"2835":1,"2836":1,"2837":1,"2838":1,"2839":1,"2840":1,"2841":1,"2842":1,"2843":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2849":1,"2934":1,"2935":1,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1},"2":{"0":3,"1":1,"2":2,"6":1,"9":3,"10":2,"11":1,"12":1,"19":3,"21":4,"23":2,"24":3,"26":1,"38":2,"39":3,"49":2,"50":2,"51":1,"52":3,"65":1,"67":1,"69":2,"70":9,"75":2,"76":1,"82":2,"83":2,"86":2,"87":1,"93":1,"94":2,"95":4,"99":1,"100":1,"102":1,"103":1,"109":1,"110":1,"111":2,"112":3,"113":1,"114":5,"116":4,"118":1,"119":2,"120":3,"122":1,"124":1,"126":1,"128":2,"130":2,"131":2,"132":2,"133":2,"134":5,"143":1,"145":1,"146":1,"152":2,"153":2,"154":1,"156":2,"158":7,"159":1,"160":2,"163":5,"164":4,"166":1,"167":1,"168":1,"169":1,"172":3,"173":9,"174":2,"176":3,"179":1,"181":1,"182":2,"184":1,"189":3,"195":1,"196":1,"197":1,"199":6,"201":3,"202":1,"209":1,"211":10,"213":3,"224":3,"228":4,"230":1,"236":6,"238":1,"240":6,"243":3,"244":1,"249":6,"251":2,"254":1,"262":1,"263":3,"265":5,"266":3,"268":4,"273":3,"275":3,"276":3,"279":3,"284":2,"285":2,"288":3,"294":2,"302":1,"308":3,"312":2,"317":3,"328":3,"331":3,"333":5,"340":1,"341":1,"344":3,"353":1,"354":3,"364":1,"365":1,"366":1,"367":2,"373":2,"375":1,"376":1,"377":1,"379":5,"380":3,"382":1,"393":5,"397":1,"399":5,"403":4,"405":2,"406":2,"407":2,"408":1,"409":3,"411":8,"412":2,"413":1,"414":9,"418":1,"420":4,"421":1,"422":3,"423":4,"425":3,"426":4,"429":22,"430":6,"431":3,"432":3,"433":4,"434":7,"435":4,"436":1,"437":5,"438":2,"439":3,"440":2,"441":2,"442":1,"443":1,"444":1,"445":1,"446":2,"447":4,"448":3,"449":3,"450":4,"452":4,"453":4,"454":2,"455":2,"456":7,"458":1,"459":4,"460":1,"461":3,"462":1,"463":4,"464":2,"465":9,"466":1,"469":5,"470":2,"471":1,"472":1,"473":5,"474":3,"475":1,"476":3,"478":1,"479":1,"480":1,"481":1,"482":3,"483":3,"486":1,"487":2,"488":4,"489":8,"490":1,"492":1,"495":2,"496":1,"499":1,"500":1,"502":1,"503":1,"505":1,"506":1,"507":2,"509":3,"510":4,"511":1,"513":1,"517":5,"542":3,"543":1,"544":2,"545":3,"548":1,"552":1,"555":4,"556":1,"558":1,"570":7,"572":1,"573":2,"575":1,"576":3,"578":4,"579":3,"580":4,"581":5,"582":1,"585":3,"586":3,"587":1,"588":6,"589":4,"591":1,"592":1,"593":1,"594":3,"595":1,"596":1,"598":1,"600":3,"604":2,"608":1,"609":1,"610":3,"611":2,"613":3,"615":2,"616":3,"617":2,"618":1,"619":5,"620":2,"622":1,"626":3,"627":1,"629":1,"630":3,"631":1,"639":2,"644":1,"646":2,"647":1,"655":1,"664":2,"665":6,"666":3,"668":1,"672":2,"673":3,"674":2,"681":1,"682":1,"684":3,"685":1,"691":1,"709":2,"710":1,"713":4,"716":1,"749":1,"750":1,"753":1,"754":1,"755":2,"756":1,"759":1,"760":1,"796":1,"1209":1,"1213":1,"1245":1,"1266":1,"1288":1,"1311":2,"1312":1,"1313":1,"1314":1,"1316":1,"1318":4,"1319":1,"1324":1,"1325":1,"1328":1,"1333":1,"1335":2,"1336":1,"1342":2,"1343":7,"1348":1,"1349":1,"1351":1,"1356":2,"1366":2,"1367":1,"1375":2,"1380":1,"1391":1,"1399":1,"1403":1,"1404":1,"1407":1,"1409":1,"1411":1,"1417":1,"1421":1,"1423":1,"1425":1,"1427":1,"1431":1,"1433":1,"1438":1,"1440":1,"1441":1,"1444":1,"1446":6,"1463":2,"1464":1,"1469":1,"1470":1,"1472":2,"1528":1,"1532":1,"1541":1,"1593":1,"1609":1,"1624":2,"1625":1,"1626":2,"1627":7,"1628":1,"1630":2,"1632":1,"1633":2,"1634":1,"1638":1,"1661":1,"1667":1,"1670":1,"1702":2,"1765":1,"1798":1,"1835":1,"1850":1,"1919":1,"1924":1,"1929":1,"1946":3,"1962":1,"1964":1,"1998":1,"2016":1,"2054":1,"2088":1,"2178":2,"2180":1,"2194":1,"2219":1,"2249":1,"2261":3,"2269":1,"2272":2,"2273":6,"2277":1,"2281":1,"2285":3,"2292":2,"2293":1,"2294":3,"2297":1,"2301":1,"2317":1,"2331":1,"2374":1,"2375":1,"2382":4,"2383":4,"2384":7,"2386":2,"2388":2,"2389":2,"2390":2,"2391":12,"2392":1,"2393":2,"2395":2,"2396":2,"2397":4,"2398":1,"2400":2,"2402":2,"2404":3,"2405":1,"2407":5,"2409":1,"2410":8,"2411":1,"2412":2,"2414":3,"2415":1,"2418":1,"2421":2,"2424":1,"2426":1,"2432":7,"2433":2,"2434":1,"2435":1,"2439":1,"2447":1,"2448":3,"2450":4,"2451":1,"2453":2,"2459":1,"2462":1,"2465":1,"2466":1,"2477":5,"2478":1,"2479":1,"2480":1,"2481":1,"2482":1,"2496":2,"2497":1,"2501":1,"2502":1,"2503":1,"2504":5,"2508":1,"2509":1,"2511":2,"2556":1,"2557":1,"2561":1,"2562":2,"2566":6,"2567":38,"2568":15,"2569":7,"2570":6,"2571":1,"2572":4,"2574":1,"2575":1,"2576":1,"2583":5,"2584":3,"2586":2,"2587":1,"2589":6,"2590":2,"2591":1,"2593":2,"2595":2,"2597":8,"2598":2,"2599":9,"2600":6,"2601":3,"2602":2,"2603":7,"2604":3,"2605":3,"2606":4,"2607":8,"2608":4,"2609":1,"2612":2,"2613":2,"2614":4,"2615":2,"2616":2,"2617":2,"2619":1,"2620":4,"2621":1,"2623":2,"2625":2,"2626":5,"2627":4,"2628":8,"2629":4,"2632":4,"2634":3,"2635":4,"2637":19,"2638":1,"2639":14,"2642":1,"2643":2,"2653":1,"2655":1,"2659":1,"2662":2,"2673":1,"2674":1,"2676":1,"2678":3,"2680":2,"2681":1,"2682":2,"2683":10,"2684":4,"2685":1,"2691":1,"2694":1,"2696":1,"2700":1,"2701":1,"2707":5,"2709":3,"2710":2,"2712":2,"2713":2,"2714":11,"2725":2,"2740":1,"2741":1,"2742":1,"2743":2,"2744":4,"2745":2,"2746":18,"2747":3,"2748":2,"2749":1,"2751":1,"2752":2,"2759":2,"2760":1,"2762":20,"2763":1,"2764":3,"2765":1,"2777":1,"2781":1,"2782":1,"2785":1,"2793":1,"2794":5,"2795":3,"2799":2,"2809":1,"2817":2,"2819":1,"2836":1,"2846":1,"2847":1,"2851":5,"2852":2,"2854":1,"2864":1,"2869":3,"2876":1,"2884":1,"2885":1,"2888":1,"2896":1,"2898":1,"2902":8,"2903":3,"2905":2,"2906":1,"2907":1,"2908":2,"2933":1,"2934":3,"2935":1,"2937":3,"2939":1,"2940":1,"2943":1,"2948":1}}],["fwlink",{"2":{"2683":1}}],["fknraiden",{"2":{"2425":1}}],["fkeys",{"2":{"1625":1}}],["fps",{"2":{"1939":5}}],["fpc",{"2":{"1398":1}}],["f♯",{"2":{"1925":6,"2527":6}}],["fb",{"2":{"1684":3,"1685":3}}],["fdbk",{"2":{"1680":1}}],["f+g",{"2":{"1618":1}}],["f9²",{"2":{"690":1}}],["f9¹",{"2":{"690":1}}],["f9",{"2":{"375":1,"589":2,"2510":2,"2543":2,"2564":1}}],["f8²",{"2":{"690":1}}],["f8¹",{"2":{"690":1}}],["f8",{"2":{"375":1,"589":2,"2510":2,"2543":2,"2564":1}}],["f24",{"2":{"2510":2,"2543":2}}],["f23",{"2":{"1447":2,"2510":2,"2543":2}}],["f21",{"2":{"1447":2,"2510":2,"2543":2}}],["f22",{"2":{"1447":11,"2510":2,"2543":2}}],["f20",{"2":{"1361":1,"2510":2,"2543":2}}],["f2",{"2":{"375":1,"589":2,"688":1,"690":2,"1925":1,"2510":2,"2527":1,"2543":2,"2557":1,"2564":1}}],["fm",{"2":{"341":1,"376":1,"377":1,"379":4,"426":2,"429":1,"488":1,"579":1,"580":1,"581":1,"616":1,"684":2,"1312":1,"1313":1,"1318":1,"1446":1,"2477":1,"2623":1,"2625":1,"2626":1,"2714":3}}],["fme",{"2":{"211":1}}],["fghij",{"2":{"317":1}}],["fg",{"2":{"266":1,"492":5,"494":1,"2764":9}}],["fs5",{"2":{"1925":1,"2527":1}}],["fs4",{"2":{"1925":1,"2527":1}}],["fs3",{"2":{"1925":1,"2527":1}}],["fs2",{"2":{"1925":1,"2527":1}}],["fs1",{"2":{"1925":1,"2527":1}}],["fssl",{"2":{"426":2,"488":1,"1318":1,"2623":1,"2625":1,"2626":1}}],["fs",{"2":{"249":1,"1925":1,"2527":1}}],["fc980c",{"2":{"236":1}}],["fc660c",{"2":{"236":1}}],["fxtwink",{"2":{"317":1}}],["fx",{"2":{"211":1}}],["fjlabs",{"2":{"211":6,"222":1}}],["ffff",{"2":{"2240":1}}],["ffffffff",{"2":{"2238":1}}],["ff",{"2":{"197":6,"409":3,"411":3,"421":1,"422":1,"2242":1,"2502":1}}],["ffkeebs",{"2":{"134":1}}],["f3²",{"2":{"690":1}}],["f3",{"2":{"191":1,"375":1,"589":2,"688":1,"690":3,"1925":1,"2508":1,"2510":2,"2527":1,"2543":2,"2557":1,"2564":1}}],["f303",{"2":{"49":1,"50":1,"199":1,"2400":1}}],["f5²",{"2":{"690":1}}],["f5f9b992",{"2":{"377":1}}],["f5",{"2":{"111":1,"375":1,"561":2,"570":1,"589":2,"688":2,"1546":1,"1925":1,"2278":1,"2510":2,"2527":1,"2543":2,"2564":1,"2691":1,"2720":1}}],["f4²",{"2":{"690":1}}],["f4xx",{"2":{"176":1}}],["f4x1",{"2":{"160":1,"176":1,"211":1,"285":1,"2664":1}}],["f466",{"2":{"176":1}}],["f401",{"2":{"253":1,"2400":1,"2664":1}}],["f401xe",{"2":{"131":1,"134":1}}],["f405",{"2":{"130":1,"134":1,"308":1}}],["f4",{"2":{"111":1,"131":1,"134":1,"191":1,"285":1,"375":1,"561":2,"570":1,"589":2,"688":2,"690":2,"1925":1,"2278":1,"2510":2,"2527":1,"2543":2,"2564":1,"2691":1}}],["f411",{"2":{"93":1,"2400":2,"2664":2,"2853":1,"2895":1}}],["f072",{"2":{"1299":2}}],["f0",{"2":{"111":1,"561":2,"570":1,"688":2,"690":3,"2278":1,"2508":1,"2720":1}}],["f7²",{"2":{"690":1}}],["f7¹",{"2":{"690":1}}],["f7",{"2":{"111":1,"375":1,"561":2,"570":1,"589":2,"688":2,"1379":1,"2278":1,"2510":2,"2543":2,"2564":1,"2691":1,"2720":1}}],["f6²",{"2":{"690":1}}],["f6¹",{"2":{"690":1}}],["f6",{"2":{"111":1,"375":1,"561":2,"570":1,"589":2,"688":2,"690":1,"693":1,"2278":1,"2510":2,"2543":2,"2564":1,"2691":1,"2720":1}}],["f19",{"2":{"2510":2,"2543":2}}],["f17",{"2":{"2510":2,"2543":2}}],["f16",{"2":{"2510":2,"2543":2}}],["f15",{"2":{"2510":3,"2543":2}}],["f14",{"2":{"2510":2,"2543":2}}],["f14629ed1cd7c7ec9089604d64f29a99981558e8",{"2":{"588":2}}],["f1xx",{"2":{"2508":2}}],["f18",{"2":{"1788":1,"2510":2,"2543":2,"2928":1}}],["f12",{"2":{"375":1,"589":2,"2510":2,"2543":2,"2558":1,"2564":1}}],["f11",{"2":{"375":1,"589":2,"2510":2,"2543":2,"2564":1}}],["f10²",{"2":{"690":1}}],["f10¹",{"2":{"690":1}}],["f10",{"2":{"375":1,"589":2,"690":2,"2510":2,"2543":2,"2564":1}}],["f103",{"2":{"291":1,"721":1,"2402":1}}],["f103c6",{"2":{"211":1}}],["f103xb",{"2":{"114":1}}],["f13",{"2":{"211":1,"1444":1,"2510":3,"2543":2}}],["f1",{"2":{"111":1,"120":1,"191":1,"375":1,"561":2,"570":1,"589":2,"688":2,"1441":1,"1603":1,"1925":1,"2272":1,"2278":1,"2384":1,"2391":1,"2508":1,"2510":2,"2527":1,"2543":2,"2557":1,"2558":1,"2564":1,"2720":1}}],["f",{"0":{"2543":1},"2":{"111":2,"134":1,"149":1,"191":1,"196":2,"211":1,"266":2,"328":1,"375":1,"397":1,"433":6,"436":1,"437":1,"443":1,"463":5,"561":1,"573":3,"589":2,"763":1,"1538":3,"1597":1,"1618":3,"1671":1,"1685":1,"1798":2,"1925":19,"2059":2,"2068":1,"2238":1,"2240":1,"2242":1,"2244":2,"2296":1,"2301":1,"2508":2,"2510":3,"2527":19,"2542":3,"2563":3,"2762":8,"2887":3,"2924":1}}],["fantastic",{"2":{"2909":1}}],["fan",{"2":{"2421":1}}],["fancy",{"2":{"538":1,"1464":2}}],["faith",{"2":{"2746":1}}],["fair",{"2":{"2566":1}}],["fairly",{"2":{"1451":1,"1537":1,"1539":1,"2423":1,"2483":1}}],["fails",{"2":{"1804":1,"2417":1,"2733":2}}],["failed",{"2":{"377":1,"455":1,"1207":1,"1209":1,"2275":1,"2277":1,"2448":1,"2634":3}}],["failing",{"2":{"190":1,"191":1,"266":1,"615":1,"1376":1,"2448":1}}],["failures",{"2":{"134":1,"149":3,"191":1,"198":1,"199":3,"236":1,"317":1,"339":1,"455":1,"615":1,"720":1,"2277":1}}],["failure",{"2":{"92":1,"149":1,"222":1,"236":3,"263":1,"277":1,"333":1,"657":2}}],["fail",{"0":{"2731":1},"2":{"88":2,"104":2,"126":1,"127":2,"170":1,"206":1,"339":1,"393":1,"660":1,"710":1,"1532":1,"1804":2,"2598":1,"2599":1}}],["faqs",{"2":{"610":1}}],["faq",{"0":{"1321":1,"1344":1,"1374":1,"2408":1},"1":{"1322":1,"1323":1,"1324":1,"1325":1,"1326":1,"1327":1,"1328":1,"1329":1,"1330":1,"1331":1,"1332":1,"1333":1,"1345":1,"1346":1,"1347":1,"1348":1,"1349":1,"1350":1,"1351":1,"1352":1,"1353":1,"1354":1,"1355":1,"1356":1,"1357":1,"1358":1,"1359":1,"1360":1,"1361":1,"1362":1,"1375":1,"1376":1,"1377":1,"1378":1,"1379":1,"1380":1,"1381":1,"1382":1,"1383":1,"1384":1,"1385":1,"1386":1,"1387":1,"2409":1},"2":{"574":1,"1337":1,"2490":1,"2565":1,"2617":1,"2933":1}}],["famous",{"2":{"487":1,"2085":1}}],["familiarity",{"2":{"2590":1,"2933":1}}],["familiarize",{"2":{"542":1}}],["familiar",{"2":{"529":1,"611":1,"614":1,"1315":1,"2410":1,"2411":2,"2573":1,"2592":1,"2633":1,"2635":1,"2869":1,"2908":1}}],["families",{"0":{"2709":1,"2710":1},"2":{"49":1,"130":1,"753":1,"757":1,"2707":1,"2709":1}}],["family",{"0":{"2711":1,"2712":1,"2713":1},"2":{"191":1,"277":1,"754":1,"2261":1,"2709":1,"2711":4,"2712":1,"2713":1,"2746":1,"2749":1}}],["facing",{"2":{"561":1,"2051":4,"2428":2,"2466":1,"2795":1}}],["face",{"2":{"277":2,"656":1,"2423":1,"2428":2,"2739":1}}],["factor",{"2":{"1493":3,"2795":1,"2853":1}}],["factory",{"2":{"176":3,"1383":1,"2393":1,"2398":1,"2498":1}}],["fact",{"2":{"45":1,"1319":1,"1342":1,"1356":1,"1417":1,"2178":1}}],["fading",{"2":{"249":1,"1849":1,"2085":2}}],["fader",{"2":{"1923":1}}],["fade",{"2":{"93":1,"1947":3,"1949":4,"2286":3}}],["fades",{"2":{"49":1,"1849":11,"2085":16}}],["fault",{"2":{"191":1}}],["fauxclicky",{"2":{"75":1,"188":1,"191":1,"2746":1}}],["fauxpark",{"2":{"38":1,"182":1}}],["fave",{"2":{"266":1}}],["fave84",{"2":{"199":1}}],["fave84h",{"2":{"191":1}}],["favorite",{"0":{"2585":1},"2":{"2599":1}}],["favorites",{"2":{"2510":2,"2549":2}}],["favor",{"0":{"8":1},"2":{"50":1,"94":1,"505":1}}],["favour",{"2":{"3":1,"15":1,"103":1,"169":1,"184":1,"199":1}}],["fake",{"2":{"191":1,"746":1,"2567":1}}],["fastest",{"2":{"696":1,"1937":1,"1954":1,"2880":1}}],["faster",{"2":{"403":1,"538":1,"1968":1,"2065":1,"2209":2,"2253":1,"2254":1,"2379":1,"2576":1}}],["fast",{"2":{"175":1,"297":3,"308":1,"516":1,"641":1,"1196":1,"1199":1,"1410":1,"1615":1,"1681":1,"1802":2,"1935":1,"1936":1,"1994":1,"2068":1,"2317":2,"2510":2,"2549":3,"2554":1,"2599":1,"2700":1,"2746":1,"2759":1,"2919":1,"2920":1,"2922":2,"2930":2}}],["fashion",{"2":{"169":1,"2568":1,"2949":1}}],["farther",{"2":{"2585":1}}],["farsi",{"2":{"277":1,"2887":2}}],["far",{"2":{"99":1,"188":1,"263":3,"273":1,"403":1,"628":1,"1802":1,"1976":1,"2249":1,"2291":1,"2690":1}}],["falls",{"2":{"1662":1}}],["fall",{"2":{"489":1,"530":1,"1483":1,"1970":1,"2559":1,"2616":1}}],["fallback",{"0":{"209":1},"2":{"211":2,"1503":1,"2948":1}}],["falling",{"2":{"50":1,"1252":2,"2043":1,"2634":1}}],["falsely",{"2":{"1528":2,"1788":2,"2928":2,"2930":1}}],["false",{"0":{"535":1,"1528":1},"2":{"31":2,"90":2,"105":4,"111":5,"125":3,"185":2,"194":4,"195":2,"199":1,"203":1,"249":1,"307":2,"308":2,"512":2,"535":2,"593":6,"624":1,"625":1,"630":1,"631":1,"647":2,"651":2,"652":1,"653":2,"669":3,"696":1,"793":1,"1253":1,"1366":1,"1367":4,"1405":1,"1417":3,"1431":3,"1447":1,"1462":2,"1491":2,"1503":1,"1510":1,"1517":1,"1528":1,"1533":10,"1535":4,"1544":1,"1600":2,"1612":5,"1613":1,"1617":2,"1618":1,"1621":1,"1625":1,"1641":2,"1663":1,"1668":4,"1702":2,"1743":6,"1779":1,"1781":2,"1795":1,"1804":1,"1811":1,"1817":1,"1837":1,"1851":1,"1855":2,"1945":9,"1946":2,"1948":3,"1954":3,"1958":1,"1962":2,"1967":1,"1971":4,"1974":1,"1989":1,"1993":1,"1994":2,"1996":2,"1997":1,"2006":1,"2008":4,"2009":1,"2011":2,"2012":1,"2013":1,"2073":2,"2075":1,"2076":1,"2077":1,"2079":3,"2090":1,"2094":2,"2095":3,"2096":2,"2225":1,"2284":8,"2285":1,"2290":1,"2300":1,"2331":1,"2381":2,"2578":2,"2579":3,"2580":1,"2599":1,"2683":1,"2685":2,"2761":3,"2764":2,"2768":2,"2854":12,"2856":2,"2857":3,"2860":1,"2861":4,"2863":1,"2866":1,"2870":2,"2871":4,"2872":4,"2873":1,"2875":2,"2877":6,"2878":4,"2879":1,"2880":12,"2881":1,"2882":3,"2883":1,"2893":5,"2919":1,"2920":1,"2923":2,"2927":1,"2928":1,"2930":1,"2940":1}}],["flsh",{"2":{"2313":1,"2315":8}}],["flgp",{"2":{"1848":1,"2084":1,"2525":1,"2533":1}}],["flgn",{"2":{"1848":1,"2084":1,"2525":1,"2533":1}}],["fl",{"2":{"1347":1,"2561":2,"2563":3,"2564":2}}],["flick",{"2":{"1985":1}}],["flicker",{"2":{"1550":1}}],["flickering",{"2":{"1301":1}}],["flight",{"2":{"657":1,"2646":1}}],["flipping",{"2":{"1983":1}}],["flipped",{"2":{"160":1,"1665":1,"1948":1,"2191":1,"2271":1,"2287":1,"2393":1,"2398":1}}],["flips",{"2":{"13":1,"31":1,"34":1,"1948":1,"2287":1}}],["flip",{"0":{"13":1},"2":{"13":1,"211":1,"1665":1,"2434":1}}],["flypage",{"2":{"1319":1}}],["flypage=shop",{"2":{"1319":1}}],["fly",{"0":{"2297":1},"2":{"538":1,"574":1,"1349":1,"1480":1,"1488":1,"1606":1,"1661":1,"2054":1,"2297":1,"2808":1,"2912":3}}],["flygone60",{"2":{"241":2}}],["float",{"0":{"1659":2},"1":{"1660":2},"2":{"215":2,"1535":1,"1651":2,"1660":2,"1804":3,"1839":2,"1994":4}}],["floating",{"2":{"215":2,"1297":1}}],["flowing",{"2":{"2085":1}}],["flows",{"2":{"1343":1}}],["flowtap",{"2":{"328":1}}],["flower",{"2":{"236":1,"2085":3,"2894":1}}],["flow",{"0":{"297":1,"2922":1,"2923":1,"2924":1},"1":{"2923":1,"2924":1},"2":{"149":1,"297":4,"308":3,"339":1,"384":1,"525":1,"619":1,"1266":1,"2085":4,"2298":1,"2427":1,"2428":1,"2894":1,"2922":9,"2923":6,"2924":17,"2930":7}}],["flux",{"2":{"2427":2}}],["flushed",{"2":{"1908":1,"1910":1,"1912":1,"1915":1,"2168":1,"2170":1,"2172":1,"2175":1}}],["flushes",{"2":{"114":1}}],["flush",{"0":{"230":1,"706":1,"1310":1,"1652":1,"1750":1,"2032":1},"2":{"211":1,"236":2,"702":1,"706":1,"739":1,"824":1,"825":1,"851":1,"853":1,"883":1,"885":1,"915":1,"917":1,"950":1,"952":1,"984":1,"986":1,"1018":1,"1020":1,"1052":1,"1054":1,"1086":1,"1088":1,"1120":1,"1122":1,"1154":1,"1156":1,"1188":1,"1190":1,"1241":1,"1243":1,"1306":1,"1310":1,"1648":1,"1653":1,"1654":1,"1655":1,"1656":1,"1657":1,"1658":1,"1659":1,"1751":1,"1753":1,"1852":1,"1955":1,"2025":1,"2027":1,"2091":1,"2195":1,"2761":1,"2763":2,"2764":10,"2871":1,"2878":1}}],["flushing",{"2":{"191":1,"652":1,"653":1,"2761":1}}],["flurry",{"2":{"163":1}}],["flavours",{"2":{"2657":1}}],["flat",{"2":{"1538":1}}],["flatbread60",{"2":{"86":2}}],["flake8",{"2":{"501":1,"506":2}}],["flask",{"2":{"368":1}}],["flasher",{"2":{"2391":1,"2483":1,"2484":1,"2488":1,"2502":2,"2819":1}}],["flashers",{"2":{"430":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":1,"2402":1,"2404":1}}],["flashes",{"2":{"2273":1,"2385":2,"2387":3,"2392":1,"2394":2,"2399":2,"2401":1,"2403":1}}],["flashed",{"0":{"1320":1},"2":{"569":1,"578":1,"683":1,"2189":1,"2273":1,"2298":1,"2374":1,"2382":1,"2387":1,"2404":1,"2432":1,"2434":1,"2482":1,"2490":1,"2502":1,"2569":1,"2901":1}}],["flashable",{"2":{"378":1}}],["flashing",{"0":{"602":1,"1788":1,"2382":1,"2433":1,"2482":1,"2502":1,"2505":1,"2508":1,"2611":1,"2613":1},"1":{"2383":1,"2384":1,"2385":1,"2386":1,"2387":1,"2388":1,"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2483":1,"2484":1,"2485":1,"2486":1,"2487":1,"2488":1,"2489":1,"2490":1,"2491":1,"2492":1,"2493":1,"2494":1,"2495":1,"2496":1,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":1,"2503":2,"2504":1,"2505":1,"2506":2,"2507":2,"2508":2,"2612":1,"2613":1,"2614":2,"2615":2,"2616":1,"2617":1},"2":{"49":1,"134":2,"191":1,"222":2,"240":3,"426":1,"430":2,"602":1,"684":1,"713":1,"1316":1,"1318":1,"1320":1,"1337":1,"1472":1,"1681":1,"2273":1,"2374":1,"2382":2,"2383":1,"2384":1,"2386":1,"2387":1,"2388":2,"2389":1,"2390":1,"2391":3,"2393":1,"2395":1,"2396":1,"2397":2,"2398":1,"2400":2,"2402":2,"2404":2,"2407":3,"2417":1,"2434":1,"2483":1,"2484":1,"2486":1,"2488":1,"2494":1,"2496":2,"2497":1,"2504":1,"2511":1,"2567":1,"2573":1,"2587":1,"2588":1,"2612":2,"2613":1,"2616":1,"2629":1,"2652":1,"2667":1,"2672":1,"2752":1,"2835":1,"2844":1,"2852":1,"2930":2}}],["flash",{"0":{"164":1,"430":1,"754":1,"755":1,"758":1,"759":1,"1337":1,"1348":1,"2409":1,"2588":1,"2615":1,"2616":1},"1":{"759":1},"2":{"49":3,"107":1,"113":1,"114":5,"124":1,"134":1,"149":1,"160":1,"164":3,"174":5,"176":4,"199":2,"222":1,"236":1,"240":1,"277":1,"294":1,"317":2,"333":1,"414":1,"430":6,"435":1,"545":1,"547":1,"568":2,"581":1,"651":1,"684":1,"709":1,"710":1,"719":1,"720":1,"746":3,"752":1,"753":6,"754":12,"755":9,"756":6,"757":5,"758":3,"759":15,"1315":2,"1320":1,"1348":2,"1376":2,"1388":2,"1472":8,"1623":1,"1664":1,"1851":1,"1974":1,"2090":1,"2184":1,"2189":1,"2273":7,"2274":2,"2315":2,"2382":3,"2383":3,"2386":3,"2387":1,"2388":2,"2389":2,"2390":1,"2391":1,"2393":1,"2394":4,"2395":1,"2396":1,"2397":2,"2398":1,"2400":2,"2402":2,"2404":2,"2407":3,"2410":1,"2417":3,"2418":1,"2433":1,"2482":4,"2490":1,"2502":8,"2503":1,"2504":1,"2508":18,"2511":1,"2601":1,"2610":1,"2611":1,"2612":1,"2613":3,"2615":4,"2616":8,"2668":1,"2683":2,"2689":1,"2691":1,"2705":10,"2711":1,"2746":3,"2752":1,"2753":1,"2761":1,"2764":2,"2864":4,"2876":1,"2888":1,"2901":1,"2906":1,"2912":1}}],["flagged",{"0":{"414":1},"1":{"415":1,"416":1,"417":1,"418":1},"2":{"199":1,"201":1,"344":3,"403":1,"414":1,"418":1,"2095":1,"2275":1}}],["flag",{"2":{"176":1,"191":1,"249":1,"302":1,"307":1,"429":1,"460":1,"461":1,"463":1,"470":1,"489":1,"564":3,"712":1,"754":1,"1406":1,"1612":1,"1729":1,"1730":1,"1732":1,"1781":1,"1846":2,"1847":5,"1848":2,"1852":6,"1899":1,"1900":1,"1901":1,"1902":1,"2000":1,"2082":2,"2083":6,"2084":2,"2091":7,"2095":1,"2096":1,"2153":1,"2154":1,"2155":1,"2156":1,"2191":1,"2218":1,"2273":1,"2525":2,"2533":2,"2746":1,"2777":1,"2787":1,"2871":2,"2878":2}}],["flags",{"0":{"1847":1,"1895":3,"1897":3,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"2083":1,"2149":3,"2151":3,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1},"1":{"1896":3,"1898":3,"1904":1,"2150":3,"2152":3,"2158":1},"2":{"176":1,"191":1,"209":1,"277":1,"327":1,"328":4,"333":1,"507":1,"1395":2,"1847":8,"1848":2,"1852":3,"1895":1,"1896":3,"1897":1,"1898":3,"1903":1,"1904":1,"1953":1,"1954":1,"2083":8,"2084":2,"2091":3,"2095":1,"2096":2,"2149":1,"2150":3,"2151":1,"2152":3,"2157":1,"2158":1,"2290":1,"2525":2,"2533":2,"2581":1,"2691":1,"2781":5,"2787":3,"2871":5,"2878":5}}],["flesh",{"2":{"2906":1}}],["flexible",{"0":{"1777":1},"2":{"538":1,"1200":1,"1205":1,"2695":2,"2704":1}}],["flexibility",{"2":{"6":1,"153":1,"555":1,"685":1,"1837":1,"2260":1,"2329":1,"2912":1,"2924":1}}],["flehrad",{"0":{"43":2},"2":{"43":6,"266":1}}],["frr",{"2":{"2301":1}}],["friction",{"2":{"1939":2,"1985":1}}],["friendly",{"0":{"1777":1},"2":{"436":1,"489":1,"1298":1,"2293":1,"2478":1}}],["friend",{"0":{"2375":1},"2":{"398":1,"2374":3,"2375":4}}],["friends",{"2":{"226":1,"236":1,"2481":1}}],["frustrates",{"2":{"2566":1}}],["frustrating",{"2":{"2317":1}}],["frustration",{"2":{"173":1}}],["fruit",{"2":{"1376":1}}],["frood",{"2":{"2706":1}}],["front",{"2":{"1471":1,"2673":1}}],["frontend",{"0":{"579":1},"2":{"579":1,"746":1}}],["fronzlebop",{"2":{"615":2}}],["frob",{"2":{"541":1}}],["from=",{"2":{"176":1}}],["from",{"0":{"5":1,"24":1,"166":1,"500":1,"711":1,"1381":1,"1905":1,"2058":1,"2165":1,"2616":1},"2":{"3":1,"6":2,"12":1,"15":1,"31":2,"34":1,"49":3,"50":1,"62":1,"63":1,"69":1,"70":1,"73":2,"74":1,"75":2,"76":1,"88":3,"90":1,"92":1,"94":1,"104":3,"113":2,"114":8,"116":1,"119":1,"127":3,"128":1,"132":2,"133":1,"134":10,"149":5,"163":1,"170":2,"172":1,"173":2,"174":1,"176":8,"191":9,"199":13,"201":1,"206":1,"211":8,"222":7,"224":1,"228":3,"230":1,"236":4,"240":1,"249":9,"263":1,"266":19,"272":1,"273":1,"275":1,"276":1,"277":5,"284":2,"285":1,"294":1,"307":1,"308":5,"312":1,"323":2,"333":2,"339":2,"366":1,"367":1,"370":1,"385":1,"386":1,"389":1,"390":1,"391":1,"393":1,"407":1,"408":1,"409":1,"413":1,"429":3,"434":2,"438":1,"439":1,"447":2,"453":2,"463":1,"469":1,"473":1,"489":3,"496":2,"500":2,"511":1,"512":1,"513":1,"516":3,"517":4,"525":1,"555":1,"561":3,"563":1,"570":3,"578":1,"581":1,"585":1,"588":2,"592":1,"600":1,"615":1,"617":1,"619":2,"628":1,"647":1,"656":1,"665":1,"669":2,"672":1,"675":1,"677":1,"693":2,"694":4,"699":1,"708":1,"710":1,"712":2,"720":1,"722":2,"727":1,"732":1,"753":1,"754":2,"770":1,"772":1,"773":1,"775":1,"776":1,"778":1,"779":1,"782":1,"785":1,"787":1,"788":2,"790":1,"791":2,"793":1,"794":1,"834":1,"861":1,"866":1,"896":1,"926":1,"931":1,"960":1,"965":1,"994":1,"999":1,"1028":1,"1033":1,"1062":1,"1067":1,"1096":1,"1101":1,"1130":1,"1135":1,"1164":1,"1169":1,"1222":1,"1257":1,"1258":1,"1260":1,"1262":1,"1276":1,"1278":1,"1292":1,"1293":1,"1294":1,"1300":1,"1312":1,"1313":1,"1316":1,"1324":1,"1325":1,"1327":1,"1343":3,"1348":2,"1357":1,"1359":1,"1364":1,"1382":1,"1383":1,"1384":1,"1389":1,"1407":1,"1417":1,"1418":1,"1422":2,"1425":3,"1427":1,"1428":1,"1464":1,"1466":1,"1481":1,"1484":1,"1487":1,"1493":1,"1497":1,"1503":1,"1525":1,"1528":1,"1533":2,"1541":1,"1546":1,"1558":1,"1567":1,"1569":1,"1594":1,"1605":1,"1610":1,"1612":1,"1617":1,"1619":4,"1620":7,"1660":2,"1661":1,"1662":1,"1685":1,"1686":1,"1712":1,"1717":1,"1720":1,"1721":1,"1722":1,"1727":1,"1735":1,"1737":1,"1738":1,"1741":1,"1742":2,"1749":1,"1752":1,"1754":1,"1766":1,"1784":2,"1785":1,"1786":2,"1787":1,"1802":1,"1840":2,"1841":1,"1846":1,"1849":4,"1850":1,"1865":1,"1866":1,"1867":1,"1884":1,"1890":1,"1892":1,"1894":1,"1905":1,"1923":2,"1936":2,"1937":1,"1939":1,"1947":2,"1948":1,"1949":2,"1953":1,"1962":1,"1963":1,"1964":1,"1968":1,"1974":1,"1980":1,"1983":4,"1985":2,"1986":1,"1988":2,"1990":5,"1999":1,"2003":1,"2012":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2037":1,"2046":1,"2059":1,"2061":1,"2065":1,"2069":1,"2079":1,"2082":1,"2085":4,"2086":1,"2088":1,"2107":1,"2108":1,"2109":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2160":3,"2162":3,"2165":1,"2184":1,"2185":1,"2191":2,"2199":2,"2206":1,"2208":1,"2214":1,"2239":1,"2241":1,"2243":1,"2245":1,"2246":1,"2252":1,"2259":1,"2260":1,"2264":1,"2265":1,"2275":2,"2277":2,"2278":1,"2280":2,"2286":2,"2287":1,"2288":1,"2294":1,"2298":1,"2303":1,"2310":1,"2315":2,"2319":1,"2320":1,"2324":1,"2331":2,"2367":1,"2384":1,"2391":1,"2394":1,"2397":1,"2400":1,"2402":1,"2404":1,"2407":1,"2410":1,"2416":1,"2417":2,"2418":1,"2423":5,"2427":1,"2428":3,"2429":1,"2430":1,"2431":1,"2432":2,"2434":1,"2447":1,"2450":1,"2464":1,"2466":5,"2467":1,"2470":1,"2490":1,"2499":1,"2501":1,"2502":1,"2503":2,"2506":1,"2508":2,"2559":1,"2562":1,"2564":2,"2566":1,"2567":2,"2569":2,"2570":4,"2571":1,"2583":1,"2584":1,"2585":1,"2589":1,"2598":1,"2599":1,"2601":1,"2613":2,"2615":2,"2622":1,"2628":1,"2634":3,"2637":1,"2638":1,"2639":2,"2640":1,"2643":1,"2646":1,"2657":1,"2658":1,"2663":2,"2667":1,"2672":1,"2676":1,"2678":1,"2680":1,"2681":1,"2683":1,"2690":1,"2694":1,"2701":1,"2702":1,"2705":1,"2706":1,"2719":1,"2720":1,"2721":1,"2726":1,"2734":1,"2744":2,"2746":5,"2748":2,"2760":2,"2763":12,"2764":5,"2769":2,"2774":1,"2794":4,"2795":4,"2797":1,"2819":1,"2832":1,"2845":1,"2855":1,"2857":2,"2869":1,"2870":1,"2871":3,"2877":2,"2878":3,"2880":2,"2882":1,"2886":1,"2889":2,"2902":2,"2904":1,"2907":1,"2910":3,"2912":2,"2925":1,"2926":1,"2933":1,"2934":1,"2937":2,"2938":2,"2939":3,"2944":2,"2947":1}}],["fr",{"2":{"211":1,"2301":3,"2887":4}}],["frl",{"2":{"211":2}}],["français",{"2":{"2804":1}}],["franky36",{"2":{"317":1}}],["fraction",{"2":{"1986":1}}],["fractal",{"2":{"134":2,"176":1,"222":1,"277":1,"339":1,"2085":4,"2894":1}}],["fram",{"2":{"749":1,"750":1}}],["frames",{"2":{"1939":1,"2762":1,"2777":2,"2780":1}}],["frame",{"0":{"2780":1,"2781":1,"2782":1,"2783":1,"2784":1},"2":{"1286":1,"1865":1,"1867":1,"1908":1,"1910":1,"1912":1,"1915":1,"1939":2,"1954":1,"2107":1,"2109":1,"2168":1,"2170":1,"2172":1,"2175":1,"2764":3,"2777":6,"2779":2,"2780":8,"2781":28,"2782":2,"2783":1,"2784":2,"2785":1,"2787":3,"2790":1,"2791":1}}],["frameworking",{"2":{"160":1}}],["framework",{"2":{"134":1,"365":1,"489":1,"1407":1,"2316":1,"2418":1,"2847":1,"2942":1}}],["framebuffer",{"2":{"93":1,"114":1,"236":1,"2085":1,"2763":3}}],["fragments",{"2":{"262":1}}],["fraanrosi",{"2":{"114":1}}],["fr4boards",{"2":{"67":1,"211":1}}],["fr4",{"2":{"67":1,"72":1}}],["freq",{"2":{"1493":5,"1685":1}}],["frequencies",{"2":{"1493":1}}],["frequency",{"0":{"859":1,"924":1,"958":1,"992":1,"1026":1,"1060":1,"1162":1,"2759":1},"2":{"11":1,"134":1,"160":1,"214":1,"222":2,"236":2,"285":1,"339":1,"570":1,"750":1,"759":1,"763":1,"857":3,"859":12,"921":3,"924":9,"956":3,"958":9,"990":3,"992":9,"1024":3,"1026":8,"1058":3,"1060":8,"1160":3,"1162":11,"1331":7,"1493":7,"1495":3,"1685":3,"1949":1,"1985":1,"2278":1,"2512":3,"2880":1,"2882":1}}],["frequent",{"2":{"1472":1,"1986":1}}],["frequently",{"0":{"1314":1,"1334":1},"1":{"1315":1,"1316":1,"1317":1,"1318":1,"1319":1,"1320":1,"1335":1,"1336":1,"1337":1,"1338":1,"1339":1,"1340":1,"1341":1,"1342":1,"1343":1},"2":{"370":1,"1852":1,"2091":1,"2259":1,"2317":2,"2448":1,"2744":1,"2871":1,"2878":1,"2901":1,"2912":1}}],["fresh",{"2":{"367":1,"675":1}}],["french",{"2":{"249":1,"2804":1,"2887":16}}],["freyr",{"2":{"143":2}}],["freeman",{"2":{"2941":1}}],["freebsd",{"2":{"2627":2}}],["freely",{"2":{"1343":1}}],["freezing",{"2":{"720":1}}],["freezes",{"2":{"719":1,"720":1}}],["freeze",{"2":{"719":1,"720":1}}],["freeform",{"2":{"665":1}}],["frees",{"2":{"575":1}}],["free",{"2":{"110":1,"123":1,"124":1,"384":1,"542":1,"1467":2,"1485":1,"1953":1,"2089":1,"2205":1,"2331":1,"2587":1,"2629":1,"2748":1,"2749":1,"2750":2,"2852":2,"2941":1}}],["freedoms",{"2":{"2727":1,"2742":1}}],["freed",{"2":{"45":1,"166":1,"188":1,"191":1}}],["female",{"2":{"2430":1}}],["fe1",{"2":{"2043":1}}],["feather",{"2":{"546":1,"713":1,"2375":2,"2499":1}}],["featuring",{"2":{"236":1}}],["featured",{"2":{"2571":1,"2673":1,"2745":1,"2889":1}}],["featuresobject",{"2":{"2854":1}}],["features",{"0":{"97":1,"117":1,"136":1,"151":1,"162":1,"178":1,"224":1,"238":1,"251":1,"268":1,"279":1,"287":1,"296":1,"319":1,"538":1,"562":1,"563":1,"681":1,"1471":1,"2046":1,"2689":1,"2758":1,"2944":1},"1":{"98":1,"99":1,"100":1,"118":1,"119":1,"120":1,"137":1,"138":1,"152":1,"153":1,"154":1,"163":1,"164":1,"179":1,"288":1,"289":1,"297":1,"298":1,"320":1},"2":{"3":1,"7":1,"15":1,"25":1,"49":1,"94":1,"111":13,"133":4,"134":5,"173":1,"175":1,"176":2,"191":1,"213":1,"236":2,"249":2,"266":12,"268":1,"333":1,"339":1,"398":1,"414":1,"433":3,"489":1,"538":2,"545":2,"562":1,"571":1,"574":1,"575":3,"592":1,"611":1,"615":1,"618":1,"633":1,"637":1,"640":1,"661":1,"665":1,"681":1,"1343":2,"1349":1,"1368":1,"1392":1,"1393":1,"1405":2,"1416":1,"1421":1,"1464":3,"1465":1,"1471":1,"1485":1,"1541":1,"1591":1,"1612":1,"1630":2,"1923":1,"1974":2,"2276":1,"2294":2,"2297":1,"2308":1,"2383":1,"2384":1,"2391":1,"2415":2,"2435":1,"2455":5,"2459":2,"2460":1,"2479":2,"2558":1,"2569":1,"2586":2,"2680":1,"2695":1,"2714":1,"2722":1,"2746":4,"2747":1,"2751":1,"2758":1,"2765":1,"2817":1,"2825":1,"2836":1,"2854":1,"2889":2,"2890":1,"2901":1,"2902":1,"2903":5,"2904":1,"2907":2,"2908":2,"2910":1,"2943":1,"2945":1}}],["feature",{"0":{"28":1,"574":1,"2900":1},"1":{"2901":1,"2902":1,"2903":1,"2904":1},"2":{"3":1,"15":1,"28":1,"32":1,"46":1,"49":3,"63":1,"70":13,"74":1,"75":1,"87":1,"93":1,"99":3,"103":1,"114":3,"118":1,"126":1,"133":2,"134":5,"149":1,"152":1,"160":3,"172":1,"176":4,"179":2,"186":1,"189":1,"190":2,"191":7,"195":1,"196":1,"199":2,"211":1,"222":2,"224":1,"228":2,"236":1,"248":1,"249":2,"266":1,"285":3,"288":1,"304":1,"306":1,"308":2,"312":2,"315":1,"328":1,"333":1,"414":1,"416":1,"462":1,"512":1,"514":1,"541":1,"554":1,"562":1,"563":1,"574":2,"613":3,"615":1,"618":1,"619":7,"622":1,"668":1,"672":1,"673":1,"675":2,"681":8,"698":1,"714":1,"725":1,"742":1,"761":1,"801":1,"827":1,"856":1,"888":1,"891":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1192":1,"1215":1,"1246":1,"1267":1,"1284":1,"1322":1,"1354":3,"1355":1,"1356":1,"1360":1,"1388":1,"1390":1,"1392":1,"1393":1,"1394":1,"1395":1,"1397":1,"1398":1,"1403":1,"1412":1,"1415":1,"1463":1,"1464":1,"1465":1,"1471":2,"1473":1,"1480":1,"1481":1,"1484":2,"1485":2,"1489":1,"1492":1,"1493":1,"1495":2,"1503":1,"1521":1,"1524":1,"1525":1,"1530":3,"1541":1,"1546":1,"1554":1,"1577":1,"1589":1,"1592":2,"1595":1,"1602":2,"1606":4,"1621":4,"1623":1,"1626":1,"1630":1,"1645":2,"1664":2,"1671":1,"1738":1,"1768":1,"1777":1,"1786":1,"1844":1,"1853":1,"1930":1,"1935":1,"1940":1,"1944":1,"1952":1,"1953":2,"1956":1,"1964":1,"1985":2,"1999":1,"2001":3,"2002":1,"2003":1,"2007":1,"2011":3,"2013":2,"2048":2,"2054":2,"2080":1,"2092":1,"2188":1,"2209":1,"2210":1,"2212":1,"2219":1,"2221":1,"2249":1,"2258":1,"2268":1,"2276":8,"2283":1,"2284":1,"2289":1,"2308":2,"2309":1,"2317":1,"2325":1,"2328":1,"2378":1,"2379":1,"2413":1,"2418":2,"2435":1,"2442":1,"2460":1,"2502":1,"2512":2,"2513":1,"2514":3,"2552":1,"2558":1,"2568":1,"2569":1,"2571":1,"2602":1,"2603":1,"2700":1,"2704":1,"2716":1,"2744":1,"2746":4,"2765":1,"2808":1,"2825":1,"2829":1,"2832":1,"2843":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":2,"2861":2,"2862":1,"2863":2,"2865":1,"2867":1,"2870":1,"2871":1,"2873":2,"2875":2,"2877":1,"2878":1,"2879":2,"2880":2,"2881":2,"2890":1,"2891":2,"2901":1,"2902":3,"2910":1,"2912":3,"2919":1,"2920":1,"2921":1,"2928":1,"2944":2,"2945":1,"2949":2}}],["feat",{"2":{"222":2,"236":2}}],["fedora",{"2":{"191":1,"2593":1,"2626":1}}],["feker",{"2":{"176":1}}],["felix",{"2":{"143":2}}],["few",{"0":{"1767":1},"2":{"131":1,"189":1,"213":1,"222":1,"224":1,"238":1,"366":1,"368":1,"415":1,"540":1,"568":1,"615":1,"681":1,"696":1,"719":1,"753":1,"754":1,"1327":1,"1343":1,"1388":1,"1484":1,"1523":2,"1597":1,"1621":1,"1762":1,"1766":1,"2002":1,"2280":1,"2317":1,"2382":1,"2458":1,"2572":1,"2586":1,"2597":1,"2619":2,"2632":1,"2844":1,"2887":1,"2912":2,"2949":1}}],["fewer",{"2":{"24":1,"45":1,"123":1,"2291":1,"2425":1,"2828":1}}],["fees",{"2":{"2727":1}}],["feed",{"2":{"2795":1}}],["feeding",{"2":{"2429":1}}],["feedback",{"0":{"1677":1,"1678":1,"1683":1,"2328":1},"1":{"1678":1,"1679":1,"1680":1,"1681":1,"1682":1,"1683":1,"1684":2,"1685":2,"1686":1,"1687":1,"1688":1,"1689":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2330":1},"2":{"114":1,"160":1,"188":1,"191":1,"199":1,"228":1,"615":1,"1485":1,"1664":1,"1678":4,"1680":6,"1683":1,"1687":1,"1688":1,"1690":4,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2276":1,"2880":1}}],["feeling",{"2":{"1612":1}}],["feels",{"2":{"119":1}}],["feel",{"2":{"119":1,"320":1,"1427":1,"1485":1,"1968":1,"2089":1,"2091":1,"2205":1,"2331":1,"2586":1,"2910":1,"2912":1,"2930":1}}],["ferris",{"2":{"114":1,"249":1,"294":1}}],["fetch",{"2":{"51":1,"366":1,"411":1,"420":1,"421":1,"422":2,"1947":2,"2286":2,"2634":2,"2637":4,"2639":5}}],["february",{"0":{"66":1,"135":1,"192":1,"237":1,"286":1},"1":{"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1}}],["feb",{"0":{"9":1,"329":1,"1320":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"330":1,"331":1,"332":1,"333":1},"2":{"400":1,"413":7}}],["fumes",{"2":{"2429":1}}],["furthest",{"2":{"2423":1}}],["further",{"0":{"2075":1},"2":{"131":1,"134":1,"138":1,"191":1,"199":1,"203":1,"222":1,"306":1,"307":2,"315":1,"414":1,"433":1,"631":1,"696":1,"763":1,"1366":1,"1410":1,"1413":3,"1417":1,"1431":1,"1668":2,"1773":1,"1990":1,"2013":1,"2075":1,"2418":2,"2426":1,"2466":1,"2578":1,"2637":1,"2652":1,"2924":1,"2930":1,"2940":1,"2949":1}}],["fuzz",{"2":{"1686":1}}],["fuses",{"0":{"2503":1},"2":{"2497":1,"2502":1,"2503":2}}],["fuse",{"2":{"1383":1,"2496":1,"2503":5}}],["fulfilling",{"2":{"2435":1}}],["fulfill",{"2":{"1364":1}}],["fullremap",{"2":{"1213":2}}],["fullsize",{"2":{"191":1,"211":1,"236":1,"2423":2}}],["full",{"0":{"103":1,"104":1,"114":1,"126":1,"127":1,"134":1,"149":1,"160":1,"176":1,"191":1,"199":1,"211":1,"222":1,"236":1,"249":1,"266":1,"277":1,"285":1,"294":1,"308":1,"317":1,"328":1,"333":1,"339":1,"625":1,"1199":1,"2947":1},"1":{"104":1,"127":1,"1200":1,"1201":1},"2":{"87":3,"88":2,"93":1,"103":2,"104":2,"107":2,"114":2,"124":1,"126":2,"127":2,"131":1,"134":1,"149":1,"172":1,"173":1,"176":1,"182":1,"189":1,"202":1,"211":1,"234":1,"236":1,"241":2,"245":1,"285":1,"288":1,"298":1,"378":1,"396":1,"431":1,"476":1,"513":1,"625":1,"665":1,"711":1,"1192":1,"1193":1,"1196":1,"1199":2,"1200":1,"1201":3,"1205":1,"1207":1,"1364":1,"1485":1,"1534":1,"1544":1,"1592":1,"1603":1,"1615":1,"1618":1,"1713":1,"1769":1,"1783":1,"1817":1,"1849":4,"1939":1,"2085":15,"2194":1,"2219":1,"2301":1,"2417":1,"2435":1,"2473":1,"2568":1,"2569":2,"2583":1,"2586":1,"2629":1,"2673":1,"2683":1,"2704":2,"2746":3,"2762":3,"2906":1,"2947":1}}],["fully",{"0":{"263":1},"2":{"23":1,"266":1,"1205":1,"1288":1,"1367":1,"2086":1,"2317":1,"2434":1,"2569":1,"2571":1,"2704":1,"2889":1}}],["funky",{"2":{"1473":1}}],["fundamentals",{"2":{"2422":1}}],["fundamentally",{"2":{"1410":1}}],["fundamental",{"2":{"626":1,"2728":1,"2733":1}}],["func",{"2":{"94":1,"533":2}}],["function96",{"2":{"86":4}}],["functionally",{"2":{"1643":1,"2568":1,"2926":1}}],["functionalities",{"2":{"1616":1}}],["functionality",{"0":{"46":1,"209":1,"1494":1},"2":{"3":1,"7":1,"15":1,"24":1,"30":1,"33":1,"87":1,"93":2,"98":1,"99":2,"114":2,"123":1,"124":1,"126":1,"128":1,"133":1,"134":1,"152":1,"154":1,"164":1,"191":2,"206":1,"209":2,"266":2,"293":1,"305":1,"307":1,"312":2,"314":1,"327":1,"344":3,"380":1,"403":1,"412":4,"564":1,"574":1,"575":2,"589":1,"626":1,"630":1,"645":1,"655":1,"656":2,"721":1,"763":1,"1417":2,"1422":1,"1446":2,"1451":2,"1470":2,"1471":1,"1485":1,"1510":1,"1534":1,"1592":1,"1605":1,"1622":1,"1623":1,"1629":1,"1640":1,"1664":1,"1667":1,"1777":1,"1796":1,"1798":1,"1956":1,"1964":1,"1985":1,"1995":1,"2182":1,"2258":2,"2277":1,"2310":1,"2319":2,"2320":1,"2432":1,"2456":1,"2459":1,"2460":2,"2461":1,"2503":1,"2509":1,"2552":1,"2603":1,"2669":1,"2686":1,"2687":1,"2728":1,"2731":1,"2746":3,"2747":2,"2765":1,"2767":1,"2774":1,"2795":1,"2889":1,"2892":1,"2901":1,"2902":2,"2934":1,"2935":1,"2940":1}}],["functional",{"2":{"28":1,"222":1,"276":1,"284":1,"405":1,"406":1,"407":1,"412":2,"711":1,"757":1,"1463":1,"2569":1,"2728":1,"2733":1,"2734":1}}],["function",{"0":{"140":1,"524":1,"540":1,"632":1,"636":1,"638":1,"639":1,"642":1,"645":1,"650":1,"654":1,"1432":1,"1837":1,"2006":1,"2317":1,"2564":1,"2578":1,"2579":1},"1":{"1838":1,"1839":1},"2":{"22":2,"27":1,"34":1,"46":3,"49":2,"74":1,"90":3,"92":1,"93":2,"114":1,"125":1,"132":1,"133":1,"134":3,"149":4,"158":1,"160":1,"170":1,"176":5,"191":1,"194":1,"195":2,"199":2,"203":1,"222":2,"229":1,"230":2,"236":1,"249":2,"266":1,"273":1,"285":1,"306":1,"308":3,"312":1,"315":1,"328":3,"339":1,"340":1,"398":1,"433":2,"489":3,"492":1,"516":1,"519":3,"521":2,"522":1,"523":2,"524":2,"532":1,"540":5,"564":2,"627":1,"630":1,"633":2,"639":2,"645":2,"646":2,"647":1,"651":4,"656":2,"657":1,"672":2,"673":2,"691":2,"693":1,"694":3,"701":1,"702":1,"721":4,"723":1,"733":1,"735":1,"764":2,"768":4,"772":1,"793":1,"799":1,"809":1,"812":1,"816":1,"820":1,"822":1,"835":1,"839":1,"843":1,"847":1,"849":1,"867":1,"871":1,"875":1,"879":1,"881":1,"897":1,"903":1,"907":1,"911":1,"913":1,"932":1,"938":1,"942":1,"946":1,"948":1,"966":1,"972":1,"976":1,"980":1,"982":1,"1000":1,"1006":1,"1010":1,"1014":1,"1016":1,"1034":1,"1040":1,"1044":1,"1048":1,"1050":1,"1068":1,"1074":1,"1078":1,"1082":1,"1084":1,"1102":1,"1108":1,"1112":1,"1116":1,"1118":1,"1136":1,"1142":1,"1146":1,"1150":1,"1152":1,"1170":1,"1176":1,"1180":1,"1184":1,"1186":1,"1194":1,"1197":1,"1198":1,"1200":1,"1201":1,"1211":1,"1212":1,"1213":3,"1223":1,"1229":1,"1233":1,"1237":1,"1239":1,"1248":3,"1250":1,"1269":4,"1271":1,"1276":1,"1281":1,"1299":2,"1303":1,"1305":1,"1306":1,"1333":2,"1416":1,"1417":4,"1418":1,"1421":1,"1422":1,"1423":1,"1428":3,"1438":1,"1446":2,"1447":2,"1451":1,"1454":1,"1455":1,"1470":3,"1471":1,"1483":1,"1503":1,"1510":1,"1518":1,"1521":2,"1532":4,"1533":1,"1535":1,"1536":1,"1538":1,"1556":1,"1591":2,"1599":1,"1605":1,"1612":1,"1613":1,"1617":2,"1620":3,"1621":1,"1622":3,"1625":1,"1663":1,"1668":4,"1704":1,"1706":1,"1707":1,"1708":1,"1717":1,"1721":1,"1730":1,"1732":1,"1734":1,"1736":1,"1765":1,"1781":3,"1793":1,"1795":1,"1835":1,"1837":1,"1838":1,"1839":1,"1840":1,"1841":1,"1851":1,"1855":2,"1865":1,"1867":1,"1947":2,"1954":2,"1958":2,"1986":1,"1988":3,"1989":2,"1990":2,"1992":1,"1994":3,"1999":1,"2008":1,"2009":1,"2011":1,"2014":5,"2015":2,"2037":1,"2053":1,"2057":1,"2058":1,"2069":1,"2076":1,"2078":1,"2090":1,"2091":1,"2094":2,"2097":1,"2107":1,"2109":1,"2195":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2207":1,"2214":1,"2218":1,"2228":1,"2232":1,"2234":1,"2254":1,"2255":1,"2273":1,"2277":2,"2286":2,"2290":4,"2300":3,"2301":1,"2306":1,"2309":5,"2310":3,"2317":3,"2318":1,"2319":3,"2320":2,"2323":1,"2330":1,"2344":1,"2345":1,"2346":1,"2380":1,"2381":1,"2457":1,"2461":2,"2513":2,"2558":1,"2561":2,"2562":1,"2563":1,"2564":1,"2576":1,"2578":1,"2579":5,"2580":3,"2603":1,"2651":1,"2685":7,"2686":5,"2687":4,"2695":1,"2733":1,"2752":1,"2756":1,"2757":1,"2763":10,"2764":18,"2767":3,"2769":2,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2893":1,"2910":1,"2912":4,"2919":1,"2920":1,"2921":6,"2926":2,"2928":2,"2932":1,"2934":4,"2936":2,"2940":2,"2948":1}}],["functions",{"0":{"22":1,"243":1,"692":1,"1210":1,"1428":1,"1451":1,"1470":1,"1531":1,"1581":1,"1599":1,"1793":1,"1988":1,"1989":1,"2008":1,"2009":1,"2078":1,"2194":1,"2195":1,"2196":1,"2202":1,"2203":1,"2218":1,"2254":1,"2306":1,"2323":1,"2380":1,"2695":1,"2765":1,"2931":1,"2932":1},"1":{"693":1,"694":1,"1211":1,"1212":1,"1213":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1532":1,"1533":1,"1534":1,"1535":1,"1536":1,"1582":1,"1583":1,"2195":1,"2196":1,"2197":2,"2198":2,"2199":2,"2200":2,"2201":2,"2202":2,"2203":2,"2204":2,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1},"2":{"16":1,"22":1,"31":1,"49":3,"50":1,"62":1,"93":2,"114":2,"125":1,"134":2,"149":2,"160":1,"176":1,"185":1,"190":1,"191":3,"199":4,"203":2,"211":4,"236":2,"240":1,"243":1,"249":2,"266":1,"273":1,"285":2,"294":1,"308":1,"323":2,"331":1,"433":1,"505":1,"514":1,"529":1,"534":1,"540":4,"544":1,"592":1,"624":2,"625":1,"627":3,"630":3,"633":1,"639":2,"643":1,"646":1,"647":2,"648":2,"690":1,"716":1,"721":1,"760":1,"768":1,"798":1,"799":2,"1198":1,"1200":2,"1201":1,"1245":1,"1250":1,"1266":1,"1271":1,"1327":1,"1364":3,"1365":1,"1417":1,"1422":1,"1427":1,"1428":9,"1431":1,"1451":2,"1457":1,"1464":2,"1470":3,"1472":2,"1484":1,"1487":1,"1498":1,"1510":1,"1517":1,"1532":1,"1536":1,"1599":1,"1612":1,"1621":1,"1634":1,"1638":1,"1641":2,"1668":1,"1704":1,"1765":1,"1782":1,"1791":1,"1793":1,"1835":1,"1837":1,"1855":1,"1938":1,"1954":1,"1957":1,"1984":2,"1989":1,"1990":1,"2002":1,"2007":1,"2008":3,"2009":1,"2011":1,"2015":1,"2046":1,"2075":1,"2089":2,"2094":1,"2181":2,"2194":2,"2198":1,"2205":2,"2222":1,"2290":1,"2300":1,"2306":1,"2309":2,"2310":2,"2317":1,"2318":4,"2319":3,"2418":1,"2456":1,"2457":1,"2461":1,"2575":1,"2602":1,"2652":1,"2695":1,"2744":1,"2746":3,"2751":1,"2763":1,"2764":5,"2765":2,"2766":1,"2769":1,"2889":5,"2907":1,"2911":1,"2919":1,"2931":1,"2932":2,"2935":1,"2939":1,"2940":2}}],["fudge",{"2":{"249":1}}],["future",{"0":{"600":1,"2255":1},"1":{"2256":1,"2257":1,"2258":1,"2259":1,"2260":1},"2":{"6":1,"10":1,"110":1,"142":1,"156":1,"160":1,"182":1,"194":1,"198":1,"213":1,"262":2,"303":1,"307":1,"332":1,"340":1,"414":1,"539":1,"597":1,"600":1,"658":1,"659":1,"1266":1,"1407":1,"1410":1,"2462":1,"2569":1,"2570":1,"2571":1,"2746":1,"2747":1,"2748":1,"2902":1}}],["fn+f",{"2":{"1361":1}}],["fno",{"2":{"317":1}}],["fnv",{"2":{"176":1}}],["fn",{"0":{"3":1,"7":1,"15":1,"1356":1},"2":{"3":2,"7":4,"15":2,"16":1,"31":1,"38":1,"49":1,"114":2,"134":1,"591":2,"1347":2,"1356":2,"1470":1,"1766":2,"1779":6,"1945":3,"2190":1,"2284":3,"2296":1,"2301":1,"2309":14,"2310":10,"2314":1,"2315":2,"2316":1,"2317":1,"2318":2,"2319":1,"2563":1}}],["fischl",{"2":{"2492":1}}],["fish",{"2":{"507":1}}],["fifth",{"2":{"1833":1,"2303":1,"2309":1}}],["fifo",{"2":{"191":1}}],["five",{"0":{"1832":1},"1":{"1833":1,"1834":1},"2":{"1796":1,"2296":1,"2300":1,"2309":1,"2650":1,"2759":1,"2794":1,"2879":1}}],["figuring",{"2":{"1320":1}}],["figure",{"2":{"429":1,"729":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1410":1,"1538":2,"2317":1,"2585":1,"2617":1}}],["fiddle",{"2":{"2309":1}}],["fiddling",{"2":{"397":1}}],["fidelity",{"2":{"285":1}}],["fiuxup",{"2":{"249":1}}],["filthier",{"2":{"1528":1}}],["filterpaper",{"2":{"1540":1}}],["filter=ez",{"2":{"1312":1,"1313":1}}],["filtered",{"2":{"433":1}}],["filtering",{"0":{"2074":1},"2":{"433":1,"564":1,"1316":1,"2053":1,"2057":1,"2059":1,"2379":2,"2924":1,"2944":1}}],["filters",{"2":{"236":1,"433":1}}],["filter",{"2":{"199":1,"433":7,"443":1,"1316":1,"1409":1,"1527":2,"2455":1,"2911":2,"2919":1}}],["fills",{"2":{"2298":1,"2572":1}}],["filled",{"2":{"2085":1,"2764":9}}],["fill",{"2":{"429":1,"430":1,"437":1,"440":1,"442":1,"445":1,"605":1,"1492":1,"2059":1,"2298":1,"2720":1,"2764":3}}],["filen",{"2":{"459":1}}],["filenames",{"2":{"459":1,"519":1,"2744":1}}],["filename>",{"2":{"354":1,"463":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2502":1}}],["filename",{"2":{"317":1,"438":1,"439":2,"447":1,"448":1,"449":1,"450":1,"500":2,"519":1,"1376":1,"1633":1,"2502":1,"2508":1,"2614":1}}],["file2",{"2":{"459":1,"2640":1}}],["file1",{"2":{"459":1,"2640":1}}],["file>",{"2":{"436":1}}],["fileformat",{"2":{"199":1}}],["filegen",{"2":{"149":1}}],["file",{"0":{"499":1,"560":1,"571":1,"601":1,"604":1,"2416":1,"2614":1,"2795":1},"1":{"561":1,"562":1,"563":1,"564":1,"565":1,"566":1,"567":1,"568":1,"569":1,"570":1,"572":1,"573":1,"574":1,"575":1},"2":{"5":2,"16":1,"25":1,"65":2,"70":1,"73":1,"87":1,"114":2,"120":1,"132":2,"149":2,"164":1,"176":3,"189":1,"191":2,"211":4,"236":2,"249":1,"262":2,"266":1,"293":1,"305":1,"314":1,"328":1,"333":1,"348":1,"353":2,"367":1,"371":1,"376":1,"377":1,"393":1,"394":1,"403":1,"409":1,"412":1,"429":1,"433":1,"436":1,"452":2,"453":2,"458":1,"462":2,"463":3,"466":1,"467":1,"468":1,"489":1,"496":1,"500":3,"509":1,"511":2,"512":4,"513":2,"555":1,"560":2,"571":1,"588":2,"589":1,"592":1,"593":1,"600":4,"604":2,"608":1,"613":1,"618":2,"619":3,"623":4,"624":1,"625":1,"660":1,"666":1,"672":1,"681":1,"710":1,"753":1,"1195":2,"1198":3,"1201":3,"1206":1,"1208":1,"1209":1,"1213":1,"1327":1,"1332":1,"1376":5,"1417":1,"1420":1,"1438":2,"1439":1,"1441":1,"1464":2,"1466":4,"1470":1,"1472":3,"1485":3,"1492":2,"1502":2,"1527":6,"1589":1,"1590":2,"1602":1,"1607":1,"1622":2,"1630":1,"1631":1,"1633":4,"1634":2,"1635":1,"1636":1,"1661":1,"1662":1,"1768":1,"1786":1,"1846":1,"1850":2,"1855":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1945":1,"1946":2,"1949":1,"1957":1,"1958":1,"1998":1,"2082":1,"2088":2,"2094":1,"2188":1,"2191":1,"2271":2,"2272":1,"2273":2,"2274":2,"2275":1,"2276":1,"2284":1,"2288":1,"2301":1,"2309":2,"2312":1,"2317":2,"2382":1,"2383":1,"2384":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":2,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2407":2,"2410":1,"2414":7,"2416":1,"2417":13,"2418":9,"2419":3,"2432":1,"2433":2,"2434":1,"2450":5,"2452":1,"2453":3,"2454":5,"2455":5,"2456":5,"2457":5,"2458":1,"2464":3,"2467":1,"2497":1,"2501":1,"2502":3,"2504":5,"2508":2,"2556":1,"2560":2,"2561":1,"2562":2,"2563":1,"2565":1,"2582":1,"2584":6,"2585":3,"2587":2,"2598":2,"2599":7,"2601":2,"2602":3,"2608":1,"2611":1,"2614":5,"2629":2,"2634":13,"2638":1,"2640":1,"2652":1,"2662":1,"2676":1,"2678":3,"2681":2,"2683":7,"2700":1,"2702":2,"2703":1,"2705":1,"2709":1,"2711":1,"2716":2,"2744":1,"2746":4,"2758":1,"2762":10,"2764":2,"2771":1,"2777":2,"2779":6,"2780":3,"2785":1,"2787":6,"2791":1,"2794":4,"2795":2,"2796":3,"2797":1,"2800":2,"2851":2,"2937":1,"2943":1,"2944":6,"2948":1,"2949":1}}],["files>",{"2":{"2634":1}}],["filesystem",{"2":{"2626":1}}],["files",{"0":{"5":1,"1929":1,"2458":1,"2597":1,"2600":1,"2887":1},"2":{"1":1,"32":1,"50":4,"69":1,"73":2,"75":1,"86":1,"92":1,"113":1,"114":5,"118":1,"132":1,"133":1,"134":3,"160":2,"176":2,"191":3,"199":7,"201":2,"211":3,"213":2,"220":1,"224":2,"234":2,"236":4,"238":1,"249":3,"262":1,"266":1,"277":1,"285":2,"294":3,"308":3,"317":1,"333":1,"339":1,"344":3,"403":1,"429":1,"430":1,"433":1,"439":1,"446":1,"455":2,"458":1,"459":5,"469":1,"507":1,"512":1,"513":1,"544":2,"555":3,"558":1,"560":1,"568":1,"572":4,"574":1,"579":1,"580":1,"581":2,"589":1,"604":1,"613":2,"665":2,"668":2,"669":1,"672":1,"673":2,"1203":1,"1204":1,"1376":1,"1464":3,"1466":1,"1470":1,"1471":1,"1472":3,"1532":1,"1632":1,"1633":1,"1634":1,"1661":1,"1850":1,"2088":1,"2273":3,"2415":2,"2416":1,"2417":4,"2418":2,"2451":1,"2454":1,"2455":2,"2458":2,"2464":1,"2497":1,"2499":1,"2501":1,"2504":1,"2561":1,"2587":1,"2589":2,"2590":1,"2591":2,"2592":1,"2595":1,"2597":1,"2598":1,"2599":1,"2600":1,"2601":1,"2602":2,"2607":1,"2609":1,"2610":1,"2619":2,"2633":1,"2634":2,"2637":1,"2640":4,"2662":1,"2678":1,"2679":1,"2685":1,"2686":1,"2687":1,"2694":1,"2709":1,"2714":2,"2727":1,"2744":5,"2745":1,"2746":7,"2760":2,"2795":1,"2827":1,"2851":5,"2884":1,"2885":1,"2944":4}}],["finnish",{"2":{"2887":3}}],["finger",{"2":{"1413":1,"1971":3,"1977":1,"2070":3,"2300":1,"2301":1}}],["fingers",{"2":{"1413":1,"1497":1,"1971":1}}],["fingerprintusbhost",{"2":{"1963":1}}],["fingerprint",{"2":{"199":1,"1962":1}}],["finite",{"2":{"575":1}}],["finishing",{"0":{"2435":1},"2":{"564":1}}],["finishes",{"2":{"393":1,"2309":2,"2310":1,"2934":1}}],["finished",{"0":{"378":1,"584":1},"2":{"324":1,"374":1,"377":1,"378":1,"581":1,"702":1,"735":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1229":1,"1233":1,"1237":1,"1239":1,"1306":1,"1850":2,"2057":1,"2088":2,"2309":2,"2310":5,"2315":2,"2316":2,"2317":3,"2318":3,"2319":4,"2508":1}}],["finish",{"0":{"2345":1,"2369":1},"2":{"393":1,"1661":2,"1663":1,"1801":1,"1811":1,"2518":1,"2662":1}}],["finalize",{"2":{"2410":1}}],["final",{"0":{"2895":1},"2":{"555":1,"558":1,"581":1,"673":1,"1362":4,"1538":1,"2309":1,"2428":1,"2683":1,"2854":1,"2889":1,"2940":1}}],["finally",{"2":{"163":1,"392":1,"710":1,"1409":1,"1446":1,"2059":1,"2259":1,"2310":1,"2319":1,"2329":1,"2506":1,"2691":1,"2719":1}}],["finer",{"2":{"2252":1,"2510":1}}],["fine40",{"2":{"211":1}}],["fine",{"0":{"2047":1},"2":{"176":1,"1338":1,"1492":1,"1517":1,"1787":1,"1791":1,"2048":1,"2076":1,"2077":1,"2265":1,"2298":1,"2587":1,"2629":1,"2659":1,"2676":1,"2746":2,"2749":1,"2921":1,"2931":1}}],["finder",{"2":{"2400":1,"2402":1,"2404":1,"2614":2}}],["finds",{"2":{"1332":1,"1333":1}}],["finding",{"2":{"616":1}}],["find",{"0":{"433":1,"2850":1},"2":{"31":4,"34":1,"124":1,"211":1,"233":1,"236":2,"240":1,"245":1,"248":1,"249":1,"285":1,"393":1,"397":1,"398":1,"414":3,"418":1,"429":1,"433":4,"489":1,"505":1,"513":1,"540":3,"611":1,"613":1,"616":1,"661":1,"675":1,"711":1,"712":1,"749":1,"1200":1,"1203":1,"1204":1,"1287":1,"1337":1,"1338":1,"1340":1,"1368":1,"1405":1,"1451":1,"1503":2,"1528":1,"1681":1,"1762":1,"1788":1,"2057":1,"2208":1,"2265":1,"2273":1,"2319":1,"2407":1,"2414":2,"2417":1,"2428":1,"2430":1,"2437":1,"2503":1,"2510":2,"2548":2,"2560":1,"2561":2,"2562":1,"2573":1,"2574":1,"2585":3,"2589":1,"2634":2,"2695":1,"2717":1,"2869":1,"2910":1,"2912":2,"2926":1,"2928":1,"2934":1,"2935":1,"2939":1,"2941":1,"2946":1}}],["fields",{"2":{"191":1,"308":1,"323":1,"1630":1,"1648":1,"2663":1,"2777":1,"2785":1}}],["field",{"2":{"149":1,"308":1,"339":1,"397":1,"412":5,"712":1,"1419":20,"1630":2,"1785":1,"2310":1,"2598":1,"2795":2,"2889":1,"2926":1}}],["fitler",{"2":{"1527":2,"1538":2}}],["fits",{"2":{"1492":1,"2329":1}}],["fitness",{"2":{"1467":1,"2750":1}}],["fit",{"2":{"124":2,"134":1,"414":1,"1423":1,"1662":1,"1954":2,"2290":2,"2714":1,"2888":2}}],["fitting",{"2":{"114":1}}],["firefox",{"2":{"2589":1}}],["fired",{"2":{"2418":1}}],["fire",{"2":{"1612":3,"1681":2,"2310":1}}],["firstly",{"2":{"2256":1,"2508":1}}],["first",{"0":{"2582":1,"2659":1},"1":{"2583":1,"2584":1,"2585":1,"2586":1,"2587":1,"2588":1},"2":{"46":1,"65":1,"90":2,"113":1,"114":1,"120":1,"130":1,"157":1,"213":1,"222":1,"288":1,"317":1,"346":1,"420":2,"423":1,"489":1,"512":1,"521":1,"524":1,"555":1,"560":1,"564":1,"565":1,"609":1,"615":1,"616":2,"618":1,"619":2,"629":1,"647":1,"656":1,"657":1,"665":1,"699":2,"701":1,"711":1,"716":1,"726":1,"729":1,"733":1,"754":2,"755":1,"805":1,"809":1,"831":1,"835":1,"863":1,"867":1,"893":1,"897":1,"928":1,"932":1,"962":1,"966":1,"996":1,"1000":1,"1030":1,"1034":1,"1064":1,"1068":1,"1098":1,"1102":1,"1132":1,"1136":1,"1166":1,"1170":1,"1219":1,"1223":1,"1252":1,"1285":1,"1297":1,"1298":1,"1305":1,"1337":1,"1344":1,"1348":1,"1367":2,"1377":1,"1427":1,"1446":2,"1472":1,"1510":1,"1538":3,"1539":1,"1605":1,"1612":1,"1614":1,"1615":1,"1616":1,"1622":1,"1627":1,"1661":1,"1668":2,"1702":2,"1720":1,"1722":1,"1763":1,"1786":2,"1824":1,"1827":1,"1830":1,"1833":1,"1846":1,"1913":1,"1916":1,"1919":1,"1939":1,"1944":1,"1952":1,"1967":1,"1974":1,"1983":1,"1986":1,"2057":1,"2059":2,"2076":1,"2082":1,"2085":1,"2173":1,"2176":1,"2210":1,"2269":1,"2272":1,"2273":1,"2278":1,"2284":1,"2295":1,"2309":4,"2310":3,"2319":1,"2330":2,"2416":1,"2425":1,"2428":1,"2436":1,"2460":1,"2464":2,"2484":1,"2488":1,"2573":1,"2603":1,"2612":1,"2630":1,"2633":1,"2634":3,"2635":1,"2640":1,"2650":1,"2665":1,"2678":1,"2683":1,"2718":1,"2745":2,"2746":1,"2762":2,"2764":1,"2767":1,"2781":8,"2794":1,"2796":1,"2804":1,"2837":1,"2838":1,"2855":2,"2869":1,"2883":1,"2889":1,"2905":1,"2919":1,"2921":1,"2926":2,"2934":1,"2938":1}}],["firmwares",{"2":{"164":1,"173":1,"263":1,"430":1,"2589":1}}],["firmware",{"0":{"31":1,"34":1,"56":1,"164":1,"273":1,"276":1,"284":1,"601":1,"1337":1,"2268":1,"2432":1,"2433":1,"2434":1,"2470":1,"2473":1,"2476":1,"2477":1,"2497":1,"2504":1,"2582":1,"2587":1,"2588":1,"2815":1,"2854":1},"1":{"2269":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2275":1,"2276":1,"2277":1,"2278":1,"2477":1,"2478":1,"2479":1,"2480":1,"2481":1,"2498":1,"2499":1,"2500":1,"2501":1,"2583":1,"2584":1,"2585":1,"2586":1,"2587":1,"2588":1},"2":{"2":1,"3":1,"10":1,"15":1,"21":1,"24":1,"28":2,"30":2,"33":2,"36":1,"37":1,"43":1,"49":1,"70":3,"73":1,"107":1,"112":1,"114":3,"116":1,"124":1,"130":2,"131":1,"132":1,"145":1,"149":4,"164":1,"166":1,"201":1,"213":1,"215":1,"222":2,"224":2,"228":3,"236":1,"238":1,"240":1,"243":1,"249":4,"265":2,"266":2,"268":1,"273":5,"275":1,"276":3,"284":3,"320":1,"331":1,"340":1,"353":1,"354":1,"367":3,"371":1,"372":1,"373":1,"374":3,"375":1,"376":1,"378":5,"394":1,"403":2,"405":2,"406":2,"407":2,"408":1,"409":2,"411":2,"414":2,"422":4,"425":1,"429":8,"430":2,"432":1,"434":1,"441":1,"446":1,"447":2,"450":1,"452":2,"453":2,"456":1,"464":1,"489":1,"509":2,"510":1,"517":3,"565":1,"572":3,"574":2,"578":1,"580":2,"586":1,"588":3,"589":2,"592":2,"593":1,"594":1,"595":1,"598":1,"601":1,"602":1,"613":2,"615":1,"616":1,"617":1,"633":2,"651":4,"720":1,"754":1,"1298":1,"1311":1,"1313":1,"1316":1,"1320":1,"1335":1,"1348":1,"1376":2,"1377":1,"1388":1,"1395":1,"1421":1,"1463":1,"1472":2,"1500":1,"1521":1,"1522":1,"1524":1,"1591":1,"1627":2,"1702":1,"1849":1,"1851":1,"1948":1,"1957":2,"2001":1,"2068":1,"2085":2,"2090":1,"2181":1,"2184":1,"2189":1,"2261":2,"2270":1,"2271":1,"2272":2,"2273":2,"2275":1,"2281":1,"2297":2,"2308":1,"2309":1,"2325":1,"2374":2,"2375":2,"2379":1,"2385":2,"2387":3,"2392":1,"2394":4,"2399":2,"2401":2,"2403":2,"2404":1,"2405":1,"2407":3,"2410":4,"2414":1,"2417":2,"2418":1,"2423":2,"2431":2,"2432":7,"2434":1,"2435":1,"2450":2,"2451":1,"2459":1,"2466":5,"2467":1,"2468":1,"2469":1,"2470":3,"2473":1,"2475":1,"2477":1,"2482":1,"2484":1,"2488":1,"2496":1,"2500":1,"2501":1,"2504":6,"2506":1,"2558":1,"2559":2,"2566":2,"2567":10,"2568":9,"2569":4,"2570":3,"2571":1,"2572":1,"2573":3,"2582":2,"2583":1,"2584":1,"2585":1,"2587":3,"2588":2,"2589":1,"2590":1,"2591":1,"2599":4,"2601":3,"2603":7,"2604":1,"2607":1,"2608":1,"2609":2,"2610":1,"2611":1,"2612":2,"2613":1,"2614":6,"2615":1,"2616":2,"2617":1,"2618":1,"2628":1,"2629":5,"2630":1,"2632":1,"2637":10,"2639":6,"2643":1,"2655":1,"2659":1,"2662":1,"2664":1,"2672":1,"2673":1,"2674":1,"2676":1,"2678":1,"2680":1,"2681":1,"2682":1,"2683":6,"2684":1,"2685":1,"2686":1,"2705":1,"2714":1,"2725":2,"2726":1,"2727":1,"2731":2,"2734":1,"2739":2,"2741":1,"2742":1,"2746":5,"2749":1,"2753":1,"2754":1,"2760":1,"2762":6,"2763":12,"2764":2,"2794":2,"2807":1,"2827":1,"2851":3,"2852":1,"2854":1,"2888":1,"2889":2,"2892":2,"2893":1,"2895":1,"2901":1,"2902":4,"2904":1,"2912":1,"2919":1,"2920":1,"2930":1,"2933":1,"2936":2,"2940":1,"2947":1}}],["fixme",{"2":{"541":1}}],["fixmes",{"0":{"541":1},"2":{"541":2}}],["fixups",{"2":{"114":1}}],["fixup",{"2":{"65":1,"92":2,"114":6,"134":3,"149":3,"160":2,"176":9,"191":23,"199":9,"211":13,"222":3,"236":1,"249":7,"266":4,"277":4,"285":1,"308":1,"317":1,"328":4}}],["fixing",{"0":{"28":1},"2":{"50":1,"114":1,"199":1,"236":1,"616":1,"2748":2}}],["fixed",{"0":{"25":1},"2":{"25":1,"50":1,"73":1,"86":1,"114":1,"149":1,"160":1,"191":1,"199":1,"211":2,"236":1,"266":1,"308":1,"493":1,"629":1,"1384":1,"2473":1,"2628":1,"2651":1,"2733":1}}],["fixes",{"0":{"48":1,"62":1,"73":1,"92":1},"2":{"5":1,"73":2,"92":1,"114":3,"134":3,"149":8,"160":4,"176":7,"190":2,"191":7,"199":3,"211":2,"222":1,"236":2,"249":1,"266":2,"277":3,"285":2,"294":1,"308":2,"317":3,"328":1,"333":2,"405":1,"2667":1}}],["fix",{"0":{"11":1},"2":{"6":1,"28":1,"32":1,"50":1,"51":1,"62":1,"73":6,"74":1,"75":1,"77":1,"92":8,"94":2,"95":2,"114":68,"133":1,"134":42,"149":32,"160":12,"175":1,"176":40,"190":2,"191":47,"199":25,"211":25,"222":23,"236":17,"249":19,"266":10,"277":5,"285":4,"294":5,"308":10,"317":4,"328":7,"333":3,"339":6,"414":1,"435":3,"613":2,"619":2,"1318":1,"1339":2,"1348":1,"1490":1,"1595":1,"1961":1,"2454":1,"2474":1,"2554":2,"2576":2,"2616":1,"2628":2,"2632":1,"2651":1,"2727":1,"2739":1,"2744":1}}],["footprint",{"0":{"2186":1},"2":{"2668":1,"2689":1}}],["footnotes",{"2":{"341":1}}],["foo=none",{"2":{"533":1}}],["foo=",{"2":{"533":1}}],["foo",{"2":{"512":6,"516":1,"518":1,"533":2,"534":1,"535":2,"629":2,"631":2,"1417":1}}],["font",{"0":{"467":1,"468":1,"2785":1,"2787":1,"2790":1,"2791":1},"1":{"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1},"2":{"328":1,"467":1,"468":1,"1946":5,"1949":8,"2285":1,"2288":8,"2762":18,"2764":34,"2785":6,"2786":1,"2787":6,"2788":2,"2789":3,"2790":4,"2791":1}}],["fonts",{"2":{"153":2,"248":1,"249":1,"328":1,"1949":3,"2288":3,"2760":2,"2761":5,"2762":1,"2764":5}}],["fox",{"2":{"211":1}}],["focused",{"2":{"540":1,"2573":1}}],["focuses",{"2":{"340":1}}],["focusing",{"2":{"233":1}}],["focus",{"2":{"182":1,"213":1,"489":1,"1675":1,"1788":1,"2663":1,"2928":1}}],["foundational",{"2":{"2908":1}}],["foundation",{"2":{"1467":1,"2750":1}}],["found",{"0":{"1339":1},"2":{"124":2,"210":1,"288":1,"332":1,"337":1,"378":1,"386":1,"389":1,"397":1,"429":1,"435":1,"489":1,"505":1,"542":1,"543":1,"588":1,"611":1,"749":1,"750":1,"751":1,"797":1,"1350":1,"1363":1,"1427":1,"1485":1,"1525":1,"1532":1,"1539":1,"1738":1,"1948":1,"2057":1,"2059":1,"2287":1,"2291":1,"2293":1,"2294":1,"2374":1,"2395":1,"2412":3,"2415":2,"2418":1,"2426":1,"2435":1,"2473":1,"2508":1,"2549":1,"2575":1,"2583":1,"2603":1,"2605":1,"2628":1,"2629":1,"2672":1,"2694":1,"2710":1,"2762":1,"2764":1,"2835":1,"2906":1,"2934":1,"2949":1}}],["fourth",{"2":{"1493":1,"1830":1,"1833":1,"2300":1,"2309":1,"2315":2}}],["fourier",{"2":{"45":1}}],["four",{"0":{"1829":1},"1":{"1830":1,"1831":1},"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"143":2,"149":1,"512":1,"514":1,"588":1,"724":1,"826":1,"829":1,"855":1,"858":1,"887":1,"890":1,"919":1,"954":1,"988":1,"991":1,"1022":1,"1025":1,"1056":1,"1059":1,"1090":1,"1124":1,"1158":1,"1214":1,"1217":1,"1364":1,"1667":1,"1699":1,"2240":1,"2252":1,"2300":2,"2503":1,"2507":1,"2794":1,"2882":2}}],["folks",{"2":{"405":1,"406":1,"407":1,"408":1,"411":1}}],["foldkb",{"2":{"134":1}}],["folder2",{"2":{"1438":1}}],["folder1",{"2":{"1438":1}}],["folder>",{"2":{"1433":3}}],["folder",{"0":{"43":1,"293":1,"305":1,"314":1,"2451":1},"1":{"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":1},"2":{"70":1,"72":2,"111":1,"113":3,"114":5,"133":1,"134":1,"149":20,"160":2,"176":2,"199":2,"204":1,"211":6,"236":1,"249":10,"266":1,"277":2,"293":2,"294":10,"305":2,"314":2,"317":2,"348":1,"353":2,"393":3,"397":1,"429":1,"432":1,"446":1,"556":1,"558":2,"572":1,"617":1,"618":2,"624":1,"625":1,"1433":2,"1434":3,"1438":2,"1463":2,"1466":1,"1472":1,"1485":1,"1500":1,"1502":1,"1527":4,"1850":1,"2088":1,"2412":3,"2413":1,"2414":1,"2415":1,"2417":1,"2449":1,"2450":4,"2451":2,"2454":14,"2455":15,"2462":3,"2587":1,"2597":2,"2598":2,"2600":1,"2602":1,"2614":1,"2628":1,"2629":1,"2658":1,"2659":3,"2678":3,"2681":2,"2746":1,"2795":1,"2944":5,"2946":1}}],["folders",{"0":{"558":1,"2450":1},"2":{"35":1,"37":1,"43":1,"114":1,"149":1,"204":1,"222":1,"293":1,"305":1,"308":1,"314":1,"555":1,"557":1,"558":3,"1433":1,"2417":3,"2450":3,"2454":1,"2944":1}}],["followed",{"2":{"423":1,"675":1,"1410":1,"1413":3,"1444":1,"1448":2,"1538":2,"1634":1,"1786":3,"2566":1,"2655":1,"2744":2,"2762":1,"2779":1,"2781":2,"2787":1,"2825":1,"2918":1}}],["followup",{"2":{"149":1,"224":1,"2747":1}}],["follow",{"2":{"114":1,"125":1,"185":1,"228":1,"240":1,"512":3,"618":1,"619":2,"665":1,"666":1,"668":2,"683":1,"1195":1,"1198":1,"1201":1,"1203":1,"1204":1,"1343":1,"1425":1,"1539":1,"1593":1,"1637":1,"2331":1,"2452":1,"2459":1,"2468":1,"2572":1,"2573":1,"2595":1,"2624":1,"2627":1,"2628":1,"2658":1,"2715":1,"2746":1,"2792":1,"2944":1}}],["following",{"2":{"30":1,"31":2,"33":1,"34":3,"45":1,"67":1,"86":1,"102":1,"118":1,"119":1,"122":1,"125":1,"143":1,"146":1,"158":1,"159":1,"167":1,"168":1,"181":1,"185":1,"194":2,"197":1,"201":1,"206":1,"248":1,"255":2,"256":1,"273":1,"284":1,"303":1,"306":1,"307":1,"315":1,"316":1,"338":1,"376":1,"379":1,"430":2,"433":1,"475":1,"509":1,"512":1,"521":1,"546":1,"573":1,"575":1,"593":1,"615":1,"624":1,"625":2,"647":2,"657":1,"661":1,"669":1,"674":1,"686":1,"698":1,"699":1,"721":1,"723":1,"726":1,"727":1,"729":1,"742":1,"744":1,"745":1,"761":1,"763":1,"764":1,"797":1,"799":1,"802":1,"805":1,"828":1,"829":1,"831":1,"857":1,"858":1,"859":1,"860":1,"861":1,"863":1,"889":1,"890":1,"891":1,"893":1,"921":1,"922":1,"924":1,"925":1,"926":1,"928":1,"956":1,"957":1,"958":1,"959":1,"960":1,"962":1,"990":1,"991":1,"992":1,"993":1,"994":1,"996":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1030":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1064":1,"1092":1,"1093":1,"1095":1,"1096":1,"1098":1,"1126":1,"1127":1,"1129":1,"1130":1,"1132":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1166":1,"1203":3,"1204":3,"1205":1,"1216":1,"1217":1,"1219":1,"1246":1,"1248":1,"1267":1,"1284":1,"1285":1,"1287":1,"1288":1,"1291":1,"1295":1,"1297":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1316":1,"1322":1,"1329":1,"1331":1,"1332":1,"1358":1,"1365":1,"1368":1,"1383":1,"1389":1,"1390":1,"1392":1,"1393":1,"1395":1,"1403":1,"1405":1,"1407":1,"1412":1,"1413":1,"1414":1,"1419":2,"1428":1,"1463":1,"1465":1,"1472":1,"1474":1,"1480":1,"1484":1,"1490":1,"1503":2,"1517":1,"1518":1,"1525":1,"1535":1,"1539":2,"1542":1,"1544":1,"1545":1,"1553":1,"1554":2,"1556":1,"1557":1,"1578":1,"1579":1,"1594":1,"1606":1,"1609":2,"1612":1,"1620":1,"1622":1,"1627":1,"1628":2,"1630":1,"1638":1,"1646":1,"1661":1,"1663":1,"1667":1,"1670":1,"1678":2,"1683":1,"1687":1,"1690":1,"1692":1,"1693":1,"1694":1,"1695":1,"1698":1,"1699":1,"1701":1,"1739":1,"1741":1,"1742":1,"1743":1,"1776":1,"1788":1,"1791":1,"1793":1,"1795":1,"1797":1,"1800":1,"1801":1,"1802":1,"1803":1,"1837":1,"1845":1,"1846":1,"1851":1,"1919":1,"1921":1,"1922":1,"1932":1,"1933":1,"1934":1,"1935":1,"1936":1,"1937":1,"1940":1,"1944":1,"1946":1,"1957":1,"1964":1,"1968":1,"1979":1,"1982":1,"1984":2,"1987":1,"1990":1,"1995":1,"1996":1,"1997":1,"2006":1,"2011":1,"2015":2,"2017":1,"2041":1,"2044":1,"2046":1,"2047":1,"2048":1,"2053":1,"2055":1,"2056":1,"2057":1,"2059":1,"2068":1,"2069":1,"2070":1,"2071":1,"2073":1,"2075":1,"2077":1,"2079":1,"2081":1,"2082":1,"2086":1,"2087":1,"2090":1,"2178":1,"2179":2,"2185":1,"2186":1,"2207":1,"2210":1,"2215":1,"2220":1,"2221":1,"2222":1,"2225":1,"2250":1,"2256":1,"2268":1,"2269":1,"2271":1,"2272":2,"2273":2,"2274":2,"2276":1,"2284":1,"2285":1,"2294":1,"2295":1,"2296":1,"2297":1,"2305":1,"2317":1,"2318":1,"2319":2,"2326":1,"2327":1,"2328":1,"2329":2,"2330":1,"2331":1,"2375":1,"2376":1,"2383":1,"2384":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":2,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2407":1,"2414":1,"2415":1,"2417":2,"2423":1,"2437":1,"2453":1,"2455":2,"2456":1,"2466":3,"2483":1,"2502":1,"2503":1,"2506":1,"2508":3,"2561":1,"2565":1,"2567":2,"2568":1,"2578":1,"2579":1,"2591":1,"2593":2,"2594":1,"2597":1,"2599":1,"2600":2,"2602":1,"2612":1,"2615":1,"2621":1,"2628":4,"2634":1,"2639":2,"2683":3,"2684":2,"2692":1,"2700":1,"2703":1,"2709":3,"2722":1,"2746":1,"2754":1,"2760":1,"2762":2,"2763":34,"2764":2,"2778":1,"2781":1,"2885":1,"2910":4,"2919":3,"2920":2,"2921":3,"2924":2,"2925":1,"2926":1,"2928":4,"2930":1,"2933":1,"2948":1}}],["follows",{"2":{"0":1,"19":1,"31":1,"160":1,"203":1,"231":1,"234":1,"379":1,"514":1,"572":1,"593":1,"1364":1,"1632":1,"1937":1,"2048":1,"2051":1,"2454":2,"2455":1,"2472":1,"2592":1,"2614":1,"2696":1,"2777":1,"2780":1,"2781":2,"2785":1,"2790":1,"2792":1,"2795":1}}],["forum",{"2":{"2898":1}}],["forums",{"2":{"2481":1}}],["forbids",{"2":{"2728":1}}],["forgot",{"2":{"2912":1}}],["forget",{"2":{"2074":3}}],["forgiveness",{"2":{"525":1}}],["forever",{"2":{"2935":1}}],["forever60",{"2":{"448":5}}],["foremost",{"2":{"2889":1}}],["foreground",{"2":{"494":4}}],["foreach",{"2":{"411":1}}],["forth",{"2":{"403":1,"2294":1,"2384":1,"2391":1}}],["forcing",{"2":{"303":1,"338":1,"2275":1}}],["forcibly",{"2":{"50":1,"2278":1}}],["forceon",{"2":{"799":4}}],["forces",{"2":{"574":1,"799":1,"1392":1,"1393":1,"2216":1}}],["forced",{"2":{"570":1,"1364":1,"2275":1}}],["forcefully",{"2":{"236":1}}],["force",{"0":{"195":1,"230":1,"303":2,"338":2},"2":{"112":3,"160":1,"195":4,"199":2,"211":2,"226":2,"236":3,"249":1,"277":1,"308":4,"317":1,"339":1,"411":1,"423":2,"463":2,"563":1,"652":1,"653":1,"1205":1,"1315":1,"1320":1,"1417":1,"1436":3,"1961":1,"2008":2,"2044":1,"2218":1,"2383":2,"2434":1,"2615":1,"2637":2,"2746":1,"2774":1,"2882":1}}],["forming",{"2":{"2872":1}}],["formulas",{"2":{"1968":1}}],["formula",{"2":{"1846":1,"2082":1}}],["formed",{"2":{"1525":1}}],["former",{"2":{"1315":1,"1351":1}}],["formerly",{"2":{"37":1,"1592":2,"1623":1}}],["forms",{"2":{"512":1,"1480":1,"1497":1}}],["formally",{"2":{"294":1}}],["formalise",{"2":{"191":1}}],["formatstring",{"2":{"2854":1}}],["formats",{"2":{"433":1,"436":1,"458":1,"459":1,"464":1,"2614":1,"2762":1}}],["formatters",{"2":{"114":1}}],["formatted",{"2":{"1":1,"50":1,"76":1,"541":1,"671":1,"1327":2,"2795":1}}],["formatting",{"0":{"1":1,"501":1,"503":1,"504":1,"513":1},"1":{"502":1,"503":1,"504":1,"505":1,"506":1},"2":{"73":1,"149":1,"176":1,"249":2,"333":2,"491":1,"521":1,"2653":1,"2673":1}}],["format",{"0":{"1":1,"436":1,"458":1,"459":1,"464":1,"513":1,"529":1,"1444":1,"1537":1,"2777":1,"2785":1},"1":{"1538":1,"1539":1,"2778":1,"2779":1,"2780":1,"2781":1,"2782":1,"2783":1,"2784":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1},"2":{"1":2,"93":1,"112":1,"114":2,"134":5,"149":1,"160":1,"191":1,"199":1,"211":2,"248":1,"249":1,"277":1,"308":1,"379":1,"403":2,"433":1,"436":4,"437":1,"443":1,"458":1,"459":7,"464":1,"466":2,"467":2,"468":1,"491":2,"501":2,"503":1,"504":2,"513":9,"521":1,"526":1,"527":2,"529":1,"555":1,"572":2,"588":1,"592":1,"669":1,"1356":1,"1364":1,"1435":1,"1538":3,"1539":1,"1638":1,"2238":1,"2240":1,"2242":1,"2244":1,"2295":1,"2296":1,"2300":1,"2407":1,"2458":1,"2464":1,"2504":1,"2508":1,"2590":1,"2602":1,"2614":1,"2629":1,"2746":1,"2762":21,"2763":13,"2764":2,"2777":6,"2778":1,"2779":1,"2780":1,"2781":6,"2782":2,"2784":1,"2785":5,"2787":4,"2795":1,"2854":1,"2869":1,"2882":1}}],["form",{"2":{"110":1,"452":1,"453":1,"475":1,"476":1,"512":1,"1320":1,"1419":1,"1635":1,"1636":1,"2272":1,"2300":1,"2317":1,"2730":1,"2733":1,"2795":1,"2812":1,"2852":2,"2853":1,"2926":1}}],["forwards",{"2":{"2377":1,"2516":1}}],["forward",{"2":{"36":1,"37":1,"43":1,"113":1,"134":1,"184":1,"254":1,"268":1,"1417":1,"1618":1,"1846":1,"1954":1,"2068":4,"2082":1,"2181":1,"2290":1,"2449":1,"2510":5,"2532":1,"2548":1,"2549":5,"2748":1,"2946":1}}],["forked",{"0":{"2605":1},"2":{"2562":1,"2632":1,"2903":1}}],["forks",{"0":{"26":1},"2":{"411":1,"1343":1,"2902":1}}],["forking",{"2":{"21":1,"2410":1}}],["fork",{"0":{"5":1,"2638":1},"1":{"2639":1,"2640":1,"2641":1},"2":{"26":1,"46":1,"176":1,"228":1,"411":1,"613":1,"615":1,"1335":1,"1343":3,"2383":1,"2384":1,"2391":1,"2410":7,"2412":1,"2501":1,"2568":1,"2571":1,"2590":1,"2603":1,"2605":2,"2608":1,"2628":1,"2632":1,"2633":1,"2635":1,"2637":7,"2639":3,"2640":2,"2641":2,"2709":1,"2710":2,"2748":3}}],["for",{"0":{"11":1,"14":2,"26":1,"35":1,"56":1,"80":1,"138":1,"174":1,"203":1,"231":1,"246":1,"320":1,"412":1,"418":1,"507":1,"509":1,"569":1,"592":1,"593":1,"600":1,"606":1,"612":1,"621":1,"1210":1,"1318":1,"1331":1,"1341":1,"1347":1,"1366":1,"1367":1,"1437":1,"1781":1,"1782":1,"1783":1,"1924":1,"2005":1,"2009":1,"2015":1,"2298":1,"2318":1,"2319":1,"2431":1,"2631":1,"2653":1,"2661":1,"2673":1,"2681":1,"2711":2,"2712":1,"2713":1,"2740":1,"2744":1,"2850":1,"2931":1,"2944":1},"1":{"36":1,"508":1,"509":1,"510":1,"511":1,"1211":1,"1212":1,"1213":1,"1342":1,"1438":1,"1439":1,"1784":1,"1785":1,"1786":1,"2006":1,"2632":1,"2662":1,"2663":1,"2682":1},"2":{"0":1,"8":2,"9":1,"12":1,"13":3,"14":1,"18":3,"19":1,"28":1,"30":3,"31":3,"33":3,"34":1,"35":1,"36":9,"39":1,"45":5,"49":14,"50":10,"51":1,"52":1,"55":2,"63":2,"64":1,"65":4,"69":2,"70":1,"74":7,"75":3,"76":1,"81":1,"82":1,"86":2,"88":1,"89":1,"90":1,"92":4,"93":21,"94":3,"98":2,"99":4,"104":1,"107":2,"108":1,"111":1,"112":1,"114":58,"116":1,"118":5,"119":2,"120":2,"123":2,"125":3,"127":1,"128":1,"130":3,"131":1,"132":1,"133":1,"134":38,"138":2,"142":1,"145":1,"146":1,"149":33,"152":3,"153":6,"154":1,"156":2,"158":1,"160":21,"163":3,"164":1,"166":2,"169":2,"172":4,"173":2,"174":4,"175":5,"176":45,"179":1,"182":4,"183":1,"185":4,"186":2,"188":7,"189":3,"190":3,"191":52,"194":7,"195":2,"196":1,"199":28,"201":7,"202":1,"203":1,"204":1,"206":2,"209":1,"210":2,"211":32,"213":6,"215":1,"222":15,"224":1,"228":5,"229":3,"230":2,"231":2,"232":3,"234":2,"235":1,"236":26,"240":1,"241":1,"243":1,"246":1,"247":2,"248":2,"249":27,"253":1,"255":4,"256":1,"257":1,"258":1,"259":2,"262":1,"263":4,"264":1,"265":1,"266":18,"270":1,"271":1,"272":1,"273":2,"274":1,"276":1,"277":8,"279":2,"281":1,"282":1,"283":5,"284":1,"285":12,"288":3,"289":1,"292":1,"293":1,"294":10,"297":1,"298":2,"301":1,"303":1,"304":1,"305":1,"306":1,"307":2,"308":17,"313":1,"315":1,"316":1,"317":9,"320":2,"326":1,"328":4,"331":2,"332":1,"333":4,"336":1,"337":1,"338":1,"339":6,"341":2,"344":6,"346":1,"365":1,"366":1,"367":1,"369":1,"372":1,"373":1,"374":2,"377":1,"378":4,"379":3,"380":1,"384":2,"390":1,"393":6,"394":1,"396":3,"397":2,"398":2,"401":1,"402":3,"403":7,"405":4,"406":4,"407":2,"408":2,"409":3,"411":3,"412":10,"414":2,"417":3,"426":2,"429":5,"430":5,"431":1,"432":1,"433":7,"435":1,"437":3,"442":1,"443":1,"444":1,"452":2,"453":2,"454":1,"459":4,"460":1,"461":2,"462":1,"466":1,"467":2,"468":1,"472":2,"474":2,"477":2,"486":1,"489":2,"490":2,"491":3,"492":1,"495":1,"496":3,"500":1,"505":2,"507":1,"512":3,"513":3,"514":2,"516":1,"520":1,"525":3,"529":3,"530":1,"531":1,"532":1,"533":1,"538":1,"539":1,"540":1,"542":1,"544":2,"545":2,"552":1,"554":2,"555":4,"557":1,"558":1,"559":1,"561":10,"563":1,"564":21,"565":4,"568":4,"569":1,"570":11,"571":1,"572":1,"574":8,"578":1,"580":1,"581":2,"582":1,"584":1,"587":1,"588":2,"589":3,"591":1,"592":1,"593":1,"594":2,"595":1,"596":1,"599":2,"600":2,"605":2,"609":4,"610":1,"613":6,"615":5,"616":3,"618":5,"619":4,"620":1,"621":2,"623":2,"624":1,"625":3,"626":1,"627":1,"628":1,"630":2,"631":1,"633":5,"634":3,"637":1,"639":2,"645":1,"647":3,"648":1,"651":6,"652":2,"653":2,"656":3,"657":1,"660":1,"661":1,"665":1,"666":1,"667":1,"668":2,"669":3,"670":2,"672":1,"673":4,"674":1,"676":1,"681":2,"683":1,"684":3,"685":4,"690":2,"691":1,"693":3,"694":7,"696":5,"697":1,"709":1,"710":5,"711":5,"712":2,"713":1,"715":1,"716":4,"717":4,"718":1,"720":1,"721":7,"722":3,"731":1,"732":3,"741":1,"742":1,"743":1,"744":1,"746":4,"748":1,"749":5,"750":2,"751":1,"752":2,"753":4,"754":3,"755":4,"756":1,"757":2,"762":3,"764":9,"765":1,"766":1,"768":3,"770":1,"772":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"793":3,"794":1,"798":2,"801":2,"805":2,"807":1,"808":4,"820":1,"822":1,"827":2,"831":2,"833":1,"834":4,"847":1,"849":1,"856":2,"860":4,"863":2,"865":1,"866":4,"879":1,"880":3,"881":1,"882":1,"888":2,"891":1,"893":2,"895":1,"896":4,"901":1,"911":1,"913":1,"920":2,"921":4,"924":1,"925":4,"928":2,"930":1,"931":4,"936":1,"946":1,"948":1,"955":2,"958":1,"959":4,"962":2,"964":1,"965":4,"970":1,"980":1,"982":1,"989":2,"992":1,"993":4,"996":2,"998":1,"999":4,"1004":1,"1014":1,"1016":1,"1023":2,"1026":1,"1027":4,"1030":2,"1032":1,"1033":4,"1038":1,"1048":1,"1050":1,"1057":2,"1061":4,"1064":2,"1066":1,"1067":4,"1072":1,"1082":1,"1083":3,"1084":1,"1085":1,"1091":2,"1092":4,"1095":4,"1098":2,"1100":1,"1101":4,"1106":1,"1116":1,"1117":3,"1118":1,"1119":1,"1125":2,"1126":4,"1129":4,"1132":2,"1134":1,"1135":4,"1140":1,"1150":1,"1151":3,"1152":1,"1153":1,"1159":2,"1163":4,"1166":2,"1168":1,"1169":4,"1174":1,"1184":1,"1185":3,"1186":1,"1187":1,"1192":3,"1193":1,"1194":3,"1197":5,"1198":5,"1200":6,"1201":6,"1203":3,"1204":2,"1205":1,"1207":1,"1209":1,"1210":1,"1213":2,"1215":2,"1219":2,"1221":1,"1222":4,"1227":1,"1237":1,"1239":1,"1248":8,"1252":1,"1269":11,"1283":1,"1286":1,"1287":1,"1288":1,"1289":1,"1290":1,"1291":1,"1292":1,"1297":1,"1299":4,"1300":2,"1303":5,"1311":1,"1312":1,"1315":1,"1317":1,"1318":2,"1319":2,"1320":1,"1324":1,"1326":1,"1328":1,"1329":2,"1330":3,"1331":1,"1332":3,"1335":2,"1341":1,"1343":2,"1345":1,"1347":3,"1348":2,"1350":1,"1352":1,"1353":1,"1354":1,"1356":2,"1359":1,"1361":1,"1363":3,"1364":9,"1366":1,"1367":1,"1368":1,"1376":2,"1382":2,"1383":1,"1388":2,"1392":1,"1393":1,"1395":1,"1397":2,"1398":1,"1400":1,"1401":1,"1403":1,"1405":2,"1406":1,"1407":3,"1409":4,"1410":6,"1413":5,"1414":1,"1415":1,"1416":3,"1417":7,"1419":2,"1420":1,"1421":3,"1422":4,"1423":4,"1426":3,"1427":2,"1428":10,"1429":1,"1430":1,"1433":2,"1434":1,"1436":1,"1438":2,"1439":3,"1440":1,"1444":4,"1446":4,"1447":1,"1448":3,"1450":1,"1451":3,"1455":2,"1456":1,"1462":1,"1463":1,"1464":3,"1465":2,"1466":4,"1467":2,"1468":2,"1469":2,"1470":2,"1471":5,"1472":6,"1474":2,"1475":3,"1476":1,"1477":1,"1478":3,"1479":1,"1480":1,"1482":1,"1485":1,"1486":5,"1488":2,"1489":1,"1490":2,"1491":1,"1492":4,"1493":5,"1497":2,"1498":3,"1499":4,"1501":3,"1503":5,"1505":1,"1510":1,"1517":5,"1518":4,"1519":1,"1525":1,"1526":1,"1527":1,"1528":2,"1529":2,"1532":4,"1533":5,"1534":2,"1535":2,"1537":1,"1538":6,"1539":3,"1540":2,"1541":1,"1542":1,"1544":4,"1546":1,"1547":1,"1551":1,"1553":1,"1556":4,"1557":1,"1558":1,"1577":1,"1580":1,"1589":2,"1590":2,"1591":1,"1592":1,"1593":5,"1594":1,"1597":2,"1598":2,"1602":2,"1605":1,"1606":2,"1608":3,"1609":2,"1610":1,"1612":6,"1613":1,"1617":1,"1618":3,"1619":5,"1620":4,"1622":2,"1624":1,"1625":1,"1626":1,"1627":2,"1630":1,"1632":1,"1633":1,"1638":2,"1639":1,"1640":1,"1641":1,"1647":2,"1648":1,"1661":1,"1662":2,"1663":1,"1664":1,"1665":2,"1666":4,"1667":1,"1670":2,"1678":3,"1681":8,"1684":4,"1685":6,"1686":1,"1690":1,"1697":1,"1702":1,"1713":1,"1730":2,"1732":1,"1740":1,"1742":2,"1747":1,"1762":3,"1765":1,"1766":1,"1768":1,"1772":1,"1773":3,"1777":1,"1781":5,"1786":4,"1787":1,"1788":2,"1789":1,"1791":1,"1792":1,"1794":1,"1795":2,"1801":1,"1802":2,"1803":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"1835":1,"1836":2,"1838":2,"1840":2,"1841":1,"1842":1,"1843":2,"1845":2,"1846":5,"1847":2,"1849":1,"1850":4,"1851":1,"1852":1,"1853":1,"1855":1,"1923":2,"1924":1,"1926":1,"1934":2,"1935":2,"1936":4,"1937":1,"1938":2,"1939":2,"1940":1,"1941":1,"1945":3,"1946":1,"1947":3,"1948":1,"1949":6,"1951":5,"1952":14,"1953":7,"1954":8,"1956":2,"1959":1,"1960":1,"1964":3,"1966":1,"1967":4,"1968":8,"1970":5,"1971":2,"1972":3,"1974":7,"1978":1,"1980":3,"1981":1,"1983":4,"1985":8,"1986":2,"1987":3,"1988":4,"1990":1,"1995":1,"1997":2,"1998":1,"1999":2,"2001":1,"2002":1,"2004":1,"2005":2,"2007":2,"2008":7,"2014":1,"2015":2,"2037":3,"2039":1,"2041":4,"2042":3,"2043":2,"2044":3,"2047":1,"2048":1,"2051":4,"2054":1,"2056":1,"2057":5,"2059":2,"2065":2,"2068":2,"2069":2,"2070":6,"2071":1,"2072":1,"2073":1,"2075":2,"2076":3,"2078":1,"2079":1,"2081":2,"2082":5,"2083":3,"2085":1,"2086":1,"2088":4,"2090":1,"2091":1,"2092":1,"2094":1,"2095":5,"2096":2,"2178":1,"2179":6,"2182":1,"2183":2,"2185":7,"2187":7,"2188":2,"2189":1,"2191":3,"2194":2,"2201":12,"2210":2,"2214":1,"2217":1,"2218":1,"2219":1,"2220":1,"2222":5,"2232":1,"2234":1,"2247":1,"2248":1,"2249":1,"2258":1,"2259":2,"2261":3,"2264":1,"2265":6,"2267":1,"2269":1,"2273":1,"2275":5,"2276":5,"2277":5,"2278":6,"2279":1,"2281":1,"2285":1,"2286":3,"2288":4,"2289":4,"2290":5,"2291":1,"2293":1,"2295":1,"2296":2,"2297":3,"2298":5,"2300":1,"2301":1,"2302":2,"2303":1,"2304":1,"2309":7,"2310":3,"2312":3,"2313":1,"2316":1,"2317":14,"2318":6,"2319":7,"2320":2,"2322":4,"2326":1,"2327":2,"2329":4,"2330":3,"2331":6,"2351":2,"2354":1,"2357":1,"2371":1,"2374":3,"2377":1,"2378":2,"2379":3,"2381":2,"2382":3,"2383":2,"2384":2,"2385":1,"2386":2,"2387":2,"2388":1,"2389":1,"2390":3,"2391":4,"2393":2,"2394":1,"2395":2,"2396":2,"2397":4,"2398":1,"2400":5,"2402":5,"2404":5,"2405":2,"2407":5,"2409":1,"2410":1,"2413":4,"2414":7,"2416":1,"2417":14,"2418":8,"2419":1,"2423":2,"2424":2,"2425":1,"2427":3,"2428":2,"2429":1,"2430":1,"2432":2,"2433":1,"2434":2,"2435":2,"2437":1,"2439":2,"2441":1,"2442":2,"2443":2,"2444":2,"2445":3,"2446":2,"2447":1,"2448":1,"2449":1,"2450":3,"2453":4,"2454":3,"2455":3,"2456":3,"2457":1,"2459":2,"2460":1,"2461":3,"2462":1,"2465":2,"2466":2,"2470":1,"2472":1,"2473":1,"2474":1,"2482":1,"2483":2,"2490":2,"2494":1,"2496":1,"2497":1,"2499":3,"2500":3,"2502":6,"2503":3,"2504":2,"2505":1,"2508":1,"2510":2,"2511":1,"2526":2,"2535":30,"2541":1,"2549":1,"2551":1,"2552":2,"2553":1,"2557":1,"2558":2,"2560":1,"2561":5,"2562":2,"2564":1,"2565":3,"2566":2,"2567":6,"2568":3,"2569":9,"2570":1,"2571":1,"2572":4,"2573":3,"2575":1,"2576":4,"2578":1,"2579":3,"2581":1,"2582":1,"2583":1,"2586":1,"2587":2,"2589":4,"2590":2,"2591":2,"2593":1,"2594":1,"2597":1,"2598":1,"2599":1,"2601":1,"2603":1,"2604":1,"2607":1,"2608":2,"2612":2,"2613":2,"2614":2,"2616":2,"2617":1,"2618":1,"2619":1,"2621":1,"2622":1,"2626":1,"2627":1,"2628":1,"2629":4,"2630":1,"2637":2,"2638":1,"2639":2,"2640":1,"2645":1,"2646":1,"2650":2,"2651":32,"2652":5,"2653":6,"2658":4,"2662":1,"2663":1,"2664":3,"2665":1,"2666":2,"2667":2,"2668":1,"2669":2,"2672":2,"2673":3,"2676":9,"2678":2,"2679":1,"2680":2,"2682":1,"2683":11,"2684":2,"2685":6,"2686":1,"2687":2,"2688":1,"2689":1,"2691":2,"2692":1,"2694":4,"2695":1,"2696":1,"2700":2,"2702":1,"2703":1,"2704":1,"2706":1,"2707":3,"2709":3,"2710":2,"2711":4,"2712":1,"2713":2,"2714":8,"2716":2,"2717":1,"2722":1,"2723":3,"2724":3,"2725":1,"2727":1,"2733":1,"2744":6,"2745":4,"2746":21,"2747":5,"2748":4,"2749":3,"2750":2,"2751":2,"2752":1,"2753":1,"2759":2,"2760":3,"2761":2,"2762":3,"2763":29,"2764":19,"2771":2,"2776":1,"2777":3,"2778":3,"2779":1,"2780":1,"2781":2,"2782":3,"2785":3,"2786":1,"2787":3,"2788":1,"2789":1,"2792":2,"2794":5,"2795":3,"2796":1,"2797":1,"2799":1,"2800":1,"2804":1,"2805":1,"2806":1,"2808":1,"2809":1,"2819":1,"2820":2,"2826":1,"2828":1,"2836":1,"2837":2,"2838":1,"2839":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2851":2,"2852":3,"2854":2,"2856":1,"2858":1,"2864":1,"2868":2,"2869":5,"2871":2,"2872":1,"2876":1,"2878":2,"2879":1,"2880":3,"2882":3,"2884":4,"2886":2,"2888":1,"2889":2,"2891":1,"2892":2,"2893":1,"2894":2,"2896":1,"2901":1,"2902":3,"2903":2,"2908":1,"2909":1,"2910":7,"2911":4,"2912":5,"2913":3,"2919":5,"2920":4,"2921":2,"2922":1,"2923":4,"2924":3,"2925":2,"2926":5,"2927":3,"2928":4,"2929":1,"2930":5,"2931":3,"2934":5,"2935":3,"2936":4,"2937":2,"2942":2,"2944":9,"2945":2,"2946":1,"2947":2,"2948":2,"2949":3}}],["oems",{"2":{"2569":1}}],["oem",{"2":{"2567":1}}],["oemxx",{"2":{"712":2}}],["oxidisation",{"2":{"2427":1}}],["oar",{"2":{"2295":1}}],["oops",{"2":{"1376":1}}],["oob",{"2":{"176":1,"222":2,"308":1}}],["oj",{"2":{"675":1}}],["oven",{"2":{"582":1}}],["overcome",{"2":{"2742":1}}],["overcrowded",{"2":{"2462":1}}],["overhead",{"2":{"2276":1}}],["overheat",{"2":{"1681":1}}],["overhauls",{"2":{"414":1}}],["overhaul",{"0":{"157":1,"283":1},"2":{"75":1,"94":1,"133":1,"134":1,"149":1,"160":1,"175":1,"176":2,"182":1,"266":1,"285":1}}],["overloading",{"2":{"1986":1}}],["overlook",{"2":{"532":1}}],["overlay",{"0":{"2564":1},"2":{"1974":4,"2189":1,"2558":2,"2562":1,"2564":1,"2605":1,"2606":1,"2607":1}}],["overlap",{"2":{"1604":1,"1623":1,"1940":4,"2189":1,"2747":1}}],["overlapping",{"0":{"1604":1,"1940":1},"2":{"98":1,"114":1,"236":1,"277":1,"1472":1,"1609":1,"1940":3,"2763":1}}],["overwritable",{"2":{"2014":1}}],["overwritten",{"2":{"1946":1,"2388":1,"2505":1,"2672":1,"2685":1,"2702":1}}],["overwrites",{"2":{"2273":1}}],["overwrite",{"2":{"463":3,"1364":2,"1532":1,"1865":1,"1867":1,"2107":1,"2109":1,"2482":1,"2758":1,"2948":1}}],["overwriting",{"2":{"70":9,"2014":1,"2015":1}}],["overwhelmed",{"2":{"418":1}}],["overall",{"0":{"341":1},"1":{"342":1,"343":1,"344":1,"345":1,"346":1,"347":1,"348":1},"2":{"433":1,"543":1,"564":1,"717":1,"2180":1,"2760":1,"2901":1}}],["oversized",{"2":{"285":1}}],["overnumpad",{"2":{"134":1}}],["overrun",{"2":{"114":1,"770":1,"773":1,"776":1,"779":2,"782":1,"785":1,"788":1,"791":1,"1260":1,"1263":1,"1278":1,"1280":1}}],["overridable",{"2":{"211":1,"1954":2,"2290":4}}],["overriding",{"0":{"1529":1,"2192":1},"1":{"1530":1},"2":{"99":1,"160":1,"191":1,"199":1,"277":1,"294":1,"317":1,"327":1,"717":1,"754":2,"1532":1,"2189":1,"2561":1,"2851":1,"2940":1}}],["override",{"0":{"272":1,"327":1,"1465":1,"1781":1},"2":{"50":1,"74":1,"90":2,"112":1,"114":1,"125":2,"134":1,"185":2,"188":1,"191":2,"199":1,"222":1,"272":7,"277":1,"288":1,"333":1,"339":2,"436":1,"462":1,"559":1,"564":1,"565":1,"574":2,"626":1,"627":1,"630":1,"639":4,"696":1,"748":1,"749":2,"750":2,"751":1,"754":1,"755":1,"756":1,"759":2,"763":1,"764":1,"765":1,"766":1,"1203":1,"1204":1,"1248":1,"1269":1,"1485":1,"1503":1,"1533":1,"1626":1,"1668":2,"1676":4,"1766":2,"1768":1,"1769":2,"1770":2,"1771":1,"1772":1,"1773":1,"1774":8,"1776":19,"1777":7,"1779":3,"1780":3,"1781":17,"1782":4,"1783":2,"1784":4,"1785":2,"1786":2,"1787":1,"1837":1,"1954":1,"2069":1,"2192":1,"2223":1,"2250":1,"2290":1,"2416":2,"2637":1,"2684":1,"2685":2,"2686":1,"2747":1,"2763":2,"2853":1,"2886":1,"2921":1,"2930":1,"2940":1}}],["overrides",{"0":{"99":1,"639":1,"1373":1,"1766":1,"1767":1,"1769":1},"1":{"1767":1,"1768":1,"1769":1,"1770":2,"1771":2,"1772":2,"1773":2,"1774":1,"1775":1,"1776":1,"1777":1,"1778":1,"1779":1,"1780":1,"1781":1,"1782":1,"1783":1,"1784":1,"1785":1,"1786":1,"1787":1,"1788":1},"2":{"4":1,"50":1,"99":4,"114":2,"125":2,"160":1,"176":1,"185":2,"199":1,"222":1,"272":5,"308":1,"561":2,"564":1,"570":1,"627":1,"1367":1,"1373":1,"1766":2,"1768":1,"1769":1,"1774":4,"1776":4,"1777":2,"1779":1,"1780":3,"1781":1,"1783":1,"1784":2,"1786":2,"1787":4,"1788":2,"1990":1,"2008":1,"2189":3,"2416":1,"2684":1,"2720":1,"2907":1}}],["overridden",{"2":{"50":1,"557":1,"754":1,"768":1,"793":1,"1463":1,"1985":1,"1990":2,"2327":1,"2344":1,"2345":1,"2346":1}}],["overview",{"0":{"366":1,"374":1,"425":1,"487":1,"577":1,"611":1,"666":1,"2262":1,"2509":1,"2556":1,"2573":1},"1":{"375":1,"426":1,"488":1,"2510":1,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2520":1,"2521":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2557":1,"2558":1,"2559":1,"2560":1,"2561":1,"2562":1,"2563":1,"2564":1},"2":{"112":1,"552":1,"609":1,"1344":1,"1421":1,"1432":1,"2320":1,"2414":1,"2565":1,"2696":1,"2716":1,"2908":1}}],["over",{"2":{"99":1,"114":2,"124":1,"140":1,"191":1,"243":1,"307":1,"308":1,"312":1,"331":1,"364":1,"379":1,"381":1,"382":1,"440":1,"493":1,"538":1,"560":1,"561":1,"575":1,"599":1,"625":1,"749":1,"750":1,"759":1,"1196":2,"1199":2,"1283":1,"1287":1,"1383":1,"1410":1,"1413":1,"1423":1,"1447":2,"1625":1,"1627":1,"1682":1,"1943":1,"1945":1,"1947":2,"1953":1,"2048":1,"2054":1,"2087":1,"2178":1,"2179":1,"2261":1,"2283":1,"2284":1,"2286":2,"2294":2,"2295":1,"2310":1,"2375":1,"2407":1,"2418":2,"2419":1,"2427":1,"2428":1,"2434":1,"2448":1,"2467":1,"2470":1,"2482":1,"2504":1,"2567":1,"2603":1,"2651":2,"2653":1,"2658":1,"2673":1,"2707":1,"2722":1,"2807":1,"2840":1,"2907":1,"2919":1,"2935":1}}],["overflows",{"2":{"114":1}}],["overflow",{"0":{"11":1},"2":{"11":3,"114":1,"149":1,"236":1,"333":1,"1986":1}}],["ohm",{"2":{"857":2,"860":18,"921":2,"925":18,"956":2,"959":18,"990":2,"993":18,"1024":2,"1027":18,"1058":2,"1061":18,"1092":2,"1095":18,"1126":2,"1129":18,"1160":2,"1163":18}}],["oh",{"0":{"501":1},"1":{"502":1,"503":1,"504":1,"505":1,"506":1}}],["okay",{"2":{"1338":1,"1936":1,"2746":1}}],["ok",{"2":{"393":1,"455":2,"517":1,"531":1,"532":1,"538":1,"541":1,"613":1,"799":1,"1376":2,"1450":2,"1661":1,"2502":1,"2587":4,"2629":4,"2943":1}}],["oq",{"2":{"266":1}}],["o",{"2":{"222":1,"266":1,"277":2,"375":1,"438":1,"439":1,"447":2,"462":1,"492":2,"500":1,"572":2,"589":2,"622":1,"1292":1,"2068":1,"2070":1,"2296":1,"2301":4,"2423":1,"2424":2,"2430":2,"2439":1,"2510":3,"2542":3,"2563":1,"2689":1,"2762":8}}],["odd",{"2":{"2043":1,"2466":1}}],["odelia",{"2":{"211":1}}],["odin",{"2":{"191":1,"211":2}}],["og60",{"2":{"236":1}}],["og",{"2":{"211":1}}],["ogr",{"2":{"211":1}}],["ogurec",{"2":{"143":2}}],["owlab",{"2":{"2567":1}}],["owl8",{"2":{"143":2}}],["owners",{"2":{"2902":1}}],["owned",{"2":{"191":1}}],["owns",{"2":{"2756":1}}],["own",{"0":{"1327":1,"1414":1,"2636":1},"2":{"30":1,"33":1,"37":1,"43":1,"107":1,"113":1,"114":2,"134":1,"172":1,"228":1,"273":1,"284":1,"288":1,"294":1,"307":1,"380":1,"414":1,"512":1,"558":1,"615":1,"618":1,"622":1,"629":1,"661":1,"696":1,"757":1,"1356":1,"1368":1,"1414":2,"1463":1,"1471":1,"1480":2,"1485":2,"1544":1,"1556":1,"1605":1,"1626":1,"1627":1,"1630":1,"1668":1,"1836":1,"1985":1,"1986":1,"1990":1,"2057":2,"2077":2,"2255":2,"2310":1,"2325":1,"2329":1,"2331":1,"2381":1,"2382":1,"2383":1,"2396":1,"2418":2,"2437":1,"2466":1,"2473":1,"2501":1,"2553":1,"2565":1,"2566":1,"2567":1,"2568":1,"2571":1,"2584":1,"2589":1,"2590":1,"2603":1,"2608":1,"2630":1,"2635":1,"2637":1,"2652":1,"2685":1,"2686":1,"2687":1,"2744":3,"2746":2,"2748":1,"2751":1,"2761":1,"2777":2,"2785":1,"2795":1,"2807":1,"2884":1,"2912":1,"2929":1}}],["o3",{"2":{"114":1}}],["opinions",{"2":{"2941":1}}],["opmode",{"2":{"765":2}}],["opqr",{"2":{"266":1}}],["opcode",{"2":{"222":1}}],["opposed",{"2":{"685":1,"1367":1,"1986":1}}],["opposite",{"2":{"202":1,"289":1,"294":1,"1268":1,"2051":1,"2494":1,"2925":9,"2926":2,"2927":2}}],["opportune",{"2":{"263":1}}],["opportunity",{"2":{"203":1}}],["opus",{"2":{"159":2}}],["oper",{"2":{"2510":2,"2548":2}}],["operate",{"2":{"491":1,"1197":2,"1296":1,"1315":1,"1685":1,"2502":1}}],["operates",{"2":{"82":1,"487":1,"696":1,"1290":1,"1936":1,"2269":1,"2759":1,"2886":1}}],["operational",{"2":{"749":1}}],["operation",{"0":{"799":1,"2198":1},"2":{"685":1,"696":1,"762":1,"1196":1,"1199":1,"1201":1,"1205":1,"1253":1,"1349":1,"1974":1,"2634":1,"2665":1,"2704":2,"2764":1}}],["operations",{"0":{"410":1,"483":1},"1":{"411":1,"412":1},"2":{"266":1,"483":1,"491":1,"799":1,"1953":1,"2594":1,"2756":1,"2760":1,"2763":12,"2764":4}}],["operating",{"0":{"2472":1,"2679":1},"2":{"176":1,"461":1,"1351":1,"1934":1,"2016":1,"2294":1,"2325":1,"2405":1,"2417":2,"2471":1,"2472":1,"2475":1,"2593":1,"2717":1,"2726":1,"2731":1,"2884":1,"2930":1}}],["operators",{"2":{"1364":2}}],["operator",{"2":{"222":1,"285":1,"491":1,"529":1,"762":1,"1364":1}}],["opening",{"0":{"675":1},"2":{"512":2,"521":1,"613":1,"617":1,"619":1,"1440":1,"2057":1,"2226":1,"2255":1,"2614":1,"2651":1,"2744":1}}],["opensource",{"2":{"610":1,"1357":2}}],["opens",{"2":{"432":1,"512":2,"2296":1,"2622":1,"2795":1}}],["openocd",{"0":{"390":1},"2":{"384":1,"390":1,"393":1,"397":3,"2506":3,"2508":1}}],["opendeck",{"2":{"277":1}}],["opendrain",{"2":{"134":1,"768":2}}],["opened",{"2":{"275":1,"353":1,"2059":1,"2678":1,"2749":1}}],["open",{"0":{"1297":1,"2585":1,"2738":1},"2":{"149":1,"243":1,"265":1,"384":1,"386":1,"393":3,"414":1,"448":1,"449":1,"450":1,"460":2,"506":1,"544":1,"612":1,"613":1,"617":1,"618":1,"619":2,"620":1,"644":1,"668":1,"672":1,"684":1,"711":1,"712":2,"797":2,"1197":1,"1297":2,"1338":2,"1339":2,"1341":1,"1342":1,"1364":1,"1634":1,"1962":1,"2057":1,"2256":3,"2257":3,"2260":1,"2291":2,"2418":1,"2432":1,"2434":1,"2441":1,"2466":1,"2477":1,"2481":1,"2502":1,"2504":1,"2510":3,"2538":3,"2549":3,"2554":2,"2560":1,"2567":1,"2576":2,"2582":1,"2585":1,"2599":1,"2614":3,"2616":1,"2622":2,"2628":4,"2633":1,"2634":1,"2639":1,"2640":1,"2653":1,"2659":1,"2663":1,"2673":1,"2678":1,"2681":2,"2682":2,"2728":1,"2738":1,"2742":1,"2746":1,"2753":1,"2850":2,"2895":3,"2899":1,"2930":1}}],["opt",{"0":{"273":1},"2":{"124":3,"199":1,"273":1,"277":1,"573":1,"696":2,"1471":2,"1472":1,"2400":1,"2402":1,"2455":2,"2530":1,"2575":1,"2683":1}}],["optimal",{"2":{"1517":1,"1684":1,"1685":1}}],["optimisation",{"2":{"222":1,"236":1,"339":1}}],["optimisations",{"2":{"149":1,"2683":2}}],["optimise",{"2":{"191":1}}],["optimized",{"2":{"191":1}}],["optimize",{"2":{"114":1,"134":1,"149":1,"236":1}}],["optimizations",{"0":{"50":1,"64":1,"75":1,"94":1,"214":1,"215":1}}],["optimization",{"2":{"10":2,"50":1,"294":1,"572":1,"2854":1,"2889":1}}],["optical",{"2":{"114":1,"149":3,"176":1,"199":1,"284":1,"285":1,"1967":1,"1983":1}}],["option+right",{"2":{"2331":1}}],["option+left",{"2":{"2331":1}}],["option=com",{"2":{"1319":1}}],["optional",{"0":{"1687":1,"2583":1,"2636":1},"2":{"262":1,"308":1,"344":1,"411":1,"429":1,"430":1,"512":2,"513":1,"569":1,"666":1,"669":4,"676":1,"1463":5,"1551":3,"1612":1,"1787":1,"1794":1,"1852":1,"1967":4,"1968":9,"1970":4,"1971":17,"1972":3,"1974":10,"1975":5,"1976":3,"1977":2,"1980":4,"1983":7,"1985":15,"1986":3,"1987":5,"2003":5,"2091":1,"2179":1,"2384":1,"2391":1,"2421":1,"2451":1,"2619":1,"2662":1,"2676":1,"2680":4,"2683":2,"2700":1,"2762":1,"2777":3,"2785":4,"2906":1}}],["optionally",{"2":{"211":1,"307":1,"1205":1,"1419":2,"1467":1,"1474":1,"1477":1,"1479":1,"1666":1,"1792":1,"2044":1,"2066":1,"2068":1,"2213":1,"2298":1,"2309":1,"2329":1,"2383":1,"2393":1,"2750":1,"2923":1,"2924":1,"2930":1,"2948":1}}],["options",{"0":{"484":1,"485":1,"561":1,"566":1,"567":1,"570":1,"572":1,"573":1,"574":1,"1372":1,"1466":1,"1678":1,"1773":2,"1836":1,"1852":1,"1960":1,"2003":1,"2091":1,"2275":1,"2276":1,"2278":1,"2376":1,"2418":1,"2419":1,"2723":1,"2724":1,"2909":1},"1":{"568":1,"569":1,"570":1,"2910":1,"2911":1,"2912":1,"2913":1,"2914":1,"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1,"2921":1,"2922":1,"2923":1,"2924":1,"2925":1,"2926":1,"2927":1,"2928":1,"2929":1,"2930":1,"2931":1,"2932":1},"2":{"83":1,"109":1,"114":2,"128":1,"134":1,"138":1,"149":1,"152":1,"194":1,"198":1,"206":1,"222":1,"234":1,"236":2,"249":1,"303":1,"304":1,"308":1,"320":1,"339":1,"397":1,"426":1,"433":1,"452":1,"453":1,"454":1,"455":1,"460":1,"461":1,"469":1,"507":1,"557":1,"559":1,"562":1,"563":1,"567":1,"573":1,"574":1,"666":1,"668":2,"696":2,"710":1,"754":1,"755":1,"756":1,"1198":1,"1201":1,"1206":1,"1317":1,"1358":1,"1372":1,"1376":2,"1387":2,"1436":2,"1466":1,"1590":1,"1593":1,"1609":1,"1612":1,"1614":1,"1662":1,"1664":1,"1676":1,"1678":1,"1769":1,"1773":3,"1776":5,"1779":1,"1781":2,"1782":3,"1783":1,"1835":2,"1836":1,"1837":1,"1934":1,"1939":1,"1949":1,"1952":1,"1964":2,"1987":3,"2002":1,"2086":1,"2095":1,"2096":1,"2179":1,"2185":1,"2191":1,"2259":1,"2273":1,"2274":1,"2275":1,"2276":1,"2296":1,"2309":1,"2327":1,"2375":1,"2414":2,"2415":2,"2417":4,"2419":2,"2429":1,"2453":1,"2454":2,"2455":1,"2459":1,"2554":1,"2576":1,"2581":1,"2628":1,"2676":3,"2685":1,"2700":1,"2716":3,"2723":2,"2724":2,"2746":3,"2761":1,"2762":2,"2827":1,"2888":1,"2890":1,"2892":1,"2908":1,"2909":2,"2930":2,"2940":1,"2944":1}}],["option",{"0":{"320":1,"667":1,"1782":1},"1":{"668":1,"669":1,"670":1,"671":1,"672":1,"673":1},"2":{"14":1,"32":1,"50":1,"74":1,"75":1,"87":1,"103":1,"114":3,"126":1,"132":1,"134":2,"176":1,"191":1,"194":1,"195":1,"211":2,"222":1,"234":1,"236":1,"246":1,"249":2,"266":1,"271":1,"294":1,"297":1,"308":1,"328":2,"339":1,"513":1,"564":1,"668":2,"673":1,"1290":1,"1359":1,"1377":1,"1414":1,"1467":1,"1472":1,"1480":1,"1492":1,"1493":1,"1593":1,"1597":2,"1668":1,"1688":1,"1773":1,"1776":5,"1779":1,"1781":1,"1782":6,"1784":1,"1785":2,"1946":1,"1984":1,"1987":4,"2265":1,"2273":2,"2274":3,"2276":1,"2278":5,"2280":1,"2297":1,"2309":5,"2331":1,"2417":4,"2429":1,"2455":8,"2502":1,"2510":2,"2546":2,"2583":1,"2629":1,"2676":4,"2709":1,"2722":1,"2750":1,"2761":1,"2764":2,"2774":1,"2889":1,"2919":5,"2920":3,"2925":2,"2930":2}}],["ou",{"2":{"2377":7,"2516":7}}],["ould",{"2":{"2079":1}}],["ouput",{"2":{"1527":3}}],["our",{"2":{"76":1,"114":2,"130":1,"164":1,"167":1,"385":1,"393":1,"396":1,"414":1,"489":1,"491":1,"492":1,"504":1,"505":2,"506":1,"512":1,"514":3,"516":1,"521":1,"529":2,"538":1,"542":2,"544":1,"589":1,"592":1,"614":2,"616":2,"619":1,"621":3,"631":1,"635":1,"665":1,"684":1,"696":1,"1336":1,"1338":1,"1431":1,"1446":2,"1539":1,"2318":1,"2319":3,"2429":1,"2447":1,"2466":2,"2481":2,"2561":4,"2564":2,"2572":1,"2634":1,"2639":1,"2749":1,"2794":6,"2795":4,"2800":1,"2847":1,"2896":2,"2897":1,"2937":5,"2938":2,"2939":3}}],["outlines",{"2":{"2707":1}}],["outlined",{"2":{"2276":1,"2709":1}}],["outs",{"2":{"2702":1}}],["outside",{"2":{"22":1,"182":1,"493":1,"519":1,"1200":1,"1367":1,"1431":1,"1840":1,"1977":1,"1990":1,"2273":1,"2603":1,"2928":1,"2937":1}}],["outright",{"2":{"2569":1,"2570":1,"2663":1,"2666":1,"2892":1}}],["outreach",{"2":{"312":1}}],["outbound",{"2":{"2277":1}}],["outer",{"2":{"1802":1,"1976":1,"2180":1,"2556":1,"2869":1,"2926":1}}],["out3",{"2":{"805":2,"831":2}}],["out2",{"2":{"805":2,"831":2}}],["out1",{"2":{"805":3,"831":3}}],["outwardly",{"2":{"198":1}}],["outdated",{"2":{"149":1,"308":2,"414":1,"665":1,"2902":1}}],["outputted",{"2":{"2746":1}}],["outputting",{"2":{"491":1,"493":1,"613":1}}],["output=",{"2":{"222":1}}],["output+keymap",{"2":{"222":1}}],["outputs",{"2":{"93":1,"639":1,"1303":1,"1474":1,"2377":1,"2417":1,"2428":1,"2893":2}}],["outputselect",{"2":{"50":1,"149":1}}],["output",{"0":{"2601":1},"2":{"10":2,"65":1,"75":1,"92":1,"99":1,"114":5,"119":1,"149":2,"176":1,"188":1,"191":4,"199":3,"203":1,"211":2,"222":1,"236":1,"243":3,"249":1,"285":1,"294":1,"328":1,"339":1,"378":1,"411":1,"438":1,"439":1,"447":1,"462":1,"491":1,"492":1,"494":2,"500":2,"543":1,"561":1,"565":2,"635":6,"639":1,"645":1,"676":1,"712":1,"721":3,"729":1,"732":3,"749":1,"797":11,"805":1,"808":4,"831":1,"834":4,"863":1,"866":4,"893":1,"896":4,"928":1,"931":4,"962":1,"965":4,"996":1,"999":4,"1030":1,"1033":4,"1064":1,"1067":4,"1098":1,"1101":4,"1132":1,"1135":4,"1166":1,"1169":4,"1209":1,"1219":1,"1222":4,"1297":1,"1303":3,"1322":3,"1329":1,"1331":1,"1333":1,"1472":3,"1477":1,"1481":1,"1491":1,"1527":2,"1548":1,"1549":1,"1553":1,"1622":1,"1624":1,"1670":1,"1672":2,"1673":2,"1675":1,"1738":1,"1739":1,"1949":1,"1954":1,"1962":1,"1967":1,"1998":1,"2051":2,"2206":1,"2207":1,"2272":1,"2288":1,"2290":1,"2298":1,"2329":2,"2377":11,"2382":1,"2384":1,"2391":1,"2417":5,"2418":1,"2428":1,"2502":1,"2508":1,"2516":11,"2584":1,"2587":2,"2601":1,"2615":1,"2629":1,"2634":1,"2669":1,"2689":1,"2761":3,"2762":23,"2795":1,"2854":1,"2876":1,"2914":1,"2918":1,"2947":1,"2948":1}}],["out",{"0":{"123":1,"323":1,"1818":1,"2617":1,"2635":1,"2888":1},"1":{"2636":1,"2637":1,"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"6":1,"10":1,"21":1,"49":1,"50":1,"93":1,"113":1,"114":3,"119":1,"124":1,"133":2,"134":5,"149":2,"160":1,"176":1,"191":4,"194":1,"199":4,"228":1,"236":1,"249":1,"288":1,"328":1,"333":2,"339":2,"340":1,"383":1,"397":1,"418":1,"420":1,"429":1,"432":1,"463":1,"493":1,"499":2,"521":1,"527":1,"541":1,"564":4,"569":1,"586":1,"588":1,"616":1,"620":2,"647":2,"665":2,"677":1,"714":1,"719":1,"746":1,"749":1,"758":1,"1209":1,"1320":1,"1376":2,"1410":1,"1428":3,"1443":1,"1446":2,"1450":2,"1472":1,"1474":1,"1484":1,"1598":1,"1622":1,"1627":1,"1802":1,"1849":13,"1850":1,"1949":4,"1954":3,"1971":1,"1981":1,"1990":1,"1998":1,"2016":1,"2085":20,"2088":1,"2091":1,"2183":1,"2195":1,"2208":1,"2225":1,"2226":1,"2228":1,"2229":1,"2230":1,"2231":1,"2232":1,"2233":1,"2234":1,"2235":1,"2236":1,"2238":1,"2240":1,"2242":1,"2244":1,"2265":1,"2277":3,"2278":1,"2279":1,"2280":1,"2281":1,"2290":3,"2317":1,"2320":1,"2410":4,"2417":3,"2429":1,"2434":1,"2466":1,"2480":1,"2481":1,"2483":1,"2510":2,"2548":2,"2570":1,"2572":1,"2585":1,"2590":1,"2617":2,"2626":1,"2632":1,"2637":1,"2640":3,"2680":1,"2695":1,"2702":1,"2710":1,"2744":2,"2746":3,"2761":1,"2762":2,"2763":1,"2894":2,"2895":2,"2906":1,"2911":1,"2922":1,"2935":1,"2936":1,"2944":3,"2949":1}}],["otype",{"2":{"768":2}}],["otaku",{"2":{"143":4}}],["otg2",{"2":{"2709":1}}],["otg1",{"2":{"176":1,"2709":1}}],["otg",{"2":{"65":1,"191":1,"294":1}}],["others",{"2":{"114":1,"134":1,"149":1,"160":1,"176":1,"191":1,"199":1,"211":1,"222":1,"236":1,"263":1,"277":1,"285":1,"294":1,"308":1,"328":1,"333":1,"339":1,"533":1,"618":1,"923":1,"1094":1,"1128":1,"1199":1,"1299":2,"1387":1,"1426":1,"1467":1,"1471":1,"1480":1,"1490":1,"1503":1,"1553":1,"2178":1,"2415":1,"2431":1,"2633":1,"2705":1}}],["other",{"0":{"570":1,"1355":1,"1948":1,"2287":1,"2436":1,"2581":1,"2679":1,"2920":1},"2":{"30":1,"33":1,"50":1,"98":1,"114":2,"128":1,"134":2,"142":1,"152":2,"153":1,"163":1,"173":1,"174":1,"175":1,"176":2,"191":2,"194":8,"199":1,"201":2,"206":2,"210":1,"213":1,"220":1,"229":1,"234":1,"244":1,"288":1,"294":1,"307":1,"308":1,"320":1,"340":2,"379":1,"393":2,"396":1,"403":1,"489":1,"505":1,"507":1,"512":1,"529":1,"540":1,"544":1,"557":1,"560":1,"562":1,"564":5,"600":1,"604":1,"607":1,"619":1,"631":1,"645":1,"656":1,"657":1,"665":1,"668":2,"674":1,"712":1,"716":1,"723":1,"746":1,"762":1,"771":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"1203":1,"1204":1,"1213":1,"1248":1,"1261":1,"1264":1,"1294":1,"1300":1,"1313":2,"1317":1,"1319":2,"1333":1,"1343":2,"1349":1,"1364":6,"1367":1,"1414":1,"1417":2,"1422":2,"1425":2,"1427":2,"1428":3,"1430":1,"1431":1,"1440":1,"1442":1,"1446":5,"1448":1,"1470":2,"1472":1,"1474":1,"1477":1,"1478":1,"1485":1,"1488":1,"1499":2,"1505":1,"1528":1,"1529":1,"1532":1,"1533":2,"1546":2,"1550":1,"1593":3,"1619":1,"1620":2,"1626":1,"1633":1,"1643":1,"1662":1,"1671":1,"1704":1,"1774":1,"1777":1,"1779":1,"1782":1,"1784":1,"1785":1,"1787":1,"1789":1,"1791":1,"1795":1,"1804":1,"1923":1,"1935":1,"1952":1,"1962":1,"1964":2,"1988":1,"2011":1,"2013":2,"2068":1,"2071":1,"2072":1,"2073":1,"2075":1,"2076":1,"2077":1,"2079":1,"2189":2,"2191":1,"2208":1,"2210":1,"2252":1,"2259":2,"2260":1,"2261":1,"2275":1,"2292":1,"2293":1,"2294":2,"2317":1,"2318":1,"2319":1,"2330":1,"2331":1,"2379":1,"2417":1,"2418":2,"2419":1,"2423":1,"2428":1,"2434":1,"2439":1,"2447":1,"2453":1,"2457":1,"2466":2,"2496":1,"2503":1,"2505":1,"2523":1,"2552":1,"2558":3,"2559":1,"2561":1,"2566":1,"2567":2,"2568":4,"2569":1,"2575":1,"2589":1,"2637":1,"2650":1,"2653":2,"2666":1,"2668":1,"2673":1,"2680":1,"2690":1,"2700":1,"2702":1,"2711":1,"2744":3,"2746":2,"2747":5,"2751":1,"2763":11,"2764":1,"2767":1,"2769":1,"2817":1,"2825":1,"2837":1,"2852":1,"2854":2,"2886":1,"2895":1,"2901":1,"2902":2,"2903":1,"2911":1,"2913":6,"2915":2,"2916":3,"2917":2,"2919":4,"2920":7,"2925":6,"2926":3,"2927":7,"2929":1,"2930":1,"2932":1,"2934":4,"2945":1}}],["otherwise",{"2":{"28":1,"31":1,"209":1,"389":1,"411":1,"532":1,"617":1,"626":1,"627":1,"652":1,"653":1,"656":1,"673":1,"711":1,"771":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"1253":1,"1258":1,"1261":1,"1264":1,"1297":1,"1428":1,"1558":1,"1620":1,"1661":1,"1729":1,"1781":1,"1865":1,"1867":1,"2069":1,"2085":1,"2107":1,"2109":1,"2192":1,"2278":1,"2300":1,"2309":2,"2330":1,"2377":1,"2390":1,"2393":1,"2395":1,"2398":1,"2418":1,"2508":1,"2516":1,"2612":3,"2767":1,"2781":1,"2921":1,"2924":1,"2925":1,"2927":1,"2930":1}}],["omit",{"2":{"712":1,"754":2,"1625":1,"2502":1}}],["omitted",{"2":{"527":1,"561":2,"570":1,"644":1,"2327":1,"2407":1}}],["omkbd",{"2":{"143":12,"149":2}}],["omrontkl",{"2":{"57":2}}],["omnikey",{"2":{"37":2,"159":2,"160":1}}],["oc7",{"2":{"1925":1,"2527":1}}],["oc6",{"2":{"1925":1,"2527":1}}],["oc5",{"2":{"1925":1,"2527":1}}],["oc4",{"2":{"1925":1,"2527":1}}],["oc3",{"2":{"1925":1,"2527":1}}],["oc2",{"2":{"1925":1,"1926":1,"2527":1}}],["oc1",{"2":{"1925":1,"2527":1}}],["oc0",{"2":{"1925":1,"2527":1}}],["ocn1",{"2":{"1925":1,"2527":1}}],["ocn2",{"2":{"1925":1,"2527":1}}],["ocean",{"2":{"578":1,"586":1}}],["oceanographer",{"2":{"211":1}}],["occupied",{"2":{"1446":1}}],["occupy",{"2":{"1248":1}}],["occurrence",{"2":{"2912":1}}],["occurred",{"2":{"377":1,"647":3,"1410":1,"1413":4}}],["occurs",{"2":{"94":1,"657":1,"754":1,"771":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1261":1,"1264":1,"1414":1,"2275":2,"2278":1,"2759":1,"2930":1}}],["occur",{"2":{"11":1,"49":1,"615":1,"639":2,"1680":1,"1990":1,"1992":1,"2276":1,"2277":1,"2603":1,"2700":1,"2764":1}}],["occasionally",{"2":{"1354":1,"1529":1,"2566":1}}],["occasional",{"2":{"656":1}}],["occasion",{"2":{"414":1,"1503":1}}],["ocd",{"2":{"191":1}}],["octet",{"2":{"2792":8}}],["octets",{"2":{"2778":1,"2784":1,"2792":3}}],["octd",{"2":{"1919":1,"1925":1,"2527":1}}],["octu",{"2":{"1919":1,"1925":1,"2527":1}}],["octave",{"2":{"1490":1,"1919":1,"1925":96,"1926":1,"2527":96}}],["octaves",{"2":{"1490":1}}],["octagon",{"2":{"249":1,"266":1,"308":1}}],["oct",{"2":{"55":2}}],["oscillator",{"2":{"1949":1}}],["oses",{"2":{"1784":1,"1785":1,"1786":1,"1961":1}}],["osdn",{"2":{"420":1}}],["osx",{"0":{"1357":1,"1358":1,"1361":1},"2":{"188":2,"191":2,"1357":2,"1358":2,"1359":1,"1361":1}}],["os",{"0":{"1386":1,"1673":1,"1956":1,"1959":1},"1":{"1957":1,"1958":1,"1959":1,"1960":1,"1961":1,"1962":1,"1963":1},"2":{"65":1,"160":2,"199":1,"211":1,"249":3,"285":3,"308":1,"386":1,"420":1,"1332":1,"1449":1,"1517":1,"1593":2,"1638":3,"1647":1,"1673":1,"1781":1,"1786":1,"1956":4,"1957":10,"1958":14,"1959":1,"1960":5,"1961":6,"1962":5,"2223":1,"2304":1,"2324":1,"2331":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":2,"2398":1,"2400":2,"2402":2,"2404":2,"2418":1,"2466":1,"2468":1,"2475":4,"2535":31,"2539":1,"2549":1,"2591":1,"2619":1,"2651":31,"2684":1,"2726":1,"2730":1,"2731":1,"2846":1,"2880":2,"2884":1,"2930":1}}],["osms",{"2":{"211":1}}],["osm",{"2":{"38":1,"236":1,"1472":3,"1594":1,"1765":1,"2535":1,"2650":1,"2651":6,"2652":1}}],["osl",{"2":{"38":1,"199":1,"236":1,"294":1,"1422":1,"1789":1,"2000":1,"2535":1,"2651":2,"2652":1}}],["olkb",{"0":{"2766":1,"2898":1},"1":{"2767":1,"2768":1,"2769":1,"2770":1},"2":{"610":1,"684":3,"2320":1,"2383":2,"2435":1,"2481":1,"2898":1}}],["olly",{"2":{"211":1,"249":2,"308":1}}],["oledunder",{"2":{"55":1}}],["oledback",{"2":{"55":1}}],["oleds",{"2":{"31":1,"34":1,"114":1,"153":1,"229":1,"230":1,"232":1,"248":1,"2763":1,"2890":1}}],["oled",{"0":{"33":1,"125":1,"210":1,"220":1,"230":1,"232":1,"1942":1,"1945":1,"1952":1,"1954":1,"2442":1,"2893":1},"1":{"34":1,"1943":1,"1944":1,"1945":1,"1946":1,"1947":1,"1948":1,"1949":1,"1950":1,"1951":1,"1952":1,"1953":2,"1954":1,"1955":1},"2":{"30":1,"31":11,"33":2,"34":8,"49":1,"55":11,"62":1,"63":1,"92":2,"93":2,"114":4,"125":6,"128":2,"134":7,"153":1,"176":4,"191":3,"210":4,"211":2,"220":3,"221":2,"222":2,"230":4,"232":4,"236":3,"248":2,"249":2,"308":1,"328":2,"332":6,"337":6,"339":2,"570":2,"761":1,"1246":1,"1535":2,"1943":2,"1944":1,"1945":15,"1946":5,"1947":6,"1948":15,"1949":28,"1950":2,"1951":10,"1952":29,"1953":12,"1954":77,"1955":17,"2276":6,"2435":1,"2439":1,"2442":2,"2456":1,"2746":1,"2760":7,"2763":1,"2880":2,"2893":5}}],["older",{"2":{"157":1,"400":1,"1316":1,"1332":1,"2068":1,"2183":1,"2383":1,"2560":1,"2561":1,"2684":1}}],["old",{"0":{"220":1},"2":{"10":1,"22":1,"37":1,"38":1,"43":1,"46":1,"67":1,"86":1,"102":1,"122":1,"125":1,"134":1,"143":1,"149":2,"156":1,"157":1,"159":1,"168":1,"173":1,"174":1,"181":1,"182":2,"183":3,"185":1,"191":1,"194":1,"195":1,"197":1,"206":1,"207":1,"217":1,"219":1,"220":1,"221":6,"222":3,"226":1,"232":2,"234":1,"236":1,"241":1,"243":1,"244":1,"253":1,"262":1,"270":1,"271":1,"281":1,"291":1,"300":1,"311":1,"322":1,"416":2,"512":1,"661":1,"1354":1,"1368":1,"1622":1,"1955":1,"1988":2,"1990":1,"2183":1,"2260":1,"2265":1,"2310":1,"2437":1,"2636":2,"2744":1,"2893":1}}],["obligations",{"2":{"2742":1}}],["obliterated75",{"2":{"211":1}}],["obtain",{"2":{"2037":1}}],["obtaining",{"2":{"425":1}}],["objs",{"2":{"2417":1,"2454":1}}],["obj",{"2":{"673":2}}],["objects",{"2":{"433":1,"516":1,"533":2,"1443":2,"1444":1,"2410":8,"2795":1,"2865":1,"2868":1}}],["objective",{"2":{"385":1,"2389":1}}],["object",{"0":{"1444":1},"2":{"73":1,"236":1,"433":1,"455":1,"469":1,"489":2,"492":2,"533":1,"534":1,"538":1,"668":1,"670":1,"1419":16,"1444":1,"2057":1,"2417":2,"2764":2,"2795":7,"2796":2,"2865":1,"2868":1,"2869":4,"2871":2,"2877":1,"2878":2,"2941":1}}],["observe",{"2":{"616":1,"1522":1}}],["obsolete",{"0":{"2260":1},"2":{"3":1,"15":1}}],["obviously",{"2":{"1503":1,"1541":1,"2884":1}}],["obvious",{"2":{"249":3,"512":2,"514":2,"526":1,"619":1,"2460":1,"2466":1,"2569":1}}],["obfuscate",{"2":{"199":1}}],["obosob",{"2":{"143":2,"149":2}}],["obdev",{"2":{"21":1,"1319":1}}],["onboard",{"2":{"651":1,"746":1,"748":1,"1292":1,"1293":1,"1294":1,"2179":2,"2208":1,"2668":1,"2691":1}}],["onto",{"2":{"518":1,"1336":1,"1376":1,"1532":1,"2425":1,"2429":1,"2432":1,"2484":1,"2488":1,"2497":1,"2504":1,"2714":1,"2901":1,"2912":1}}],["onyx",{"2":{"211":1}}],["online",{"2":{"182":1,"2568":1,"2572":1,"2589":1,"2897":1}}],["only=true",{"2":{"500":3}}],["only",{"0":{"509":1,"591":1,"2441":1,"2606":1},"2":{"4":1,"14":1,"69":1,"83":1,"87":1,"98":1,"103":2,"107":1,"114":1,"116":1,"120":1,"126":2,"134":1,"169":1,"174":1,"184":1,"191":2,"194":3,"201":1,"221":3,"222":1,"233":1,"236":2,"244":1,"266":1,"303":1,"306":1,"308":2,"315":1,"317":1,"328":1,"338":1,"379":1,"397":1,"402":2,"403":1,"405":1,"406":2,"407":2,"409":2,"411":2,"412":2,"414":1,"416":1,"420":2,"421":1,"422":1,"434":3,"435":1,"459":2,"500":1,"513":1,"538":1,"555":1,"558":1,"564":1,"569":1,"570":2,"575":1,"639":1,"665":1,"677":1,"683":1,"685":1,"690":1,"691":1,"696":2,"715":1,"718":1,"719":1,"720":1,"721":1,"744":1,"751":1,"757":1,"764":1,"768":1,"805":1,"808":4,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"831":1,"834":4,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"863":1,"866":4,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"893":1,"896":4,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"921":1,"924":1,"928":1,"931":4,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"956":1,"958":1,"962":1,"965":4,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"990":1,"992":1,"996":1,"999":4,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1024":1,"1026":1,"1030":1,"1033":4,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1064":1,"1067":4,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1098":1,"1101":4,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1132":1,"1135":4,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1166":1,"1169":4,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1194":1,"1197":2,"1198":1,"1201":2,"1204":2,"1205":1,"1219":1,"1222":4,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1250":1,"1271":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1295":3,"1297":1,"1299":1,"1300":1,"1302":1,"1303":3,"1313":1,"1316":1,"1327":2,"1332":1,"1343":1,"1351":1,"1356":1,"1364":1,"1366":2,"1389":1,"1392":1,"1395":1,"1396":2,"1398":1,"1407":1,"1410":2,"1413":1,"1415":1,"1416":1,"1417":3,"1422":4,"1423":1,"1425":1,"1444":1,"1447":1,"1463":1,"1471":1,"1477":1,"1481":1,"1483":1,"1484":1,"1488":1,"1503":1,"1518":2,"1527":1,"1528":1,"1532":1,"1541":1,"1546":1,"1553":1,"1554":1,"1556":1,"1557":1,"1558":1,"1589":1,"1597":1,"1604":1,"1611":1,"1612":6,"1615":1,"1619":1,"1620":1,"1640":1,"1666":1,"1667":1,"1670":2,"1704":1,"1765":1,"1774":1,"1781":2,"1782":1,"1784":1,"1788":1,"1803":1,"1846":1,"1853":1,"1865":1,"1867":1,"1919":1,"1934":1,"1937":1,"1940":1,"1953":3,"1960":1,"1965":1,"1976":1,"1985":1,"1986":1,"1987":5,"1988":1,"1989":1,"1990":2,"1992":1,"1994":1,"1997":1,"2001":2,"2014":1,"2044":1,"2074":1,"2082":1,"2092":1,"2095":1,"2107":1,"2109":1,"2183":1,"2189":1,"2219":1,"2222":1,"2249":1,"2253":1,"2254":1,"2275":2,"2276":2,"2277":1,"2280":1,"2297":1,"2298":1,"2300":1,"2309":4,"2327":1,"2330":1,"2331":1,"2374":1,"2375":1,"2377":4,"2379":1,"2381":1,"2386":1,"2388":1,"2400":1,"2402":1,"2404":1,"2415":1,"2423":1,"2425":1,"2431":1,"2449":1,"2453":2,"2456":1,"2461":1,"2464":1,"2466":3,"2470":2,"2474":1,"2499":1,"2509":1,"2516":3,"2566":1,"2567":3,"2569":1,"2572":1,"2576":1,"2583":1,"2603":1,"2613":1,"2618":1,"2620":1,"2637":1,"2640":1,"2653":1,"2669":2,"2676":1,"2682":1,"2684":1,"2690":1,"2691":2,"2696":1,"2702":1,"2704":2,"2710":1,"2711":1,"2717":1,"2725":1,"2727":3,"2728":2,"2730":1,"2733":2,"2736":2,"2741":1,"2744":1,"2746":3,"2747":1,"2749":1,"2761":1,"2762":2,"2763":2,"2767":1,"2781":1,"2785":2,"2790":2,"2795":1,"2796":1,"2829":1,"2853":1,"2857":1,"2883":3,"2886":2,"2902":1,"2913":1,"2924":1,"2926":1,"2928":1,"2930":1,"2932":1,"2939":1,"2940":1,"2944":1,"2945":1}}],["onkey",{"2":{"176":1}}],["ongoing",{"2":{"160":1,"665":1,"2746":1,"2902":1}}],["onces",{"2":{"199":1,"211":1}}],["once",{"2":{"114":1,"119":1,"134":1,"152":1,"231":1,"245":1,"303":1,"320":1,"328":1,"338":1,"378":1,"393":1,"420":1,"461":2,"489":1,"512":1,"531":1,"657":1,"659":1,"717":2,"718":2,"721":2,"753":1,"764":2,"768":1,"1195":1,"1203":2,"1204":2,"1248":2,"1250":1,"1269":1,"1271":1,"1299":2,"1303":2,"1313":1,"1332":1,"1405":1,"1406":1,"1422":1,"1427":1,"1472":3,"1498":1,"1502":1,"1503":1,"1522":1,"1556":2,"1557":2,"1593":1,"1602":1,"1704":1,"1781":1,"1796":1,"1800":1,"1802":1,"1850":1,"1936":1,"1953":2,"1960":1,"1990":1,"1992":1,"2042":1,"2048":1,"2057":2,"2088":1,"2191":1,"2193":1,"2214":1,"2280":1,"2293":1,"2298":1,"2308":1,"2309":4,"2312":1,"2331":1,"2379":1,"2386":1,"2388":2,"2410":2,"2416":2,"2418":1,"2427":1,"2432":1,"2435":1,"2466":1,"2472":1,"2559":1,"2571":1,"2608":1,"2609":2,"2610":1,"2614":1,"2618":1,"2622":1,"2650":1,"2659":1,"2660":1,"2680":1,"2682":1,"2683":1,"2744":1,"2764":2,"2779":1,"2787":1,"2794":2,"2795":1,"2833":1,"2842":1,"2912":1,"2930":1,"2937":1,"2949":1}}],["ones",{"2":{"243":1,"266":1,"331":1,"430":1,"1296":1,"1354":1,"1485":1,"1489":1,"1615":1,"1622":1,"1767":1,"1983":1,"2089":2,"2205":2,"2219":1,"2222":1,"2309":1,"2433":1,"2434":1,"2462":1,"2474":1,"2678":1,"2751":1,"2764":1,"2884":1,"2949":1}}],["oneshots",{"2":{"2890":1}}],["oneshot",{"0":{"2834":1},"2":{"38":2,"63":2,"112":2,"134":1,"160":1,"188":1,"191":2,"211":1,"266":1,"562":1,"564":4,"570":1,"1364":8,"1472":2,"2276":2,"2381":1,"2650":3,"2651":8,"2652":19,"2874":1,"2890":1}}],["onehand",{"2":{"114":1}}],["onekey",{"2":{"49":1,"191":3,"211":1,"222":1,"308":1,"2400":1,"2402":1,"2404":1,"2683":2,"2747":1}}],["one",{"0":{"357":1,"358":1,"1311":1,"1352":1,"1371":1,"1820":1,"2315":1,"2535":1,"2650":1,"2874":1},"1":{"358":1,"359":1,"1312":1,"1821":1,"1822":1,"2651":1,"2652":1},"2":{"37":1,"45":1,"50":1,"55":1,"75":1,"82":1,"89":1,"93":2,"98":1,"107":1,"114":1,"154":1,"156":1,"157":1,"160":4,"163":1,"176":1,"188":1,"191":1,"194":3,"196":1,"199":2,"204":1,"211":2,"213":1,"231":1,"241":1,"253":1,"256":1,"262":1,"268":1,"270":1,"276":1,"279":1,"281":1,"333":1,"339":1,"344":1,"353":1,"357":1,"358":1,"379":1,"403":1,"409":1,"414":1,"429":1,"433":1,"477":1,"512":2,"516":1,"518":1,"521":1,"526":2,"527":1,"560":1,"561":1,"562":1,"564":1,"567":1,"568":1,"574":3,"575":1,"588":1,"589":2,"596":1,"599":2,"615":1,"616":1,"619":1,"639":1,"671":1,"693":1,"696":1,"710":1,"712":2,"715":3,"716":1,"717":1,"718":1,"719":1,"721":1,"722":1,"805":1,"829":1,"831":1,"858":1,"863":1,"890":1,"893":1,"922":1,"923":1,"928":1,"957":1,"962":1,"991":1,"996":1,"1025":1,"1030":1,"1059":1,"1064":1,"1093":1,"1094":1,"1098":1,"1127":1,"1128":1,"1132":1,"1161":1,"1166":1,"1192":3,"1194":2,"1197":2,"1207":1,"1208":1,"1217":1,"1219":1,"1247":1,"1287":1,"1292":2,"1311":1,"1313":1,"1315":1,"1352":1,"1354":1,"1356":1,"1364":12,"1367":2,"1371":1,"1376":1,"1379":1,"1390":1,"1392":1,"1396":3,"1410":4,"1413":3,"1421":1,"1422":3,"1423":1,"1425":1,"1426":2,"1433":1,"1440":1,"1444":3,"1446":1,"1447":2,"1463":1,"1464":2,"1465":2,"1474":5,"1477":1,"1478":2,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1,"1484":4,"1486":2,"1500":1,"1501":1,"1502":1,"1503":3,"1518":2,"1519":1,"1525":1,"1533":3,"1538":2,"1539":2,"1544":1,"1546":1,"1558":1,"1594":3,"1597":3,"1609":2,"1617":2,"1619":3,"1643":1,"1661":1,"1666":1,"1670":1,"1681":1,"1740":1,"1742":1,"1765":2,"1781":1,"1782":1,"1785":2,"1787":1,"1789":2,"1798":1,"1802":1,"1804":3,"1818":1,"1837":1,"1853":1,"1935":1,"1952":2,"1953":1,"1954":1,"1957":1,"1962":1,"1964":1,"1965":2,"1970":3,"1981":1,"1986":2,"1987":3,"1989":1,"1999":2,"2000":1,"2011":1,"2043":1,"2092":1,"2214":1,"2255":1,"2256":1,"2261":1,"2265":2,"2272":2,"2274":1,"2275":2,"2277":1,"2278":1,"2295":1,"2300":3,"2301":2,"2302":1,"2304":1,"2308":3,"2310":4,"2315":1,"2317":3,"2319":1,"2328":1,"2329":1,"2330":1,"2384":1,"2391":1,"2400":1,"2402":1,"2404":1,"2407":2,"2417":2,"2418":1,"2422":1,"2423":3,"2425":1,"2428":2,"2429":1,"2432":1,"2433":1,"2466":6,"2474":1,"2482":2,"2483":1,"2490":1,"2497":1,"2503":1,"2506":1,"2535":37,"2539":1,"2562":2,"2564":1,"2567":1,"2569":1,"2572":1,"2576":1,"2586":1,"2593":1,"2594":1,"2595":1,"2604":1,"2614":2,"2634":1,"2636":1,"2637":1,"2650":9,"2651":40,"2652":7,"2678":1,"2691":1,"2705":1,"2709":1,"2711":1,"2714":1,"2746":2,"2761":3,"2764":2,"2767":1,"2780":1,"2782":1,"2794":1,"2795":1,"2841":1,"2853":1,"2854":2,"2856":1,"2857":2,"2858":1,"2859":1,"2864":2,"2871":2,"2872":1,"2874":1,"2875":1,"2877":2,"2878":2,"2880":2,"2881":1,"2883":1,"2885":2,"2886":1,"2893":1,"2894":1,"2903":1,"2911":2,"2919":1,"2921":1,"2926":2,"2927":1,"2930":2,"2931":1,"2940":1,"2943":1,"2944":1,"2948":1}}],["on",{"0":{"14":1,"235":1,"627":1,"720":1,"1315":1,"1317":1,"1333":1,"1356":1,"1360":1,"1361":1,"1545":1,"1597":1,"1653":1,"1655":1,"1657":1,"1708":1,"1924":1,"2011":1,"2029":1,"2192":1,"2297":1,"2312":2,"2315":1,"2316":2,"2409":1,"2419":1,"2426":1,"2605":1,"2636":1,"2920":1},"1":{"1316":1,"1317":1,"1709":1,"2030":1,"2031":1},"2":{"1":1,"2":1,"10":1,"11":3,"14":2,"24":1,"25":2,"28":2,"30":1,"31":1,"33":1,"34":2,"49":8,"50":4,"51":1,"65":3,"69":1,"73":4,"74":1,"77":1,"90":1,"92":2,"93":3,"99":1,"105":6,"107":1,"113":2,"114":23,"118":1,"123":2,"124":2,"131":1,"133":1,"134":15,"138":1,"145":1,"149":2,"152":1,"153":4,"157":1,"158":3,"160":4,"164":1,"169":2,"176":8,"182":2,"190":1,"191":15,"194":10,"195":1,"198":1,"199":7,"201":1,"202":1,"206":4,"209":2,"210":1,"211":7,"213":3,"215":2,"222":7,"228":2,"231":4,"233":1,"236":11,"240":1,"247":2,"249":4,"255":1,"263":1,"266":3,"276":2,"277":4,"279":1,"284":2,"289":1,"294":3,"302":1,"303":2,"307":1,"312":1,"320":1,"328":2,"333":2,"338":2,"339":2,"340":1,"341":1,"356":1,"365":1,"370":1,"379":2,"383":2,"384":1,"385":1,"393":8,"397":2,"398":1,"399":1,"403":1,"405":1,"406":1,"407":1,"411":2,"412":1,"414":2,"417":1,"418":2,"426":1,"433":1,"444":1,"445":1,"448":1,"449":1,"450":2,"458":1,"459":2,"461":1,"466":1,"467":1,"468":1,"470":1,"489":1,"495":1,"505":1,"512":1,"513":4,"526":1,"527":1,"538":1,"540":1,"544":1,"545":1,"555":1,"561":3,"562":1,"564":10,"565":5,"570":8,"574":1,"578":1,"579":1,"580":1,"589":1,"594":1,"599":5,"600":1,"610":3,"612":1,"613":2,"614":1,"615":4,"616":1,"619":8,"621":1,"626":1,"633":1,"637":1,"639":6,"643":1,"644":1,"648":1,"649":1,"656":1,"661":1,"664":1,"665":1,"666":1,"668":1,"672":1,"675":1,"676":1,"683":1,"684":2,"685":3,"688":1,"690":3,"693":1,"694":2,"696":1,"709":2,"710":3,"711":1,"716":2,"720":3,"721":3,"728":1,"729":5,"743":1,"746":4,"749":1,"752":1,"753":1,"754":5,"755":1,"756":2,"758":1,"759":1,"762":1,"763":1,"764":1,"772":1,"781":1,"784":1,"787":1,"790":1,"793":1,"797":2,"804":1,"805":1,"829":1,"830":1,"831":2,"858":1,"860":2,"862":1,"863":3,"890":1,"891":1,"892":1,"893":3,"922":1,"925":2,"927":1,"928":3,"957":1,"959":2,"961":1,"962":3,"991":1,"993":2,"995":1,"996":3,"1025":1,"1027":2,"1029":1,"1030":3,"1059":1,"1061":2,"1063":1,"1064":3,"1093":1,"1095":2,"1097":1,"1098":3,"1127":1,"1129":2,"1131":1,"1132":3,"1161":1,"1163":2,"1165":1,"1166":3,"1193":1,"1195":2,"1196":1,"1198":1,"1199":1,"1200":2,"1201":2,"1203":3,"1204":4,"1205":2,"1217":1,"1218":1,"1219":3,"1247":1,"1252":4,"1268":1,"1272":1,"1283":1,"1288":1,"1289":1,"1290":1,"1294":3,"1296":1,"1299":1,"1300":1,"1303":2,"1311":1,"1313":1,"1316":1,"1318":1,"1320":2,"1322":1,"1332":1,"1333":1,"1339":1,"1340":1,"1348":2,"1349":1,"1350":1,"1351":2,"1353":2,"1356":1,"1358":4,"1359":1,"1361":3,"1363":3,"1364":3,"1365":1,"1366":1,"1367":1,"1368":1,"1376":2,"1392":4,"1393":3,"1395":1,"1396":1,"1398":2,"1405":2,"1407":1,"1410":3,"1413":10,"1417":3,"1421":1,"1422":5,"1426":1,"1427":3,"1428":24,"1430":1,"1431":6,"1448":2,"1452":2,"1464":2,"1465":2,"1470":1,"1471":2,"1472":6,"1474":4,"1476":1,"1477":1,"1480":1,"1483":3,"1485":5,"1486":6,"1488":1,"1490":4,"1493":4,"1495":10,"1497":1,"1499":2,"1503":2,"1517":1,"1518":3,"1519":1,"1521":3,"1522":1,"1523":1,"1525":3,"1528":1,"1529":1,"1530":3,"1533":1,"1534":1,"1536":2,"1541":2,"1543":3,"1544":4,"1545":4,"1546":2,"1547":1,"1549":1,"1551":2,"1556":3,"1557":1,"1560":1,"1561":1,"1572":1,"1573":1,"1589":2,"1590":2,"1593":1,"1594":5,"1595":2,"1597":4,"1599":4,"1600":1,"1601":1,"1606":5,"1612":1,"1613":5,"1614":2,"1615":1,"1616":1,"1617":3,"1618":1,"1619":1,"1623":1,"1628":1,"1634":1,"1640":2,"1641":10,"1643":1,"1648":2,"1661":1,"1662":1,"1664":1,"1665":1,"1666":1,"1668":3,"1670":2,"1673":1,"1675":1,"1676":2,"1680":8,"1681":5,"1682":1,"1683":1,"1685":1,"1690":1,"1697":1,"1699":2,"1706":1,"1707":1,"1708":2,"1711":1,"1712":2,"1713":1,"1717":1,"1721":1,"1738":2,"1743":1,"1766":1,"1771":1,"1774":1,"1776":1,"1777":3,"1779":4,"1780":3,"1781":1,"1782":1,"1788":1,"1789":2,"1790":2,"1791":3,"1793":2,"1794":1,"1795":6,"1798":1,"1801":1,"1802":1,"1835":1,"1836":2,"1837":1,"1838":3,"1839":4,"1843":4,"1845":2,"1846":3,"1847":1,"1848":4,"1849":2,"1850":1,"1851":1,"1852":2,"1855":1,"1857":1,"1858":1,"1859":1,"1860":1,"1865":1,"1867":1,"1919":1,"1920":1,"1924":4,"1925":3,"1926":1,"1931":1,"1935":1,"1936":2,"1939":3,"1940":1,"1947":1,"1948":1,"1949":1,"1953":5,"1954":17,"1955":2,"1956":3,"1958":1,"1960":2,"1961":3,"1962":3,"1970":1,"1974":2,"1975":4,"1976":1,"1977":2,"1979":1,"1980":1,"1982":1,"1983":3,"1987":3,"1989":1,"1990":2,"1993":1,"1994":2,"1996":2,"1997":4,"1999":3,"2008":1,"2009":2,"2011":1,"2012":1,"2013":3,"2014":1,"2016":2,"2037":1,"2039":1,"2041":1,"2042":1,"2043":3,"2044":1,"2046":1,"2047":1,"2054":2,"2057":8,"2059":3,"2065":1,"2066":1,"2070":1,"2071":1,"2073":1,"2074":1,"2075":4,"2076":2,"2081":2,"2082":3,"2083":1,"2084":4,"2085":6,"2086":1,"2087":1,"2088":1,"2090":1,"2091":5,"2094":1,"2095":3,"2096":2,"2099":1,"2100":1,"2101":1,"2102":1,"2107":1,"2109":1,"2178":3,"2179":2,"2181":1,"2182":1,"2184":1,"2185":1,"2187":1,"2188":1,"2189":2,"2191":4,"2198":4,"2200":6,"2203":3,"2204":1,"2208":1,"2210":3,"2232":1,"2234":1,"2247":1,"2248":1,"2249":1,"2253":2,"2254":5,"2255":2,"2258":1,"2259":1,"2260":1,"2265":1,"2267":1,"2269":1,"2271":1,"2272":1,"2273":1,"2275":1,"2276":9,"2277":2,"2278":7,"2279":2,"2280":1,"2286":1,"2290":18,"2292":1,"2293":3,"2294":1,"2297":1,"2298":2,"2302":1,"2304":7,"2305":1,"2306":4,"2308":1,"2309":14,"2310":12,"2315":7,"2316":1,"2317":3,"2318":1,"2319":7,"2323":1,"2325":1,"2326":1,"2327":2,"2328":1,"2330":3,"2331":3,"2332":1,"2344":1,"2345":1,"2346":1,"2377":1,"2378":1,"2379":1,"2382":1,"2383":3,"2386":1,"2388":2,"2389":2,"2390":1,"2391":1,"2393":2,"2395":1,"2396":1,"2397":1,"2398":1,"2400":3,"2402":3,"2404":4,"2407":2,"2409":2,"2410":5,"2414":1,"2417":1,"2418":3,"2421":1,"2422":1,"2423":4,"2425":2,"2427":6,"2428":6,"2429":3,"2430":2,"2431":5,"2432":2,"2434":4,"2437":1,"2439":1,"2441":1,"2444":1,"2445":1,"2446":2,"2448":1,"2453":1,"2454":1,"2456":1,"2461":1,"2464":1,"2466":1,"2468":2,"2471":1,"2475":1,"2481":1,"2485":4,"2487":4,"2489":4,"2490":1,"2499":1,"2501":2,"2502":2,"2503":2,"2505":2,"2507":3,"2508":1,"2510":2,"2512":10,"2513":3,"2514":3,"2515":3,"2523":7,"2525":4,"2526":11,"2527":3,"2532":1,"2533":4,"2535":3,"2539":6,"2540":1,"2541":1,"2549":2,"2550":1,"2552":11,"2553":1,"2554":3,"2558":2,"2559":4,"2562":2,"2563":1,"2564":1,"2567":31,"2568":1,"2569":1,"2570":1,"2571":1,"2572":1,"2573":2,"2574":1,"2575":2,"2576":3,"2578":2,"2580":2,"2588":1,"2589":1,"2592":1,"2593":1,"2599":3,"2601":1,"2602":1,"2603":1,"2604":1,"2605":1,"2607":1,"2610":1,"2612":5,"2614":1,"2616":4,"2617":1,"2622":1,"2624":1,"2627":1,"2628":2,"2630":1,"2634":4,"2637":3,"2639":2,"2640":3,"2644":1,"2651":6,"2652":3,"2653":2,"2657":1,"2658":2,"2662":2,"2663":1,"2667":2,"2668":4,"2669":1,"2672":1,"2673":1,"2678":2,"2682":1,"2683":2,"2685":1,"2686":1,"2690":3,"2691":4,"2692":1,"2694":3,"2696":1,"2700":1,"2705":1,"2706":1,"2707":3,"2709":2,"2713":1,"2717":1,"2718":1,"2722":1,"2727":2,"2743":1,"2744":4,"2745":1,"2746":6,"2747":2,"2748":1,"2751":1,"2759":1,"2760":1,"2761":5,"2762":3,"2763":5,"2764":18,"2765":1,"2766":1,"2767":4,"2768":2,"2769":1,"2771":1,"2775":1,"2777":2,"2782":1,"2785":1,"2787":1,"2794":1,"2795":3,"2796":1,"2797":1,"2804":1,"2805":1,"2808":1,"2813":1,"2823":1,"2826":1,"2835":1,"2837":1,"2838":1,"2843":1,"2845":1,"2852":1,"2853":2,"2854":2,"2855":2,"2856":4,"2857":4,"2861":3,"2865":1,"2867":3,"2868":2,"2870":1,"2871":3,"2875":2,"2877":2,"2878":3,"2880":2,"2883":1,"2884":3,"2886":1,"2894":1,"2897":1,"2898":1,"2899":1,"2901":1,"2903":3,"2912":3,"2913":1,"2915":2,"2916":3,"2917":2,"2918":2,"2919":5,"2920":9,"2921":2,"2923":1,"2924":1,"2925":12,"2926":6,"2928":1,"2930":2,"2931":2,"2934":1,"2935":1,"2936":1,"2937":1,"2940":1,"2941":1,"2942":1,"2945":1}}],["often",{"0":{"2638":1},"1":{"2639":1,"2640":1,"2641":1},"2":{"99":1,"561":1,"645":1,"646":1,"709":1,"720":1,"1283":1,"1318":1,"1344":1,"1347":1,"1352":1,"1409":3,"1410":1,"1415":1,"1497":1,"1593":2,"1670":1,"1678":1,"1999":1,"2178":1,"2208":1,"2291":1,"2317":1,"2469":1,"2632":1,"2633":1,"2635":1,"2748":1,"2828":1,"2835":2,"2837":1,"2844":1}}],["offending",{"0":{"2567":1},"2":{"2570":1,"2571":1,"2746":1}}],["offer",{"2":{"2179":1,"2424":1}}],["offered",{"2":{"1781":1,"1783":1}}],["offers",{"2":{"1367":1,"1484":1,"1550":1,"2664":1}}],["official",{"2":{"1356":1,"1395":1,"2483":1,"2567":1,"2664":1,"2684":1,"2694":1,"2695":1,"2753":1,"2898":1}}],["officially",{"2":{"254":1,"1342":1,"1343":1,"2603":1}}],["offloaded",{"2":{"1196":1,"1199":1}}],["offload",{"2":{"764":1,"1292":1,"1293":1,"1294":1}}],["offsetof",{"2":{"1419":4}}],["offset=0",{"2":{"524":1}}],["offsets",{"2":{"222":1,"249":1,"1538":1,"1953":1,"2763":6,"2764":4,"2780":4}}],["offset",{"0":{"2780":1,"2800":1},"2":{"199":1,"211":2,"222":1,"317":1,"524":4,"754":1,"755":1,"1419":4,"1538":2,"1937":12,"1949":1,"1952":1,"2085":1,"2185":1,"2288":1,"2763":2,"2764":8,"2777":1,"2779":2,"2780":2,"2787":1,"2788":3,"2797":1,"2800":4}}],["offs",{"2":{"114":1}}],["offhand",{"2":{"31":1,"34":1,"1948":1,"2287":1}}],["off",{"0":{"1311":1,"1654":1,"1656":1,"1658":1,"1710":1,"1924":1,"2192":1,"2315":1},"1":{"1312":1},"2":{"25":1,"92":1,"105":4,"114":2,"116":1,"134":1,"149":1,"152":1,"160":1,"195":1,"211":1,"222":1,"236":1,"247":2,"328":1,"333":1,"346":1,"409":1,"418":1,"513":1,"561":1,"565":3,"570":2,"609":1,"619":1,"647":1,"651":1,"652":2,"653":2,"669":1,"719":1,"720":2,"857":2,"860":14,"1092":2,"1095":14,"1126":2,"1129":14,"1160":2,"1163":14,"1311":1,"1364":1,"1417":1,"1422":1,"1426":1,"1427":1,"1428":7,"1431":2,"1433":1,"1464":1,"1485":6,"1486":5,"1490":3,"1493":2,"1495":8,"1521":3,"1529":1,"1530":3,"1536":1,"1541":1,"1543":4,"1544":1,"1546":1,"1549":1,"1560":1,"1562":1,"1572":1,"1574":1,"1597":1,"1598":1,"1599":2,"1601":1,"1606":4,"1640":2,"1641":7,"1648":1,"1678":1,"1680":6,"1681":1,"1684":2,"1710":1,"1779":1,"1780":3,"1789":1,"1791":1,"1792":1,"1793":2,"1838":1,"1839":4,"1843":4,"1848":4,"1852":2,"1857":1,"1858":1,"1861":1,"1862":1,"1919":1,"1924":4,"1925":4,"1947":1,"1949":1,"1954":8,"1955":2,"1968":1,"1983":1,"2008":7,"2009":1,"2012":4,"2013":4,"2041":1,"2043":1,"2084":4,"2085":3,"2089":2,"2091":2,"2097":3,"2099":1,"2100":1,"2103":1,"2104":1,"2181":1,"2182":1,"2191":3,"2192":2,"2200":4,"2204":1,"2205":2,"2210":1,"2253":2,"2254":3,"2276":4,"2286":2,"2288":1,"2290":10,"2304":6,"2306":2,"2310":1,"2315":8,"2318":1,"2319":5,"2417":2,"2418":3,"2425":1,"2427":1,"2429":1,"2512":8,"2513":3,"2514":3,"2515":4,"2523":2,"2525":4,"2526":5,"2527":4,"2532":1,"2533":4,"2535":3,"2539":5,"2552":5,"2558":2,"2569":1,"2651":4,"2652":5,"2722":1,"2743":1,"2746":2,"2761":1,"2764":2,"2767":1,"2768":2,"2769":1,"2857":1,"2871":1,"2877":1,"2878":1,"2880":2,"2935":1}}],["of",{"0":{"8":1,"28":1,"33":1,"89":1,"123":1,"124":1,"262":1,"265":1,"275":1,"302":1,"303":1,"307":1,"316":1,"323":1,"327":1,"331":1,"332":1,"337":1,"338":1,"409":1,"423":1,"592":1,"621":1,"630":1,"713":1,"1349":1,"1379":1,"1410":1,"1643":1,"1788":1,"1796":1,"1838":1,"1839":1,"2000":1,"2206":1,"2474":1,"2560":1,"2635":1,"2765":1,"2801":1,"2888":1,"2943":1},"1":{"34":1,"631":1,"632":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"2561":1,"2562":1,"2563":1,"2564":1,"2636":1,"2637":1,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1,"2802":1,"2803":1,"2804":1,"2805":1,"2806":1,"2807":1,"2808":1,"2809":1,"2810":1,"2811":1,"2812":1,"2813":1,"2814":1,"2815":1,"2816":1,"2817":1,"2818":1,"2819":1,"2820":1,"2821":1,"2822":1,"2823":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":1,"2832":1,"2833":1,"2834":1,"2835":1,"2836":1,"2837":1,"2838":1,"2839":1,"2840":1,"2841":1,"2842":1,"2843":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2849":1,"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"0":1,"3":2,"4":1,"5":1,"6":1,"10":1,"15":2,"17":1,"19":1,"21":1,"22":2,"23":1,"25":2,"30":2,"31":3,"32":1,"33":2,"34":1,"37":1,"43":1,"45":3,"49":4,"50":9,"51":1,"55":1,"63":1,"64":1,"65":3,"67":1,"69":1,"70":2,"74":4,"76":3,"83":1,"86":2,"87":2,"88":2,"93":3,"94":3,"95":2,"98":2,"99":2,"103":4,"104":2,"107":3,"109":1,"112":3,"113":4,"114":15,"118":2,"119":4,"123":1,"124":3,"125":1,"126":2,"127":2,"130":2,"131":3,"132":1,"133":2,"134":21,"142":1,"149":11,"152":1,"153":3,"154":1,"156":5,"157":2,"158":1,"160":4,"163":4,"164":1,"166":3,"167":1,"169":3,"172":1,"173":3,"174":3,"175":2,"176":16,"182":4,"183":1,"184":2,"185":1,"186":1,"187":1,"189":3,"190":1,"191":15,"194":8,"195":1,"196":1,"198":4,"199":16,"201":6,"202":4,"203":5,"204":2,"209":2,"210":1,"211":20,"213":4,"214":1,"215":1,"222":10,"224":3,"228":1,"229":1,"231":1,"233":6,"234":2,"236":12,"238":5,"243":1,"245":1,"246":1,"247":1,"248":1,"249":6,"251":2,"254":2,"255":2,"256":2,"259":1,"262":5,"263":3,"265":3,"266":10,"268":2,"272":2,"273":2,"275":2,"276":1,"277":4,"279":6,"283":1,"285":9,"288":4,"293":2,"294":3,"297":3,"298":1,"303":1,"304":1,"305":2,"307":8,"308":10,"312":4,"314":2,"316":2,"317":2,"323":1,"327":1,"328":7,"331":1,"333":7,"338":1,"339":1,"350":1,"352":1,"354":1,"366":2,"367":2,"369":1,"375":2,"378":5,"379":5,"389":1,"393":2,"396":3,"397":1,"398":3,"399":1,"403":5,"407":1,"408":3,"411":2,"412":7,"414":1,"417":1,"425":1,"429":2,"430":1,"431":1,"433":3,"434":1,"435":1,"436":1,"452":1,"453":1,"454":1,"455":1,"469":1,"472":1,"489":3,"491":2,"493":2,"494":4,"495":2,"504":1,"505":1,"507":1,"509":1,"510":1,"512":13,"513":2,"514":4,"516":1,"521":1,"522":1,"523":2,"524":5,"525":2,"528":1,"529":2,"530":1,"534":1,"538":2,"540":2,"541":1,"542":2,"543":1,"544":1,"545":1,"547":1,"555":5,"559":1,"560":2,"561":12,"563":1,"564":7,"565":9,"568":2,"569":1,"570":6,"572":1,"574":1,"575":1,"576":1,"578":2,"579":2,"580":1,"581":1,"586":1,"588":4,"589":2,"591":1,"592":1,"593":2,"594":1,"599":1,"600":1,"605":1,"607":1,"609":1,"611":1,"613":8,"614":1,"615":3,"616":2,"619":9,"620":1,"621":4,"622":1,"623":1,"626":1,"627":1,"628":1,"629":2,"630":2,"631":1,"633":1,"637":2,"639":8,"643":1,"646":1,"647":2,"648":2,"651":2,"655":1,"656":4,"657":3,"660":3,"661":2,"665":10,"666":1,"671":5,"673":2,"675":2,"677":2,"683":1,"684":1,"685":2,"686":1,"690":4,"693":1,"694":2,"696":6,"699":3,"702":1,"704":1,"709":1,"710":3,"711":3,"712":5,"713":1,"715":1,"717":1,"719":8,"720":1,"721":2,"722":1,"724":1,"732":1,"734":1,"735":1,"737":1,"740":2,"746":3,"748":2,"749":5,"750":4,"751":1,"752":1,"753":5,"754":12,"755":7,"756":7,"757":3,"758":1,"759":4,"760":1,"762":5,"763":1,"764":3,"768":1,"770":3,"773":3,"776":3,"779":5,"782":3,"785":3,"788":3,"791":3,"794":1,"797":3,"798":2,"799":4,"802":1,"810":1,"812":1,"814":1,"816":1,"818":1,"826":1,"828":5,"829":1,"834":1,"837":1,"839":1,"841":1,"843":1,"845":1,"855":1,"857":6,"858":1,"860":1,"866":1,"869":1,"871":1,"873":1,"875":1,"877":1,"887":1,"889":5,"890":1,"896":1,"899":1,"903":1,"905":1,"907":1,"909":1,"919":1,"921":6,"922":1,"925":1,"931":1,"934":1,"938":1,"940":1,"942":1,"944":1,"954":1,"956":6,"957":1,"959":1,"965":1,"968":1,"972":1,"974":1,"976":1,"978":1,"988":1,"990":6,"991":1,"993":1,"999":1,"1002":1,"1006":1,"1008":1,"1010":1,"1012":1,"1022":1,"1024":7,"1025":1,"1027":1,"1033":1,"1036":1,"1040":1,"1042":1,"1044":1,"1046":1,"1056":1,"1058":7,"1059":1,"1061":1,"1067":1,"1070":1,"1074":1,"1076":1,"1078":1,"1080":1,"1090":1,"1092":6,"1093":1,"1095":1,"1101":1,"1104":1,"1108":1,"1110":1,"1112":1,"1114":1,"1124":1,"1126":6,"1127":1,"1129":1,"1135":1,"1138":1,"1142":1,"1144":1,"1146":1,"1148":1,"1158":1,"1160":7,"1161":1,"1163":1,"1169":1,"1171":1,"1172":1,"1176":1,"1178":1,"1180":1,"1182":1,"1192":2,"1193":2,"1195":1,"1196":2,"1197":2,"1198":1,"1200":6,"1201":1,"1203":3,"1204":2,"1205":5,"1207":1,"1209":1,"1213":1,"1214":2,"1216":5,"1217":1,"1222":1,"1225":1,"1229":1,"1231":1,"1233":1,"1235":1,"1245":1,"1247":1,"1250":1,"1252":3,"1260":2,"1263":2,"1266":1,"1268":1,"1271":1,"1278":2,"1280":2,"1283":2,"1285":7,"1286":2,"1287":2,"1288":1,"1291":1,"1295":2,"1300":1,"1302":1,"1303":1,"1306":1,"1308":1,"1311":1,"1313":1,"1315":2,"1316":1,"1317":1,"1319":1,"1322":1,"1327":1,"1328":1,"1329":1,"1330":1,"1332":1,"1333":1,"1335":2,"1336":2,"1337":2,"1343":5,"1345":1,"1348":1,"1349":2,"1352":1,"1353":1,"1356":5,"1359":1,"1362":3,"1364":8,"1366":1,"1367":13,"1368":2,"1376":4,"1378":2,"1379":3,"1381":1,"1383":1,"1387":1,"1390":1,"1395":1,"1396":1,"1398":2,"1400":1,"1401":1,"1404":1,"1407":3,"1410":12,"1413":11,"1414":1,"1415":3,"1416":1,"1417":6,"1418":1,"1419":3,"1420":1,"1421":3,"1422":3,"1423":6,"1425":2,"1427":4,"1428":4,"1431":4,"1432":1,"1433":5,"1434":2,"1438":1,"1439":1,"1440":2,"1443":1,"1446":2,"1448":2,"1450":1,"1451":2,"1452":1,"1455":1,"1457":1,"1462":2,"1464":1,"1465":1,"1467":4,"1470":4,"1471":3,"1472":7,"1474":3,"1477":2,"1480":2,"1484":1,"1485":5,"1486":1,"1487":1,"1488":1,"1491":1,"1492":2,"1493":5,"1495":2,"1497":1,"1498":2,"1499":1,"1502":1,"1503":4,"1510":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":2,"1518":3,"1519":1,"1521":1,"1522":3,"1524":1,"1525":2,"1528":3,"1529":1,"1530":1,"1532":2,"1533":3,"1534":4,"1535":2,"1538":12,"1539":2,"1541":4,"1544":4,"1545":1,"1546":5,"1548":1,"1549":1,"1551":1,"1553":1,"1554":1,"1558":3,"1589":2,"1591":2,"1592":1,"1593":1,"1602":2,"1605":2,"1609":5,"1612":3,"1613":1,"1614":1,"1618":1,"1620":1,"1621":2,"1622":4,"1623":2,"1626":1,"1627":1,"1628":1,"1630":1,"1633":7,"1639":2,"1643":1,"1648":3,"1650":1,"1651":4,"1659":1,"1660":2,"1661":4,"1662":3,"1663":3,"1664":2,"1666":2,"1667":2,"1668":1,"1669":1,"1670":1,"1672":2,"1678":2,"1681":5,"1686":2,"1690":1,"1691":2,"1692":2,"1693":2,"1694":2,"1695":2,"1699":4,"1704":1,"1713":2,"1715":1,"1717":2,"1720":4,"1721":1,"1722":4,"1732":1,"1733":1,"1740":2,"1741":2,"1742":4,"1746":1,"1747":1,"1751":1,"1752":1,"1753":1,"1754":1,"1755":1,"1758":1,"1759":1,"1760":1,"1762":2,"1765":2,"1766":3,"1769":1,"1774":1,"1779":2,"1781":4,"1782":4,"1783":2,"1784":4,"1785":3,"1786":3,"1787":5,"1788":5,"1789":2,"1791":2,"1792":1,"1796":1,"1798":1,"1800":1,"1801":3,"1802":8,"1803":2,"1835":1,"1836":1,"1837":2,"1840":1,"1841":1,"1842":1,"1843":2,"1845":2,"1846":14,"1849":5,"1850":2,"1851":3,"1852":5,"1863":1,"1865":1,"1867":1,"1878":1,"1906":1,"1913":2,"1916":2,"1923":3,"1934":3,"1935":4,"1936":9,"1937":1,"1938":2,"1939":3,"1940":2,"1943":1,"1945":1,"1946":1,"1947":2,"1949":5,"1950":1,"1951":3,"1952":10,"1953":2,"1954":16,"1957":2,"1959":3,"1961":1,"1962":2,"1964":1,"1965":1,"1966":4,"1967":1,"1968":2,"1970":3,"1974":8,"1976":2,"1977":4,"1978":3,"1979":1,"1980":2,"1981":5,"1982":2,"1983":7,"1985":4,"1986":4,"1989":2,"1990":1,"1992":1,"1993":1,"1994":5,"1999":1,"2001":2,"2003":2,"2006":1,"2008":5,"2009":1,"2011":1,"2012":1,"2013":1,"2014":3,"2016":2,"2021":1,"2022":1,"2023":1,"2024":1,"2025":1,"2026":1,"2027":1,"2028":1,"2029":1,"2030":1,"2034":1,"2036":1,"2037":2,"2043":2,"2044":3,"2046":1,"2047":1,"2048":1,"2051":2,"2056":2,"2057":6,"2059":2,"2062":1,"2064":1,"2065":1,"2067":1,"2068":1,"2069":3,"2070":2,"2073":1,"2076":1,"2077":1,"2078":1,"2081":2,"2082":14,"2085":10,"2086":9,"2088":2,"2090":3,"2091":6,"2094":1,"2105":1,"2107":1,"2109":1,"2120":1,"2166":1,"2173":2,"2176":2,"2178":3,"2179":6,"2180":2,"2181":1,"2183":1,"2185":6,"2187":7,"2188":2,"2189":5,"2190":2,"2191":3,"2194":1,"2198":2,"2199":4,"2203":1,"2206":3,"2207":2,"2208":1,"2209":2,"2210":1,"2211":1,"2213":1,"2214":1,"2217":2,"2219":3,"2221":1,"2222":2,"2228":1,"2230":1,"2231":1,"2232":1,"2234":1,"2235":1,"2252":1,"2256":1,"2259":1,"2260":2,"2261":1,"2264":1,"2265":1,"2266":1,"2267":2,"2269":2,"2270":1,"2272":2,"2273":1,"2274":1,"2275":10,"2276":28,"2277":2,"2278":7,"2279":1,"2280":2,"2281":1,"2283":1,"2284":1,"2285":1,"2286":2,"2288":2,"2289":4,"2290":11,"2291":4,"2292":3,"2293":2,"2294":2,"2295":16,"2296":6,"2297":3,"2298":5,"2300":17,"2301":1,"2303":1,"2305":2,"2308":3,"2309":6,"2310":6,"2312":1,"2316":1,"2317":8,"2318":3,"2319":6,"2320":1,"2323":1,"2325":3,"2326":1,"2327":2,"2328":1,"2329":5,"2330":6,"2331":4,"2348":1,"2352":1,"2362":1,"2379":6,"2381":2,"2382":4,"2383":2,"2384":1,"2386":2,"2388":1,"2389":1,"2390":1,"2391":2,"2393":2,"2395":2,"2396":1,"2397":4,"2398":2,"2400":2,"2402":2,"2404":2,"2407":1,"2409":1,"2410":2,"2412":1,"2414":1,"2415":5,"2417":12,"2418":2,"2421":1,"2423":4,"2424":4,"2425":6,"2426":1,"2427":13,"2428":5,"2429":5,"2430":2,"2431":3,"2432":4,"2434":7,"2435":2,"2437":1,"2439":2,"2446":1,"2449":1,"2450":1,"2451":1,"2453":4,"2455":3,"2456":1,"2458":1,"2459":1,"2461":2,"2464":1,"2465":1,"2466":7,"2467":1,"2468":2,"2469":2,"2470":2,"2472":2,"2474":4,"2475":4,"2477":3,"2479":3,"2481":1,"2482":4,"2483":1,"2490":2,"2494":1,"2496":1,"2497":2,"2501":2,"2502":4,"2503":5,"2504":5,"2505":1,"2507":1,"2508":3,"2509":1,"2510":1,"2512":2,"2513":1,"2514":1,"2526":3,"2537":1,"2541":2,"2549":2,"2551":1,"2552":4,"2553":1,"2556":4,"2557":4,"2558":4,"2559":2,"2560":2,"2561":3,"2562":5,"2563":2,"2564":2,"2566":1,"2567":8,"2568":9,"2569":2,"2570":2,"2571":3,"2572":6,"2573":2,"2576":4,"2578":2,"2579":3,"2582":1,"2583":1,"2584":2,"2585":4,"2586":4,"2587":3,"2590":2,"2593":4,"2594":1,"2599":2,"2603":4,"2604":1,"2606":1,"2607":1,"2608":1,"2609":2,"2610":2,"2612":3,"2614":1,"2617":1,"2619":1,"2620":1,"2626":2,"2627":3,"2628":4,"2629":3,"2632":2,"2633":1,"2634":13,"2635":2,"2636":2,"2637":1,"2638":3,"2640":3,"2641":1,"2643":1,"2650":3,"2651":1,"2652":3,"2653":1,"2655":1,"2658":2,"2659":1,"2662":1,"2663":2,"2664":2,"2665":2,"2668":1,"2669":2,"2671":1,"2673":1,"2674":1,"2676":1,"2678":1,"2680":2,"2683":8,"2684":7,"2685":8,"2686":4,"2687":2,"2690":1,"2691":2,"2693":1,"2694":3,"2695":1,"2700":3,"2702":2,"2704":1,"2705":2,"2706":1,"2707":5,"2709":3,"2710":3,"2711":4,"2713":1,"2714":5,"2715":1,"2716":2,"2717":2,"2718":2,"2719":1,"2720":4,"2721":3,"2722":2,"2730":3,"2731":1,"2733":4,"2741":1,"2743":1,"2744":10,"2745":1,"2746":11,"2747":6,"2748":1,"2749":2,"2750":4,"2751":1,"2753":1,"2759":4,"2761":9,"2762":12,"2763":21,"2764":29,"2765":2,"2769":1,"2771":1,"2772":1,"2774":2,"2775":1,"2777":6,"2778":5,"2779":6,"2780":4,"2781":6,"2782":2,"2783":2,"2784":1,"2785":5,"2787":7,"2788":1,"2789":1,"2790":1,"2791":1,"2792":4,"2794":4,"2795":4,"2796":1,"2797":1,"2799":1,"2802":2,"2803":1,"2805":1,"2807":1,"2811":1,"2812":1,"2817":1,"2818":1,"2823":1,"2825":1,"2828":2,"2831":1,"2833":2,"2835":1,"2840":1,"2841":2,"2845":2,"2846":2,"2851":2,"2852":3,"2853":2,"2854":4,"2855":1,"2856":1,"2857":4,"2858":1,"2859":1,"2860":1,"2861":2,"2862":1,"2863":2,"2864":7,"2865":2,"2868":4,"2869":19,"2870":1,"2871":13,"2872":6,"2874":2,"2875":1,"2877":5,"2878":13,"2879":1,"2880":5,"2881":1,"2882":1,"2883":2,"2884":3,"2885":3,"2886":2,"2888":2,"2889":2,"2890":1,"2892":2,"2893":2,"2894":2,"2895":3,"2896":3,"2897":1,"2901":1,"2902":6,"2903":3,"2906":2,"2907":4,"2908":1,"2909":1,"2910":4,"2912":6,"2913":2,"2914":2,"2918":2,"2919":4,"2920":3,"2921":3,"2922":7,"2923":1,"2924":3,"2925":1,"2926":7,"2928":6,"2929":1,"2930":3,"2931":3,"2932":1,"2933":1,"2934":4,"2935":2,"2936":6,"2937":6,"2938":3,"2939":3,"2940":5,"2941":3,"2943":4,"2944":4,"2945":1,"2948":1,"2949":7}}],["ordinarily",{"2":{"1518":1}}],["ordering",{"2":{"50":1,"2044":1,"2746":1}}],["order",{"0":{"1287":1,"1611":1,"1612":1,"2206":1},"2":{"10":1,"49":3,"50":1,"119":1,"124":1,"125":1,"132":1,"133":1,"134":1,"158":2,"174":1,"176":2,"185":1,"186":1,"188":1,"191":2,"211":1,"218":1,"221":1,"234":2,"272":1,"277":1,"308":1,"340":1,"379":1,"458":1,"483":1,"568":1,"572":1,"575":2,"633":1,"681":1,"709":1,"729":1,"749":1,"750":1,"754":2,"759":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1203":1,"1204":1,"1219":1,"1285":3,"1287":7,"1320":1,"1366":1,"1376":1,"1410":1,"1417":1,"1427":1,"1439":2,"1514":1,"1538":1,"1611":2,"1612":8,"1787":1,"1953":1,"2044":1,"2054":1,"2086":1,"2189":1,"2206":5,"2259":1,"2269":1,"2270":1,"2297":1,"2305":1,"2310":1,"2317":1,"2319":1,"2416":1,"2429":1,"2454":1,"2455":1,"2482":1,"2499":1,"2567":1,"2569":1,"2612":2,"2632":1,"2683":2,"2684":1,"2685":2,"2707":1,"2713":1,"2746":1,"2747":1,"2762":1,"2874":1,"2901":1,"2912":1,"2913":1,"2919":1,"2949":1}}],["ored",{"2":{"1362":1}}],["orient",{"2":{"2273":1}}],["orientation",{"2":{"2051":5,"2764":1}}],["oriented",{"2":{"634":1,"1948":1,"2287":1,"2941":1}}],["oring",{"2":{"1538":2,"2575":1}}],["originating",{"2":{"1976":1,"1977":1}}],["original",{"2":{"124":1,"656":1,"1367":1,"1662":1,"1766":1,"1963":1,"2412":1,"2464":1,"2803":1,"2928":1}}],["originally",{"2":{"113":1,"293":1,"305":1,"314":1,"1343":1,"1540":1,"2389":1,"2500":1,"2744":1}}],["origin",{"2":{"411":1,"421":2,"422":1,"423":2,"459":2,"613":1,"2600":3,"2637":6,"2639":4,"2640":1}}],["orange",{"2":{"149":1,"710":1,"1958":1,"2089":2,"2205":3}}],["organise",{"2":{"211":1}}],["organize",{"2":{"114":1,"149":1,"2450":1}}],["organization",{"2":{"21":1,"149":1,"268":1,"279":1,"348":1,"2410":1,"2450":3}}],["org",{"2":{"149":1,"610":1,"1353":1,"1358":1,"1378":1,"1386":1,"1387":1,"1467":1,"1928":1,"2750":1}}],["orbit",{"2":{"149":1}}],["orthocode",{"2":{"277":1}}],["orthograph",{"2":{"249":1}}],["ortho60",{"2":{"199":1}}],["ortholinear",{"2":{"114":1,"684":1,"1490":1,"2423":1}}],["ortho",{"2":{"70":1,"143":4,"211":3,"249":1,"1436":4,"1439":1,"1492":1,"2425":1,"2449":1,"2721":2,"2746":1,"2852":1}}],["or",{"0":{"1349":1,"1993":1,"2307":1,"2632":1,"2849":1,"2913":1,"2932":1,"2944":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1,"2914":1,"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1},"2":{"0":1,"9":1,"16":1,"19":1,"22":1,"23":1,"32":1,"39":1,"49":1,"52":1,"82":1,"87":1,"88":2,"90":2,"103":2,"104":2,"119":2,"126":2,"127":2,"131":1,"134":1,"138":1,"152":2,"153":2,"158":2,"160":1,"182":1,"191":1,"201":1,"202":1,"203":2,"214":2,"221":1,"222":1,"232":1,"234":4,"240":3,"244":1,"263":1,"268":1,"275":1,"279":2,"288":1,"302":1,"312":1,"339":1,"353":1,"370":1,"399":3,"403":1,"414":5,"417":1,"418":2,"429":7,"430":3,"433":3,"435":1,"436":1,"437":3,"439":1,"440":3,"445":2,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"459":1,"460":1,"462":1,"463":3,"470":1,"477":1,"487":1,"488":1,"492":1,"493":1,"495":1,"496":1,"507":2,"509":1,"512":3,"513":2,"516":1,"519":1,"520":1,"524":2,"528":1,"538":2,"540":1,"541":1,"544":1,"545":2,"556":1,"557":2,"561":3,"564":3,"565":2,"569":1,"570":1,"574":2,"581":1,"591":1,"592":1,"596":1,"597":1,"600":3,"610":2,"612":1,"613":3,"614":1,"616":4,"619":7,"620":1,"621":1,"622":1,"627":3,"628":1,"630":3,"639":4,"644":1,"645":2,"647":2,"648":2,"651":3,"656":1,"657":2,"660":1,"665":1,"666":1,"668":1,"669":1,"672":3,"683":2,"684":1,"685":2,"690":2,"693":1,"696":3,"698":1,"710":5,"713":1,"714":1,"715":4,"719":4,"720":6,"721":1,"723":1,"724":1,"743":1,"746":1,"748":1,"758":1,"761":1,"762":2,"799":2,"800":1,"801":1,"821":3,"823":1,"826":1,"827":1,"848":3,"850":1,"855":1,"856":1,"887":1,"888":1,"912":3,"914":1,"919":1,"920":1,"947":3,"949":1,"954":1,"955":1,"981":3,"983":1,"988":1,"989":1,"1015":3,"1017":1,"1022":1,"1023":1,"1049":3,"1051":1,"1056":1,"1057":1,"1090":1,"1091":1,"1124":1,"1125":1,"1158":1,"1159":1,"1194":1,"1195":1,"1196":1,"1197":1,"1198":1,"1200":3,"1201":1,"1205":1,"1207":1,"1214":1,"1215":1,"1238":3,"1240":1,"1246":1,"1253":1,"1256":1,"1267":1,"1284":1,"1285":1,"1287":1,"1289":2,"1290":1,"1294":1,"1297":1,"1311":1,"1313":1,"1315":2,"1316":1,"1318":2,"1322":1,"1329":1,"1342":1,"1343":1,"1346":1,"1351":1,"1352":1,"1353":2,"1362":1,"1363":1,"1364":2,"1367":3,"1387":2,"1388":1,"1390":1,"1391":1,"1409":1,"1410":1,"1413":1,"1417":3,"1421":1,"1422":4,"1423":1,"1425":1,"1426":1,"1427":2,"1428":4,"1429":1,"1430":1,"1439":1,"1440":1,"1442":2,"1444":2,"1446":3,"1448":5,"1452":1,"1457":1,"1464":1,"1465":2,"1466":2,"1467":3,"1470":2,"1471":1,"1472":2,"1473":1,"1477":3,"1478":1,"1480":3,"1481":1,"1482":1,"1483":1,"1485":1,"1486":2,"1488":1,"1490":1,"1492":2,"1493":1,"1498":2,"1499":1,"1501":1,"1503":1,"1517":3,"1522":1,"1524":1,"1525":3,"1527":3,"1528":1,"1529":1,"1532":2,"1534":1,"1537":1,"1538":1,"1541":2,"1542":1,"1543":1,"1544":1,"1545":3,"1546":1,"1547":1,"1558":1,"1560":1,"1572":1,"1590":1,"1591":1,"1593":5,"1594":5,"1595":1,"1597":2,"1601":2,"1602":1,"1605":1,"1608":1,"1609":1,"1612":6,"1613":2,"1617":1,"1618":1,"1620":1,"1621":2,"1622":1,"1623":1,"1625":1,"1626":1,"1630":3,"1631":1,"1632":1,"1634":1,"1639":1,"1641":2,"1651":1,"1661":5,"1662":1,"1668":1,"1670":1,"1671":1,"1672":1,"1673":1,"1674":1,"1678":1,"1680":1,"1685":1,"1686":1,"1687":2,"1688":1,"1697":1,"1708":1,"1712":1,"1726":1,"1728":1,"1738":1,"1740":1,"1742":1,"1749":2,"1757":1,"1765":1,"1766":1,"1767":1,"1774":1,"1776":1,"1781":2,"1782":1,"1785":1,"1788":5,"1791":2,"1794":1,"1801":1,"1804":1,"1838":1,"1839":1,"1843":3,"1846":4,"1848":1,"1850":2,"1855":2,"1857":1,"1858":1,"1865":1,"1867":1,"1923":2,"1934":2,"1935":2,"1937":2,"1939":2,"1943":3,"1945":1,"1947":1,"1948":2,"1949":1,"1953":1,"1954":10,"1956":1,"1958":1,"1964":1,"1973":2,"1974":1,"1983":4,"1986":3,"1987":2,"1994":1,"1996":1,"1999":2,"2000":2,"2001":1,"2003":1,"2008":4,"2014":1,"2016":1,"2037":2,"2039":2,"2040":2,"2041":1,"2046":2,"2051":1,"2052":1,"2054":1,"2057":3,"2068":2,"2069":1,"2072":1,"2074":1,"2075":1,"2076":1,"2078":1,"2082":4,"2084":1,"2088":2,"2094":2,"2099":1,"2100":1,"2107":1,"2109":1,"2181":2,"2184":1,"2188":1,"2191":2,"2203":1,"2211":1,"2251":1,"2253":1,"2254":4,"2258":1,"2259":2,"2260":2,"2261":3,"2265":2,"2272":1,"2273":2,"2276":1,"2277":3,"2278":2,"2279":2,"2280":1,"2284":1,"2286":1,"2287":2,"2290":5,"2292":1,"2293":1,"2294":2,"2295":1,"2298":4,"2300":5,"2301":1,"2304":2,"2309":4,"2310":2,"2317":4,"2318":2,"2319":1,"2323":1,"2327":1,"2328":1,"2329":1,"2330":2,"2331":1,"2332":1,"2365":1,"2376":1,"2379":2,"2381":2,"2383":3,"2386":2,"2388":1,"2389":1,"2393":2,"2395":2,"2396":1,"2398":2,"2400":3,"2402":3,"2404":3,"2406":1,"2407":3,"2410":1,"2411":1,"2417":3,"2418":1,"2421":1,"2423":2,"2426":1,"2427":4,"2428":1,"2429":1,"2431":2,"2432":2,"2433":1,"2434":4,"2435":2,"2444":1,"2445":1,"2449":1,"2451":1,"2453":1,"2454":1,"2455":3,"2458":1,"2465":1,"2466":2,"2470":1,"2474":1,"2482":1,"2483":1,"2486":1,"2502":3,"2508":1,"2511":1,"2515":1,"2519":1,"2522":1,"2523":1,"2525":1,"2532":1,"2533":1,"2539":1,"2540":1,"2554":1,"2558":1,"2559":1,"2561":3,"2562":3,"2567":3,"2568":3,"2569":2,"2570":1,"2575":1,"2576":2,"2584":2,"2585":2,"2586":2,"2587":2,"2589":3,"2603":1,"2607":1,"2608":1,"2612":7,"2613":1,"2614":5,"2616":3,"2617":1,"2620":1,"2626":6,"2627":1,"2638":2,"2640":2,"2650":1,"2651":2,"2652":1,"2656":2,"2659":1,"2662":1,"2663":1,"2665":1,"2668":1,"2678":1,"2680":1,"2683":1,"2685":3,"2691":1,"2692":2,"2695":1,"2703":1,"2707":3,"2709":1,"2711":1,"2714":1,"2719":1,"2720":1,"2722":2,"2726":1,"2727":2,"2730":1,"2731":3,"2743":1,"2744":3,"2745":1,"2746":18,"2747":3,"2748":1,"2749":2,"2750":5,"2752":1,"2759":1,"2760":1,"2761":1,"2762":1,"2763":5,"2764":12,"2765":1,"2767":1,"2769":1,"2770":1,"2771":1,"2772":2,"2773":2,"2774":3,"2775":1,"2776":1,"2777":1,"2781":2,"2787":1,"2789":1,"2790":1,"2794":1,"2797":1,"2805":1,"2808":1,"2813":1,"2819":1,"2825":2,"2834":1,"2841":2,"2849":1,"2852":2,"2854":1,"2869":3,"2871":1,"2877":1,"2878":1,"2886":1,"2889":2,"2892":2,"2893":2,"2894":1,"2899":1,"2902":4,"2903":3,"2906":1,"2912":1,"2913":4,"2914":1,"2919":2,"2920":1,"2922":1,"2924":3,"2925":5,"2926":5,"2928":5,"2930":2,"2932":2,"2939":1,"2940":1,"2946":1,"2948":1}}],["dx",{"2":{"2889":1}}],["dlls",{"2":{"2731":1}}],["dlr",{"2":{"2534":1,"2555":1}}],["dg",{"2":{"2627":1}}],["dgk6x",{"2":{"199":1,"207":2,"322":2}}],["dqt",{"2":{"2534":1,"2555":1}}],["dquote",{"2":{"521":2}}],["dquo",{"2":{"176":2,"2534":1,"2555":1,"2578":6}}],["d♯",{"2":{"1925":6,"2527":6}}],["ds5",{"2":{"1925":1,"2527":1}}],["ds4",{"2":{"1925":1,"2527":1}}],["ds3",{"2":{"1925":1,"2527":1}}],["ds2",{"2":{"1925":1,"2527":1}}],["ds1",{"2":{"1925":1,"2527":1}}],["ds",{"2":{"1925":1,"2527":1}}],["d♭",{"2":{"1925":6,"2527":6}}],["dwl",{"2":{"1681":1}}],["dwld",{"2":{"1680":1}}],["dwlu",{"2":{"1680":1}}],["dwell",{"2":{"1680":4,"1681":13,"2276":1}}],["dword",{"0":{"2238":1},"1":{"2239":1},"2":{"1416":1,"1418":1}}],["db5",{"2":{"1925":1,"2527":1}}],["db4",{"2":{"1925":1,"2527":1}}],["db3",{"2":{"1925":1,"2527":1}}],["db2",{"2":{"1925":1,"2527":1}}],["db1",{"2":{"1925":1,"2527":1}}],["dbl",{"2":{"1686":2}}],["dblsharp",{"2":{"1686":6}}],["dblclick",{"2":{"1686":14}}],["dbaas",{"2":{"1597":1}}],["db",{"2":{"1322":1,"1925":1,"2191":1,"2511":1,"2527":1,"2752":1}}],["db60",{"2":{"191":1}}],["d9",{"2":{"690":1}}],["d8",{"2":{"690":1,"2502":1}}],["d3",{"2":{"570":1,"1195":1,"1268":3,"1395":1,"1925":1,"2266":1,"2527":1,"2691":1,"2719":1,"2720":1}}],["d2",{"2":{"570":1,"1195":1,"1268":3,"1395":1,"1925":1,"2040":1,"2041":2,"2043":1,"2266":1,"2527":1,"2691":1,"2719":1,"2720":1}}],["d7",{"2":{"561":1,"565":1,"688":1,"1268":1,"1699":1,"2691":1}}],["d6",{"2":{"561":1,"688":1,"1268":1,"2431":1}}],["d60b",{"2":{"328":1}}],["d4",{"2":{"561":1,"688":1,"1553":1,"1699":1,"1925":1,"2375":1,"2527":1,"2691":1,"2719":1}}],["d5",{"2":{"561":1,"1268":1,"1392":1,"1396":1,"1553":1,"1925":1,"2041":2,"2043":1,"2384":1,"2391":1,"2527":1,"2691":2,"2720":1}}],["dnworks",{"2":{"270":2,"277":2}}],["dpi",{"2":{"1988":2,"1989":1}}],["dprint",{"2":{"1327":1,"2277":1,"2418":2}}],["dprintf",{"2":{"50":1,"1327":1,"1420":1,"2277":1,"2948":2}}],["dp3000",{"2":{"226":2,"236":1}}],["dharma",{"2":{"211":1}}],["dyn",{"2":{"1663":1}}],["dynamically",{"2":{"119":1,"2759":1,"2851":1,"2912":1}}],["dynamic",{"0":{"119":1,"1661":1,"1663":1,"2518":1,"2813":1,"2912":1},"1":{"1662":1,"1663":1,"1664":1},"2":{"119":4,"134":1,"149":2,"176":3,"188":2,"191":4,"199":1,"211":1,"222":3,"236":2,"249":1,"277":2,"328":1,"538":1,"574":1,"1661":11,"1662":7,"1663":4,"1664":6,"2518":6,"2531":6,"2813":1,"2907":1,"2910":2,"2912":10,"2940":2}}],["dymium65",{"2":{"211":1}}],["dyz",{"2":{"211":1}}],["dclk",{"2":{"2507":1}}],["dc",{"2":{"1951":2,"2763":11}}],["dc60",{"2":{"211":1}}],["dc01",{"2":{"114":2}}],["d",{"2":{"194":1,"196":8,"199":1,"211":1,"249":1,"266":3,"328":1,"354":1,"375":1,"376":1,"434":3,"491":1,"496":1,"510":1,"511":1,"572":2,"589":2,"610":1,"615":2,"616":1,"618":1,"620":1,"633":1,"1316":1,"1330":1,"1332":1,"1467":1,"1470":1,"1471":2,"1472":1,"1523":1,"1597":2,"1602":2,"1605":1,"1625":1,"1798":8,"1804":1,"1925":19,"1947":1,"2068":1,"2070":2,"2277":1,"2286":1,"2296":1,"2301":1,"2322":1,"2331":1,"2393":2,"2395":2,"2396":2,"2397":1,"2398":2,"2425":1,"2462":1,"2502":1,"2510":3,"2527":19,"2542":3,"2557":1,"2563":1,"2615":1,"2621":1,"2652":1,"2760":11,"2762":2,"2763":4,"2764":4,"2889":1,"2948":1}}],["dvd",{"2":{"2568":1}}],["dv",{"2":{"176":2,"1593":1}}],["dvorak",{"0":{"2812":1},"2":{"92":1,"176":1,"1422":2,"1425":1,"1426":1,"1442":1,"1593":1,"1620":3,"1622":2,"2190":1,"2562":1,"2771":2,"2812":2,"2887":14}}],["ddr",{"2":{"2043":3}}],["ddram",{"0":{"1736":1},"1":{"1737":1},"2":{"1729":2,"1736":1,"1737":1}}],["dd",{"2":{"176":2,"188":1,"191":10,"199":7,"211":1,"236":2,"277":6,"317":2,"328":25,"333":1,"411":2}}],["djinn",{"2":{"176":1,"266":1}}],["dt40",{"2":{"222":1}}],["dtisaac",{"2":{"122":1}}],["dtisaac01",{"2":{"122":2}}],["dt",{"2":{"119":3,"2531":3,"2912":22}}],["dzr",{"2":{"2301":1}}],["dz60",{"2":{"211":1,"429":2}}],["dz60rgb",{"2":{"114":1,"149":1}}],["dztech",{"2":{"102":1,"149":1,"199":1,"211":1}}],["dribin",{"2":{"2466":1}}],["driving",{"2":{"715":1,"1296":1,"1297":1}}],["drives",{"2":{"176":1,"1477":1}}],["drive",{"2":{"173":1,"561":1,"722":1,"1205":1,"1478":1,"1482":1,"1483":1,"1545":1,"1681":2,"1684":1,"1685":1}}],["driven",{"0":{"109":1,"169":1,"184":1,"664":1},"1":{"110":1,"111":1,"112":1,"170":1,"665":1,"666":1,"667":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1},"2":{"76":1,"109":1,"114":1,"149":2,"160":3,"169":1,"176":4,"184":1,"191":2,"199":13,"201":1,"211":26,"222":13,"236":6,"262":1,"266":68,"277":3,"448":1,"449":1,"555":2,"664":1,"721":1,"1297":1,"1392":1,"1393":1,"1474":2,"1545":2,"1558":1,"1844":1,"1953":1,"1964":1,"1967":1,"1968":1,"1983":1,"2080":1,"2454":1,"2669":1,"2716":1,"2722":2,"2746":2,"2851":1,"2941":1}}],["driver",{"0":{"210":1,"221":1,"233":1,"240":1,"244":1,"685":1,"697":1,"709":1,"714":1,"724":1,"741":1,"743":1,"744":1,"745":1,"746":1,"747":1,"749":1,"750":1,"751":1,"752":1,"754":1,"755":1,"756":1,"757":1,"758":1,"759":1,"760":1,"800":1,"826":1,"855":1,"887":1,"919":1,"923":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1094":1,"1124":1,"1128":1,"1158":1,"1192":1,"1202":1,"1203":1,"1204":1,"1205":1,"1214":1,"1245":1,"1266":1,"1283":1,"1289":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1299":1,"1302":1,"1303":1,"1547":1,"1548":1,"1549":1,"1550":1,"1551":1,"1553":1,"1554":1,"1556":1,"1557":1,"1580":1,"1696":1,"1845":1,"1942":1,"1955":1,"1984":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2081":1,"2282":1,"2442":1,"2697":1,"2698":1,"2699":1,"2737":1},"1":{"686":1,"687":1,"688":1,"689":1,"690":1,"691":1,"692":1,"693":1,"694":1,"695":1,"696":1,"698":1,"699":1,"700":1,"701":1,"702":1,"703":1,"704":1,"705":1,"706":1,"707":1,"708":1,"710":1,"711":1,"712":1,"713":1,"715":1,"716":1,"717":1,"718":1,"719":1,"720":1,"721":1,"722":1,"723":1,"725":1,"726":1,"727":1,"728":1,"729":1,"730":1,"731":1,"732":1,"733":1,"734":1,"735":1,"736":1,"737":1,"738":1,"739":1,"740":1,"742":1,"743":1,"744":2,"745":2,"747":1,"748":2,"749":1,"750":1,"751":1,"752":1,"759":1,"761":1,"762":1,"763":1,"764":1,"765":1,"766":1,"767":1,"768":1,"769":1,"770":1,"771":1,"772":1,"773":1,"774":1,"775":1,"776":1,"777":1,"778":1,"779":1,"780":1,"781":1,"782":1,"783":1,"784":1,"785":1,"786":1,"787":1,"788":1,"789":1,"790":1,"791":1,"792":1,"793":1,"794":1,"795":1,"801":1,"802":1,"803":1,"804":1,"805":1,"806":1,"807":1,"808":1,"809":1,"810":1,"811":1,"812":1,"813":1,"814":1,"815":1,"816":1,"817":1,"818":1,"819":1,"820":1,"821":1,"822":1,"823":1,"824":1,"825":1,"827":1,"828":1,"829":1,"830":1,"831":1,"832":1,"833":1,"834":1,"835":1,"836":1,"837":1,"838":1,"839":1,"840":1,"841":1,"842":1,"843":1,"844":1,"845":1,"846":1,"847":1,"848":1,"849":1,"850":1,"851":1,"852":1,"853":1,"854":1,"856":1,"857":1,"858":1,"859":1,"860":1,"861":1,"862":1,"863":1,"864":1,"865":1,"866":1,"867":1,"868":1,"869":1,"870":1,"871":1,"872":1,"873":1,"874":1,"875":1,"876":1,"877":1,"878":1,"879":1,"880":1,"881":1,"882":1,"883":1,"884":1,"885":1,"886":1,"888":1,"889":1,"890":1,"891":1,"892":1,"893":1,"894":1,"895":1,"896":1,"897":1,"898":1,"899":1,"900":1,"901":1,"902":1,"903":1,"904":1,"905":1,"906":1,"907":1,"908":1,"909":1,"910":1,"911":1,"912":1,"913":1,"914":1,"915":1,"916":1,"917":1,"918":1,"920":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"927":1,"928":1,"929":1,"930":1,"931":1,"932":1,"933":1,"934":1,"935":1,"936":1,"937":1,"938":1,"939":1,"940":1,"941":1,"942":1,"943":1,"944":1,"945":1,"946":1,"947":1,"948":1,"949":1,"950":1,"951":1,"952":1,"953":1,"955":1,"956":1,"957":1,"958":1,"959":1,"960":1,"961":1,"962":1,"963":1,"964":1,"965":1,"966":1,"967":1,"968":1,"969":1,"970":1,"971":1,"972":1,"973":1,"974":1,"975":1,"976":1,"977":1,"978":1,"979":1,"980":1,"981":1,"982":1,"983":1,"984":1,"985":1,"986":1,"987":1,"989":1,"990":1,"991":1,"992":1,"993":1,"994":1,"995":1,"996":1,"997":1,"998":1,"999":1,"1000":1,"1001":1,"1002":1,"1003":1,"1004":1,"1005":1,"1006":1,"1007":1,"1008":1,"1009":1,"1010":1,"1011":1,"1012":1,"1013":1,"1014":1,"1015":1,"1016":1,"1017":1,"1018":1,"1019":1,"1020":1,"1021":1,"1023":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1029":1,"1030":1,"1031":1,"1032":1,"1033":1,"1034":1,"1035":1,"1036":1,"1037":1,"1038":1,"1039":1,"1040":1,"1041":1,"1042":1,"1043":1,"1044":1,"1045":1,"1046":1,"1047":1,"1048":1,"1049":1,"1050":1,"1051":1,"1052":1,"1053":1,"1054":1,"1055":1,"1057":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1063":1,"1064":1,"1065":1,"1066":1,"1067":1,"1068":1,"1069":1,"1070":1,"1071":1,"1072":1,"1073":1,"1074":1,"1075":1,"1076":1,"1077":1,"1078":1,"1079":1,"1080":1,"1081":1,"1082":1,"1083":1,"1084":1,"1085":1,"1086":1,"1087":1,"1088":1,"1089":1,"1091":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1097":1,"1098":1,"1099":1,"1100":1,"1101":1,"1102":1,"1103":1,"1104":1,"1105":1,"1106":1,"1107":1,"1108":1,"1109":1,"1110":1,"1111":1,"1112":1,"1113":1,"1114":1,"1115":1,"1116":1,"1117":1,"1118":1,"1119":1,"1120":1,"1121":1,"1122":1,"1123":1,"1125":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1131":1,"1132":1,"1133":1,"1134":1,"1135":1,"1136":1,"1137":1,"1138":1,"1139":1,"1140":1,"1141":1,"1142":1,"1143":1,"1144":1,"1145":1,"1146":1,"1147":1,"1148":1,"1149":1,"1150":1,"1151":1,"1152":1,"1153":1,"1154":1,"1155":1,"1156":1,"1157":1,"1159":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1165":1,"1166":1,"1167":1,"1168":1,"1169":1,"1170":1,"1171":1,"1172":1,"1173":1,"1174":1,"1175":1,"1176":1,"1177":1,"1178":1,"1179":1,"1180":1,"1181":1,"1182":1,"1183":1,"1184":1,"1185":1,"1186":1,"1187":1,"1188":1,"1189":1,"1190":1,"1191":1,"1193":1,"1194":1,"1195":1,"1196":1,"1197":1,"1198":1,"1199":1,"1200":1,"1201":1,"1202":1,"1203":2,"1204":2,"1205":2,"1206":1,"1207":1,"1208":1,"1209":1,"1210":1,"1211":1,"1212":1,"1213":1,"1215":1,"1216":1,"1217":1,"1218":1,"1219":1,"1220":1,"1221":1,"1222":1,"1223":1,"1224":1,"1225":1,"1226":1,"1227":1,"1228":1,"1229":1,"1230":1,"1231":1,"1232":1,"1233":1,"1234":1,"1235":1,"1236":1,"1237":1,"1238":1,"1239":1,"1240":1,"1241":1,"1242":1,"1243":1,"1244":1,"1246":1,"1247":1,"1248":1,"1249":1,"1250":1,"1251":1,"1252":1,"1253":1,"1254":1,"1255":1,"1256":1,"1257":1,"1258":1,"1259":1,"1260":1,"1261":1,"1262":1,"1263":1,"1264":1,"1265":1,"1267":1,"1268":1,"1269":1,"1270":1,"1271":1,"1272":1,"1273":1,"1274":1,"1275":1,"1276":1,"1277":1,"1278":1,"1279":1,"1280":1,"1281":1,"1282":1,"1284":1,"1285":1,"1286":1,"1287":1,"1288":1,"1289":1,"1290":2,"1291":2,"1292":2,"1293":2,"1294":2,"1295":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":2,"1301":2,"1302":1,"1303":1,"1304":1,"1305":1,"1306":1,"1307":1,"1308":1,"1309":1,"1310":1,"1548":1,"1549":1,"1550":1,"1551":1,"1697":1,"1698":1,"1699":1,"1700":1,"1701":1,"1702":1,"1703":1,"1704":1,"1705":1,"1706":1,"1707":1,"1708":1,"1709":1,"1710":1,"1711":1,"1712":1,"1713":1,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1719":1,"1720":1,"1721":1,"1722":1,"1723":1,"1724":1,"1725":1,"1726":1,"1727":1,"1728":1,"1729":1,"1730":1,"1731":1,"1732":1,"1733":1,"1734":1,"1735":1,"1736":1,"1737":1,"1943":1,"1944":1,"1945":1,"1946":1,"1947":1,"1948":1,"1949":1,"1950":1,"1951":1,"1952":1,"1953":1,"1954":1,"1955":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2283":1,"2284":1,"2285":1,"2286":1,"2287":1,"2288":1,"2289":1,"2290":1},"2":{"21":1,"31":5,"34":5,"50":1,"65":4,"75":1,"93":3,"94":2,"107":1,"112":1,"114":12,"118":10,"128":1,"133":2,"134":8,"149":13,"160":3,"174":2,"175":1,"176":13,"183":2,"191":18,"199":4,"210":2,"211":11,"220":2,"221":11,"222":7,"224":1,"232":4,"234":8,"236":25,"240":6,"248":1,"249":11,"266":3,"277":3,"285":1,"294":3,"308":3,"317":1,"328":1,"333":1,"339":1,"685":1,"686":2,"690":2,"697":1,"698":4,"701":1,"709":1,"710":7,"711":6,"712":4,"713":3,"714":3,"715":2,"716":2,"717":3,"720":3,"721":2,"722":2,"724":1,"725":5,"726":2,"729":3,"732":2,"733":1,"734":1,"739":1,"740":2,"741":1,"742":2,"743":2,"744":3,"745":3,"746":13,"749":2,"750":2,"751":1,"752":3,"753":10,"754":3,"755":2,"756":1,"757":4,"758":4,"759":2,"761":4,"762":2,"763":2,"764":3,"768":1,"800":1,"801":5,"802":1,"805":2,"808":4,"809":1,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"824":1,"825":1,"826":1,"827":5,"828":4,"829":1,"831":5,"834":6,"835":1,"836":1,"838":1,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"851":1,"852":1,"853":1,"854":1,"855":1,"856":5,"857":4,"858":1,"863":5,"866":6,"867":1,"868":1,"870":1,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"883":1,"884":1,"885":1,"886":1,"887":1,"888":5,"889":4,"890":1,"893":5,"896":6,"897":1,"898":1,"900":1,"901":1,"902":1,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"915":1,"916":1,"917":1,"918":1,"919":1,"920":5,"921":8,"922":1,"923":4,"928":5,"931":6,"932":1,"933":1,"935":1,"936":1,"937":1,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"950":1,"951":1,"952":1,"953":1,"954":1,"955":5,"956":4,"957":1,"962":5,"965":6,"966":1,"967":1,"969":1,"970":1,"971":1,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"984":1,"985":1,"986":1,"987":1,"988":1,"989":5,"990":4,"991":1,"996":5,"999":6,"1000":1,"1001":1,"1003":1,"1004":1,"1005":1,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1019":1,"1020":1,"1021":1,"1022":1,"1023":5,"1024":4,"1025":1,"1030":5,"1033":6,"1034":1,"1035":1,"1037":1,"1038":1,"1039":1,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1053":1,"1054":1,"1055":1,"1056":1,"1057":5,"1058":4,"1059":1,"1064":5,"1067":6,"1068":1,"1069":1,"1071":1,"1072":1,"1073":1,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1086":1,"1087":1,"1088":1,"1089":1,"1090":1,"1091":5,"1092":8,"1093":1,"1094":4,"1098":5,"1101":6,"1102":1,"1103":1,"1105":1,"1106":1,"1107":1,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1120":1,"1121":1,"1122":1,"1123":1,"1124":1,"1125":5,"1126":8,"1127":1,"1128":4,"1132":5,"1135":6,"1136":1,"1137":1,"1139":1,"1140":1,"1141":1,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1154":1,"1155":1,"1156":1,"1157":1,"1158":1,"1159":5,"1160":4,"1161":1,"1166":5,"1169":6,"1170":1,"1171":2,"1173":1,"1174":1,"1175":1,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1188":1,"1189":1,"1190":1,"1191":1,"1192":2,"1193":4,"1194":2,"1195":3,"1197":2,"1198":6,"1199":2,"1200":3,"1201":6,"1203":4,"1204":4,"1205":1,"1208":1,"1214":1,"1215":5,"1216":4,"1217":1,"1219":5,"1222":6,"1223":1,"1224":1,"1226":1,"1227":1,"1228":1,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1242":1,"1243":1,"1244":1,"1246":4,"1248":1,"1250":1,"1266":1,"1267":4,"1269":1,"1271":1,"1283":1,"1284":4,"1285":1,"1289":3,"1290":3,"1291":3,"1292":3,"1293":2,"1294":2,"1299":3,"1302":1,"1303":3,"1305":1,"1318":2,"1393":2,"1476":1,"1477":3,"1480":1,"1481":1,"1483":2,"1547":1,"1548":2,"1549":3,"1550":1,"1551":2,"1553":2,"1554":2,"1556":3,"1557":2,"1578":1,"1580":1,"1678":2,"1683":1,"1739":3,"1845":5,"1943":1,"1945":2,"1964":1,"1965":2,"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1973":2,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1984":6,"1985":1,"2016":1,"2039":3,"2040":2,"2041":2,"2042":1,"2043":2,"2044":1,"2081":5,"2096":1,"2179":3,"2262":1,"2283":1,"2374":2,"2376":1,"2388":1,"2390":1,"2418":1,"2442":1,"2444":2,"2445":3,"2446":2,"2510":1,"2567":1,"2692":11,"2696":1,"2697":2,"2698":2,"2699":1,"2702":10,"2704":7,"2747":1,"2760":2,"2763":1,"2764":2,"2855":1,"2856":2,"2857":2,"2858":3,"2859":2,"2864":4,"2871":2,"2875":2,"2877":2,"2878":2,"2880":2,"2883":5}}],["drivers",{"0":{"128":1,"146":1,"389":1,"1965":1,"2439":1,"2440":1,"2696":1,"2763":1},"1":{"147":1,"148":1,"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1971":1,"1972":1,"1973":1,"1974":1,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1984":1,"2441":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2697":1,"2698":1,"2699":1},"2":{"1":1,"33":2,"65":1,"74":2,"93":1,"113":2,"114":4,"128":1,"133":2,"134":11,"175":1,"176":3,"199":1,"211":2,"222":5,"233":2,"234":1,"236":8,"249":21,"266":1,"277":2,"294":1,"389":2,"709":2,"712":3,"713":1,"724":1,"726":1,"743":1,"749":1,"750":1,"751":1,"753":1,"760":1,"826":1,"828":1,"855":1,"857":1,"887":1,"889":1,"919":1,"921":1,"923":1,"954":1,"956":1,"988":1,"990":1,"1022":1,"1024":1,"1056":1,"1058":1,"1090":1,"1092":1,"1094":1,"1124":1,"1126":1,"1128":1,"1158":1,"1160":1,"1192":1,"1193":2,"1214":1,"1216":1,"1245":1,"1266":1,"1289":1,"1295":2,"1318":1,"1405":1,"1484":1,"1546":1,"1547":2,"1551":1,"1678":1,"1844":1,"1845":1,"1846":1,"1946":1,"1953":1,"1983":2,"1984":2,"1998":1,"2039":1,"2080":1,"2081":1,"2082":1,"2261":1,"2439":1,"2444":1,"2455":1,"2696":1,"2701":1,"2702":1,"2703":2,"2731":2,"2737":1,"2738":1,"2746":1,"2753":1,"2754":3,"2760":16,"2761":1,"2763":13,"2857":1,"2883":1}}],["drgblight",{"2":{"2455":2}}],["dr",{"2":{"2301":3,"2812":1}}],["drum",{"2":{"2249":1}}],["drone",{"2":{"675":1,"681":1}}],["drops",{"2":{"2379":1}}],["dropdown",{"2":{"710":1,"1312":1,"1313":1,"2331":1,"2683":2}}],["drop",{"2":{"73":1,"114":1,"119":1,"131":3,"134":1,"172":1,"173":1,"207":2,"211":1,"222":2,"236":1,"596":1,"599":1,"1388":1,"2554":1,"2576":1,"2598":1,"2651":1,"2688":1,"2706":1}}],["dropped",{"0":{"166":1},"2":{"50":1}}],["dry",{"2":{"455":1}}],["drv",{"2":{"328":1}}],["drv2605l",{"0":{"1682":1,"1686":1,"1687":1,"1688":1},"1":{"1683":1,"1684":1,"1685":1,"1686":1},"2":{"221":2,"1678":1,"1680":4,"1682":1,"1684":5,"1685":8,"1686":3,"1687":2}}],["drhigsby",{"2":{"143":4,"149":2}}],["drastically",{"2":{"1415":1}}],["drashna",{"2":{"93":1,"114":5,"123":1,"134":1,"175":1,"179":1,"191":1,"1470":1,"2094":1}}],["drags",{"2":{"1941":1}}],["drag",{"0":{"1993":1,"1994":1},"2":{"236":1,"599":1,"1986":1,"1993":3,"1994":10,"2038":1,"2614":1}}],["drawtext",{"2":{"2764":7}}],["drawimage",{"2":{"2764":7}}],["drawing",{"0":{"2764":1},"2":{"125":5,"153":3,"1954":1,"2290":1,"2756":1,"2760":1,"2763":14,"2764":8}}],["draws",{"2":{"2763":1,"2764":1}}],["drawbacks",{"2":{"1343":1}}],["drawn",{"2":{"646":1,"678":1,"2763":2,"2764":3,"2783":1}}],["draw",{"2":{"153":1,"678":1,"2756":2,"2763":3,"2764":34,"2783":4,"2882":1}}],["drain",{"0":{"1297":1},"2":{"149":1,"243":1,"797":2,"1197":1,"1297":2}}],["draculad",{"2":{"114":1}}],["dm",{"2":{"1661":12,"1663":2,"2518":5}}],["dmote",{"2":{"226":2,"236":1}}],["dmq",{"2":{"176":1}}],["dmacros",{"2":{"1471":1}}],["dma1",{"2":{"1303":1}}],["dma",{"2":{"49":1,"50":3,"266":1,"764":4,"1292":2,"1293":1,"1294":1,"1303":4,"2689":1}}],["dmas",{"2":{"49":1}}],["dmamux",{"2":{"49":4,"1303":3}}],["dm9records",{"2":{"37":3}}],["dutch",{"2":{"2887":1}}],["duty",{"2":{"63":1,"765":2,"1541":1,"1544":1,"1546":1}}],["duckypad",{"2":{"222":1}}],["ducky",{"2":{"211":1}}],["duckduckgo",{"2":{"196":1,"1798":1}}],["dumbpad",{"2":{"191":1}}],["dummy",{"2":{"191":1,"222":1,"294":2,"691":1,"1788":4,"2928":4,"2930":1}}],["dumps",{"2":{"2417":3}}],["dump",{"2":{"49":3,"176":1,"211":1,"277":1,"625":1,"2417":5}}],["dubba175",{"2":{"143":2}}],["duplex",{"0":{"1196":1,"1199":1},"1":{"1197":1,"1198":1,"1200":1,"1201":1},"2":{"93":1,"107":3,"114":2,"176":1,"191":1,"277":1,"1192":2,"1193":2,"1196":4,"1197":1,"1198":1,"1199":4,"1200":1,"1201":3,"1205":3,"1207":2,"2704":4}}],["duplicating",{"2":{"328":1,"2684":1}}],["duplication",{"2":{"4":1,"211":1,"236":3,"285":1,"308":5,"328":1,"333":1,"665":1,"2684":1,"2746":1}}],["duplicates",{"2":{"236":1}}],["duplicated",{"2":{"75":1,"236":1,"308":1,"1702":1}}],["duplicate",{"2":{"4":1,"70":2,"75":1,"76":1,"160":1,"176":1,"191":2,"199":3,"211":2,"266":1,"277":1,"308":1,"317":1,"327":1,"333":1,"339":1,"669":1,"2434":1,"2636":2,"2780":1,"2851":1}}],["duration",{"2":{"119":1,"120":1,"222":2,"658":1,"1441":1,"1444":2,"1493":3,"1598":1,"1786":1,"2087":1,"2191":2,"2930":1}}],["durgod",{"2":{"86":4,"102":2,"114":2,"149":1,"181":4,"191":1,"199":1,"207":2,"211":1,"322":2,"328":1}}],["during",{"2":{"49":1,"103":1,"107":1,"116":1,"118":1,"126":1,"131":1,"149":1,"170":1,"176":1,"191":1,"201":2,"213":1,"236":1,"249":1,"273":1,"297":3,"308":1,"312":1,"333":1,"339":1,"455":1,"630":1,"634":1,"646":1,"651":1,"718":1,"719":1,"722":1,"749":1,"1381":1,"1486":1,"1522":1,"1546":1,"1662":1,"1681":2,"1687":1,"1947":1,"1956":1,"1957":1,"1961":1,"1999":1,"2001":2,"2002":1,"2181":1,"2189":1,"2277":1,"2286":1,"2434":1,"2685":2,"2746":1,"2759":1,"2763":2,"2780":1,"2781":1,"2860":1,"2904":1,"2922":2,"2930":1,"2940":1}}],["dualbank",{"2":{"176":1}}],["dual",{"2":{"49":3,"114":2,"149":1,"176":1,"194":1,"564":3,"574":1,"1849":4,"2085":15,"2309":1,"2418":1,"2685":8,"2894":2,"2912":2,"2913":8,"2919":8,"2920":5,"2921":1,"2928":1}}],["due",{"2":{"45":1,"114":1,"120":1,"128":1,"134":2,"153":1,"167":1,"199":1,"233":1,"236":1,"273":1,"284":1,"285":1,"308":1,"1199":1,"1288":1,"1290":1,"1292":1,"1303":1,"1318":1,"1320":1,"1348":1,"1378":1,"1490":1,"1503":1,"1524":1,"1534":1,"1846":1,"2008":1,"2082":1,"2178":1,"2294":1,"2330":1,"2331":1,"2498":1,"2504":1,"2557":1,"2562":1,"2567":2,"2628":1,"2664":1,"2671":1,"2710":1,"2744":1,"2746":1,"2760":1,"2844":1,"2901":1,"2902":1,"2937":1}}],["dfsr",{"2":{"2508":1}}],["dflash",{"2":{"1472":1}}],["df11",{"2":{"713":2,"2393":1,"2398":1}}],["df1deb37c163",{"2":{"377":1}}],["df",{"2":{"38":1,"247":2,"317":1,"1422":1,"1640":2,"2000":1,"2523":1,"2541":1,"2551":1}}],["dfu",{"0":{"1318":1,"2383":1,"2384":1,"2393":1,"2396":1,"2397":1,"2398":1,"2498":1,"2612":1},"1":{"2384":1,"2385":1,"2394":1,"2399":1},"2":{"12":1,"49":2,"111":1,"114":1,"160":1,"199":1,"222":2,"240":5,"568":6,"573":4,"713":19,"1315":3,"1376":4,"1681":1,"2273":6,"2383":11,"2384":1,"2385":5,"2392":1,"2393":6,"2394":6,"2395":4,"2396":3,"2397":4,"2398":5,"2399":4,"2417":4,"2503":1,"2505":2,"2508":1,"2612":1,"2615":5,"2667":1}}],["d14",{"2":{"690":2}}],["d13",{"2":{"690":2}}],["d12",{"2":{"690":2}}],["d11",{"2":{"690":2}}],["d10",{"2":{"690":2}}],["d1",{"2":{"34":1,"570":1,"763":2,"1195":1,"1268":2,"1395":1,"1925":1,"2040":1,"2266":1,"2275":1,"2527":1,"2691":1,"2719":1}}],["d0",{"2":{"34":1,"561":1,"570":2,"763":2,"1195":1,"1268":2,"1382":1,"1395":1,"2266":1,"2272":1,"2275":2,"2691":1}}],["dio",{"2":{"2507":1}}],["dioded",{"2":{"2466":1}}],["diodes",{"0":{"2428":1,"2438":1},"2":{"2264":1,"2421":1,"2425":1,"2427":1,"2428":3,"2429":2,"2719":1,"2828":1,"2872":2}}],["diode",{"0":{"2719":1},"2":{"70":2,"111":1,"199":1,"561":2,"1403":1,"1407":1,"1644":1,"2272":2,"2280":3,"2423":4,"2427":1,"2428":12,"2431":2,"2434":2,"2466":4,"2719":1,"2720":1,"2746":1,"2826":1,"2872":1}}],["diameter",{"2":{"1974":3}}],["diagram",{"2":{"1681":1,"2694":1}}],["diagnose",{"2":{"1329":1}}],["diagnostics",{"2":{"339":1}}],["dialog",{"2":{"1351":1}}],["die",{"2":{"1288":1}}],["dinterrupt",{"2":{"573":1}}],["ding",{"2":{"120":1,"1441":1}}],["diy",{"2":{"561":2,"2895":3}}],["dimensional",{"2":{"2303":1,"2872":1}}],["dimensions",{"2":{"1970":1,"2719":1,"2720":3}}],["dims",{"2":{"2185":1}}],["dimming",{"2":{"1541":1}}],["dimmer",{"2":{"494":1}}],["dim",{"2":{"494":1}}],["dictated",{"2":{"764":1,"1487":1}}],["dictionaries",{"0":{"527":1},"2":{"1443":1,"1622":1,"2869":2,"2871":1,"2878":1}}],["dictionary",{"0":{"1622":1},"2":{"196":1,"495":1,"497":1,"498":1,"1527":3,"1528":1,"2291":1,"2854":1,"2869":4,"2871":2,"2877":1,"2878":2}}],["dict",{"2":{"211":1,"670":1,"1529":1}}],["dilemma",{"2":{"176":2,"249":1,"311":2,"317":1}}],["dig",{"2":{"1483":1,"2479":1,"2907":1}}],["digest",{"2":{"153":1}}],["digit",{"2":{"1749":3,"2238":1,"2240":1,"2242":1,"2244":1,"2503":1,"2882":2}}],["digital",{"2":{"160":1,"578":1,"586":1,"685":1,"1398":1,"1409":2,"1739":1,"2085":3,"2430":2,"2894":1}}],["digits",{"2":{"134":1,"403":1,"1528":1,"2466":1}}],["digitizers",{"2":{"190":1,"1645":1}}],["digitizer",{"0":{"100":1,"190":1,"1645":1,"1650":1,"1652":1,"1653":1,"1654":1,"1655":1,"1656":1,"1657":1,"1658":1,"1659":1},"1":{"1646":1,"1647":1,"1648":1,"1649":1,"1650":1,"1651":2,"1652":1,"1653":1,"1654":1,"1655":1,"1656":1,"1657":1,"1658":1,"1659":1,"1660":2},"2":{"100":2,"114":1,"190":3,"191":2,"339":1,"1648":7,"1650":1,"1651":3,"1652":1,"1659":1}}],["dive",{"2":{"2435":1}}],["diverged",{"2":{"1343":1}}],["divergetm2",{"2":{"143":2}}],["diverge3",{"2":{"143":2}}],["dividing",{"0":{"342":1},"2":{"1252":1}}],["divided",{"2":{"1952":1,"2289":1}}],["divide",{"2":{"750":1,"759":1,"1949":1}}],["dividends",{"2":{"198":1}}],["divider",{"2":{"191":1,"744":6,"1738":1,"2858":5}}],["divine",{"2":{"236":1}}],["division",{"2":{"114":1}}],["divisors",{"2":{"1300":1,"1994":1}}],["divisor",{"0":{"1251":1},"1":{"1252":1,"1253":1},"2":{"114":1,"236":1,"726":2,"750":2,"759":2,"1252":3,"1265":1,"1299":2,"1300":1,"1951":1,"1967":2,"1968":1,"1974":2,"1979":2,"1982":2,"1983":2,"1994":6,"2048":2,"2288":2,"2763":11}}],["dir=",{"2":{"2605":1,"2606":1,"2607":1}}],["dirty",{"2":{"114":1,"191":2,"199":1,"230":1,"1648":1,"1651":1,"1652":1,"1747":1,"1750":1,"1948":1,"1949":1,"1952":3,"1954":5,"2289":3,"2290":2,"2636":1,"2763":5}}],["dir",{"2":{"114":1}}],["dire",{"2":{"93":1}}],["directs",{"2":{"2566":1}}],["directives",{"2":{"512":2,"555":1}}],["directive",{"2":{"172":1}}],["directional",{"0":{"259":1},"2":{"236":1,"256":1}}],["directions",{"2":{"201":2,"211":1,"307":1,"1665":1,"1667":1,"1930":1,"1939":1,"2057":1}}],["direction",{"2":{"13":3,"70":2,"111":1,"191":1,"199":1,"211":2,"561":1,"619":1,"1403":1,"1407":1,"1664":5,"1665":2,"1940":1,"1949":1,"2051":1,"2068":2,"2181":2,"2423":1,"2427":1,"2532":2,"2719":2,"2720":1,"2746":1,"2872":1}}],["directpins",{"2":{"114":1}}],["directors",{"2":{"409":1}}],["directory",{"2":{"36":2,"50":1,"114":1,"132":1,"133":1,"134":3,"149":2,"160":1,"222":1,"236":1,"393":1,"429":9,"430":2,"432":1,"437":2,"440":2,"442":2,"445":2,"446":1,"448":1,"449":1,"450":1,"462":1,"463":1,"505":1,"513":1,"588":1,"616":1,"623":1,"1627":1,"1628":1,"1633":1,"1850":2,"2071":1,"2088":2,"2407":1,"2413":1,"2414":1,"2419":1,"2432":1,"2450":1,"2501":1,"2502":1,"2508":1,"2583":1,"2599":2,"2603":1,"2607":3,"2608":1,"2609":1,"2614":1,"2626":1,"2629":1,"2659":3,"2662":2,"2683":2,"2684":1,"2709":1,"2714":1,"2762":6}}],["directories",{"2":{"18":1,"113":1,"114":3,"2744":1,"2746":1}}],["directly",{"2":{"16":1,"50":1,"132":1,"134":1,"164":1,"236":1,"344":3,"403":1,"491":1,"511":1,"565":2,"581":1,"668":1,"688":1,"721":1,"741":1,"754":1,"1200":1,"1207":1,"1290":1,"1428":2,"1483":1,"1549":1,"1558":1,"1643":1,"1648":1,"1669":1,"1773":1,"1781":1,"1795":1,"1850":1,"1923":2,"1964":1,"1983":1,"1994":1,"2044":1,"2088":1,"2183":1,"2216":1,"2278":2,"2281":1,"2329":1,"2374":1,"2375":1,"2414":2,"2424":1,"2425":1,"2466":1,"2467":1,"2473":1,"2483":1,"2496":1,"2592":1,"2620":1,"2634":1,"2658":1,"2687":1,"2690":1,"2712":1,"2720":1,"2746":2,"2781":1,"2788":1,"2789":1,"2792":1}}],["direct",{"0":{"346":1,"1313":1,"2198":1,"2720":1},"2":{"3":1,"7":1,"15":1,"63":1,"199":2,"222":6,"341":1,"472":1,"561":1,"570":5,"639":3,"1311":9,"1312":3,"1313":3,"2278":2,"2567":1,"2658":1,"2720":3,"2733":1,"2746":2,"2872":2,"2936":1}}],["dip",{"0":{"105":1,"247":1,"1639":1,"1640":1,"1643":1,"1644":1,"2863":1},"1":{"1640":1,"1641":1,"1642":1,"1643":1,"1644":1},"2":{"105":13,"114":6,"191":1,"236":3,"247":9,"249":3,"328":1,"688":1,"1639":7,"1640":10,"1641":6,"1643":1,"1644":1,"2863":3,"2880":2}}],["di",{"2":{"70":1,"201":1,"211":3,"565":2,"699":2,"1285":2,"1294":1,"1297":3,"1298":1,"2179":2,"2855":1,"2883":1}}],["didn",{"2":{"279":1,"1446":1,"2315":1,"2682":1}}],["did",{"0":{"1331":1},"2":{"31":1,"125":1,"163":1,"185":1,"221":1,"604":1,"1499":2,"1537":1,"1804":4,"2434":1,"2584":1,"2587":1,"2616":1}}],["disk",{"2":{"2400":1,"2402":1,"2404":1}}],["dis",{"0":{"1613":1}}],["disputes",{"2":{"2902":1}}],["disposal",{"2":{"2183":1}}],["displacements",{"2":{"1645":1}}],["displaying",{"2":{"2276":2}}],["displayed",{"2":{"483":1,"490":1,"1287":1,"1288":1,"2759":1,"2795":1}}],["displays",{"0":{"1952":1,"2289":1},"1":{"1953":1},"2":{"153":2,"210":1,"232":2,"236":1,"248":2,"249":1,"437":1,"646":1,"713":1,"1712":2,"1855":1,"1948":1,"1949":1,"1952":7,"1953":1,"2094":1,"2287":1,"2300":1,"2417":2,"2442":1,"2746":2,"2760":1,"2761":1,"2763":26}}],["display",{"0":{"2763":1},"2":{"30":1,"31":3,"33":1,"34":2,"49":1,"63":1,"64":1,"82":1,"83":1,"92":1,"114":1,"123":1,"125":1,"153":1,"185":1,"211":1,"236":1,"339":1,"437":1,"477":1,"645":1,"1324":1,"1325":1,"1326":1,"1535":1,"1647":1,"1699":8,"1704":1,"1706":1,"1708":1,"1710":1,"1711":1,"1713":2,"1715":1,"1717":1,"1723":1,"1724":1,"1725":1,"1726":1,"1727":1,"1730":2,"1732":2,"1736":1,"1851":1,"1935":1,"1947":3,"1948":1,"1949":3,"1950":2,"1951":5,"1952":23,"1953":2,"1954":13,"1962":1,"2090":1,"2276":2,"2283":1,"2286":4,"2287":4,"2288":5,"2289":8,"2290":14,"2298":2,"2435":1,"2453":1,"2456":1,"2510":1,"2601":2,"2717":1,"2747":1,"2753":1,"2754":2,"2756":15,"2759":1,"2760":1,"2761":5,"2763":13,"2764":46,"2794":1,"2799":1,"2851":1,"2869":1}}],["dispatched",{"2":{"2935":1}}],["dispatches",{"2":{"2935":1}}],["dispatchconsumerevent",{"2":{"1357":1}}],["dispatch",{"2":{"580":1,"2599":1,"2939":1}}],["disregarding",{"2":{"2903":1}}],["disregarded",{"2":{"344":3,"403":1,"1638":1}}],["disrupting",{"2":{"2188":1}}],["disruption",{"2":{"103":1}}],["distclean",{"2":{"2417":1}}],["distinguish",{"2":{"2317":1,"2842":1}}],["distinction",{"2":{"2564":1}}],["distinct",{"0":{"2915":1},"2":{"308":1,"1192":1,"1200":1,"1541":1,"1670":1,"2079":1}}],["distance",{"2":{"1971":9,"1983":2,"2086":1,"2431":1}}],["distances",{"2":{"1497":1,"1936":1,"1938":1}}],["distributions",{"2":{"2626":3,"2725":1,"2733":1}}],["distribution",{"2":{"2506":1,"2568":1,"2626":1,"2627":1,"2727":1,"2734":1,"2739":1}}],["distribute",{"2":{"585":1,"2727":1}}],["distributed",{"2":{"284":1,"1467":1,"2730":1,"2731":1,"2746":1,"2750":1}}],["distributable",{"2":{"284":1}}],["distros",{"2":{"1332":2,"2331":1}}],["distro",{"2":{"199":1}}],["disuse",{"2":{"285":1}}],["discretion",{"2":{"2747":1,"2903":1}}],["disclosure",{"2":{"2568":1,"2746":1}}],["disclose",{"2":{"2567":1}}],["disc",{"2":{"1679":1}}],["discusses",{"2":{"1409":1}}],["discussed",{"2":{"50":1,"619":1,"1433":1}}],["discuss",{"2":{"555":1,"2744":1}}],["discussion",{"2":{"265":1,"2899":1}}],["discarded",{"2":{"176":1,"746":1,"2762":1}}],["discovered",{"2":{"2447":1}}],["discovery",{"2":{"119":1,"191":1,"222":1,"328":1}}],["discouraged",{"2":{"344":1,"666":1,"2744":1}}],["disconnection",{"2":{"2275":1}}],["disconnect",{"2":{"149":1,"191":2,"1333":1,"2265":1}}],["disconnected",{"2":{"107":1,"134":1,"176":1,"2275":2,"2615":1}}],["discord",{"0":{"412":1},"2":{"49":1,"50":1,"213":1,"228":1,"276":1,"284":1,"405":1,"406":1,"407":1,"411":1,"412":1,"418":1,"544":1,"610":1,"612":1,"619":1,"644":1,"668":1,"672":1,"1342":1,"1634":1,"2435":1,"2481":1,"2567":1,"2612":1,"2617":1,"2706":1,"2743":1,"2744":2,"2747":1,"2897":1}}],["discharge",{"2":{"49":1}}],["disappearance",{"2":{"2903":1}}],["disappearing",{"2":{"26":1}}],["disadvantages",{"2":{"2475":1}}],["disallowed",{"2":{"2570":1}}],["disallows",{"2":{"2474":1}}],["disallow",{"2":{"1613":1}}],["disabling",{"0":{"1802":1,"2190":1,"2758":1},"2":{"28":1,"134":1,"266":1,"308":1,"545":1,"571":1,"1349":2,"1364":2,"2008":1,"2011":1,"2292":1,"2808":1,"2889":3,"2894":1,"2921":1}}],["disables",{"2":{"114":1,"297":1,"564":1,"574":1,"1417":1,"1512":1,"1593":2,"1616":1,"1621":1,"1662":1,"2008":1,"2009":1,"2762":4,"2889":3,"2922":1,"2924":1}}],["disabled",{"0":{"562":1},"2":{"50":1,"124":1,"134":2,"236":1,"249":1,"561":1,"619":2,"691":1,"799":2,"1383":1,"1392":1,"1417":1,"1485":1,"1493":1,"1498":2,"1501":1,"1526":1,"1533":3,"1589":1,"1610":1,"1616":1,"1623":1,"1678":2,"1681":1,"1980":1,"2001":2,"2008":1,"2011":1,"2068":1,"2192":1,"2220":1,"2258":1,"2309":1,"2331":1,"2498":4,"2761":1,"2882":1,"2922":1,"2924":1,"2934":1}}],["disable",{"0":{"25":1,"1562":1,"1574":1,"1861":1,"1862":1,"2011":1,"2103":1,"2104":1,"2200":1},"2":{"25":7,"50":1,"77":2,"114":6,"134":4,"158":1,"160":1,"176":1,"183":2,"191":2,"194":1,"195":1,"211":2,"222":2,"232":1,"236":3,"249":2,"297":1,"308":2,"328":1,"333":1,"397":1,"434":1,"494":1,"562":6,"564":1,"574":1,"651":1,"744":2,"764":1,"821":3,"823":1,"848":3,"850":1,"912":3,"914":1,"947":3,"949":1,"981":3,"983":1,"1015":3,"1017":1,"1049":3,"1051":1,"1238":3,"1240":1,"1248":1,"1364":2,"1383":1,"1387":1,"1405":1,"1412":1,"1417":2,"1471":1,"1490":2,"1533":1,"1536":1,"1594":1,"1595":1,"1606":2,"1613":2,"1621":1,"1661":1,"1684":1,"1685":1,"1779":1,"1802":1,"1935":1,"1949":2,"1988":1,"1994":3,"1996":1,"2008":3,"2011":2,"2013":2,"2046":1,"2048":2,"2097":2,"2181":1,"2184":1,"2186":2,"2189":1,"2190":1,"2200":2,"2203":1,"2217":2,"2251":1,"2253":1,"2254":4,"2260":2,"2275":2,"2288":1,"2294":1,"2298":1,"2331":1,"2377":1,"2418":4,"2502":1,"2516":1,"2526":2,"2552":2,"2599":1,"2666":1,"2676":1,"2683":2,"2762":2,"2854":1,"2858":2,"2871":1,"2877":1,"2878":1,"2879":2,"2882":1,"2889":2,"2890":2,"2891":1,"2894":2,"2912":1,"2923":2,"2924":3,"2930":2}}],["diffused",{"2":{"2178":1}}],["diffoled",{"2":{"332":1,"337":1}}],["difficulty",{"0":{"1775":1},"1":{"1776":1,"1777":1}}],["difficulties",{"2":{"1608":1}}],["difficult",{"2":{"119":1,"123":1,"125":1,"185":1,"246":1,"540":1,"1330":1,"1802":1,"1935":1,"2424":1,"2425":2,"2428":1,"2429":1,"2748":1}}],["differs",{"2":{"2721":1,"2794":1}}],["difference",{"0":{"1787":1},"2":{"1364":1,"2711":1,"2749":1}}],["differences",{"0":{"1343":1},"2":{"2622":1}}],["differentiating",{"2":{"2296":1}}],["differentiates",{"2":{"651":1}}],["differentiate",{"2":{"527":1}}],["differently",{"2":{"1490":1,"1519":1,"1936":1,"1948":1,"1956":1,"2269":1,"2278":1,"2287":1,"2308":1,"2330":1,"2549":1,"2558":1,"2929":1}}],["different",{"0":{"2012":1,"2307":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"49":1,"191":1,"204":1,"419":1,"430":1,"540":1,"558":1,"568":1,"570":2,"615":2,"619":3,"626":1,"651":1,"690":1,"696":2,"710":2,"754":1,"796":1,"1286":1,"1287":1,"1311":1,"1327":1,"1382":1,"1395":1,"1410":1,"1421":1,"1426":2,"1433":2,"1442":1,"1450":1,"1465":5,"1472":1,"1485":1,"1489":1,"1490":1,"1493":1,"1498":1,"1503":1,"1538":1,"1541":1,"1590":1,"1592":1,"1602":1,"1619":1,"1666":1,"1683":1,"1685":1,"1766":3,"1784":1,"1787":1,"1930":1,"1934":1,"1937":1,"1943":1,"1948":1,"1956":1,"1968":2,"1983":2,"2185":1,"2187":1,"2189":1,"2206":1,"2223":1,"2259":1,"2261":1,"2278":5,"2287":1,"2295":1,"2296":1,"2382":2,"2414":1,"2430":1,"2435":2,"2439":1,"2482":1,"2497":1,"2564":1,"2567":1,"2589":2,"2612":2,"2662":1,"2673":1,"2678":1,"2744":2,"2746":2,"2763":2,"2777":2,"2785":1,"2791":1,"2886":1,"2894":1,"2913":1,"2919":1,"2934":1,"2936":1,"2941":2,"2944":2}}],["differ",{"2":{"69":1,"716":1,"1974":1,"2310":1,"2497":1,"2634":1}}],["diff",{"2":{"25":1,"149":1,"294":1,"354":1,"459":1,"615":1,"2186":1,"2800":2}}],["dollars",{"2":{"2844":1}}],["dollar",{"2":{"2534":1,"2555":1}}],["dolor",{"2":{"363":1}}],["dor1",{"2":{"2043":1}}],["doe",{"2":{"1523":3,"1605":2}}],["doesnt",{"2":{"191":1,"574":1}}],["doesn",{"0":{"1348":1,"1359":1,"1377":1,"1380":1,"1381":1,"2729":1},"1":{"2730":1,"2731":1},"2":{"114":1,"414":1,"429":1,"574":1,"599":1,"619":1,"681":1,"1318":1,"1349":1,"1367":1,"1375":1,"1377":2,"1427":1,"1470":1,"1472":1,"1493":1,"1525":1,"1529":1,"1609":1,"1612":1,"1952":1,"1987":1,"2211":1,"2293":1,"2417":1,"2418":1,"2429":1,"2434":1,"2441":1,"2462":1,"2616":1,"2617":1,"2683":1,"2703":1,"2937":2,"2939":1,"2944":1}}],["does",{"0":{"621":1,"1320":1,"1498":1,"1525":1,"2471":1,"2472":1},"2":{"23":1,"28":1,"50":1,"134":1,"236":1,"276":1,"320":1,"347":1,"365":1,"367":1,"369":1,"429":1,"461":1,"492":1,"495":1,"496":1,"505":1,"521":1,"561":1,"569":1,"586":1,"599":1,"609":1,"615":3,"626":1,"631":1,"643":1,"651":1,"656":1,"702":1,"709":1,"714":1,"723":1,"735":1,"754":1,"763":1,"798":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1203":1,"1204":1,"1229":1,"1233":1,"1237":1,"1239":1,"1266":1,"1306":1,"1362":1,"1376":1,"1410":1,"1427":1,"1428":2,"1444":1,"1448":1,"1484":2,"1497":1,"1499":1,"1510":1,"1518":1,"1593":2,"1622":1,"1638":1,"1666":1,"1739":1,"1765":1,"1787":1,"1795":1,"1954":2,"2057":1,"2074":1,"2212":1,"2270":1,"2301":1,"2317":1,"2319":1,"2329":1,"2374":1,"2411":1,"2427":1,"2428":1,"2460":1,"2470":1,"2474":1,"2475":2,"2503":1,"2506":1,"2510":1,"2511":1,"2564":1,"2567":1,"2569":1,"2591":2,"2616":1,"2619":2,"2626":1,"2662":1,"2691":1,"2705":1,"2707":2,"2710":1,"2717":1,"2744":2,"2746":2,"2752":1,"2789":1,"2795":1,"2797":1,"2882":1,"2902":1,"2913":1,"2930":3,"2933":1,"2937":1}}],["domain",{"2":{"341":1}}],["doing",{"2":{"284":1,"367":1,"494":1,"712":1,"1327":1,"1356":1,"1428":2,"1431":1,"1485":1,"1609":1,"2417":1,"2427":1,"2666":1,"2936":1,"2947":1}}],["doio",{"2":{"176":1,"191":1,"222":1,"249":1}}],["dogtag",{"2":{"211":1,"277":1,"449":2}}],["doxygen",{"2":{"160":1,"211":1,"2709":1}}],["doubt",{"2":{"716":1,"2573":1}}],["doubled",{"2":{"690":1,"2065":1,"2317":1}}],["double",{"0":{"2312":1,"2700":1},"2":{"152":1,"215":2,"397":1,"520":1,"607":1,"711":1,"712":1,"1423":1,"1594":4,"2065":1,"2269":2,"2309":3,"2312":1,"2315":1,"2317":22,"2318":4,"2319":5,"2400":2,"2402":2,"2404":3,"2430":1,"2435":1,"2503":1,"2534":1,"2555":1,"2576":1,"2659":1,"2700":7,"2702":1,"2861":1,"2889":1}}],["dout",{"2":{"45":1}}],["dozen0",{"2":{"143":2}}],["dozens",{"2":{"112":1}}],["dosa40rgb",{"2":{"134":1}}],["doc",{"2":{"199":1,"1353":1}}],["docker",{"0":{"2405":1},"1":{"2406":1,"2407":1,"2408":1,"2409":1},"2":{"114":1,"149":1,"2405":1,"2406":2,"2407":11,"2409":2}}],["docstring",{"0":{"522":1,"523":1,"524":1},"2":{"521":2}}],["docstrings",{"0":{"521":1},"1":{"522":1,"523":1,"524":1},"2":{"514":1,"521":2}}],["docs",{"0":{"460":1,"461":1},"2":{"114":3,"149":1,"160":1,"176":4,"182":1,"191":4,"199":2,"211":1,"222":1,"236":3,"285":1,"294":1,"328":3,"339":1,"341":1,"403":1,"412":1,"460":3,"461":3,"616":3,"617":1,"619":1,"666":1,"681":3,"710":1,"1320":1,"1397":1,"2413":1,"2565":1,"2642":1,"2714":3,"2746":1}}],["doctor",{"0":{"435":1,"456":1},"2":{"114":3,"176":1,"199":3,"328":1,"333":1,"435":4,"456":1,"2616":1}}],["documenting",{"0":{"681":1},"2":{"2509":1}}],["documented",{"2":{"213":1,"312":1,"1537":1,"2390":1,"2441":1,"2461":1,"2604":1,"2738":1,"2751":1,"2840":1}}],["documents",{"2":{"32":1,"114":1,"404":1,"682":1,"1388":1,"2509":1,"2557":1,"2906":2,"2907":2,"2933":1}}],["documentation",{"0":{"22":1,"340":1,"475":1,"616":1,"617":1,"632":1,"636":1,"638":1,"639":1,"642":1,"645":1,"650":1,"654":1,"674":1,"682":1,"1432":1},"1":{"341":1,"342":1,"343":1,"344":1,"345":1,"346":1,"347":1,"348":1,"349":1,"350":1,"351":1,"352":1,"353":1,"354":1,"355":1,"356":1,"357":1,"358":1,"359":1,"360":1,"361":1,"362":1,"363":1,"476":1,"477":1,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1,"617":1,"683":1,"684":1},"2":{"13":1,"22":1,"93":1,"99":1,"118":1,"123":1,"124":1,"134":1,"138":1,"149":1,"152":1,"153":1,"172":1,"174":1,"182":1,"195":1,"196":1,"202":1,"222":2,"228":1,"229":1,"232":1,"245":1,"247":1,"277":1,"288":1,"289":1,"297":1,"298":1,"304":1,"306":1,"315":1,"316":1,"320":1,"331":1,"340":1,"431":1,"461":1,"466":1,"467":1,"468":1,"505":1,"616":5,"670":1,"674":1,"675":1,"681":2,"696":1,"755":1,"1345":1,"1365":1,"1580":1,"1766":1,"1845":1,"2016":1,"2057":1,"2081":1,"2262":1,"2276":1,"2382":1,"2426":1,"2430":1,"2435":1,"2466":1,"2477":1,"2479":1,"2481":1,"2683":1,"2746":1,"2753":1,"2813":1,"2825":1,"2829":1,"2832":1,"2841":1,"2843":1,"2846":1,"2847":1,"2942":1,"2943":1}}],["document",{"0":{"417":1},"2":{"0":1,"76":1,"93":1,"176":1,"199":1,"369":1,"399":1,"403":1,"411":1,"471":1,"486":1,"521":1,"541":1,"619":2,"674":1,"1428":1,"1467":1,"1633":1,"2300":1,"2603":1,"2633":2,"2635":2,"2653":1,"2664":1,"2673":1,"2725":1,"2743":1,"2744":2,"2795":2,"2904":1,"2933":1,"2936":1,"2937":1}}],["dots",{"2":{"544":1,"1697":2}}],["dotty",{"2":{"433":1,"670":1}}],["dotted",{"2":{"344":1}}],["dot",{"0":{"111":1},"2":{"111":1,"375":1,"589":2,"670":1,"1510":1,"1517":5,"1692":1,"2071":1,"2510":2,"2544":1,"2550":1,"2563":1,"2922":1,"2923":1}}],["downstream",{"2":{"2746":1}}],["downside",{"2":{"2704":1}}],["downward",{"2":{"1990":2}}],["downloadable",{"2":{"2568":1}}],["downloads",{"2":{"448":1,"449":1,"450":1,"581":2,"584":1,"2432":1,"2639":1}}],["downloaded",{"2":{"393":1,"2506":1,"2508":1,"2599":1,"2683":2}}],["download",{"0":{"371":1,"2658":1},"2":{"158":1,"366":1,"371":1,"372":1,"374":1,"391":1,"586":2,"600":1,"601":1,"1318":2,"2410":1,"2432":1,"2598":1,"2601":1,"2610":1,"2658":1,"2677":1,"2679":1,"2682":1}}],["down",{"0":{"649":1,"1448":1,"2821":1},"2":{"90":2,"119":3,"120":1,"149":1,"209":1,"222":1,"236":1,"255":1,"266":1,"328":1,"375":1,"589":4,"596":1,"630":1,"648":1,"649":1,"650":2,"683":1,"684":1,"710":1,"749":1,"797":1,"1351":1,"1362":1,"1389":1,"1410":6,"1413":1,"1422":1,"1425":1,"1427":1,"1441":1,"1444":6,"1447":1,"1448":3,"1454":1,"1490":2,"1493":4,"1495":2,"1498":2,"1499":1,"1503":1,"1521":3,"1522":3,"1523":1,"1533":2,"1543":2,"1589":1,"1612":2,"1624":1,"1638":3,"1668":1,"1672":1,"1673":1,"1680":2,"1685":1,"1694":2,"1762":2,"1764":1,"1767":2,"1770":2,"1776":6,"1779":3,"1781":3,"1782":6,"1784":9,"1785":6,"1786":4,"1787":1,"1848":2,"1849":7,"1925":8,"1933":5,"1935":1,"1953":1,"1954":1,"1968":1,"1985":1,"1994":1,"2009":2,"2013":1,"2057":1,"2068":10,"2084":4,"2085":7,"2091":1,"2181":4,"2218":1,"2222":1,"2253":2,"2272":1,"2290":1,"2300":4,"2309":1,"2317":1,"2319":1,"2330":1,"2384":1,"2391":1,"2418":1,"2434":1,"2458":1,"2463":1,"2466":2,"2510":14,"2512":2,"2513":3,"2515":2,"2521":1,"2525":2,"2527":8,"2528":5,"2531":2,"2532":4,"2533":4,"2545":1,"2548":6,"2549":5,"2550":2,"2554":1,"2559":1,"2563":2,"2575":1,"2576":1,"2579":1,"2585":1,"2598":1,"2612":4,"2650":1,"2651":2,"2667":1,"2759":1,"2764":5,"2821":1,"2831":1,"2834":1,"2839":1,"2842":1,"2889":1,"2894":2,"2912":14,"2913":5,"2915":4,"2916":6,"2917":4,"2919":8,"2920":2,"2921":3,"2925":5,"2949":2}}],["downbubble",{"2":{"43":2}}],["dongles",{"2":{"2508":1}}],["dongle",{"2":{"2394":2,"2505":1}}],["donating",{"2":{"610":1}}],["done",{"2":{"104":1,"114":1,"125":1,"127":2,"182":1,"185":2,"224":1,"393":1,"409":1,"420":1,"541":1,"601":1,"605":1,"656":1,"673":1,"711":1,"746":1,"796":1,"1200":1,"1248":1,"1314":1,"1364":1,"1367":1,"1390":1,"1417":1,"1431":1,"1472":1,"1502":2,"1537":1,"1538":1,"1936":1,"1953":1,"1959":1,"1990":1,"2012":1,"2280":1,"2295":1,"2383":2,"2388":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2410":8,"2427":1,"2430":1,"2432":1,"2434":1,"2435":1,"2464":2,"2473":1,"2502":1,"2582":1,"2608":1,"2618":1,"2629":1,"2638":1,"2639":1,"2682":1,"2683":1,"2746":1,"2748":2,"2749":1,"2763":22,"2764":1,"2890":1,"2895":1,"2937":1,"2944":1}}],["don",{"0":{"610":1,"1320":1,"1336":1},"2":{"31":1,"34":1,"119":1,"149":2,"166":1,"191":1,"198":1,"199":1,"222":1,"232":1,"277":2,"379":1,"455":1,"489":1,"512":1,"513":1,"514":1,"516":1,"538":1,"610":1,"619":1,"1208":1,"1248":1,"1313":1,"1319":1,"1340":1,"1343":1,"1354":2,"1376":1,"1409":1,"1415":1,"1454":1,"1470":2,"1472":1,"1490":1,"1491":1,"1517":1,"1525":1,"1537":1,"1589":1,"1609":1,"1668":1,"1766":1,"1986":1,"1999":1,"2280":1,"2297":1,"2320":1,"2327":1,"2409":1,"2427":1,"2466":1,"2561":2,"2566":1,"2572":1,"2586":1,"2606":1,"2615":1,"2616":1,"2628":1,"2658":1,"2678":1,"2694":1,"2714":1,"2717":1,"2770":1,"2794":1,"2890":3,"2894":1,"2907":1,"2912":2,"2943":1,"2949":2}}],["do",{"0":{"415":2,"605":2,"613":1,"1375":1,"1496":1,"1500":1,"1526":1,"1594":1,"1790":1,"2066":1,"2307":1,"2931":1},"1":{"416":2,"417":2,"418":2,"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1,"1595":1,"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"14":1,"92":2,"132":1,"176":1,"194":1,"199":2,"211":1,"231":3,"232":2,"241":1,"253":1,"268":1,"270":1,"281":1,"284":1,"303":2,"317":1,"338":2,"380":1,"415":1,"429":2,"440":1,"494":1,"499":2,"505":2,"512":4,"513":1,"514":3,"516":1,"518":1,"519":2,"526":1,"528":2,"530":1,"533":1,"540":1,"544":2,"546":1,"575":1,"597":1,"610":2,"615":1,"618":2,"619":4,"621":1,"626":1,"631":2,"633":1,"646":2,"656":1,"676":1,"683":1,"690":1,"709":1,"710":1,"718":1,"753":1,"762":1,"793":1,"923":1,"1094":1,"1128":1,"1208":1,"1266":1,"1320":2,"1348":2,"1364":1,"1366":3,"1376":1,"1409":1,"1416":1,"1417":2,"1425":1,"1427":1,"1440":2,"1444":1,"1446":1,"1447":1,"1462":1,"1470":1,"1471":2,"1472":2,"1477":1,"1480":1,"1483":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1529":1,"1589":1,"1591":1,"1592":1,"1593":1,"1601":2,"1605":1,"1609":1,"1617":1,"1622":1,"1628":1,"1661":1,"1668":1,"1776":1,"1779":1,"1788":1,"1794":1,"1795":1,"1798":1,"1801":1,"1837":1,"1846":1,"1850":1,"1851":1,"1919":1,"1939":1,"1948":1,"1953":1,"1962":1,"1987":1,"1999":1,"2013":1,"2041":3,"2043":4,"2069":1,"2082":1,"2088":1,"2090":1,"2188":2,"2206":1,"2256":1,"2270":1,"2271":1,"2272":1,"2273":1,"2279":1,"2287":1,"2301":1,"2308":2,"2309":1,"2310":1,"2317":1,"2319":1,"2376":1,"2384":1,"2391":1,"2395":1,"2414":2,"2418":2,"2425":1,"2441":1,"2458":1,"2460":1,"2461":1,"2466":1,"2471":1,"2474":1,"2482":2,"2485":1,"2487":1,"2489":1,"2490":1,"2502":1,"2503":1,"2506":1,"2553":1,"2568":1,"2572":1,"2583":1,"2584":1,"2585":1,"2587":1,"2589":2,"2595":1,"2599":1,"2607":1,"2612":1,"2616":1,"2629":1,"2636":1,"2637":2,"2638":1,"2639":1,"2641":1,"2652":1,"2656":1,"2659":2,"2660":1,"2677":1,"2682":1,"2683":1,"2685":1,"2686":1,"2687":1,"2703":1,"2710":1,"2717":1,"2718":1,"2745":1,"2746":4,"2748":1,"2759":1,"2764":2,"2767":1,"2771":3,"2772":2,"2774":1,"2776":2,"2847":1,"2851":1,"2870":1,"2884":1,"2886":2,"2888":1,"2889":1,"2890":1,"2912":3,"2919":2,"2920":2,"2928":1,"2931":1,"2935":2,"2944":1,"2947":1,"2949":1}}],["darmoshark",{"2":{"2567":1}}],["dave",{"2":{"2466":1}}],["dazzle",{"2":{"2065":1}}],["damage",{"2":{"1681":1,"2427":1,"2690":1}}],["damnit",{"2":{"352":1}}],["daemon",{"2":{"1316":1}}],["daunting",{"2":{"555":1}}],["daughterboard",{"2":{"311":1}}],["dashes",{"2":{"519":1,"520":1}}],["dashed",{"2":{"344":1}}],["daskeyboard4",{"2":{"308":1}}],["daskygit",{"2":{"175":1}}],["dac2",{"2":{"717":1}}],["dac1",{"2":{"717":5,"718":4}}],["dacs",{"2":{"717":1,"718":1}}],["dac",{"0":{"717":1,"718":1,"719":1,"1477":1,"1480":1},"1":{"720":1,"1478":1,"1479":1},"2":{"222":3,"236":2,"249":1,"716":2,"717":6,"718":7,"719":13,"720":6,"723":2,"1477":7,"1478":1,"1480":9,"1481":2,"1484":1,"1488":4,"2689":1,"2856":2}}],["dactyl",{"2":{"114":3,"191":1,"211":1,"217":4,"222":14,"226":1,"236":2,"277":1,"439":2,"2425":2,"2426":1}}],["days",{"0":{"408":1},"2":{"407":1,"408":2,"412":1}}],["day",{"0":{"409":1},"2":{"211":1,"402":1,"405":1,"406":1,"407":2,"412":4,"538":1,"2567":1}}],["daily",{"2":{"2676":1}}],["daily60",{"2":{"211":1}}],["dailycraft",{"2":{"143":7}}],["daisy",{"2":{"102":2}}],["dawn60",{"0":{"58":1},"2":{"58":3}}],["danish",{"2":{"2887":3}}],["danielggordon",{"2":{"2317":1}}],["danger",{"2":{"352":1,"2621":1}}],["dangerous",{"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"352":1,"399":2}}],["dango40",{"2":{"211":1}}],["dances",{"2":{"191":1,"2309":1,"2315":1,"2316":1,"2317":2,"2319":2}}],["dance",{"0":{"323":1,"2307":1,"2309":1,"2314":1,"2317":1,"2318":1,"2319":1,"2843":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"49":4,"176":3,"191":1,"199":1,"222":1,"249":1,"277":1,"323":7,"324":5,"325":8,"328":1,"562":1,"592":2,"1423":1,"1427":1,"1594":1,"1603":1,"1801":1,"2308":2,"2309":30,"2310":25,"2312":7,"2313":1,"2314":8,"2315":15,"2316":26,"2317":27,"2318":15,"2319":31,"2576":1,"2651":1,"2746":1,"2843":1,"2907":1,"2940":2,"2948":1}}],["datastructure",{"2":{"2560":1,"2936":2}}],["datasheets",{"2":{"762":1,"1200":1}}],["datasheet",{"2":{"149":1,"690":1,"693":1,"694":1,"724":1,"729":1,"749":3,"750":1,"754":1,"759":5,"764":1,"798":1,"800":1,"826":1,"855":1,"860":1,"863":1,"887":1,"893":1,"919":1,"925":1,"928":1,"954":1,"959":1,"962":1,"988":1,"993":1,"996":1,"1022":1,"1027":1,"1030":1,"1056":1,"1061":1,"1064":1,"1090":1,"1095":1,"1098":1,"1124":1,"1129":1,"1132":1,"1158":1,"1163":1,"1166":1,"1198":1,"1201":1,"1214":1,"1219":1,"1248":1,"1269":1,"1297":1,"1556":1,"1684":1,"1685":2,"1686":1,"1713":1,"1730":1,"2483":1,"2694":1,"2695":1}}],["datatypes",{"2":{"215":2,"2764":1}}],["datablock",{"0":{"1419":1},"1":{"1420":1},"2":{"191":1,"1419":17,"1420":4}}],["database",{"0":{"132":1,"302":1,"470":1},"2":{"132":3,"134":1,"249":1,"308":1,"429":3,"470":1,"2682":1}}],["data",{"0":{"109":1,"169":1,"184":1,"323":1,"664":1,"769":1,"772":1,"775":1,"778":2,"781":1,"784":1,"787":1,"790":1,"810":1,"837":1,"869":1,"899":1,"934":1,"968":1,"1002":1,"1036":1,"1070":1,"1104":1,"1138":1,"1172":1,"1225":1,"1254":1,"1259":1,"1262":1,"1273":1,"1277":1,"1279":1,"1537":1,"1637":1,"1719":1,"1721":1,"1725":1,"1732":2,"2057":1,"2058":1,"2061":1,"2063":1,"2276":1,"2277":1,"2784":1,"2791":1,"2792":1},"1":{"110":1,"111":1,"112":1,"170":1,"665":1,"666":1,"667":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"770":1,"771":1,"773":1,"774":1,"776":1,"777":1,"779":2,"780":2,"782":1,"783":1,"785":1,"786":1,"788":1,"789":1,"791":1,"792":1,"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1226":1,"1255":1,"1256":1,"1260":1,"1261":1,"1263":1,"1264":1,"1274":1,"1278":1,"1280":1,"1538":1,"1539":1,"1720":1,"1722":1,"1726":1,"1733":2,"2062":1,"2064":1},"2":{"45":2,"76":2,"107":4,"109":1,"114":3,"149":2,"160":3,"169":1,"176":6,"184":1,"191":3,"199":13,"201":2,"211":29,"214":1,"222":13,"236":7,"249":2,"251":1,"262":2,"266":68,"277":3,"285":1,"308":1,"312":1,"324":1,"325":1,"328":2,"333":1,"339":1,"344":2,"376":2,"396":1,"433":2,"448":1,"449":1,"463":1,"493":1,"555":2,"570":3,"578":1,"625":1,"664":1,"666":2,"668":1,"669":2,"671":2,"697":1,"716":2,"721":2,"748":1,"764":1,"770":3,"772":1,"773":3,"776":2,"779":5,"782":3,"785":3,"788":2,"791":2,"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1194":1,"1197":1,"1200":3,"1226":1,"1255":1,"1260":3,"1263":2,"1274":1,"1276":1,"1278":3,"1280":2,"1281":2,"1282":1,"1283":1,"1285":1,"1286":1,"1288":1,"1296":1,"1376":1,"1416":1,"1418":1,"1419":15,"1420":4,"1483":1,"1525":2,"1527":3,"1528":1,"1535":1,"1537":2,"1538":4,"1637":1,"1681":1,"1699":1,"1702":1,"1720":2,"1722":2,"1726":2,"1732":2,"1733":2,"1835":1,"1953":3,"1954":22,"1957":1,"1962":3,"1966":1,"1974":2,"1978":1,"1981":1,"1983":1,"1985":3,"1987":4,"1988":7,"1989":3,"2038":2,"2040":1,"2041":3,"2042":2,"2043":6,"2044":2,"2046":2,"2057":3,"2058":2,"2059":8,"2062":2,"2064":2,"2095":2,"2096":1,"2178":1,"2179":3,"2191":1,"2208":1,"2275":3,"2277":17,"2278":1,"2288":1,"2290":11,"2298":1,"2314":1,"2315":3,"2316":6,"2317":4,"2318":4,"2319":4,"2375":1,"2379":1,"2431":1,"2454":1,"2466":4,"2502":3,"2556":1,"2557":1,"2639":1,"2716":1,"2722":2,"2746":3,"2761":1,"2762":2,"2763":2,"2764":5,"2777":3,"2778":1,"2781":1,"2784":6,"2785":3,"2789":1,"2791":2,"2795":7,"2851":2,"2855":2,"2869":2,"2875":2}}],["dates",{"0":{"402":1},"2":{"412":1}}],["date",{"2":{"6":2,"10":1,"157":1,"409":1,"411":1,"412":10,"615":1,"2281":1,"2626":1,"2638":1,"2658":1,"2707":1,"2710":1,"2744":1}}],["deutsche",{"2":{"2838":1}}],["derivatives",{"2":{"2626":3,"2628":1}}],["derive",{"2":{"750":1,"759":1,"1300":1}}],["derived",{"2":{"385":1,"2499":1,"2886":1}}],["dereferencing",{"2":{"1947":1,"2286":1}}],["deghost",{"2":{"889":1,"891":1}}],["degradation",{"2":{"2761":1}}],["degrade",{"2":{"1949":1}}],["degrading",{"2":{"209":1}}],["degree",{"0":{"1953":1},"2":{"1662":1,"1664":1,"1952":2,"1953":3,"1972":3}}],["degrees",{"2":{"31":1,"34":1,"1948":1,"1983":1,"1985":3,"1987":3,"2051":1,"2287":1,"2292":1,"2764":1,"2782":1,"2869":1}}],["denied",{"2":{"2569":1}}],["denote",{"2":{"2559":1,"2781":2}}],["denoted",{"2":{"1630":1,"1954":1,"2290":1,"2777":1,"2785":1}}],["denotes",{"2":{"754":1,"755":1,"756":1,"829":1,"858":1,"890":1,"922":1,"923":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1094":1,"1127":1,"1128":1,"1161":1,"1217":1,"1286":1,"2780":1,"2781":1,"2864":1}}],["density",{"0":{"1213":1},"2":{"114":1,"2508":2}}],["deeper",{"2":{"2310":1}}],["deeply",{"2":{"670":1}}],["deep",{"2":{"555":1,"558":2,"2450":1}}],["deemen17",{"2":{"300":2,"308":1}}],["dedicate",{"2":{"2071":1}}],["dedicates",{"2":{"1311":3}}],["dedicated",{"2":{"552":1,"746":1,"1193":1,"1342":1,"1544":1,"1593":1,"1663":1,"1671":1,"1769":1,"1779":2,"1850":1,"2088":1,"2181":1}}],["dedupe",{"2":{"236":1}}],["de60",{"2":{"300":1,"308":1}}],["de60fs",{"2":{"300":1}}],["dekunukem",{"2":{"222":1}}],["demand",{"2":{"2637":2}}],["demanding",{"2":{"2567":1}}],["demo",{"2":{"2187":1,"2278":1}}],["demonstrate",{"2":{"2569":1,"2933":1}}],["demonstrates",{"2":{"2180":1}}],["demonstrated",{"2":{"312":1}}],["demonstration",{"2":{"2059":1,"2183":1}}],["demiurge",{"2":{"211":1}}],["demultiplexer",{"2":{"149":1}}],["dead",{"2":{"2650":1,"2834":1,"2886":1}}],["deadline",{"2":{"412":1,"570":1}}],["deadlock",{"2":{"191":2,"199":1}}],["deadlocks",{"2":{"176":1}}],["deaf",{"2":{"2291":1}}],["deactivating",{"2":{"2012":1,"2861":1}}],["deactivation",{"0":{"1785":1},"2":{"1779":1,"2000":2,"2008":1,"2009":1}}],["deactivates",{"2":{"1427":1,"1600":1,"1601":1,"1779":1,"1785":1,"2861":1}}],["deactivate",{"2":{"1424":1,"1600":1,"1782":1,"1999":2,"2253":1,"2254":4,"2294":1}}],["deactivated",{"2":{"1422":1,"1485":1,"1486":2,"1781":2,"1782":1,"1785":1,"1999":1}}],["deassert",{"2":{"1265":1,"1654":1,"1656":1,"1658":1}}],["deals",{"2":{"1348":1,"2718":1}}],["deal",{"2":{"1337":1,"1986":1,"2479":1}}],["dealt",{"2":{"646":1}}],["dealing",{"2":{"11":1,"2422":1}}],["de",{"0":{"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1},"2":{"134":1,"199":4,"266":1,"317":1,"891":1,"1422":2,"2070":1,"2510":1,"2887":2}}],["detrimental",{"2":{"276":1}}],["detach",{"0":{"2757":1},"2":{"266":1,"2757":2}}],["detailing",{"2":{"2632":1}}],["detail",{"2":{"176":2,"417":1,"615":1,"1359":1,"1783":1,"2310":1,"2417":1,"2509":1,"2941":1}}],["details",{"0":{"362":1,"504":1,"505":1,"506":1,"2310":1,"2565":1},"2":{"163":1,"195":1,"224":1,"228":1,"229":1,"232":1,"352":2,"365":1,"370":2,"398":1,"430":1,"495":1,"505":1,"529":1,"555":1,"564":3,"710":1,"712":1,"762":1,"1312":1,"1319":1,"1321":1,"1398":1,"1405":1,"1410":1,"1422":1,"1427":1,"1428":1,"1467":1,"1476":1,"1489":1,"1493":1,"1503":1,"1537":1,"1594":1,"1661":1,"1697":1,"1768":1,"1773":1,"1835":1,"2075":1,"2095":1,"2096":1,"2188":1,"2191":1,"2313":1,"2326":1,"2417":1,"2418":2,"2455":1,"2468":1,"2541":1,"2565":1,"2601":1,"2616":1,"2723":1,"2750":1,"2910":1,"2930":1}}],["detailed",{"0":{"71":1,"578":1,"2417":1},"1":{"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"579":1,"580":1,"581":1,"582":1,"583":1,"584":1,"585":1,"586":1,"2418":1,"2419":1},"2":{"14":1,"70":1,"426":1,"552":1,"1318":1,"1356":1,"1421":1,"1938":1,"2262":1,"2281":1,"2320":1,"2454":1,"2633":1,"2635":1,"2724":1,"2927":1}}],["detent",{"2":{"1665":1,"1670":2}}],["determining",{"2":{"1427":1,"2295":1,"2880":1,"2926":1}}],["deterministically",{"2":{"230":1}}],["determines",{"2":{"429":1,"1252":1,"2273":1,"2880":1,"2910":1}}],["determined",{"2":{"415":1,"489":1,"568":2,"569":2,"754":1,"2558":1}}],["determine",{"2":{"114":1,"119":1,"157":1,"543":1,"568":1,"569":1,"656":1,"750":1,"754":1,"764":1,"1248":1,"1269":1,"1281":1,"1492":1,"1510":1,"1556":1,"2270":1,"2271":1,"2272":2,"2318":2,"2319":1,"2566":1,"2709":2,"2747":1,"2880":1,"2939":1}}],["detects",{"2":{"2466":1}}],["detected",{"0":{"1317":1},"2":{"211":1,"266":1,"308":1,"339":1,"564":1,"754":1,"1364":1,"1638":3,"1957":2,"1958":8,"1962":1,"2275":1,"2295":1,"2407":1,"2616":1,"2683":1,"2880":2}}],["detecting",{"2":{"132":1,"570":2,"2278":2,"2279":1,"2387":1,"2572":2,"2679":1,"2759":1,"2778":1,"2779":1,"2787":1,"2935":1,"2936":1}}],["detection",{"0":{"1956":1,"1959":1,"2570":1,"2939":1},"1":{"1957":1,"1958":1,"1959":1,"1960":1,"1961":1,"1962":1,"1963":1},"2":{"114":1,"175":1,"199":4,"249":3,"285":2,"308":1,"754":1,"1396":1,"1397":1,"1532":1,"1957":1,"1959":1,"1960":7,"1961":5,"1962":3,"1987":1,"2278":1,"2279":3,"2280":2,"2936":1}}],["detect",{"2":{"112":1,"199":1,"285":1,"293":1,"305":1,"314":1,"436":1,"570":6,"710":1,"1366":1,"1367":1,"1396":1,"1535":1,"1957":1,"2278":5,"2279":3,"2280":2,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2466":1,"2683":1,"2746":1,"2828":1,"2880":2,"2949":1}}],["debating",{"2":{"2567":1}}],["debt",{"2":{"187":1,"198":1,"201":1,"213":1,"224":1,"238":1}}],["debian",{"2":{"114":3,"2593":1,"2626":1,"2628":3}}],["debouncing",{"0":{"1414":1},"2":{"94":1,"222":1,"574":1,"625":2,"1409":3,"1410":12,"1413":6,"1414":2,"1959":2,"1980":1,"2418":1}}],["debouncer",{"2":{"149":1}}],["debounce",{"0":{"1410":1,"1411":1,"1412":1,"1413":1},"1":{"1412":1,"1413":1,"1414":1},"2":{"70":2,"111":1,"112":1,"114":3,"134":1,"149":1,"176":1,"199":3,"222":2,"236":1,"308":1,"328":2,"561":1,"574":1,"625":4,"1409":3,"1410":6,"1411":1,"1412":3,"1413":10,"1414":4,"1591":1,"1960":2,"1976":1,"1977":1,"1980":1,"2003":1,"2008":4,"2014":1,"2418":1,"2746":3,"2854":2,"2872":2,"2908":1}}],["debugged",{"2":{"2794":1}}],["debuggers",{"2":{"398":1}}],["debugger",{"0":{"389":1,"396":1,"397":1,"398":1},"2":{"397":1,"1428":2,"2683":2,"2946":1,"2949":1}}],["debugging",{"0":{"384":1,"395":1,"1321":1,"1322":1,"1323":1,"1324":1,"1325":1,"1326":1,"2647":1,"2649":1,"2683":1,"2946":1},"1":{"385":1,"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"393":1,"394":1,"395":1,"396":2,"397":2,"398":2,"1322":1,"1323":1,"1324":2,"1325":2,"1326":2,"1327":1,"1328":1,"1329":1,"1330":1,"1331":1,"1332":1,"1333":1,"2648":1,"2649":1},"2":{"82":1,"114":1,"288":1,"384":1,"390":1,"393":1,"397":1,"398":1,"434":1,"561":1,"562":2,"1209":1,"1328":2,"1333":1,"1383":1,"1625":4,"1962":1,"1998":1,"2418":1,"2653":1,"2673":1,"2678":1,"2683":4,"2691":1,"2761":2,"2796":1,"2819":1,"2899":1,"2926":1}}],["debug=1",{"2":{"249":1,"2946":2}}],["debug",{"0":{"1327":1,"1328":1,"1962":1,"2052":1},"1":{"1329":1,"1330":1,"1331":1},"2":{"24":1,"34":1,"49":1,"50":1,"65":1,"114":2,"176":1,"188":1,"191":2,"199":1,"211":1,"249":2,"277":1,"285":1,"308":1,"396":1,"397":2,"398":1,"492":2,"540":1,"562":1,"574":2,"1209":2,"1322":8,"1323":1,"1324":1,"1325":1,"1326":1,"1327":3,"1331":1,"1332":1,"1333":3,"1420":1,"1428":2,"1625":4,"1962":1,"1998":2,"2052":5,"2191":4,"2417":1,"2418":4,"2511":2,"2586":1,"2591":1,"2619":1,"2683":11,"2752":2,"2761":3,"2946":1}}],["devuan",{"2":{"2593":1}}],["deviate",{"2":{"2702":1}}],["deviation",{"2":{"1971":1}}],["devised",{"2":{"2474":1}}],["device",{"0":{"118":1,"175":1,"190":1,"711":1,"1317":1,"1318":1,"1332":1,"1941":1,"1964":1,"1970":1,"1996":1,"2015":1},"1":{"1965":1,"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1971":1,"1972":1,"1973":1,"1974":1,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1984":1,"1985":1,"1986":1,"1987":1,"1988":1,"1989":1},"2":{"63":1,"70":2,"100":2,"111":1,"114":1,"118":13,"134":3,"138":3,"146":1,"149":2,"169":2,"175":4,"176":7,"184":2,"190":3,"191":7,"211":4,"240":2,"249":1,"266":1,"273":2,"285":2,"317":2,"393":1,"561":3,"564":1,"690":1,"709":3,"710":3,"711":4,"712":6,"713":5,"748":1,"762":1,"769":1,"770":2,"772":1,"773":2,"775":1,"776":2,"778":1,"779":2,"781":1,"782":2,"784":1,"785":2,"787":1,"788":2,"790":1,"791":2,"794":2,"798":1,"1196":1,"1199":1,"1252":2,"1254":1,"1257":1,"1258":1,"1259":1,"1262":1,"1268":1,"1272":1,"1315":1,"1316":1,"1317":2,"1329":1,"1332":5,"1333":1,"1381":2,"1391":1,"1399":1,"1409":2,"1638":6,"1645":2,"1678":2,"1738":2,"1923":1,"1924":3,"1929":1,"1941":1,"1945":1,"1959":1,"1960":1,"1961":1,"1962":2,"1964":3,"1965":1,"1966":4,"1967":2,"1968":1,"1969":1,"1970":1,"1973":2,"1974":2,"1976":2,"1977":1,"1978":3,"1979":2,"1980":1,"1981":4,"1982":2,"1983":10,"1984":6,"1985":23,"1986":8,"1987":15,"1988":20,"1989":9,"1990":9,"1992":3,"1993":2,"1994":1,"1996":5,"1997":6,"1998":2,"1999":3,"2001":2,"2003":1,"2014":2,"2015":10,"2016":1,"2037":1,"2051":6,"2057":5,"2059":7,"2218":5,"2276":2,"2325":1,"2382":1,"2383":2,"2385":1,"2386":2,"2387":2,"2388":3,"2389":1,"2390":3,"2391":2,"2392":1,"2393":2,"2394":1,"2395":2,"2396":2,"2397":2,"2398":2,"2399":1,"2400":2,"2402":2,"2404":2,"2454":4,"2455":1,"2499":1,"2501":1,"2502":4,"2505":1,"2563":1,"2612":3,"2615":3,"2683":3,"2717":2,"2746":1,"2756":3,"2763":64,"2764":52,"2826":1,"2835":1,"2849":1,"2875":2,"2882":2}}],["devices",{"0":{"11":1,"138":1,"1997":1},"2":{"11":2,"49":3,"138":1,"149":1,"174":2,"175":1,"190":1,"191":1,"229":1,"263":1,"266":1,"276":1,"294":1,"317":1,"393":2,"434":1,"615":2,"685":1,"690":4,"710":2,"711":1,"712":3,"713":1,"754":1,"757":1,"763":1,"772":1,"793":1,"1247":2,"1287":1,"1290":1,"1295":1,"1300":1,"1317":1,"1333":1,"1410":1,"1477":1,"1488":1,"1717":1,"1721":1,"1956":1,"1960":2,"1962":1,"1989":1,"2037":1,"2057":2,"2232":1,"2234":1,"2247":1,"2248":1,"2276":1,"2292":1,"2374":1,"2393":1,"2439":1,"2454":1,"2477":3,"2483":1,"2505":1,"2613":1,"2668":1,"2683":1,"2684":1,"2707":3,"2709":2,"2710":1,"2717":1,"2746":1,"2760":1,"2763":16,"2908":1}}],["devaddr",{"0":{"781":1,"784":1,"787":1,"790":1},"1":{"782":1,"783":1,"785":1,"786":1,"788":1,"789":1,"791":1,"792":1},"2":{"782":1,"785":1,"788":1,"791":1}}],["devastatingtkl",{"2":{"211":1}}],["dev",{"2":{"108":1,"285":1,"333":1,"387":1,"390":1,"2502":2,"2592":1,"2593":2,"2640":5,"2641":1,"2683":1}}],["developing",{"2":{"2463":1,"2477":1,"2638":1,"2653":1,"2673":1,"2748":1}}],["developed",{"2":{"2388":1,"2812":1,"2902":1}}],["developer=true",{"2":{"488":1}}],["developer",{"0":{"457":1,"488":1},"1":{"458":1,"459":1,"460":1,"461":1,"462":1,"463":1,"464":1,"465":1,"466":1,"467":1,"468":1,"469":1,"470":1},"2":{"373":1,"381":1,"488":1,"596":1}}],["developers",{"0":{"381":1,"383":1},"2":{"365":1,"384":1,"486":1,"664":1,"2417":1,"2658":2,"2814":1}}],["developments",{"2":{"2638":1}}],["development",{"0":{"364":1,"365":1,"486":1,"2653":1,"2673":1},"2":{"132":1,"160":3,"163":2,"175":1,"176":1,"198":1,"233":1,"266":1,"306":1,"308":4,"315":1,"317":8,"364":1,"383":1,"461":1,"488":1,"554":1,"617":1,"709":1,"1200":1,"1403":1,"1407":2,"1962":1,"2389":1,"2602":1,"2638":2,"2640":1,"2653":2,"2656":1,"2657":1,"2713":1,"2714":4,"2748":1,"2835":1,"2844":1,"2853":5,"2888":1,"2901":1,"2902":1,"2908":3,"2941":1}}],["develop",{"0":{"411":1},"2":{"51":1,"73":1,"76":1,"92":1,"93":1,"94":1,"114":5,"134":4,"149":3,"164":1,"169":1,"176":7,"191":6,"199":1,"211":5,"222":4,"236":2,"251":1,"266":1,"308":1,"379":2,"399":1,"402":6,"403":3,"405":1,"406":1,"407":1,"408":1,"409":5,"411":7,"412":12,"420":3,"421":3,"422":3,"423":6,"1340":1,"2310":1,"2428":1,"2746":4,"2747":1,"2903":2,"2904":1}}],["declined",{"2":{"2902":1}}],["declare",{"2":{"1407":2,"1850":2,"2088":2,"2318":1,"2319":1}}],["declared",{"2":{"1389":1,"1446":1,"1850":1,"2088":1,"2313":1}}],["declares",{"2":{"306":1,"315":1,"1957":1}}],["declarations",{"2":{"222":1,"2312":1}}],["declaration",{"2":{"191":1,"559":1}}],["decryption",{"2":{"2212":1}}],["decreasing",{"2":{"565":3,"1410":1,"2086":1}}],["decrease",{"0":{"1565":1,"1881":1,"1882":1,"1887":1,"1888":1,"2123":1,"2124":1,"2129":1,"2130":1,"2135":1,"2136":1,"2141":1,"2142":1},"2":{"166":1,"1487":1,"1520":1,"1522":1,"1543":1,"1544":1,"1565":1,"1668":2,"1680":2,"1688":1,"1848":2,"1881":1,"1882":1,"1887":1,"1888":1,"1925":4,"2084":3,"2085":1,"2086":3,"2123":1,"2124":1,"2129":1,"2130":1,"2135":1,"2136":1,"2141":1,"2142":1,"2181":8,"2201":12,"2202":2,"2253":1,"2254":3,"2381":1,"2515":1,"2525":2,"2527":4,"2532":8,"2533":3,"2759":1,"2912":1}}],["decreases",{"2":{"119":1,"1493":1,"1495":1,"2202":2,"2512":1,"2531":1,"2912":2}}],["decreased",{"2":{"49":1,"2086":1,"2379":1}}],["decays",{"2":{"2379":1}}],["decay",{"2":{"2211":1}}],["decalartion",{"2":{"149":1}}],["deceptively",{"2":{"2569":1,"2940":1}}],["deceptive",{"2":{"2567":3}}],["deception",{"2":{"2567":1,"2569":1}}],["decelerated",{"2":{"1936":4}}],["decelerates",{"2":{"1934":1}}],["decent",{"2":{"3":1,"15":1}}],["dec",{"2":{"1376":1}}],["decodable",{"2":{"1539":1}}],["decoding",{"0":{"1539":1}}],["decode",{"2":{"1537":1}}],["decoder",{"2":{"622":1,"2792":1}}],["decorators",{"0":{"536":1}}],["decorator",{"2":{"489":2}}],["decorated",{"2":{"487":1}}],["decoupled",{"2":{"174":1}}],["decouple",{"2":{"73":1,"94":1,"191":1,"222":1,"249":1,"277":1}}],["decimal",{"2":{"1376":1}}],["decides",{"2":{"2913":1}}],["decide",{"2":{"1198":1,"1201":1,"1522":2,"1612":3}}],["decided",{"2":{"87":1,"103":1,"126":1,"169":1,"179":1,"184":1,"1343":1}}],["deciding",{"2":{"512":1}}],["decisions",{"2":{"512":1,"514":1}}],["decision",{"0":{"2913":1},"1":{"2914":1,"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1},"2":{"203":1,"222":1,"243":1,"320":2,"331":1,"1410":1,"2300":1,"2567":1,"2913":3,"2914":2,"2919":1,"2927":1,"2930":2}}],["descr",{"2":{"2508":1}}],["describing",{"2":{"369":1,"403":1,"512":1,"514":1,"524":1,"681":1,"2217":1,"2852":4,"2871":1,"2878":1}}],["described",{"2":{"521":1,"621":1,"627":1,"657":1,"672":1,"713":1,"1451":1,"1538":1,"2077":1,"2255":1,"2423":1,"2451":1,"2761":1,"2930":1,"2939":1}}],["describes",{"2":{"373":1,"375":1,"384":1,"399":1,"576":1,"595":1,"664":1,"667":1,"681":1,"1553":1,"1554":1,"1748":1,"2308":1,"2683":1,"2684":1,"2714":1,"2778":1,"2782":1,"2783":1,"2784":1,"2869":1}}],["describe",{"2":{"99":1,"615":1,"2382":1,"2422":1,"2715":1,"2919":2}}],["descriptive",{"2":{"519":1,"613":1,"2640":1,"2683":1}}],["descriptions",{"2":{"749":1,"750":1,"751":1,"2683":1}}],["description",{"0":{"578":1},"1":{"579":1,"580":1,"581":1,"582":1,"583":1,"584":1,"585":1,"586":1},"2":{"119":1,"160":1,"403":1,"412":5,"484":1,"485":1,"494":1,"521":2,"599":1,"613":2,"615":1,"675":1,"683":1,"693":1,"694":1,"696":1,"699":1,"719":1,"726":1,"744":1,"746":1,"748":1,"749":1,"750":1,"751":1,"753":1,"754":1,"755":1,"756":1,"758":1,"759":1,"763":1,"764":2,"797":1,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1248":1,"1269":1,"1285":1,"1291":1,"1295":1,"1299":1,"1302":1,"1303":1,"1363":1,"1413":1,"1419":2,"1428":3,"1485":1,"1486":1,"1489":1,"1490":1,"1493":2,"1495":1,"1521":1,"1530":1,"1536":1,"1543":1,"1544":1,"1554":1,"1556":1,"1557":1,"1579":1,"1599":1,"1606":1,"1612":1,"1621":1,"1625":1,"1661":1,"1662":1,"1674":1,"1676":1,"1678":1,"1679":1,"1680":1,"1681":1,"1699":1,"1744":1,"1764":1,"1780":1,"1781":1,"1782":1,"1793":1,"1805":1,"1836":1,"1847":1,"1848":1,"1849":2,"1925":1,"1933":1,"1935":1,"1936":1,"1937":1,"1939":1,"1940":1,"1949":1,"1950":1,"1951":1,"1952":2,"1961":1,"1966":1,"1967":1,"1968":1,"1970":3,"1971":1,"1972":1,"1974":3,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1985":1,"1986":1,"1987":1,"1988":1,"1989":1,"2003":1,"2005":1,"2008":1,"2009":1,"2014":1,"2015":1,"2018":1,"2056":1,"2067":1,"2068":4,"2078":1,"2083":1,"2084":1,"2085":3,"2179":1,"2181":1,"2182":1,"2183":1,"2184":1,"2185":1,"2195":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2216":1,"2217":1,"2218":1,"2221":1,"2222":1,"2252":1,"2253":1,"2254":1,"2257":1,"2259":1,"2260":1,"2288":1,"2289":1,"2304":1,"2306":1,"2321":1,"2322":1,"2323":1,"2327":1,"2328":1,"2332":1,"2377":1,"2379":1,"2380":1,"2415":1,"2453":1,"2510":1,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2520":1,"2521":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2552":1,"2555":1,"2575":2,"2651":1,"2685":1,"2724":1,"2746":1,"2752":1,"2868":1,"2912":1}}],["descriptors",{"2":{"2":1,"50":1}}],["descriptor",{"0":{"2":1,"2779":1,"2781":1,"2787":1},"2":{"50":1,"114":1,"134":1,"160":1,"339":2,"1959":1,"1986":1,"2777":2,"2778":1,"2779":4,"2780":2,"2781":3,"2782":1,"2785":1,"2786":1,"2787":5,"2788":1,"2789":1}}],["descendant",{"2":{"2505":1}}],["desktop",{"2":{"1647":1,"2549":1,"2554":3,"2576":3,"2651":2}}],["deskthority",{"2":{"1379":1,"2037":1,"2466":1}}],["deskdaily",{"2":{"211":1}}],["destination",{"2":{"1353":1,"2523":1}}],["destroyed",{"2":{"513":1,"657":1}}],["desirable",{"2":{"1465":1}}],["desire",{"2":{"599":1,"2568":1}}],["desired",{"2":{"374":1,"414":1,"798":1,"1252":2,"1322":1,"1364":1,"1499":1,"1502":1,"1628":1,"1940":1,"1986":1,"2298":1,"2327":1,"2329":1,"2407":1,"2640":1,"2795":1,"2886":1,"2901":1,"2922":1}}],["designing",{"2":{"1544":1,"1556":1,"1836":1,"2422":1}}],["designate",{"2":{"2794":1}}],["designated",{"2":{"923":1,"1094":1,"1128":1,"1518":1,"2384":1,"2391":1,"2876":2}}],["designates",{"2":{"489":1,"2794":1}}],["designs",{"2":{"211":1,"2500":1,"2695":1}}],["design",{"2":{"114":1,"168":1,"211":2,"1196":1,"1199":1,"1539":1,"2902":1}}],["designers",{"2":{"125":1,"185":1,"201":1,"221":1,"233":1,"234":1,"1846":1,"2082":1,"2684":1,"2706":1}}],["designer",{"2":{"56":1,"561":2,"570":1,"639":2,"2744":1}}],["designed",{"2":{"37":1,"43":1,"1343":1,"1388":1,"2424":1,"2455":1,"2500":1,"2589":2,"2706":1,"2734":2}}],["despite",{"2":{"312":1,"2567":2,"2763":2,"2844":1}}],["depicting",{"2":{"683":1}}],["depths",{"2":{"2763":1}}],["depth",{"2":{"620":1,"696":2}}],["depressed",{"2":{"1498":2}}],["deprecating",{"2":{"94":1}}],["deprecations",{"2":{"414":1,"2904":1}}],["deprecation",{"0":{"87":1,"88":1,"104":1,"127":1,"170":1,"264":1,"274":1,"282":1,"292":1,"301":1,"302":1,"303":1,"307":1,"313":1,"326":1,"330":1,"336":1,"2902":1,"2904":1},"1":{"88":1,"265":1,"275":1,"276":1,"283":1,"284":1,"293":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"314":1,"315":1,"316":1,"327":1,"331":1,"332":1,"337":1,"338":1,"2903":1,"2904":1},"2":{"184":1,"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"753":1,"2902":4,"2903":2}}],["deprecate",{"2":{"87":1,"94":1,"103":1,"126":1,"149":1,"169":1,"176":1,"184":1,"188":7,"191":7,"294":1,"308":2,"317":1,"328":1,"2707":1}}],["deprecated",{"0":{"27":1,"254":1,"316":1,"331":1,"332":1,"337":1},"2":{"3":1,"7":1,"15":1,"25":1,"27":1,"38":1,"50":1,"75":2,"114":2,"133":1,"134":1,"140":1,"149":1,"157":2,"176":1,"182":1,"188":1,"191":3,"194":1,"195":1,"199":2,"245":1,"249":1,"254":1,"266":1,"277":1,"294":3,"302":1,"303":2,"304":1,"316":1,"317":1,"332":1,"333":3,"338":1,"339":2,"470":1,"1592":1,"1835":1,"2181":11,"2184":2,"2532":10,"2552":1,"2889":1,"2904":1}}],["depracted",{"2":{"199":1}}],["depend",{"2":{"1272":1,"1410":1,"1464":1,"1713":1,"2510":1}}],["depends",{"2":{"716":1,"1410":1,"1838":1,"1936":1,"1974":1,"2331":1,"2344":1,"2345":1,"2346":1,"2417":1,"2705":1,"2930":1,"2931":1}}],["dependent",{"2":{"637":1,"723":1,"764":1,"1294":1,"1392":1,"1393":1,"1556":1,"1662":1,"1979":1,"1982":1,"1985":1,"2471":1,"2903":1}}],["dependencies",{"2":{"73":1,"158":1,"160":2,"234":1,"308":1,"317":1,"384":1,"386":1,"426":1,"1630":1,"2593":1,"2620":1}}],["dependency",{"2":{"24":1,"65":1,"390":1}}],["depending",{"2":{"25":1,"30":1,"33":1,"90":1,"209":1,"633":1,"656":1,"728":1,"746":1,"758":1,"804":1,"829":1,"830":1,"858":1,"862":1,"890":1,"892":1,"922":1,"927":1,"957":1,"961":1,"991":1,"995":1,"1025":1,"1029":1,"1059":1,"1063":1,"1093":1,"1097":1,"1127":1,"1131":1,"1161":1,"1165":1,"1217":1,"1218":1,"1294":1,"1299":1,"1303":1,"1311":1,"1556":1,"1557":1,"1617":1,"1670":2,"1680":1,"1682":1,"1837":1,"1954":1,"2085":1,"2265":1,"2317":1,"2422":1,"2429":1,"2454":1,"2499":1,"2549":1,"2657":1,"2668":1,"2766":1,"2777":2,"2782":1,"2785":1,"2787":1,"2884":1,"2901":1,"2940":1}}],["def1",{"2":{"1332":2}}],["def",{"2":{"160":2,"489":1,"500":1,"522":1,"523":1,"524":1,"533":2,"534":3,"1622":1,"2059":2}}],["defs",{"2":{"114":1,"134":1,"160":1,"236":1,"573":1,"1471":2,"1472":1,"2455":2,"2746":1,"2944":1}}],["deferred",{"0":{"655":1,"656":1,"657":1,"658":1,"659":1,"660":1},"1":{"656":1,"657":1,"658":1,"659":1,"660":1},"2":{"134":1,"149":1,"333":1,"403":1,"412":1,"574":3,"655":1,"656":4,"657":4,"658":2,"659":2,"660":3,"1630":2,"1786":1,"2418":3,"2764":4}}],["deferring",{"2":{"125":1,"185":1,"639":2}}],["defer",{"2":{"114":2,"125":1,"149":1,"185":1,"236":1,"656":1,"657":1,"658":1,"659":1,"1410":9,"1413":6,"2069":1,"2854":4,"2927":1}}],["definable",{"2":{"1517":1}}],["defining",{"0":{"629":1,"2069":1,"2189":1},"1":{"2070":1,"2071":1},"2":{"45":1,"49":2,"50":1,"80":1,"120":1,"196":1,"199":1,"526":1,"627":2,"717":1,"719":1,"722":1,"1207":1,"1208":1,"1422":1,"1423":1,"1491":1,"1493":1,"1595":1,"1609":1,"1611":1,"1613":1,"1616":1,"1617":1,"1618":1,"1619":1,"1661":1,"1662":3,"1665":1,"1702":1,"1734":1,"1742":1,"1781":1,"1849":1,"1985":1,"2069":1,"2085":1,"2206":2,"2272":2,"2304":1,"2331":1,"2453":1,"2509":1,"2650":1,"2702":1,"2912":1,"2922":1,"2926":1,"2930":1}}],["definitions",{"0":{"2561":1},"2":{"50":5,"76":1,"77":1,"93":1,"173":1,"176":1,"182":1,"199":1,"201":3,"211":1,"213":1,"222":1,"333":1,"393":1,"1472":1,"1634":1,"1665":1,"1666":1,"2068":2,"2069":2,"2312":2,"2328":1,"2429":1,"2557":1,"2560":1,"2561":2,"2562":1,"2568":1,"2604":1,"2684":4,"2746":6,"2764":1,"2869":1}}],["definition",{"0":{"1702":1},"2":{"25":2,"36":2,"50":1,"65":1,"90":1,"160":1,"166":1,"191":1,"199":1,"317":1,"527":1,"570":1,"1603":1,"1620":1,"1630":1,"1689":1,"1742":1,"2189":1,"2190":1,"2272":1,"2309":1,"2312":1,"2327":1,"2509":1,"2561":1,"2562":2,"2564":1,"2684":1,"2685":1,"2686":1,"2687":1,"2702":1,"2746":1,"2777":1,"2785":1,"2850":1,"2937":4}}],["define\\tsplit",{"2":{"2271":1}}],["defined",{"0":{"2701":1},"1":{"2702":1,"2703":1},"2":{"75":1,"199":4,"247":1,"298":1,"307":2,"441":1,"512":5,"564":3,"565":3,"569":2,"597":1,"627":1,"632":1,"657":1,"699":2,"726":3,"744":1,"749":2,"750":1,"754":1,"768":1,"793":1,"802":1,"828":5,"857":5,"889":6,"921":5,"956":5,"990":5,"1024":5,"1058":5,"1092":5,"1126":5,"1160":5,"1206":1,"1216":5,"1285":3,"1287":1,"1299":2,"1302":1,"1303":2,"1345":1,"1407":1,"1417":1,"1425":1,"1433":1,"1434":2,"1450":1,"1455":1,"1471":1,"1486":8,"1487":1,"1498":2,"1514":1,"1518":1,"1532":1,"1544":3,"1556":1,"1558":1,"1590":1,"1591":1,"1605":1,"1611":1,"1612":3,"1624":1,"1640":2,"1661":1,"1662":4,"1665":3,"1667":2,"1678":6,"1681":6,"1687":1,"1699":6,"1702":1,"1740":1,"1747":1,"1765":1,"1815":1,"1818":1,"1835":1,"1836":5,"1850":1,"1934":1,"1937":2,"1938":2,"1949":3,"1951":1,"1952":9,"1954":2,"1960":1,"1968":6,"1970":4,"1972":3,"1974":3,"1975":1,"1976":1,"1977":2,"1979":2,"1982":2,"1985":15,"1986":1,"1987":8,"1990":4,"1992":1,"1999":1,"2003":1,"2068":3,"2077":1,"2086":1,"2088":1,"2089":1,"2091":1,"2182":4,"2183":1,"2184":12,"2185":2,"2205":1,"2221":1,"2259":3,"2260":2,"2274":1,"2279":1,"2280":1,"2288":3,"2305":3,"2309":2,"2313":1,"2319":1,"2329":1,"2344":1,"2345":1,"2346":1,"2379":6,"2381":1,"2404":1,"2414":1,"2453":1,"2456":1,"2470":1,"2475":1,"2556":1,"2559":1,"2563":3,"2607":1,"2683":1,"2706":1,"2709":2,"2746":1,"2751":1,"2760":1,"2764":1,"2771":1,"2777":2,"2785":2,"2794":1,"2884":1,"2910":1,"2925":1,"2926":1,"2944":1,"2948":2}}],["defines",{"0":{"331":1,"569":1,"1687":1},"2":{"50":1,"93":1,"114":4,"133":1,"134":3,"149":1,"175":1,"176":2,"191":11,"199":5,"211":2,"222":1,"233":1,"236":9,"249":3,"266":1,"277":1,"294":2,"308":1,"333":1,"339":1,"561":4,"569":1,"572":1,"591":1,"631":1,"685":1,"744":1,"763":1,"764":1,"829":1,"858":1,"890":1,"922":1,"923":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1094":1,"1127":1,"1128":1,"1161":1,"1213":1,"1217":1,"1286":1,"1291":1,"1295":1,"1299":1,"1302":1,"1303":1,"1479":1,"1480":1,"1484":1,"1489":1,"1498":1,"1554":1,"1556":1,"1557":1,"1635":1,"1636":1,"1637":1,"1665":2,"1702":1,"1730":1,"1771":1,"1772":1,"1774":2,"1776":1,"1849":1,"1952":7,"1953":1,"1970":1,"1985":1,"1988":1,"1989":1,"2047":1,"2048":1,"2071":1,"2077":1,"2079":1,"2085":2,"2182":1,"2184":1,"2252":2,"2259":1,"2260":4,"2289":1,"2322":1,"2375":1,"2379":2,"2384":1,"2391":1,"2561":2,"2585":1,"2682":1,"2683":1,"2701":1,"2705":1,"2709":1,"2711":1,"2721":2,"2745":1,"2746":2,"2868":1,"2894":1,"2934":1,"2944":1,"2948":1}}],["define",{"0":{"599":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1511":1,"1512":1,"1615":1,"1616":1,"1719":1,"1721":1,"2274":1},"1":{"1720":1,"1722":1},"2":{"13":1,"14":3,"25":2,"28":1,"31":1,"34":1,"49":2,"50":1,"69":1,"75":1,"94":1,"98":1,"107":1,"114":1,"120":3,"134":2,"149":1,"154":1,"157":1,"169":5,"176":2,"184":5,"191":4,"211":1,"222":1,"236":2,"249":2,"266":1,"273":3,"303":1,"307":1,"308":1,"338":1,"354":3,"379":3,"489":1,"512":1,"555":1,"561":28,"562":6,"563":3,"564":28,"565":13,"566":5,"569":6,"570":25,"630":1,"647":2,"660":2,"666":1,"696":1,"699":1,"717":8,"718":5,"719":2,"721":7,"722":1,"726":1,"727":1,"744":1,"748":1,"749":15,"750":7,"751":1,"754":6,"755":5,"756":5,"759":7,"762":3,"764":2,"802":1,"828":1,"829":1,"857":1,"858":1,"859":2,"860":4,"861":1,"889":1,"890":1,"891":1,"921":1,"922":1,"923":1,"924":2,"925":4,"926":1,"956":1,"957":1,"958":2,"959":4,"960":1,"990":1,"991":1,"992":2,"993":4,"994":1,"1024":1,"1025":1,"1026":2,"1027":4,"1028":1,"1058":1,"1059":1,"1060":2,"1061":4,"1062":1,"1092":1,"1093":1,"1094":1,"1095":4,"1096":1,"1126":1,"1127":1,"1128":1,"1129":4,"1130":1,"1160":1,"1161":1,"1162":2,"1163":4,"1164":1,"1195":2,"1198":3,"1201":6,"1203":3,"1204":3,"1205":2,"1207":1,"1208":1,"1209":1,"1216":1,"1217":1,"1248":5,"1269":1,"1285":1,"1287":1,"1288":1,"1291":1,"1295":1,"1297":1,"1299":3,"1300":1,"1301":1,"1302":1,"1303":3,"1331":1,"1347":5,"1354":2,"1380":1,"1383":1,"1392":1,"1396":1,"1405":1,"1412":1,"1417":1,"1419":8,"1420":1,"1422":1,"1431":3,"1434":1,"1440":1,"1441":2,"1446":2,"1451":1,"1464":1,"1466":1,"1472":1,"1474":9,"1477":4,"1478":1,"1479":3,"1480":6,"1481":1,"1482":3,"1483":4,"1484":2,"1485":2,"1488":1,"1489":2,"1490":2,"1491":1,"1492":1,"1493":1,"1501":2,"1502":2,"1503":1,"1510":1,"1518":2,"1520":1,"1527":3,"1544":1,"1545":1,"1546":2,"1554":1,"1556":3,"1557":3,"1579":1,"1589":2,"1590":3,"1591":1,"1594":2,"1595":1,"1597":1,"1598":1,"1600":1,"1601":2,"1602":1,"1605":2,"1608":1,"1609":8,"1610":2,"1619":1,"1620":1,"1622":1,"1625":2,"1639":4,"1662":2,"1663":1,"1665":10,"1666":10,"1667":1,"1670":4,"1676":2,"1684":5,"1685":8,"1687":3,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1702":1,"1719":1,"1720":1,"1721":2,"1722":1,"1740":4,"1741":2,"1768":1,"1786":1,"1788":5,"1792":2,"1794":1,"1795":1,"1800":1,"1801":2,"1802":1,"1803":1,"1835":1,"1836":2,"1843":1,"1846":1,"1847":1,"1849":21,"1850":1,"1851":1,"1852":16,"1921":1,"1922":1,"1924":2,"1935":1,"1936":1,"1937":6,"1938":2,"1939":1,"1940":1,"1947":1,"1949":2,"1950":1,"1951":1,"1952":4,"1954":5,"1960":3,"1962":2,"1968":1,"1983":2,"1985":1,"1986":2,"1994":2,"1998":1,"2001":2,"2003":1,"2040":2,"2041":6,"2042":3,"2043":10,"2044":2,"2046":5,"2047":3,"2048":9,"2049":1,"2050":4,"2051":3,"2052":2,"2053":1,"2056":1,"2068":1,"2069":2,"2072":1,"2077":2,"2079":1,"2082":1,"2083":1,"2085":50,"2086":6,"2087":2,"2088":1,"2090":1,"2091":21,"2095":1,"2096":1,"2179":3,"2181":1,"2182":1,"2184":1,"2185":1,"2186":3,"2188":1,"2189":5,"2191":2,"2192":1,"2193":1,"2206":2,"2207":2,"2217":1,"2221":1,"2247":1,"2248":1,"2250":1,"2259":2,"2260":4,"2271":1,"2272":2,"2273":1,"2274":2,"2275":7,"2276":10,"2277":5,"2278":12,"2286":1,"2288":1,"2289":1,"2290":1,"2293":1,"2300":1,"2301":1,"2302":1,"2309":5,"2312":1,"2316":1,"2317":1,"2318":4,"2319":1,"2322":1,"2327":2,"2328":1,"2330":1,"2331":3,"2375":3,"2379":1,"2384":4,"2391":4,"2416":2,"2418":5,"2453":1,"2454":12,"2461":1,"2556":1,"2557":1,"2561":2,"2650":4,"2652":1,"2685":5,"2700":3,"2702":1,"2705":5,"2709":4,"2718":1,"2721":1,"2746":3,"2751":2,"2752":1,"2759":1,"2763":13,"2771":2,"2788":4,"2794":3,"2890":2,"2891":1,"2892":3,"2910":2,"2912":2,"2919":2,"2920":2,"2921":2,"2922":1,"2923":1,"2924":2,"2925":1,"2926":4,"2927":1,"2928":7,"2930":3,"2937":1,"2944":1,"2947":1}}],["default=",{"2":{"489":1}}],["defaulting",{"2":{"328":1}}],["default60",{"2":{"317":1}}],["defaults",{"0":{"474":1,"2459":1,"2583":1},"1":{"2460":1},"2":{"69":1,"77":1,"114":1,"134":2,"149":1,"160":2,"176":2,"199":1,"236":4,"249":1,"303":1,"308":5,"317":1,"328":2,"333":1,"338":1,"557":1,"564":4,"565":1,"625":1,"719":1,"764":1,"1248":1,"1269":1,"1392":1,"1393":1,"1480":1,"1556":1,"1952":1,"1960":1,"1966":1,"1967":1,"1974":1,"1978":1,"1979":1,"1981":1,"1982":1,"1983":2,"2274":1,"2583":1,"2587":1,"2762":2,"2909":1,"2910":1}}],["default",{"0":{"137":1,"166":1,"293":1,"305":1,"314":1,"533":1,"556":1,"587":1,"1346":1,"1465":1,"2771":1,"2918":1},"1":{"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1},"2":{"14":1,"28":1,"30":1,"31":1,"33":1,"38":1,"49":1,"50":2,"69":1,"74":1,"77":1,"83":1,"93":2,"114":8,"124":1,"125":1,"134":2,"137":1,"143":2,"149":8,"156":1,"160":2,"164":1,"166":1,"176":10,"183":8,"191":8,"194":5,"195":3,"199":2,"202":1,"206":1,"209":1,"211":5,"222":1,"236":7,"249":4,"266":3,"273":1,"277":2,"283":1,"285":5,"289":1,"293":2,"294":9,"303":3,"305":2,"307":1,"308":2,"314":2,"317":6,"328":6,"338":3,"393":3,"397":1,"429":2,"430":1,"433":2,"437":1,"439":2,"444":1,"445":1,"448":1,"450":1,"452":2,"453":2,"459":1,"460":3,"462":1,"463":1,"473":2,"474":1,"476":3,"482":3,"483":3,"484":2,"485":3,"489":1,"492":2,"494":3,"533":1,"555":1,"556":1,"561":5,"568":2,"570":4,"575":1,"587":1,"588":7,"589":5,"618":1,"619":2,"622":1,"624":1,"631":1,"639":2,"660":1,"666":1,"669":4,"671":1,"683":2,"684":2,"691":1,"696":4,"699":3,"710":2,"715":1,"717":1,"719":1,"720":1,"726":1,"744":2,"746":1,"748":2,"749":2,"750":2,"751":2,"754":2,"755":1,"756":1,"757":1,"759":2,"763":1,"764":2,"765":1,"766":1,"802":1,"828":1,"857":1,"859":1,"860":2,"861":1,"889":1,"921":1,"924":1,"925":2,"926":1,"956":1,"958":1,"959":2,"960":1,"990":1,"992":1,"993":2,"994":1,"1024":1,"1026":1,"1027":2,"1028":1,"1058":1,"1060":1,"1061":2,"1062":1,"1092":1,"1095":4,"1096":1,"1126":1,"1129":4,"1130":1,"1160":1,"1162":1,"1163":3,"1164":1,"1193":1,"1198":1,"1201":1,"1203":2,"1204":2,"1205":2,"1207":2,"1208":2,"1213":2,"1216":1,"1248":1,"1269":1,"1285":1,"1287":1,"1289":1,"1290":1,"1291":1,"1295":1,"1297":1,"1299":1,"1302":1,"1303":1,"1320":1,"1322":1,"1343":1,"1359":1,"1361":1,"1377":1,"1383":1,"1388":1,"1392":1,"1395":1,"1396":1,"1397":1,"1407":1,"1412":1,"1413":1,"1416":1,"1417":13,"1419":2,"1422":6,"1425":1,"1428":18,"1430":2,"1431":1,"1433":5,"1449":1,"1455":2,"1464":1,"1465":1,"1472":1,"1484":1,"1485":1,"1486":4,"1487":2,"1489":1,"1490":1,"1491":2,"1492":1,"1493":7,"1495":1,"1501":1,"1503":3,"1510":3,"1517":4,"1526":2,"1528":1,"1532":1,"1542":1,"1544":5,"1547":1,"1548":1,"1554":1,"1556":2,"1557":1,"1579":1,"1589":2,"1590":1,"1593":2,"1595":1,"1597":1,"1598":1,"1600":2,"1608":1,"1609":2,"1610":2,"1612":5,"1620":10,"1622":1,"1623":1,"1624":1,"1625":15,"1638":3,"1662":2,"1665":3,"1667":1,"1668":2,"1670":1,"1675":1,"1678":1,"1680":1,"1681":4,"1687":1,"1699":1,"1739":1,"1740":1,"1741":1,"1742":1,"1782":2,"1784":1,"1785":1,"1786":1,"1788":2,"1800":1,"1803":1,"1836":1,"1843":1,"1846":3,"1851":1,"1852":10,"1926":1,"1934":3,"1935":2,"1936":1,"1937":3,"1939":2,"1940":1,"1945":4,"1946":2,"1949":2,"1950":1,"1951":3,"1952":4,"1954":3,"1959":1,"1962":1,"1965":1,"1966":1,"1967":1,"1968":2,"1970":2,"1971":1,"1972":1,"1974":5,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1985":5,"1986":3,"1987":1,"1990":1,"1994":4,"1996":1,"1999":1,"2001":4,"2003":3,"2004":1,"2006":1,"2011":1,"2012":7,"2014":2,"2039":1,"2044":1,"2046":3,"2048":2,"2056":2,"2068":3,"2069":3,"2072":1,"2076":1,"2082":3,"2086":1,"2090":1,"2091":14,"2095":1,"2179":2,"2182":12,"2184":1,"2185":1,"2189":1,"2190":1,"2217":1,"2220":1,"2221":2,"2223":1,"2250":1,"2258":1,"2259":2,"2260":1,"2270":1,"2271":1,"2273":2,"2275":2,"2277":1,"2278":1,"2284":2,"2285":1,"2288":2,"2289":2,"2290":1,"2293":2,"2294":1,"2297":2,"2298":1,"2304":1,"2309":2,"2317":3,"2318":2,"2319":2,"2322":5,"2323":1,"2327":2,"2328":1,"2330":1,"2331":1,"2379":2,"2381":2,"2383":1,"2384":2,"2391":2,"2400":1,"2402":1,"2404":1,"2407":3,"2414":2,"2415":1,"2417":4,"2418":7,"2432":1,"2453":5,"2459":1,"2460":2,"2466":1,"2497":1,"2498":1,"2499":2,"2510":1,"2512":1,"2523":3,"2531":2,"2558":7,"2560":1,"2561":1,"2583":3,"2584":2,"2587":4,"2590":1,"2591":1,"2606":1,"2614":2,"2615":1,"2619":1,"2626":1,"2629":7,"2640":1,"2659":1,"2662":1,"2663":2,"2676":3,"2683":2,"2685":2,"2686":1,"2687":1,"2700":1,"2701":1,"2702":2,"2705":2,"2714":3,"2717":1,"2745":3,"2746":10,"2747":4,"2759":1,"2761":2,"2762":2,"2763":11,"2771":7,"2774":1,"2795":1,"2853":1,"2854":15,"2855":2,"2856":8,"2857":14,"2858":5,"2860":2,"2861":5,"2862":1,"2863":1,"2864":1,"2865":1,"2866":3,"2867":1,"2869":3,"2870":3,"2871":22,"2872":7,"2873":1,"2875":3,"2877":24,"2878":28,"2879":3,"2880":16,"2881":2,"2882":7,"2883":4,"2884":1,"2886":1,"2889":1,"2891":1,"2894":1,"2910":1,"2911":1,"2912":4,"2913":4,"2915":2,"2916":3,"2917":2,"2919":3,"2920":3,"2921":5,"2922":1,"2923":1,"2924":2,"2925":1,"2926":1,"2927":3,"2928":3,"2930":1,"2949":1}}],["delkey",{"2":{"1367":5}}],["delegation",{"2":{"2279":1}}],["delegating",{"2":{"570":1}}],["delegates",{"2":{"2278":1}}],["delegated",{"2":{"2278":1}}],["delegate",{"2":{"2278":1}}],["deleting",{"0":{"482":1,"498":1},"2":{"519":1}}],["deleted",{"2":{"16":1,"446":1,"2393":1,"2398":1}}],["delete",{"0":{"1367":1},"2":{"8":1,"31":1,"34":1,"99":1,"152":1,"211":1,"222":1,"255":1,"266":1,"409":1,"482":1,"498":1,"711":1,"712":3,"1367":4,"1593":1,"1694":1,"1767":1,"1774":3,"1955":2,"2068":1,"2222":1,"2379":1,"2510":4,"2544":1,"2548":2,"2550":1,"2949":2}}],["delimited",{"2":{"2762":1}}],["delimiter",{"2":{"2762":1}}],["delivered",{"2":{"675":1,"681":1}}],["deliberately",{"2":{"499":1,"644":1}}],["delilah",{"2":{"143":2}}],["delikeeb",{"2":{"86":8}}],["delayed",{"2":{"1448":1,"1493":1,"1960":1,"2913":1}}],["delays",{"2":{"574":1,"656":1,"1448":1,"1934":1,"2418":1,"2685":1,"2686":1,"2687":1}}],["delay",{"0":{"1456":2,"1457":2,"1786":1,"2230":1,"2234":1,"2248":1},"1":{"2231":1,"2235":1},"2":{"74":3,"112":6,"114":4,"120":1,"149":2,"176":5,"191":1,"222":2,"236":1,"249":2,"266":2,"317":1,"328":1,"333":1,"561":4,"564":5,"566":2,"656":2,"657":1,"658":1,"720":1,"1441":1,"1444":3,"1448":4,"1455":2,"1456":1,"1486":2,"1493":1,"1662":1,"1667":3,"1786":6,"1787":1,"1935":5,"1936":2,"1939":4,"1954":1,"2003":2,"2009":1,"2014":1,"2046":1,"2086":3,"2222":1,"2228":1,"2230":1,"2232":1,"2234":2,"2247":2,"2248":2,"2327":1,"2576":1,"2685":3,"2744":3,"2781":2,"2854":5,"2858":1,"2872":1,"2873":2,"2882":1,"2913":2}}],["del",{"0":{"8":1},"2":{"8":1,"63":1,"120":1,"375":1,"498":2,"589":2,"1363":3,"1364":3,"1367":9,"1441":1,"1444":1,"1600":1,"1774":1,"2068":1,"2222":1,"2381":2,"2510":1,"2548":1,"2564":1}}],["deltas",{"2":{"1974":1,"2410":2,"2762":1}}],["delta",{"0":{"2783":1},"2":{"100":1,"211":1,"222":1,"1935":2,"1936":1,"1939":2,"1940":4,"1983":2,"2410":5,"2762":1,"2777":2,"2781":8,"2783":9,"2787":1}}],["delt",{"0":{"8":1},"2":{"8":1,"188":1,"191":1}}],["u8",{"2":{"2893":2}}],["u80",{"2":{"211":1}}],["u03a8",{"2":{"2852":2}}],["u2192",{"2":{"2800":2}}],["u2193",{"2":{"2800":2}}],["u2190",{"2":{"2800":2}}],["u2191",{"2":{"2800":2}}],["u32",{"2":{"2780":1}}],["udr1",{"2":{"2043":1}}],["udev",{"0":{"1316":1},"2":{"199":2,"426":1,"1315":2,"1316":3,"1332":1,"2417":1}}],["ubrr1l",{"2":{"2043":1}}],["ubrr1h",{"2":{"2043":1}}],["ubuntu",{"2":{"513":1,"2593":1,"2599":1,"2626":1,"2628":3,"2653":1,"2673":1}}],["ultra",{"2":{"1427":1}}],["ultimately",{"2":{"2751":1}}],["ultimate",{"2":{"516":1}}],["ukrainian",{"2":{"2887":2}}],["ukr",{"2":{"2330":1}}],["uk",{"2":{"762":1,"1593":1,"2474":1,"2887":3}}],["uz",{"2":{"509":1}}],["uzu42",{"2":{"176":2}}],["urls",{"2":{"333":1,"378":3}}],["url",{"2":{"308":2,"339":1,"378":3,"586":1,"668":1,"1630":2,"2637":1,"2639":1,"2746":1,"2795":1,"2852":2}}],["urbanvanilla",{"2":{"211":1}}],["ug",{"2":{"283":3,"589":16,"1667":10,"2181":11,"2192":1,"2532":11}}],["ugfx",{"0":{"10":1},"2":{"10":1,"114":1,"134":1}}],["u",{"2":{"266":1,"375":1,"444":2,"589":2,"1329":3,"2068":1,"2070":1,"2296":1,"2300":1,"2301":4,"2327":1,"2344":1,"2386":1,"2389":1,"2425":3,"2502":1,"2503":3,"2510":3,"2542":3,"2563":1,"2600":1,"2640":2,"2762":4}}],["uvwxyz",{"2":{"266":1,"308":1}}],["uefi",{"0":{"1387":1},"2":{"263":1}}],["umsel10",{"2":{"2043":1}}],["um",{"2":{"219":1,"2329":3,"2332":1,"2418":1,"2540":1}}],["um70",{"2":{"114":1}}],["u16",{"2":{"191":1}}],["u+ffff",{"2":{"2331":2}}],["u+10ffff",{"2":{"2329":1}}],["u+",{"2":{"2329":1}}],["u+7fff",{"2":{"2329":1}}],["u+exxx",{"2":{"191":1}}],["u+axxx",{"2":{"191":1}}],["utc",{"2":{"522":1,"523":1,"524":2}}],["utf",{"2":{"211":1}}],["ut472",{"2":{"159":2}}],["ut47",{"2":{"149":1,"328":1}}],["utilise",{"2":{"2746":1}}],["utilises",{"2":{"2707":1}}],["utilised",{"2":{"2457":1,"2902":2}}],["utilising",{"2":{"1196":1,"2707":1}}],["utilisation",{"2":{"575":1}}],["utilize",{"2":{"555":1,"2869":1}}],["utilized",{"2":{"555":1,"1205":1}}],["utilities",{"2":{"133":1,"134":1,"149":1,"426":1}}],["utility",{"2":{"49":1,"199":1,"266":1,"709":1,"1472":1,"2394":2,"2397":1,"2584":1}}],["utils",{"2":{"249":1}}],["util",{"2":{"114":1,"211":1,"236":2,"266":1,"285":2,"332":1,"337":1,"422":1,"509":1,"510":1,"511":1,"568":2,"1316":1,"1948":1,"2273":2,"2287":1,"2393":3,"2394":6,"2395":3,"2396":3,"2398":3,"2399":4,"2407":7,"2417":2,"2505":1,"2508":1,"2744":1}}],["uaccess",{"2":{"1332":3}}],["ua62",{"2":{"143":2}}],["uart1",{"2":{"2699":2}}],["uart0",{"2":{"1405":2,"2699":2}}],["uart",{"0":{"1266":1,"1271":1,"1273":1,"1275":1,"1277":1,"1279":1,"1281":1,"2699":1},"1":{"1267":1,"1268":1,"1269":1,"1270":1,"1271":1,"1272":2,"1273":1,"1274":2,"1275":1,"1276":2,"1277":1,"1278":2,"1279":1,"1280":2,"1281":1,"1282":2},"2":{"50":1,"73":1,"75":1,"133":2,"134":2,"149":4,"191":1,"199":1,"234":2,"236":2,"249":1,"294":1,"1192":1,"1266":1,"1267":3,"1268":1,"1269":12,"1271":1,"1281":1,"1395":2,"2374":2,"2375":1,"2431":1,"2692":1,"2695":1,"2699":1,"2702":4,"2704":2}}],["ucpol1",{"2":{"2043":1}}],["ucsr1b",{"2":{"2043":3}}],["ucsr1a",{"2":{"2043":3}}],["ucsr1c",{"2":{"2043":2}}],["ucsz10",{"2":{"2043":1}}],["ucis",{"0":{"2359":1,"2360":1,"2362":1,"2364":1,"2367":1,"2369":1,"2370":1,"2371":1},"1":{"2361":1,"2363":1,"2365":1,"2366":1,"2368":1,"2372":1},"2":{"199":1,"222":1,"2330":12,"2360":1,"2361":1,"2371":1,"2372":1,"2418":1,"2940":1}}],["uc",{"2":{"134":1,"188":1,"191":1,"2329":3,"2331":2,"2332":9,"2418":1,"2540":9}}],["ui",{"2":{"120":1,"191":1,"580":1}}],["uint24",{"2":{"2778":1,"2779":1,"2787":1,"2788":1,"2789":2}}],["uintptr",{"2":{"1779":2}}],["uint64",{"2":{"1420":1}}],["uint",{"2":{"134":1}}],["uint32",{"0":{"1271":1,"2033":1,"2035":1,"2238":1,"2347":1,"2354":1},"1":{"1272":1,"2034":1,"2036":1,"2239":1,"2348":1,"2355":1,"2356":1},"2":{"105":4,"114":1,"176":1,"647":1,"656":1,"1033":5,"1272":1,"1417":1,"1418":4,"1419":12,"1420":1,"1641":2,"2036":1,"2239":1,"2277":1,"2329":1,"2330":1,"2348":1,"2764":7,"2779":2,"2780":2,"2787":2}}],["uint8",{"0":{"702":3,"704":3,"707":1,"735":3,"737":3,"739":1,"769":2,"772":2,"775":2,"778":3,"781":3,"784":2,"787":3,"790":2,"793":1,"810":2,"812":3,"814":3,"816":1,"818":1,"820":1,"822":1,"835":1,"837":3,"839":3,"841":3,"843":1,"845":1,"847":1,"849":1,"851":1,"853":1,"867":1,"869":3,"871":3,"873":3,"875":1,"877":1,"879":4,"881":2,"883":1,"885":1,"897":1,"899":3,"901":2,"903":3,"905":3,"907":1,"909":1,"911":1,"913":1,"915":1,"917":1,"932":1,"934":3,"936":2,"938":3,"940":3,"942":1,"944":1,"946":1,"948":1,"950":1,"952":1,"966":1,"968":3,"970":2,"972":3,"974":3,"976":1,"978":1,"980":1,"982":1,"984":1,"986":1,"1000":1,"1002":3,"1004":2,"1006":3,"1008":3,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1020":1,"1034":1,"1036":3,"1038":2,"1040":3,"1042":3,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1054":1,"1068":1,"1070":3,"1072":2,"1074":3,"1076":3,"1078":1,"1080":1,"1082":4,"1084":2,"1086":1,"1088":1,"1102":1,"1104":3,"1106":2,"1108":3,"1110":3,"1112":1,"1114":1,"1116":4,"1118":2,"1120":1,"1122":1,"1136":1,"1138":3,"1140":2,"1142":3,"1144":3,"1146":1,"1148":1,"1150":4,"1152":2,"1154":1,"1156":1,"1170":1,"1172":3,"1174":2,"1176":3,"1178":3,"1180":1,"1182":1,"1184":4,"1186":2,"1188":1,"1190":1,"1223":1,"1225":3,"1227":2,"1229":3,"1231":3,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1243":1,"1251":1,"1254":1,"1259":1,"1262":1,"1273":1,"1275":1,"1277":1,"1306":3,"1308":3,"1566":1,"1568":1,"1582":1,"1585":1,"1587":1,"1711":2,"1719":2,"1721":2,"1725":1,"1727":1,"1730":1,"1732":1,"1734":1,"1736":1,"1751":1,"1753":1,"1755":1,"1758":1,"1865":2,"1867":1,"1869":1,"1871":1,"1877":1,"1883":1,"1889":1,"1891":1,"1893":1,"1903":1,"1912":2,"1915":2,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2061":2,"2063":2,"2107":4,"2109":3,"2111":1,"2113":1,"2119":1,"2125":1,"2131":1,"2137":1,"2143":1,"2145":1,"2147":1,"2157":1,"2159":3,"2161":3,"2172":2,"2175":2,"2230":1,"2234":1,"2242":1,"2244":1,"2334":1,"2336":1,"2340":1,"2342":1,"2351":1,"2354":1,"2357":1,"2362":1},"1":{"703":3,"705":3,"708":1,"736":3,"738":3,"740":1,"770":2,"771":2,"773":2,"774":2,"776":2,"777":2,"779":3,"780":3,"782":3,"783":3,"785":2,"786":2,"788":3,"789":3,"791":2,"792":2,"794":1,"795":1,"811":2,"813":3,"815":3,"817":1,"819":1,"821":1,"823":1,"836":1,"838":3,"840":3,"842":3,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"868":1,"870":3,"872":3,"874":3,"876":1,"878":1,"880":4,"882":2,"884":1,"886":1,"898":1,"900":3,"902":2,"904":3,"906":3,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"933":1,"935":3,"937":2,"939":3,"941":3,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"967":1,"969":3,"971":2,"973":3,"975":3,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"1001":1,"1003":3,"1005":2,"1007":3,"1009":3,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":3,"1039":2,"1041":3,"1043":3,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1069":1,"1071":3,"1073":2,"1075":3,"1077":3,"1079":1,"1081":1,"1083":4,"1085":2,"1087":1,"1089":1,"1103":1,"1105":3,"1107":2,"1109":3,"1111":3,"1113":1,"1115":1,"1117":4,"1119":2,"1121":1,"1123":1,"1137":1,"1139":3,"1141":2,"1143":3,"1145":3,"1147":1,"1149":1,"1151":4,"1153":2,"1155":1,"1157":1,"1171":1,"1173":3,"1175":2,"1177":3,"1179":3,"1181":1,"1183":1,"1185":4,"1187":2,"1189":1,"1191":1,"1224":1,"1226":3,"1228":2,"1230":3,"1232":3,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1252":1,"1253":1,"1255":1,"1256":1,"1260":1,"1261":1,"1263":1,"1264":1,"1274":1,"1276":1,"1278":1,"1307":3,"1309":3,"1567":1,"1569":1,"1583":1,"1712":2,"1720":2,"1722":2,"1726":1,"1728":1,"1729":1,"1731":1,"1733":1,"1735":1,"1737":1,"1752":1,"1754":1,"1756":1,"1757":1,"1759":1,"1866":2,"1868":1,"1870":1,"1872":1,"1878":1,"1884":1,"1890":1,"1892":1,"1894":1,"1904":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2031":1,"2062":2,"2064":2,"2108":4,"2110":3,"2112":1,"2114":1,"2120":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2158":1,"2162":3,"2231":1,"2235":1,"2243":1,"2245":1,"2335":1,"2337":1,"2341":1,"2343":1,"2352":1,"2353":1,"2355":1,"2356":1,"2358":1,"2363":1},"2":{"46":1,"90":4,"105":4,"211":1,"323":1,"625":2,"632":2,"639":3,"647":1,"703":3,"705":3,"708":1,"732":4,"736":3,"738":3,"740":1,"745":1,"770":2,"773":2,"776":2,"779":3,"782":3,"785":2,"788":3,"791":2,"794":1,"808":4,"811":2,"813":3,"815":3,"817":1,"819":1,"821":1,"823":1,"834":5,"836":1,"838":3,"840":3,"842":3,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"866":5,"868":1,"870":3,"872":3,"874":3,"876":1,"878":1,"880":4,"882":2,"884":1,"886":1,"896":5,"898":1,"900":3,"902":2,"904":3,"906":3,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"931":5,"933":1,"935":3,"937":2,"939":3,"941":3,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"965":5,"967":1,"969":3,"971":2,"973":3,"975":3,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"999":5,"1001":1,"1003":3,"1005":2,"1007":3,"1009":3,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":3,"1039":2,"1041":3,"1043":3,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1067":5,"1069":1,"1071":3,"1073":2,"1075":3,"1077":3,"1079":1,"1081":1,"1083":4,"1085":2,"1087":1,"1089":1,"1101":5,"1103":1,"1105":3,"1107":2,"1109":3,"1111":3,"1113":1,"1115":1,"1117":4,"1119":2,"1121":1,"1123":1,"1135":5,"1137":1,"1139":3,"1141":2,"1143":3,"1145":3,"1147":1,"1149":1,"1151":4,"1153":2,"1155":1,"1157":1,"1169":5,"1171":2,"1173":3,"1175":2,"1177":3,"1179":3,"1181":1,"1183":1,"1185":4,"1187":2,"1189":1,"1191":1,"1222":5,"1224":1,"1226":3,"1228":2,"1230":3,"1232":3,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1252":1,"1255":1,"1260":1,"1263":1,"1274":1,"1278":1,"1280":1,"1307":3,"1309":3,"1367":1,"1417":1,"1431":2,"1447":1,"1472":2,"1487":3,"1492":2,"1527":1,"1532":2,"1533":2,"1534":1,"1535":3,"1551":1,"1567":1,"1586":1,"1588":1,"1612":1,"1617":2,"1618":2,"1620":2,"1641":2,"1668":2,"1702":1,"1712":1,"1720":2,"1722":2,"1726":1,"1731":1,"1733":1,"1735":1,"1737":1,"1747":1,"1752":1,"1754":1,"1756":1,"1759":1,"1779":3,"1781":3,"1835":2,"1839":1,"1843":5,"1850":3,"1855":2,"1866":2,"1868":1,"1870":1,"1872":1,"1890":1,"1892":1,"1913":2,"1916":2,"1947":2,"1953":1,"1954":15,"1988":1,"1990":1,"2003":1,"2008":3,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2057":2,"2059":3,"2062":2,"2064":2,"2069":2,"2070":1,"2071":1,"2073":1,"2074":1,"2075":1,"2077":1,"2079":3,"2088":3,"2094":2,"2095":12,"2096":5,"2108":4,"2110":3,"2112":1,"2114":1,"2144":1,"2146":1,"2160":3,"2162":3,"2173":2,"2176":2,"2182":1,"2187":7,"2231":1,"2235":1,"2243":1,"2245":1,"2254":11,"2277":6,"2286":2,"2290":6,"2300":2,"2305":1,"2337":1,"2341":1,"2343":1,"2355":1,"2358":1,"2372":1,"2381":2,"2562":1,"2652":6,"2763":4,"2764":34,"2778":2,"2779":1,"2781":4,"2782":7,"2784":1,"2787":6,"2911":1}}],["uint16",{"0":{"702":1,"769":2,"772":2,"775":2,"778":3,"781":2,"784":3,"787":2,"790":3,"793":1,"1251":1,"1259":1,"1262":1,"1277":1,"1279":1,"1809":1,"1815":1,"1820":1,"1823":2,"1826":3,"1829":4,"1832":5,"2240":1,"2351":1,"2364":1},"1":{"703":1,"770":2,"771":2,"773":2,"774":2,"776":2,"777":2,"779":3,"780":3,"782":2,"783":2,"785":3,"786":3,"788":2,"789":2,"791":3,"792":3,"794":1,"795":1,"1252":1,"1253":1,"1260":1,"1261":1,"1263":1,"1264":1,"1278":1,"1280":1,"1810":1,"1811":1,"1816":1,"1817":1,"1821":1,"1822":1,"1824":2,"1825":2,"1827":3,"1828":3,"1830":4,"1831":4,"1833":5,"1834":5,"2241":1,"2352":1,"2353":1,"2365":1,"2366":1},"2":{"22":6,"46":2,"194":2,"195":2,"247":1,"307":2,"324":1,"325":1,"589":1,"593":2,"631":1,"632":3,"647":1,"703":1,"770":2,"773":2,"776":2,"779":3,"782":2,"785":3,"788":2,"791":3,"794":1,"1252":1,"1260":1,"1263":1,"1278":1,"1280":1,"1329":1,"1366":1,"1367":1,"1417":2,"1420":1,"1431":1,"1446":4,"1447":2,"1462":2,"1471":1,"1472":2,"1480":1,"1491":1,"1503":1,"1510":2,"1517":3,"1532":1,"1533":1,"1600":2,"1602":2,"1603":2,"1604":2,"1605":7,"1612":11,"1613":4,"1617":5,"1618":6,"1640":1,"1667":1,"1689":1,"1743":3,"1749":3,"1781":2,"1795":1,"1810":1,"1816":1,"1821":1,"1824":2,"1827":3,"1830":4,"1833":5,"1924":2,"1947":1,"1952":1,"1954":7,"1962":1,"1984":2,"1986":1,"1988":1,"1989":1,"1993":1,"1994":1,"2005":2,"2006":1,"2008":3,"2013":1,"2015":1,"2069":2,"2070":1,"2071":3,"2073":1,"2074":1,"2075":1,"2076":1,"2077":2,"2079":4,"2191":2,"2225":1,"2241":1,"2286":1,"2289":1,"2290":4,"2300":2,"2312":1,"2316":4,"2319":2,"2352":1,"2365":1,"2381":4,"2456":1,"2557":1,"2562":1,"2578":1,"2579":1,"2580":1,"2585":1,"2763":45,"2764":39,"2768":1,"2776":1,"2779":3,"2781":1,"2783":4,"2787":1,"2910":1,"2911":2,"2912":2,"2919":1,"2920":1,"2921":1,"2923":1,"2924":4,"2927":2,"2928":1,"2930":1,"2938":1,"2940":38}}],["uf2families",{"2":{"285":1}}],["uf2boot",{"0":{"2402":1},"1":{"2403":1},"2":{"236":1,"2402":5}}],["uf2conv",{"2":{"211":1,"222":1,"328":1}}],["uf2",{"0":{"2404":1,"2672":1},"2":{"93":1,"114":1,"160":1,"176":2,"199":3,"211":1,"294":1,"2273":2,"2400":1,"2401":2,"2402":1,"2403":2,"2404":1,"2599":1,"2700":1,"2854":1}}],["unknowingly",{"2":{"2567":1}}],["unknown",{"0":{"1318":1},"2":{"111":1,"377":1,"2317":2,"2318":2,"2319":2,"2455":1,"2508":1}}],["unblink",{"2":{"2191":4}}],["unwanted",{"2":{"1786":1,"2212":1}}],["unnecessarily",{"2":{"1248":1,"1431":1}}],["unnecessary",{"2":{"134":1,"236":1,"266":1,"277":1,"303":1,"333":1,"338":1,"615":1,"2561":1}}],["unquoted",{"2":{"671":1}}],["unusable",{"0":{"2666":1},"2":{"1320":1}}],["unusual",{"2":{"525":1,"683":1,"1589":1,"2937":1}}],["unuseful",{"2":{"266":1}}],["unused",{"0":{"1644":1},"2":{"50":1,"75":1,"149":1,"176":1,"191":1,"199":8,"333":2,"599":1,"1294":1,"1319":1,"1396":1,"1408":1,"1639":1,"1909":1,"1914":1,"2169":1,"2174":1,"2208":2,"2272":3,"2278":1,"2418":1,"2746":1,"2872":1}}],["unfiltered",{"2":{"2379":2}}],["unfamiliar",{"2":{"519":1}}],["unfortunately",{"2":{"173":1,"279":1,"596":1,"1290":1,"1499":1,"1528":1,"2554":1,"2664":1,"2886":1,"2930":1,"2941":1}}],["uncle",{"2":{"2941":1}}],["unclear",{"2":{"512":1,"517":1,"619":1}}],["unchanged",{"2":{"2911":1}}],["uncapitalizing",{"2":{"1597":1}}],["unconfigured",{"2":{"2872":1}}],["unconditionally",{"2":{"49":1,"114":1}}],["uncomment",{"2":{"1612":1}}],["uncommon",{"2":{"11":1,"1528":1}}],["uncombined",{"2":{"575":1}}],["uncovered",{"2":{"191":1}}],["unavoidable",{"2":{"2746":1}}],["unavailable",{"2":{"690":1,"797":2,"1408":1,"1419":1,"1481":1,"2043":1,"2569":1,"2722":1}}],["unacceptable",{"2":{"2568":1,"2569":2}}],["unaffected",{"2":{"1593":1}}],["unannotated",{"2":{"539":1}}],["unambiguous",{"2":{"526":1}}],["unable",{"2":{"399":1,"414":1,"2471":1,"2474":1,"2568":2,"2888":1}}],["unauthorized",{"2":{"312":1}}],["unassigned",{"2":{"236":1,"505":1}}],["unprivileged",{"2":{"2407":1}}],["unpr",{"2":{"2377":1,"2516":1}}],["unpressed",{"2":{"1409":1}}],["unpredictable",{"2":{"749":1}}],["unplugged",{"2":{"1661":1,"2813":1}}],["unplugging",{"2":{"1417":1,"1424":1,"1490":1,"2265":1}}],["unplug",{"2":{"710":1,"1348":1,"1623":1,"1661":1,"2508":1,"2612":3,"2771":2}}],["unpair",{"2":{"2377":1,"2516":1}}],["unpacking",{"2":{"526":1}}],["unparsed",{"2":{"249":1}}],["unpicking",{"2":{"303":1,"338":1}}],["unxmaal",{"2":{"236":1}}],["unshifted",{"2":{"2553":1}}],["unswap",{"2":{"2526":20,"2552":20}}],["unsplit",{"2":{"1983":1}}],["unspecified",{"2":{"1638":1}}],["unscrewing",{"2":{"1376":1}}],["unsuccessful",{"2":{"793":1}}],["unsure",{"2":{"710":1,"712":1,"1957":1,"1958":1,"2431":1,"2434":1,"2583":1,"2629":1}}],["unsupported",{"2":{"693":1,"694":1,"1954":1,"2261":1}}],["unsigned",{"2":{"222":1,"333":1,"1379":1,"1952":1,"2238":1,"2240":1,"2289":1}}],["unsent",{"2":{"2040":1}}],["unsettled",{"0":{"320":1},"2":{"328":1}}],["unset",{"2":{"160":1,"754":2,"2761":2}}],["unselect",{"2":{"114":3,"561":1}}],["unmergeable",{"2":{"2746":1}}],["unmerged",{"2":{"221":1,"403":1}}],["unmod",{"2":{"1937":4}}],["unmodified",{"2":{"1788":1,"1937":7,"2928":1}}],["unmaintained",{"2":{"114":1}}],["unrecognized",{"2":{"2948":1}}],["unrecoverable",{"2":{"2503":1}}],["unresponsive",{"2":{"1661":1,"1935":1,"1936":1}}],["unreliable",{"2":{"1296":1}}],["unrelated",{"2":{"191":1,"341":1,"344":3,"403":1}}],["unregistered",{"2":{"656":1,"1462":1,"1617":1,"1781":1}}],["unregister",{"0":{"1454":1,"1457":1,"1753":1,"2027":1},"1":{"1754":1,"2028":1},"2":{"564":1,"1353":1,"1364":1,"1366":1,"1367":1,"1447":1,"1455":2,"1456":1,"1462":2,"1517":3,"1617":2,"1618":1,"1779":1,"1781":1,"1782":1,"1788":1,"2316":1,"2317":5,"2318":3,"2928":1}}],["unregistering",{"2":{"339":1}}],["unreachable",{"2":{"333":1}}],["unreferenced",{"2":{"133":1,"134":1}}],["unloaded",{"2":{"2764":2}}],["unlocking",{"2":{"2213":1,"2218":1}}],["unlocks",{"2":{"1791":1,"1793":1,"2522":1}}],["unlock",{"0":{"2213":1},"2":{"1789":2,"1792":1,"2213":1,"2216":6,"2217":3,"2218":6,"2508":2,"2879":4}}],["unlocked",{"2":{"402":1,"411":1,"1794":1,"2214":1,"2217":1,"2218":3,"2879":1}}],["unlk",{"2":{"2216":1}}],["unlike",{"2":{"1356":1,"1645":1,"2590":1,"2869":1,"2932":1}}],["unlikely",{"2":{"154":1,"561":1,"1356":1,"2711":1}}],["unlimited",{"2":{"455":1,"469":1}}],["unless",{"2":{"191":1,"494":1,"516":1,"528":1,"536":1,"625":2,"1353":1,"1356":1,"1364":1,"1376":1,"1428":2,"1498":1,"1544":1,"1556":1,"1836":1,"2012":1,"2085":1,"2417":1,"2434":1,"2473":1,"2523":1,"2702":1,"2707":1,"2744":1,"2746":4,"2764":1}}],["unexplainable",{"2":{"2417":1}}],["unexpectedly",{"2":{"1379":1}}],["unexpected",{"2":{"87":1,"399":1,"1593":1,"1777":1}}],["unecessary",{"2":{"160":1}}],["uno",{"0":{"2486":1},"1":{"2487":1},"2":{"159":2,"160":2,"2486":2,"2487":3}}],["un",{"2":{"149":1,"191":1,"266":1,"284":1,"561":1,"1455":1,"2070":1,"2377":1,"2516":1}}],["ungodly",{"2":{"114":2}}],["unterminated",{"2":{"134":1}}],["untested",{"2":{"49":1,"542":1,"1697":1,"1943":1,"1949":1,"2288":1,"2418":2}}],["until",{"2":{"114":1,"160":1,"199":1,"279":1,"320":1,"581":1,"647":1,"657":1,"711":1,"764":1,"1351":1,"1392":1,"1393":1,"1409":1,"1422":3,"1454":1,"1491":1,"1492":1,"1503":1,"1525":1,"1594":1,"1598":1,"1762":1,"1764":1,"1786":3,"1852":1,"1934":3,"1935":2,"1939":1,"1954":1,"1959":2,"1980":1,"2000":1,"2091":1,"2304":1,"2385":1,"2387":1,"2392":1,"2394":1,"2399":1,"2432":1,"2521":1,"2523":1,"2539":1,"2569":1,"2582":1,"2634":1,"2650":2,"2744":1,"2746":2,"2764":1,"2834":1,"2912":1,"2913":1,"2921":2,"2930":1}}],["universal",{"2":{"2848":1,"2930":1}}],["union",{"2":{"1417":2}}],["uninsulated",{"2":{"2425":1}}],["uninstallation",{"0":{"712":1},"2":{"712":1}}],["uninstall",{"2":{"711":1,"712":4,"713":1}}],["uninteresting",{"2":{"339":1}}],["unintentional",{"2":{"191":1,"2425":1}}],["unilaterally",{"2":{"312":1}}],["unix",{"2":{"249":1,"277":1,"458":1,"2411":1,"2619":1,"2620":1,"2644":1,"2676":2}}],["unix60",{"2":{"67":1,"72":1,"211":1}}],["uniform",{"2":{"222":1}}],["unify",{"0":{"22":1},"2":{"113":1,"114":2,"149":1,"222":1,"294":3}}],["uni",{"2":{"197":2,"199":2}}],["uniquely",{"2":{"1422":1,"1999":1}}],["unique",{"2":{"160":1,"199":1,"629":2,"665":1,"1319":2,"2429":1,"2726":1}}],["unikeyboard",{"2":{"143":3,"149":2}}],["unicorne",{"2":{"134":1,"249":1}}],["unicodemap",{"0":{"219":1,"2351":1,"2354":1,"2357":1},"1":{"2352":1,"2353":1,"2355":1,"2356":1,"2358":1},"2":{"219":1,"222":2,"2418":1,"2940":1}}],["unicode",{"0":{"186":1,"2324":1,"2334":1,"2336":1,"2338":1,"2339":1,"2340":1,"2342":1,"2344":1,"2345":1,"2346":1,"2347":1,"2349":1,"2475":1,"2540":1,"2789":1,"2846":1},"1":{"2325":1,"2326":1,"2327":1,"2328":1,"2329":1,"2330":1,"2331":1,"2332":1,"2333":1,"2334":1,"2335":2,"2336":1,"2337":2,"2338":1,"2339":1,"2340":1,"2341":2,"2342":1,"2343":2,"2344":1,"2345":1,"2346":1,"2347":1,"2348":2,"2349":1,"2350":2,"2351":1,"2352":1,"2353":1,"2354":1,"2355":1,"2356":1,"2357":1,"2358":1,"2359":1,"2360":1,"2361":1,"2362":1,"2363":1,"2364":1,"2365":1,"2366":1,"2367":1,"2368":1,"2369":1,"2370":1,"2371":1,"2372":1},"2":{"70":1,"94":1,"111":1,"134":1,"149":2,"160":1,"186":3,"188":3,"191":6,"199":2,"211":1,"222":2,"339":2,"469":1,"492":1,"574":2,"592":1,"1355":1,"1527":1,"2219":2,"2324":1,"2325":2,"2326":1,"2327":12,"2328":5,"2329":6,"2330":6,"2331":21,"2332":12,"2334":1,"2335":1,"2336":1,"2338":1,"2339":1,"2344":4,"2345":2,"2346":2,"2347":1,"2349":1,"2351":1,"2352":1,"2353":1,"2354":1,"2355":1,"2356":1,"2357":1,"2358":1,"2418":5,"2474":1,"2475":2,"2540":13,"2762":18,"2785":2,"2787":3,"2789":6,"2790":2,"2846":3,"2852":2,"2886":1,"2908":1,"2940":2,"2948":1}}],["unity",{"2":{"2734":1}}],["units",{"2":{"565":3,"615":1,"714":1,"1410":2,"1792":1,"1992":1,"2003":3,"2781":1,"2795":2,"2869":4}}],["unit|integration>",{"2":{"505":1}}],["unit",{"0":{"544":1,"2847":1,"2941":1},"1":{"2942":1,"2943":1,"2944":1,"2945":1,"2946":1,"2947":1},"2":{"114":1,"134":1,"191":1,"198":1,"199":2,"249":1,"308":1,"469":1,"505":2,"542":1,"544":1,"619":1,"718":1,"764":2,"1330":1,"1410":1,"1480":1,"1662":1,"2418":1,"2747":3,"2830":1,"2847":2,"2941":2,"2942":1,"2944":2,"2947":1}}],["unite",{"2":{"114":1}}],["undone",{"2":{"2640":1}}],["undo",{"2":{"1622":1,"1992":1,"2510":2,"2548":2,"2634":1}}],["undocumented",{"2":{"8":1,"541":1}}],["unds",{"2":{"176":1,"1593":1,"1600":1,"2534":1,"2555":1}}],["undecided",{"2":{"2922":1}}],["undesired",{"2":{"1788":1,"2928":1}}],["undesirable",{"2":{"1787":1}}],["undef",{"2":{"45":1,"354":3,"559":1,"717":5,"718":3,"721":1,"764":1,"1203":1,"1204":1,"1248":1,"1269":1,"1299":1,"1303":1,"1396":1,"1405":1,"1556":1,"1557":1,"2186":4,"2416":2,"2890":2,"2894":55}}],["undefined",{"2":{"339":1,"569":1,"1413":1,"1936":1,"1939":1,"1940":1,"1945":1,"1949":1,"1951":1,"2284":1,"2379":1,"2702":1}}],["undefine",{"2":{"45":1,"559":1,"1396":1}}],["underneath",{"2":{"1541":1}}],["undertake",{"2":{"613":1}}],["underlight",{"0":{"2845":1},"2":{"574":1}}],["underlying",{"2":{"234":1,"320":1,"437":1,"475":1,"489":1,"752":1,"754":2,"755":1,"756":2,"1612":1,"1845":1,"2081":1,"2684":1,"2864":1,"2930":1}}],["undergoing",{"2":{"203":1}}],["undergoes",{"2":{"203":1}}],["underglowx",{"2":{"2455":1}}],["underglow",{"2":{"32":1,"49":1,"266":1,"277":3,"283":1,"328":1,"633":1,"641":1,"1417":2,"1430":1,"1541":1,"2083":2,"2091":1,"2178":1,"2181":11,"2188":1,"2208":1,"2435":1,"2455":3,"2532":11,"2774":1,"2894":1}}],["underside",{"2":{"710":1,"2612":1,"2845":1}}],["understood",{"2":{"538":1}}],["understands",{"0":{"2794":1},"2":{"1283":1,"2178":1,"2294":1,"2794":1}}],["understandable",{"2":{"615":1}}],["understandability",{"2":{"516":1,"538":2}}],["understanding",{"0":{"2933":1},"1":{"2934":1,"2935":1,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1},"2":{"249":1,"365":1,"417":1,"533":1,"536":1,"538":1,"619":2,"626":1,"1427":1,"1783":1,"2310":1,"2642":1,"2794":2,"2905":1,"2908":1,"2933":1}}],["understand",{"2":{"2":1,"368":1,"491":1,"516":1,"528":1,"530":1,"626":1,"644":1,"665":1,"674":1,"683":1,"1415":1,"1529":1,"1784":1,"1785":1,"2467":1,"2794":2,"2933":1}}],["underscores",{"2":{"544":1,"2561":1,"2794":1}}],["underscore",{"2":{"520":1,"1528":1,"2449":2,"2534":1,"2555":1}}],["underscore33",{"2":{"143":4}}],["under",{"2":{"32":1,"55":13,"120":1,"134":1,"149":1,"204":1,"211":1,"222":1,"249":1,"265":1,"268":1,"339":1,"393":1,"397":1,"403":1,"411":1,"429":1,"495":1,"613":1,"665":1,"670":1,"754":1,"757":1,"1320":1,"1351":1,"1441":1,"1467":1,"1493":1,"1628":1,"1850":1,"2011":2,"2057":1,"2088":1,"2275":1,"2317":1,"2331":3,"2433":2,"2465":1,"2502":1,"2586":1,"2601":1,"2602":1,"2683":3,"2704":1,"2728":3,"2747":1,"2750":1,"2763":1,"2764":1,"2835":1,"2851":1,"2902":2,"2926":1}}],["upgrading",{"2":{"2746":1}}],["upgrades",{"2":{"10":1,"114":1}}],["upgrade",{"0":{"24":1,"419":1,"423":1},"1":{"420":1,"421":1,"422":1,"423":1},"2":{"10":3,"65":2,"158":3,"294":1,"2706":1,"2807":1}}],["upgraded",{"2":{"10":1}}],["uprint",{"2":{"2418":4}}],["uprintf",{"2":{"339":1,"1327":1,"1329":1}}],["uppr",{"2":{"2321":1}}],["upper",{"0":{"2330":1},"2":{"191":1,"683":1,"719":1,"762":1,"1522":2,"1681":1,"1968":1,"1975":2,"1977":1,"2301":3,"2320":2,"2321":3,"2322":2,"2323":6,"2330":2,"2410":1,"2563":1}}],["uppercase",{"2":{"191":1,"1406":1,"2330":3,"2744":2}}],["updir",{"2":{"2071":3}}],["updater",{"2":{"422":1,"2397":3}}],["updated",{"0":{"44":1,"59":1,"86":1,"102":1,"122":1,"143":1,"159":1,"168":1,"181":1,"197":1,"207":1,"217":1,"226":1,"241":1,"253":1,"270":1,"281":1,"291":1,"300":1,"311":1,"322":1},"1":{"45":1,"60":1},"2":{"10":1,"14":1,"69":1,"83":1,"86":2,"108":1,"114":2,"126":1,"134":1,"149":1,"160":1,"182":2,"195":1,"220":1,"230":1,"241":1,"244":1,"253":1,"262":1,"270":1,"281":1,"283":1,"379":2,"411":1,"419":1,"646":2,"1835":1,"2638":1,"2639":1,"2640":2,"2746":1,"2748":3}}],["updates",{"0":{"190":1,"248":1,"255":1,"256":1,"306":1,"315":1},"1":{"257":1,"258":1,"259":1,"260":1},"2":{"5":1,"12":2,"22":1,"30":1,"33":1,"64":1,"114":2,"134":2,"149":2,"160":2,"176":3,"190":1,"191":2,"199":1,"211":3,"222":1,"236":3,"249":5,"266":3,"277":1,"285":2,"294":2,"308":2,"328":1,"339":2,"405":2,"406":2,"407":2,"408":1,"411":2,"414":1,"420":1,"511":1,"717":1,"718":1,"1348":1,"2015":1,"2608":1,"2639":1,"2676":1,"2746":1}}],["update",{"0":{"4":1,"6":1,"10":1,"12":1,"45":1,"56":1,"69":1,"77":1,"307":1,"739":1,"824":1,"825":1,"851":1,"853":1,"883":1,"885":1,"915":1,"917":1,"950":1,"952":1,"984":1,"986":1,"1018":1,"1020":1,"1052":1,"1054":1,"1086":1,"1088":1,"1120":1,"1122":1,"1154":1,"1156":1,"1188":1,"1190":1,"1241":1,"1243":1,"1348":1,"1837":1,"1838":1,"1839":1,"1841":1,"2638":1,"2767":1,"2769":1},"1":{"740":1,"852":1,"854":1,"884":1,"886":1,"916":1,"918":1,"951":1,"953":1,"985":1,"987":1,"1019":1,"1021":1,"1053":1,"1055":1,"1087":1,"1089":1,"1121":1,"1123":1,"1155":1,"1157":1,"1189":1,"1191":1,"1242":1,"1244":1,"1838":1,"1839":1,"2639":1,"2640":1,"2641":1,"2768":1,"2770":1},"2":{"10":3,"21":1,"24":1,"31":1,"32":1,"46":1,"49":1,"63":1,"65":1,"75":1,"76":1,"89":1,"90":8,"93":3,"95":1,"105":12,"114":9,"131":2,"133":1,"134":8,"149":5,"158":1,"160":3,"176":15,"191":17,"194":1,"199":5,"211":8,"218":1,"222":8,"230":1,"236":11,"240":2,"249":12,"255":1,"256":1,"266":9,"277":8,"285":7,"294":9,"307":4,"308":4,"317":4,"323":1,"328":5,"333":2,"339":4,"411":1,"412":1,"422":3,"423":2,"618":1,"647":1,"652":1,"653":1,"702":1,"716":2,"735":2,"812":2,"816":2,"820":2,"822":2,"839":2,"843":2,"847":2,"849":2,"871":2,"875":2,"879":2,"881":2,"903":2,"907":2,"911":2,"913":2,"938":2,"942":2,"946":2,"948":2,"972":2,"976":2,"980":2,"982":2,"1006":2,"1010":2,"1014":2,"1016":2,"1040":2,"1044":2,"1048":2,"1050":2,"1074":2,"1078":2,"1082":2,"1084":2,"1108":2,"1112":2,"1116":2,"1118":2,"1142":2,"1146":2,"1150":2,"1152":2,"1176":2,"1180":2,"1184":2,"1186":2,"1229":2,"1233":2,"1237":2,"1239":2,"1306":1,"1316":1,"1367":1,"1416":2,"1417":4,"1418":2,"1419":6,"1420":1,"1428":3,"1470":1,"1522":1,"1622":1,"1628":1,"1641":6,"1668":3,"1742":1,"1835":2,"1837":4,"1838":2,"1839":1,"1840":1,"1841":1,"1852":1,"1949":3,"1974":1,"1994":1,"2003":1,"2091":1,"2181":1,"2190":1,"2288":1,"2456":1,"2464":1,"2506":1,"2632":1,"2633":1,"2635":2,"2637":2,"2639":1,"2714":1,"2739":1,"2746":3,"2748":1,"2759":1,"2767":1,"2768":4,"2769":1,"2770":3,"2771":1,"2871":1,"2878":1,"2912":1,"2940":1}}],["updating",{"0":{"411":1,"422":1,"2639":1},"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"107":1,"194":1,"199":1,"249":1,"294":1,"399":1,"414":1,"416":1,"420":1,"421":1,"1949":1,"2189":1,"2288":1,"2418":1,"2744":1}}],["upe1",{"2":{"2043":1}}],["upm10",{"2":{"2043":1}}],["upward",{"2":{"1990":2}}],["upwards",{"2":{"1492":1}}],["uploading",{"2":{"586":1}}],["uploaded",{"2":{"276":2,"580":1,"2417":1,"2746":1}}],["uploads",{"2":{"273":1,"277":1,"1382":2,"2417":1,"2590":1,"2639":1}}],["upload",{"0":{"273":1},"2":{"149":1,"273":4,"366":1,"367":1,"600":1,"683":1,"1521":1,"1522":1,"2415":1,"2417":1,"2505":1,"2599":1}}],["upon",{"2":{"65":1,"283":1,"312":1,"604":1,"1343":1,"1472":1,"1544":3,"1784":1,"1960":1,"1961":1,"2182":6,"2633":1,"2635":1,"2696":1,"2701":1,"2707":1}}],["ups",{"0":{"50":1,"64":1,"75":1,"94":1},"2":{"50":1,"176":1,"266":1,"1205":1,"2267":1}}],["upstreamed",{"2":{"2707":1,"2711":1,"2713":1}}],["upstreaming",{"2":{"2567":8,"2713":1}}],["upstream",{"2":{"10":1,"12":1,"26":1,"167":1,"211":1,"222":1,"285":1,"328":1,"409":3,"411":2,"421":2,"422":1,"615":1,"1463":1,"2567":1,"2569":1,"2571":1,"2634":8,"2637":6,"2639":8,"2640":4,"2707":1,"2712":1,"2744":2,"2902":1,"2903":2}}],["up",{"0":{"412":1,"416":1,"1448":1,"2005":1,"2430":1,"2432":1,"2435":1,"2604":1,"2618":1,"2636":1,"2653":1,"2673":1,"2674":1,"2822":1},"1":{"2006":1,"2431":1,"2619":1,"2620":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1,"2628":1,"2629":1,"2675":1,"2676":1,"2677":1,"2678":1,"2679":1,"2680":1},"2":{"6":1,"13":1,"23":1,"28":1,"45":1,"50":1,"62":1,"73":3,"77":1,"90":3,"93":1,"94":3,"100":1,"114":13,"119":2,"120":3,"123":1,"124":2,"130":2,"131":1,"133":2,"134":6,"145":1,"149":5,"153":1,"156":1,"160":1,"163":1,"166":1,"173":1,"182":1,"188":1,"191":8,"198":2,"199":6,"206":1,"209":1,"210":1,"211":55,"219":1,"222":8,"224":1,"228":1,"231":2,"232":1,"236":4,"248":1,"249":1,"251":1,"266":3,"294":3,"328":1,"353":1,"354":1,"362":1,"375":1,"383":1,"393":1,"409":1,"426":1,"429":1,"446":1,"512":2,"540":2,"555":1,"558":1,"561":1,"565":2,"574":2,"575":1,"582":1,"585":1,"588":1,"589":4,"613":1,"614":1,"615":1,"617":1,"630":2,"633":1,"635":1,"637":2,"639":2,"641":1,"648":1,"656":1,"684":1,"690":1,"709":1,"711":1,"712":1,"720":2,"724":1,"748":1,"749":3,"764":1,"797":1,"800":1,"826":1,"855":1,"887":1,"919":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1124":1,"1158":1,"1197":2,"1205":1,"1214":1,"1248":1,"1252":1,"1269":1,"1303":3,"1313":1,"1339":1,"1341":1,"1383":1,"1410":8,"1413":2,"1417":2,"1425":1,"1441":2,"1444":6,"1447":1,"1448":2,"1472":1,"1473":1,"1474":1,"1485":1,"1486":1,"1490":2,"1493":4,"1495":2,"1499":1,"1521":3,"1522":2,"1523":2,"1526":1,"1527":1,"1538":1,"1543":2,"1556":1,"1612":1,"1668":1,"1680":2,"1685":1,"1694":2,"1702":1,"1738":1,"1767":2,"1776":6,"1782":1,"1788":1,"1796":1,"1804":2,"1837":1,"1848":2,"1849":7,"1925":8,"1933":5,"1968":1,"1974":2,"1979":1,"1994":1,"2006":1,"2009":1,"2013":2,"2016":1,"2037":3,"2068":10,"2071":1,"2084":4,"2085":9,"2086":2,"2096":1,"2181":4,"2185":2,"2189":1,"2222":1,"2251":1,"2253":2,"2259":1,"2260":1,"2264":1,"2267":1,"2273":1,"2278":1,"2281":1,"2296":1,"2298":1,"2309":2,"2315":1,"2319":1,"2329":2,"2330":2,"2331":2,"2332":2,"2409":1,"2410":1,"2416":1,"2418":5,"2427":1,"2432":1,"2434":1,"2444":2,"2445":1,"2450":1,"2463":1,"2466":1,"2496":1,"2501":1,"2510":13,"2512":2,"2513":3,"2515":2,"2525":2,"2527":8,"2528":5,"2531":2,"2532":4,"2533":4,"2540":2,"2548":7,"2549":4,"2550":2,"2558":1,"2559":1,"2563":1,"2582":1,"2586":2,"2604":1,"2607":1,"2610":1,"2616":1,"2618":1,"2620":1,"2629":1,"2632":1,"2638":1,"2651":1,"2653":2,"2658":1,"2663":1,"2667":2,"2669":2,"2671":2,"2673":1,"2674":2,"2678":3,"2683":4,"2690":1,"2700":1,"2707":1,"2709":1,"2744":1,"2746":1,"2747":1,"2748":1,"2756":1,"2764":1,"2792":2,"2842":1,"2879":1,"2882":2,"2892":2,"2893":1,"2894":2,"2905":1,"2912":11,"2915":4,"2916":6,"2917":4,"2919":7,"2920":2,"2921":2,"2925":5,"2928":1,"2931":1,"2938":1}}],["usd",{"2":{"2664":1,"2895":1}}],["us=yes",{"2":{"1395":1}}],["usr",{"2":{"1316":1,"2678":1}}],["usually",{"2":{"228":1,"397":1,"436":1,"533":1,"574":1,"623":1,"657":1,"684":1,"685":1,"709":1,"710":1,"754":3,"762":1,"1200":1,"1208":1,"1290":1,"1296":1,"1348":2,"1375":1,"1410":1,"1413":1,"1488":1,"1541":1,"1546":1,"1551":2,"1589":1,"1672":1,"1986":1,"1987":1,"2179":2,"2193":1,"2220":1,"2291":1,"2327":1,"2390":1,"2417":1,"2418":1,"2469":1,"2483":1,"2501":1,"2503":1,"2507":1,"2558":1,"2571":1,"2612":2,"2617":1,"2650":1,"2659":1,"2683":1,"2711":1,"2794":1,"2869":1,"2897":1,"2901":1,"2949":1}}],["usual",{"2":{"77":1,"497":1,"498":1,"630":1,"1366":1,"1367":1,"1482":1,"1690":2,"2014":1,"2071":1,"2076":1,"2912":1}}],["usability",{"2":{"211":1}}],["usable",{"2":{"107":1,"114":1,"156":1,"209":1,"231":1,"466":1,"494":1,"716":1,"754":2,"755":1,"756":1,"1417":1,"1481":1,"2261":1,"2431":1,"2559":1,"2666":3,"2762":1,"2763":1,"2864":1}}],["usart4",{"2":{"1212":1}}],["usart2",{"2":{"1211":1,"1212":1,"1213":3,"1269":4}}],["usart3",{"2":{"1203":1,"1204":1,"1211":1,"1212":1,"1213":5,"1269":1}}],["usartn",{"2":{"1203":2,"1204":2}}],["usart1",{"2":{"1198":1,"1201":1,"1211":1,"1212":1,"1213":3,"1269":2,"2043":1}}],["usart",{"0":{"1196":1,"1199":1,"2043":1},"1":{"1197":1,"1198":1,"1200":1,"1201":1},"2":{"74":1,"107":1,"176":1,"266":1,"277":1,"285":1,"1192":3,"1196":1,"1197":2,"1198":5,"1199":2,"1200":5,"1201":10,"1203":5,"1204":5,"1207":1,"1208":2,"1210":1,"1213":3,"1269":1,"2037":1,"2039":1,"2040":1,"2043":11,"2261":1,"2689":1,"2702":4,"2875":1,"2880":1}}],["usages",{"2":{"75":1,"118":1,"128":1,"140":1,"149":1,"156":1,"157":1,"167":1,"199":4,"249":1,"1357":2,"2016":1,"2653":1}}],["usage",{"0":{"323":1,"686":1,"698":1,"725":1,"742":1,"761":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1542":1,"1578":1,"1624":1,"1646":1,"1672":1,"1698":1,"1739":1,"1763":1,"1797":1,"1919":1,"1944":1,"1957":1,"2017":1,"2055":1,"2179":1,"2186":1,"2210":1,"2215":1,"2220":1,"2256":1,"2284":1,"2326":1,"2407":1,"2665":1,"2668":1,"2669":1},"1":{"1920":1,"1921":1,"1922":1,"1923":1,"1924":1,"1925":1,"1926":1,"1927":1,"1928":1,"1929":1,"2180":1,"2666":1,"2667":1,"2668":1,"2669":1},"2":{"45":1,"118":1,"156":1,"160":1,"176":1,"199":1,"211":1,"231":1,"236":1,"249":3,"266":2,"294":1,"307":1,"308":1,"328":1,"339":1,"429":5,"430":3,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":1,"438":1,"439":1,"440":1,"441":1,"442":1,"443":1,"444":1,"445":1,"446":1,"447":1,"448":2,"449":2,"450":2,"452":1,"453":1,"454":1,"455":1,"459":4,"460":2,"461":2,"462":1,"463":1,"464":1,"465":1,"469":1,"470":1,"720":2,"1196":1,"1199":1,"1205":1,"1351":1,"1410":1,"1413":2,"1609":1,"1846":1,"1974":1,"2016":1,"2044":1,"2054":1,"2056":6,"2057":3,"2059":8,"2082":1,"2541":1,"2549":1,"2557":1,"2562":1,"2607":1,"2657":1,"2667":1,"2684":1,"2704":1,"2762":6,"2794":1,"2840":1,"2882":1,"2902":1}}],["us",{"0":{"2534":1,"2553":1},"1":{"2554":1,"2555":1},"2":{"6":1,"74":1,"99":1,"114":2,"149":1,"176":2,"188":1,"191":1,"213":1,"228":1,"245":1,"377":1,"386":1,"418":1,"495":1,"538":1,"544":1,"609":1,"613":1,"619":3,"644":1,"665":2,"749":3,"1285":1,"1367":2,"1449":1,"1497":1,"1593":2,"1634":1,"1692":2,"1801":1,"1953":1,"1962":1,"2223":1,"2259":1,"2466":1,"2474":3,"2510":2,"2534":1,"2544":2,"2553":1,"2573":1,"2617":1,"2634":5,"2749":2,"2817":1,"2847":1,"2884":1,"2886":1,"2887":7,"2914":1,"2937":1,"2939":1}}],["using",{"0":{"384":1,"1382":1,"1433":1,"1441":1,"1445":1,"1520":1,"1924":1,"2318":1,"2319":1,"2610":1},"1":{"385":1,"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"393":1,"394":1,"395":1,"396":1,"397":1,"398":1,"1434":1,"1435":1,"1436":1,"1437":1,"1438":1,"1439":1,"1442":1,"1443":1,"1444":1,"1446":1,"1447":1,"1448":1,"1449":1,"1450":1,"1451":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1461":1,"1462":1,"1521":1,"1522":1,"1523":1},"2":{"5":1,"7":1,"14":1,"16":2,"45":1,"49":2,"50":1,"65":2,"73":1,"76":1,"83":1,"103":1,"111":2,"114":4,"126":1,"132":1,"149":1,"157":1,"158":1,"176":2,"191":1,"199":1,"220":1,"232":1,"234":1,"236":1,"240":2,"241":2,"244":1,"248":1,"253":2,"255":1,"270":2,"271":1,"272":1,"281":2,"289":1,"328":1,"373":1,"377":1,"381":2,"384":2,"386":1,"387":1,"388":1,"389":1,"393":1,"396":1,"414":1,"429":1,"433":1,"439":1,"450":1,"459":2,"487":1,"488":1,"490":1,"491":1,"495":1,"499":1,"500":1,"507":1,"512":1,"514":1,"516":2,"521":1,"525":1,"526":2,"529":2,"538":1,"539":1,"561":2,"562":1,"563":1,"564":1,"569":3,"570":14,"578":1,"580":1,"591":1,"593":1,"613":3,"618":1,"643":1,"651":1,"657":1,"665":1,"685":1,"698":1,"710":1,"711":1,"712":1,"719":1,"725":1,"742":1,"748":2,"755":1,"761":1,"799":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1193":2,"1200":2,"1205":1,"1213":1,"1215":1,"1246":1,"1267":1,"1283":2,"1284":1,"1286":1,"1303":1,"1311":1,"1313":1,"1315":1,"1319":1,"1333":1,"1340":1,"1347":1,"1364":2,"1383":1,"1407":1,"1410":5,"1415":1,"1416":1,"1417":5,"1419":1,"1420":1,"1422":2,"1423":1,"1428":1,"1430":1,"1438":1,"1462":1,"1472":1,"1483":1,"1488":1,"1503":1,"1517":3,"1519":1,"1538":1,"1544":1,"1551":2,"1556":1,"1589":1,"1593":1,"1594":1,"1595":2,"1609":2,"1620":3,"1622":1,"1627":1,"1630":1,"1662":1,"1663":1,"1666":1,"1667":1,"1668":1,"1670":3,"1671":1,"1686":1,"1687":1,"1697":1,"1739":1,"1742":1,"1776":1,"1787":1,"1788":1,"1791":1,"1846":2,"1850":1,"1919":1,"1923":1,"1930":1,"1935":1,"1936":1,"1938":1,"1943":2,"1948":1,"1953":3,"1956":1,"1961":1,"1965":1,"1970":1,"1971":1,"1974":2,"1984":1,"1985":1,"1986":3,"1987":2,"1989":2,"1999":2,"2015":1,"2044":1,"2048":1,"2054":1,"2059":1,"2082":2,"2088":1,"2096":1,"2097":1,"2178":1,"2184":1,"2189":3,"2191":1,"2207":1,"2210":1,"2214":1,"2223":1,"2260":1,"2261":1,"2263":2,"2265":1,"2268":1,"2273":3,"2275":2,"2278":5,"2283":1,"2287":1,"2298":1,"2305":2,"2324":1,"2331":3,"2332":1,"2378":1,"2379":1,"2383":2,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2410":1,"2411":1,"2417":1,"2418":3,"2425":1,"2428":1,"2429":4,"2430":1,"2432":3,"2444":1,"2446":1,"2448":1,"2450":1,"2454":1,"2455":1,"2460":1,"2464":1,"2474":1,"2480":1,"2486":1,"2508":1,"2540":1,"2554":1,"2563":2,"2573":1,"2576":1,"2584":1,"2586":1,"2589":1,"2590":2,"2592":2,"2601":1,"2603":2,"2607":1,"2608":2,"2609":1,"2613":1,"2616":1,"2628":1,"2634":1,"2653":1,"2665":1,"2673":1,"2680":1,"2682":1,"2683":3,"2690":1,"2692":4,"2704":1,"2713":1,"2714":2,"2739":1,"2744":2,"2746":5,"2748":1,"2750":1,"2756":1,"2763":3,"2764":7,"2794":1,"2818":1,"2819":1,"2846":1,"2885":1,"2886":1,"2887":1,"2890":1,"2891":2,"2892":2,"2893":1,"2894":1,"2908":2,"2912":3,"2925":1,"2928":1,"2930":1,"2931":2,"2940":1,"2942":1}}],["usbmodemxxxxxx",{"2":{"2502":1}}],["usbtiny",{"2":{"2490":1}}],["usbtinyisp",{"0":{"2490":1},"1":{"2491":1},"2":{"430":1,"2490":3}}],["usbs1",{"2":{"2043":1}}],["usbser",{"2":{"713":12}}],["usb2adb",{"2":{"1357":1}}],["usb2422",{"2":{"134":1}}],["usbisactive",{"2":{"266":1}}],["usbc",{"2":{"207":2}}],["usbasploader",{"0":{"2389":1,"2501":1},"2":{"328":1,"430":1,"573":1,"710":1,"713":1,"2389":3,"2501":2}}],["usbasp",{"0":{"2492":1},"1":{"2493":1},"2":{"134":1,"191":1,"430":1,"713":1,"2389":4,"2492":2,"2501":1}}],["usbpd",{"2":{"74":1}}],["usbdrv",{"0":{"21":1}}],["usb",{"0":{"2":1,"21":1,"137":1,"169":1,"184":1,"235":1,"263":1,"303":1,"338":1,"575":1,"1319":1,"1384":1,"2848":1,"2849":1,"2882":1},"1":{"170":1,"1320":1},"2":{"2":1,"21":2,"31":1,"34":1,"49":3,"50":5,"62":2,"65":1,"70":3,"73":2,"75":1,"94":2,"111":3,"112":9,"113":1,"114":7,"134":5,"137":1,"149":4,"160":6,"169":3,"170":2,"176":8,"184":4,"191":9,"199":5,"211":1,"222":9,"236":5,"240":1,"249":3,"263":2,"266":4,"285":2,"294":1,"303":1,"308":3,"317":1,"338":1,"339":2,"396":1,"545":1,"546":3,"547":1,"561":5,"568":4,"570":7,"573":1,"574":5,"575":2,"634":1,"646":1,"710":1,"712":1,"713":1,"1194":1,"1197":1,"1200":1,"1317":3,"1357":1,"1384":2,"1392":4,"1393":4,"1486":1,"1920":2,"1956":2,"1959":1,"1960":1,"1961":3,"1962":3,"1990":4,"2057":2,"2059":1,"2181":1,"2261":1,"2265":4,"2274":3,"2278":9,"2279":4,"2280":2,"2292":1,"2294":1,"2298":3,"2377":7,"2383":1,"2389":2,"2390":1,"2391":1,"2393":1,"2395":1,"2400":1,"2402":1,"2404":3,"2424":2,"2430":1,"2454":3,"2467":1,"2468":1,"2469":1,"2470":2,"2474":1,"2482":2,"2490":1,"2492":1,"2494":1,"2498":1,"2499":1,"2500":1,"2501":2,"2502":1,"2504":1,"2505":2,"2508":1,"2516":6,"2557":1,"2562":1,"2664":1,"2666":3,"2687":1,"2689":1,"2690":1,"2709":2,"2717":8,"2746":1,"2751":1,"2807":1,"2840":2,"2849":1,"2852":2,"2880":3,"2882":7,"2934":1}}],["useful",{"0":{"2765":1},"1":{"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1},"2":{"289":1,"320":1,"486":1,"514":1,"561":1,"574":1,"609":1,"637":1,"640":1,"651":1,"685":1,"722":1,"754":1,"1247":1,"1327":1,"1329":1,"1331":1,"1347":1,"1416":1,"1429":1,"1447":1,"1451":2,"1455":2,"1465":1,"1467":1,"1490":1,"1528":1,"1546":1,"1589":1,"1593":1,"1601":1,"1606":1,"1612":3,"1634":1,"1670":1,"1794":1,"1840":1,"1938":2,"1949":1,"1954":1,"1985":3,"1988":2,"1992":1,"2054":1,"2065":2,"2071":1,"2074":1,"2191":1,"2207":1,"2259":1,"2265":1,"2278":1,"2290":1,"2318":1,"2330":1,"2379":1,"2381":1,"2387":1,"2417":1,"2421":1,"2427":1,"2471":1,"2558":1,"2656":1,"2744":1,"2750":1,"2765":1,"2767":1,"2770":1,"2887":1,"2922":1,"2925":2,"2930":1,"2932":1}}],["useless",{"2":{"199":1,"211":1,"266":2}}],["used",{"2":{"25":1,"49":1,"50":1,"60":1,"110":1,"120":1,"157":1,"174":1,"176":2,"203":1,"209":1,"215":1,"240":1,"243":1,"285":1,"328":1,"331":1,"340":1,"341":1,"379":2,"386":1,"396":2,"403":1,"429":1,"433":2,"444":1,"474":1,"475":1,"494":1,"525":2,"526":1,"529":1,"556":1,"561":1,"563":1,"571":1,"572":2,"580":1,"588":5,"589":1,"593":1,"600":1,"616":1,"618":1,"627":2,"634":1,"645":1,"647":1,"656":1,"657":3,"658":1,"659":1,"661":2,"665":1,"690":4,"694":2,"717":2,"721":1,"722":1,"748":1,"750":1,"752":1,"753":5,"754":3,"755":4,"756":2,"757":1,"759":1,"760":1,"763":1,"764":2,"798":2,"799":1,"1192":3,"1194":1,"1196":1,"1197":1,"1198":1,"1200":2,"1203":2,"1204":1,"1205":1,"1245":1,"1248":2,"1266":1,"1269":1,"1291":1,"1299":1,"1320":1,"1324":1,"1325":1,"1326":1,"1364":1,"1367":1,"1368":2,"1382":1,"1395":2,"1421":1,"1422":2,"1423":2,"1436":1,"1441":1,"1447":1,"1448":1,"1465":1,"1472":1,"1477":1,"1480":1,"1510":1,"1518":1,"1538":1,"1545":1,"1554":1,"1594":1,"1609":1,"1630":1,"1635":1,"1636":1,"1663":1,"1678":1,"1681":1,"1734":1,"1736":1,"1771":1,"1774":2,"1776":1,"1777":2,"1781":2,"1782":1,"1787":1,"1790":1,"1851":1,"1853":1,"1939":1,"1940":1,"1941":1,"1947":1,"1949":1,"1951":3,"1952":2,"1954":3,"1962":2,"1967":1,"1968":5,"1969":1,"1973":1,"1974":1,"1980":2,"1983":1,"1985":2,"1986":2,"1987":1,"1990":1,"1992":1,"1999":1,"2001":1,"2008":2,"2012":2,"2013":1,"2042":1,"2044":3,"2059":1,"2069":1,"2071":1,"2076":3,"2077":2,"2078":1,"2090":1,"2092":1,"2181":2,"2185":2,"2193":1,"2194":1,"2223":1,"2259":1,"2260":2,"2261":1,"2265":2,"2266":1,"2272":1,"2273":1,"2275":2,"2279":1,"2283":1,"2286":1,"2290":2,"2291":1,"2296":1,"2297":2,"2301":1,"2309":3,"2313":1,"2317":6,"2318":1,"2319":3,"2320":1,"2326":1,"2331":1,"2377":1,"2379":1,"2383":1,"2389":1,"2395":1,"2407":1,"2414":1,"2418":4,"2431":1,"2435":1,"2437":2,"2439":1,"2449":2,"2450":1,"2453":2,"2454":1,"2455":1,"2469":1,"2486":1,"2505":1,"2554":1,"2559":1,"2561":2,"2564":1,"2568":1,"2569":1,"2576":3,"2578":2,"2579":1,"2610":1,"2616":1,"2626":1,"2639":1,"2640":1,"2653":1,"2665":1,"2666":5,"2667":2,"2668":4,"2669":4,"2682":1,"2691":1,"2696":1,"2709":2,"2714":3,"2744":2,"2746":9,"2751":1,"2756":1,"2760":1,"2763":11,"2764":12,"2778":1,"2779":1,"2781":2,"2782":2,"2787":2,"2792":1,"2794":1,"2796":2,"2816":1,"2820":2,"2824":1,"2826":1,"2827":1,"2844":1,"2851":1,"2852":2,"2864":1,"2871":1,"2876":1,"2878":1,"2884":1,"2886":1,"2904":1,"2925":2,"2926":2,"2940":1,"2947":1}}],["uses",{"2":{"8":1,"36":1,"46":1,"50":1,"89":1,"100":1,"114":1,"163":1,"218":1,"323":1,"489":1,"495":1,"554":1,"569":1,"585":1,"588":1,"589":1,"613":1,"690":2,"717":3,"721":2,"722":1,"746":1,"752":1,"1205":3,"1292":1,"1311":1,"1317":1,"1343":1,"1346":2,"1361":1,"1391":1,"1399":1,"1417":3,"1423":2,"1449":1,"1488":1,"1492":3,"1622":2,"1935":1,"1936":1,"1945":2,"1953":1,"1966":1,"1967":1,"1968":1,"1978":1,"1981":1,"1993":1,"2041":1,"2042":1,"2044":1,"2053":1,"2086":1,"2096":1,"2180":1,"2259":1,"2261":3,"2272":1,"2375":1,"2378":2,"2386":1,"2391":1,"2450":2,"2462":1,"2497":1,"2562":1,"2576":2,"2579":1,"2599":3,"2616":1,"2639":1,"2676":1,"2680":1,"2684":1,"2694":2,"2707":1,"2733":1,"2777":1,"2781":1,"2785":1,"2794":1,"2796":1,"2892":1,"2893":1,"2921":1}}],["username>",{"2":{"505":1,"1467":1,"2583":1,"2584":2,"2637":3,"2639":2}}],["username",{"2":{"444":2,"484":1,"541":3,"613":2,"1463":1,"1467":2,"2583":1,"2597":1,"2598":2,"2599":2,"2600":5,"2628":1,"2714":1,"2852":1}}],["user\`",{"2":{"307":2,"1431":1}}],["user",{"0":{"40":1,"53":1,"67":1,"72":1,"85":1,"101":1,"121":1,"139":1,"155":1,"165":1,"180":1,"193":1,"203":1,"205":1,"216":1,"225":1,"239":1,"252":1,"269":1,"280":1,"290":1,"299":1,"310":1,"321":1,"428":1,"474":1,"484":1,"490":1,"509":1,"631":1,"635":1,"641":1,"647":1,"649":2,"653":1,"1446":1,"1531":1,"1585":1,"1621":1,"1663":1,"1664":1,"1807":1,"1808":1,"1809":1,"1839":1,"1910":1,"1915":1,"2170":1,"2175":1,"2340":1,"2932":1},"1":{"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"86":1,"87":1,"88":1,"89":1,"90":1,"102":1,"103":1,"104":1,"105":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"140":1,"141":1,"142":1,"143":1,"156":1,"157":1,"158":1,"159":1,"166":1,"167":1,"168":1,"169":1,"170":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"194":1,"195":1,"196":1,"197":1,"206":1,"207":1,"217":1,"218":1,"219":1,"220":1,"221":1,"226":1,"240":1,"241":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"270":1,"271":1,"272":1,"273":1,"281":1,"291":1,"300":1,"311":1,"312":1,"322":1,"323":1,"324":1,"325":1,"429":1,"430":1,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":1,"438":1,"439":1,"440":1,"441":1,"442":1,"443":1,"444":1,"445":1,"446":1,"447":1,"448":1,"449":1,"450":1,"491":1,"492":1,"493":1,"494":1,"1447":1,"1448":1,"1449":1,"1450":1,"1532":1,"1533":1,"1534":1,"1535":1,"1536":1,"1810":1,"1811":1,"1911":1,"2171":1,"2341":1},"2":{"3":1,"4":1,"7":1,"15":1,"28":1,"31":5,"34":3,"49":3,"70":3,"75":3,"90":4,"93":1,"105":8,"114":1,"125":4,"134":1,"149":3,"154":1,"158":1,"167":1,"176":6,"182":2,"185":4,"191":4,"195":2,"196":3,"199":1,"203":5,"211":4,"213":2,"220":1,"222":1,"228":2,"229":1,"231":3,"238":1,"249":7,"277":2,"284":1,"285":1,"294":2,"303":1,"307":5,"312":2,"317":1,"324":1,"325":1,"332":1,"337":1,"338":1,"339":2,"414":4,"444":1,"474":5,"481":1,"484":4,"488":1,"489":6,"490":2,"492":3,"494":3,"499":1,"570":1,"589":1,"593":3,"615":1,"625":4,"627":5,"630":1,"631":1,"632":1,"633":1,"635":1,"636":1,"638":1,"641":1,"642":1,"645":2,"646":1,"647":4,"649":2,"650":2,"651":2,"652":1,"653":1,"654":1,"665":1,"675":1,"1322":1,"1329":1,"1366":1,"1367":1,"1416":3,"1417":35,"1418":3,"1419":11,"1420":9,"1428":2,"1430":1,"1431":2,"1432":1,"1446":4,"1447":4,"1462":2,"1465":1,"1466":1,"1470":5,"1471":2,"1472":2,"1485":1,"1487":1,"1491":2,"1517":4,"1524":1,"1527":1,"1532":5,"1533":2,"1536":1,"1585":1,"1600":2,"1601":2,"1605":1,"1628":7,"1634":4,"1635":1,"1636":1,"1638":2,"1641":4,"1661":1,"1662":2,"1663":2,"1664":4,"1668":4,"1701":1,"1702":1,"1742":2,"1743":1,"1794":2,"1795":2,"1796":1,"1798":2,"1804":2,"1807":1,"1808":1,"1809":1,"1835":1,"1837":2,"1838":1,"1839":1,"1850":3,"1855":4,"1923":1,"1924":1,"1938":1,"1945":1,"1946":1,"1947":1,"1948":3,"1952":1,"1954":5,"1955":2,"1958":3,"1962":1,"1983":3,"1986":1,"1988":4,"1989":2,"1993":3,"1994":3,"1996":2,"1997":2,"2001":1,"2005":2,"2006":1,"2011":1,"2012":2,"2013":3,"2053":1,"2068":1,"2069":3,"2070":1,"2071":2,"2072":1,"2073":2,"2074":1,"2075":1,"2076":2,"2077":3,"2079":2,"2085":3,"2087":1,"2088":3,"2094":4,"2095":3,"2096":2,"2097":1,"2181":2,"2189":1,"2190":3,"2191":5,"2212":1,"2213":1,"2216":1,"2217":1,"2218":2,"2225":1,"2277":14,"2284":1,"2286":1,"2287":2,"2290":9,"2300":3,"2306":1,"2309":2,"2310":1,"2314":1,"2315":3,"2316":7,"2317":4,"2318":4,"2319":4,"2331":1,"2340":1,"2344":1,"2345":1,"2346":1,"2381":2,"2396":1,"2400":1,"2402":1,"2404":1,"2410":4,"2413":1,"2416":1,"2418":4,"2454":2,"2455":2,"2456":1,"2460":1,"2461":3,"2468":1,"2478":1,"2578":2,"2579":2,"2580":1,"2583":2,"2589":1,"2597":1,"2600":1,"2602":2,"2603":1,"2605":1,"2606":1,"2607":1,"2628":2,"2643":2,"2652":5,"2668":1,"2672":1,"2683":1,"2704":1,"2745":1,"2746":6,"2747":2,"2760":1,"2761":1,"2763":2,"2764":10,"2768":1,"2770":2,"2794":1,"2796":2,"2879":1,"2884":1,"2912":1,"2921":1,"2932":1,"2940":3,"2948":2,"2949":1}}],["userspace",{"0":{"228":1,"451":1,"452":1,"453":1,"454":1,"455":1,"456":1,"1463":1,"1465":1,"1628":1,"2413":1,"2590":1,"2603":1,"2605":1,"2606":1,"2608":1,"2609":1},"1":{"452":1,"453":1,"454":1,"455":1,"456":1,"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1,"2591":1,"2592":1,"2593":1,"2594":1,"2595":1,"2596":1,"2597":1,"2598":1,"2599":1,"2600":1,"2601":1,"2602":1,"2604":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2610":1},"2":{"74":2,"76":1,"134":1,"176":1,"191":3,"199":1,"211":1,"213":2,"222":1,"224":1,"228":4,"236":3,"241":2,"249":1,"253":2,"265":2,"268":2,"270":2,"275":1,"281":2,"288":2,"308":2,"317":1,"328":1,"333":2,"452":6,"453":6,"454":4,"455":3,"456":8,"615":1,"1463":2,"1464":2,"1465":1,"1470":2,"1471":3,"1472":2,"1485":1,"1627":3,"1628":3,"1850":2,"2088":2,"2413":1,"2416":1,"2590":1,"2599":1,"2602":1,"2603":5,"2604":1,"2605":3,"2606":3,"2607":2,"2608":5,"2609":5,"2610":1,"2745":1,"2746":1,"2907":1}}],["users",{"0":{"1426":1,"1427":1,"1783":1},"1":{"1784":1,"1785":1,"1786":1},"2":{"0":1,"9":1,"13":1,"19":1,"39":1,"52":1,"62":1,"70":1,"114":1,"118":1,"131":1,"154":1,"156":1,"166":2,"173":1,"201":1,"221":2,"228":1,"234":1,"243":2,"263":1,"276":1,"279":2,"283":1,"284":2,"304":1,"312":2,"331":2,"332":1,"337":1,"371":1,"372":1,"384":1,"399":1,"414":5,"429":1,"447":1,"473":1,"474":1,"476":1,"482":1,"483":1,"494":1,"509":1,"510":1,"555":1,"578":1,"586":1,"618":1,"634":1,"665":1,"668":1,"798":1,"1315":1,"1343":1,"1424":1,"1427":1,"1428":2,"1433":2,"1463":4,"1464":1,"1469":1,"1470":1,"1534":1,"1593":1,"1629":1,"1663":1,"1781":1,"1803":1,"2309":1,"2327":1,"2331":1,"2413":2,"2416":1,"2454":1,"2455":1,"2459":1,"2460":3,"2461":1,"2597":1,"2599":2,"2602":1,"2603":2,"2621":2,"2626":1,"2637":1,"2638":1,"2714":1,"2739":1,"2742":1,"2746":2,"2760":1,"2764":1,"2836":1,"2901":3,"2902":1}}],["use",{"0":{"6":1,"17":1,"30":1,"32":1,"33":1,"164":1,"1345":1,"1522":1,"1767":1,"1791":1,"1941":1,"2006":1,"2013":1,"2309":1,"2410":1,"2448":1,"2943":1},"1":{"31":1,"34":1,"1523":1},"2":{"1":1,"7":1,"17":1,"25":1,"30":1,"31":1,"32":1,"33":1,"34":1,"36":1,"37":1,"43":1,"45":1,"49":2,"70":1,"74":1,"76":1,"80":1,"87":1,"89":1,"93":1,"94":3,"95":1,"99":1,"103":1,"107":1,"114":5,"118":1,"119":3,"126":1,"133":2,"134":9,"149":5,"160":3,"166":1,"167":1,"174":1,"176":15,"179":1,"190":1,"191":15,"194":2,"199":10,"206":1,"211":11,"215":1,"218":1,"220":2,"222":2,"232":1,"236":8,"240":1,"249":4,"256":1,"260":1,"266":2,"277":3,"285":4,"294":1,"302":1,"307":1,"308":8,"317":9,"320":1,"323":2,"328":1,"333":2,"367":1,"373":1,"375":1,"380":1,"392":1,"393":1,"396":1,"404":1,"411":1,"419":1,"426":1,"429":1,"430":1,"437":1,"454":1,"460":3,"461":2,"463":2,"470":1,"489":3,"491":4,"494":1,"499":1,"501":2,"504":2,"505":1,"506":1,"512":6,"513":3,"514":2,"515":1,"516":2,"519":3,"520":1,"521":2,"525":1,"526":1,"528":2,"529":1,"530":1,"531":1,"532":1,"533":1,"534":1,"536":1,"538":3,"540":1,"542":1,"543":1,"546":2,"547":1,"559":1,"561":2,"564":2,"567":1,"568":3,"569":1,"570":1,"574":1,"575":2,"581":1,"588":1,"591":1,"596":1,"599":1,"600":1,"604":1,"613":2,"616":1,"622":2,"625":2,"627":1,"629":2,"630":1,"632":1,"633":1,"645":1,"647":2,"651":1,"656":1,"665":2,"670":2,"671":1,"672":1,"675":1,"676":1,"681":1,"682":1,"683":1,"686":1,"688":1,"690":1,"696":2,"698":2,"709":1,"710":1,"713":1,"715":1,"717":12,"718":8,"719":2,"721":5,"725":2,"726":2,"729":1,"742":1,"746":1,"748":1,"754":2,"757":1,"761":1,"763":1,"764":7,"768":1,"793":1,"798":1,"799":1,"801":2,"805":1,"827":2,"831":1,"856":2,"863":1,"888":2,"893":1,"920":2,"928":1,"955":2,"962":1,"989":2,"996":1,"1023":2,"1030":1,"1057":2,"1064":1,"1091":2,"1098":1,"1125":2,"1132":1,"1159":2,"1166":1,"1192":1,"1193":1,"1195":2,"1198":1,"1200":1,"1201":1,"1203":5,"1204":5,"1205":1,"1213":2,"1215":2,"1219":1,"1246":1,"1247":1,"1248":7,"1252":1,"1253":1,"1267":1,"1269":7,"1284":2,"1297":2,"1299":7,"1301":1,"1302":2,"1303":6,"1313":1,"1315":2,"1316":1,"1319":3,"1322":2,"1327":1,"1330":1,"1346":3,"1347":1,"1348":1,"1351":1,"1354":2,"1358":1,"1364":2,"1365":1,"1367":1,"1375":1,"1377":1,"1379":2,"1380":1,"1388":2,"1390":1,"1404":2,"1405":2,"1406":1,"1410":2,"1413":1,"1414":1,"1416":1,"1417":9,"1421":1,"1422":1,"1423":2,"1427":1,"1428":3,"1431":2,"1433":1,"1438":2,"1439":2,"1440":2,"1442":2,"1446":3,"1448":2,"1450":1,"1451":1,"1454":1,"1457":2,"1463":1,"1464":1,"1465":2,"1466":1,"1467":1,"1470":7,"1471":1,"1472":4,"1473":1,"1480":3,"1481":1,"1483":2,"1491":1,"1492":2,"1517":2,"1526":1,"1529":1,"1532":2,"1535":2,"1537":1,"1538":1,"1540":1,"1544":1,"1553":1,"1554":1,"1556":6,"1557":4,"1578":1,"1589":2,"1590":1,"1593":1,"1594":2,"1595":2,"1603":1,"1605":1,"1606":1,"1609":1,"1612":1,"1619":1,"1621":1,"1622":1,"1623":2,"1624":1,"1627":1,"1630":2,"1633":3,"1662":1,"1664":1,"1670":1,"1681":1,"1682":1,"1739":1,"1741":1,"1766":3,"1769":1,"1779":2,"1781":3,"1782":1,"1784":1,"1785":1,"1788":4,"1791":2,"1793":1,"1794":1,"1795":1,"1844":4,"1846":1,"1850":2,"1851":1,"1855":2,"1923":1,"1931":1,"1933":1,"1937":2,"1938":1,"1939":1,"1945":1,"1946":1,"1949":2,"1951":1,"1952":10,"1956":1,"1958":1,"1961":2,"1966":1,"1967":1,"1968":4,"1969":1,"1973":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":5,"1985":1,"1987":1,"1990":2,"1993":1,"1995":1,"2003":1,"2009":1,"2040":1,"2041":1,"2042":1,"2043":3,"2044":1,"2046":3,"2047":2,"2048":1,"2053":1,"2054":1,"2057":1,"2066":1,"2069":3,"2070":1,"2077":2,"2079":1,"2080":4,"2082":1,"2088":2,"2090":1,"2094":2,"2096":2,"2097":1,"2179":1,"2182":5,"2184":1,"2186":1,"2188":1,"2189":1,"2191":2,"2207":1,"2249":1,"2259":1,"2260":1,"2261":2,"2264":2,"2265":2,"2267":2,"2272":1,"2274":1,"2275":3,"2276":6,"2279":1,"2280":1,"2284":1,"2285":1,"2288":2,"2289":1,"2292":1,"2294":1,"2297":2,"2298":1,"2300":1,"2301":1,"2309":2,"2310":2,"2316":1,"2317":3,"2318":2,"2319":4,"2327":1,"2329":3,"2330":2,"2374":1,"2375":1,"2377":1,"2379":2,"2382":3,"2383":1,"2384":2,"2386":1,"2391":2,"2396":1,"2397":1,"2407":2,"2409":1,"2413":1,"2414":2,"2415":1,"2417":6,"2418":3,"2428":1,"2429":3,"2431":1,"2434":2,"2435":1,"2466":2,"2475":1,"2478":2,"2481":1,"2484":1,"2488":1,"2490":1,"2500":1,"2502":1,"2510":1,"2516":1,"2551":2,"2552":1,"2561":4,"2567":1,"2568":1,"2570":1,"2576":1,"2579":1,"2583":1,"2586":1,"2589":1,"2593":1,"2598":2,"2600":1,"2603":3,"2604":1,"2605":1,"2606":1,"2607":3,"2608":1,"2612":1,"2614":1,"2617":1,"2627":2,"2628":2,"2629":1,"2634":1,"2637":1,"2640":6,"2643":1,"2645":1,"2651":1,"2652":3,"2659":1,"2664":1,"2665":1,"2671":1,"2676":4,"2682":1,"2683":2,"2685":1,"2687":1,"2691":4,"2694":1,"2695":1,"2697":2,"2698":2,"2699":2,"2702":2,"2710":1,"2711":1,"2715":1,"2717":2,"2720":2,"2727":1,"2744":2,"2746":8,"2748":1,"2753":3,"2761":1,"2762":3,"2763":3,"2764":3,"2766":1,"2769":3,"2771":4,"2772":1,"2773":1,"2774":2,"2775":1,"2794":1,"2795":3,"2853":2,"2854":1,"2856":2,"2857":2,"2858":1,"2859":1,"2864":2,"2868":1,"2871":1,"2872":2,"2875":1,"2877":1,"2878":1,"2880":3,"2881":1,"2883":1,"2886":1,"2889":3,"2894":1,"2902":1,"2903":2,"2906":2,"2911":1,"2912":4,"2924":1,"2926":2,"2927":1,"2928":4,"2930":2,"2931":1,"2934":1,"2937":2,"2938":1,"2948":2,"2949":1}}],["hm",{"2":{"2374":1}}],["hmcuconf",{"2":{"717":1,"718":1,"721":1,"764":1,"1248":1,"1299":1,"1303":1,"1556":1,"1557":1}}],["hc",{"2":{"2374":1,"2454":2}}],["hkcu",{"2":{"2331":1}}],["hrl",{"2":{"2301":1}}],["hrms",{"2":{"297":1,"308":1}}],["hl",{"2":{"2301":3}}],["hwdb",{"2":{"2471":1}}],["hw",{"2":{"1974":1}}],["hfuse",{"2":{"2503":2}}],["hf",{"2":{"1680":13,"1681":2,"1687":2}}],["hfdkb",{"2":{"217":1}}],["hz",{"2":{"763":1,"857":1,"859":11,"921":1,"924":6,"956":1,"958":6,"990":1,"992":6,"1024":1,"1026":6,"1058":1,"1060":6,"1160":1,"1162":10,"2882":1}}],["h>",{"2":{"717":2,"718":2,"721":2,"764":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1299":2,"1303":2,"1405":1,"1556":2,"1557":2,"2042":1,"2764":1}}],["h1",{"2":{"675":1,"677":3}}],["hyphen",{"2":{"1593":1}}],["hyper",{"2":{"1363":1,"2409":2,"2575":2}}],["hypr",{"2":{"1363":1,"2529":2,"2530":1,"2535":1,"2575":2,"2651":1}}],["hypothetical",{"2":{"656":1}}],["hysteresis",{"2":{"114":1}}],["h87a",{"2":{"589":5}}],["h87g2",{"2":{"249":1}}],["hungarian",{"2":{"2887":3}}],["hundreds",{"2":{"1957":1}}],["hurts",{"2":{"2566":1}}],["hurt",{"2":{"2434":1}}],["hurry",{"2":{"1499":1}}],["huge",{"2":{"1622":1}}],["hum5",{"2":{"1686":1}}],["hum4",{"2":{"1686":1}}],["hum3",{"2":{"1686":1}}],["hum2",{"2":{"1686":1}}],["hum1",{"2":{"1686":1}}],["hum",{"2":{"1686":6}}],["humbert",{"2":{"684":1,"1343":1}}],["humans",{"2":{"589":1}}],["human",{"2":{"436":1,"495":1,"1330":1,"2576":1,"2795":1,"2811":1,"2948":1}}],["hub",{"0":{"1386":1},"2":{"249":1,"1962":1}}],["hub20",{"2":{"241":2}}],["hub16",{"2":{"241":2}}],["hues",{"2":{"2085":2,"2087":2,"2187":1}}],["hueu",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2532":1,"2533":1}}],["hued",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2532":1,"2533":1}}],["hue",{"0":{"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2201":1},"1":{"2126":1},"2":{"49":1,"111":1,"183":2,"222":3,"294":1,"328":1,"354":1,"565":2,"1668":4,"2084":4,"2085":44,"2091":4,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2180":2,"2181":6,"2182":4,"2186":1,"2201":12,"2204":2,"2454":2,"2532":6,"2533":4,"2764":13,"2782":1,"2877":4,"2878":4,"2894":3}}],["h2",{"2":{"211":1,"677":2}}],["hjson",{"2":{"191":1,"199":1,"222":1,"294":4,"669":2,"2746":1}}],["hpp",{"2":{"160":1}}],["hnahkb",{"2":{"143":3,"149":1}}],["http",{"2":{"377":1,"420":1,"460":1,"581":1,"610":1,"617":1,"1467":1,"1622":1,"2750":1}}],["https",{"2":{"2":1,"21":1,"196":1,"236":1,"376":1,"377":1,"379":4,"421":1,"426":2,"429":1,"488":1,"574":1,"579":1,"580":1,"610":1,"613":1,"616":1,"683":1,"684":5,"749":7,"750":1,"762":1,"1312":1,"1313":1,"1318":1,"1319":3,"1352":1,"1353":3,"1357":2,"1358":1,"1359":3,"1361":1,"1378":2,"1379":1,"1382":2,"1386":1,"1387":2,"1446":1,"1628":1,"1798":1,"2187":1,"2407":1,"2410":4,"2458":1,"2593":1,"2600":2,"2605":1,"2606":1,"2623":1,"2624":1,"2625":1,"2626":1,"2637":8,"2639":5,"2676":1,"2683":1,"2714":3,"2746":3,"2852":1}}],["html",{"2":{"341":1,"610":1,"1319":1,"1358":1,"1379":1}}],["ht32",{"2":{"130":1,"134":1}}],["hd44780u",{"2":{"1697":1}}],["hd44780",{"0":{"1696":1,"1704":1,"1706":1,"1707":1,"1708":1,"1710":1,"1711":1,"1713":1,"1715":1,"1717":1,"1719":1,"1721":1,"1723":1,"1725":1,"1727":1,"1730":1,"1732":1,"1734":1,"1736":1},"1":{"1697":1,"1698":1,"1699":1,"1700":1,"1701":1,"1702":1,"1703":1,"1704":1,"1705":2,"1706":1,"1707":1,"1708":1,"1709":2,"1710":1,"1711":1,"1712":2,"1713":1,"1714":2,"1715":1,"1716":2,"1717":1,"1718":2,"1719":1,"1720":2,"1721":1,"1722":2,"1723":1,"1724":2,"1725":1,"1726":2,"1727":1,"1728":2,"1729":2,"1730":1,"1731":2,"1732":1,"1733":2,"1734":1,"1735":2,"1736":1,"1737":2},"2":{"64":1,"160":1,"1699":7,"1701":2,"1702":4,"1717":1,"1721":1,"1730":1,"2746":2}}],["hse",{"2":{"328":1}}],["hseclk",{"2":{"308":1}}],["hs60v2",{"0":{"1320":1}}],["hs60",{"2":{"277":1}}],["hs",{"2":{"211":1,"266":1}}],["hsv888",{"2":{"2782":1}}],["hsvs",{"2":{"191":1}}],["hsv",{"0":{"2163":2},"1":{"2164":2},"2":{"49":1,"114":1,"149":1,"285":2,"308":1,"1417":7,"2086":1,"2089":22,"2096":11,"2097":1,"2164":2,"2189":5,"2191":2,"2198":7,"2201":2,"2205":24,"2764":1,"2782":3,"2877":1,"2878":1}}],["hsgw",{"2":{"37":2}}],["hierarchies",{"2":{"2653":1,"2673":1}}],["hierarchy",{"2":{"176":1,"627":1}}],["hich",{"2":{"2079":1}}],["hires",{"2":{"1986":8}}],["hiragana",{"2":{"1358":1,"2547":2}}],["himself",{"2":{"1343":1}}],["his",{"2":{"1343":1,"2425":1,"2436":1}}],["history",{"0":{"665":1},"2":{"2557":1,"2634":1}}],["historically",{"2":{"172":1,"189":1,"273":1,"276":1,"665":1,"2569":1,"2746":1}}],["historical",{"2":{"126":1,"127":1,"241":1,"245":1,"253":1,"270":1,"281":1,"753":1,"2567":1,"2603":1}}],["hint",{"0":{"678":1},"1":{"679":1,"680":1},"2":{"678":1,"2634":1}}],["hineybush",{"2":{"589":4}}],["hinder",{"2":{"533":1}}],["hi",{"2":{"266":1,"1843":1}}],["hillside48",{"2":{"176":1}}],["hillside",{"2":{"149":1,"168":2,"181":6,"191":1}}],["hits",{"2":{"1413":1,"1849":4,"2085":5}}],["hitting",{"2":{"710":2,"1602":1,"2317":1,"2379":1,"2418":1,"2639":1,"2650":1,"2772":1,"2928":1}}],["hit",{"2":{"114":1,"152":1,"353":1,"564":1,"711":1,"1348":1,"1413":1,"1493":1,"1499":1,"1602":4,"1762":1,"1796":1,"1802":1,"1804":1,"1849":5,"1953":1,"2085":7,"2293":1,"2301":1,"2308":3,"2317":4,"2330":1,"2387":1,"2678":1,"2901":1}}],["highest",{"2":{"555":1,"719":1,"1413":1,"1417":1,"1422":1,"1425":1,"1428":2,"1430":1,"1431":1,"1493":1,"1538":1,"1539":1,"1620":1,"1791":1,"1795":3,"1843":1,"1945":1,"1994":1,"1996":1,"2011":2,"2012":2,"2095":3,"2096":1,"2284":1,"2320":1,"2522":1,"2559":1,"2769":1,"2824":1}}],["higher",{"2":{"114":1,"125":1,"185":1,"403":1,"561":1,"564":1,"719":1,"1207":1,"1422":1,"1425":2,"1427":1,"1953":1,"1974":1,"2309":1,"2318":1,"2557":2,"2559":4,"2562":1,"2744":2,"2761":1,"2763":1,"2769":1,"2903":1,"2911":2,"2921":1}}],["highlight",{"2":{"494":1}}],["highlights",{"2":{"440":1}}],["highlighted",{"2":{"272":1,"1791":1}}],["highly",{"2":{"182":1,"723":1,"1464":1,"2249":1,"2496":1,"2638":1,"2748":1}}],["high",{"0":{"1986":1},"2":{"49":2,"92":1,"114":1,"243":2,"308":1,"341":1,"414":1,"561":3,"568":1,"569":2,"576":1,"615":1,"719":4,"748":1,"797":5,"1197":1,"1205":1,"1285":2,"1286":1,"1297":1,"1415":1,"1486":1,"1493":1,"1538":2,"1544":1,"1545":1,"1577":1,"1665":1,"1670":1,"1684":2,"1685":2,"1742":3,"1801":1,"1836":1,"1838":2,"1935":2,"1986":6,"2271":1,"2298":1,"2466":1,"2498":1,"2499":1,"2500":1,"2501":1,"2503":2,"2557":1,"2562":1,"2691":1,"2709":1,"2764":1,"2799":1,"2856":1,"2857":1,"2867":1,"2903":1,"2919":1,"2920":1,"2933":1}}],["hidden",{"2":{"2765":1,"2940":1}}],["hid4java",{"2":{"2057":1}}],["hidapi",{"2":{"2057":1}}],["hidraw",{"2":{"1332":1}}],["hidbootflash",{"2":{"2390":1}}],["hidboot",{"2":{"713":1}}],["hidusb",{"2":{"240":1,"710":1,"711":2,"713":4}}],["hides",{"2":{"2563":1}}],["hide",{"2":{"199":1,"1471":1}}],["hid",{"0":{"1326":1,"1332":1,"2054":1,"2061":1,"2063":1,"2391":1,"2819":1},"1":{"2055":1,"2056":1,"2057":1,"2058":1,"2059":1,"2060":1,"2061":1,"2062":2,"2063":1,"2064":2},"2":{"2":1,"34":1,"49":2,"50":1,"114":3,"143":2,"149":2,"199":2,"222":2,"236":1,"266":1,"308":1,"430":1,"562":1,"573":1,"575":1,"709":2,"713":1,"1326":1,"1332":4,"1333":1,"1350":1,"1351":1,"1356":1,"1627":1,"1788":1,"1835":1,"1983":3,"1986":1,"1990":4,"2016":2,"2052":1,"2054":2,"2056":4,"2057":7,"2058":2,"2059":11,"2061":1,"2063":1,"2181":1,"2374":1,"2388":1,"2390":1,"2391":6,"2392":1,"2418":2,"2469":1,"2470":1,"2510":1,"2541":1,"2557":1,"2562":1,"2746":1,"2751":1,"2819":1,"2829":1,"2840":2,"2884":1,"2928":1}}],["h7",{"2":{"49":1}}],["hhkbs",{"2":{"36":2}}],["hhkb",{"0":{"35":1,"36":1,"257":1,"258":1},"1":{"36":1},"2":{"35":3,"36":8,"211":2,"256":2,"257":1,"258":1,"285":1,"1361":1}}],["hebrew",{"2":{"2887":2}}],["heir",{"2":{"2079":1}}],["heights",{"2":{"1952":1}}],["height",{"2":{"111":1,"114":1,"1949":2,"1952":3,"1953":3,"1954":1,"1970":2,"2288":2,"2289":3,"2763":16,"2764":9,"2779":1,"2787":2,"2795":1,"2869":1}}],["henkan",{"2":{"1358":1,"2547":1}}],["hence",{"2":{"716":1,"1413":1,"1488":1}}],["hey",{"2":{"405":1,"406":1,"407":1,"408":1,"411":1}}],["her",{"2":{"1673":1}}],["hertz",{"2":{"719":1}}],["herringbone",{"2":{"197":4}}],["here",{"0":{"1338":1},"2":{"31":1,"213":1,"233":1,"264":1,"274":1,"282":1,"288":1,"292":1,"301":1,"313":1,"326":1,"336":1,"369":1,"378":1,"385":1,"386":2,"389":1,"391":1,"392":1,"393":1,"396":1,"397":2,"398":1,"450":1,"512":1,"544":1,"560":1,"574":1,"593":1,"613":5,"619":2,"621":1,"624":2,"625":2,"629":1,"645":1,"668":1,"673":1,"681":1,"713":1,"719":1,"745":2,"748":1,"1312":1,"1313":1,"1319":1,"1340":1,"1346":1,"1349":1,"1364":1,"1376":1,"1386":1,"1416":1,"1417":1,"1420":1,"1433":1,"1438":1,"1446":2,"1464":2,"1466":1,"1470":1,"1492":1,"1517":1,"1518":1,"1537":1,"1540":1,"1551":2,"1591":1,"1612":4,"1617":1,"1618":1,"1625":1,"1670":1,"1779":1,"1846":1,"1961":1,"1964":1,"1990":1,"1994":1,"2011":1,"2012":1,"2057":2,"2059":1,"2079":1,"2082":1,"2096":1,"2187":1,"2188":1,"2266":1,"2273":1,"2308":1,"2309":1,"2312":1,"2317":2,"2318":2,"2319":1,"2329":1,"2395":1,"2410":2,"2416":1,"2417":1,"2418":1,"2423":1,"2427":1,"2430":1,"2432":2,"2433":1,"2434":1,"2466":2,"2468":1,"2469":1,"2473":1,"2503":2,"2506":1,"2523":1,"2563":1,"2567":1,"2586":1,"2593":1,"2603":1,"2605":1,"2621":1,"2633":1,"2634":1,"2635":1,"2637":1,"2648":1,"2649":1,"2672":1,"2676":1,"2678":1,"2683":1,"2716":1,"2720":1,"2746":1,"2748":2,"2765":1,"2776":1,"2850":1,"2886":1,"2893":1,"2904":1,"2908":1,"2912":1,"2929":1,"2931":1,"2932":2,"2937":1,"2939":1,"2941":1}}],["heated",{"2":{"2427":1}}],["heat",{"2":{"2086":1,"2425":1,"2427":3}}],["heating",{"2":{"2086":1,"2427":1,"2671":1}}],["heatmap",{"0":{"2086":1},"2":{"160":1,"176":2,"211":1,"2085":3,"2086":8,"2894":1}}],["heavily",{"2":{"1335":1,"1392":1,"1393":1,"1855":1,"2094":1}}],["heavy",{"2":{"149":1,"249":1,"251":1,"294":1,"1290":1,"2616":1}}],["healthy",{"2":{"711":1}}],["headings",{"0":{"677":1},"2":{"677":3}}],["heading",{"2":{"675":3}}],["headroom",{"2":{"134":2}}],["head",{"2":{"99":1,"364":1,"381":1,"382":1,"409":1,"1337":1,"1342":1,"2634":6,"2674":1,"2677":1,"2679":1}}],["headers",{"2":{"94":1,"160":1,"199":1,"211":3,"249":2,"294":3,"308":2,"333":1,"344":3,"356":1,"403":1,"618":1,"1957":1,"2744":2,"2885":1,"2886":1,"2887":1}}],["header",{"0":{"2750":1,"2778":1,"2786":1,"2887":1},"2":{"4":1,"134":1,"176":1,"191":6,"211":1,"222":2,"249":1,"277":1,"462":1,"512":1,"560":1,"593":1,"1634":2,"1662":1,"2457":1,"2464":1,"2483":1,"2494":2,"2507":1,"2612":1,"2744":4,"2777":2,"2778":8,"2779":3,"2780":2,"2781":3,"2782":2,"2783":2,"2784":2,"2785":2,"2786":2,"2787":3,"2788":3,"2789":2,"2884":1,"2885":2,"2886":3,"2887":4}}],["hecomi",{"2":{"143":2}}],["hexnumpad",{"2":{"2344":1,"2345":1,"2346":1}}],["hexadecimal",{"2":{"2238":1,"2240":1,"2242":1,"2244":1,"2329":1,"2882":2}}],["hex6c",{"2":{"211":1}}],["hex",{"2":{"94":1,"160":1,"199":1,"430":1,"446":1,"572":1,"671":2,"1315":1,"1376":6,"1472":1,"2059":1,"2222":1,"2331":2,"2382":1,"2383":1,"2384":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":2,"2407":1,"2417":3,"2418":4,"2432":1,"2433":1,"2501":2,"2502":6,"2503":1,"2504":4,"2587":3,"2589":1,"2599":1,"2614":3,"2615":1,"2629":3,"2854":1,"2948":1}}],["helo",{"2":{"1627":1,"1630":1}}],["helios",{"0":{"1397":1},"2":{"199":1,"1389":2,"1391":3,"1399":3,"1739":1,"2706":1,"2895":1}}],["helix",{"0":{"55":1},"2":{"55":52,"114":1,"133":1,"134":1,"149":1,"160":1,"211":1,"266":1,"311":6,"317":4,"1946":1}}],["held",{"2":{"160":1,"194":3,"320":1,"683":1,"1351":1,"1362":1,"1364":1,"1367":1,"1422":1,"1454":1,"1455":1,"1499":2,"1501":1,"1518":1,"1529":1,"1533":2,"1597":1,"1612":2,"1672":1,"1674":1,"1690":3,"1762":1,"1765":1,"1781":1,"1785":2,"1786":1,"1934":1,"1935":1,"1938":2,"1939":1,"1994":1,"1999":1,"2000":1,"2069":2,"2181":10,"2255":1,"2257":7,"2258":1,"2259":9,"2260":1,"2272":1,"2300":1,"2304":5,"2309":4,"2316":1,"2317":3,"2318":1,"2319":2,"2389":1,"2418":1,"2469":1,"2510":2,"2511":2,"2519":1,"2523":1,"2530":29,"2532":10,"2538":7,"2539":5,"2549":1,"2563":1,"2568":1,"2575":30,"2579":1,"2639":1,"2650":1,"2752":2,"2831":1,"2834":1,"2839":1,"2913":5,"2914":1,"2915":1,"2916":2,"2917":1,"2918":2,"2925":4,"2926":1,"2927":1,"2928":1,"2930":2}}],["helped",{"2":{"2636":1}}],["helper",{"2":{"49":1,"2277":1,"2424":1}}],["helpers",{"0":{"231":1},"2":{"49":1,"199":2,"211":1,"236":1,"285":1,"2566":1}}],["helping",{"2":{"2421":1,"2573":1}}],["helpful",{"2":{"680":2,"1518":1,"1801":1,"2011":1,"2184":1,"2278":1,"2428":1,"2560":1,"2561":1,"2574":1,"2897":1,"2926":1}}],["help=",{"2":{"489":1,"500":2}}],["helps",{"2":{"173":1,"297":1,"439":1,"536":1,"570":1,"1343":1,"1949":2,"2288":1,"2330":1,"2427":3,"2429":1,"2680":1,"2847":1,"2905":1,"2922":1}}],["help",{"0":{"418":1,"612":1,"2480":1,"2896":1},"1":{"2897":1,"2898":1,"2899":1},"2":{"132":1,"173":1,"228":1,"386":1,"426":1,"452":2,"453":2,"454":2,"455":2,"460":2,"461":2,"469":2,"505":1,"544":1,"609":2,"612":1,"613":1,"615":1,"616":1,"626":1,"644":1,"672":1,"674":2,"683":1,"1424":1,"1427":1,"1440":1,"1493":1,"1503":1,"1524":1,"1625":4,"1634":1,"1855":1,"1960":2,"2094":1,"2270":1,"2324":1,"2405":1,"2417":1,"2422":1,"2423":1,"2428":1,"2435":1,"2441":2,"2466":1,"2477":1,"2480":1,"2481":1,"2510":2,"2548":2,"2556":1,"2566":2,"2612":1,"2617":1,"2628":1,"2634":3,"2671":1,"2680":2,"2744":1,"2746":1,"2748":1,"2762":6,"2817":1,"2889":1,"2890":1,"2896":1,"2897":1,"2910":1}}],["hello",{"0":{"1701":1,"2225":1},"2":{"23":1,"120":1,"485":1,"489":10,"491":1,"529":1,"1441":1,"1523":3,"1627":4,"1628":1,"1630":2,"1633":2,"1638":19,"1701":1,"1718":1,"2225":3,"2302":1,"2764":1}}],["hobbyist",{"2":{"2572":1}}],["hop",{"2":{"1336":1,"2939":1}}],["hopefully",{"2":{"619":1,"2943":1}}],["hope",{"2":{"245":1,"505":1,"1467":1,"2750":1}}],["hover",{"2":{"599":1,"2683":1}}],["housings",{"2":{"2427":1}}],["housekeeping",{"0":{"646":1,"647":1},"1":{"647":1},"2":{"75":1,"92":1,"277":1,"646":2,"647":2,"1420":1,"1638":3,"2277":2,"2764":7}}],["hours",{"2":{"420":1,"610":1}}],["homebrew",{"2":{"2593":1,"2624":1}}],["home",{"0":{"1707":1},"2":{"277":1,"289":1,"432":1,"447":1,"452":1,"453":1,"456":4,"589":2,"1448":7,"1605":1,"1613":1,"1694":1,"1702":1,"1707":1,"1802":2,"2068":3,"2317":1,"2409":1,"2510":5,"2548":2,"2549":2,"2550":1,"2564":1,"2584":1,"2626":1,"2628":2,"2746":1,"2762":6,"2922":1,"2925":1,"2931":2}}],["hood",{"2":{"495":1,"670":1}}],["hoodrowg",{"2":{"211":1}}],["hooking",{"2":{"643":1,"644":1,"2037":1}}],["hooks",{"0":{"1664":1},"2":{"277":1,"284":1,"288":2,"298":1,"308":1,"626":1,"1626":1,"1664":1,"1844":1,"2080":1,"2214":1,"2298":1,"2300":2}}],["hook",{"0":{"1613":1,"2053":1},"2":{"199":1,"272":1,"643":1,"1473":1,"1585":1,"1587":1,"1620":1,"1634":1,"1638":1,"2037":2,"2690":1}}],["hooked",{"2":{"198":1,"565":1}}],["horizontally",{"2":{"1953":1,"1992":1,"2085":1}}],["horizontal",{"2":{"1939":1,"1953":1,"1968":1,"1976":1,"1986":1,"1990":1,"2764":1,"2869":1,"2871":1,"2878":1}}],["horrortroll",{"2":{"199":1,"285":1}}],["horn",{"2":{"176":1}}],["hole",{"2":{"2421":1,"2689":1}}],["holiday",{"2":{"176":1}}],["holds",{"2":{"195":1,"320":1,"1517":2,"1518":3,"1673":2,"1762":1,"2310":1,"2317":1,"2557":2,"2562":2,"2650":1,"2921":1,"2930":1}}],["holdings",{"2":{"211":1}}],["holding",{"0":{"1612":1},"2":{"152":2,"710":2,"1367":1,"1472":2,"1498":1,"1503":1,"1517":1,"1518":1,"1519":1,"1785":1,"1786":1,"1789":1,"1791":3,"1934":5,"1971":1,"1999":1,"2000":1,"2300":1,"2330":1,"2384":1,"2391":1,"2510":1,"2557":1,"2834":1,"2912":1,"2928":2,"2929":1}}],["hold",{"0":{"22":1,"195":1,"289":1,"320":2,"1372":1,"1519":1,"2316":1,"2579":1,"2580":1,"2909":1,"2913":1,"2919":1,"2920":1,"2925":1,"2926":1,"2930":1},"1":{"2910":1,"2911":1,"2912":1,"2913":1,"2914":2,"2915":2,"2916":2,"2917":2,"2918":2,"2919":2,"2920":2,"2921":1,"2922":1,"2923":1,"2924":1,"2925":1,"2926":2,"2927":2,"2928":1,"2929":1,"2930":1,"2931":1,"2932":1},"2":{"22":1,"112":4,"114":1,"134":2,"149":2,"176":2,"191":2,"194":8,"195":5,"199":3,"203":1,"206":3,"249":1,"289":6,"294":3,"297":3,"308":3,"320":7,"324":4,"325":4,"328":3,"339":3,"564":18,"684":1,"710":2,"1348":1,"1362":1,"1363":28,"1372":1,"1422":1,"1440":1,"1455":2,"1496":1,"1498":1,"1499":2,"1501":1,"1503":1,"1510":1,"1518":5,"1519":2,"1533":2,"1589":1,"1594":1,"1610":3,"1612":6,"1616":1,"1624":1,"1762":1,"1764":1,"1765":1,"1781":1,"1784":3,"1785":2,"1786":2,"1791":1,"1795":2,"1937":1,"1938":1,"1971":3,"1999":2,"2006":1,"2259":1,"2309":1,"2316":32,"2317":16,"2318":4,"2319":6,"2327":2,"2344":2,"2390":1,"2404":2,"2418":1,"2424":1,"2427":2,"2521":1,"2529":28,"2535":29,"2569":1,"2570":1,"2571":1,"2575":1,"2579":4,"2580":3,"2581":1,"2612":4,"2650":1,"2651":29,"2659":1,"2746":2,"2854":5,"2869":1,"2874":1,"2907":1,"2909":2,"2910":1,"2911":1,"2912":1,"2913":10,"2914":1,"2915":4,"2916":6,"2917":4,"2919":19,"2920":14,"2921":2,"2922":5,"2923":1,"2924":3,"2925":27,"2926":7,"2927":11,"2930":20,"2931":1,"2945":4}}],["honor",{"2":{"176":1,"2603":1}}],["honeycomb",{"2":{"159":2}}],["hot",{"2":{"2085":1,"2086":1,"2265":1,"2280":1,"2422":1,"2428":2,"2435":1}}],["hotkey",{"2":{"2068":1}}],["hotkeys",{"2":{"1529":1,"2065":1,"2068":1,"2923":1,"2925":1,"2927":1}}],["hotdox76v2",{"2":{"191":1}}],["hotswap",{"2":{"122":1,"149":1,"191":1,"199":1,"207":2,"211":8,"222":1,"241":4,"266":1,"308":1,"483":1}}],["hotfix",{"2":{"114":1,"134":1}}],["hosts",{"2":{"2817":1}}],["hosting",{"2":{"683":1,"1627":1,"2458":1,"2746":1}}],["host",{"0":{"1442":1,"1840":1,"2849":2,"2866":1,"2885":1},"2":{"113":1,"114":1,"134":1,"149":2,"182":1,"190":2,"191":3,"195":1,"199":2,"211":1,"222":1,"263":2,"285":1,"303":2,"308":2,"317":1,"333":1,"338":2,"396":1,"570":1,"574":1,"709":1,"1381":1,"1392":2,"1393":2,"1638":3,"1651":2,"1652":1,"1747":1,"1750":1,"1781":1,"1835":3,"1840":4,"1939":1,"1945":3,"1956":1,"1957":1,"1958":4,"1962":1,"1986":2,"1988":1,"1990":4,"1993":1,"2016":1,"2032":1,"2046":2,"2048":1,"2053":1,"2054":2,"2058":1,"2059":2,"2061":1,"2095":1,"2096":2,"2182":1,"2219":1,"2222":1,"2276":2,"2284":3,"2325":1,"2331":1,"2418":1,"2496":1,"2572":1,"2591":1,"2595":1,"2715":1,"2775":1,"2849":1,"2866":1,"2871":1,"2877":1,"2878":1,"2882":2,"2885":3,"2913":1,"2919":2,"2920":1,"2934":1}}],["hosted",{"2":{"93":1}}],["hostname",{"2":{"70":3}}],["however",{"2":{"555":1,"634":1,"643":1,"685":1,"688":1,"698":1,"709":1,"725":1,"754":1,"761":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1288":1,"1297":1,"1351":1,"1356":1,"1409":1,"1416":1,"1470":1,"1472":1,"1492":2,"1503":1,"1518":1,"1545":1,"1550":1,"1593":1,"1670":1,"1672":1,"1690":3,"1803":1,"1938":1,"1952":1,"1953":2,"2011":1,"2056":1,"2057":1,"2220":1,"2260":1,"2265":2,"2273":1,"2275":1,"2281":1,"2317":1,"2320":1,"2326":1,"2327":1,"2330":1,"2331":1,"2375":1,"2396":1,"2482":1,"2483":1,"2499":1,"2505":1,"2564":1,"2613":1,"2616":1,"2658":2,"2666":1,"2667":1,"2668":1,"2677":1,"2702":1,"2720":1,"2744":1,"2791":1,"2884":1,"2888":1,"2919":1,"2930":1,"2937":1,"2941":1,"2947":1}}],["how",{"0":{"609":1,"613":1,"626":1,"1331":1,"1337":1,"1347":1,"1375":1,"1498":1,"1500":1,"1525":1,"1526":1,"1594":1,"1790":1,"2001":1,"2002":1,"2066":1,"2076":1,"2077":1,"2309":1,"2410":1,"2438":1,"2466":1,"2467":1,"2475":1,"2632":1,"2794":1,"2796":1,"2903":1,"2904":1},"1":{"610":1,"627":1,"1595":1,"2003":1,"2004":1,"2005":1,"2006":1,"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"70":1,"76":1,"77":1,"90":1,"123":1,"153":2,"186":1,"188":1,"194":1,"263":1,"312":1,"384":1,"399":1,"471":1,"489":1,"490":1,"512":1,"561":1,"564":6,"587":1,"604":1,"610":2,"613":1,"616":1,"620":2,"626":1,"647":1,"664":1,"665":1,"668":1,"670":1,"672":1,"696":1,"829":1,"858":1,"860":1,"890":1,"922":1,"925":1,"957":1,"959":1,"991":1,"993":1,"1025":1,"1027":1,"1059":1,"1061":1,"1093":1,"1095":1,"1127":1,"1129":1,"1161":1,"1163":1,"1217":1,"1313":1,"1320":2,"1339":1,"1340":1,"1348":1,"1405":1,"1417":1,"1420":1,"1421":1,"1427":2,"1428":2,"1430":1,"1431":1,"1443":1,"1447":2,"1448":1,"1464":1,"1492":1,"1503":1,"1525":1,"1537":2,"1665":1,"1681":4,"1774":1,"1779":1,"1783":1,"1784":1,"1785":1,"1786":1,"1837":1,"1845":1,"1852":1,"1939":2,"1952":1,"1961":1,"1974":1,"1995":1,"2008":1,"2068":1,"2076":1,"2077":1,"2081":1,"2085":3,"2086":1,"2091":1,"2180":1,"2185":3,"2187":6,"2188":1,"2258":1,"2265":1,"2273":2,"2275":1,"2278":2,"2308":1,"2310":1,"2317":1,"2320":1,"2379":2,"2415":1,"2423":1,"2429":2,"2435":1,"2436":1,"2438":1,"2444":1,"2445":1,"2446":1,"2460":1,"2466":2,"2467":1,"2480":1,"2565":1,"2572":1,"2573":1,"2585":1,"2586":2,"2588":1,"2616":1,"2618":1,"2628":1,"2632":1,"2634":1,"2643":1,"2653":1,"2672":1,"2673":2,"2714":1,"2717":1,"2744":1,"2746":1,"2748":1,"2753":1,"2763":2,"2764":3,"2793":1,"2794":2,"2843":1,"2851":1,"2871":1,"2878":1,"2906":1,"2907":1,"2908":2,"2912":1,"2930":2,"2931":1,"2933":2,"2937":1,"2938":2,"2942":1,"2944":2}}],["h",{"0":{"560":1,"1466":1,"1631":1,"1634":1,"1852":1,"1955":1,"2003":1,"2091":1,"2159":1,"2161":1,"2416":1,"2454":1,"2457":1,"2890":1},"1":{"561":1,"562":1,"563":1,"564":1,"565":1,"566":1,"567":1,"568":1,"569":1,"570":1,"2162":1},"2":{"4":2,"5":4,"14":1,"25":1,"28":1,"31":2,"34":2,"49":1,"50":8,"65":3,"70":12,"73":2,"74":1,"75":2,"76":1,"86":2,"94":1,"114":6,"119":1,"134":1,"149":3,"169":2,"170":2,"173":3,"176":12,"184":2,"191":3,"199":12,"201":4,"211":10,"220":1,"222":13,"236":7,"246":1,"249":1,"266":12,"273":1,"277":2,"285":1,"294":1,"308":2,"328":1,"332":1,"333":3,"337":1,"344":1,"375":1,"376":1,"429":1,"433":1,"443":1,"448":1,"449":1,"450":1,"452":2,"453":2,"454":2,"455":2,"460":2,"461":2,"462":1,"469":2,"512":2,"555":2,"558":1,"560":2,"589":3,"593":1,"618":1,"647":1,"660":1,"665":3,"666":1,"667":1,"669":3,"672":2,"673":4,"686":1,"696":1,"698":1,"699":1,"717":1,"718":1,"721":3,"726":1,"727":1,"748":1,"749":3,"750":3,"751":2,"754":2,"755":2,"756":2,"759":2,"761":1,"763":1,"764":5,"765":1,"766":1,"797":1,"798":1,"802":1,"828":1,"829":1,"857":1,"858":1,"859":1,"860":1,"861":1,"889":1,"890":1,"891":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"956":1,"957":1,"958":1,"959":1,"960":1,"990":1,"991":1,"992":1,"993":1,"994":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1195":1,"1198":1,"1201":1,"1203":4,"1204":4,"1205":1,"1206":1,"1208":1,"1209":1,"1213":1,"1216":1,"1217":1,"1246":1,"1248":7,"1267":1,"1269":2,"1284":1,"1285":1,"1286":1,"1287":1,"1288":1,"1297":1,"1299":1,"1300":1,"1301":1,"1303":1,"1319":1,"1327":2,"1331":1,"1333":1,"1345":1,"1354":1,"1379":1,"1383":1,"1392":1,"1396":1,"1405":1,"1410":1,"1412":1,"1417":1,"1419":2,"1420":4,"1427":1,"1433":1,"1434":2,"1438":4,"1449":1,"1463":3,"1464":1,"1466":7,"1471":1,"1472":6,"1474":1,"1477":1,"1478":1,"1479":1,"1480":2,"1481":1,"1482":1,"1483":1,"1484":1,"1485":4,"1488":1,"1489":2,"1490":2,"1491":1,"1492":1,"1493":2,"1501":1,"1502":2,"1503":1,"1518":1,"1522":2,"1527":1,"1533":1,"1544":1,"1545":1,"1546":1,"1556":1,"1557":1,"1579":1,"1589":1,"1590":2,"1594":2,"1595":1,"1597":1,"1598":1,"1607":1,"1619":1,"1622":4,"1625":2,"1639":1,"1661":2,"1662":1,"1663":1,"1665":1,"1666":1,"1667":1,"1676":1,"1678":1,"1683":1,"1686":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1730":1,"1740":1,"1741":1,"1786":1,"1788":2,"1792":1,"1800":1,"1801":1,"1802":1,"1803":1,"1835":1,"1836":1,"1846":1,"1849":1,"1851":1,"1921":1,"1922":1,"1924":1,"1929":3,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1946":1,"1948":1,"1949":2,"1962":2,"1966":1,"1967":1,"1968":1,"1977":1,"1978":1,"1979":2,"1980":1,"1982":2,"1983":2,"1990":2,"1992":3,"1993":1,"1994":9,"1996":1,"1997":1,"1998":1,"2001":2,"2002":1,"2013":1,"2014":1,"2040":1,"2041":1,"2042":2,"2043":1,"2044":1,"2046":1,"2048":1,"2049":1,"2050":3,"2056":1,"2068":2,"2082":1,"2085":1,"2089":1,"2090":1,"2160":1,"2162":1,"2179":1,"2181":1,"2182":1,"2183":1,"2188":1,"2189":1,"2191":1,"2192":1,"2193":1,"2194":1,"2198":8,"2201":4,"2205":1,"2206":2,"2207":1,"2221":1,"2250":1,"2259":1,"2271":2,"2272":1,"2273":1,"2274":2,"2275":1,"2276":1,"2287":1,"2288":1,"2293":1,"2296":1,"2301":2,"2309":2,"2319":1,"2322":2,"2327":1,"2328":1,"2330":1,"2331":1,"2375":1,"2384":2,"2391":2,"2414":3,"2415":1,"2416":6,"2418":4,"2434":1,"2451":2,"2454":21,"2502":1,"2510":3,"2542":3,"2558":1,"2561":1,"2563":2,"2597":2,"2600":1,"2628":1,"2650":1,"2652":1,"2685":1,"2691":1,"2697":1,"2698":1,"2699":1,"2700":1,"2702":1,"2705":1,"2709":1,"2711":1,"2719":1,"2723":1,"2744":3,"2745":1,"2746":6,"2752":1,"2758":1,"2759":1,"2761":1,"2762":10,"2763":11,"2764":7,"2771":2,"2782":1,"2794":4,"2795":7,"2796":2,"2851":1,"2869":1,"2885":2,"2886":1,"2887":121,"2890":3,"2891":1,"2892":1,"2894":2,"2908":1,"2910":2,"2912":3,"2919":2,"2920":2,"2921":2,"2922":1,"2924":1,"2925":1,"2928":4,"2930":4}}],["hazards",{"0":{"2797":1},"1":{"2798":1,"2799":1,"2800":1}}],["hamming",{"2":{"2300":1}}],["hammer",{"2":{"394":1}}],["habit",{"2":{"1503":1,"1524":1}}],["habits",{"2":{"195":1}}],["hargett",{"2":{"2944":1}}],["harmful",{"2":{"2428":1,"2429":1}}],["harming",{"2":{"540":1}}],["harr",{"2":{"2068":49}}],["harvest",{"2":{"2037":1}}],["hardwired",{"2":{"2426":1}}],["hardware",{"0":{"14":1,"561":1,"721":1,"1483":1,"1642":1,"1669":1,"1679":1,"1697":1,"1943":1,"2208":1,"2263":1,"2264":1,"2278":1,"2279":1,"2283":1,"2374":1,"2439":1,"2458":1,"2483":1,"2685":1,"2686":1,"2696":1,"2717":1,"2853":1},"1":{"1643":1,"1644":1,"2264":1,"2265":2,"2266":1,"2267":1,"2280":1,"2375":1,"2484":1,"2485":1,"2486":1,"2487":1,"2488":1,"2489":1,"2490":1,"2491":1,"2492":1,"2493":1,"2494":1,"2495":1,"2697":1,"2698":1,"2699":1},"2":{"14":2,"113":1,"114":1,"133":1,"156":1,"160":1,"163":2,"176":1,"191":4,"215":1,"236":1,"249":1,"277":1,"285":2,"294":1,"414":1,"558":1,"570":1,"622":1,"624":1,"625":3,"633":2,"634":2,"637":2,"684":2,"711":1,"714":2,"715":1,"716":2,"721":2,"723":1,"746":1,"749":1,"750":1,"758":1,"764":2,"1193":1,"1196":1,"1198":1,"1199":1,"1201":1,"1266":1,"1378":1,"1405":1,"1407":1,"1409":1,"1483":4,"1546":1,"1548":1,"1550":1,"1553":1,"1681":2,"1841":1,"1850":1,"1920":1,"1943":1,"1953":1,"1964":1,"1972":3,"1984":2,"1987":1,"1988":3,"2037":1,"2088":1,"2178":1,"2212":1,"2262":1,"2278":1,"2280":1,"2292":2,"2294":1,"2375":1,"2383":1,"2439":2,"2455":2,"2456":1,"2458":1,"2459":1,"2484":1,"2488":1,"2501":1,"2502":1,"2503":1,"2563":1,"2665":1,"2684":1,"2685":2,"2686":3,"2691":1,"2696":1,"2704":1,"2707":1,"2714":2,"2716":1,"2725":1,"2727":2,"2728":1,"2731":1,"2736":1,"2740":1,"2741":1,"2746":4,"2747":2,"2753":1,"2818":1,"2856":1,"2901":1,"2902":1,"2908":1,"2934":1}}],["hardline",{"2":{"2425":1}}],["hardcoding",{"2":{"749":1}}],["hardcoded",{"2":{"191":1,"1488":1}}],["harder",{"2":{"665":1,"2478":1,"2586":1}}],["hard",{"2":{"49":1,"92":1,"263":1,"411":1,"423":2,"516":1,"540":3,"619":1,"676":1,"1802":1,"2189":1,"2447":1,"2460":1,"2572":1,"2637":1}}],["hate",{"2":{"429":1}}],["hat",{"0":{"1741":1,"1760":1},"1":{"1761":1},"2":{"285":1,"1738":1,"1741":12,"1747":2,"1760":1,"1761":1,"2593":1}}],["haierwangwei2005",{"2":{"149":1}}],["hacks",{"2":{"538":1}}],["hacking",{"2":{"383":1}}],["hackpad",{"2":{"222":1}}],["hacked",{"2":{"218":1}}],["hacky",{"2":{"160":1}}],["hack",{"2":{"114":2,"149":1}}],["happened",{"2":{"543":1,"619":1,"2218":1,"2918":1,"2949":1}}],["happen",{"2":{"432":1,"511":1,"652":1,"653":1,"711":1,"768":1,"1356":1,"1409":1,"1431":1,"2300":1,"2315":1,"2482":1,"2808":1}}],["happens",{"2":{"411":1,"579":1,"633":3,"647":1,"651":2,"1446":1,"1463":1,"1528":1,"1787":1,"1961":1,"2277":1,"2466":1,"2469":1,"2633":1,"2821":1,"2822":1,"2912":1,"2913":3,"2919":1}}],["happening",{"2":{"113":1,"651":1,"1608":1,"2384":1,"2391":1,"2928":2}}],["happy",{"2":{"119":1,"398":1,"1522":1,"2410":1,"2462":2,"2582":1}}],["haptics",{"2":{"221":1,"328":1,"1617":1}}],["haptic",{"0":{"1677":1,"1678":1,"1680":1,"1688":1,"1689":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1},"1":{"1678":1,"1679":1,"1680":1,"1681":2,"1682":2,"1683":2,"1684":2,"1685":2,"1686":2,"1687":2,"1688":2,"1689":1,"1690":2,"1691":2,"1692":2,"1693":2,"1694":2,"1695":2},"2":{"64":1,"114":2,"134":3,"160":1,"188":1,"191":1,"199":1,"211":1,"221":2,"222":2,"266":1,"651":1,"1678":14,"1680":21,"1687":1,"1688":1,"1689":3,"1690":4,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2276":2,"2880":3,"2940":1}}],["hankaku",{"2":{"2547":1}}],["hanja",{"2":{"2547":1}}],["hangul",{"2":{"2547":1}}],["hang",{"2":{"365":1}}],["hangsheng",{"2":{"2567":1}}],["hangs",{"2":{"236":1}}],["hannah65",{"2":{"102":1}}],["handwiring",{"2":{"2424":1,"2908":1}}],["handwire",{"2":{"1298":1,"2423":2,"2435":1}}],["handwired",{"0":{"2462":1},"2":{"43":3,"49":1,"67":1,"72":1,"102":1,"114":2,"120":1,"122":1,"134":1,"149":2,"168":2,"181":3,"191":5,"199":3,"207":1,"211":7,"217":14,"222":1,"226":2,"241":1,"249":1,"253":6,"266":1,"277":3,"291":1,"294":2,"339":1,"439":2,"1441":1,"2400":1,"2402":1,"2404":1,"2414":1,"2436":1,"2462":2,"2664":1,"2683":1,"2746":1,"2747":1,"2885":1}}],["hand88",{"2":{"211":1}}],["handful",{"2":{"130":1,"134":1,"149":1,"198":1,"211":2,"222":1,"283":1,"665":1,"2393":1,"2567":1,"2710":1,"2914":1}}],["hand",{"0":{"2420":1},"1":{"2421":1,"2422":1,"2423":1,"2424":1,"2425":1,"2426":1,"2427":1,"2428":1,"2429":1,"2430":1,"2431":1,"2432":1,"2433":1,"2434":1,"2435":1,"2436":1},"2":{"114":1,"149":1,"176":1,"249":2,"277":1,"289":1,"317":1,"393":2,"568":1,"569":8,"1364":1,"1423":2,"1499":1,"1590":1,"1802":2,"2271":3,"2272":3,"2273":1,"2302":1,"2303":3,"2304":6,"2305":1,"2422":2,"2423":1,"2425":1,"2427":1,"2436":2,"2526":2,"2539":6,"2552":2,"2558":1,"2844":1,"2869":3,"2925":4,"2926":3}}],["handedness",{"0":{"568":1,"569":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2926":1},"1":{"569":1,"2271":1,"2272":1,"2273":1,"2274":1},"2":{"134":1,"176":1,"236":1,"568":2,"569":3,"1590":1,"1987":2,"2271":1,"2272":2,"2273":4,"2274":1,"2385":1,"2387":1,"2394":1,"2399":1,"2401":1,"2403":1,"2869":2,"2880":3,"2925":1,"2926":12,"2927":1}}],["handed",{"2":{"107":1,"199":1,"328":1,"2302":1,"2576":2,"2927":1}}],["handy",{"2":{"99":1,"630":1,"2071":1,"2561":1,"2620":1,"2899":1}}],["hands",{"0":{"2302":1,"2539":1},"1":{"2303":1,"2304":1,"2305":1,"2306":1},"2":{"94":1,"191":1,"199":2,"211":2,"231":3,"249":1,"289":1,"294":1,"568":1,"569":2,"1533":4,"1590":1,"1802":4,"1987":1,"2273":1,"2302":3,"2304":9,"2305":1,"2306":9,"2421":1,"2526":4,"2539":8,"2552":4,"2572":1,"2925":9,"2926":2,"2927":2}}],["handles",{"2":{"495":1,"714":1,"1291":1,"1357":1,"1589":1,"2015":1,"2077":1,"2563":1}}],["handle",{"0":{"2076":1,"2077":1},"2":{"134":1,"160":1,"190":1,"191":3,"199":2,"203":1,"222":1,"231":1,"236":1,"294":1,"307":2,"403":1,"489":1,"525":2,"632":1,"645":1,"646":1,"1336":1,"1409":1,"1471":1,"1503":1,"1532":1,"1533":1,"1784":1,"1785":1,"1964":1,"1983":1,"1988":2,"1994":3,"2015":1,"2057":1,"2076":1,"2305":1,"2310":2,"2318":1,"2760":1,"2763":11,"2764":18,"2935":1,"2937":1,"2940":1}}],["handled",{"2":{"105":2,"196":1,"561":2,"570":1,"630":1,"1431":1,"1466":1,"1517":1,"1786":1,"1959":1,"1977":1,"1999":1,"2016":1,"2058":1,"2300":1,"2308":1,"2746":1,"2764":1,"2930":1,"2940":1}}],["handlers",{"2":{"191":1,"277":1,"294":1,"2076":1,"2077":1}}],["handler",{"2":{"73":1,"191":1,"1205":1,"1292":1,"1549":1,"1954":1,"2277":4,"2290":1,"2759":1}}],["handling",{"0":{"16":1,"2009":1},"2":{"11":1,"50":2,"98":1,"114":1,"134":2,"149":1,"191":2,"199":2,"236":3,"266":4,"277":1,"285":3,"308":3,"317":2,"328":1,"406":1,"407":1,"564":8,"630":1,"1429":1,"1534":1,"1535":1,"1591":1,"1605":1,"1618":1,"1641":1,"1667":1,"1786":1,"1841":1,"2011":1,"2747":1,"2875":1,"2935":1}}],["hals",{"2":{"2731":1,"2737":1}}],["halve",{"2":{"1201":1,"2273":1}}],["halves",{"2":{"32":1,"45":1,"565":1,"569":1,"570":2,"1192":2,"1590":1,"2085":1,"2263":1,"2264":1,"2267":2,"2276":2,"2277":1,"2278":1,"2877":1}}],["halt",{"2":{"203":1,"2508":2,"2940":1}}],["hal",{"0":{"2737":1},"2":{"174":1,"696":1,"717":2,"718":2,"721":2,"764":1,"1203":2,"1204":2,"1248":1,"1299":1,"1303":1,"1556":1,"1557":1,"2684":1,"2737":1,"2738":1}}],["halberd",{"2":{"143":2}}],["halconf",{"2":{"50":2,"86":1,"717":2,"718":2,"721":2,"764":3,"1195":1,"1203":2,"1204":2,"1248":3,"1299":2,"1303":2,"1556":2,"1557":2,"2042":2}}],["halfkay",{"0":{"2388":1},"2":{"430":1,"573":1,"709":1,"713":1,"2388":3,"2390":1,"2391":1,"2844":1}}],["half",{"0":{"1196":1},"1":{"1197":1,"1198":1},"2":{"45":3,"107":2,"114":2,"149":1,"176":2,"191":2,"211":1,"236":1,"277":1,"565":5,"568":8,"569":2,"570":4,"574":1,"1192":1,"1193":1,"1196":3,"1197":1,"1198":1,"1199":2,"1200":4,"1205":2,"1207":1,"1590":3,"1666":3,"1835":1,"1852":1,"1938":1,"1939":1,"1977":1,"1983":3,"2085":2,"2091":1,"2096":1,"2179":1,"2191":1,"2264":1,"2267":1,"2269":2,"2273":1,"2278":2,"2378":1,"2426":1,"2526":2,"2552":2,"2704":2,"2794":1,"2871":1,"2877":1,"2878":1,"2880":14,"2926":2,"2938":1}}],["having",{"2":{"23":1,"149":1,"234":1,"418":1,"564":2,"605":1,"655":1,"749":1,"1207":1,"1209":1,"1318":1,"1332":1,"1367":1,"1425":1,"1455":1,"1472":1,"1503":1,"1608":1,"1622":1,"1623":1,"1850":1,"1998":1,"2071":2,"2088":1,"2275":1,"2297":1,"2330":1,"2474":1,"2603":1,"2651":1,"2680":1,"2691":1,"2746":1,"2751":1,"2769":1,"2774":1,"2829":1,"2922":1,"2949":1}}],["haven",{"2":{"164":1,"596":1,"1314":1,"1344":1,"2619":1,"2674":1}}],["have",{"0":{"610":1,"1338":1,"1341":1},"1":{"1342":1},"2":{"0":1,"1":1,"4":1,"7":1,"8":1,"9":1,"10":1,"14":2,"16":1,"19":1,"28":1,"36":1,"38":1,"39":1,"43":1,"45":1,"49":3,"50":1,"52":1,"57":1,"67":2,"69":1,"83":1,"86":1,"94":1,"98":1,"102":1,"114":1,"118":1,"122":1,"124":3,"128":1,"134":2,"140":2,"143":1,"157":2,"159":1,"168":1,"169":1,"172":1,"173":1,"175":1,"181":1,"182":5,"183":1,"189":1,"191":1,"195":1,"197":1,"198":1,"201":3,"203":1,"209":1,"211":1,"213":1,"218":1,"219":1,"220":1,"221":1,"224":1,"228":1,"231":1,"238":1,"240":1,"254":1,"255":1,"262":1,"268":1,"276":1,"277":1,"279":2,"283":4,"284":2,"294":1,"304":1,"389":1,"394":1,"399":1,"403":1,"411":1,"414":4,"418":1,"425":1,"458":2,"489":1,"490":1,"492":1,"494":1,"495":2,"499":1,"512":1,"513":1,"516":1,"527":1,"529":1,"537":1,"538":1,"546":1,"547":1,"555":1,"558":2,"561":1,"565":1,"567":1,"574":1,"589":2,"597":1,"599":1,"604":1,"613":2,"614":1,"615":2,"616":1,"617":1,"618":1,"619":1,"620":2,"627":1,"634":1,"637":1,"643":1,"646":4,"656":1,"661":1,"665":5,"673":1,"675":1,"676":1,"677":1,"678":1,"681":2,"683":1,"684":1,"690":2,"697":1,"709":2,"710":1,"711":1,"714":1,"723":1,"753":1,"760":1,"764":1,"798":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1200":1,"1219":1,"1245":1,"1247":1,"1248":1,"1266":1,"1269":1,"1286":1,"1287":1,"1300":1,"1311":1,"1313":1,"1315":1,"1321":1,"1322":1,"1340":1,"1342":2,"1343":1,"1344":1,"1353":1,"1354":2,"1359":1,"1364":1,"1368":1,"1376":1,"1377":1,"1378":1,"1379":1,"1382":1,"1398":2,"1405":1,"1409":1,"1410":1,"1413":3,"1414":1,"1416":1,"1425":1,"1426":1,"1427":1,"1433":1,"1442":1,"1444":1,"1447":1,"1462":1,"1464":3,"1465":1,"1467":1,"1470":2,"1471":2,"1472":3,"1477":1,"1481":1,"1483":1,"1485":1,"1490":1,"1492":1,"1498":2,"1499":3,"1503":2,"1517":1,"1522":3,"1527":1,"1533":1,"1538":1,"1542":2,"1546":2,"1589":3,"1591":1,"1597":1,"1602":1,"1609":2,"1612":2,"1620":1,"1622":2,"1627":2,"1647":1,"1661":1,"1666":1,"1671":1,"1680":1,"1683":1,"1739":1,"1765":1,"1781":1,"1782":1,"1800":1,"1802":3,"1947":1,"1948":1,"1952":1,"1953":1,"1956":1,"1983":1,"1984":1,"1985":1,"2016":1,"2043":1,"2085":1,"2178":1,"2183":1,"2185":1,"2261":1,"2265":1,"2267":1,"2272":1,"2273":1,"2278":3,"2280":2,"2286":1,"2287":1,"2292":1,"2293":1,"2298":1,"2300":1,"2308":1,"2309":1,"2310":4,"2317":3,"2320":1,"2328":1,"2329":1,"2330":3,"2383":1,"2386":1,"2388":1,"2393":1,"2398":1,"2405":1,"2407":1,"2409":1,"2410":2,"2417":4,"2419":1,"2422":1,"2428":2,"2429":3,"2431":2,"2432":1,"2434":1,"2435":2,"2437":1,"2448":1,"2450":1,"2452":1,"2453":4,"2454":1,"2460":2,"2462":1,"2464":2,"2466":1,"2470":1,"2472":1,"2474":2,"2475":1,"2482":1,"2483":1,"2497":1,"2499":1,"2501":1,"2506":1,"2508":1,"2553":1,"2559":1,"2561":2,"2562":1,"2563":1,"2564":2,"2565":2,"2567":1,"2568":1,"2569":3,"2571":1,"2572":2,"2573":1,"2575":1,"2582":1,"2583":1,"2584":1,"2587":2,"2589":1,"2593":1,"2600":2,"2603":1,"2607":3,"2608":1,"2609":1,"2610":1,"2612":2,"2614":2,"2616":3,"2620":1,"2626":2,"2629":1,"2632":3,"2633":2,"2634":2,"2635":1,"2636":1,"2637":2,"2638":1,"2640":2,"2655":2,"2657":1,"2658":2,"2665":1,"2669":1,"2671":2,"2674":1,"2678":1,"2683":1,"2685":1,"2687":1,"2690":1,"2696":1,"2705":1,"2707":1,"2709":1,"2710":1,"2714":2,"2717":1,"2721":1,"2722":1,"2741":1,"2745":1,"2746":5,"2749":2,"2750":1,"2751":2,"2761":1,"2763":3,"2764":1,"2767":1,"2770":1,"2771":2,"2776":2,"2777":1,"2795":1,"2884":1,"2886":1,"2890":1,"2902":1,"2907":1,"2909":1,"2911":1,"2912":1,"2926":1,"2932":1,"2933":1,"2937":5,"2943":1,"2949":1}}],["had60",{"2":{"211":1}}],["hadron",{"2":{"134":1}}],["hades",{"2":{"114":1,"207":2,"211":1}}],["had",{"2":{"7":1,"67":1,"86":1,"102":1,"116":1,"122":1,"124":1,"125":1,"143":1,"153":1,"159":1,"168":1,"172":1,"174":1,"181":1,"182":1,"185":1,"197":1,"233":1,"243":1,"245":1,"307":2,"331":1,"596":1,"1343":1,"1425":1,"1528":1,"2260":1,"2298":1,"2434":1,"2744":1}}],["hashbrowns",{"2":{"675":1}}],["hash",{"2":{"378":1,"411":3,"512":1,"589":1,"669":1,"671":1,"1692":1,"2510":1,"2534":1,"2544":1,"2555":1}}],["hasn",{"2":{"153":1,"214":1,"564":1,"596":1}}],["has",{"0":{"400":1},"2":{"1":1,"3":1,"7":1,"8":1,"14":2,"15":1,"25":1,"28":1,"31":1,"34":1,"49":3,"56":1,"57":1,"60":1,"67":1,"70":3,"82":1,"84":1,"86":3,"87":1,"90":1,"98":1,"99":1,"103":1,"109":1,"113":1,"114":2,"118":2,"123":2,"124":1,"126":1,"132":1,"137":1,"142":1,"146":1,"153":2,"154":1,"156":1,"160":1,"163":1,"164":1,"166":1,"167":1,"169":1,"172":1,"174":1,"175":3,"182":2,"184":1,"194":3,"196":1,"198":2,"199":1,"201":2,"202":1,"206":1,"213":1,"214":1,"215":1,"218":1,"221":1,"228":1,"230":1,"232":1,"233":3,"240":2,"243":2,"249":1,"262":2,"265":1,"271":1,"273":2,"277":1,"293":2,"302":1,"303":1,"305":2,"307":1,"312":4,"314":2,"315":1,"316":1,"317":1,"323":1,"331":3,"338":1,"374":1,"377":3,"378":1,"379":1,"403":1,"411":1,"419":1,"434":1,"459":1,"470":1,"486":1,"524":1,"529":1,"538":1,"554":1,"556":1,"561":2,"564":1,"569":1,"575":2,"581":1,"582":1,"583":1,"584":1,"588":1,"596":2,"599":1,"619":1,"624":2,"626":1,"634":1,"637":1,"641":1,"644":1,"646":1,"647":5,"655":1,"657":1,"659":1,"665":1,"690":2,"691":1,"696":1,"710":2,"711":1,"713":1,"729":1,"753":1,"762":1,"796":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1200":3,"1208":1,"1217":1,"1287":1,"1303":1,"1311":1,"1313":1,"1317":1,"1343":1,"1348":1,"1349":1,"1356":1,"1361":1,"1376":1,"1392":2,"1393":1,"1395":2,"1396":1,"1405":1,"1413":2,"1415":1,"1417":1,"1427":1,"1440":1,"1444":1,"1446":1,"1447":1,"1470":1,"1481":1,"1503":1,"1538":1,"1539":1,"1609":1,"1612":1,"1630":1,"1638":1,"1666":1,"1670":1,"1682":1,"1685":1,"1741":1,"1750":1,"1769":1,"1777":1,"1785":1,"1786":2,"1790":1,"1800":1,"1818":1,"1847":6,"1852":5,"1937":1,"1945":1,"1959":1,"1962":1,"1988":2,"1990":4,"2008":1,"2014":1,"2054":1,"2061":1,"2076":1,"2078":1,"2083":6,"2091":7,"2096":1,"2178":1,"2179":1,"2191":2,"2218":1,"2249":2,"2250":1,"2261":1,"2264":1,"2269":1,"2275":3,"2281":1,"2284":1,"2291":2,"2292":1,"2300":4,"2305":1,"2310":1,"2317":3,"2331":2,"2374":1,"2404":1,"2417":1,"2419":2,"2427":1,"2447":1,"2450":2,"2455":1,"2466":4,"2472":1,"2479":1,"2502":1,"2552":1,"2557":1,"2558":1,"2566":2,"2568":2,"2569":2,"2572":1,"2573":1,"2604":1,"2616":1,"2617":1,"2618":1,"2639":2,"2653":1,"2667":1,"2678":1,"2683":1,"2684":1,"2686":2,"2691":2,"2700":1,"2705":1,"2709":3,"2714":1,"2731":1,"2746":5,"2751":1,"2753":1,"2763":3,"2764":3,"2777":1,"2785":1,"2787":2,"2791":1,"2794":1,"2795":2,"2796":1,"2813":1,"2872":1,"2901":1,"2913":1,"2918":1,"2925":1,"2929":1,"2934":1,"2937":1,"2939":1,"2941":1,"2943":1,"2944":1}}],["c♯",{"2":{"1925":6,"2527":6}}],["cjoystick",{"2":{"1742":1,"1743":1}}],["c\\tuint16",{"2":{"1663":1}}],["cgram",{"0":{"1734":1},"1":{"1735":1},"2":{"1702":1,"1734":1,"1735":1}}],["cg",{"2":{"1364":1,"1485":4,"1486":4,"2526":7,"2552":7,"2923":1}}],["cédille",{"0":{"1355":1}}],["c8",{"0":{"1213":1}}],["c6",{"2":{"715":2,"1474":1,"1553":1,"2384":1,"2391":1,"2418":1,"2691":1,"2720":1}}],["c5²",{"2":{"690":1}}],["c5¹",{"2":{"690":1}}],["c5",{"2":{"688":1,"690":4,"715":2,"763":1,"1474":1,"1553":1,"1925":1,"2221":1,"2527":1}}],["c2²",{"2":{"690":2}}],["c2¹",{"2":{"690":2}}],["c2",{"2":{"688":1,"690":5,"1925":1,"2527":1,"2719":1,"2872":1}}],["c2json",{"0":{"439":1},"2":{"236":1,"439":3,"465":1}}],["c15",{"2":{"2669":1}}],["c14",{"2":{"2669":1}}],["c12832a1z",{"2":{"2283":1}}],["c13",{"2":{"1392":1,"1481":1,"2668":1,"2669":1,"2691":2}}],["c1²",{"2":{"690":2}}],["c1¹",{"2":{"690":2}}],["c1",{"2":{"688":1,"690":5,"763":1,"893":4,"1925":1,"2527":1,"2719":1,"2872":1}}],["c1ed",{"2":{"434":2}}],["c0²",{"2":{"690":2}}],["c0¹",{"2":{"690":2}}],["c0",{"2":{"688":1,"690":5,"694":2,"763":1,"2872":1}}],["ckeycode",{"2":{"2948":1}}],["ckeyrecord",{"2":{"632":1}}],["ck",{"2":{"1493":6,"1495":6,"2512":6}}],["ckled2001",{"2":{"149":1,"176":1,"221":4,"236":2,"1214":1}}],["c7",{"2":{"561":2,"570":1,"2278":1,"2720":1}}],["cdt",{"0":{"2658":1},"2":{"2657":1,"2658":2}}],["cdigitizer",{"2":{"1648":2}}],["cdeferred",{"2":{"657":1,"2764":1}}],["cd",{"0":{"432":1},"2":{"411":1,"422":5,"429":5,"432":1,"2407":1,"2501":1,"2600":1,"2762":2}}],["cdc",{"2":{"50":1,"2499":1}}],["cfloat",{"2":{"1485":1}}],["cfgr",{"2":{"696":1}}],["cfgr1",{"2":{"696":1}}],["cfg",{"2":{"397":2,"504":1,"515":1,"2508":2}}],["cformat",{"2":{"1":1,"51":1,"65":1,"199":1}}],["c3²",{"2":{"690":2}}],["c3¹",{"2":{"690":2}}],["c3",{"2":{"317":2,"688":1,"690":5,"1925":1,"1926":1,"2527":1,"2719":1}}],["c39",{"2":{"143":2}}],["cx",{"2":{"1846":1,"2082":1}}],["cxt",{"2":{"291":2,"294":2}}],["cx60",{"2":{"211":1}}],["csprintf",{"2":{"2889":1}}],["csr",{"2":{"2374":1}}],["cs5",{"2":{"1925":1,"2527":1}}],["cs4",{"2":{"1925":1,"2527":1}}],["csend",{"2":{"1448":4,"2226":2}}],["csg",{"2":{"1364":1}}],["csag",{"2":{"1364":1}}],["csa",{"2":{"1364":1,"1776":1,"2887":1}}],["cs3",{"2":{"729":2,"863":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1925":1,"2527":1}}],["cs2",{"2":{"729":2,"863":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1925":1,"2527":1}}],["cs1",{"2":{"729":2,"863":3,"928":3,"962":3,"996":3,"1030":3,"1064":3,"1098":3,"1132":3,"1166":3,"1925":1,"2527":1}}],["csx",{"2":{"727":1,"857":1,"860":4,"861":1,"921":1,"925":1,"926":1,"956":1,"959":1,"960":1,"990":1,"993":1,"994":1,"1024":1,"1027":1,"1028":1,"1058":1,"1061":1,"1062":1,"1092":1,"1095":1,"1126":1,"1129":1,"1160":1,"1163":1}}],["cstatic",{"2":{"647":1,"1447":1,"1946":1,"2285":1,"2756":1,"2763":1,"2764":2,"2776":1}}],["cstc40",{"2":{"311":4,"317":1}}],["css",{"0":{"350":1}}],["cs",{"0":{"733":1,"739":1},"1":{"734":1,"740":1},"2":{"266":1,"285":1,"726":2,"734":1,"740":1,"857":3,"860":15,"921":1,"925":2,"956":1,"959":2,"990":1,"993":2,"1024":1,"1027":2,"1058":1,"1061":2,"1092":2,"1095":6,"1126":2,"1129":6,"1160":2,"1163":6,"1364":2,"1776":2,"1925":1,"1951":2,"1966":2,"1967":2,"1974":2,"1979":2,"1981":2,"1982":2,"1983":16,"1985":3,"2375":1,"2527":1,"2763":4}}],["csy",{"2":{"236":1,"1095":3,"1096":1,"1129":3,"1130":1,"1163":3,"1164":1}}],["cccb1608",{"2":{"2410":1}}],["cc80",{"2":{"1924":3}}],["ccopyright",{"2":{"2464":3}}],["ccombo",{"2":{"1620":1}}],["cconst",{"2":{"272":2,"729":1,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1492":1,"1602":1,"1603":1,"1604":1,"1702":1,"1774":2,"1776":1,"1851":1,"2090":1,"2191":1,"2303":1,"2330":2,"2562":1,"2585":1,"2926":1,"2938":1,"2948":1}}],["cchar",{"2":{"1450":2,"2926":1}}],["ccw",{"2":{"307":4,"1667":8}}],["cc",{"0":{"1923":1},"2":{"222":3,"339":1,"1382":2,"1923":1,"1924":7}}],["ccase",{"2":{"1992":1}}],["ccar",{"2":{"176":1}}],["ccache",{"2":{"133":1,"134":2}}],["cbbrowne",{"2":{"1376":3}}],["cb1",{"2":{"1219":5}}],["cb1800",{"2":{"211":1}}],["cb",{"0":{"1213":1},"2":{"656":2,"657":1,"2502":1}}],["cb87v2",{"2":{"211":1}}],["cb87rgb",{"2":{"211":1}}],["cb65",{"2":{"211":1}}],["cbool",{"2":{"90":1,"105":1,"125":2,"185":2,"194":2,"195":1,"307":1,"324":1,"325":1,"593":1,"631":1,"652":1,"653":1,"1329":1,"1366":1,"1419":2,"1462":1,"1471":1,"1510":2,"1517":1,"1533":1,"1535":1,"1600":1,"1613":1,"1641":4,"1668":2,"1794":1,"1838":1,"1840":1,"1855":1,"1958":1,"1984":1,"2015":1,"2073":1,"2074":1,"2075":1,"2076":1,"2094":2,"2095":3,"2096":2,"2190":1,"2225":1,"2277":1,"2300":3,"2381":1,"2578":1,"2579":1,"2580":1,"2756":1,"2763":1,"2764":14,"2768":1,"2919":1,"2920":1,"2923":1,"2927":1,"2928":1,"2930":1}}],["cypress",{"2":{"2802":1}}],["cypher",{"2":{"211":2}}],["cycling",{"2":{"1849":1,"2085":2,"2183":1,"2187":1,"2323":1,"2327":2}}],["cycled",{"2":{"1852":1,"2091":1,"2331":1,"2871":1,"2878":1}}],["cycles",{"0":{"1387":1},"2":{"126":1,"145":1,"213":1,"224":1,"238":1,"279":1,"307":1,"752":1,"1387":1,"1410":7,"1489":2,"1490":1,"1495":3,"1702":1,"1953":1,"1980":2,"2180":1,"2512":3}}],["cycle",{"0":{"412":1,"1431":1},"2":{"63":1,"103":2,"105":1,"107":1,"116":1,"131":1,"149":1,"156":1,"163":1,"167":1,"172":1,"182":1,"184":1,"187":1,"190":1,"198":1,"201":1,"206":1,"211":1,"213":1,"224":1,"230":1,"233":1,"251":1,"262":1,"265":1,"268":1,"273":1,"275":1,"284":1,"303":1,"307":1,"327":1,"328":1,"332":1,"403":2,"405":1,"406":1,"407":1,"412":4,"561":1,"749":1,"765":2,"1286":1,"1376":1,"1431":12,"1462":1,"1484":1,"1541":1,"1543":1,"1544":1,"1546":1,"1563":1,"1675":1,"1848":4,"1849":9,"1855":1,"2084":6,"2085":21,"2091":1,"2094":1,"2181":2,"2275":1,"2327":1,"2331":1,"2332":2,"2377":2,"2502":1,"2515":1,"2516":2,"2525":4,"2532":2,"2533":6,"2540":2,"2857":1,"2871":1,"2878":1,"2894":7,"2903":2}}],["cyan",{"2":{"492":1,"494":1,"641":1,"1417":4,"2089":2,"2189":2,"2205":2}}],["cyberstar",{"2":{"211":1}}],["cncl",{"2":{"2510":1,"2548":1}}],["cname",{"2":{"341":1}}],["cn",{"2":{"199":1}}],["cmsis",{"2":{"2683":1}}],["cmt",{"2":{"2575":1}}],["cmousekey",{"2":{"1932":1}}],["cmu",{"2":{"1928":1}}],["cmb",{"2":{"1618":4}}],["cmd=",{"2":{"2417":1}}],["cmd=yes",{"2":{"2417":2}}],["cmd",{"2":{"712":1,"1673":1,"1804":1,"1954":2,"2530":1,"2575":1}}],["cmatrix",{"2":{"625":1}}],["cmp",{"2":{"199":1,"1428":1,"2190":3}}],["cm",{"2":{"191":1,"1606":3,"1627":1,"1630":1}}],["cwd",{"2":{"2683":2}}],["cw",{"2":{"188":1,"191":1,"307":4,"1594":1,"1667":8,"2517":1}}],["cz",{"2":{"176":4}}],["czech",{"2":{"48":1,"266":1,"2887":9}}],["c4²",{"2":{"690":1}}],["c4¹",{"2":{"690":1}}],["c4",{"0":{"1396":1},"2":{"176":1,"189":1,"191":1,"688":1,"690":4,"715":2,"763":1,"1389":1,"1391":5,"1396":1,"1474":1,"1553":1,"1925":1,"2527":1,"2719":1}}],["c++",{"0":{"2943":1},"2":{"176":1,"384":1,"393":4,"513":1,"611":1,"2057":1,"2657":1,"2658":2,"2663":1,"2680":1,"2943":3,"2944":1}}],["ctypedef",{"2":{"1417":1,"2277":1,"2316":1,"2317":1,"2778":1,"2779":1,"2780":1,"2781":1,"2782":1,"2783":1,"2784":1,"2787":1,"2789":1}}],["cts",{"2":{"1266":1,"1268":1,"1269":4}}],["ctl",{"2":{"564":1,"2313":1,"2317":3,"2526":3,"2530":1,"2552":3,"2575":1,"2925":2}}],["ct",{"2":{"324":1,"325":1,"2313":3,"2314":1,"2315":3,"2316":2}}],["ctpc",{"0":{"304":1},"2":{"160":2,"191":1,"199":2,"304":1,"308":1}}],["ctrl+g",{"2":{"2346":1}}],["ctrl+x",{"2":{"2344":1}}],["ctrl+y",{"2":{"1767":1}}],["ctrl+z",{"2":{"1602":1}}],["ctrl+delete",{"2":{"1367":1}}],["ctrl+shift+i",{"2":{"2746":1}}],["ctrl+shift+z",{"2":{"1767":1}}],["ctrl+shift+a",{"2":{"1501":2}}],["ctrl+shift+backspace",{"2":{"1367":1}}],["ctrl+shift+enter",{"2":{"712":1}}],["ctrl+scroll",{"2":{"320":1}}],["ctrl+c",{"2":{"196":1,"1798":1,"2226":1,"2387":1}}],["ctrl+alt+del",{"2":{"1367":1}}],["ctrl+alt+shift+backspace",{"2":{"1367":1}}],["ctrl+a",{"2":{"196":1,"1501":2,"1798":1,"2226":1}}],["ctrl",{"2":{"131":2,"134":2,"149":1,"199":1,"231":2,"279":1,"353":1,"683":1,"1349":1,"1364":8,"1444":3,"1448":1,"1472":1,"1529":1,"1593":1,"1595":5,"1617":1,"1676":1,"1767":2,"1776":8,"1777":1,"1781":3,"1787":1,"1788":3,"2065":3,"2068":5,"2069":8,"2226":1,"2257":2,"2381":1,"2510":2,"2526":1,"2538":2,"2546":2,"2552":1,"2579":3,"2580":2,"2652":4,"2678":1,"2682":2,"2831":1,"2889":1,"2925":2,"2928":3,"2930":2}}],["cease",{"2":{"2902":1}}],["ce10f7642b0459e409839b23cc91498945119b4d",{"2":{"2410":1}}],["ceil",{"2":{"1968":1}}],["cells",{"2":{"1553":1}}],["celebrate",{"2":{"613":1}}],["centroid",{"2":{"2871":1,"2878":1}}],["centrally",{"2":{"1343":1}}],["centos",{"2":{"2593":1,"2626":1}}],["centered",{"2":{"1742":1,"1949":1,"2477":1}}],["center",{"2":{"191":1,"462":1,"1741":2,"1846":4,"1849":1,"2082":4,"2085":4,"2185":1,"2280":2,"2871":2,"2878":2}}],["cenum",{"2":{"307":1,"591":1,"593":2,"616":1,"629":1,"1446":2,"1605":2,"1617":1,"1618":1,"1849":1,"1957":1,"1962":1,"1993":1,"1994":1,"2071":1,"2079":1,"2085":1,"2329":1,"2912":1}}],["certainly",{"2":{"276":1,"1964":1,"2483":1,"2626":1,"2744":1,"2747":1}}],["certain",{"0":{"2011":1,"2072":1},"1":{"2073":1,"2074":1,"2075":1},"2":{"149":1,"546":1,"571":1,"574":1,"575":1,"640":1,"651":1,"685":1,"716":1,"1248":1,"1320":1,"1383":1,"1455":1,"1471":2,"1541":1,"1846":2,"1926":1,"1946":1,"2011":1,"2074":1,"2082":2,"2285":1,"2295":1,"2298":1,"2300":1,"2381":1,"2765":1,"2780":1,"2871":1,"2878":1,"2886":2,"2924":4,"2947":1}}],["ce",{"2":{"134":1,"199":1,"266":1,"271":1,"311":1,"322":1,"1389":2,"1391":4,"1399":4,"2070":1,"2406":1}}],["cest73",{"2":{"114":1,"211":1}}],["cpainter",{"2":{"2763":9,"2764":3}}],["cpnl",{"2":{"2510":1,"2549":1}}],["cplay",{"2":{"1485":2}}],["cp",{"2":{"511":1}}],["cpp",{"2":{"439":1,"1357":1,"2944":1}}],["cpi",{"2":{"236":1,"249":1,"1966":2,"1967":2,"1970":2,"1974":1,"1978":2,"1979":2,"1981":2,"1982":2,"1983":8,"1984":3,"1988":4,"1989":2,"1996":2,"1997":4}}],["cpus",{"2":{"2417":2}}],["cpu",{"2":{"114":1,"573":2,"719":1,"1193":1,"1196":1,"1199":1,"1290":1,"1292":1,"1293":1,"1294":1,"2054":1,"2417":1,"2733":1,"2936":1}}],["cpuclock",{"2":{"114":1}}],["cptc",{"2":{"92":1}}],["crux",{"2":{"2910":1}}],["cryptographically",{"2":{"2775":1}}],["cryptographic",{"2":{"2711":2}}],["crystal",{"2":{"2671":1}}],["crsl",{"2":{"2510":1,"2548":1}}],["crsel",{"2":{"2510":2,"2548":2}}],["crgblight",{"2":{"2191":2,"2198":1,"2205":1}}],["crgb",{"2":{"2088":1}}],["crippled",{"2":{"2566":1,"2567":9,"2569":1}}],["cribbit",{"2":{"2425":1,"2436":1}}],["criteria",{"0":{"2740":1},"2":{"403":1,"433":1,"2008":1,"2317":1,"2707":1}}],["critical",{"2":{"402":1,"407":1,"412":1,"492":1,"538":1,"712":1,"1558":1,"1956":1,"2728":1,"2746":1,"2747":2}}],["crin",{"2":{"211":1}}],["croatian",{"2":{"2887":3}}],["crossdiy",{"2":{"2567":1}}],["crossing",{"2":{"720":1}}],["cross",{"2":{"393":1,"1849":3,"2085":3,"2894":1}}],["cropped",{"2":{"114":1}}],["credential",{"2":{"2676":1}}],["credentials",{"2":{"312":1,"2676":1}}],["credits",{"0":{"1540":1,"1963":1}}],["credit",{"2":{"1440":1,"1540":1}}],["cream|",{"2":{"681":1}}],["cream||order",{"2":{"681":1}}],["cream",{"2":{"681":1}}],["creative",{"2":{"1427":1}}],["creating",{"0":{"1769":1,"2504":1,"2630":1},"1":{"1770":1,"1771":1,"1772":1,"1773":1},"2":{"297":1,"308":1,"425":1,"500":1,"618":1,"629":1,"1203":2,"1204":2,"1332":1,"1376":1,"1442":1,"1769":1,"1990":1,"2057":1,"2179":1,"2302":1,"2330":1,"2331":1,"2447":1,"2565":1,"2572":1,"2587":1,"2607":1,"2629":1,"2638":1,"2726":1,"2743":1,"2763":11,"2764":1,"2922":1}}],["creators",{"2":{"2569":1}}],["creator",{"2":{"114":1}}],["creates",{"2":{"429":1,"438":1,"439":1,"444":1,"445":1,"450":1,"489":1,"1541":1,"2569":1,"2640":1,"2658":1}}],["created",{"2":{"114":1,"251":1,"294":1,"377":1,"1343":1,"1367":1,"1417":2,"1424":1,"1661":1,"2013":1,"2308":1,"2432":1,"2433":1,"2464":1,"2567":1,"2584":1,"2608":1,"2610":1,"2634":3,"2643":1,"2683":2,"2714":1,"2746":1,"2764":3,"2944":1}}],["create",{"0":{"141":1,"2584":1,"2595":1,"2597":1},"2":{"76":1,"132":1,"134":2,"149":1,"172":1,"173":1,"175":1,"176":1,"249":1,"293":1,"305":1,"312":1,"314":1,"375":1,"403":1,"409":1,"412":1,"429":1,"500":1,"578":1,"588":1,"596":1,"597":1,"613":1,"628":1,"666":1,"673":1,"681":2,"683":1,"762":1,"1311":1,"1350":1,"1356":1,"1417":1,"1463":1,"1471":1,"1472":1,"1485":1,"1486":1,"1500":1,"1502":1,"1527":1,"1620":1,"1627":1,"1661":1,"1767":1,"1773":1,"1781":1,"1795":1,"1850":2,"2013":1,"2088":2,"2298":2,"2317":1,"2318":1,"2329":1,"2330":1,"2410":3,"2431":1,"2473":1,"2506":1,"2556":1,"2572":1,"2580":1,"2584":2,"2595":1,"2597":2,"2598":1,"2607":2,"2630":1,"2635":1,"2636":1,"2640":1,"2714":1,"2753":1,"2756":1,"2763":2,"2764":1,"2767":1,"2796":1,"2851":1,"2906":1,"2908":1,"2944":2,"2949":1}}],["cradio",{"2":{"191":1}}],["craftwalk",{"2":{"134":1,"266":1}}],["crc8",{"2":{"114":1}}],["crc",{"2":{"107":1,"114":3,"176":1,"191":1}}],["crkbd",{"2":{"86":3,"94":1,"176":1,"211":1,"2273":3,"2567":1,"2602":1}}],["cvoid",{"2":{"34":1,"90":1,"105":1,"125":1,"185":1,"196":1,"624":1,"635":1,"641":1,"649":1,"745":1,"768":1,"799":1,"1322":1,"1417":2,"1487":1,"1551":1,"1591":1,"1601":1,"1701":1,"1798":1,"1855":1,"1948":1,"1997":1,"2046":1,"2053":1,"2057":1,"2059":1,"2097":1,"2191":1,"2277":1,"2314":1,"2652":4,"2685":1,"2686":1,"2687":1,"2757":1,"2764":10,"2949":1}}],["c",{"0":{"272":1,"304":1,"459":1,"469":1,"512":1,"1211":1,"1392":1,"1394":1,"1399":1,"1445":1,"1479":1,"1633":1,"1634":1,"1713":1,"1929":1,"2456":1,"2560":1,"2585":1,"2688":1,"2809":1},"1":{"1400":1,"1401":1,"1446":1,"1447":1,"1448":1,"1449":1,"1450":1,"1451":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1461":1,"1462":1,"1714":1,"2561":1,"2562":1,"2563":1,"2564":1,"2689":1,"2690":1,"2691":1},"2":{"28":1,"31":2,"34":3,"49":3,"50":6,"63":1,"64":1,"65":1,"74":1,"75":2,"77":1,"86":2,"92":1,"98":1,"105":2,"114":4,"134":5,"149":2,"153":1,"160":2,"169":1,"172":2,"176":3,"184":1,"189":3,"191":1,"196":1,"199":3,"211":4,"220":1,"231":2,"234":9,"236":2,"247":1,"249":1,"266":6,"272":1,"277":1,"285":1,"303":1,"304":2,"307":3,"308":2,"311":1,"317":2,"328":1,"338":1,"354":2,"367":1,"375":1,"378":1,"380":1,"384":1,"393":4,"429":2,"430":2,"438":1,"439":4,"455":2,"459":5,"462":1,"469":9,"500":1,"512":3,"513":1,"529":1,"548":1,"560":1,"568":1,"572":6,"588":2,"589":4,"591":1,"592":1,"593":2,"611":1,"614":2,"618":1,"623":3,"624":1,"625":2,"629":1,"647":3,"658":1,"659":1,"660":1,"666":1,"669":1,"686":1,"690":1,"717":3,"718":2,"720":1,"721":4,"722":1,"723":1,"725":1,"727":1,"729":1,"762":2,"764":3,"801":2,"805":1,"827":2,"831":1,"856":2,"859":1,"860":1,"861":1,"863":1,"888":2,"891":1,"893":1,"920":2,"924":1,"925":1,"926":1,"928":1,"955":2,"958":1,"959":1,"960":1,"962":1,"989":2,"992":1,"993":1,"994":1,"996":1,"1023":2,"1026":1,"1027":1,"1028":1,"1030":1,"1057":2,"1060":1,"1061":1,"1062":1,"1064":1,"1091":2,"1095":1,"1096":1,"1098":1,"1125":2,"1129":1,"1130":1,"1132":1,"1159":2,"1162":1,"1163":1,"1164":1,"1166":1,"1195":2,"1198":2,"1200":2,"1201":2,"1203":3,"1204":3,"1205":1,"1207":1,"1208":1,"1209":1,"1215":2,"1219":1,"1248":3,"1269":2,"1287":1,"1288":1,"1297":1,"1299":2,"1300":1,"1301":1,"1303":2,"1311":1,"1327":1,"1329":1,"1331":1,"1347":1,"1348":1,"1354":1,"1357":1,"1363":2,"1364":1,"1367":1,"1379":1,"1383":1,"1388":2,"1389":7,"1390":2,"1391":10,"1392":3,"1395":1,"1396":1,"1399":1,"1405":2,"1406":3,"1407":4,"1414":2,"1417":2,"1420":3,"1431":1,"1433":1,"1434":1,"1438":2,"1439":1,"1446":2,"1449":1,"1452":1,"1453":1,"1462":1,"1463":2,"1464":6,"1470":6,"1471":1,"1472":5,"1479":2,"1484":2,"1485":13,"1486":16,"1487":1,"1488":1,"1489":1,"1490":2,"1491":4,"1492":2,"1493":1,"1501":1,"1502":1,"1503":1,"1518":2,"1527":1,"1532":2,"1535":1,"1545":1,"1546":1,"1556":3,"1557":2,"1589":1,"1590":2,"1595":1,"1597":1,"1598":1,"1602":3,"1604":1,"1606":1,"1612":1,"1620":1,"1622":4,"1625":1,"1633":2,"1634":3,"1639":2,"1640":3,"1641":4,"1661":1,"1662":1,"1665":6,"1666":2,"1667":4,"1668":2,"1669":1,"1684":1,"1685":1,"1687":2,"1689":1,"1701":1,"1714":1,"1740":1,"1741":1,"1742":1,"1768":1,"1777":1,"1779":1,"1781":1,"1788":2,"1792":1,"1794":1,"1795":1,"1798":1,"1800":1,"1801":8,"1802":1,"1803":1,"1804":2,"1839":1,"1850":1,"1851":2,"1852":1,"1855":1,"1921":1,"1922":1,"1924":1,"1925":19,"1926":1,"1929":3,"1937":10,"1938":1,"1945":2,"1946":1,"1947":1,"1948":1,"1949":2,"1953":1,"1954":1,"1958":1,"1962":2,"1968":1,"1983":3,"1984":1,"1996":1,"1998":1,"2000":1,"2001":2,"2006":2,"2011":2,"2012":2,"2013":2,"2040":1,"2041":1,"2042":2,"2043":1,"2044":1,"2046":1,"2047":1,"2048":6,"2049":1,"2050":2,"2051":3,"2052":1,"2057":2,"2068":1,"2069":3,"2070":1,"2072":1,"2086":5,"2087":1,"2088":1,"2090":2,"2091":1,"2094":1,"2187":1,"2189":3,"2206":1,"2207":2,"2211":1,"2222":1,"2225":1,"2250":1,"2271":2,"2272":2,"2273":3,"2274":2,"2275":6,"2276":10,"2277":3,"2278":10,"2284":2,"2286":1,"2287":1,"2288":1,"2290":1,"2296":1,"2301":1,"2305":1,"2309":1,"2312":2,"2313":1,"2315":1,"2317":3,"2318":2,"2319":4,"2322":1,"2329":3,"2330":1,"2331":1,"2332":3,"2381":1,"2384":1,"2385":1,"2386":1,"2389":1,"2391":1,"2394":1,"2410":1,"2411":1,"2414":1,"2415":2,"2417":15,"2418":1,"2421":1,"2423":1,"2424":3,"2443":1,"2451":1,"2455":2,"2456":1,"2457":2,"2472":2,"2502":1,"2508":18,"2510":3,"2527":19,"2529":1,"2540":3,"2542":3,"2556":1,"2560":1,"2561":1,"2563":3,"2564":1,"2568":1,"2579":7,"2580":4,"2584":2,"2585":2,"2597":3,"2600":1,"2602":2,"2650":1,"2657":1,"2658":2,"2663":1,"2664":1,"2678":1,"2680":1,"2683":5,"2688":1,"2689":1,"2690":2,"2691":7,"2700":1,"2706":1,"2709":3,"2714":1,"2744":1,"2746":6,"2751":2,"2759":1,"2760":11,"2762":4,"2763":19,"2764":12,"2771":1,"2788":1,"2792":4,"2794":2,"2809":1,"2814":1,"2853":1,"2885":2,"2886":1,"2889":1,"2890":3,"2891":1,"2892":3,"2893":3,"2894":2,"2895":2,"2910":3,"2919":2,"2920":2,"2921":2,"2922":1,"2923":1,"2925":9,"2926":2,"2927":2,"2928":4,"2930":3,"2933":1,"2934":4,"2935":1,"2937":2,"2943":4,"2944":1,"2948":1}}],["cidoo",{"2":{"2567":1}}],["cif",{"2":{"1801":1}}],["cint16",{"2":{"2764":2}}],["cint",{"2":{"354":1}}],["cipulot",{"2":{"249":1,"285":1}}],["city42",{"2":{"222":1}}],["ciruitry",{"2":{"1681":1}}],["circ",{"2":{"2534":1,"2555":1}}],["circle",{"2":{"2180":1,"2764":4}}],["circles",{"2":{"153":1,"2764":2}}],["circumvent",{"2":{"2734":1}}],["circumflex",{"2":{"2534":1,"2555":1}}],["circumstances",{"2":{"221":1,"754":2,"757":1,"1320":1,"2011":1,"2275":1,"2278":1,"2410":1,"2683":1,"2704":1,"2763":1,"2764":1}}],["circular",{"0":{"1301":1},"2":{"93":1,"175":2,"176":2,"236":1,"696":2,"1299":2,"1301":3,"1976":1,"2760":1}}],["circuitry",{"0":{"2038":1},"2":{"2037":1}}],["circuits",{"2":{"1545":1}}],["circuit",{"0":{"1297":1,"1378":1},"2":{"49":4,"1378":2,"1382":1,"1409":1,"1545":1,"1681":1,"2393":1,"2395":1,"2398":1,"2434":1,"2466":4,"2685":1,"2856":1,"2857":1}}],["cirque",{"0":{"1973":1},"1":{"1974":1,"1975":1,"1976":1,"1977":1},"2":{"118":4,"175":2,"176":7,"190":1,"191":4,"249":3,"1973":4,"1974":20,"1975":5,"1976":3,"1977":3,"1994":1,"2014":1}}],["cie1931",{"2":{"84":1,"93":1}}],["cie",{"2":{"49":1,"2764":1}}],["ci",{"2":{"17":1,"51":1,"76":1,"134":1,"149":1,"164":1,"199":1,"211":2,"249":2,"294":2,"506":1,"615":1,"699":2,"2179":1,"2855":1}}],["caddy",{"2":{"2435":1}}],["cadence",{"2":{"399":1}}],["cadet",{"0":{"2255":1,"2538":1,"2841":1},"1":{"2256":1,"2257":1,"2258":1,"2259":1,"2260":1},"2":{"49":1,"188":1,"191":2,"249":1,"1594":1,"2255":1,"2257":7,"2258":1,"2259":3,"2260":3,"2538":8,"2841":1,"2889":1,"2940":1}}],["cag",{"2":{"1364":1}}],["ca",{"2":{"1364":1,"1622":1,"1776":1}}],["ca4",{"2":{"893":1}}],["ca3",{"2":{"893":1,"1219":2}}],["ca2",{"2":{"893":1,"1219":2}}],["ca1",{"2":{"893":1,"1219":3}}],["caveats",{"0":{"590":1,"1423":1,"1675":1,"1765":1,"1920":1,"2258":1,"2325":1,"2554":1,"2576":1},"1":{"591":1,"592":1,"593":1},"2":{"2665":1,"2746":1,"2769":1}}],["came",{"2":{"496":1,"563":1,"2869":1}}],["camps",{"2":{"173":1}}],["caution",{"2":{"600":1}}],["caught",{"2":{"418":1}}],["causing",{"2":{"156":1,"1485":1,"1986":1,"2498":1,"2666":1,"2759":1}}],["causes",{"2":{"615":1,"720":1,"1193":1,"1287":1,"1471":1,"1684":1,"2640":1}}],["caused",{"2":{"114":1,"134":1,"199":1,"222":1,"399":1,"1786":1}}],["cause",{"2":{"73":1,"88":2,"104":2,"127":2,"170":1,"201":1,"414":2,"615":1,"719":2,"1290":1,"1387":1,"1417":2,"1423":1,"1427":1,"1497":1,"1551":1,"1953":1,"1961":3,"2006":1,"2008":1,"2048":2,"2091":1,"2301":1,"2384":1,"2391":1,"2431":1,"2463":1,"2576":2,"2667":1,"2668":1,"2889":1,"2909":1}}],["cached",{"2":{"370":1}}],["cachyos",{"2":{"317":1,"2626":1}}],["cathodes",{"2":{"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1}}],["cat24c512",{"2":{"749":2}}],["catb",{"2":{"610":1}}],["catch",{"2":{"525":1,"656":1,"1538":1}}],["catching",{"2":{"525":1}}],["cat",{"2":{"294":1}}],["caticorn",{"2":{"222":1}}],["category",{"2":{"1389":1}}],["categories",{"2":{"414":1}}],["categorize",{"2":{"110":1}}],["catered",{"2":{"384":1}}],["cater",{"2":{"182":1,"236":1,"308":1,"1192":1}}],["caterina",{"0":{"2386":1,"2499":1},"1":{"2387":1},"2":{"70":1,"568":1,"573":1,"709":1,"713":11,"2273":1,"2386":3,"2387":1,"2502":5,"2503":1}}],["cain",{"2":{"211":1}}],["caffeinated",{"2":{"211":1}}],["cables",{"2":{"1200":1,"2265":6}}],["cable",{"2":{"211":1,"710":1,"1194":1,"1197":1,"1200":1,"1981":1,"2261":1,"2264":3,"2265":1,"2266":1,"2267":1,"2274":3,"2278":1,"2404":2,"2426":1,"2430":1,"2431":1}}],["casual",{"2":{"529":1}}],["cassini",{"2":{"211":1}}],["cassette42",{"2":{"143":2}}],["cases",{"2":{"25":1,"75":1,"176":1,"182":3,"194":1,"214":1,"234":1,"236":1,"246":1,"439":1,"511":1,"516":1,"542":1,"563":1,"643":1,"668":2,"669":1,"672":1,"698":1,"761":1,"1246":1,"1267":1,"1284":1,"1532":1,"1609":1,"1622":1,"1784":1,"1785":1,"1984":1,"2054":1,"2070":1,"2297":1,"2309":3,"2327":1,"2458":1,"2566":1,"2567":1,"2568":1,"2751":1,"2901":1,"2920":1}}],["case",{"0":{"2330":1},"2":{"11":1,"105":2,"160":1,"194":3,"195":2,"202":1,"222":1,"231":4,"273":1,"307":2,"324":1,"325":1,"397":1,"537":1,"593":6,"597":1,"631":2,"632":1,"657":2,"710":2,"768":1,"793":1,"1248":1,"1336":1,"1354":1,"1364":1,"1366":1,"1367":2,"1379":1,"1410":1,"1417":8,"1430":4,"1431":1,"1446":5,"1447":4,"1462":1,"1471":2,"1472":1,"1491":2,"1501":1,"1503":5,"1510":6,"1517":3,"1522":2,"1527":1,"1533":15,"1537":1,"1545":1,"1589":1,"1600":6,"1605":2,"1609":1,"1612":7,"1613":1,"1617":3,"1618":4,"1620":3,"1623":1,"1641":4,"1670":1,"1743":5,"1784":1,"1795":1,"1924":1,"1945":3,"1958":5,"1959":1,"1962":2,"1984":1,"1992":1,"1994":1,"1996":1,"2006":2,"2011":1,"2012":1,"2013":1,"2069":3,"2070":5,"2071":4,"2073":1,"2074":1,"2076":2,"2077":2,"2079":14,"2095":2,"2096":1,"2178":1,"2191":5,"2225":1,"2249":1,"2284":3,"2294":1,"2310":2,"2315":4,"2316":1,"2317":12,"2318":6,"2319":7,"2330":1,"2407":2,"2418":1,"2422":1,"2425":1,"2430":1,"2449":1,"2466":1,"2482":1,"2505":1,"2570":1,"2578":1,"2579":3,"2580":1,"2616":1,"2634":1,"2690":1,"2744":1,"2768":2,"2890":1,"2910":2,"2911":2,"2912":7,"2919":2,"2920":1,"2921":1,"2923":7,"2924":2,"2925":2,"2927":2,"2928":1,"2930":3}}],["carries",{"2":{"2265":1}}],["carryover",{"2":{"2259":1}}],["carefully",{"2":{"2428":1,"2943":1}}],["careful",{"2":{"533":1,"643":1,"645":1,"712":1,"1491":1,"2428":1,"2429":1,"2585":1}}],["care",{"2":{"236":1,"762":1,"770":1,"773":1,"776":1,"779":2,"782":1,"785":1,"788":1,"791":1,"1260":1,"1263":1,"1278":1,"1280":1,"1424":1,"1537":1,"1787":1,"2745":1,"2939":1}}],["carbo65",{"2":{"211":1}}],["car",{"2":{"211":1}}],["carve",{"2":{"113":1,"114":1,"133":1,"134":1}}],["card",{"2":{"111":2,"143":4,"1440":1}}],["captioning",{"2":{"2291":1}}],["capture",{"2":{"143":2,"194":1,"203":2,"312":2,"1491":1,"1962":1}}],["cap",{"2":{"1945":1,"2284":1}}],["capitalized",{"2":{"1593":2}}],["capitalization",{"2":{"176":1,"2074":1}}],["capitals",{"2":{"1593":1}}],["capital",{"2":{"211":1,"1499":2,"2650":1,"2794":1}}],["capacitors",{"2":{"1697":1}}],["capacity",{"2":{"160":1}}],["capability",{"2":{"164":1,"277":1,"312":1,"460":1,"1548":1,"2374":1,"2746":1}}],["capabilities",{"0":{"340":1,"341":1},"1":{"341":1,"342":2,"343":2,"344":2,"345":2,"346":2,"347":2,"348":2,"349":1,"350":1,"351":1,"352":1,"353":1,"354":1,"355":1,"356":1,"357":1,"358":1,"359":1,"360":1,"361":1,"362":1,"363":1},"2":{"160":1,"340":1,"1192":1,"2571":1,"2746":1,"2901":1}}],["capable",{"2":{"49":1,"153":2,"545":1,"715":1,"744":1,"1196":1,"1383":1,"1474":1,"1477":1,"1553":1,"1738":1,"2393":1,"2482":1,"2505":1,"2566":1,"2569":1,"2704":1,"2733":1,"2746":4,"2777":1,"2785":1,"2833":1}}],["capswrd",{"2":{"188":1,"191":1}}],["caps",{"0":{"152":1,"1593":1,"1594":1,"1596":1,"1601":1,"2312":1,"2517":1,"2861":1},"1":{"1594":1,"1595":2,"1596":1,"1597":2,"1598":2,"1599":2,"1600":2,"1601":2},"2":{"149":2,"152":2,"160":2,"176":5,"188":2,"191":3,"199":2,"211":2,"222":2,"231":2,"249":1,"308":1,"317":1,"375":1,"564":2,"565":1,"570":1,"589":2,"1347":3,"1349":1,"1354":1,"1455":3,"1533":1,"1544":2,"1546":4,"1593":18,"1594":9,"1595":2,"1597":6,"1598":6,"1599":9,"1600":8,"1601":6,"1603":1,"1625":1,"1693":1,"1762":2,"1835":1,"1836":2,"1838":1,"1839":13,"1840":3,"1855":1,"1945":1,"1948":1,"2094":1,"2095":2,"2096":4,"2188":1,"2189":2,"2190":1,"2276":1,"2284":1,"2287":1,"2312":5,"2313":1,"2315":2,"2330":1,"2332":1,"2510":5,"2517":3,"2526":17,"2540":1,"2545":5,"2552":17,"2563":1,"2854":1,"2857":2,"2861":7,"2867":2,"2935":1,"2940":1}}],["capsunlocked",{"2":{"143":3,"149":1,"217":4,"222":1,"249":1}}],["capslock",{"2":{"112":1,"149":1,"152":1,"1311":2,"2189":2,"2854":1}}],["calc",{"2":{"2510":1,"2549":1}}],["calculator",{"2":{"2503":1,"2510":2,"2549":2}}],["calculate",{"2":{"1846":4,"1953":1,"1994":1,"2082":4,"2185":1,"2382":1}}],["calculated",{"2":{"749":1,"754":2,"1252":1,"1747":1,"1953":1,"2379":2,"2763":1}}],["calculating",{"2":{"211":1,"1379":1,"2379":2}}],["calculation",{"0":{"2378":1},"1":{"2379":1,"2380":1,"2381":1},"2":{"50":1,"114":1,"222":3,"328":1,"333":1,"1970":2,"2379":1,"2381":2}}],["calibrating",{"2":{"1975":1}}],["calibration",{"2":{"249":1,"1975":1}}],["california",{"2":{"211":1,"437":1}}],["calice",{"2":{"211":1}}],["caller",{"2":{"1446":1}}],["called",{"2":{"49":1,"94":1,"187":1,"194":1,"203":1,"370":1,"397":1,"623":1,"625":2,"627":1,"630":2,"631":1,"633":1,"637":1,"643":1,"645":1,"646":2,"648":1,"651":1,"701":1,"733":1,"768":2,"809":1,"835":1,"867":1,"897":1,"932":1,"966":1,"1000":1,"1034":1,"1068":1,"1102":1,"1136":1,"1170":1,"1223":1,"1250":2,"1271":2,"1283":1,"1305":1,"1332":1,"1350":1,"1409":1,"1417":1,"1428":3,"1446":1,"1551":1,"1585":1,"1587":1,"1591":1,"1600":1,"1670":1,"1686":1,"1704":2,"1706":1,"1707":1,"1708":1,"1779":1,"1781":1,"1794":1,"1835":1,"1837":1,"1954":2,"1960":1,"1986":1,"2008":2,"2011":1,"2014":1,"2073":1,"2178":2,"2290":6,"2291":1,"2300":4,"2309":1,"2310":8,"2330":1,"2331":1,"2419":2,"2466":2,"2482":1,"2501":1,"2561":1,"2584":1,"2633":1,"2650":1,"2652":1,"2709":1,"2714":1,"2769":1,"2923":1,"2929":1,"2935":1,"2940":2,"2942":1}}],["calling",{"2":{"149":1,"672":1,"691":1,"1455":1,"1594":1,"1741":1,"1765":1,"1947":1,"1954":1,"1999":1,"2001":2,"2286":1,"2290":1,"2310":2,"2763":1,"2764":3}}],["callback",{"0":{"185":1,"203":1,"660":1,"1531":1,"2006":1},"1":{"1532":1,"1533":1,"1534":1,"1535":1,"1536":1},"2":{"149":1,"185":1,"191":1,"196":1,"203":2,"211":1,"294":1,"317":1,"655":1,"656":4,"657":8,"718":1,"722":1,"1292":1,"1428":6,"1481":1,"1532":2,"1533":1,"1535":1,"1536":1,"1600":4,"1641":1,"1668":1,"1794":1,"1807":1,"1808":1,"1809":1,"1865":1,"1867":1,"1908":1,"1910":1,"1911":1,"1912":1,"1915":1,"1917":1,"1961":2,"1987":1,"1988":5,"1989":2,"1993":1,"2005":3,"2061":1,"2069":1,"2073":1,"2075":1,"2077":1,"2107":1,"2109":1,"2168":1,"2170":1,"2171":1,"2172":1,"2175":1,"2177":1,"2306":1,"2316":1,"2340":1,"2342":1,"2602":1,"2652":5,"2923":4,"2924":5,"2925":1,"2930":1}}],["callbacks",{"0":{"90":1,"105":1,"229":1,"656":1,"1584":1,"1621":1,"1641":1,"1668":1,"1798":1,"1854":1,"1958":1,"1988":1,"1989":1,"2005":1,"2093":1,"2381":1,"2652":1},"1":{"1585":1,"1586":1,"1587":1,"1588":1,"1855":1,"2006":1,"2094":1,"2095":1,"2096":1,"2097":1},"2":{"93":1,"105":1,"114":2,"149":2,"191":4,"229":1,"236":2,"249":1,"277":3,"298":2,"307":2,"308":1,"328":1,"574":1,"625":1,"656":1,"660":1,"722":1,"1195":2,"1428":2,"1601":1,"1798":1,"1837":1,"1841":1,"1960":1,"1989":1,"2042":1,"2418":1,"2652":1,"2747":2}}],["call",{"0":{"1663":1},"2":{"114":1,"134":2,"176":1,"191":1,"249":2,"266":1,"294":1,"323":1,"377":1,"402":1,"405":1,"406":1,"574":1,"593":1,"598":1,"627":1,"635":1,"641":1,"647":1,"656":1,"673":1,"698":1,"702":1,"735":1,"761":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1229":1,"1233":1,"1237":1,"1239":1,"1246":1,"1267":1,"1281":1,"1284":1,"1306":1,"1350":1,"1417":1,"1428":1,"1600":1,"1661":1,"1662":2,"1663":1,"1664":1,"1835":1,"1841":1,"1850":1,"1945":1,"1954":2,"1957":1,"2008":2,"2046":1,"2058":1,"2088":1,"2198":2,"2277":1,"2284":1,"2290":2,"2461":1,"2473":1,"2651":3,"2652":1,"2653":1,"2673":1,"2733":2,"2764":3,"2794":1,"2893":1,"2935":2,"2949":3}}],["calls",{"2":{"50":1,"114":1,"133":1,"134":1,"191":2,"199":1,"266":2,"277":1,"533":1,"646":1,"2198":1,"2228":1,"2309":2,"2461":1,"2759":1,"2940":1,"2949":4}}],["candidate",{"2":{"403":1,"456":1,"2746":1}}],["candidates",{"2":{"403":1}}],["candybar",{"2":{"43":4}}],["canonical",{"2":{"379":1}}],["cannot",{"2":{"302":1,"470":1,"690":3,"713":1,"755":1,"763":1,"1503":1,"1592":1,"1610":1,"1622":1,"1723":1,"1781":1,"1939":1,"1954":2,"1985":1,"2181":1,"2388":1,"2393":1,"2398":1,"2409":1,"2482":1,"2496":1,"2505":1,"2554":1,"2567":1,"2578":1,"2589":1,"2602":1,"2665":1,"2666":2,"2668":1,"2725":1,"2727":1,"2729":1,"2739":2,"2742":1,"2764":2,"2769":1,"2886":1,"2912":3}}],["cannonkeys",{"2":{"191":1,"199":1,"211":22}}],["canada",{"2":{"2887":1}}],["canadian",{"2":{"149":1,"249":1,"2887":5}}],["canary60rgb",{"2":{"253":2}}],["canary",{"2":{"253":2}}],["canceling",{"2":{"1367":1}}],["cancelled",{"2":{"1367":1,"1765":1}}],["cancelling",{"0":{"659":1},"2":{"1533":1}}],["canceled",{"2":{"320":1,"659":1,"2930":1}}],["cancel",{"0":{"2346":1,"2370":1},"2":{"149":1,"657":1,"659":3,"1765":2,"2346":1,"2370":1,"2510":2,"2548":2,"2651":2}}],["can",{"0":{"562":1,"563":1,"564":1,"591":1,"612":1,"1315":1,"1332":1,"1333":1,"1337":1,"1345":1,"1347":1,"1379":1,"2307":1,"2409":1,"2474":1},"1":{"1316":1,"1317":1,"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"0":1,"1":1,"9":1,"19":1,"39":1,"45":1,"49":1,"50":2,"52":1,"60":1,"70":3,"73":1,"74":1,"80":1,"83":1,"98":1,"112":2,"119":2,"120":2,"124":1,"138":1,"152":1,"173":1,"179":1,"191":1,"194":1,"195":2,"199":1,"203":2,"206":1,"210":1,"228":1,"231":1,"233":1,"240":1,"262":1,"263":1,"288":2,"303":2,"306":1,"315":1,"320":1,"323":1,"328":1,"338":2,"353":1,"373":1,"374":1,"375":2,"377":1,"379":1,"380":2,"384":1,"386":1,"389":2,"393":4,"396":3,"397":1,"399":1,"402":1,"403":1,"414":1,"415":1,"416":1,"417":1,"429":3,"430":2,"433":5,"435":1,"436":1,"437":1,"443":1,"459":1,"460":1,"473":1,"474":1,"476":1,"477":2,"482":1,"483":1,"488":1,"489":1,"491":2,"492":1,"494":3,"495":1,"496":1,"497":1,"498":1,"499":1,"500":1,"501":1,"504":1,"505":4,"507":1,"508":1,"509":1,"510":1,"511":1,"512":3,"513":1,"514":1,"515":1,"533":1,"538":1,"540":1,"542":2,"543":1,"544":1,"547":1,"557":1,"558":1,"559":2,"560":1,"561":2,"562":1,"565":2,"568":1,"569":1,"570":2,"572":1,"575":6,"578":2,"579":1,"580":2,"581":1,"592":1,"593":1,"600":1,"605":1,"610":1,"612":1,"613":1,"616":1,"617":1,"618":1,"619":1,"620":1,"625":1,"627":1,"629":1,"630":1,"645":2,"646":2,"648":2,"651":1,"656":1,"657":3,"658":1,"659":1,"660":2,"665":2,"668":1,"669":1,"670":1,"671":1,"672":4,"673":1,"675":1,"678":1,"681":1,"683":1,"685":2,"688":1,"690":1,"694":1,"696":3,"698":1,"710":2,"711":3,"712":1,"715":1,"717":1,"719":3,"720":4,"721":2,"722":1,"743":1,"746":1,"748":1,"749":2,"750":2,"751":1,"758":1,"759":1,"761":1,"762":1,"763":1,"764":1,"768":2,"793":1,"798":1,"799":1,"859":1,"923":1,"924":1,"958":1,"992":1,"1026":1,"1060":1,"1094":1,"1128":1,"1162":1,"1196":1,"1197":1,"1198":1,"1201":1,"1203":1,"1204":1,"1205":2,"1206":1,"1207":2,"1208":1,"1209":1,"1213":1,"1246":1,"1247":1,"1248":2,"1250":1,"1252":1,"1267":1,"1269":1,"1271":1,"1283":2,"1284":1,"1286":1,"1288":1,"1289":1,"1296":1,"1297":1,"1298":1,"1301":1,"1311":1,"1312":1,"1313":2,"1316":2,"1318":1,"1319":2,"1320":1,"1322":1,"1324":1,"1325":1,"1326":1,"1327":1,"1329":1,"1331":1,"1332":2,"1338":1,"1340":1,"1343":2,"1348":2,"1353":1,"1354":1,"1357":1,"1358":1,"1363":2,"1364":6,"1365":1,"1366":1,"1367":1,"1375":1,"1376":1,"1377":1,"1379":1,"1382":1,"1384":1,"1388":3,"1390":1,"1392":1,"1393":1,"1396":2,"1405":1,"1406":1,"1412":1,"1413":1,"1415":1,"1416":4,"1417":5,"1419":2,"1422":3,"1423":2,"1425":1,"1427":4,"1428":4,"1429":1,"1431":1,"1433":2,"1434":1,"1436":1,"1438":2,"1440":1,"1441":2,"1442":1,"1446":1,"1447":1,"1448":6,"1450":2,"1451":2,"1452":1,"1455":1,"1463":2,"1464":2,"1465":2,"1467":2,"1468":1,"1470":7,"1471":3,"1472":4,"1473":3,"1474":2,"1477":1,"1480":1,"1481":2,"1482":1,"1483":1,"1484":1,"1485":6,"1487":1,"1488":2,"1489":1,"1490":2,"1491":2,"1492":1,"1493":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":2,"1503":3,"1517":1,"1518":1,"1526":2,"1527":1,"1528":1,"1529":1,"1532":1,"1533":1,"1535":1,"1538":2,"1541":1,"1550":1,"1551":2,"1554":1,"1558":1,"1591":2,"1593":1,"1594":1,"1600":1,"1605":2,"1606":1,"1607":1,"1608":1,"1609":3,"1610":3,"1612":2,"1613":1,"1617":2,"1618":3,"1620":1,"1621":1,"1622":2,"1625":1,"1626":1,"1628":2,"1639":1,"1641":1,"1648":2,"1661":4,"1662":1,"1664":2,"1665":6,"1666":2,"1667":1,"1668":1,"1670":2,"1676":1,"1686":2,"1687":1,"1702":1,"1704":1,"1738":3,"1739":1,"1740":1,"1741":2,"1742":2,"1762":1,"1765":2,"1766":2,"1770":1,"1777":2,"1779":2,"1781":2,"1784":2,"1787":2,"1788":1,"1794":1,"1795":2,"1798":1,"1800":1,"1801":1,"1802":3,"1838":1,"1840":1,"1844":1,"1846":3,"1849":2,"1850":2,"1851":1,"1852":1,"1855":1,"1865":1,"1867":1,"1930":1,"1933":1,"1935":3,"1936":1,"1937":2,"1938":2,"1939":1,"1940":1,"1941":1,"1946":2,"1947":2,"1948":1,"1952":2,"1953":1,"1954":2,"1956":1,"1957":1,"1958":1,"1959":1,"1962":2,"1964":2,"1965":1,"1968":2,"1970":1,"1974":2,"1976":3,"1977":1,"1983":2,"1985":3,"1986":3,"1988":3,"1989":2,"1990":4,"1998":1,"1999":1,"2001":2,"2004":1,"2008":1,"2011":2,"2014":1,"2016":1,"2039":1,"2041":1,"2042":1,"2044":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":2,"2056":1,"2057":3,"2058":1,"2065":1,"2070":2,"2071":1,"2073":1,"2074":1,"2075":1,"2076":1,"2079":1,"2080":1,"2082":3,"2085":3,"2087":1,"2088":2,"2089":1,"2090":1,"2091":1,"2094":1,"2096":2,"2097":1,"2107":1,"2109":1,"2178":1,"2182":1,"2183":1,"2184":1,"2187":1,"2188":2,"2189":3,"2190":1,"2191":2,"2205":1,"2206":2,"2207":3,"2213":1,"2214":1,"2222":1,"2223":1,"2249":1,"2250":1,"2251":1,"2258":1,"2259":2,"2260":1,"2261":1,"2264":1,"2265":1,"2271":2,"2272":2,"2273":3,"2274":1,"2275":3,"2276":1,"2277":4,"2278":2,"2279":1,"2280":1,"2286":2,"2287":1,"2290":2,"2291":1,"2292":2,"2293":2,"2294":3,"2295":1,"2297":1,"2298":2,"2300":1,"2301":1,"2304":1,"2305":1,"2308":2,"2309":1,"2316":1,"2317":2,"2318":1,"2319":2,"2322":1,"2324":1,"2326":1,"2327":2,"2328":1,"2329":2,"2330":4,"2331":3,"2344":1,"2345":1,"2346":1,"2375":2,"2377":1,"2381":1,"2390":1,"2395":1,"2400":1,"2402":1,"2404":1,"2407":2,"2410":5,"2412":1,"2414":2,"2417":4,"2418":5,"2422":1,"2423":3,"2425":2,"2426":1,"2427":2,"2429":4,"2430":2,"2431":2,"2432":3,"2435":2,"2439":1,"2441":1,"2445":1,"2450":1,"2454":3,"2455":2,"2457":1,"2458":1,"2460":1,"2461":1,"2463":1,"2464":1,"2466":4,"2467":2,"2469":2,"2470":2,"2473":2,"2474":1,"2475":1,"2480":1,"2481":1,"2482":1,"2483":1,"2486":1,"2501":1,"2502":2,"2503":2,"2504":1,"2505":1,"2506":1,"2508":3,"2523":1,"2557":2,"2558":2,"2560":1,"2561":6,"2562":1,"2566":2,"2567":1,"2569":2,"2572":3,"2573":1,"2575":3,"2576":3,"2578":2,"2579":1,"2583":4,"2584":3,"2586":1,"2587":1,"2591":1,"2592":1,"2602":2,"2603":3,"2605":3,"2606":1,"2607":2,"2609":1,"2610":2,"2612":1,"2614":1,"2616":1,"2617":1,"2618":1,"2619":1,"2628":2,"2629":2,"2634":4,"2635":1,"2636":1,"2637":1,"2639":4,"2640":7,"2650":2,"2651":1,"2652":2,"2658":2,"2662":1,"2666":1,"2667":4,"2668":4,"2669":1,"2671":1,"2672":1,"2678":2,"2682":1,"2683":4,"2685":2,"2686":1,"2691":3,"2694":1,"2695":2,"2700":1,"2701":1,"2702":1,"2703":1,"2705":1,"2709":2,"2710":1,"2711":3,"2714":1,"2716":1,"2719":2,"2720":1,"2722":1,"2727":1,"2744":1,"2745":1,"2746":6,"2747":2,"2748":1,"2749":2,"2750":1,"2758":1,"2759":2,"2760":1,"2761":4,"2762":2,"2763":37,"2764":13,"2766":1,"2771":2,"2772":2,"2774":2,"2775":1,"2779":1,"2787":1,"2811":1,"2819":1,"2834":1,"2851":1,"2852":2,"2871":1,"2876":1,"2878":1,"2884":1,"2886":1,"2889":2,"2890":3,"2891":1,"2892":3,"2893":3,"2894":2,"2899":1,"2901":2,"2902":1,"2906":1,"2910":5,"2911":2,"2912":9,"2919":4,"2920":3,"2921":2,"2928":3,"2930":6,"2934":2,"2937":1,"2939":1,"2940":2,"2941":1,"2943":2,"2944":2,"2945":2,"2946":2,"2949":8}}],["chunks",{"2":{"2290":1}}],["chunder",{"2":{"354":1}}],["chnu",{"2":{"1925":1,"2527":1}}],["chnd",{"2":{"1925":1,"2527":1}}],["ch9",{"2":{"1925":1,"2527":1}}],["ch8",{"2":{"1925":1,"2527":1}}],["ch7",{"2":{"1925":1,"2527":1}}],["ch6",{"2":{"1925":1,"2527":1}}],["ch582",{"2":{"2727":1,"2736":1}}],["ch5",{"2":{"1925":1,"2527":1}}],["ch4",{"2":{"721":1,"1925":1,"2527":1}}],["ch3",{"2":{"721":1,"1556":1,"1925":1,"2527":1}}],["chyn",{"2":{"721":1,"1303":2}}],["chy",{"2":{"721":1,"1483":1}}],["ch2",{"2":{"717":2,"718":2,"721":1,"1925":1,"2527":1}}],["ch16",{"2":{"1925":1,"2527":1}}],["ch15",{"2":{"1925":1,"2527":1}}],["ch14",{"2":{"1925":1,"2527":1}}],["ch13",{"2":{"1925":1,"2527":1}}],["ch12",{"2":{"1925":1,"2527":1}}],["ch11",{"2":{"1925":1,"2527":1}}],["ch10",{"2":{"1925":1,"2527":1}}],["ch1",{"2":{"716":2,"717":2,"718":2,"721":1,"722":1,"1483":1,"1925":1,"2527":1}}],["ch",{"2":{"199":1,"222":1,"618":1}}],["chrome",{"2":{"2589":1}}],["chromeos",{"2":{"191":1}}],["chromatic",{"2":{"1485":2,"1486":3,"1490":5}}],["chromatonemini",{"2":{"236":1}}],["christmas",{"2":{"49":2,"143":2,"181":2,"2181":1,"2183":2,"2184":2,"2185":4,"2532":1,"2894":1}}],["chosfox",{"2":{"2567":1}}],["chose",{"2":{"1350":1,"1482":1,"2591":1,"2619":1}}],["chosen",{"2":{"764":1,"1197":1,"1199":1,"1204":1,"1248":1,"1269":1,"1680":1,"1937":2,"2276":1,"2415":1,"2702":1,"2703":1,"2705":2,"2844":1}}],["choosing",{"0":{"1202":1,"2707":1},"1":{"1203":1,"1204":1,"1205":1,"2708":1,"2709":1,"2710":1,"2711":1,"2712":1,"2713":1},"2":{"1193":1,"1198":1,"1201":1,"2568":1,"2676":1}}],["chooses",{"2":{"1409":1,"2742":1}}],["choose",{"2":{"512":2,"514":1,"597":1,"625":1,"696":1,"1196":1,"1199":1,"1248":1,"1409":1,"1480":1,"1788":1,"1937":1,"2329":1,"2410":1,"2465":2,"2570":1,"2598":1,"2607":1,"2626":1,"2652":1,"2656":1,"2658":1,"2701":1,"2901":1,"2919":1,"2928":1}}],["chord",{"0":{"2927":1},"2":{"1444":1,"1605":1,"1612":3,"1615":1,"1622":1,"2292":1,"2298":1,"2300":12,"2925":2,"2927":2}}],["chorded",{"2":{"1367":1,"2291":1,"2300":1}}],["chording",{"2":{"574":1,"1366":1,"1602":1,"2922":1}}],["chords",{"2":{"564":1,"1484":1,"2075":1,"2297":1,"2298":1,"2300":1,"2926":2,"2927":1}}],["chordal",{"0":{"289":1,"2925":1,"2926":1},"1":{"2926":1,"2927":1},"2":{"289":4,"294":2,"2854":1,"2869":1,"2925":14,"2926":7,"2927":5}}],["chore",{"2":{"160":1,"211":1,"249":1,"308":2}}],["choc",{"2":{"143":2}}],["choco60",{"2":{"143":2}}],["choices",{"2":{"619":1,"2572":1,"2573":1,"2869":1}}],["choice",{"2":{"74":1,"124":1,"1554":1,"1613":1,"1779":1,"2057":1,"2260":1,"2297":1,"2300":1,"2317":1,"2658":1,"2659":1,"2664":1,"2665":1,"2707":1,"2714":2}}],["children",{"2":{"1538":1}}],["child",{"2":{"1538":5,"2747":1}}],["chili",{"2":{"143":2,"211":1}}],["chime",{"2":{"651":1,"1486":1}}],["chimera",{"2":{"143":8,"149":1,"2449":1}}],["chiffre",{"2":{"143":2,"222":1,"236":1}}],["chidori",{"2":{"143":2}}],["chipid",{"2":{"2508":2}}],["chip",{"2":{"130":1,"276":1,"547":1,"619":2,"723":1,"726":2,"734":1,"740":1,"746":2,"1382":1,"1681":1,"1949":1,"1952":1,"1966":1,"1967":1,"1974":1,"1979":1,"1982":1,"1983":4,"2178":1,"2374":2,"2375":3,"2431":1,"2446":1,"2502":2,"2612":1,"2668":3,"2705":2,"2727":1,"2747":1,"2761":1,"2763":11,"2818":1}}],["chipsets",{"2":{"2376":1}}],["chipset",{"2":{"2375":1}}],["chips",{"2":{"123":1,"619":1,"746":4,"749":2,"750":2,"758":1,"759":1,"1320":1,"1395":1,"2374":1,"2389":1,"2490":2,"2705":1,"2711":1,"2727":1}}],["chibios",{"0":{"10":2,"11":1,"69":1,"77":1,"263":1,"419":1,"420":1,"421":1,"423":2,"728":1,"764":1,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1218":1,"1248":1,"1269":1,"1295":1,"1555":1,"2042":1,"2684":1},"1":{"420":1,"421":1,"422":1,"423":1,"765":1,"766":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1556":1,"1557":1,"2685":1,"2686":1,"2687":1},"2":{"10":6,"11":1,"24":1,"49":5,"50":5,"65":4,"69":4,"73":1,"74":1,"77":1,"93":1,"108":2,"113":1,"114":9,"133":1,"134":8,"149":6,"160":4,"163":1,"176":11,"191":7,"199":6,"211":2,"222":6,"236":6,"249":3,"266":3,"277":1,"294":4,"308":2,"328":1,"339":6,"411":5,"419":3,"420":2,"421":8,"422":7,"547":1,"554":1,"611":1,"690":1,"691":1,"696":1,"716":2,"721":2,"723":1,"728":1,"764":1,"793":1,"798":1,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1195":1,"1196":1,"1199":1,"1203":3,"1204":3,"1218":1,"1299":1,"1303":2,"1556":1,"1557":1,"1956":1,"2042":1,"2278":1,"2279":1,"2410":2,"2417":1,"2465":1,"2684":4,"2685":2,"2686":2,"2687":3,"2696":2,"2697":1,"2698":1,"2707":10,"2709":4,"2710":3,"2711":1,"2712":2,"2713":2,"2744":1,"2746":5,"2853":1,"2934":1}}],["chevron",{"2":{"2085":4,"2894":1}}],["chew",{"2":{"300":2,"308":1}}],["cherry",{"2":{"2890":1}}],["cherryb",{"2":{"211":4}}],["chere",{"2":{"2678":1}}],["cherish",{"2":{"176":1}}],["cheap",{"2":{"114":1,"134":1,"2505":1}}],["checkmark",{"2":{"2749":1}}],["checkbox",{"2":{"2659":1}}],["checklist",{"2":{"2569":1,"2743":1}}],["checklists",{"0":{"404":1,"2743":1},"1":{"405":1,"406":1,"407":1,"408":1,"409":1,"2744":1,"2745":1,"2746":1,"2747":1,"2748":1,"2749":1,"2750":1}}],["checker",{"2":{"2434":1}}],["checkerboards",{"2":{"143":3,"149":1,"211":1}}],["checked",{"2":{"411":1,"506":1,"1518":1,"1619":1,"2012":1,"2014":1,"2273":1,"2410":4,"2640":2,"2769":1}}],["checkout",{"2":{"367":1,"409":2,"411":3,"421":2,"422":4,"423":2,"613":1,"1421":1,"1469":2,"2599":4,"2639":1,"2640":3,"2676":1}}],["checking",{"0":{"377":1,"1364":1},"1":{"1365":1,"1366":1,"1367":1},"2":{"176":1,"199":2,"308":1,"535":1,"543":1,"586":1,"588":1,"1367":1,"1451":1,"2075":2,"2295":1,"2319":1,"2587":1,"2615":2,"2629":1,"2709":1,"2743":1,"2911":1,"2919":1,"2931":1}}],["check",{"2":{"49":1,"87":1,"112":1,"114":2,"134":2,"160":2,"163":1,"176":6,"199":3,"211":2,"214":1,"222":2,"234":1,"236":1,"249":3,"254":1,"266":1,"277":2,"308":1,"333":1,"339":1,"344":3,"366":1,"374":1,"377":2,"378":1,"383":1,"403":1,"435":3,"440":1,"574":2,"607":1,"615":2,"647":7,"690":1,"710":1,"711":1,"712":1,"754":1,"1300":1,"1315":1,"1333":1,"1338":1,"1364":2,"1375":1,"1381":2,"1382":1,"1428":2,"1431":3,"1446":1,"1451":1,"1464":1,"1468":1,"1471":1,"1517":1,"1525":1,"1528":1,"1542":1,"1619":1,"1621":1,"1622":1,"1794":1,"1820":1,"1821":1,"1823":1,"1824":2,"1826":1,"1827":3,"1829":1,"1830":4,"1832":1,"1833":5,"1850":3,"1974":2,"1990":1,"1994":1,"1996":1,"2012":1,"2030":1,"2088":3,"2179":1,"2183":1,"2218":3,"2275":2,"2310":1,"2319":2,"2320":1,"2417":2,"2434":7,"2448":5,"2466":1,"2480":1,"2502":1,"2503":1,"2508":2,"2616":1,"2617":1,"2637":1,"2639":1,"2669":1,"2676":1,"2684":1,"2767":1,"2769":1,"2860":1,"2882":2,"2889":1,"2944":1}}],["checksum",{"2":{"176":1,"2417":1,"2508":2}}],["checks",{"2":{"36":2,"149":1,"199":1,"236":1,"263":1,"308":1,"344":3,"366":1,"403":1,"440":1,"459":1,"647":1,"1366":1,"1428":3,"1525":1,"1793":1,"2011":1,"2310":2,"2317":1,"2385":1,"2387":1,"2392":1,"2599":1,"2640":1}}],["chconf",{"2":{"50":2,"86":1}}],["challenges",{"2":{"2726":1}}],["challenge",{"2":{"665":1,"1442":1}}],["chatter",{"0":{"1409":1},"1":{"1410":1,"1411":1,"1412":1,"1413":1,"1414":1},"2":{"1409":1}}],["chat",{"0":{"2897":1},"2":{"612":1,"619":1,"644":1,"1634":1,"2481":1,"2617":1}}],["chains",{"2":{"1290":1,"1538":2,"2689":1}}],["chained",{"2":{"1283":1,"2178":1}}],["chain",{"2":{"393":1,"699":2,"703":1,"706":1,"1285":2,"1296":1,"1307":1,"1310":1,"1363":1,"1538":7,"1539":1,"2468":1,"2855":2,"2877":1,"2883":1,"2919":1,"2940":2}}],["chaining",{"2":{"294":1}}],["chapter1",{"2":{"266":1}}],["charging",{"2":{"2685":1}}],["charge",{"2":{"49":2}}],["charlieplex",{"2":{"2444":1}}],["charlieplexed",{"2":{"887":1}}],["chartreuse",{"2":{"2089":2,"2205":2}}],["chars",{"2":{"249":1,"266":1,"1954":2,"2290":2}}],["character",{"0":{"1702":1},"2":{"512":1,"520":1,"1333":1,"1486":1,"1496":1,"1527":1,"1593":1,"1673":2,"1702":3,"1713":4,"1714":1,"1719":1,"1720":2,"1721":1,"1722":2,"1726":1,"1728":1,"1729":1,"1949":2,"1954":5,"2219":1,"2221":2,"2222":1,"2230":1,"2231":1,"2234":1,"2235":1,"2236":1,"2237":1,"2246":1,"2288":2,"2290":5,"2317":1,"2324":1,"2329":1,"2330":4,"2331":1,"2347":1,"2348":1,"2367":1,"2418":1,"2449":1,"2472":2,"2650":1,"2762":2,"2775":1,"2884":1,"2886":2,"2926":1}}],["characters",{"0":{"1355":1,"2474":1,"2475":1},"2":{"211":1,"615":1,"1446":2,"1499":2,"1505":1,"1508":1,"1515":1,"1527":1,"1528":1,"1535":2,"1699":2,"1702":3,"1715":1,"1717":1,"1734":1,"1736":1,"1786":2,"1946":1,"1954":1,"2219":1,"2222":1,"2223":1,"2228":1,"2230":1,"2232":1,"2234":1,"2285":1,"2290":1,"2329":1,"2330":5,"2331":1,"2349":1,"2362":1,"2381":2,"2418":4,"2434":1,"2470":1,"2474":1,"2475":1,"2553":1,"2554":1,"2576":1,"2744":1,"2788":1,"2789":2,"2846":1,"2852":2,"2856":1,"2884":1,"2886":4,"2912":1}}],["charactermatrix",{"2":{"31":1,"1955":1}}],["charon",{"2":{"211":1}}],["charue",{"2":{"211":2}}],["charybdis",{"2":{"176":2,"311":24,"317":3}}],["char",{"0":{"1279":1,"1713":1,"1715":1,"1717":1,"1719":1,"1721":1,"2228":1,"2230":1,"2232":1,"2234":1,"2236":2,"2349":1},"1":{"1280":1,"1714":1,"1716":1,"1718":1,"1720":1,"1722":1,"2229":1,"2231":1,"2233":1,"2235":1,"2237":2,"2350":1},"2":{"114":1,"134":1,"521":1,"1534":3,"1535":6,"1702":1,"1714":1,"1716":1,"1718":1,"1721":1,"1851":1,"1946":1,"1947":4,"1954":12,"1955":6,"2090":1,"2229":1,"2231":1,"2233":1,"2235":1,"2237":1,"2285":1,"2286":4,"2290":12,"2331":1,"2350":1,"2745":1,"2764":4,"2893":1,"2926":1,"2948":1}}],["chances",{"2":{"596":1,"2572":1,"2638":1,"2890":1}}],["chance",{"2":{"294":1,"596":1,"1319":1,"1615":1,"2470":1,"2744":1}}],["changing",{"0":{"2206":1,"2578":1,"2579":1,"2580":1,"2759":1},"2":{"194":1,"214":1,"233":1,"236":1,"561":1,"598":1,"657":1,"1409":1,"1417":2,"1795":1,"2008":1,"2180":3,"2189":1,"2379":1,"2467":1,"2475":1,"2479":1,"2763":12}}],["changelist",{"0":{"114":1,"134":1,"149":1,"160":1,"176":1,"191":1,"199":1,"211":1,"222":1,"236":1,"249":1,"266":1,"277":1,"285":1,"294":1,"308":1,"317":1,"328":1,"333":1,"339":1}}],["changelogs",{"2":{"266":1,"413":1}}],["changelog",{"0":{"9":1,"19":1,"39":1,"52":1,"66":1,"78":1,"96":1,"115":1,"135":1,"150":1,"161":1,"177":1,"192":1,"200":1,"212":1,"223":1,"237":1,"250":1,"267":1,"278":1,"286":1,"295":1,"309":1,"318":1,"329":1,"334":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"176":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"211":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1,"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1,"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1},"2":{"99":1,"149":2,"403":3,"409":1,"417":2,"2904":1}}],["changed",{"0":{"1585":1,"1587":1},"2":{"14":1,"90":1,"114":1,"156":1,"160":1,"169":1,"176":1,"182":1,"186":1,"191":1,"199":1,"214":1,"215":1,"240":1,"256":1,"307":1,"308":1,"403":1,"459":4,"499":1,"613":2,"624":2,"625":4,"1198":1,"1201":1,"1205":1,"1412":1,"1417":1,"1429":1,"1585":1,"1587":1,"1608":1,"1675":1,"1740":1,"1779":1,"1795":1,"1846":1,"1951":1,"1954":2,"1988":2,"1990":4,"1999":1,"2056":1,"2082":1,"2273":1,"2304":1,"2328":1,"2330":1,"2340":1,"2342":1,"2410":1,"2564":1,"2640":3,"2652":7,"2912":2,"2949":3}}],["changesets",{"2":{"182":1}}],["changes",{"0":{"5":1,"20":1,"40":1,"46":1,"47":1,"53":1,"61":1,"66":1,"67":1,"68":1,"72":1,"78":1,"79":1,"85":1,"91":1,"96":1,"101":1,"106":1,"115":1,"121":1,"129":1,"131":1,"135":1,"139":1,"144":1,"150":1,"155":1,"161":1,"165":1,"171":1,"177":1,"180":1,"187":1,"192":1,"193":1,"194":1,"198":1,"200":1,"201":1,"205":1,"206":1,"208":1,"212":1,"213":1,"216":1,"223":1,"225":1,"227":1,"237":1,"239":1,"240":1,"242":1,"244":1,"250":1,"252":1,"261":1,"267":1,"269":1,"278":1,"280":1,"286":1,"290":1,"295":1,"299":1,"309":1,"310":1,"318":1,"321":1,"329":1,"334":1,"335":1,"399":1,"400":1,"403":1,"413":1,"414":1,"417":1,"600":1,"2634":1,"2636":1,"2640":1,"2641":1},"1":{"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"48":1,"49":1,"50":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"62":1,"63":1,"64":1,"67":1,"68":1,"69":2,"70":2,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":2,"81":2,"82":2,"83":2,"84":2,"85":1,"86":2,"87":2,"88":2,"89":2,"90":2,"91":1,"92":2,"93":2,"94":2,"95":2,"97":1,"98":1,"99":1,"100":1,"101":1,"102":2,"103":2,"104":2,"105":2,"106":1,"107":2,"108":2,"109":2,"110":2,"111":2,"112":2,"113":2,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":2,"123":2,"124":2,"125":2,"126":2,"127":2,"128":2,"129":1,"130":2,"131":2,"132":2,"133":2,"134":1,"136":1,"137":1,"138":1,"139":1,"140":2,"141":2,"142":2,"143":2,"144":1,"145":2,"146":2,"147":2,"148":2,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":2,"157":2,"158":2,"159":2,"160":1,"162":1,"163":1,"164":1,"165":1,"166":2,"167":2,"168":2,"169":2,"170":2,"171":1,"172":2,"173":2,"174":2,"175":2,"176":1,"178":1,"179":1,"180":1,"181":2,"182":2,"183":2,"184":2,"185":2,"186":2,"187":1,"188":2,"189":2,"190":2,"191":1,"193":1,"194":2,"195":2,"196":2,"197":2,"198":1,"199":1,"201":1,"202":2,"203":2,"204":2,"205":1,"206":2,"207":2,"208":1,"209":2,"210":2,"211":1,"213":1,"214":2,"215":2,"216":1,"217":2,"218":2,"219":2,"220":2,"221":2,"222":1,"224":1,"225":1,"226":2,"227":1,"228":2,"229":2,"230":2,"231":2,"232":2,"233":2,"234":2,"235":2,"236":1,"238":1,"239":1,"240":2,"241":2,"242":1,"243":2,"244":2,"245":2,"246":2,"247":2,"248":2,"249":1,"251":1,"252":1,"253":2,"254":2,"255":2,"256":2,"257":2,"258":2,"259":2,"260":2,"261":1,"262":2,"263":2,"264":1,"265":1,"266":1,"268":1,"269":1,"270":2,"271":2,"272":2,"273":2,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":2,"282":1,"283":1,"284":1,"285":1,"287":1,"288":1,"289":1,"290":1,"291":2,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":2,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":2,"312":2,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":2,"323":2,"324":2,"325":2,"326":1,"327":1,"328":1,"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1,"400":1,"401":1,"402":1,"403":1,"404":1,"405":1,"406":1,"407":1,"408":1,"409":1,"410":1,"411":1,"412":1,"415":1,"416":1,"417":1,"418":1},"2":{"0":3,"2":1,"9":2,"19":3,"22":1,"25":1,"28":1,"31":4,"32":1,"34":4,"36":1,"39":2,"45":1,"52":2,"67":1,"74":1,"86":1,"87":1,"103":2,"105":1,"107":1,"114":2,"116":1,"125":1,"126":2,"131":2,"133":1,"134":2,"149":1,"156":1,"163":2,"167":1,"172":1,"175":1,"176":3,"182":1,"184":1,"185":1,"187":2,"188":1,"191":4,"198":2,"199":1,"201":3,"206":1,"211":1,"213":3,"222":2,"224":3,"231":1,"233":3,"236":2,"238":2,"247":1,"251":1,"254":1,"262":1,"263":1,"265":3,"272":1,"273":1,"275":1,"276":1,"284":1,"294":1,"303":1,"307":3,"328":1,"332":1,"399":1,"400":1,"403":5,"404":1,"405":3,"406":3,"407":3,"408":2,"411":3,"412":4,"413":1,"414":9,"416":2,"417":1,"465":1,"469":1,"533":1,"564":1,"580":1,"609":1,"613":6,"615":1,"617":1,"619":4,"620":1,"640":1,"666":1,"711":1,"717":1,"718":1,"721":1,"1410":1,"1413":5,"1428":1,"1490":3,"1665":1,"1681":1,"1837":1,"1919":2,"1952":6,"1960":1,"1994":1,"2085":4,"2190":1,"2275":1,"2278":1,"2292":2,"2323":3,"2379":1,"2405":1,"2410":4,"2418":1,"2464":1,"2569":1,"2586":1,"2587":1,"2593":1,"2602":1,"2603":1,"2610":1,"2633":2,"2634":8,"2636":1,"2637":2,"2638":1,"2640":6,"2641":1,"2652":2,"2744":1,"2746":2,"2747":5,"2748":1,"2764":1,"2800":1,"2808":1,"2847":1,"2902":1,"2903":2,"2904":1,"2912":3,"2935":1,"2939":1,"2949":2}}],["change",{"0":{"0":1,"9":1,"19":1,"39":1,"52":1,"57":1,"71":1,"272":1,"401":1,"662":1,"1429":1,"1923":1,"2199":1,"2201":1,"2939":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"402":1,"1430":1,"1431":1,"1432":1},"2":{"0":3,"9":2,"19":2,"23":1,"31":2,"39":2,"45":1,"49":1,"52":2,"64":2,"87":1,"90":2,"93":1,"94":1,"95":1,"105":3,"114":4,"118":1,"133":1,"134":3,"149":2,"160":2,"176":2,"182":1,"188":1,"191":7,"198":2,"199":4,"201":1,"211":2,"213":1,"215":1,"249":4,"255":1,"257":1,"258":1,"259":2,"262":1,"263":4,"266":5,"271":1,"272":2,"277":2,"285":1,"294":1,"307":1,"312":1,"320":1,"344":6,"379":1,"399":5,"401":1,"403":4,"409":1,"411":1,"414":1,"415":1,"416":1,"417":1,"494":1,"499":1,"512":2,"513":1,"544":1,"557":1,"613":1,"615":2,"628":1,"662":1,"696":1,"710":1,"717":1,"722":1,"901":1,"936":1,"970":1,"1004":1,"1038":1,"1072":1,"1106":1,"1140":1,"1174":1,"1195":1,"1198":2,"1201":2,"1207":1,"1208":1,"1227":1,"1287":1,"1349":1,"1362":1,"1410":4,"1413":9,"1417":14,"1422":1,"1428":1,"1449":1,"1484":1,"1487":2,"1490":1,"1491":1,"1502":1,"1544":1,"1551":1,"1556":1,"1605":2,"1609":1,"1617":1,"1623":1,"1625":1,"1648":2,"1666":2,"1739":1,"1767":1,"1777":2,"1786":1,"1788":1,"1800":1,"1803":1,"1836":1,"1935":1,"1937":1,"1954":1,"1994":1,"1999":1,"2008":3,"2012":2,"2047":1,"2068":1,"2072":1,"2086":1,"2087":1,"2179":1,"2194":2,"2199":4,"2253":2,"2254":2,"2258":1,"2275":2,"2322":2,"2338":1,"2339":1,"2375":1,"2381":1,"2416":1,"2482":1,"2554":1,"2558":3,"2567":1,"2569":1,"2576":1,"2586":2,"2640":1,"2651":1,"2652":2,"2663":2,"2678":1,"2683":1,"2691":1,"2717":2,"2744":2,"2747":1,"2769":2,"2868":1,"2912":2,"2928":1,"2930":1,"2949":1}}],["channels",{"0":{"687":1},"1":{"688":1,"689":1,"690":1,"691":1},"2":{"688":1,"690":2,"696":2,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1288":1,"2431":1}}],["channel",{"2":{"14":2,"228":1,"688":1,"690":2,"691":1,"694":5,"716":1,"717":1,"721":2,"729":1,"732":3,"805":1,"808":3,"821":3,"831":1,"834":3,"848":3,"863":1,"866":3,"880":3,"893":1,"896":3,"912":3,"928":1,"931":3,"947":3,"962":1,"965":3,"981":3,"996":1,"999":3,"1015":3,"1030":1,"1033":3,"1049":3,"1064":1,"1067":3,"1083":3,"1098":1,"1101":3,"1117":3,"1132":1,"1135":3,"1151":3,"1166":1,"1169":3,"1185":3,"1219":1,"1222":3,"1238":3,"1288":1,"1303":4,"1477":2,"1483":1,"1545":2,"1556":2,"1558":1,"1919":1,"1924":2,"1925":36,"1926":1,"2527":36}}],["cumbersome",{"2":{"1622":1}}],["cuprintf",{"2":{"1330":1}}],["cuint32",{"2":{"656":1}}],["cuint16",{"2":{"195":1,"1503":1,"2069":2,"2070":1,"2077":1,"2764":4,"2910":1,"2911":2,"2912":1,"2921":1,"2924":2}}],["cu80",{"2":{"143":2,"149":1,"217":4,"222":1,"249":1}}],["cu75",{"2":{"143":2,"149":1}}],["cu24",{"2":{"143":2,"149":1}}],["cutters",{"2":{"2421":1,"2428":1}}],["cutoff",{"2":{"1968":1}}],["cutie",{"2":{"285":1}}],["cut",{"2":{"116":1,"1486":1,"1968":1,"2280":1,"2431":1,"2510":2,"2548":2,"2579":1}}],["currency",{"2":{"2474":1}}],["currentreport",{"2":{"1992":8}}],["currently",{"2":{"7":1,"65":1,"103":1,"203":1,"221":1,"262":1,"288":1,"316":1,"377":1,"379":1,"441":1,"570":2,"685":1,"715":1,"749":1,"750":2,"753":1,"755":1,"757":2,"759":2,"764":1,"1266":1,"1364":1,"1391":1,"1392":1,"1393":1,"1395":1,"1399":1,"1410":1,"1423":1,"1433":1,"1444":1,"1458":1,"1459":1,"1460":1,"1481":1,"1483":1,"1536":1,"1599":1,"1645":1,"1661":1,"1678":1,"1697":1,"1723":1,"1849":1,"1853":1,"1865":1,"1867":1,"1869":1,"1871":1,"1877":1,"1878":1,"1907":1,"1909":1,"1914":1,"1954":2,"1959":1,"1976":1,"1983":1,"2014":1,"2016":1,"2057":1,"2085":1,"2092":1,"2107":1,"2109":1,"2111":1,"2113":1,"2119":1,"2120":1,"2167":1,"2169":1,"2174":1,"2178":1,"2188":1,"2193":1,"2210":1,"2211":1,"2212":1,"2218":3,"2254":1,"2261":2,"2276":1,"2290":1,"2300":1,"2306":1,"2309":1,"2317":1,"2331":1,"2335":1,"2344":1,"2345":1,"2346":1,"2360":1,"2374":2,"2375":1,"2376":1,"2377":1,"2384":1,"2388":1,"2391":1,"2400":1,"2402":1,"2496":1,"2518":1,"2567":1,"2576":1,"2604":1,"2612":1,"2613":1,"2626":1,"2640":1,"2760":2,"2797":1,"2869":3,"2936":1}}],["current",{"0":{"4":1,"727":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1794":1},"2":{"30":1,"33":1,"49":1,"50":1,"88":1,"104":1,"114":1,"119":3,"176":2,"199":1,"266":1,"273":1,"279":1,"308":2,"403":1,"405":1,"412":3,"429":1,"454":1,"463":1,"475":1,"542":1,"563":1,"565":1,"570":4,"574":1,"592":1,"619":1,"624":1,"625":1,"639":6,"658":1,"696":1,"726":2,"727":2,"745":1,"857":2,"861":2,"901":1,"921":2,"926":2,"936":1,"956":2,"960":2,"970":1,"990":2,"994":2,"1004":1,"1024":2,"1028":2,"1038":1,"1058":2,"1062":2,"1072":1,"1092":2,"1096":2,"1106":1,"1126":2,"1130":2,"1140":1,"1160":2,"1164":2,"1174":1,"1227":1,"1265":1,"1364":4,"1367":1,"1422":1,"1427":2,"1428":2,"1431":4,"1472":1,"1521":1,"1523":1,"1533":1,"1539":1,"1558":1,"1568":1,"1569":1,"1570":1,"1575":1,"1600":1,"1601":1,"1605":1,"1620":3,"1624":1,"1625":1,"1651":1,"1678":1,"1681":2,"1728":1,"1729":2,"1747":1,"1789":1,"1794":1,"1863":1,"1883":1,"1884":1,"1893":1,"1894":1,"1903":1,"1904":1,"1906":1,"1908":1,"1910":1,"1912":1,"1915":1,"1947":3,"1948":1,"1954":10,"1988":3,"1990":1,"1994":1,"1999":1,"2000":1,"2004":1,"2008":4,"2075":1,"2085":2,"2105":1,"2125":1,"2126":1,"2131":1,"2132":1,"2137":1,"2138":1,"2147":1,"2148":1,"2157":1,"2158":1,"2163":1,"2164":1,"2166":1,"2168":1,"2170":1,"2172":1,"2175":1,"2183":1,"2204":6,"2254":2,"2259":1,"2276":4,"2286":3,"2287":1,"2290":9,"2295":3,"2300":1,"2318":1,"2319":1,"2323":3,"2327":1,"2334":1,"2363":1,"2377":1,"2380":4,"2423":1,"2466":2,"2482":1,"2510":1,"2513":1,"2516":1,"2531":3,"2549":1,"2558":1,"2570":1,"2571":1,"2572":1,"2614":1,"2634":10,"2639":1,"2641":1,"2652":1,"2658":1,"2669":3,"2679":1,"2692":1,"2747":1,"2760":1,"2764":2,"2781":1,"2880":1,"2882":2,"2889":1,"2893":3,"2912":6,"2924":1,"2936":1,"2939":2}}],["cur",{"2":{"2317":3,"2318":3,"2319":4}}],["curious",{"2":{"1537":1}}],["curly",{"2":{"2226":1,"2318":1,"2534":2,"2555":2,"2678":1}}],["curl",{"2":{"376":1,"377":1,"379":3,"426":2,"488":1,"1318":1}}],["cursorstyle",{"2":{"2678":1}}],["cursor",{"0":{"1704":1,"1708":1,"1711":1},"1":{"1705":1,"1709":1,"1712":1},"2":{"62":1,"114":1,"175":1,"176":2,"1645":1,"1648":1,"1701":1,"1702":1,"1705":3,"1707":1,"1708":1,"1709":3,"1711":1,"1713":1,"1728":2,"1736":1,"1933":8,"1934":8,"1935":11,"1936":14,"1937":12,"1938":6,"1939":8,"1940":2,"1948":1,"1954":19,"1976":1,"1985":5,"1993":2,"2068":2,"2226":1,"2290":19,"2418":1,"2528":8,"2832":1}}],["curved",{"2":{"1974":3}}],["curves",{"2":{"84":1,"1939":1}}],["curve",{"2":{"49":1,"74":1,"93":1,"1934":1,"1936":1,"1939":1,"2185":1,"2764":1}}],["customers",{"2":{"2567":3,"2569":1}}],["customer",{"2":{"608":1}}],["customarily",{"2":{"255":1}}],["customary",{"2":{"179":1,"255":1}}],["custommk",{"2":{"102":3,"1391":1}}],["customising",{"0":{"2602":1},"2":{"2602":1}}],["customisation",{"2":{"1632":1}}],["customisations",{"2":{"24":1}}],["customised",{"2":{"2568":1}}],["customise",{"2":{"1322":1,"1532":1,"2598":1,"2910":1}}],["customize",{"0":{"626":1,"2002":1,"2014":1,"2586":1},"1":{"627":1,"2003":1,"2004":1,"2005":1,"2006":1},"2":{"555":1,"596":1,"626":1,"643":1,"1770":1,"1773":1,"1784":1,"2461":1,"2653":1,"2714":1,"2923":1}}],["customized",{"0":{"1470":1},"2":{"45":2,"49":1,"1472":1,"1526":1,"1855":1,"2014":1,"2094":1,"2925":1}}],["customizing",{"0":{"1527":1,"1596":1,"2419":1},"1":{"1528":1,"1597":1,"1598":1,"1599":1,"1600":1,"1601":1},"2":{"236":1,"1446":1,"2461":1}}],["customizability",{"2":{"1517":1,"2652":1}}],["customizable",{"0":{"1617":1,"1618":1},"2":{"160":1}}],["customization",{"0":{"1662":1,"2927":1},"1":{"1663":1,"1664":1},"2":{"191":1,"633":1,"651":1,"1662":1,"1664":1,"1773":1,"1777":1,"1781":1,"1990":1,"2751":1,"2931":1}}],["custom",{"0":{"592":1,"593":1,"622":1,"628":1,"745":1,"1347":1,"1471":1,"1517":1,"1551":1,"1637":1,"1702":1,"1850":1,"1952":1,"1984":1,"1992":1,"2009":1,"2013":1,"2015":1,"2088":1,"2277":1,"2289":1,"2461":1,"2868":1},"1":{"623":1,"624":1,"625":1,"629":1,"630":1,"631":1,"632":1,"1953":1},"2":{"3":1,"7":1,"15":1,"49":1,"76":1,"80":1,"112":2,"114":2,"134":1,"149":4,"160":2,"176":2,"191":3,"211":3,"236":2,"265":1,"266":2,"277":2,"285":1,"317":1,"323":2,"328":3,"333":2,"374":1,"380":1,"538":1,"567":2,"570":2,"574":3,"578":1,"593":21,"623":1,"624":3,"626":1,"629":3,"631":1,"645":2,"719":1,"743":1,"745":1,"754":1,"1289":1,"1327":1,"1335":1,"1347":2,"1364":1,"1367":1,"1414":2,"1417":1,"1429":1,"1431":1,"1446":7,"1451":1,"1462":1,"1472":2,"1485":1,"1510":3,"1517":1,"1527":1,"1533":3,"1547":1,"1551":2,"1594":1,"1602":1,"1605":4,"1617":1,"1618":2,"1625":1,"1635":1,"1636":1,"1637":1,"1664":1,"1702":3,"1719":1,"1720":1,"1721":1,"1722":1,"1734":1,"1766":2,"1767":2,"1779":1,"1781":3,"1787":1,"1796":1,"1798":1,"1837":1,"1850":10,"1855":1,"1923":1,"1924":1,"1949":3,"1952":3,"1958":1,"1962":2,"1964":1,"1965":1,"1968":1,"1984":3,"1992":1,"1993":1,"1994":1,"2013":3,"2014":1,"2015":3,"2016":2,"2069":1,"2071":2,"2076":2,"2077":1,"2079":1,"2088":10,"2094":1,"2181":1,"2225":1,"2268":2,"2288":3,"2297":1,"2309":3,"2318":1,"2319":1,"2330":1,"2331":1,"2375":2,"2396":1,"2414":1,"2418":6,"2422":1,"2425":1,"2457":1,"2461":3,"2561":2,"2563":1,"2572":1,"2578":1,"2579":2,"2580":1,"2582":1,"2591":1,"2611":1,"2612":1,"2617":1,"2619":1,"2652":1,"2662":1,"2745":1,"2746":10,"2751":2,"2760":1,"2774":1,"2799":1,"2854":1,"2857":1,"2858":1,"2859":1,"2864":2,"2868":4,"2871":1,"2872":4,"2877":1,"2878":1,"2880":1,"2883":1,"2907":1,"2908":1,"2912":2,"2948":1}}],["cl",{"2":{"2526":5,"2552":5,"2561":2,"2564":1}}],["clk",{"2":{"2038":2,"2288":1,"2495":1,"2875":1}}],["cled",{"2":{"1846":1,"1850":1,"2082":1}}],["clearly",{"2":{"2567":1,"2568":1}}],["clearpageremainder",{"2":{"1954":1,"2290":1}}],["clears",{"2":{"1428":1,"1621":1,"1954":1,"2290":1,"2764":1}}],["clearing",{"2":{"1349":1,"1517":1,"1544":3,"2182":6}}],["cleared",{"2":{"651":1,"2685":1,"2686":1}}],["clearer",{"2":{"16":1}}],["clear",{"0":{"1458":1,"1459":1,"1460":1,"1706":1,"2020":1},"2":{"149":2,"188":1,"191":5,"199":1,"231":1,"620":1,"651":1,"1348":3,"1364":2,"1387":1,"1428":1,"1458":1,"1459":1,"1460":1,"1472":2,"1605":6,"1625":2,"1706":1,"1730":1,"1732":1,"1948":1,"1954":1,"1955":3,"1994":1,"2020":1,"2253":1,"2290":1,"2508":1,"2510":5,"2511":1,"2545":1,"2548":4,"2651":2,"2707":1,"2746":1,"2752":1,"2764":2,"2943":1}}],["cleaner",{"2":{"288":1,"2436":1}}],["cleaned",{"2":{"198":1}}],["cleaning",{"2":{"224":1,"251":1,"2427":1,"2663":1}}],["clean",{"0":{"50":1,"64":1,"75":1,"94":1,"446":1},"2":{"94":1,"114":3,"133":1,"134":2,"160":1,"191":6,"199":2,"211":5,"222":2,"236":3,"249":1,"429":1,"446":1,"455":1,"469":1,"618":1,"1409":1,"2417":3,"2663":1,"2746":1,"2941":1}}],["cleans",{"2":{"13":1,"446":1,"2417":1}}],["cleanups",{"2":{"2":1,"50":1,"149":1,"191":2,"211":3,"222":7,"236":10,"249":1,"277":1}}],["cleanup",{"0":{"2":1,"25":1,"27":1,"113":1,"133":1,"229":1,"233":1},"2":{"12":1,"25":1,"64":2,"94":1,"114":3,"149":1,"187":1,"191":2,"198":1,"199":1,"201":1,"211":4,"213":1,"224":1,"233":1,"235":1,"236":2,"249":2,"268":1,"277":1,"279":1,"308":1,"328":2,"651":1,"2567":2,"2940":1}}],["clr",{"2":{"1348":1,"1417":1,"1622":1,"2273":1,"2510":1,"2511":1,"2548":1,"2752":1,"2774":1}}],["cln",{"2":{"324":1,"325":1,"2313":1,"2316":2}}],["clusters",{"2":{"2926":1}}],["clunker",{"2":{"236":1}}],["clutter",{"2":{"2658":1}}],["cluttered",{"2":{"204":1}}],["cluttering",{"2":{"28":1}}],["club",{"2":{"114":1,"143":4,"149":1,"236":2,"285":1,"2396":2}}],["cluecard",{"2":{"111":1,"2940":1}}],["clueboards",{"2":{"2383":1}}],["clueboard",{"0":{"1320":1},"2":{"111":3,"149":1,"348":1,"375":1,"429":2,"434":2,"437":1,"454":1,"455":1,"473":2,"474":1,"484":1,"485":2,"683":3,"2414":2,"2448":2,"2449":1,"2450":7,"2560":1,"2563":1,"2583":2,"2584":1,"2629":7,"2745":1,"2851":4,"2852":3}}],["claim",{"2":{"2734":1}}],["claims",{"2":{"2733":1}}],["clauses",{"2":{"2727":2,"2740":1}}],["clause",{"2":{"2568":1,"2728":1,"2737":1}}],["clag",{"2":{"2510":1,"2548":1}}],["clayer",{"2":{"1417":1,"1430":1,"2770":2}}],["clamp",{"2":{"317":1}}],["classname",{"2":{"519":1}}],["class",{"2":{"288":1,"516":1,"534":1,"1627":1,"2603":1}}],["classic48",{"2":{"328":1}}],["classic",{"2":{"210":1,"294":1,"1379":1,"2374":1,"2733":1,"2912":1}}],["clarifications",{"2":{"339":1}}],["clarification",{"2":{"149":1,"191":1}}],["clarify",{"2":{"134":1,"2320":1}}],["claw44",{"2":{"143":2}}],["clawsome",{"2":{"102":3}}],["clangd",{"2":{"2680":1,"2682":4}}],["clang",{"0":{"1":1,"513":1},"2":{"1":1,"114":1,"132":2,"134":2,"149":1,"459":1,"513":8}}],["clogged",{"2":{"2761":1}}],["cloning",{"2":{"2410":2,"2501":1,"2607":1}}],["cloned",{"2":{"2626":1,"2662":1,"2674":1,"2681":1}}],["clones",{"2":{"271":2,"546":1,"2386":1,"2486":1,"2499":1,"2567":1,"2835":1}}],["clone",{"2":{"93":1,"421":1,"613":2,"1433":1,"2386":1,"2405":1,"2407":1,"2410":3,"2567":1,"2602":1,"2605":2,"2606":2,"2626":1,"2628":1}}],["closing",{"2":{"512":2,"2226":1,"2255":1,"2434":1}}],["closer",{"2":{"2924":1}}],["closely",{"2":{"2280":1}}],["closest",{"2":{"1538":1}}],["closes",{"2":{"403":2}}],["closed",{"2":{"402":1,"403":1,"405":1,"406":1,"407":2,"408":2,"412":2,"2291":1,"2388":1,"2466":1,"2567":1,"2568":2,"2738":1,"2742":1,"2746":1}}],["close",{"2":{"393":2,"397":1,"1651":1,"2057":1,"2059":1,"2256":3,"2257":3,"2538":3,"2622":1,"2764":6}}],["cloudline",{"2":{"211":1}}],["clocks",{"2":{"2684":1,"2685":1,"2686":1}}],["clock",{"2":{"114":1,"396":1,"561":1,"750":3,"759":3,"763":1,"765":1,"1252":5,"1294":1,"1300":1,"1949":2,"1966":1,"1967":2,"1974":2,"1978":1,"1979":1,"1981":1,"1982":1,"1983":2,"2040":1,"2041":3,"2042":2,"2043":5,"2044":2,"2179":2,"2288":1,"2503":2,"2855":1,"2875":1}}],["clockwise",{"2":{"13":2,"90":10,"647":1,"1665":1,"1668":9,"1741":1,"2051":1}}],["client",{"2":{"369":2,"1291":1,"2500":1,"2593":1,"2612":1}}],["clients",{"2":{"366":1}}],["clipping",{"0":{"2207":1},"2":{"2195":3,"2207":5}}],["clip",{"2":{"339":1}}],["click4",{"2":{"1686":1}}],["click3",{"2":{"1686":2}}],["click2",{"2":{"1686":2}}],["click1",{"2":{"1686":2}}],["clicking",{"2":{"599":3,"2410":2,"2481":1}}],["clicks",{"2":{"266":1,"1493":3,"1495":2,"1518":1,"1941":1,"2418":1,"2512":2}}],["clicky",{"2":{"236":1,"1485":1,"1493":18,"1495":9,"1641":2,"2512":9,"2856":2,"2940":2}}],["click",{"0":{"1493":1},"2":{"149":1,"353":2,"393":3,"397":2,"596":1,"616":1,"710":1,"711":2,"1364":1,"1493":3,"1686":15,"1968":1,"1971":3,"1976":1,"1977":2,"1992":1,"2298":3,"2410":1,"2433":1,"2554":1,"2576":1,"2614":1,"2615":1,"2659":3,"2662":2,"2678":2,"2681":2,"2683":1,"2795":1,"2832":1,"2876":1}}],["cli",{"0":{"173":1,"424":1,"427":1,"471":1,"475":1,"486":1,"492":1,"493":1,"1325":1,"2762":1},"1":{"425":1,"426":1,"476":1,"477":1,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1},"2":{"1":1,"94":1,"95":1,"114":6,"132":1,"134":4,"149":1,"153":1,"158":2,"160":2,"164":1,"173":1,"176":5,"191":1,"199":7,"211":3,"222":1,"236":3,"249":2,"266":1,"277":1,"285":1,"294":1,"308":2,"317":1,"328":1,"333":2,"339":1,"344":2,"354":1,"425":1,"426":1,"431":1,"465":2,"472":1,"487":2,"488":1,"489":18,"490":1,"491":3,"492":7,"493":2,"495":3,"496":6,"497":2,"498":2,"499":1,"500":8,"507":1,"525":1,"529":4,"543":3,"544":1,"665":1,"666":2,"668":1,"672":1,"673":3,"709":1,"1325":1,"1391":1,"1399":1,"2382":1,"2383":1,"2388":1,"2390":1,"2391":1,"2394":2,"2397":3,"2400":2,"2402":2,"2404":2,"2508":1,"2584":1,"2593":1,"2599":1,"2604":1,"2616":1,"2620":1,"2623":1,"2625":1,"2626":1,"2627":1,"2628":1,"2760":1,"2764":4,"2906":1,"2908":2}}],["coating",{"2":{"2427":1}}],["coarser",{"2":{"2252":1}}],["coarse",{"2":{"102":2,"217":1}}],["coil",{"2":{"1681":1,"1685":1}}],["coworkers",{"2":{"1488":1,"1493":1}}],["cowfish",{"2":{"191":1}}],["coffee|",{"2":{"681":1}}],["coffee||make",{"2":{"681":1}}],["coffee",{"2":{"675":1,"681":1}}],["coseyfannitutti",{"2":{"2501":1}}],["cosmetic",{"2":{"2276":3}}],["cosmo",{"2":{"1357":1}}],["costing",{"2":{"1538":1,"2844":1}}],["cost",{"2":{"538":1,"1661":1,"1985":1,"2379":1,"2835":1,"2844":1,"2941":1}}],["cospad",{"2":{"102":2}}],["coding",{"0":{"512":1,"514":1,"614":1},"2":{"414":1,"513":1,"609":1,"614":2,"619":1,"2057":1,"2680":1,"2908":2}}],["coders",{"2":{"2941":1}}],["codepoints",{"2":{"2846":1}}],["codegen",{"2":{"285":1}}],["code16",{"0":{"1457":4},"2":{"149":1,"176":1,"196":1,"324":1,"325":1,"328":1,"1457":1,"1517":4,"1605":3,"1618":1,"1798":1,"2181":1,"2316":4,"2318":5,"2578":1,"2579":3,"2580":2}}],["codes",{"0":{"2005":1},"1":{"2006":1},"2":{"32":1,"176":1,"1330":1,"1417":3,"1472":2,"1493":1,"1924":1,"2259":1,"2331":1,"2418":1,"2554":2,"2602":1,"2884":1,"2948":1}}],["codebases",{"0":{"44":1,"59":1,"86":1,"102":1,"122":1,"143":1,"159":1,"168":1,"181":1,"197":1,"207":1,"217":1,"226":1,"241":1,"253":1,"270":1,"281":1,"291":1,"300":1,"311":1,"322":1},"1":{"45":1,"60":1},"2":{"2943":1}}],["codebase",{"0":{"18":1,"113":1,"133":1},"2":{"18":1,"21":1,"35":1,"60":1,"86":1,"262":1,"284":1,"514":1,"538":1,"542":1,"2744":2,"2902":1,"2945":1,"2949":1}}],["code",{"0":{"1":1,"4":1,"27":1,"33":1,"218":1,"220":1,"354":1,"539":1,"592":1,"621":1,"633":1,"634":1,"637":1,"640":1,"643":1,"648":1,"651":1,"662":1,"672":1,"673":1,"1414":1,"1429":1,"1453":1,"1454":1,"1455":1,"1456":1,"1463":1,"1924":1,"2236":1,"2300":1,"2347":1,"2354":1,"2596":1,"2673":1,"2674":1,"2677":1,"2681":1,"2682":1,"2683":1,"2933":1},"1":{"34":1,"634":1,"635":2,"636":2,"637":1,"638":2,"639":2,"640":1,"641":2,"642":2,"644":1,"645":1,"649":1,"650":1,"652":1,"653":1,"654":1,"1430":1,"1431":1,"1432":1,"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1,"2237":1,"2348":1,"2355":1,"2356":1,"2597":1,"2598":1,"2599":1,"2600":1,"2601":1,"2675":1,"2676":1,"2677":1,"2678":2,"2679":1,"2680":1,"2682":1,"2934":1,"2935":1,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1},"2":{"2":1,"3":1,"10":1,"15":1,"21":1,"22":1,"24":1,"25":1,"28":1,"31":1,"49":2,"50":4,"57":2,"64":1,"65":1,"70":1,"74":2,"75":1,"76":1,"90":13,"92":1,"93":2,"94":2,"105":6,"112":1,"113":3,"114":11,"123":1,"125":7,"132":1,"133":5,"134":10,"149":6,"160":2,"173":1,"174":1,"175":3,"176":8,"185":7,"190":2,"191":5,"194":2,"199":2,"201":1,"206":1,"211":1,"215":1,"218":1,"220":1,"222":4,"229":1,"231":1,"236":5,"243":1,"245":1,"249":1,"266":4,"268":1,"272":1,"285":2,"288":1,"294":1,"307":4,"308":1,"323":1,"328":2,"331":1,"339":1,"344":1,"353":1,"354":4,"365":2,"374":1,"378":1,"380":1,"393":1,"416":2,"443":1,"447":1,"459":3,"464":1,"465":1,"469":1,"489":1,"501":1,"504":2,"505":2,"506":2,"512":5,"513":2,"515":1,"516":1,"525":1,"528":1,"532":1,"537":1,"538":3,"539":1,"540":3,"541":4,"542":1,"555":1,"562":1,"563":1,"564":3,"576":1,"609":1,"615":2,"616":1,"619":1,"621":3,"622":1,"624":1,"626":1,"628":1,"633":1,"635":1,"641":1,"643":2,"645":1,"647":1,"649":2,"662":1,"666":1,"672":2,"673":1,"686":1,"698":2,"725":1,"753":1,"754":1,"756":1,"757":1,"761":2,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":2,"1267":2,"1284":2,"1322":1,"1327":1,"1329":1,"1330":1,"1331":1,"1341":1,"1343":1,"1348":1,"1357":1,"1361":1,"1364":1,"1366":2,"1367":3,"1388":1,"1390":1,"1392":1,"1393":1,"1406":3,"1410":2,"1417":1,"1428":1,"1429":1,"1431":1,"1438":1,"1440":1,"1447":3,"1451":1,"1454":1,"1455":4,"1456":1,"1462":4,"1463":1,"1467":1,"1471":2,"1472":1,"1486":1,"1487":1,"1532":1,"1533":1,"1534":1,"1535":2,"1540":1,"1591":2,"1593":1,"1594":1,"1617":1,"1618":3,"1626":1,"1667":1,"1668":5,"1681":1,"1713":1,"1738":1,"1742":1,"1767":1,"1837":2,"1838":1,"1851":1,"1923":1,"1946":1,"1949":1,"1953":1,"1968":1,"1983":1,"1988":2,"1989":2,"1994":1,"2006":1,"2011":1,"2012":1,"2013":4,"2015":3,"2057":1,"2090":1,"2181":1,"2194":1,"2207":1,"2237":1,"2277":1,"2281":1,"2285":1,"2288":1,"2297":3,"2300":1,"2305":1,"2317":11,"2318":1,"2319":4,"2329":4,"2330":3,"2331":7,"2332":3,"2344":1,"2345":1,"2346":1,"2348":2,"2354":1,"2356":1,"2357":1,"2371":1,"2379":1,"2395":1,"2412":1,"2413":1,"2414":1,"2415":1,"2416":2,"2418":7,"2441":1,"2450":1,"2456":4,"2457":1,"2461":1,"2464":2,"2540":3,"2557":6,"2562":1,"2564":1,"2566":3,"2567":10,"2568":7,"2569":4,"2571":1,"2573":1,"2576":1,"2578":1,"2579":2,"2592":1,"2595":1,"2602":1,"2645":2,"2653":5,"2662":2,"2673":8,"2676":2,"2677":1,"2679":1,"2680":4,"2682":5,"2683":6,"2685":2,"2686":1,"2714":1,"2725":1,"2726":4,"2728":1,"2731":2,"2733":3,"2740":1,"2741":1,"2742":1,"2746":8,"2747":1,"2749":1,"2756":2,"2764":1,"2769":1,"2789":2,"2809":2,"2811":2,"2836":1,"2893":3,"2896":1,"2901":1,"2902":1,"2906":1,"2912":1,"2913":1,"2934":1,"2935":2,"2942":1,"2943":1,"2949":5}}],["copper",{"2":{"2425":1}}],["copied",{"2":{"572":1,"2744":1}}],["copies",{"2":{"249":1,"1446":1,"2568":1}}],["copilot",{"2":{"333":1}}],["copying",{"2":{"2587":1,"2629":1,"2763":1}}],["copyrighted",{"2":{"1485":1}}],["copyrights",{"2":{"618":1}}],["copyright",{"0":{"2464":1},"2":{"414":1,"1467":1,"2464":2,"2567":1,"2714":2,"2750":2,"2902":1}}],["copypasta",{"2":{"114":1,"1440":1}}],["copy",{"0":{"511":1},"2":{"31":1,"114":1,"191":1,"367":1,"511":1,"613":1,"1348":1,"1467":1,"1532":1,"1628":1,"2400":2,"2402":2,"2404":2,"2407":2,"2410":1,"2510":2,"2548":2,"2568":1,"2579":1,"2580":1,"2584":1,"2602":1,"2603":1,"2604":1,"2605":1,"2606":1,"2607":1,"2614":1,"2744":1,"2746":1,"2750":1,"2763":1,"2795":2,"2923":1}}],["covered",{"0":{"1338":1},"2":{"1311":1,"2503":1}}],["cover",{"2":{"748":1,"1336":1,"1936":1,"2418":1,"2722":1}}],["covers",{"2":{"587":1,"675":1,"1314":1,"1342":1,"1344":1,"1532":1,"1934":1,"2281":1,"2329":1,"2418":1,"2673":1,"2730":1,"2731":1,"2793":1}}],["covering",{"2":{"222":1,"615":1,"2643":1}}],["coverage",{"2":{"134":2,"236":1}}],["co",{"2":{"211":1,"762":1,"2095":1,"2852":1}}],["cocoa40",{"2":{"143":2}}],["cooperate",{"2":{"2567":1}}],["cooperating",{"2":{"749":1}}],["cooler",{"2":{"2255":1}}],["cool",{"2":{"675":1,"681":5,"1463":2,"1464":2,"1850":10,"2088":10,"2255":1,"2427":1,"2428":2}}],["coordinate",{"2":{"312":1,"317":1,"1651":2,"1846":1,"2082":1,"2764":2}}],["coordinates",{"2":{"100":2,"114":1,"176":1,"277":1,"308":1,"1645":1,"1647":2,"1648":1,"1954":1,"1974":1,"2290":1,"2763":1}}],["cook",{"2":{"143":2,"211":1}}],["coexist",{"2":{"98":1,"283":1}}],["cozykeys",{"2":{"56":3}}],["col1",{"2":{"2466":13}}],["col0",{"2":{"2466":14}}],["col2row",{"2":{"561":3,"622":1,"639":3,"1403":1,"1407":1,"2384":2,"2391":2,"2669":2,"2719":1,"2872":1,"2876":2}}],["colons",{"2":{"2945":1}}],["colon",{"0":{"347":2},"2":{"1774":4,"2308":1,"2317":1,"2534":1,"2555":1}}],["coloured",{"2":{"1541":1}}],["colour",{"2":{"222":1,"339":1,"1541":1}}],["colorreco",{"2":{"2567":1}}],["color=false",{"2":{"2417":2}}],["colored",{"2":{"710":1}}],["colorizing",{"0":{"494":1},"2":{"491":1}}],["colorize",{"2":{"490":1,"491":1,"494":1}}],["colors",{"0":{"2089":1,"2205":1},"2":{"149":1,"214":1,"494":3,"1287":1,"1617":1,"2089":1,"2097":1,"2180":1,"2185":1,"2189":1,"2205":1,"2761":1,"2762":4,"2764":1,"2781":4}}],["color",{"0":{"702":1,"704":1,"735":1,"737":1,"812":1,"814":1,"839":1,"841":1,"871":1,"873":1,"903":1,"905":1,"938":1,"940":1,"972":1,"974":1,"1006":1,"1008":1,"1040":1,"1042":1,"1074":1,"1076":1,"1108":1,"1110":1,"1142":1,"1144":1,"1176":1,"1178":1,"1229":1,"1231":1,"1306":1,"1308":1,"2107":1,"2109":1,"2180":1},"1":{"703":1,"705":1,"736":1,"738":1,"813":1,"815":1,"840":1,"842":1,"872":1,"874":1,"904":1,"906":1,"939":1,"941":1,"973":1,"975":1,"1007":1,"1009":1,"1041":1,"1043":1,"1075":1,"1077":1,"1109":1,"1111":1,"1143":1,"1145":1,"1177":1,"1179":1,"1230":1,"1232":1,"1307":1,"1309":1,"2108":1,"2110":1},"2":{"114":1,"191":1,"199":1,"236":1,"339":2,"494":10,"641":1,"652":2,"653":2,"702":1,"704":1,"724":1,"735":1,"737":1,"800":1,"801":1,"805":1,"808":1,"812":1,"814":1,"816":1,"818":1,"822":1,"826":1,"827":1,"831":1,"834":1,"839":1,"841":1,"843":1,"845":1,"849":1,"855":1,"856":1,"863":1,"866":1,"871":1,"873":1,"875":1,"877":1,"881":1,"887":1,"888":1,"893":1,"896":1,"903":1,"905":1,"907":1,"909":1,"913":1,"919":1,"920":1,"928":1,"931":1,"938":1,"940":1,"942":1,"944":1,"948":1,"954":1,"955":1,"962":1,"965":1,"972":1,"974":1,"976":1,"978":1,"982":1,"988":1,"989":1,"996":1,"999":1,"1006":1,"1008":1,"1010":1,"1012":1,"1016":1,"1022":1,"1023":1,"1030":1,"1033":1,"1040":1,"1042":1,"1044":1,"1046":1,"1050":1,"1056":1,"1057":1,"1064":1,"1067":1,"1074":1,"1076":1,"1078":1,"1080":1,"1084":1,"1090":1,"1091":1,"1098":1,"1101":1,"1108":1,"1110":1,"1112":1,"1114":1,"1118":1,"1124":1,"1125":1,"1132":1,"1135":1,"1142":1,"1144":1,"1146":1,"1148":1,"1152":1,"1158":1,"1159":1,"1166":1,"1169":1,"1176":1,"1178":1,"1180":1,"1182":1,"1186":1,"1214":1,"1215":1,"1219":1,"1222":1,"1229":1,"1231":1,"1233":1,"1235":1,"1239":1,"1283":2,"1287":2,"1288":1,"1306":1,"1308":1,"1417":3,"1958":4,"2080":1,"2085":2,"2086":1,"2087":2,"2088":2,"2089":1,"2094":3,"2095":4,"2096":4,"2097":1,"2107":1,"2109":1,"2165":1,"2178":2,"2180":2,"2183":3,"2187":1,"2194":1,"2199":1,"2205":1,"2417":2,"2444":1,"2761":2,"2762":6,"2763":12,"2764":7,"2782":1,"2878":1}}],["col",{"0":{"1711":1},"1":{"1712":1},"2":{"199":1,"222":1,"561":1,"570":3,"632":1,"639":4,"1329":8,"1639":1,"1644":1,"1712":1,"1846":3,"1954":1,"2082":3,"2095":4,"2278":2,"2290":1,"2303":1,"2384":1,"2391":1,"2872":2,"2926":2}}],["colemak",{"0":{"2810":1},"2":{"191":1,"429":3,"1425":1,"1442":1,"1449":2,"1619":1,"2558":1,"2562":1,"2771":2,"2887":3}}],["coled",{"2":{"31":1,"34":1}}],["coln",{"2":{"176":3,"1774":2,"2316":1,"2534":1,"2555":1}}],["collectively",{"2":{"2639":1}}],["collection",{"2":{"1328":1,"1469":1}}],["collected",{"2":{"2574":1}}],["collect",{"2":{"1962":1}}],["collaborator",{"2":{"580":1,"620":1,"2743":1,"2747":1}}],["collaborators",{"2":{"163":1,"201":1,"403":2,"2477":1,"2743":1,"2744":2,"2747":2,"2749":1}}],["collisions",{"2":{"156":1,"167":1,"1431":1}}],["collision",{"2":{"134":1,"186":1,"754":1,"1319":1}}],["cols",{"2":{"111":1,"114":2,"561":1,"589":1,"639":2,"1379":1,"1446":2,"1492":1,"1699":1,"1846":2,"1924":1,"2082":2,"2095":1,"2303":1,"2312":1,"2557":1,"2562":3,"2585":1,"2669":1,"2719":3,"2720":1,"2746":1,"2872":1,"2926":3,"2938":1}}],["columner",{"2":{"241":2}}],["columns",{"0":{"2429":1},"2":{"211":1,"249":1,"512":1,"514":1,"561":3,"570":1,"1379":1,"1413":1,"1490":1,"1492":1,"2269":1,"2278":2,"2423":2,"2429":1,"2431":1,"2434":1,"2466":4,"2718":1,"2794":1,"2828":1,"2872":2,"2926":1}}],["column",{"0":{"1379":1},"2":{"55":1,"222":1,"266":1,"317":1,"351":2,"639":2,"1589":2,"1590":2,"1591":1,"1712":1,"1720":1,"1722":1,"1849":4,"1949":1,"1954":2,"2085":4,"2269":1,"2288":1,"2290":2,"2303":4,"2423":1,"2429":5,"2431":2,"2434":2,"2466":16,"2557":1,"2669":2,"2720":3,"2721":1,"2794":1,"2869":1,"2876":1,"2884":1,"2914":1,"2936":1}}],["courts",{"2":{"2734":1}}],["court",{"2":{"2291":1}}],["courtesy",{"2":{"621":1}}],["course",{"2":{"120":1,"123":1,"605":1,"1779":1,"2482":1,"2949":1}}],["couldn",{"0":{"2850":1}}],["could",{"0":{"1767":1},"2":{"211":1,"312":3,"414":1,"429":1,"433":1,"473":1,"540":2,"694":1,"696":1,"712":1,"1413":1,"1423":1,"1425":1,"1457":1,"1470":1,"1471":2,"1482":1,"1534":1,"1538":1,"1605":1,"1613":1,"1617":1,"1670":2,"1935":1,"1981":1,"2013":2,"2059":1,"2075":1,"2265":1,"2435":1,"2474":1,"2565":1,"2568":1,"2569":1,"2576":2,"2635":1,"2652":1,"2764":1,"2769":2,"2850":1,"2919":2,"2926":1,"2931":1,"2937":1}}],["couple",{"2":{"145":1,"408":1,"1349":1,"1448":1,"1485":1,"1529":1,"2071":1,"2275":1,"2294":1,"2428":1,"2431":1,"2769":1}}],["coupled",{"2":{"48":1,"119":1,"131":1}}],["count=6",{"2":{"2455":1}}],["count=30",{"2":{"2455":1}}],["counting",{"2":{"2410":2,"2794":1}}],["countries",{"2":{"1426":1}}],["counts",{"2":{"236":2,"277":1,"1983":1,"2076":1,"2310":1}}],["counteract",{"2":{"1788":1,"2928":1}}],["counterparts",{"2":{"1457":1}}],["counterpart",{"2":{"1423":1}}],["counters",{"2":{"520":1,"1413":1}}],["counter",{"2":{"114":1,"398":1,"1556":1,"1668":1,"2310":1}}],["count",{"0":{"2362":1},"1":{"2363":1},"2":{"49":2,"70":1,"111":1,"112":1,"166":1,"183":6,"191":4,"199":1,"222":3,"236":4,"249":4,"324":1,"354":2,"565":1,"670":2,"729":1,"749":1,"750":1,"754":1,"755":3,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1285":1,"1329":8,"1410":1,"1533":2,"1538":1,"1594":1,"1740":2,"1742":1,"1743":1,"1747":1,"1795":1,"1852":1,"1866":1,"1947":1,"1952":3,"1980":1,"2000":2,"2008":2,"2076":5,"2077":3,"2078":2,"2091":1,"2108":1,"2179":1,"2185":1,"2186":2,"2198":4,"2206":1,"2207":1,"2286":1,"2289":2,"2304":1,"2309":1,"2379":1,"2381":4,"2578":1,"2579":3,"2580":1,"2634":2,"2764":4,"2779":1,"2871":2,"2877":3,"2878":2}}],["corp",{"2":{"2612":1,"2615":2}}],["coral",{"2":{"2089":2,"2205":2}}],["corrupted",{"2":{"2482":1}}],["corruption",{"2":{"249":1,"2949":1}}],["corresponds",{"2":{"1538":1,"1926":1,"2298":1,"2317":1,"2502":1}}],["correspond",{"2":{"729":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1742":1,"2509":1,"2553":1,"2869":1,"2924":1,"2926":1}}],["corresponding",{"2":{"118":1,"166":1,"489":1,"696":1,"721":1,"1200":1,"1346":1,"1364":1,"1518":1,"1538":1,"1624":1,"1627":1,"1630":1,"1633":1,"1949":1,"2295":1,"2418":1,"2423":1,"2433":1,"2466":1,"2567":3,"2727":1,"2747":1,"2762":1,"2781":2,"2784":1,"2792":1,"2886":1,"2919":1,"2920":1}}],["corrected",{"2":{"458":1,"1534":1,"1535":2,"2764":1}}],["correctness",{"2":{"263":1,"2747":1}}],["corrections",{"2":{"199":1,"266":1,"317":1,"1527":2}}],["correction",{"2":{"49":1,"222":1,"236":1,"249":2,"294":1,"1527":3,"1538":1,"1539":1}}],["correct",{"2":{"11":1,"114":2,"132":1,"134":1,"149":1,"176":4,"194":1,"199":2,"211":2,"222":2,"236":1,"249":2,"294":1,"328":1,"339":1,"487":1,"596":1,"597":1,"625":2,"710":1,"711":1,"713":1,"721":1,"749":1,"1200":1,"1203":1,"1204":1,"1320":1,"1416":1,"1472":1,"1492":1,"1517":1,"1524":1,"1525":1,"1528":2,"1534":2,"1535":3,"1538":1,"1590":1,"1781":1,"1956":1,"1987":1,"2044":1,"2273":1,"2331":1,"2466":1,"2598":1,"2620":1,"2672":1,"2678":1,"2682":1,"2683":1,"2711":1,"2746":1,"2764":2}}],["correctly",{"2":{"11":1,"31":1,"34":1,"48":1,"73":1,"132":1,"191":2,"199":1,"263":2,"277":2,"333":1,"385":1,"394":1,"436":1,"749":1,"1329":1,"1367":1,"1414":1,"1528":1,"1668":1,"1962":1,"2298":1,"2434":2,"2554":1,"2576":1,"2600":1,"2603":1,"2607":1,"2677":1,"2683":3,"2746":1,"2747":1,"2763":4}}],["cor65",{"2":{"249":1}}],["cor",{"2":{"211":1,"281":4}}],["corner",{"2":{"1977":1,"2869":2}}],["corne",{"2":{"86":1,"92":1,"93":1,"191":1,"211":1,"285":1}}],["cortex",{"2":{"50":1,"134":1,"191":1,"222":1,"2683":4,"2689":1}}],["cored",{"2":{"2421":1,"2429":2}}],["cores",{"2":{"2042":1}}],["core",{"0":{"1":1,"20":1,"46":1,"47":1,"61":1,"68":1,"91":1,"106":1,"129":1,"144":1,"171":1,"187":1,"198":1,"208":1,"227":1,"242":1,"261":1,"619":1,"627":1,"2747":1,"2765":1},"1":{"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"48":1,"49":1,"50":1,"62":1,"63":1,"64":1,"69":1,"70":1,"92":1,"93":1,"94":1,"95":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"130":1,"131":1,"132":1,"133":1,"145":1,"146":1,"147":1,"148":1,"172":1,"173":1,"174":1,"175":1,"188":1,"189":1,"190":1,"209":1,"210":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"262":1,"263":1,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1},"2":{"1":2,"75":2,"113":5,"114":7,"118":1,"130":1,"133":3,"134":6,"140":1,"146":1,"149":3,"160":5,"176":3,"179":1,"187":1,"191":2,"198":1,"199":4,"211":3,"213":1,"222":2,"236":2,"249":2,"266":1,"277":1,"285":2,"294":2,"297":1,"308":2,"317":2,"327":1,"328":1,"333":3,"339":1,"403":2,"416":1,"459":3,"615":1,"618":1,"619":2,"627":1,"666":1,"714":1,"717":1,"1353":1,"1376":1,"1413":1,"1484":1,"1668":1,"1850":1,"2088":1,"2326":1,"2412":1,"2465":1,"2477":1,"2567":2,"2707":1,"2744":2,"2746":5,"2747":5,"2908":1,"2934":2,"2936":1}}],["congrats",{"2":{"2617":1}}],["congratulations",{"2":{"604":1}}],["conjunction",{"2":{"2319":1}}],["conu",{"2":{"1680":1}}],["conducted",{"2":{"2427":1}}],["conductors",{"2":{"1194":1,"1197":1,"1200":1}}],["conduct",{"0":{"621":1},"2":{"609":1,"621":2,"2896":1}}],["cond",{"2":{"532":1,"1680":1}}],["conditions",{"0":{"2075":1},"2":{"749":1,"1613":1,"1670":1,"2014":2,"2075":1,"2317":1}}],["conditional",{"0":{"532":1,"1406":1},"2":{"532":1}}],["condition",{"2":{"211":1,"277":1,"512":4,"1364":1,"1391":1,"1399":1,"2913":1}}],["concurrent",{"2":{"2761":1}}],["concurrently",{"2":{"2638":1}}],["concept",{"2":{"2684":1}}],["conceptually",{"2":{"2564":1}}],["concepts",{"2":{"113":1,"611":1,"2467":1,"2619":1,"2633":1,"2635":1,"2869":1,"2905":1,"2933":1}}],["conceived",{"2":{"2308":1}}],["concerning",{"2":{"1433":1}}],["concerns",{"2":{"312":2,"2903":1}}],["concern",{"2":{"312":1,"538":1,"2560":1,"2749":1}}],["concerned",{"2":{"263":1}}],["concreteflowers",{"2":{"281":2,"285":1}}],["concrete",{"2":{"234":1}}],["confuse",{"2":{"2459":1,"2797":1}}],["confused",{"2":{"1446":1}}],["confusion",{"2":{"271":1,"303":1,"338":1,"1668":1,"2569":1,"2794":1}}],["confusingly",{"2":{"1351":1}}],["confusing",{"2":{"243":1,"331":1,"409":1,"533":1,"541":1,"615":1,"2303":1,"2884":1}}],["conforms",{"2":{"2762":1}}],["conform",{"2":{"244":1,"619":1,"2447":1,"2460":1,"2721":1}}],["conf",{"2":{"134":1,"422":1,"1316":1,"2758":1}}],["conflicted",{"2":{"2634":1}}],["conflicting",{"0":{"1436":1},"2":{"2634":7}}],["conflicts",{"0":{"2633":1},"1":{"2634":1},"2":{"191":1,"403":2,"1470":1,"2298":1,"2632":1,"2634":1,"2638":1,"2744":4,"2746":1}}],["conflict",{"2":{"92":1,"191":1,"514":1,"1554":1,"1595":1,"2258":1,"2633":2,"2634":7}}],["confirm",{"2":{"409":1,"690":1,"710":1,"711":1,"754":1,"2569":1,"2709":1}}],["confirmed",{"2":{"32":1,"2435":1}}],["confident",{"2":{"399":1,"2847":1}}],["confidence",{"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"182":1,"399":1,"2709":1,"2747":1}}],["conficts",{"2":{"114":1}}],["configparser",{"2":{"495":2}}],["configuring",{"0":{"393":1,"397":1,"555":1,"1502":1,"1934":1,"2298":1,"2682":1},"1":{"556":1,"557":1,"558":1,"559":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1940":1},"2":{"639":1,"901":1,"936":1,"970":1,"1004":1,"1038":1,"1072":1,"1106":1,"1140":1,"1174":1,"1227":1,"1390":1,"1549":1,"2269":1,"2450":1,"2721":1,"2746":1,"2906":1}}],["configures",{"2":{"1407":1,"1486":2,"1598":1,"1678":2,"1681":3,"1742":1,"1972":3,"2275":1,"2454":1,"2855":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2861":1,"2862":1,"2863":1,"2864":1,"2865":1,"2867":1,"2870":1,"2871":1,"2873":1,"2874":1,"2875":1,"2877":1,"2878":1,"2879":1,"2880":1,"2881":1,"2883":1}}],["configured",{"0":{"564":1},"2":{"134":1,"236":1,"255":1,"256":1,"266":1,"303":1,"306":1,"315":1,"338":1,"492":1,"527":1,"561":1,"625":2,"665":1,"715":1,"716":1,"720":1,"742":1,"743":1,"744":1,"749":1,"923":3,"1094":3,"1128":3,"1197":2,"1200":1,"1213":1,"1265":1,"1285":1,"1289":1,"1297":2,"1353":1,"1407":1,"1463":1,"1474":1,"1478":1,"1487":1,"1547":1,"1592":1,"1610":1,"1678":1,"1742":2,"1776":2,"1792":1,"1959":1,"2039":1,"2046":1,"2048":1,"2070":1,"2085":1,"2095":1,"2182":1,"2190":1,"2193":1,"2213":1,"2214":1,"2217":1,"2275":1,"2558":1,"2584":1,"2594":1,"2610":1,"2616":1,"2637":3,"2677":1,"2685":2,"2686":1,"2700":1,"2701":1,"2703":1,"2722":1,"2746":1,"2756":1,"2763":13,"2858":1,"2884":1,"2912":1,"2921":1,"2927":1,"2934":1}}],["configure",{"0":{"1600":1,"2583":1,"2661":1,"2681":1},"1":{"2662":1,"2663":1,"2682":1},"2":{"76":1,"112":2,"124":1,"154":1,"186":1,"195":1,"211":1,"221":1,"308":5,"317":11,"431":1,"574":1,"623":1,"624":1,"625":1,"721":1,"728":1,"763":1,"804":1,"820":1,"822":1,"829":1,"830":1,"847":1,"849":1,"858":1,"862":1,"879":1,"881":1,"890":1,"892":1,"911":1,"913":1,"922":1,"927":1,"946":1,"948":1,"957":1,"961":1,"980":1,"982":1,"991":1,"995":1,"1014":1,"1016":1,"1025":1,"1029":1,"1048":1,"1050":1,"1059":1,"1063":1,"1082":1,"1084":1,"1093":1,"1097":1,"1116":1,"1118":1,"1127":1,"1131":1,"1150":1,"1152":1,"1161":1,"1165":1,"1184":1,"1186":1,"1195":1,"1198":1,"1201":1,"1217":1,"1218":1,"1237":1,"1239":1,"1388":1,"1403":1,"1405":1,"1415":1,"1417":2,"1484":1,"1493":1,"1545":1,"1546":1,"1551":1,"1590":1,"1593":1,"1595":1,"1598":1,"1600":1,"1609":3,"1612":1,"1667":1,"1766":1,"1779":1,"1802":1,"1836":1,"1845":1,"1983":1,"1987":1,"2048":1,"2072":1,"2081":1,"2271":1,"2272":1,"2278":1,"2298":2,"2328":1,"2415":1,"2453":1,"2454":1,"2455":2,"2456":1,"2583":1,"2584":1,"2587":1,"2616":2,"2673":1,"2697":1,"2698":1,"2703":1,"2716":1,"2720":1,"2754":1,"2771":1,"2907":1,"2908":1,"2909":1,"2912":2,"2925":1}}],["configurability",{"2":{"1777":1}}],["configurables",{"2":{"124":1,"201":1,"213":1,"302":1,"470":1}}],["configurable",{"2":{"74":1,"109":1,"134":1,"152":1,"176":1,"198":1,"210":1,"211":1,"246":1,"555":1,"717":1,"748":1,"751":1,"754":1,"755":1,"756":1,"1593":1,"1977":1,"2087":1,"2685":1,"2746":1,"2761":1,"2764":2}}],["configuratorexport",{"2":{"429":1,"430":1}}],["configurator",{"0":{"576":1,"579":1,"587":1,"595":1,"603":1,"1311":1,"2589":1,"2793":1,"2794":1,"2796":1},"1":{"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"602":1,"604":1,"605":1,"606":1,"607":1,"608":1,"1312":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"35":1,"114":1,"120":2,"154":1,"209":1,"411":1,"429":1,"430":2,"438":1,"447":1,"452":2,"453":2,"463":1,"500":2,"576":3,"578":2,"579":3,"580":1,"582":1,"583":1,"587":1,"588":3,"589":1,"591":1,"592":2,"593":1,"594":2,"595":1,"596":1,"600":1,"604":2,"608":1,"1311":1,"1336":1,"1375":1,"1441":1,"1627":1,"2414":2,"2434":1,"2450":1,"2453":1,"2477":1,"2478":1,"2589":6,"2598":1,"2599":1,"2617":1,"2710":1,"2746":2,"2793":1,"2794":4,"2795":3,"2796":3,"2797":1,"2799":1,"2851":1,"2869":1}}],["configurations",{"0":{"1519":1},"2":{"76":1,"265":1,"397":1,"433":1,"495":1,"554":1,"558":1,"619":1,"690":2,"715":1,"716":1,"749":1,"750":1,"759":1,"1519":1,"1943":1,"1968":1,"1973":1,"1988":1,"1989":1,"2316":1,"2439":1,"2669":1,"2683":1,"2704":1,"2901":1,"2929":1,"2945":4}}],["configuration",{"0":{"28":1,"112":1,"183":1,"471":1,"476":1,"477":1,"478":1,"482":1,"484":1,"485":1,"495":1,"496":1,"497":1,"498":1,"499":1,"500":1,"565":1,"663":1,"664":1,"695":1,"699":1,"726":1,"728":1,"743":1,"746":1,"747":1,"748":1,"749":1,"750":1,"751":1,"752":1,"753":1,"754":1,"755":1,"756":1,"757":1,"758":1,"759":1,"763":1,"764":1,"802":1,"804":1,"828":1,"830":1,"857":1,"862":1,"889":1,"892":1,"921":1,"927":1,"956":1,"961":1,"990":1,"995":1,"1024":1,"1029":1,"1058":1,"1063":1,"1092":1,"1097":1,"1126":1,"1131":1,"1160":1,"1165":1,"1194":1,"1197":1,"1200":1,"1206":1,"1216":1,"1218":1,"1247":1,"1248":1,"1268":1,"1269":1,"1285":1,"1289":1,"1295":1,"1372":1,"1390":1,"1403":1,"1405":1,"1406":1,"1415":1,"1466":1,"1544":1,"1547":1,"1552":1,"1555":1,"1579":1,"1580":1,"1607":1,"1625":1,"1676":1,"1699":1,"1740":1,"1799":1,"1836":1,"1845":1,"1846":1,"1926":1,"1949":1,"1950":1,"1951":1,"1960":1,"1985":1,"1987":1,"2039":1,"2056":1,"2081":1,"2082":1,"2182":1,"2211":1,"2217":1,"2221":1,"2259":1,"2260":1,"2263":1,"2268":1,"2278":1,"2288":1,"2303":1,"2322":1,"2327":1,"2379":1,"2717":1,"2718":1,"2722":1,"2723":1,"2761":1,"2853":1,"2854":1,"2909":1},"1":{"478":1,"479":1,"480":1,"481":1,"496":1,"497":1,"498":1,"499":1,"500":1,"665":1,"666":1,"667":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"727":1,"744":1,"745":1,"747":1,"748":2,"749":1,"750":1,"751":1,"752":1,"754":1,"755":1,"756":1,"757":1,"759":1,"765":1,"766":1,"803":1,"829":1,"858":1,"859":1,"860":1,"861":1,"890":1,"891":1,"922":1,"923":1,"924":1,"925":1,"926":1,"957":1,"958":1,"959":1,"960":1,"991":1,"992":1,"993":1,"994":1,"1025":1,"1026":1,"1027":1,"1028":1,"1059":1,"1060":1,"1061":1,"1062":1,"1093":1,"1094":1,"1095":1,"1096":1,"1127":1,"1128":1,"1129":1,"1130":1,"1161":1,"1162":1,"1163":1,"1164":1,"1207":1,"1208":1,"1217":1,"1286":1,"1287":1,"1288":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1404":1,"1416":1,"1417":1,"1418":1,"1419":1,"1420":1,"1545":1,"1546":1,"1548":1,"1549":1,"1550":1,"1551":1,"1553":1,"1554":1,"1556":1,"1557":1,"1608":1,"1609":1,"1610":1,"1611":1,"1612":1,"1613":1,"1614":1,"1615":1,"1616":1,"1617":1,"1618":1,"1619":1,"1620":1,"1741":1,"1742":1,"1743":1,"1800":1,"1801":1,"1802":1,"1803":1,"1950":1,"1951":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2264":1,"2265":1,"2266":1,"2267":1,"2269":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2275":1,"2276":1,"2277":1,"2278":1,"2328":1,"2719":1,"2720":1,"2723":1,"2724":1,"2910":1,"2911":1,"2912":1,"2913":1,"2914":1,"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1,"2921":1,"2922":1,"2923":1,"2924":1,"2925":1,"2926":1,"2927":1,"2928":1,"2929":1,"2930":1,"2931":1,"2932":1},"2":{"28":1,"45":1,"50":1,"65":1,"69":1,"74":1,"83":2,"114":2,"118":1,"134":2,"138":1,"141":1,"149":2,"176":1,"183":4,"194":3,"198":1,"199":1,"206":1,"211":1,"233":1,"236":3,"238":1,"251":1,"262":2,"285":1,"293":3,"305":3,"314":3,"317":2,"397":2,"431":1,"472":1,"473":2,"474":1,"475":3,"476":2,"477":2,"482":2,"483":1,"489":2,"495":4,"496":1,"497":1,"498":1,"499":3,"500":1,"504":1,"513":2,"555":4,"558":1,"564":1,"570":1,"574":1,"641":1,"663":1,"664":1,"665":1,"666":1,"717":1,"721":2,"723":1,"728":1,"744":1,"749":2,"750":2,"752":3,"754":1,"755":1,"757":1,"759":2,"764":3,"765":1,"766":1,"804":1,"830":1,"862":1,"892":1,"921":4,"927":1,"961":1,"995":1,"1024":2,"1029":1,"1058":2,"1063":1,"1092":6,"1097":1,"1126":6,"1131":1,"1160":2,"1165":1,"1171":1,"1193":1,"1194":1,"1197":1,"1198":1,"1200":2,"1201":1,"1206":1,"1213":1,"1218":1,"1248":2,"1269":1,"1297":1,"1298":1,"1299":1,"1303":2,"1372":1,"1388":1,"1390":2,"1392":1,"1393":1,"1403":1,"1405":1,"1407":1,"1466":1,"1485":1,"1502":1,"1550":1,"1556":1,"1557":1,"1607":1,"1612":2,"1668":1,"1670":2,"1835":1,"1837":1,"1846":1,"1905":1,"1926":2,"1934":1,"1946":1,"1949":1,"1974":2,"1987":4,"2082":1,"2085":1,"2165":1,"2179":1,"2199":1,"2211":1,"2259":1,"2276":1,"2278":1,"2292":2,"2303":1,"2317":1,"2432":1,"2450":2,"2453":1,"2454":1,"2567":1,"2581":1,"2616":1,"2628":1,"2672":1,"2677":1,"2683":2,"2702":1,"2703":1,"2704":1,"2709":1,"2716":1,"2722":1,"2746":12,"2851":2,"2871":1,"2878":1,"2907":1,"2912":1,"2927":1,"2937":1}}],["configs",{"2":{"50":1,"77":1,"191":1,"199":1,"249":2,"285":1,"422":1,"1985":3}}],["config",{"0":{"69":1,"77":1,"83":1,"431":1,"475":1,"560":1,"719":1,"1466":1,"1486":1,"1631":1,"1748":1,"1852":1,"2003":1,"2091":1,"2416":1,"2454":1,"2890":1},"1":{"476":1,"477":1,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1,"561":1,"562":1,"563":1,"564":1,"565":1,"566":1,"567":1,"568":1,"569":1,"570":1,"720":1,"1749":1},"2":{"4":2,"14":1,"25":1,"28":1,"31":2,"34":2,"49":1,"50":1,"70":12,"74":1,"75":1,"76":1,"77":2,"83":2,"92":1,"93":2,"95":2,"114":5,"119":1,"133":2,"134":3,"149":1,"160":4,"169":2,"170":2,"176":4,"183":6,"184":2,"191":10,"199":21,"201":1,"211":16,"222":3,"224":1,"236":10,"246":1,"249":27,"262":2,"266":5,"273":1,"277":2,"285":3,"303":1,"308":1,"317":1,"328":27,"333":4,"338":1,"339":1,"344":1,"397":3,"429":2,"431":5,"471":1,"472":1,"473":1,"474":1,"475":1,"476":2,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1,"488":1,"489":4,"495":4,"496":5,"497":2,"498":2,"499":2,"515":1,"555":2,"557":1,"558":1,"560":2,"579":1,"647":1,"660":1,"665":3,"666":2,"667":1,"669":4,"672":4,"673":4,"699":1,"717":1,"718":1,"721":2,"726":1,"727":1,"748":1,"749":2,"750":2,"751":1,"754":2,"755":2,"756":2,"759":2,"763":1,"764":1,"765":1,"766":1,"802":1,"828":1,"829":1,"857":1,"858":1,"859":1,"860":1,"861":1,"889":1,"890":1,"891":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"956":1,"957":1,"958":1,"959":1,"960":1,"990":1,"991":1,"992":1,"993":1,"994":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1195":1,"1198":1,"1201":1,"1203":1,"1204":1,"1205":1,"1206":1,"1208":1,"1209":1,"1213":1,"1216":1,"1217":1,"1248":3,"1269":1,"1285":1,"1286":1,"1287":1,"1288":1,"1297":1,"1300":1,"1301":1,"1312":1,"1313":1,"1317":1,"1319":1,"1331":1,"1354":1,"1383":1,"1392":1,"1396":1,"1405":1,"1410":1,"1412":1,"1417":21,"1419":2,"1420":12,"1433":1,"1463":1,"1466":3,"1474":1,"1477":1,"1478":1,"1479":1,"1480":2,"1481":1,"1482":1,"1483":1,"1484":1,"1485":1,"1487":1,"1488":1,"1489":1,"1490":2,"1491":1,"1492":1,"1493":1,"1501":1,"1502":2,"1503":1,"1518":1,"1522":2,"1544":1,"1545":1,"1546":1,"1579":1,"1589":1,"1590":1,"1594":2,"1595":1,"1597":1,"1598":1,"1607":1,"1612":1,"1619":1,"1625":2,"1639":1,"1661":1,"1662":1,"1663":1,"1665":1,"1666":1,"1667":1,"1676":1,"1678":1,"1680":1,"1683":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1740":1,"1741":1,"1742":1,"1743":1,"1768":1,"1786":1,"1788":2,"1792":1,"1800":1,"1801":1,"1802":1,"1803":1,"1835":1,"1836":2,"1846":4,"1849":1,"1851":1,"1921":1,"1922":1,"1924":2,"1926":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1949":1,"1962":1,"1966":1,"1967":1,"1968":1,"1977":1,"1978":1,"1979":2,"1980":1,"1982":2,"1983":2,"1985":2,"1998":1,"2001":2,"2002":1,"2013":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2049":1,"2050":2,"2056":1,"2068":1,"2082":4,"2085":1,"2086":1,"2090":1,"2095":2,"2096":1,"2179":1,"2181":1,"2182":1,"2188":1,"2189":1,"2191":2,"2192":1,"2193":1,"2206":2,"2207":1,"2221":1,"2250":1,"2259":1,"2271":2,"2272":2,"2273":1,"2274":2,"2275":1,"2276":1,"2293":1,"2301":1,"2302":1,"2303":3,"2305":1,"2309":2,"2319":1,"2322":3,"2327":1,"2328":1,"2330":1,"2331":1,"2375":1,"2384":2,"2391":2,"2414":2,"2415":1,"2416":7,"2418":4,"2451":1,"2454":23,"2558":1,"2583":3,"2597":1,"2599":1,"2600":1,"2605":1,"2606":1,"2607":1,"2650":1,"2652":1,"2685":1,"2691":1,"2694":1,"2700":1,"2702":1,"2705":1,"2714":1,"2719":1,"2723":2,"2724":1,"2746":4,"2752":1,"2759":1,"2761":1,"2763":11,"2764":2,"2771":1,"2851":1,"2880":4,"2890":3,"2891":1,"2892":1,"2894":2,"2908":1,"2910":2,"2911":1,"2912":3,"2919":2,"2920":2,"2921":2,"2922":1,"2925":1,"2928":4,"2930":4}}],["connects",{"0":{"1643":1},"2":{"1639":1,"2466":1}}],["connector",{"2":{"1398":1,"2265":1,"2494":1}}],["connectivity",{"2":{"2666":1,"2683":1}}],["connecting",{"0":{"396":1},"2":{"396":1,"923":1,"1094":1,"1128":1,"1313":1,"2265":1,"2427":2,"2483":1,"2594":1}}],["connection",{"2":{"92":1,"285":1,"308":1,"328":1,"570":1,"574":1,"1192":1,"1193":1,"1197":1,"1951":3,"2206":2,"2261":1,"2265":2,"2275":4,"2278":1,"2279":1,"2374":1,"2425":1,"2554":2,"2576":2,"2651":1,"2666":1,"2667":1,"2880":3}}],["connected",{"2":{"92":1,"149":1,"182":1,"249":1,"561":1,"565":1,"699":2,"716":1,"721":1,"726":3,"734":1,"740":1,"744":2,"802":1,"805":1,"828":1,"829":1,"831":1,"857":1,"858":1,"863":1,"889":1,"890":1,"893":1,"921":1,"922":1,"928":1,"956":1,"957":1,"962":1,"990":1,"991":1,"996":1,"1024":1,"1025":1,"1030":1,"1058":1,"1059":1,"1064":1,"1092":1,"1093":1,"1098":1,"1126":1,"1127":1,"1132":1,"1160":1,"1161":1,"1166":1,"1200":2,"1216":1,"1217":1,"1219":1,"1247":1,"1252":1,"1285":1,"1294":1,"1313":1,"1465":1,"1474":1,"1475":1,"1486":3,"1545":1,"1546":1,"1558":2,"1643":1,"1681":2,"1682":1,"1699":4,"1852":1,"1951":1,"1966":3,"1967":1,"1974":3,"1978":2,"1979":1,"1981":3,"1982":1,"1983":4,"2091":1,"2179":6,"2208":1,"2261":1,"2267":1,"2272":1,"2274":3,"2275":2,"2278":1,"2288":3,"2375":1,"2390":1,"2423":1,"2466":4,"2508":1,"2612":1,"2615":1,"2668":1,"2671":1,"2687":1,"2690":2,"2695":1,"2718":1,"2720":1,"2721":1,"2855":2,"2856":2,"2857":2,"2858":1,"2863":1,"2865":2,"2867":5,"2872":3,"2875":2,"2876":4,"2880":1,"2883":1}}],["connect",{"0":{"1644":1},"2":{"82":1,"92":1,"434":2,"763":1,"1247":1,"1268":1,"1311":1,"1313":1,"1639":1,"1644":1,"1962":2,"2263":1,"2266":1,"2267":1,"2374":1,"2428":1,"2429":1,"2430":2,"2434":1,"2483":1,"2485":1,"2487":1,"2489":1,"2494":1,"2507":1,"2508":1}}],["cons",{"2":{"2329":1,"2425":1}}],["consecutive",{"2":{"1971":5,"2320":1}}],["consequences",{"0":{"2739":1}}],["consequence",{"2":{"1423":1,"1528":1,"1593":1}}],["consequently",{"2":{"657":1}}],["consult",{"2":{"389":1,"696":1,"716":1,"754":1,"798":1,"1297":1,"2747":1}}],["consulted",{"2":{"157":1}}],["consuming",{"2":{"2590":1}}],["consumes",{"2":{"1953":1}}],["consume",{"2":{"1376":1,"1410":1}}],["consumed",{"2":{"588":1}}],["consumer",{"2":{"231":1,"236":1,"1351":1,"1357":1,"2283":1,"2549":1}}],["consumer2rn42",{"2":{"50":1}}],["consumer2bluefruit",{"2":{"50":1}}],["consumption",{"2":{"134":1,"211":1,"561":1,"648":1,"2454":3}}],["consist",{"2":{"2296":1}}],["consisting",{"2":{"1443":1,"2449":1}}],["consists",{"2":{"366":1,"472":1,"2869":1}}],["consistency",{"2":{"50":1,"114":2,"160":1,"183":1,"233":1,"285":1,"327":1,"512":1,"521":1,"529":1,"616":1,"623":1,"2744":2}}],["consistently",{"2":{"94":1,"176":2,"190":1,"191":1,"1287":1}}],["consistent",{"2":{"49":1,"191":1,"199":1,"293":1,"305":1,"314":1,"512":1,"561":1,"656":1,"674":1,"2763":1,"2854":1}}],["considers",{"2":{"2733":1,"2919":1}}],["considering",{"2":{"1597":1,"2781":1}}],["considerations",{"0":{"1376":1,"2265":1,"2279":1,"2569":1},"1":{"2280":1},"2":{"2665":1}}],["considerably",{"2":{"113":1}}],["consider",{"0":{"416":1},"2":{"416":1,"450":1,"540":1,"613":1,"619":1,"1414":1,"1622":1,"1791":1,"2431":1,"2432":1,"2567":2,"2684":1,"2685":1,"2686":1,"2712":1,"2713":1,"2895":1}}],["considered",{"2":{"241":1,"253":1,"270":1,"281":1,"307":1,"412":2,"569":1,"659":1,"1409":1,"1410":1,"1600":1,"1762":1,"1960":1,"1968":3,"1976":2,"2051":1,"2381":1,"2450":1,"2453":1,"2749":1,"2764":1,"2777":1,"2781":1,"2919":1,"2920":1}}],["construction",{"2":{"2763":2}}],["constructed",{"2":{"2059":1}}],["constraint",{"2":{"2901":1}}],["constraints",{"0":{"2726":1,"2901":1},"2":{"123":1,"134":1,"153":1,"720":1,"1300":1,"2330":1,"2888":1,"2901":2,"2902":1}}],["constraining",{"2":{"1427":1}}],["constrain",{"2":{"176":1,"339":1,"1528":1,"1983":3,"2930":1}}],["constrained",{"2":{"123":1,"433":1,"2777":1,"2785":1,"2888":1}}],["const",{"0":{"769":1,"772":1,"778":1,"781":1,"784":1,"1259":1,"1277":1,"1715":1,"1717":1,"1721":1,"2228":1,"2230":1,"2232":1,"2234":1,"2349":1},"1":{"770":1,"771":1,"773":1,"774":1,"779":1,"780":1,"782":1,"783":1,"785":1,"786":1,"1260":1,"1261":1,"1278":1,"1716":1,"1718":1,"1722":1,"2229":1,"2231":1,"2233":1,"2235":1,"2350":1},"2":{"247":1,"272":1,"307":1,"589":1,"770":1,"773":1,"779":1,"782":1,"785":1,"1260":1,"1278":1,"1419":2,"1446":2,"1527":1,"1534":1,"1535":2,"1602":1,"1603":1,"1604":1,"1605":6,"1617":1,"1618":1,"1640":1,"1667":1,"1716":1,"1718":1,"1722":1,"1774":2,"1776":6,"1777":3,"1779":1,"1924":1,"1946":1,"1947":1,"1954":13,"2187":7,"2189":6,"2191":3,"2229":1,"2231":1,"2233":1,"2235":1,"2277":5,"2285":1,"2286":1,"2290":10,"2305":1,"2312":1,"2329":1,"2350":1,"2557":1,"2562":1,"2764":7}}],["constantly",{"2":{"2295":1}}],["constant",{"0":{"1937":1},"2":{"191":1,"198":1,"519":1,"1450":1,"1498":1,"1593":1,"1934":3,"1935":2,"1937":2,"1938":1,"1939":1,"2779":2,"2787":2,"2912":1}}],["constants",{"0":{"379":1},"2":{"76":1,"188":1,"191":1,"285":1,"379":10,"696":1,"1423":1,"1593":1,"1788":1,"2928":1}}],["constellation",{"2":{"102":3,"114":1,"211":1}}],["consoles",{"2":{"82":1,"434":1}}],["console",{"0":{"82":1,"434":1,"1333":1},"2":{"50":1,"70":1,"82":2,"93":1,"111":1,"114":4,"119":2,"134":3,"249":1,"277":1,"308":1,"434":9,"574":2,"575":1,"625":1,"1209":1,"1322":1,"1325":1,"1329":2,"1332":2,"1333":2,"1376":1,"1387":1,"1428":2,"1535":1,"1592":1,"1624":1,"1625":7,"1627":1,"1962":4,"1975":1,"1998":1,"2418":1,"2761":2,"2946":1,"2948":1}}],["consolidating",{"2":{"251":1}}],["consolidation",{"0":{"42":1,"221":1},"2":{"50":2,"198":1,"224":1,"233":1,"266":1,"2747":1}}],["consolidated",{"0":{"1472":1},"2":{"220":1}}],["consolidate",{"0":{"204":1},"2":{"191":1,"199":1,"204":1,"211":1,"222":1,"236":1,"249":1,"285":1,"294":2,"1472":1}}],["consolidates",{"2":{"50":1}}],["contiguous",{"2":{"2207":1}}],["continually",{"2":{"1376":1}}],["continuations",{"2":{"199":1}}],["continuing",{"2":{"409":1}}],["continued",{"2":{"238":1,"262":1}}],["continues",{"2":{"133":1,"251":1,"429":1,"1597":1,"1600":1,"1985":1,"2300":1,"2634":1,"2888":1}}],["continue",{"2":{"64":1,"160":1,"240":1,"246":1,"416":1,"1446":1,"1600":2,"1791":1,"1811":1,"1911":1,"1917":1,"1940":1,"2171":1,"2177":1,"2260":1,"2331":1,"2599":1,"2634":2,"2746":1}}],["continuously",{"2":{"1791":1,"1990":1}}],["continuous",{"0":{"1688":1},"2":{"32":1,"1680":6,"1688":1,"1985":1,"1986":1,"2198":2}}],["cont",{"2":{"1680":1}}],["contoller",{"2":{"1197":1}}],["contacted",{"2":{"2567":1}}],["contacts",{"2":{"1410":1,"2429":1,"2434":1,"2466":1}}],["contact",{"0":{"1409":2},"1":{"1410":2,"1411":2,"1412":2,"1413":2,"1414":2},"2":{"596":1,"1409":5,"1651":4,"1659":1,"1660":2,"1985":1,"2427":1,"2428":3,"2466":1}}],["contained",{"2":{"487":1,"668":1,"1850":1,"2088":1,"2851":1}}],["container",{"2":{"211":1,"711":1,"712":1,"2407":2,"2599":1,"2602":1,"2782":1,"2789":1}}],["contains",{"2":{"433":3,"555":2,"557":1,"559":1,"632":1,"731":1,"807":1,"833":1,"865":1,"895":1,"930":1,"964":1,"998":1,"1032":1,"1066":1,"1100":1,"1134":1,"1168":1,"1221":1,"1281":1,"1283":1,"1362":4,"1433":3,"1633":1,"1650":1,"1746":1,"1766":1,"1983":1,"2178":1,"2296":1,"2300":1,"2427":1,"2502":1,"2603":1,"2640":1,"2652":1,"2746":1,"2777":2,"2782":1,"2784":1,"2785":2,"2788":1,"2789":1,"2790":2,"2795":3,"2851":2,"2869":2,"2871":1,"2878":1,"2926":1}}],["contain",{"2":{"236":1,"268":1,"544":1,"581":1,"588":3,"696":1,"721":1,"1433":1,"1681":1,"1818":1,"2059":1,"2329":1,"2376":1,"2452":1,"2456":2,"2457":1,"2600":1,"2717":1,"2720":1,"2744":2,"2789":1,"2945":1}}],["containing",{"0":{"423":1},"2":{"156":1,"191":2,"211":1,"265":1,"284":1,"293":1,"305":1,"307":1,"314":1,"378":1,"475":1,"564":1,"1720":1,"1722":1,"1747":1,"2057":1,"2058":1,"2059":1,"2318":1,"2349":1,"2450":1,"2474":1,"2585":1,"2610":1,"2746":1,"2747":1,"2777":1,"2784":1,"2785":1,"2886":1,"2944":1}}],["context",{"2":{"656":1,"1192":1,"1779":1,"1781":4,"2510":2,"2548":1,"2560":1,"2726":1}}],["contexts",{"2":{"540":1}}],["content",{"0":{"2437":1},"1":{"2438":1},"2":{"149":1,"266":1,"294":2,"357":1,"358":1,"359":1,"360":1,"361":5,"362":1,"376":1,"397":1,"749":1,"1332":1,"1472":1,"1627":1,"1946":1,"1948":2,"2044":1,"2287":2,"2437":1,"2453":1,"2569":1,"2597":1,"2599":1,"2634":1,"2678":1,"2759":2}}],["contents",{"2":{"50":1,"230":1,"613":2,"675":1,"677":2,"1798":1,"1954":3,"2189":1,"2206":1,"2290":1,"2504":1,"2562":1,"2634":1,"2744":1,"2763":2,"2779":1,"2780":1,"2787":1,"2795":2,"2948":1}}],["contrast",{"2":{"1796":1,"2183":1,"2283":1,"2288":2}}],["control+click",{"2":{"2678":1}}],["control+shift",{"2":{"1788":1,"2928":1}}],["control+shift+escape",{"2":{"1676":1}}],["control+a",{"2":{"1448":1}}],["control+alt+delete",{"2":{"1363":1}}],["control+right",{"2":{"710":1}}],["controls",{"0":{"1776":1},"2":{"574":1,"685":1,"727":1,"762":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1207":1,"1404":1,"1503":1,"1544":1,"1546":1,"1612":3,"1738":1,"1836":5,"2014":1,"2085":2,"2275":1,"2585":1,"2761":2,"2764":1,"2815":1}}],["controllable",{"2":{"489":1,"1546":1}}],["controlling",{"2":{"166":1,"724":1,"826":1,"855":1,"887":1,"919":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1124":1,"1158":1,"1214":1,"1781":1,"1782":1,"2002":1}}],["controlled",{"2":{"45":1,"648":1,"660":1,"1682":1,"1786":1,"1985":1,"2087":1,"2210":1,"2650":1,"2764":4}}],["controllerwords",{"2":{"191":1}}],["controllerworks",{"2":{"191":1}}],["controllers",{"2":{"50":1,"134":1,"211":1,"565":1,"721":1,"1197":1,"1388":1,"1391":1,"1399":1,"1920":1,"1953":1,"1969":1,"2179":1,"2189":1,"2261":2,"2263":1,"2265":2,"2273":5,"2278":1,"2430":1,"2706":1}}],["controller",{"0":{"2038":1,"2430":1},"1":{"2431":1},"2":{"36":2,"50":1,"92":1,"93":1,"114":1,"134":1,"176":2,"204":1,"210":1,"211":2,"222":2,"719":1,"1199":1,"1311":1,"1315":1,"1415":1,"1465":1,"1490":1,"1662":1,"1738":1,"1923":1,"1949":1,"1952":1,"1961":1,"1962":1,"1970":1,"1973":1,"1983":1,"2037":1,"2038":1,"2265":1,"2271":2,"2272":1,"2273":6,"2278":2,"2281":1,"2323":1,"2404":1,"2423":1,"2424":2,"2426":1,"2430":1,"2431":5,"2433":1,"2435":1,"2466":2,"2485":1,"2487":1,"2489":1,"2589":2,"2664":1,"2668":2,"2671":2,"2763":2,"2764":1,"2883":1,"2888":1,"2895":1}}],["control",{"0":{"265":1,"275":1,"727":1,"796":1,"820":1,"822":1,"825":1,"847":1,"849":1,"853":1,"861":1,"911":1,"913":1,"917":1,"926":1,"946":1,"948":1,"952":1,"960":1,"980":1,"982":1,"986":1,"994":1,"1014":1,"1016":1,"1020":1,"1028":1,"1048":1,"1050":1,"1054":1,"1062":1,"1096":1,"1130":1,"1164":1,"1237":1,"1239":1,"1243":1,"1380":1,"1923":1,"1940":1,"2007":1,"2008":1,"2010":1,"2013":1,"2047":1},"1":{"797":1,"798":1,"799":1,"821":1,"823":1,"848":1,"850":1,"854":1,"912":1,"914":1,"918":1,"947":1,"949":1,"953":1,"981":1,"983":1,"987":1,"1015":1,"1017":1,"1021":1,"1049":1,"1051":1,"1055":1,"1238":1,"1240":1,"1244":1,"2008":1,"2009":1,"2010":1,"2011":2,"2012":2,"2013":1},"2":{"63":1,"114":1,"149":1,"195":1,"199":2,"231":1,"236":3,"249":1,"265":1,"268":1,"275":1,"277":1,"285":1,"308":1,"331":1,"489":1,"490":1,"494":2,"525":1,"573":1,"574":2,"625":1,"669":1,"685":1,"710":2,"726":1,"796":2,"797":1,"820":2,"822":2,"825":1,"847":2,"849":2,"853":1,"857":1,"860":1,"911":2,"913":2,"917":1,"921":1,"925":1,"946":2,"948":2,"952":1,"956":1,"959":1,"980":2,"982":2,"986":1,"990":1,"993":1,"1014":2,"1016":2,"1020":1,"1024":1,"1027":1,"1048":2,"1050":2,"1054":1,"1058":1,"1061":1,"1092":1,"1095":1,"1126":1,"1129":1,"1160":1,"1163":1,"1237":2,"1239":2,"1243":1,"1266":1,"1283":1,"1303":1,"1311":1,"1363":14,"1364":3,"1380":2,"1417":1,"1443":1,"1448":2,"1457":1,"1464":1,"1472":1,"1486":4,"1491":1,"1498":1,"1503":1,"1510":1,"1541":1,"1546":1,"1551":1,"1592":1,"1676":1,"1690":1,"1776":1,"1837":1,"1844":1,"1923":1,"1940":2,"1964":1,"1968":1,"2002":1,"2007":1,"2011":1,"2013":1,"2048":1,"2080":1,"2091":1,"2178":2,"2181":1,"2187":1,"2209":1,"2210":1,"2255":1,"2256":4,"2257":2,"2298":1,"2309":1,"2317":1,"2318":1,"2319":1,"2331":1,"2379":2,"2418":2,"2427":1,"2445":1,"2460":1,"2503":1,"2510":7,"2511":1,"2526":17,"2529":16,"2530":14,"2535":14,"2538":2,"2546":2,"2549":4,"2552":17,"2575":20,"2576":2,"2612":1,"2650":1,"2651":14,"2717":1,"2752":1,"2832":1,"2856":1,"2882":1,"2889":2,"2910":1,"2919":1,"2920":1,"2921":1,"2928":1}}],["contributor",{"2":{"2739":1,"2797":1}}],["contributors",{"2":{"163":1,"609":2,"2746":1}}],["contribution",{"0":{"613":1},"2":{"609":1,"613":1,"2713":1}}],["contributions",{"2":{"609":1,"613":1,"615":1,"2739":1}}],["contributing",{"2":{"416":1,"616":1,"2410":1,"2570":1,"2632":2,"2748":1}}],["contribute",{"0":{"609":1},"1":{"610":1},"2":{"346":1,"433":1,"488":1,"542":1,"609":1,"611":1,"615":1,"2331":1,"2447":1,"2481":2}}],["contributed",{"2":{"123":1,"2308":1}}],["contrib",{"0":{"10":1,"421":1,"423":1},"2":{"10":2,"69":1,"108":1,"114":2,"134":2,"160":1,"163":1,"176":4,"191":2,"199":1,"222":1,"249":1,"294":1,"328":1,"339":3,"411":1,"419":1,"421":2,"422":1,"554":1,"2410":1,"2707":3,"2710":1,"2713":2}}],["convenient",{"2":{"1597":1,"1842":1,"1985":1,"2068":1,"2653":1,"2673":1}}],["conveniently",{"2":{"1538":1}}],["convenience",{"2":{"762":1,"2222":1,"2575":1,"2764":1}}],["conventional",{"2":{"2922":1}}],["convention",{"2":{"249":1,"591":1,"1410":5,"1637":1,"2639":1,"2696":1,"2745":1}}],["conventions",{"0":{"4":1,"512":1,"514":1,"614":1},"2":{"134":2,"243":1,"331":1,"414":1,"513":1,"609":1,"614":2,"616":1,"619":1,"1410":2,"2680":1,"2908":2}}],["convey",{"2":{"188":1,"494":1}}],["conversely",{"2":{"2912":1}}],["conversation",{"2":{"544":1,"668":1}}],["conversions",{"2":{"65":1,"77":1,"189":1,"266":25,"1407":1}}],["conversion",{"0":{"1955":1,"2691":1},"2":{"49":1,"172":1,"211":3,"691":1,"717":1,"718":1,"1288":1}}],["converts",{"2":{"167":1,"466":1,"467":1,"468":1,"2096":1,"2762":3,"2795":1,"2913":1}}],["converters",{"0":{"172":1,"189":1,"1388":1,"1389":1,"1391":1,"1399":1},"1":{"1389":1,"1390":1,"1391":1,"1392":2,"1393":2,"1394":2,"1395":2,"1396":2,"1397":2,"1398":2,"1399":1,"1400":2,"1401":2,"1402":1,"1403":1,"1404":1,"1405":1,"1406":1,"1407":1,"1408":1},"2":{"160":2,"172":1,"176":2,"189":4,"191":2,"199":1,"302":1,"304":1,"306":1,"315":1,"470":1,"1389":1,"1405":1,"2589":1}}],["converter",{"0":{"271":1,"306":1,"315":1},"2":{"114":1,"133":1,"134":1,"160":2,"176":4,"181":2,"189":2,"191":3,"199":3,"207":3,"211":1,"249":1,"271":1,"277":1,"285":1,"306":1,"308":1,"315":1,"317":1,"328":1,"685":1,"1388":1,"1389":1,"1390":3,"1392":1,"1393":1,"1403":1,"1405":1,"1406":1,"1407":2,"1678":1,"1697":1,"2763":1,"2795":1,"2797":1}}],["converted",{"2":{"22":1,"50":1,"201":1,"249":1,"443":1,"447":1,"670":1,"1417":1,"2375":1,"2584":1,"2602":1,"2746":1,"2762":1,"2800":1}}],["convert",{"0":{"304":1,"466":1,"468":1},"2":{"93":1,"114":1,"134":1,"149":4,"153":1,"160":3,"172":1,"176":1,"211":2,"236":3,"266":3,"277":2,"288":1,"304":2,"308":1,"317":2,"463":1,"1288":1,"1298":1,"1388":3,"1390":1,"1391":42,"1392":1,"1399":15,"1406":2,"1423":1,"2223":1,"2691":2,"2760":1,"2762":4,"2764":2,"2795":2,"2893":1,"2948":2}}],["converting",{"0":{"21":1},"2":{"153":1,"189":1,"251":1,"467":1,"1388":1,"1540":1,"2762":2}}],["com4",{"2":{"2683":1}}],["comx",{"2":{"2502":1}}],["com>",{"2":{"2464":4}}],["comfortably",{"2":{"1802":1}}],["comfortable",{"2":{"665":1,"672":1,"2065":1,"2317":1,"2410":1,"2910":1}}],["coming",{"2":{"228":1,"1311":4,"1612":1,"1963":1,"2466":1}}],["come",{"2":{"538":1,"1383":1,"2178":1,"2300":1,"2326":1,"2393":1,"2395":1,"2396":1,"2398":1,"2427":1,"2475":1}}],["comet46",{"2":{"143":2,"149":1,"176":1}}],["comes",{"2":{"99":1,"233":1,"494":1,"517":1,"683":1,"1479":1,"1499":1,"1686":1,"1783":1,"1791":1,"2277":1,"2383":1,"2388":1,"2434":1,"2591":1,"2619":1,"2657":1,"2764":1}}],["comb",{"2":{"231":1,"1622":5}}],["combination",{"2":{"320":1,"542":1,"543":1,"561":1,"665":1,"694":2,"710":1,"1423":1,"1595":3,"1602":1,"1624":1,"1625":1,"1667":1,"1766":1,"1770":1,"1781":2,"1787":1,"1899":1,"1900":1,"1901":1,"1902":1,"1983":1,"2153":1,"2154":1,"2155":1,"2156":1,"2663":1,"2930":1}}],["combinations",{"2":{"99":1,"294":1,"716":1,"799":1,"1389":1,"1407":1,"1676":1,"1766":2,"1787":1,"1943":1,"2068":1,"2075":1,"2381":1,"2417":1,"2575":1,"2650":1,"2930":1}}],["combining",{"2":{"176":1,"575":1,"1364":1,"1518":1,"1618":1,"2384":1,"2391":1,"2886":1,"2925":1}}],["combines",{"2":{"1516":1,"1609":1}}],["combinedmap",{"2":{"2301":1}}],["combined",{"0":{"1938":1,"1997":1},"2":{"176":1,"312":1,"555":1,"575":3,"1422":1,"1661":1,"1795":1,"1934":1,"1938":3,"1939":1,"1987":2,"1989":9,"1997":2,"1999":1,"2065":1,"2178":1,"2301":2,"2425":1,"2499":1,"2504":1,"2851":2}}],["combinedkeys",{"2":{"114":1}}],["combine",{"0":{"1795":1},"2":{"64":1,"249":1,"483":1,"518":1,"665":1,"1363":1,"1448":1,"1989":2,"1997":1,"2048":1,"2189":1,"2575":1}}],["combo\`",{"2":{"1613":1}}],["combo2",{"2":{"1602":2,"1603":1,"1604":2}}],["combo1",{"2":{"1602":2,"1603":1,"1604":2}}],["combos",{"0":{"1602":1,"1604":1,"1610":1,"1619":1,"1787":1},"1":{"1603":1,"1604":1,"1605":1,"1606":1,"1607":1,"1608":1,"1609":1,"1610":1,"1611":1,"1612":1,"1613":1,"1614":1,"1615":1,"1616":1,"1617":1,"1618":1,"1619":1,"1620":2,"1621":1,"1622":1},"2":{"46":1,"98":3,"114":2,"176":1,"211":1,"328":2,"564":2,"1602":1,"1603":1,"1604":3,"1605":5,"1608":2,"1609":10,"1610":1,"1611":1,"1612":5,"1613":3,"1614":1,"1615":2,"1616":1,"1617":2,"1618":2,"1619":3,"1622":6,"1787":3,"1796":1,"1956":1,"2907":1,"2925":2}}],["combo",{"0":{"98":1,"1608":1,"1612":1,"1613":1,"1614":1,"1615":1,"1616":1,"1620":1,"2862":1},"1":{"1615":1,"1616":1},"2":{"46":7,"98":3,"112":2,"114":1,"149":2,"160":1,"188":1,"191":1,"199":2,"203":1,"211":3,"222":1,"285":2,"339":1,"564":20,"574":2,"1594":1,"1602":9,"1603":3,"1604":6,"1605":36,"1606":7,"1608":2,"1609":5,"1610":7,"1611":1,"1612":80,"1613":12,"1614":1,"1615":2,"1616":1,"1617":19,"1618":23,"1619":1,"1620":16,"1621":9,"1622":7,"2418":1,"2608":1,"2746":1,"2762":2,"2862":3,"2940":1}}],["competitive",{"2":{"2568":1}}],["compensating",{"2":{"2051":1}}],["compensated",{"2":{"2749":1}}],["compensate",{"2":{"1410":1,"1493":1,"2051":4}}],["comprising",{"2":{"2657":1,"2869":1,"2879":1}}],["comprise",{"2":{"2585":1}}],["comprises",{"2":{"396":1}}],["compression",{"2":{"2410":1,"2777":1,"2781":4,"2785":1,"2787":3}}],["compressing",{"2":{"2410":2}}],["comprehensions",{"0":{"530":1},"2":{"530":1,"531":1}}],["comprehensive",{"2":{"505":1,"542":1}}],["compromised",{"2":{"312":1}}],["composite",{"2":{"2037":1}}],["composed",{"2":{"1609":1}}],["compose",{"2":{"222":1,"1364":1,"1835":1,"1836":2,"1838":1,"2867":2}}],["component",{"2":{"1647":2,"2730":2,"2733":1,"2782":3,"2877":1,"2878":1,"2942":1}}],["components",{"2":{"130":1,"1287":1,"1313":1,"2427":1,"2731":1,"2733":1,"2739":1,"2747":1}}],["computationally",{"2":{"1413":1}}],["computed",{"2":{"1986":1,"2378":1}}],["compute",{"2":{"191":1,"2378":1}}],["computers",{"0":{"2467":1},"1":{"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1}}],["computer",{"2":{"62":1,"600":1,"626":1,"711":1,"1381":1,"1442":1,"1443":1,"1446":1,"1453":1,"1454":1,"1493":1,"1523":3,"1625":1,"1766":1,"1788":1,"1840":1,"1938":1,"1939":1,"1962":1,"1986":2,"1990":2,"2054":1,"2085":1,"2272":1,"2410":4,"2418":1,"2477":1,"2510":2,"2549":2,"2554":1,"2572":4,"2576":1,"2590":1,"2597":1,"2637":1,"2639":1,"2650":1,"2651":1,"2775":1,"2813":1,"2846":1,"2849":1,"2921":1,"2928":1,"2934":1,"2939":1,"2945":1}}],["computing",{"2":{"143":9,"149":1,"181":2,"270":2,"277":1,"317":1}}],["companies",{"2":{"2802":1}}],["companying",{"2":{"1613":1}}],["company",{"0":{"42":1},"2":{"43":1}}],["compact",{"2":{"538":1,"684":1,"1427":1,"2575":1}}],["comparing",{"2":{"2295":1,"2939":1}}],["comparisons",{"2":{"211":1}}],["comparison",{"0":{"2914":1},"1":{"2915":1,"2916":1,"2917":1},"2":{"190":1,"191":2,"248":1,"333":1}}],["compares",{"2":{"1988":1,"2939":1}}],["compared",{"2":{"1974":1,"2568":1,"2616":1,"2746":1,"2920":1}}],["compare",{"2":{"51":1,"411":1,"2639":1,"2911":1,"2914":1}}],["compatible",{"0":{"306":1,"315":1,"545":1,"1638":1},"1":{"546":1,"547":1,"548":1,"549":1,"550":1,"551":1,"552":1,"553":1,"554":1},"2":{"132":3,"134":1,"149":1,"172":1,"199":1,"294":1,"306":2,"315":2,"320":1,"366":1,"384":1,"545":1,"554":1,"578":2,"1283":1,"1324":1,"1388":1,"1390":1,"1391":1,"1405":1,"1407":2,"1467":1,"1633":1,"1665":1,"1943":1,"1973":1,"2261":2,"2263":1,"2273":4,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":1,"2402":1,"2404":1,"2421":1,"2505":1,"2589":1,"2669":1,"2690":1,"2705":3,"2706":1,"2709":2,"2714":3,"2728":1,"2740":1,"2744":1,"2763":11,"2853":1,"2895":1,"2908":1,"2930":1}}],["compatiblitly",{"2":{"75":1}}],["compatibility",{"0":{"1384":1,"1385":1,"1407":1,"1408":1,"2262":1},"1":{"1386":1,"1408":1},"2":{"31":1,"34":1,"98":1,"114":1,"176":1,"249":1,"262":1,"273":1,"276":1,"285":1,"293":1,"305":1,"312":1,"314":1,"316":1,"331":1,"514":1,"516":1,"575":1,"720":1,"1389":1,"1403":1,"1407":2,"1550":1,"2260":1,"2331":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2398":1,"2400":1,"2402":1,"2404":1,"2567":1,"2707":1,"2709":1,"2744":1,"2746":2}}],["compilable",{"2":{"2450":6}}],["compilation",{"0":{"132":1,"302":1,"470":1},"2":{"36":1,"88":2,"104":2,"114":2,"127":2,"132":3,"134":6,"149":4,"170":1,"176":6,"191":2,"199":2,"211":5,"222":5,"236":2,"249":1,"254":1,"266":1,"285":1,"308":3,"317":1,"377":3,"429":5,"470":1,"538":1,"572":2,"581":1,"586":1,"601":1,"623":2,"2417":2,"2455":1,"2456":1,"2610":1,"2904":1}}],["compiliation",{"2":{"285":1,"294":1}}],["compiling",{"0":{"2609":1},"2":{"58":1,"73":2,"92":1,"134":1,"374":2,"377":1,"425":1,"429":6,"455":1,"469":1,"571":1,"572":1,"583":1,"592":1,"598":1,"615":1,"1337":1,"1395":1,"1464":1,"1472":2,"1944":1,"2210":1,"2284":1,"2297":1,"2411":1,"2417":7,"2585":1,"2764":2}}],["compiledfirmware",{"2":{"430":1}}],["compiledb",{"2":{"132":1,"134":1,"302":1,"429":2,"470":1,"2682":1}}],["compiled",{"2":{"50":1,"182":1,"211":2,"371":1,"430":1,"434":1,"572":1,"579":1,"589":1,"592":1,"1438":1,"1472":1,"2432":1,"2434":1,"2573":1,"2587":1,"2601":1,"2683":2,"2888":1,"2889":1,"2907":1,"2934":2,"2945":1}}],["compiles",{"2":{"49":1,"176":1,"199":1,"455":1,"615":1,"1468":1,"1472":1,"2417":1,"2587":1,"2726":1,"2944":1}}],["compile",{"0":{"369":1,"370":1,"371":1,"372":1,"376":1,"429":1,"455":1,"582":1,"583":1,"584":1,"601":1,"607":1,"2811":1},"2":{"24":1,"28":1,"36":2,"37":1,"43":1,"73":1,"114":8,"120":1,"132":2,"134":3,"149":1,"160":1,"176":2,"191":1,"199":3,"294":1,"302":1,"308":1,"353":1,"366":4,"369":1,"373":1,"376":3,"377":1,"378":2,"380":1,"384":1,"422":1,"429":20,"430":1,"448":1,"449":1,"450":1,"455":2,"470":1,"473":8,"479":1,"480":1,"481":2,"483":5,"485":2,"496":2,"517":3,"563":1,"578":3,"581":4,"586":1,"588":1,"593":1,"601":1,"619":3,"1377":1,"1388":1,"1395":1,"1441":1,"1466":1,"1500":1,"1503":1,"1521":1,"1522":1,"1595":1,"2294":1,"2297":1,"2397":1,"2407":1,"2410":1,"2414":1,"2417":7,"2432":3,"2501":1,"2511":1,"2587":3,"2590":1,"2599":1,"2603":1,"2607":1,"2609":3,"2616":1,"2618":1,"2629":2,"2655":1,"2672":1,"2678":1,"2682":3,"2683":1,"2714":1,"2726":1,"2752":2,"2827":2,"2851":1,"2906":1,"2947":1}}],["compilers",{"2":{"2731":1}}],["compiler",{"0":{"365":1,"586":1},"2":{"21":1,"73":1,"149":1,"191":1,"199":1,"308":1,"365":1,"367":1,"382":1,"582":1,"585":2,"586":1,"1446":1,"1470":1,"2455":1,"2590":1,"2730":1,"2943":1,"2945":1}}],["comply",{"2":{"581":1,"2465":1}}],["complicated",{"2":{"540":1,"1415":1,"1416":1,"1423":1,"1469":1,"1492":1,"1605":1,"2309":1,"2423":1,"2564":1,"2576":1,"2612":1}}],["compliance",{"2":{"222":1,"263":1,"2566":1,"2567":1,"2739":1,"2742":1}}],["compliant",{"2":{"24":1}}],["compliation",{"2":{"114":1}}],["complaints",{"2":{"154":1}}],["complements",{"2":{"2070":1}}],["complementary",{"2":{"93":1,"249":1,"294":1,"721":2,"1303":4}}],["completing",{"2":{"2428":1,"2434":1}}],["completion",{"0":{"507":1},"1":{"508":1,"509":1,"510":1,"511":1},"2":{"279":1,"507":1,"508":1,"510":1,"799":1,"2653":1,"2673":1}}],["completes",{"2":{"1804":1,"2466":1,"2913":1,"2939":1}}],["completed",{"2":{"581":1,"584":1,"1286":1,"1388":1,"2410":2,"2428":1,"2600":1,"2610":1,"2622":1,"2683":1,"2687":1,"2821":1,"2904":1}}],["complete",{"0":{"127":1},"2":{"70":1,"126":1,"236":2,"263":1,"344":3,"367":1,"377":2,"403":1,"507":1,"509":1,"510":3,"511":2,"672":1,"684":1,"753":1,"1205":1,"1208":1,"1248":1,"1343":1,"1492":1,"1534":1,"1796":1,"1800":1,"2319":1,"2345":1,"2369":1,"2428":1,"2430":1,"2508":1,"2586":1,"2587":1,"2604":1,"2633":1,"2659":1,"2663":1,"2716":1,"2740":1,"2744":1,"2746":1,"2870":1}}],["completely",{"2":{"49":1,"195":2,"262":1,"266":1,"564":1,"1422":1,"1485":1,"1490":1,"1522":1,"1616":1,"1661":1,"1766":2,"1779":1,"2422":1,"2428":1,"2502":1,"2558":1,"2586":1}}],["complex",{"0":{"523":1,"1347":1,"2313":1},"1":{"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"134":1,"530":1,"626":1,"671":1,"1417":1,"1451":1,"1602":1,"1641":1,"1781":1,"1850":5,"2054":1,"2088":5,"2313":1,"2423":1}}],["complexity",{"2":{"3":1,"15":1,"153":1,"211":1,"530":1,"2760":1}}],["commercial",{"2":{"2397":1,"2707":1,"2727":1,"2739":1,"2746":2}}],["commenting",{"2":{"417":1}}],["commented",{"2":{"199":1,"2746":2}}],["comment",{"2":{"92":1,"149":2,"191":2,"418":1,"512":1,"514":1,"2746":1}}],["comments",{"2":{"77":1,"114":1,"176":1,"211":1,"417":1,"505":1,"512":2,"514":2,"621":1,"1661":1,"1662":1,"1926":1,"2746":2}}],["comm",{"2":{"375":1,"589":2,"1593":1,"2510":1,"2544":1,"2563":1,"2922":1,"2923":1}}],["committee",{"2":{"2706":1}}],["committed",{"2":{"2410":1,"2601":1,"2635":1,"2640":1}}],["committing",{"2":{"615":1,"2748":1}}],["commits",{"2":{"619":1,"2634":5,"2635":1,"2637":2,"2640":1,"2676":1}}],["commit",{"0":{"2596":1,"2600":1,"2638":1},"1":{"2597":1,"2598":1,"2599":1,"2600":1,"2601":1,"2639":1,"2640":1,"2641":1},"2":{"199":1,"409":1,"411":4,"422":1,"579":1,"588":3,"589":2,"613":1,"615":2,"2410":2,"2590":1,"2592":1,"2593":1,"2595":1,"2600":3,"2601":1,"2602":1,"2608":1,"2632":1,"2633":1,"2634":9,"2635":1,"2638":1,"2640":5,"2676":1,"2748":2}}],["comms",{"2":{"176":1,"191":2,"2760":1}}],["comma",{"2":{"526":1,"527":3,"671":2,"1528":1,"1692":1,"2277":1,"2317":1,"2327":1,"2510":2,"2544":1,"2550":1,"2585":1,"2678":1}}],["commas",{"2":{"160":1,"211":1,"1633":1,"2585":1,"2745":1}}],["command+option+escape",{"2":{"1676":1}}],["command+\`",{"2":{"348":1,"1675":1}}],["commandline",{"2":{"285":1}}],["commands",{"0":{"427":1,"428":1,"451":1,"457":1,"2548":1,"2762":1},"1":{"429":1,"430":1,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":1,"438":1,"439":1,"440":1,"441":1,"442":1,"443":1,"444":1,"445":1,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"458":1,"459":1,"460":1,"461":1,"462":1,"463":1,"464":1,"465":1,"466":1,"467":1,"468":1,"469":1,"470":1},"2":{"55":1,"93":1,"114":2,"132":2,"134":1,"149":1,"153":1,"158":1,"173":1,"199":1,"333":1,"409":2,"411":1,"425":1,"429":3,"455":1,"465":2,"474":2,"499":1,"543":2,"561":1,"574":2,"1316":1,"1333":1,"1472":1,"1528":1,"1730":1,"1953":1,"1954":1,"2291":1,"2417":2,"2418":2,"2449":1,"2503":1,"2593":1,"2597":2,"2600":1,"2604":1,"2614":1,"2619":1,"2639":1,"2644":2,"2682":2,"2764":2}}],["command",{"0":{"82":1,"83":1,"173":1,"1595":1,"1623":1,"1730":2,"2460":1,"2616":1,"2644":1},"1":{"1624":1,"1625":1,"1731":2},"2":{"1":1,"10":2,"18":2,"65":1,"70":3,"82":1,"83":1,"93":1,"111":1,"114":1,"158":1,"160":1,"173":1,"176":1,"199":1,"211":2,"302":2,"308":1,"353":1,"354":2,"387":1,"393":3,"425":1,"429":2,"430":3,"431":1,"432":1,"433":1,"434":1,"435":1,"437":1,"440":1,"441":1,"442":2,"443":1,"444":1,"445":2,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"458":1,"459":2,"460":1,"461":2,"462":1,"463":1,"464":1,"465":1,"466":2,"467":2,"468":2,"469":1,"470":2,"473":2,"474":2,"475":1,"483":1,"489":1,"496":2,"513":1,"543":1,"561":1,"574":1,"589":1,"617":1,"710":2,"712":1,"764":1,"1315":2,"1322":1,"1325":1,"1349":1,"1377":2,"1388":1,"1435":1,"1468":1,"1472":2,"1592":2,"1594":1,"1595":7,"1623":3,"1624":3,"1625":6,"1730":2,"1731":2,"2258":3,"2273":1,"2288":1,"2302":1,"2331":1,"2383":2,"2386":1,"2388":2,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2407":1,"2410":2,"2417":7,"2418":1,"2460":4,"2502":2,"2503":1,"2508":3,"2510":2,"2546":2,"2575":2,"2583":1,"2584":1,"2587":1,"2589":1,"2600":1,"2603":1,"2607":2,"2608":1,"2609":1,"2613":2,"2616":3,"2619":1,"2628":5,"2629":1,"2634":2,"2639":2,"2640":1,"2644":1,"2653":1,"2655":1,"2673":1,"2678":1,"2682":4,"2714":1,"2746":1,"2762":5,"2816":1,"2889":1,"2944":1,"2949":2}}],["communicate",{"2":{"1247":1,"1316":1,"2054":1,"2264":1,"2386":1,"2506":1}}],["communicates",{"2":{"512":1,"2295":1,"2728":1}}],["communicated",{"0":{"2904":1},"2":{"414":1,"2903":1,"2904":1}}],["communicating",{"2":{"244":1,"1272":1,"1697":1,"1943":1,"2057":1,"2283":1,"2426":1}}],["communications",{"2":{"2275":1}}],["communication",{"0":{"2275":1},"2":{"30":1,"414":1,"567":1,"570":3,"1192":3,"1196":1,"1197":1,"1198":1,"1199":1,"1205":1,"1207":2,"1208":1,"1209":2,"1286":1,"1395":2,"1945":2,"1966":1,"1967":1,"1970":1,"1974":2,"1978":1,"1980":1,"1981":1,"1983":1,"2054":1,"2261":1,"2265":2,"2268":1,"2275":8,"2276":1,"2278":4,"2279":1,"2418":2,"2733":2,"2880":1}}],["community",{"0":{"288":1,"298":1,"1397":1,"1401":1,"1626":1,"1627":1,"1628":1,"1629":1,"2706":1},"1":{"1627":1,"1628":1,"1629":1,"1630":2,"1631":2,"1632":2,"1633":2,"1634":2,"1635":2,"1636":2,"1637":2,"1638":2},"2":{"70":2,"116":1,"160":1,"176":1,"199":1,"201":1,"211":25,"213":1,"236":3,"249":1,"266":2,"285":2,"288":3,"294":1,"298":1,"308":6,"312":1,"317":1,"328":2,"333":1,"414":1,"429":1,"514":1,"618":1,"627":4,"1343":4,"1391":1,"1397":1,"1398":2,"1399":1,"1401":1,"1433":4,"1436":1,"1626":1,"1627":5,"1628":1,"1629":1,"1630":2,"1633":2,"1635":1,"1636":1,"1638":2,"2308":1,"2447":1,"2477":3,"2481":1,"2566":1,"2567":3,"2568":3,"2627":1,"2642":1,"2706":1,"2746":3,"2749":1,"2852":1,"2869":2,"2896":1}}],["commonly",{"2":{"69":1,"187":1,"232":1,"526":1,"2178":1,"2194":1,"2265":1,"2317":1,"2423":1,"2725":1,"2844":1}}],["common",{"0":{"30":1,"32":1,"33":1,"80":1,"1846":1,"1974":1,"1985":1,"2082":1,"2424":1,"2727":1},"1":{"31":1,"34":1},"2":{"5":1,"8":1,"30":2,"32":1,"74":3,"75":1,"86":1,"92":1,"93":1,"94":3,"107":1,"113":1,"114":5,"133":4,"134":5,"149":2,"160":1,"176":2,"191":1,"199":2,"201":1,"204":1,"211":2,"222":1,"236":2,"248":1,"285":2,"293":1,"305":1,"314":1,"317":2,"440":1,"561":1,"564":1,"574":1,"591":1,"628":1,"656":1,"714":1,"760":1,"1245":1,"1266":1,"1272":1,"1321":1,"1333":1,"1337":1,"1376":1,"1424":1,"1440":1,"1446":1,"1470":1,"1497":1,"1503":1,"1612":1,"1615":1,"1669":1,"1948":1,"1952":1,"1961":1,"1987":2,"1993":1,"2068":1,"2079":1,"2279":1,"2287":1,"2317":1,"2326":1,"2418":1,"2433":1,"2439":1,"2455":4,"2466":1,"2508":15,"2575":1,"2616":1,"2639":1,"2714":1,"2746":1,"2762":1,"2806":1,"2808":1,"2826":1,"2848":1,"2851":1,"2934":1,"2940":1,"2944":1,"2948":2}}],["com",{"2":{"2":1,"21":1,"196":1,"211":1,"236":1,"420":1,"421":2,"574":1,"600":1,"610":1,"613":1,"683":1,"684":5,"749":7,"750":1,"1319":2,"1352":1,"1353":2,"1357":2,"1359":3,"1361":1,"1387":1,"1605":2,"1628":1,"1798":1,"1952":10,"2187":1,"2387":1,"2407":1,"2410":3,"2458":1,"2502":1,"2506":1,"2600":3,"2605":1,"2606":1,"2637":8,"2639":5,"2683":2,"2746":3,"2898":1}}],["4bpp",{"2":{"2781":2}}],["4+i",{"2":{"2764":2}}],["4t",{"2":{"2252":1}}],["4=25",{"2":{"1954":1}}],["4×",{"2":{"1665":1}}],["49",{"2":{"1527":1,"1686":1,"1968":1}}],["470ω",{"2":{"1558":1}}],["47",{"2":{"1492":1,"1686":1}}],["479b",{"2":{"377":1}}],["43",{"2":{"1492":1,"1686":1,"1968":1}}],["432",{"2":{"1490":1}}],["4352",{"2":{"613":1}}],["44",{"2":{"1492":1,"1527":1,"1686":1,"1968":1}}],["440",{"2":{"1490":1,"1493":1}}],["44100u",{"2":{"719":1}}],["42",{"0":{"1359":1},"2":{"1359":1,"1483":1,"1492":1,"1527":1,"1686":1,"2296":1,"2374":5}}],["4226",{"2":{"49":1}}],["4kib",{"2":{"2186":1}}],["4k2",{"2":{"924":1,"958":1,"992":1}}],["4k",{"2":{"859":1,"860":2,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":2,"1129":2,"1163":2}}],["4key",{"2":{"143":2}}],["451",{"2":{"2308":1}}],["45°",{"2":{"1741":1}}],["453",{"2":{"1162":2}}],["45",{"2":{"855":1,"1492":1,"1686":1,"1953":1,"2081":1}}],["45pm",{"2":{"412":1}}],["412",{"2":{"2449":1}}],["41",{"2":{"1492":1,"1686":1,"1968":1}}],["4173",{"2":{"461":1}}],["4198",{"2":{"93":1}}],["4a7b",{"2":{"376":1,"377":1}}],["4rows",{"2":{"311":1}}],["4ghz",{"2":{"285":1,"2377":3,"2516":3}}],["4pplet",{"2":{"211":3}}],["460800",{"2":{"1207":1}}],["46",{"2":{"181":2,"1492":1,"1686":1,"1968":1,"2424":1}}],["4800",{"2":{"1272":1}}],["48",{"2":{"168":1,"181":2,"211":1,"236":1,"887":1,"988":1,"1124":1,"1686":1,"1846":2,"1926":1,"1936":1,"1968":1,"2081":3,"2082":2,"2277":2,"2871":1,"2878":1}}],["4871",{"2":{"2":1}}],["40kb",{"2":{"2689":1}}],["400",{"2":{"1936":1,"1978":2,"2454":1,"2510":1,"2550":1}}],["400000",{"2":{"763":1}}],["400000l",{"2":{"561":1}}],["4000",{"2":{"665":1}}],["40ms",{"2":{"1608":1}}],["403",{"2":{"1359":2}}],["4095u",{"2":{"719":2,"1488":2}}],["4096",{"2":{"131":1,"134":1}}],["40percentclub",{"2":{"266":1,"322":4,"328":2}}],["40",{"2":{"149":1,"176":1,"211":1,"540":1,"684":1,"1492":1,"1608":1,"1686":5,"1935":1,"1937":1,"1939":1,"1968":1,"1974":1,"2086":1,"2185":1,"2694":1,"2759":1}}],["401",{"2":{"114":1}}],["4x4",{"2":{"1436":3,"2721":2,"2746":1}}],["4x5",{"2":{"222":1}}],["4x8",{"2":{"143":2}}],["4x7",{"2":{"143":2}}],["4x6",{"2":{"143":2,"149":1,"222":1,"311":8,"317":1}}],["4x",{"2":{"114":1,"1684":1,"1685":1,"1974":3}}],["4x12",{"2":{"70":1,"1436":3,"1439":1,"1492":1}}],["4",{"0":{"108":1,"405":1,"599":1,"2317":1,"2472":1,"2629":1},"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"70":1,"93":1,"108":1,"111":1,"114":5,"134":2,"188":1,"191":3,"211":2,"222":1,"236":1,"249":1,"266":2,"317":1,"339":1,"348":1,"354":2,"375":1,"412":4,"420":5,"422":1,"507":1,"512":2,"514":1,"570":1,"589":2,"688":1,"690":22,"691":1,"719":1,"726":1,"759":1,"764":2,"768":2,"828":1,"857":1,"859":1,"860":2,"889":1,"921":2,"924":2,"925":2,"956":1,"958":2,"959":2,"990":1,"992":2,"993":2,"1024":1,"1027":2,"1058":1,"1061":2,"1092":2,"1095":2,"1126":2,"1129":2,"1160":1,"1163":2,"1207":1,"1216":1,"1247":1,"1252":1,"1300":1,"1398":1,"1416":1,"1423":2,"1431":1,"1450":2,"1453":1,"1492":1,"1538":1,"1590":4,"1609":2,"1625":2,"1665":2,"1666":2,"1681":1,"1684":1,"1685":1,"1686":1,"1697":1,"1702":2,"1741":2,"1744":3,"1846":5,"1852":1,"1925":31,"1926":1,"1933":2,"1935":1,"1937":1,"1953":2,"1954":1,"1968":3,"1971":1,"1979":1,"2018":3,"2038":3,"2082":5,"2091":1,"2183":3,"2185":1,"2189":4,"2206":1,"2207":3,"2239":1,"2240":1,"2252":1,"2264":2,"2265":3,"2267":3,"2275":1,"2288":1,"2295":1,"2296":2,"2301":1,"2303":5,"2315":2,"2317":1,"2377":1,"2410":3,"2416":1,"2450":2,"2454":3,"2455":2,"2466":1,"2507":1,"2510":9,"2516":1,"2520":3,"2527":31,"2528":2,"2536":3,"2542":2,"2547":2,"2550":2,"2563":1,"2576":1,"2628":2,"2695":1,"2751":1,"2761":2,"2762":2,"2764":3,"2777":1,"2781":2,"2785":1,"2795":4,"2796":3,"2865":1,"2869":4,"2871":1,"2877":1,"2878":1,"2879":1,"2893":1,"2936":1,"2949":2}}],["p>need",{"2":{"2634":2}}],["p>",{"2":{"2634":3}}],["p>for",{"2":{"2634":1}}],["p9",{"2":{"2510":1,"2550":1,"2938":1}}],["p7",{"2":{"2510":1,"2550":1,"2938":1}}],["p5",{"2":{"2510":1,"2550":1,"2938":1}}],["p3",{"2":{"2510":1,"2550":1,"2938":1}}],["p3d",{"0":{"255":1},"2":{"211":1,"241":5,"249":1,"266":1}}],["ppls",{"2":{"2510":1,"2550":1,"2938":1}}],["pp",{"2":{"2317":1}}],["p6",{"2":{"1743":1,"2510":1,"2550":1,"2938":1}}],["p4",{"2":{"1743":1,"2510":1,"2550":1,"2938":1}}],["p2",{"2":{"1743":1,"2510":1,"2550":1,"2938":1}}],["p8",{"2":{"1743":1,"2510":1,"2550":1,"2938":1}}],["p0",{"2":{"1743":2,"2510":1,"2550":1,"2938":1}}],["p1",{"2":{"2510":1,"2550":1,"2938":1}}],["p146279",{"2":{"1379":1}}],["p1800fl",{"2":{"102":2,"114":1}}],["pqrs",{"2":{"1358":1}}],["pbr",{"2":{"2301":1}}],["pb",{"2":{"2018":32,"2536":32}}],["pb11",{"2":{"1211":1,"1212":1,"1213":1}}],["pb10",{"2":{"1211":1,"1212":1,"1213":1}}],["pb4",{"2":{"1211":1}}],["pb3",{"2":{"1211":1}}],["pb7",{"2":{"1211":1,"1212":1,"1213":1}}],["pb6",{"2":{"1211":1,"1212":1,"1213":1}}],["pnp",{"2":{"1545":1}}],["pnputil",{"2":{"712":2}}],["png",{"2":{"683":1,"2760":1,"2762":4}}],["photos",{"2":{"2612":1}}],["phonetic",{"2":{"2291":1}}],["phone",{"2":{"2265":1}}],["phrases",{"2":{"1440":1,"1446":1}}],["phpshop",{"2":{"1319":1}}],["php",{"2":{"1319":1,"1353":1,"1378":1,"1386":1,"1387":1}}],["physically",{"2":{"1287":1,"1465":1,"2453":1,"2860":1,"2914":1}}],["physical",{"0":{"1842":1,"2937":1},"1":{"1843":1},"2":{"599":2,"684":1,"1287":1,"1362":3,"1410":1,"1433":2,"1434":1,"1589":1,"1842":1,"1846":7,"2082":7,"2086":1,"2278":1,"2300":1,"2425":1,"2563":1,"2612":1,"2721":3,"2794":3,"2795":2,"2823":1,"2869":1,"2914":1,"2915":2,"2916":3,"2917":2,"2926":1,"2937":2,"2938":1}}],["phapbgs",{"2":{"2295":1,"2296":1}}],["phantagom",{"2":{"211":1}}],["phantom",{"2":{"211":1}}],["phase",{"2":{"191":1,"1252":1,"1285":3,"1295":2}}],["pjrc",{"2":{"546":2,"551":4,"709":1,"1326":1,"2388":1,"2391":1,"2488":1,"2819":1}}],["pdot",{"2":{"2510":1,"2550":1,"2938":1}}],["pd3",{"2":{"2266":1}}],["pd1",{"2":{"2266":1,"2267":1}}],["pd0",{"2":{"1382":1,"2266":1,"2267":1}}],["pd9",{"2":{"1211":1,"1212":1,"1213":1}}],["pd8",{"2":{"1211":1,"1212":1,"1213":1}}],["pd6",{"2":{"1211":1,"1213":1}}],["pd5",{"2":{"1211":1,"1213":1,"2043":1}}],["pdr",{"2":{"921":1,"925":8,"956":1,"959":9,"990":1,"993":9,"1024":1,"1027":9,"1058":1,"1061":9,"1092":1,"1095":9,"1126":1,"1129":9,"1160":1,"1163":9}}],["pdfs",{"2":{"1597":1}}],["pdf",{"2":{"285":2,"1378":1,"1382":2,"1422":1,"2523":1}}],["pd2",{"2":{"191":1,"2043":1,"2266":1}}],["pwl",{"2":{"2301":1}}],["pwr",{"2":{"1351":1,"2038":1,"2296":1,"2301":1,"2510":1,"2549":1}}],["pw88",{"2":{"222":1,"241":2}}],["pwmd4",{"2":{"1556":1}}],["pwmd2",{"2":{"1303":1}}],["pwmd1",{"2":{"721":1,"722":1,"1483":1}}],["pwmd11tim1",{"2":{"716":1}}],["pwm3360",{"2":{"149":1}}],["pwm",{"0":{"14":1,"721":1,"722":1,"739":1,"824":1,"851":1,"859":1,"883":1,"915":1,"924":1,"950":1,"958":1,"984":1,"992":1,"1018":1,"1026":1,"1052":1,"1060":1,"1086":1,"1120":1,"1154":1,"1162":1,"1188":1,"1241":1,"1293":1,"1303":1,"1481":1,"1483":1,"1548":1,"1553":1,"1556":1},"1":{"740":1,"852":1,"884":1,"916":1,"951":1,"985":1,"1019":1,"1053":1,"1087":1,"1121":1,"1155":1,"1189":1,"1242":1,"1482":1},"2":{"14":4,"49":1,"50":1,"93":1,"134":3,"160":1,"176":3,"191":2,"222":1,"236":4,"249":8,"266":1,"285":3,"339":2,"652":1,"653":1,"706":1,"715":2,"716":5,"721":10,"722":2,"723":2,"731":1,"732":3,"735":1,"739":1,"807":1,"808":4,"812":1,"816":1,"824":1,"833":1,"834":4,"839":1,"843":1,"851":1,"857":3,"859":11,"865":1,"866":4,"871":1,"875":1,"883":1,"895":1,"896":4,"903":1,"907":1,"915":1,"921":3,"924":8,"930":1,"931":4,"938":1,"942":1,"950":1,"956":3,"958":8,"964":1,"965":4,"972":1,"976":1,"984":1,"990":3,"992":8,"998":1,"999":4,"1006":1,"1010":1,"1018":1,"1024":3,"1026":7,"1032":1,"1033":4,"1040":1,"1044":1,"1052":1,"1058":3,"1060":7,"1066":1,"1067":4,"1074":1,"1078":1,"1086":1,"1100":1,"1101":4,"1108":1,"1112":1,"1120":1,"1134":1,"1135":4,"1142":1,"1146":1,"1154":1,"1160":3,"1162":10,"1168":1,"1169":4,"1176":1,"1180":1,"1188":1,"1221":1,"1222":4,"1229":1,"1233":1,"1241":1,"1289":1,"1293":2,"1303":15,"1310":1,"1392":1,"1393":1,"1474":2,"1481":3,"1483":7,"1541":2,"1546":2,"1547":1,"1548":2,"1549":2,"1550":1,"1553":2,"1554":1,"1556":11,"2431":1,"2689":1,"2695":1,"2856":2,"2857":3,"2883":2}}],["pt",{"2":{"222":3}}],["pmo",{"2":{"2567":1}}],["pmns",{"2":{"2510":1,"2550":1,"2938":1}}],["pmeg2005eh",{"2":{"2280":1}}],["pm2040",{"2":{"176":2,"277":1,"317":1,"1389":1,"1391":4}}],["pmw3325",{"2":{"1982":3}}],["pmw3320",{"0":{"1981":1},"2":{"211":1,"1981":6}}],["pmw33xx",{"0":{"273":1,"276":1,"284":1},"2":{"175":2,"176":3,"199":1,"236":1,"249":1,"273":3,"276":1,"277":1,"1983":23}}],["pmw3389",{"2":{"149":2,"199":1,"1983":1}}],["pmw3360",{"2":{"114":3,"118":1,"149":4,"160":1,"1983":1,"1985":1,"2746":1}}],["pmw",{"0":{"1982":1,"1983":2},"2":{"118":1,"339":1,"1982":1,"1983":6}}],["pcmm",{"2":{"2510":1,"2550":1}}],["pcint",{"2":{"2041":1}}],["pc",{"2":{"1358":3}}],["pc13",{"2":{"2508":1}}],["pc11",{"2":{"1211":1,"1212":1,"1213":1}}],["pc10",{"2":{"1211":1,"1212":1,"1213":1}}],["pc5",{"2":{"1211":1,"1212":1}}],["pc4",{"2":{"1211":1,"1212":1}}],["pca9505",{"2":{"176":1}}],["pca9555",{"2":{"149":1}}],["pcba",{"2":{"2895":3}}],["pcbheaven",{"2":{"2466":1}}],["pcb1",{"2":{"2404":2}}],["pcb",{"2":{"18":2,"114":1,"134":2,"176":2,"211":2,"222":2,"308":1,"311":1,"328":1,"684":2,"1196":1,"1200":1,"1329":1,"1376":1,"2383":1,"2386":1,"2388":1,"2389":2,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2422":1,"2453":1,"2483":1,"2612":4,"2690":1,"2695":1,"2714":1,"2746":1,"2794":1,"2845":1,"2852":1}}],["pcbs",{"2":{"18":1,"37":2,"114":1,"249":1,"2383":1,"2458":1,"2690":3}}],["pseudocode",{"2":{"2792":1}}],["pseudorandomly",{"2":{"2775":1}}],["pseudorandom",{"2":{"2246":1}}],["pste",{"2":{"2510":1,"2548":1}}],["pstr",{"2":{"1535":1,"1701":1,"1702":1,"1718":1,"1945":11,"1948":2,"2247":1,"2248":1,"2284":11,"2893":2}}],["psls",{"2":{"2510":1,"2550":1,"2938":1}}],["psi",{"2":{"1702":3}}],["pscr",{"2":{"375":1,"589":2,"2510":1,"2548":1,"2564":1}}],["ps",{"0":{"1378":1,"1941":1,"2037":1,"2046":1,"2875":1},"1":{"2038":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2045":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1},"2":{"133":1,"134":1,"175":1,"176":1,"191":1,"211":3,"236":1,"266":1,"285":1,"1941":1,"2037":2,"2046":1,"2875":6}}],["psp",{"2":{"118":1}}],["ps2avrgb",{"0":{"2500":1},"2":{"235":1,"1291":1,"2390":1,"2500":1,"2612":1}}],["ps2",{"2":{"114":2,"133":1,"134":1,"149":1,"222":1,"2039":2,"2040":5,"2041":9,"2042":5,"2043":17,"2044":3,"2046":17,"2047":4,"2048":10,"2049":1,"2050":4,"2051":3,"2052":2,"2053":1,"2875":1}}],["punctuation",{"0":{"1692":1,"2544":1},"2":{"1593":1,"1692":1,"2381":1}}],["pulsing",{"2":{"1686":6,"2085":2}}],["pulses",{"2":{"1665":2,"1849":9,"2085":2}}],["pulse",{"2":{"1286":3,"1541":1,"1686":1,"2085":10,"2087":1}}],["pulled",{"2":{"1297":1,"1681":1,"2384":1,"2391":1,"2669":1}}],["pulldown",{"2":{"857":3,"860":12,"921":2,"925":3,"956":2,"959":3,"990":2,"993":3,"1024":2,"1027":3,"1058":2,"1061":3,"1092":2,"1095":3,"1126":2,"1129":3,"1160":2,"1163":3,"1558":1}}],["pulls",{"2":{"367":1,"370":1,"2746":1}}],["pullup",{"2":{"134":1,"236":1,"768":2,"857":3,"860":12,"921":2,"925":3,"956":2,"959":3,"990":2,"993":3,"1024":2,"1027":3,"1058":2,"1061":3,"1092":2,"1095":3,"1126":2,"1129":3,"1160":2,"1163":3,"1297":2}}],["pulling",{"2":{"10":1,"24":1,"49":1,"1297":1,"2744":1}}],["pull",{"0":{"414":1,"2836":1},"1":{"415":1,"416":1,"417":1,"418":1},"2":{"2":1,"38":1,"45":1,"69":1,"87":1,"103":1,"126":1,"243":1,"333":1,"409":2,"411":2,"414":3,"417":1,"418":1,"421":1,"422":1,"596":1,"609":2,"613":9,"617":1,"619":1,"683":1,"749":1,"797":5,"1197":2,"1205":2,"1213":1,"1297":2,"1313":1,"1339":1,"1341":1,"1343":1,"1414":1,"1468":1,"2264":1,"2267":2,"2410":3,"2481":1,"2633":1,"2635":2,"2638":1,"2639":2,"2640":2,"2667":3,"2669":1,"2671":1,"2691":1,"2748":1,"2749":1,"2836":1,"2850":1,"2902":1,"2949":1}}],["pupdr",{"2":{"768":2}}],["puzzle",{"2":{"673":1}}],["pumps",{"2":{"1667":1}}],["pumpkinpad",{"2":{"241":1}}],["pumpkin",{"2":{"191":1,"241":1,"249":1}}],["pumkinpad",{"2":{"249":1}}],["public",{"0":{"2380":1},"2":{"249":1,"328":1,"1467":3,"2465":1,"2568":1,"2750":3}}],["publishing",{"0":{"2641":1}}],["published",{"2":{"182":2,"379":1,"712":1,"1467":1,"2452":1,"2458":1,"2750":1,"2840":1}}],["publish",{"2":{"176":1,"188":1,"191":2,"199":1,"379":1,"2641":1}}],["pushed",{"2":{"579":1,"762":1,"1413":4,"1667":1,"2764":1}}],["pushbutton",{"2":{"255":1}}],["push",{"2":{"243":1,"262":1,"402":1,"409":3,"411":3,"420":2,"421":2,"422":2,"423":2,"613":2,"797":3,"1213":1,"1297":1,"1478":1,"2410":2,"2428":1,"2593":1,"2599":1,"2600":2,"2603":1,"2608":1,"2610":2,"2637":6,"2639":4,"2640":5,"2641":2}}],["putc",{"0":{"1713":1},"1":{"1714":1}}],["puts",{"0":{"1715":1,"1717":1},"1":{"1716":1,"1718":1},"2":{"1701":1,"1702":1,"1717":1,"2511":1,"2752":1}}],["putting",{"2":{"476":1,"2418":1,"2459":1,"2474":1,"2852":1}}],["put",{"0":{"2612":1},"2":{"134":1,"182":1,"184":1,"283":1,"284":1,"509":1,"585":1,"599":1,"609":1,"615":1,"619":1,"633":1,"645":1,"710":2,"1484":1,"1791":1,"2049":1,"2050":2,"2300":1,"2315":1,"2317":2,"2330":1,"2413":1,"2434":1,"2511":1,"2569":1,"2570":1,"2572":1,"2612":1,"2746":1,"2749":1,"2751":1,"2752":1,"2795":1}}],["puca",{"2":{"134":1}}],["purchases",{"2":{"2567":1}}],["purchased",{"2":{"2505":1}}],["purchase",{"2":{"2293":1,"2567":1}}],["purple",{"2":{"2089":2,"2189":2,"2205":2,"2622":2}}],["purposes",{"2":{"461":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1947":1,"2059":1,"2286":1,"2450":1,"2504":1,"2683":1,"2795":1,"2824":1}}],["purpose",{"2":{"417":2,"491":1,"1303":1,"1467":1,"1557":1,"2276":8,"2653":1,"2673":1,"2750":1,"2761":1}}],["pur",{"2":{"921":1,"925":10,"956":1,"959":9,"990":1,"993":9,"1024":1,"1027":9,"1058":1,"1061":9,"1092":1,"1095":9,"1126":1,"1129":9,"1160":1,"1163":9}}],["purely",{"2":{"2326":1}}],["purejavahidapi",{"2":{"2057":1}}],["pure",{"2":{"293":1,"305":1,"314":1}}],["purge",{"2":{"134":1,"238":1}}],["pursuit40",{"2":{"143":2}}],["pursuit",{"2":{"109":1}}],["peer",{"2":{"2806":2}}],["peej",{"2":{"211":1}}],["peql",{"2":{"2510":1,"2550":1}}],["pepper",{"2":{"2317":3}}],["pep8",{"2":{"514":1}}],["pent",{"2":{"2510":1,"2550":1,"2938":1}}],["penalize",{"2":{"2381":1}}],["pendulum",{"2":{"2085":3,"2894":1}}],["pending",{"2":{"658":1,"659":1,"2567":2}}],["pen",{"2":{"1974":1}}],["pedal",{"2":{"1925":1,"2527":1}}],["peaks",{"2":{"2427":1}}],["peak",{"2":{"1684":1,"1685":2}}],["pearl",{"2":{"211":5}}],["pe1",{"2":{"1211":1}}],["pe0",{"2":{"1211":1}}],["pegasushoof",{"2":{"199":2}}],["petruziamini",{"2":{"266":1}}],["pet",{"2":{"191":1}}],["people",{"2":{"119":2,"164":2,"172":2,"173":1,"221":1,"231":1,"244":2,"288":1,"505":1,"540":1,"541":1,"615":1,"618":1,"619":1,"626":1,"633":1,"661":1,"665":2,"674":1,"683":1,"1321":1,"1335":1,"1344":1,"1347":1,"1368":1,"1387":1,"1421":1,"1427":1,"1497":1,"1626":1,"2405":1,"2418":1,"2435":1,"2437":1,"2447":2,"2481":1,"2564":1,"2583":2,"2589":1,"2633":1,"2748":1,"2835":1,"2897":1,"2909":1,"2910":1,"2931":1,"2947":1}}],["peiorisboards",{"2":{"102":1}}],["perpetually",{"2":{"2902":1}}],["perhaps",{"2":{"1779":1,"2926":1}}],["permitted",{"2":{"1788":1,"2741":1,"2744":1,"2745":1,"2928":1}}],["permissions",{"2":{"1315":1,"2727":1}}],["permission",{"2":{"199":1,"333":1}}],["permissive",{"0":{"2919":1},"2":{"112":2,"176":1,"564":4,"1519":1,"2316":1,"2317":1,"2854":2,"2913":1,"2915":2,"2916":3,"2917":2,"2919":11,"2920":2,"2925":5}}],["permanently",{"2":{"1690":1}}],["perks",{"2":{"1367":1}}],["perfectly",{"2":{"540":1,"2617":1}}],["perfect",{"2":{"228":1,"613":1,"1503":1}}],["perform",{"2":{"639":2,"691":1,"745":1,"1602":1,"1766":1,"1787":1,"1947":1,"1958":1,"1994":1,"2067":1,"2070":1,"2213":1,"2216":1,"2217":1,"2280":1,"2286":1,"2405":1,"2483":1,"2537":1,"2652":1,"2683":1,"2685":1,"2763":12,"2879":1,"2919":2,"2920":2}}],["performed",{"2":{"574":1,"651":1,"755":1,"756":1,"1742":1,"2502":1}}],["performs",{"2":{"169":1,"487":1,"586":1,"754":1,"755":1,"756":1,"757":1,"2065":2,"2068":2,"2384":1,"2391":1,"2934":1}}],["performing",{"2":{"134":1,"2216":2}}],["performance",{"2":{"93":1,"175":1,"176":1,"215":1,"236":1,"538":1,"643":2,"644":1,"1331":1,"1410":3,"1413":1,"1551":1,"1949":1,"1953":1,"1985":1,"2179":1,"2738":1,"2761":1}}],["perceptible",{"2":{"2936":1}}],["percentage",{"2":{"1583":1,"1586":1,"1588":1}}],["percent",{"0":{"1582":1,"1585":1,"1587":1},"1":{"1583":1},"2":{"529":1,"745":1,"2534":1,"2555":1}}],["perc",{"2":{"176":2,"2534":1,"2555":1}}],["person",{"2":{"1503":1,"2884":1}}],["personal",{"2":{"160":1,"191":1,"1319":1,"1352":1,"2410":1,"2458":1,"2460":1,"2590":2,"2594":1,"2595":1,"2600":1,"2628":1,"2630":1,"2676":1,"2745":1}}],["perspective",{"2":{"393":6,"398":1,"2643":1,"2707":1}}],["persisted",{"2":{"1926":1}}],["persistence",{"2":{"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1}}],["persistent",{"0":{"663":1,"1415":1,"2771":1,"2774":1},"1":{"1416":1,"1417":1,"1418":1,"1419":1,"1420":1},"2":{"131":1,"663":1,"1415":1,"1419":2,"1422":1,"1428":3,"1486":1,"1526":1,"1702":1,"1962":1,"2273":1,"2323":1,"2511":1,"2752":1,"2761":1,"2771":2,"2774":1,"2912":1}}],["persists",{"2":{"303":1,"338":1,"1422":1}}],["persist",{"2":{"134":1,"533":1,"560":1,"1990":1,"2327":2,"2331":1,"2418":1}}],["perimeter",{"2":{"1976":1}}],["periodic",{"2":{"2469":1}}],["periodically",{"2":{"374":1,"511":1,"581":1,"1551":1,"2310":1}}],["periods",{"2":{"1633":1,"2317":1,"2379":3}}],["period",{"2":{"112":1,"199":1,"236":1,"264":1,"265":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"399":2,"412":1,"472":1,"561":1,"655":1,"771":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"1256":1,"1258":1,"1261":1,"1264":1,"1498":2,"1517":1,"1528":1,"1544":1,"1556":2,"1608":1,"1681":1,"1762":1,"1789":1,"2379":1,"2650":1,"2759":1,"2857":1}}],["peripherals",{"0":{"2696":1},"1":{"2697":1,"2698":1,"2699":1},"2":{"118":2,"146":1,"163":1,"211":1,"229":2,"234":3,"244":1,"716":1,"753":1,"764":1,"1200":1,"1205":1,"1210":1,"1213":1,"1248":1,"1269":1,"1405":1,"1477":1,"1964":1,"2684":1,"2692":1,"2695":1,"2696":1,"2726":1,"2747":1}}],["peripheral",{"0":{"234":1},"2":{"49":1,"176":1,"191":2,"199":1,"234":1,"714":1,"716":1,"750":1,"755":3,"756":1,"759":1,"764":5,"1193":1,"1197":1,"1199":1,"1203":3,"1204":3,"1205":5,"1213":1,"1248":3,"1253":1,"1269":3,"1293":1,"1294":2,"1302":1,"1303":1,"1477":1,"2044":4,"2695":1,"2697":1,"2698":1,"2699":1,"2707":2,"2711":2,"2731":1,"2738":1}}],["per",{"0":{"1510":1,"1612":1,"1801":1,"1924":1,"2378":1,"2419":1,"2927":1,"2931":1},"1":{"2379":1,"2380":1,"2381":1},"2":{"0":1,"9":1,"19":1,"22":1,"39":1,"52":1,"63":2,"92":1,"93":1,"112":6,"114":2,"149":1,"176":1,"184":1,"191":1,"194":3,"195":2,"198":1,"199":4,"201":1,"211":1,"213":1,"224":1,"238":1,"307":1,"317":1,"516":1,"518":1,"527":1,"564":16,"588":1,"621":1,"643":1,"717":1,"749":1,"764":1,"1248":2,"1269":1,"1283":2,"1313":1,"1333":1,"1410":8,"1413":10,"1446":1,"1471":1,"1475":1,"1477":1,"1484":1,"1487":1,"1498":2,"1503":1,"1518":2,"1541":1,"1594":1,"1612":9,"1638":1,"1665":1,"1670":1,"1801":3,"1852":3,"1855":1,"1935":1,"1936":3,"1937":8,"1939":1,"1949":1,"1983":3,"2091":5,"2094":1,"2178":1,"2182":3,"2252":6,"2275":1,"2305":1,"2309":2,"2319":2,"2378":1,"2568":1,"2569":1,"2746":1,"2762":1,"2764":3,"2777":1,"2785":1,"2789":1,"2854":4,"2871":1,"2878":1,"2884":1,"2894":1,"2903":1,"2910":1,"2912":2,"2919":2,"2920":1,"2921":1,"2924":1,"2927":2,"2928":1,"2931":1,"2936":2}}],["pkg",{"2":{"2627":1}}],["pk",{"2":{"94":1,"114":1,"199":1,"1410":1,"1413":3,"2854":3}}],["pgm",{"2":{"160":1,"1612":1}}],["pgup",{"2":{"90":2,"209":1,"375":2,"589":2,"1668":2,"2068":1,"2510":1,"2548":1,"2563":1,"2564":1}}],["pgdn",{"2":{"90":2,"120":1,"209":1,"375":2,"589":2,"1441":1,"1668":2,"2068":1,"2510":1,"2548":1,"2563":1,"2564":1}}],["pywinusb",{"2":{"2057":1}}],["pyhidapi",{"2":{"2057":1,"2059":1}}],["pytest",{"0":{"465":1},"2":{"277":1,"317":1,"465":5,"501":1,"502":1,"506":1,"542":1}}],["pythonimport",{"2":{"2059":1}}],["pythonistas",{"2":{"514":1}}],["pythonfrom",{"2":{"354":1}}],["python3",{"2":{"158":1,"1528":1}}],["python",{"0":{"23":1,"464":1,"514":1},"2":{"23":1,"70":2,"76":1,"149":1,"158":1,"160":2,"285":2,"344":3,"464":2,"465":2,"489":4,"491":1,"501":1,"503":1,"505":2,"514":2,"516":1,"520":1,"525":1,"538":1,"542":1,"543":1,"544":2,"614":2,"666":3,"672":2,"673":3,"1528":1,"2057":1,"2059":1,"2762":1}}],["pyformat",{"2":{"199":1}}],["py",{"2":{"76":1,"114":1,"222":1,"344":3,"489":1,"519":1,"543":1,"544":1,"666":3,"672":1,"673":3,"2627":2}}],["pirate",{"0":{"2494":1},"1":{"2495":1},"2":{"2494":2,"2495":1}}],["piezos",{"2":{"1478":1}}],["piezo",{"2":{"716":2,"722":1,"1475":1,"1478":1,"1479":1,"1482":2}}],["piece",{"2":{"540":1,"673":1,"1364":1,"2292":1,"2434":1,"2472":1}}],["pieces",{"2":{"249":1,"540":1,"2427":2,"2619":1,"2941":1}}],["pitch",{"2":{"231":1,"1490":3,"1925":4,"2527":4}}],["pi50",{"2":{"211":2}}],["piantor",{"2":{"211":1}}],["piggy60",{"2":{"207":4,"211":2}}],["pizza65",{"2":{"191":1}}],["pizzakeyboards",{"2":{"191":1}}],["pi60",{"2":{"191":1,"236":1}}],["pio0",{"2":{"1205":1,"1302":1,"2044":1}}],["pio1",{"2":{"249":1,"1205":2,"1302":2,"2044":2}}],["pio",{"0":{"1205":1,"1292":1,"1302":1,"2044":1},"2":{"176":2,"191":3,"211":1,"249":1,"1197":1,"1198":3,"1201":3,"1205":7,"1292":2,"1295":2,"1302":2,"1393":2,"2044":4,"2692":2,"2704":4}}],["pi",{"0":{"163":1,"552":1,"1397":1,"2404":1,"2692":1},"1":{"2693":1,"2694":1,"2695":1,"2696":1,"2697":1,"2698":1,"2699":1,"2700":1,"2701":1,"2702":1,"2703":1,"2704":1,"2705":1,"2706":1},"2":{"163":1,"176":1,"189":1,"191":1,"199":1,"1198":1,"1201":1,"1205":1,"1389":2,"1391":5,"1399":5,"2044":1,"2694":1,"2695":1,"2706":1,"2895":1}}],["pipe",{"2":{"1788":1,"2534":1,"2555":1,"2928":1}}],["pipes",{"2":{"396":1}}],["pipeline",{"2":{"198":1,"1667":1,"2747":1}}],["pip",{"2":{"158":2,"1528":1}}],["pillow",{"0":{"158":1},"2":{"158":2,"160":1,"2762":1}}],["pistachio",{"2":{"134":1,"143":6,"222":1}}],["picture",{"2":{"2746":1}}],["picro",{"2":{"2706":1}}],["pic",{"2":{"2494":1}}],["picks",{"2":{"2416":1}}],["picky",{"2":{"514":1}}],["picking",{"2":{"156":1}}],["picked",{"2":{"130":2,"145":1,"163":1,"210":1,"232":1,"248":1,"582":1,"1527":1}}],["pick",{"2":{"120":1,"487":1,"494":1,"512":1,"585":1,"614":1,"694":1,"711":1,"1319":1,"1483":1,"1590":1,"1763":1,"1790":1,"1970":2,"1987":3,"2066":1,"2714":1,"2717":1,"2901":1}}],["picolibc",{"2":{"134":1,"308":1}}],["pico",{"2":{"55":15,"163":1,"191":1,"199":1,"236":1,"241":4,"308":1,"317":1,"339":1,"756":1,"2404":1,"2694":2}}],["pimoroni",{"0":{"1980":1},"2":{"114":2,"118":2,"176":1,"1980":9}}],["pixdata",{"2":{"2761":1,"2764":3}}],["pixart",{"2":{"328":1,"339":1}}],["pixels",{"2":{"1936":2,"1939":2,"1947":3,"1949":1,"1954":5,"1971":5,"2286":3,"2288":1,"2290":5,"2764":9,"2779":2,"2781":2,"2787":2}}],["pixel",{"2":{"134":1,"149":1,"176":1,"199":1,"222":2,"248":1,"277":1,"285":1,"328":1,"339":1,"1936":1,"1954":2,"2085":9,"2290":2,"2761":1,"2762":2,"2763":5,"2764":7,"2777":2,"2781":8,"2783":4,"2785":2,"2894":3}}],["pix",{"2":{"74":2}}],["pid>",{"2":{"434":1}}],["pid",{"0":{"1319":1},"1":{"1320":1},"2":{"70":1,"111":1,"169":1,"176":1,"184":1,"249":2,"266":1,"317":2,"434":1,"561":1,"712":1,"713":1,"1319":1,"1356":1,"2569":1,"2717":3,"2746":1,"2882":1}}],["pink",{"2":{"2089":2,"2205":2}}],["pinky",{"2":{"1497":1}}],["pinwheels",{"2":{"2085":3,"2894":1}}],["pinwheel",{"2":{"1849":4,"2085":12,"2894":3}}],["ping",{"0":{"793":1},"1":{"794":1,"795":1},"2":{"793":2,"2746":1}}],["pintomux",{"2":{"199":1,"693":1,"694":1}}],["pinouts",{"2":{"1395":1,"1666":1,"2424":1,"2508":1}}],["pinout",{"2":{"176":1,"570":2,"688":1,"1397":1,"1398":1,"1666":1,"2424":1,"2430":1,"2507":1,"2694":1,"2706":2}}],["pinnacle",{"2":{"118":2,"175":1,"176":2,"191":1,"1973":3,"1974":19,"1975":5,"1976":3,"1977":3,"2014":1}}],["pinxx",{"2":{"114":1}}],["pins>",{"2":{"2278":2}}],["pins",{"0":{"1546":1,"2666":1,"2667":1},"2":{"49":1,"70":1,"111":2,"112":2,"114":2,"134":1,"176":2,"191":2,"199":2,"211":1,"236":2,"249":1,"277":1,"328":1,"396":2,"561":8,"570":12,"622":1,"634":1,"635":2,"639":11,"665":1,"668":1,"685":1,"688":1,"690":4,"715":1,"721":1,"722":1,"723":1,"726":1,"727":1,"763":2,"764":2,"768":1,"805":1,"828":1,"831":1,"857":1,"860":1,"861":1,"863":1,"889":1,"893":1,"921":1,"922":1,"923":1,"925":1,"926":1,"928":1,"956":1,"957":1,"959":1,"960":1,"962":1,"990":1,"993":1,"994":1,"996":1,"1024":1,"1027":1,"1028":1,"1030":1,"1058":1,"1061":1,"1062":1,"1064":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1098":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1132":1,"1160":1,"1161":1,"1163":1,"1164":1,"1166":1,"1196":1,"1198":1,"1200":2,"1201":2,"1210":1,"1213":4,"1216":1,"1219":1,"1247":2,"1248":3,"1266":1,"1268":2,"1269":2,"1294":1,"1297":1,"1311":1,"1383":1,"1395":1,"1398":1,"1400":1,"1401":1,"1407":2,"1408":2,"1474":2,"1477":1,"1478":1,"1481":1,"1482":1,"1486":1,"1546":3,"1551":1,"1553":1,"1558":2,"1639":3,"1665":5,"1666":7,"1670":9,"1681":4,"1682":1,"1699":3,"1836":1,"1838":1,"1952":7,"1979":1,"1982":1,"1983":8,"2042":1,"2044":1,"2208":3,"2272":1,"2278":9,"2375":1,"2390":1,"2423":1,"2427":1,"2430":2,"2431":3,"2433":1,"2441":1,"2483":3,"2507":1,"2508":1,"2612":1,"2664":1,"2665":1,"2666":2,"2668":2,"2669":5,"2671":1,"2686":1,"2690":2,"2691":1,"2693":1,"2694":2,"2695":1,"2701":1,"2703":2,"2704":1,"2718":2,"2719":3,"2720":7,"2746":1,"2763":2,"2818":1,"2828":1,"2856":1,"2857":2,"2863":2,"2865":1,"2872":6,"2880":3}}],["pin",{"0":{"243":1,"306":1,"315":1,"733":2,"739":2,"1194":1,"1197":1,"1200":1,"1251":1,"1313":1,"1407":1,"1408":1,"1643":1,"2271":1,"2272":1,"2665":1,"2694":1,"2720":1},"1":{"734":2,"740":2,"1252":1,"1253":1,"1408":1,"2666":1,"2667":1,"2668":1,"2669":1},"2":{"28":2,"45":1,"70":2,"93":1,"111":1,"112":2,"114":5,"134":1,"149":1,"160":4,"172":1,"175":1,"176":2,"190":1,"191":1,"199":4,"201":3,"211":8,"222":1,"236":1,"243":33,"249":3,"266":1,"277":10,"294":1,"308":2,"339":1,"554":1,"561":5,"565":4,"568":3,"569":7,"570":1,"635":5,"639":3,"690":1,"691":1,"693":5,"694":9,"699":6,"716":1,"721":5,"722":4,"726":8,"734":3,"740":3,"744":3,"749":5,"750":2,"759":2,"764":4,"768":2,"796":1,"797":34,"802":3,"828":2,"829":1,"857":2,"858":1,"863":1,"889":2,"890":1,"893":1,"921":2,"928":1,"956":2,"962":1,"990":2,"991":1,"996":1,"1024":2,"1025":1,"1030":1,"1058":2,"1059":1,"1064":1,"1092":2,"1098":1,"1126":2,"1132":1,"1160":2,"1166":1,"1193":1,"1194":3,"1195":2,"1197":5,"1198":3,"1200":12,"1201":7,"1205":2,"1211":2,"1212":2,"1213":6,"1216":2,"1217":1,"1219":1,"1247":3,"1248":13,"1252":2,"1265":1,"1269":8,"1285":3,"1294":2,"1297":4,"1298":1,"1299":4,"1303":1,"1311":13,"1312":4,"1313":5,"1382":2,"1389":1,"1395":2,"1396":2,"1403":1,"1407":3,"1409":1,"1465":1,"1473":1,"1474":10,"1475":2,"1477":4,"1478":3,"1479":3,"1480":2,"1481":5,"1482":4,"1483":5,"1486":9,"1544":4,"1545":2,"1546":4,"1549":2,"1553":1,"1554":1,"1556":2,"1558":3,"1590":1,"1639":1,"1643":1,"1670":1,"1678":5,"1681":8,"1699":6,"1738":1,"1739":1,"1742":4,"1749":3,"1836":11,"1838":9,"1951":7,"1952":3,"1966":12,"1967":3,"1968":6,"1974":3,"1978":8,"1979":4,"1981":12,"1982":4,"1983":11,"1985":16,"2037":1,"2038":2,"2040":2,"2041":4,"2042":2,"2043":2,"2044":3,"2179":11,"2208":2,"2266":2,"2267":2,"2271":4,"2272":3,"2275":2,"2278":1,"2288":6,"2375":4,"2384":2,"2391":2,"2418":3,"2431":1,"2485":3,"2487":3,"2489":3,"2494":2,"2499":1,"2507":1,"2666":3,"2667":4,"2668":4,"2671":1,"2685":2,"2690":1,"2691":1,"2694":2,"2695":2,"2700":1,"2702":15,"2704":2,"2720":1,"2746":1,"2763":70,"2853":1,"2855":6,"2856":5,"2857":4,"2858":3,"2863":1,"2865":8,"2867":10,"2872":4,"2875":6,"2876":8,"2880":7,"2883":3}}],["pliers",{"2":{"2421":1,"2428":1}}],["pl",{"2":{"2301":3}}],["plover",{"0":{"2293":1,"2294":1},"1":{"2295":1,"2296":1,"2297":1},"2":{"1417":1,"1430":1,"1641":4,"2291":1,"2292":2,"2293":5,"2294":6,"2298":2,"2299":2,"2887":4}}],["ploopyco",{"2":{"266":1,"285":1,"291":4,"317":1}}],["ploopy",{"2":{"134":1,"199":1,"294":1}}],["ply2",{"2":{"1661":2,"2518":1}}],["ply1",{"2":{"1661":2,"2518":1}}],["ply8x",{"2":{"300":2,"308":1}}],["plywrks",{"2":{"211":1,"300":2,"308":1}}],["plump",{"2":{"2434":1}}],["pluggable",{"2":{"2265":1}}],["plugging",{"2":{"1348":1,"1589":1,"2261":1,"2265":1,"2390":1,"2612":1,"2717":1}}],["plugged",{"2":{"568":4,"710":1,"1332":1,"2325":1,"2377":1,"2516":1,"2849":1}}],["plug",{"2":{"684":1,"710":1,"1364":1,"1661":1,"2433":1,"2502":1,"2508":1,"2612":2}}],["plugins",{"0":{"2657":1,"2660":1},"1":{"2658":1,"2659":1,"2660":1},"2":{"2657":1,"2660":1}}],["plugin",{"2":{"504":1,"513":1,"2404":2,"2653":1,"2658":1,"2660":1,"2683":1}}],["plunger",{"2":{"1681":1}}],["plunge",{"2":{"288":1}}],["plus",{"2":{"143":2,"176":2,"211":2,"222":1,"226":1,"241":4,"1954":1,"2290":1,"2423":1,"2510":1,"2534":1,"2550":1,"2555":1}}],["plenty",{"2":{"547":1,"1802":1}}],["plexus75",{"2":{"143":2}}],["pleased",{"2":{"224":1}}],["please",{"2":{"14":1,"16":1,"37":1,"43":1,"49":1,"195":1,"196":1,"228":1,"240":1,"273":1,"276":1,"284":1,"302":1,"391":1,"470":1,"505":2,"512":1,"514":1,"538":1,"544":1,"594":1,"599":1,"602":1,"606":1,"607":1,"608":1,"610":2,"615":1,"616":1,"619":3,"644":1,"683":1,"696":1,"1200":1,"1290":1,"1338":2,"1339":1,"1398":1,"1414":1,"1463":1,"1467":1,"1595":1,"1634":1,"1661":1,"1662":1,"1684":1,"1685":1,"1788":1,"2037":1,"2040":1,"2057":1,"2179":1,"2189":1,"2331":1,"2415":1,"2441":1,"2452":1,"2455":1,"2461":1,"2565":1,"2567":1,"2572":1,"2589":1,"2615":1,"2633":1,"2635":1,"2696":1,"2697":1,"2698":1,"2714":2,"2715":2,"2745":1,"2749":1,"2753":1,"2754":1,"2756":1,"2896":1,"2928":1,"2942":1}}],["plastic",{"2":{"2429":1}}],["placing",{"2":{"2182":1,"2466":1}}],["placement",{"2":{"2267":1,"2317":1}}],["placeholder",{"2":{"1470":1,"1795":1}}],["placed",{"2":{"376":1,"540":1,"1298":1,"1541":1,"1558":1,"1645":1,"1949":1,"2267":1,"2280":1,"2434":1,"2454":1,"2455":1,"2466":1,"2602":1,"2609":1,"2716":1,"2746":2}}],["place",{"2":{"114":1,"176":2,"182":1,"194":1,"249":1,"284":1,"462":1,"511":1,"512":1,"533":1,"634":1,"681":2,"686":1,"1348":2,"1353":1,"1356":1,"1431":1,"1467":1,"1485":1,"1527":1,"1546":1,"1603":1,"2273":1,"2280":1,"2312":1,"2317":1,"2400":1,"2402":1,"2404":1,"2413":1,"2422":1,"2425":1,"2428":3,"2430":1,"2431":1,"2435":1,"2468":1,"2561":2,"2640":1,"2715":1,"2800":1,"2884":1,"2893":1,"2897":1,"2912":1,"2949":1}}],["places",{"2":{"111":1,"393":1,"529":1,"616":1,"669":1,"1622":1,"1648":1,"2317":1,"2505":1,"2794":1,"2926":1,"2937":1}}],["plates",{"2":{"2458":1}}],["plate",{"2":{"2421":2,"2422":4,"2425":1}}],["plat",{"2":{"133":1,"134":1}}],["platforms",{"2":{"50":1,"93":1,"137":1,"156":1,"160":1,"176":1,"191":1,"222":1,"514":1,"619":1,"796":1,"797":1,"1193":1,"1195":1,"1324":1,"2934":2}}],["platform",{"2":{"50":2,"65":1,"75":1,"111":1,"113":4,"114":4,"123":1,"133":5,"134":5,"149":1,"160":1,"163":2,"189":1,"191":1,"199":7,"211":1,"285":1,"714":1,"797":1,"1192":1,"1404":1,"1405":1,"1550":1,"1556":1,"1943":1,"2737":1,"2741":1,"2763":2,"2803":1,"2934":4,"2945":1}}],["plans",{"2":{"2947":1}}],["planning",{"0":{"2423":1},"1":{"2424":1},"2":{"2422":1,"2426":1,"2431":1,"2432":1}}],["planned",{"2":{"88":1,"619":1,"2210":1,"2421":1,"2425":1}}],["plan",{"2":{"143":2,"620":1,"677":1,"2327":2,"2423":2,"2618":1}}],["planck",{"0":{"17":1,"1320":1},"2":{"17":1,"270":2,"277":2,"393":2,"429":2,"437":1,"442":1,"452":2,"453":2,"454":1,"455":1,"684":7,"1320":1,"1343":1,"1376":4,"1430":1,"1438":4,"1439":2,"1463":2,"1480":2,"1492":2,"1527":1,"2057":1,"2249":1,"2293":1,"2303":1,"2384":2,"2391":2,"2407":2,"2410":1,"2417":8,"2423":2,"2436":1,"2449":1,"2587":4,"2602":1,"2614":2}}],["plain",{"2":{"1594":1,"2181":1,"2532":1,"2563":1,"2591":2,"2619":2,"2653":1,"2673":1}}],["plain60",{"2":{"57":2}}],["plaid",{"2":{"37":2,"249":1}}],["player",{"2":{"2510":1,"2549":1}}],["played",{"2":{"719":2,"1487":1,"1686":2}}],["plays",{"2":{"1485":12,"1486":16}}],["playback",{"2":{"1444":1,"1490":2,"2253":1,"2254":1,"2510":1}}],["playing",{"2":{"631":1,"714":1,"719":1,"1484":1,"1490":2,"1523":3,"1601":1,"2254":1}}],["play",{"0":{"27":2},"2":{"27":2,"222":1,"398":1,"538":1,"631":2,"1417":2,"1444":1,"1473":1,"1485":3,"1490":1,"1503":1,"1535":2,"1605":1,"1641":2,"1661":2,"1664":2,"1776":9,"1783":1,"1804":5,"1839":3,"2221":1,"2328":6,"2510":2,"2518":2,"2549":2,"2683":2,"2771":1,"2856":1,"2941":1}}],["p",{"0":{"772":1,"1717":1,"1721":1,"2232":1,"2234":1},"1":{"773":1,"774":1,"1718":1,"1722":1,"2233":1,"2235":1},"2":{"14":1,"211":1,"266":3,"317":1,"328":1,"354":1,"375":1,"433":4,"455":2,"460":2,"589":2,"688":2,"763":1,"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1247":1,"1268":1,"1535":3,"1538":1,"1539":1,"1545":1,"1553":1,"1554":1,"1597":1,"1628":1,"1701":1,"1702":2,"1945":8,"1946":1,"1948":2,"1954":7,"1955":6,"2068":1,"2181":1,"2247":1,"2248":1,"2284":8,"2285":1,"2290":3,"2296":2,"2301":2,"2317":2,"2386":2,"2389":1,"2502":3,"2510":3,"2532":1,"2542":3,"2563":1,"2597":1,"2682":4,"2893":2}}],["pave",{"2":{"2569":1}}],["paper",{"2":{"2298":2}}],["pam8302",{"2":{"1486":1}}],["pa0",{"2":{"1212":1}}],["pa3",{"2":{"1211":1,"1212":1,"1213":1}}],["pa2",{"2":{"1211":1,"1212":1,"1213":1}}],["pa1",{"2":{"1212":1}}],["pa15",{"2":{"1211":1,"1212":1}}],["pa14",{"2":{"1211":1,"1212":1}}],["pa11",{"2":{"721":1}}],["pa10",{"2":{"721":1,"1211":1,"1212":1,"1213":1}}],["pa9",{"2":{"721":1,"1211":1,"1212":1,"1213":1}}],["pa8",{"2":{"721":1,"1483":2}}],["pasted",{"2":{"2746":1}}],["paste",{"2":{"1962":1,"2410":1,"2504":1,"2510":2,"2548":2,"2579":1,"2580":1,"2599":1,"2746":1,"2795":1}}],["past",{"0":{"400":1,"413":1},"2":{"1501":1,"2510":1,"2550":1,"2569":1,"2929":1,"2938":1}}],["passes",{"2":{"1428":1,"1534":1,"2178":1}}],["passed",{"2":{"194":1,"433":2,"444":1,"446":1,"455":2,"469":3,"647":2,"656":1,"657":1,"1247":1,"1248":1,"1283":1,"1517":1,"1532":2,"1781":1,"1786":2,"1954":2,"1988":1,"1989":1,"2089":1,"2205":1,"2275":1,"2290":2,"2310":2,"2448":1,"2466":1,"2776":2}}],["passing",{"2":{"433":1,"565":1,"1954":1,"1989":1,"2290":1,"2318":1,"2448":1,"2572":1}}],["passwords",{"2":{"1440":1,"2775":1}}],["password",{"2":{"312":1,"2600":1}}],["pass",{"2":{"22":1,"114":1,"130":1,"134":1,"149":2,"344":3,"403":1,"459":1,"491":2,"500":1,"506":1,"513":1,"533":1,"535":4,"1422":1,"1490":1,"1538":1,"1539":1,"2466":2,"2508":1,"2764":1,"2886":1}}],["pauses",{"2":{"720":1}}],["pause",{"2":{"398":1,"561":1,"1444":1,"1694":1,"1776":8,"2510":4,"2548":2,"2549":2,"2612":1}}],["paus",{"2":{"375":1,"589":2,"2510":1,"2548":1,"2564":1}}],["pay",{"2":{"2272":1}}],["payloads",{"2":{"2057":1}}],["payload",{"0":{"375":1},"2":{"375":1,"376":1,"2057":1}}],["paying",{"2":{"198":1}}],["paw3222",{"2":{"1979":3}}],["paw3204",{"2":{"176":1,"1978":3}}],["paw",{"0":{"1978":1,"1979":1},"2":{"328":1,"1978":2,"1979":1}}],["pain",{"2":{"2431":1}}],["painter",{"0":{"153":1,"232":1,"248":1,"466":1,"467":1,"468":1,"2753":1,"2755":1,"2756":1,"2757":1,"2760":1,"2761":1,"2762":1,"2763":1,"2764":1},"1":{"2754":1,"2755":1,"2756":2,"2757":2,"2758":1,"2759":1,"2761":1,"2762":1,"2763":1,"2764":1},"2":{"153":5,"158":1,"160":1,"176":1,"199":2,"211":2,"232":5,"248":3,"249":1,"285":1,"294":2,"466":1,"467":1,"468":1,"2753":2,"2754":5,"2756":3,"2760":21,"2761":12,"2762":11,"2763":48,"2764":44}}],["paid",{"2":{"610":1,"2749":1}}],["pairs",{"0":{"2330":1},"2":{"588":1,"671":1,"1639":1,"2070":1,"2331":1,"2851":1}}],["pair",{"2":{"202":1,"307":1,"1670":1,"2044":1,"2347":1,"2351":1,"2377":1,"2516":1}}],["pachi",{"2":{"211":2,"277":1}}],["packaging",{"2":{"2427":1,"2569":1,"2730":1}}],["package",{"2":{"386":1,"420":2,"519":1,"520":1,"1318":1,"1528":1,"2506":1,"2626":1,"2627":1,"2657":1,"2658":2,"2659":1,"2707":1,"2710":1,"2827":1}}],["packages",{"2":{"167":1,"393":1,"2506":1,"2626":1,"2679":1,"2707":1}}],["pack",{"2":{"393":1,"2410":1,"2680":2}}],["packs",{"2":{"393":3,"2278":1}}],["packed",{"2":{"236":2,"328":1,"1747":1,"1788":2,"2777":1,"2778":1,"2779":1,"2780":1,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2787":1,"2788":1,"2789":2,"2928":2}}],["packets",{"2":{"263":1,"1962":2,"2295":2,"2296":2,"2300":1}}],["packet",{"2":{"236":2,"263":1,"561":1,"2295":5,"2296":3,"2300":2,"2882":1}}],["packing",{"2":{"199":1}}],["packrat",{"2":{"143":2}}],["pacman",{"2":{"160":1,"2506":1,"2593":1}}],["pal2",{"2":{"2762":3}}],["pal256",{"2":{"2762":3}}],["pal4",{"2":{"2762":3}}],["pal16",{"2":{"2762":3}}],["palsetpadmode",{"2":{"768":2}}],["palettes",{"2":{"2761":1}}],["palette",{"0":{"2782":1,"2790":1},"2":{"160":1,"249":1,"2682":2,"2761":1,"2762":6,"2777":3,"2781":14,"2782":8,"2785":2,"2787":1,"2790":3}}],["paladinpad",{"2":{"134":1}}],["paladin64",{"2":{"122":2,"211":1}}],["pal",{"2":{"133":1,"134":1,"211":1,"721":2,"764":2,"768":6,"798":1,"1195":2,"1198":1,"1200":2,"1201":1,"1248":3,"1269":4,"1299":2,"1303":1,"1396":1,"1483":1,"1556":1,"2042":1}}],["patience",{"2":{"2749":1}}],["patient",{"2":{"610":1}}],["patent",{"2":{"2727":1}}],["patching",{"2":{"2634":1}}],["patch",{"2":{"211":1,"294":2,"2634":3}}],["patterns",{"2":{"440":1,"665":2,"1634":1,"2079":1,"2447":1,"2734":1}}],["pattern",{"2":{"118":1,"125":1,"185":1,"198":1,"308":1,"317":1,"487":1,"627":1,"2828":1,"2912":1}}],["path=",{"2":{"2628":1}}],["path=raw",{"2":{"2059":1}}],["pathlib",{"2":{"354":1}}],["paths",{"2":{"132":1,"134":1,"149":1,"176":1,"199":1,"308":2,"393":1,"613":1,"2679":1}}],["path",{"2":{"6":1,"50":1,"114":1,"211":1,"308":1,"354":3,"393":2,"397":1,"452":1,"453":1,"463":1,"465":1,"484":1,"485":2,"509":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1463":2,"1525":1,"1628":3,"2059":1,"2407":1,"2410":4,"2417":4,"2432":1,"2502":1,"2508":3,"2583":1,"2597":1,"2599":2,"2607":1,"2608":1,"2628":2,"2629":1,"2640":3,"2678":3,"2683":7,"2762":1}}],["padding",{"2":{"2777":1,"2785":1,"2889":1}}],["paddlegame",{"2":{"114":1}}],["pads",{"2":{"684":1,"1670":1,"2280":2}}],["pad",{"0":{"2550":1},"2":{"114":2,"191":1,"236":1,"241":5,"249":2,"266":1,"333":1,"1472":1,"1665":2,"2014":1,"2278":1,"2280":3,"2427":1}}],["pans",{"2":{"1954":1,"2290":1}}],["pan",{"2":{"211":1,"294":1,"328":1,"1954":1,"2290":1}}],["panel",{"2":{"153":1,"248":1,"1945":2,"2331":1,"2510":2,"2549":2,"2760":2,"2763":35,"2764":4}}],["panels",{"2":{"123":1,"153":2,"248":1,"2747":1,"2763":3,"2764":3}}],["pandora",{"2":{"114":1,"211":1}}],["pancake",{"2":{"37":2}}],["paren",{"2":{"2534":2,"2555":2}}],["parens",{"2":{"2318":1}}],["parenthesis",{"2":{"2255":1,"2256":6,"2257":6,"2538":6}}],["parentheses",{"0":{"528":1},"2":{"528":2,"2259":1,"2318":1}}],["parent",{"2":{"72":1,"149":1,"249":1,"266":1,"293":1,"305":1,"314":1,"432":1,"618":1,"2659":1}}],["parity",{"2":{"2043":1,"2298":1}}],["paryz",{"2":{"199":1}}],["parse",{"2":{"149":1,"671":1}}],["parsing",{"2":{"76":1,"92":1,"176":1,"191":1,"199":1,"211":1,"236":1,"308":1,"439":1,"489":1,"495":1,"2679":1,"2778":1,"2779":1,"2787":1}}],["paragraphs",{"0":{"676":1}}],["paragraph",{"2":{"675":2,"676":2}}],["params",{"2":{"199":1,"1850":11,"2088":11}}],["parameter",{"2":{"191":1,"323":1,"328":1,"519":1,"657":1,"1286":1,"1410":1,"1456":1,"1837":1,"2273":2,"2407":1,"2651":1,"2764":2}}],["parameters",{"2":{"70":1,"249":1,"762":1,"1253":1,"1376":1,"2407":3,"2454":1,"2558":1,"2746":1}}],["parallel",{"2":{"114":1,"134":1,"236":1,"429":3,"455":4,"469":5,"1454":1,"1558":1,"2428":1,"2763":1}}],["party",{"2":{"379":1,"516":1,"609":1,"2331":1,"2903":1}}],["participating",{"2":{"2896":1}}],["particular",{"0":{"2012":1},"2":{"512":1,"514":1,"519":1,"559":1,"618":3,"690":2,"768":1,"793":1,"1377":1,"1428":1,"1431":1,"1467":1,"1485":1,"1538":1,"1556":1,"1713":1,"1996":1,"2011":1,"2077":1,"2320":1,"2381":1,"2419":2,"2429":2,"2468":1,"2503":1,"2506":1,"2585":1,"2655":1,"2709":1,"2750":1,"2820":1}}],["particularly",{"2":{"289":1,"526":1,"611":1,"668":1,"1296":1,"2278":1,"2922":1,"2925":1}}],["parties",{"2":{"288":1,"1626":1,"2569":1,"2707":1}}],["partialremap",{"2":{"1213":2}}],["partially",{"2":{"176":1,"199":1,"236":2,"328":1,"723":1,"2738":1}}],["partial",{"2":{"49":1,"1392":1,"1393":1,"1534":1,"2379":1,"2763":1}}],["parts",{"0":{"2421":1},"2":{"172":1,"366":1,"541":1,"611":1,"764":1,"1248":1,"1269":1,"1994":2,"2429":1,"2503":2,"2633":1,"2944":1}}],["part",{"2":{"67":1,"76":1,"86":1,"114":2,"134":1,"160":1,"176":2,"188":5,"191":5,"199":1,"211":8,"236":1,"262":1,"266":32,"354":1,"513":1,"528":1,"529":1,"619":1,"633":1,"661":1,"672":1,"683":1,"696":1,"1209":1,"1332":1,"1368":1,"1416":1,"1427":1,"1451":1,"1470":2,"1472":1,"1491":1,"1525":1,"1532":1,"1533":1,"1546":1,"1661":1,"1803":1,"1846":2,"2082":2,"2219":1,"2275":5,"2278":1,"2297":1,"2381":1,"2410":1,"2432":1,"2434":2,"2437":1,"2483":1,"2549":1,"2562":2,"2593":2,"2632":3,"2634":2,"2638":1,"2651":1,"2677":1,"2683":1,"2684":1,"2709":1,"2730":2,"2731":1,"2772":1,"2840":1,"2934":1,"2944":1}}],["page=shop",{"2":{"1319":1}}],["pagesize",{"2":{"2508":1}}],["pages",{"2":{"277":1,"341":1,"579":1,"661":1,"1368":1,"1405":1,"2508":3,"2574":1,"2696":1}}],["page",{"0":{"675":1,"901":2,"936":2,"970":2,"1004":2,"1038":2,"1072":2,"1106":2,"1140":2,"1174":2,"1227":2},"1":{"902":2,"937":2,"971":2,"1005":2,"1039":2,"1073":2,"1107":2,"1141":2,"1175":2,"1228":2},"2":{"13":1,"124":1,"163":1,"164":1,"194":1,"206":1,"210":1,"249":1,"340":2,"341":1,"365":1,"373":1,"384":1,"392":1,"413":1,"552":1,"555":2,"576":1,"578":1,"587":1,"595":1,"616":2,"626":1,"661":2,"664":1,"674":1,"675":4,"677":1,"681":3,"682":1,"729":1,"749":2,"750":2,"759":2,"765":1,"766":1,"863":1,"893":1,"901":1,"902":2,"928":1,"936":1,"937":2,"962":1,"970":1,"971":2,"996":1,"1004":1,"1005":2,"1030":1,"1038":1,"1039":2,"1064":1,"1072":1,"1073":2,"1098":1,"1106":1,"1107":2,"1132":1,"1140":1,"1141":2,"1166":1,"1174":1,"1175":2,"1219":1,"1227":1,"1228":2,"1314":1,"1321":1,"1330":1,"1337":1,"1342":2,"1344":1,"1351":2,"1357":2,"1364":1,"1365":1,"1368":2,"1388":1,"1398":1,"1409":1,"1694":2,"1697":1,"1953":2,"1954":7,"2016":1,"2037":1,"2056":3,"2057":1,"2059":4,"2068":2,"2290":7,"2410":1,"2411":1,"2418":4,"2437":3,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2453":1,"2480":1,"2481":1,"2490":1,"2508":8,"2509":2,"2510":6,"2541":1,"2548":4,"2549":3,"2550":2,"2601":1,"2622":1,"2653":1,"2673":1,"2684":1,"2707":1,"2714":1,"2716":1,"2723":1,"2724":1,"2744":1,"2751":1,"2765":1,"2793":1,"2851":1,"2852":3,"2905":1}}],["pong",{"2":{"2746":1}}],["podman",{"2":{"2406":2,"2407":3}}],["poop",{"2":{"2330":1}}],["poor",{"2":{"2317":1,"2902":2}}],["pop",{"2":{"2434":1}}],["populated",{"2":{"2937":1}}],["populates",{"2":{"2269":1}}],["populate",{"2":{"1417":1,"2714":1,"2937":1}}],["popularity",{"2":{"2810":1}}],["popular",{"2":{"236":1,"263":1,"2089":1,"2205":1,"2569":1,"2664":1,"2814":1,"2895":1}}],["popping",{"2":{"236":1}}],["polish",{"2":{"2887":2}}],["policies",{"0":{"2900":1},"1":{"2901":1,"2902":1,"2903":1,"2904":1},"2":{"2567":1}}],["policy",{"0":{"2741":1,"2902":1},"1":{"2903":1,"2904":1},"2":{"1316":1,"2741":1,"2903":1}}],["policy=default",{"2":{"1316":1}}],["polilla",{"2":{"253":2}}],["polarity",{"2":{"1252":1,"2685":1}}],["polaris",{"2":{"211":1,"447":4}}],["pololu",{"2":{"713":1,"2386":1,"2499":1}}],["polled",{"2":{"176":1,"1985":1}}],["poll",{"2":{"176":1,"570":2,"581":1,"2043":1,"2278":2,"2882":1}}],["polling",{"0":{"137":1},"2":{"112":1,"114":1,"137":1,"149":2,"285":1,"294":1,"561":2,"1985":1,"2880":2,"2882":1}}],["potentiometer",{"2":{"685":1,"1738":1,"1923":1}}],["potential",{"2":{"21":1,"142":1,"149":1,"262":1,"312":3,"435":1,"456":1,"2054":1,"2057":1}}],["potentially",{"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"130":1,"399":1,"646":1,"712":1,"1415":1,"1423":1,"1593":1,"2057":1,"2065":1,"2265":1,"2379":1,"2568":1,"2576":1,"2886":1}}],["potato65s",{"2":{"211":1}}],["pocketavr",{"0":{"2490":1},"1":{"2491":1},"2":{"2490":3}}],["pocket",{"2":{"226":1,"236":1}}],["pockettype",{"2":{"57":2}}],["poc",{"2":{"176":1}}],["poker",{"2":{"122":1,"328":1}}],["portuguese",{"2":{"2887":7}}],["port>",{"2":{"2502":1}}],["portmento",{"2":{"1925":1,"2527":1}}],["portb",{"2":{"1474":1}}],["portc",{"2":{"1474":1}}],["porting",{"2":{"1329":1,"2712":1,"2741":1,"2746":1}}],["portions",{"2":{"1803":1,"2568":1}}],["portion",{"2":{"228":1,"2418":1,"2691":1,"2869":1}}],["portamento",{"2":{"1925":1,"2527":1}}],["portability",{"2":{"760":1,"1245":1,"1266":1}}],["portal",{"2":{"122":2}}],["port",{"2":{"114":1,"134":2,"288":1,"294":1,"460":5,"461":1,"568":3,"709":1,"1384":2,"1925":1,"2294":3,"2298":2,"2387":1,"2484":1,"2486":1,"2488":1,"2490":1,"2492":1,"2494":1,"2499":1,"2502":2,"2527":1,"2666":1,"2683":3,"2689":1,"2727":1}}],["ports",{"0":{"1841":1},"2":{"114":1,"191":2,"1551":1,"2502":1,"2689":1,"2709":1}}],["powering",{"2":{"1558":1}}],["powerful",{"2":{"1421":1,"2316":1,"2478":1,"2572":1,"2664":1}}],["powers",{"2":{"1192":1,"2714":1,"2830":1}}],["powered",{"2":{"396":1,"433":1,"596":1,"1681":1,"1961":1,"2701":1}}],["poweron",{"2":{"249":1}}],["poweroff",{"2":{"211":1,"285":1}}],["power",{"0":{"538":1,"649":1,"1351":1,"1387":1},"2":{"70":1,"112":1,"134":3,"211":1,"222":1,"231":1,"262":1,"266":1,"561":2,"648":2,"649":1,"650":2,"665":1,"693":1,"720":1,"746":1,"749":2,"1252":1,"1296":1,"1351":3,"1381":1,"1387":1,"1407":1,"1415":1,"1422":2,"1486":5,"1558":1,"1638":3,"1678":1,"1702":1,"2208":1,"2301":1,"2323":2,"2331":1,"2418":1,"2454":4,"2510":4,"2523":1,"2548":2,"2549":2,"2572":1,"2690":1,"2746":1,"2764":7,"2856":2,"2882":1}}],["pose",{"2":{"1296":1}}],["possibility",{"2":{"2071":1,"2293":1,"2434":1}}],["possibilities",{"2":{"1766":1,"1773":1,"1846":1,"2082":1,"2435":1}}],["possibly",{"2":{"28":1,"50":1,"1299":2}}],["possible",{"2":{"11":1,"98":1,"99":1,"140":1,"224":1,"293":1,"305":1,"314":1,"339":1,"344":3,"377":1,"403":1,"417":1,"429":1,"525":1,"542":1,"555":2,"588":1,"610":1,"643":1,"646":1,"647":1,"715":1,"716":1,"720":1,"753":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1199":1,"1217":1,"1294":1,"1303":1,"1315":1,"1356":1,"1405":1,"1424":1,"1428":1,"1433":2,"1440":1,"1503":1,"1602":1,"1604":1,"1605":1,"1612":1,"1620":1,"1623":1,"1630":1,"1661":1,"1663":1,"1676":1,"1795":1,"1843":1,"1923":2,"1935":1,"1936":1,"1938":1,"1962":1,"1974":1,"1985":1,"2016":1,"2037":1,"2040":1,"2048":1,"2072":1,"2079":1,"2086":1,"2097":1,"2189":1,"2261":1,"2267":1,"2275":2,"2300":1,"2309":1,"2310":1,"2316":1,"2317":1,"2318":1,"2329":1,"2330":1,"2331":3,"2374":2,"2382":1,"2407":1,"2416":1,"2418":2,"2423":1,"2428":1,"2429":1,"2453":1,"2454":1,"2461":1,"2482":1,"2504":1,"2568":1,"2569":1,"2572":1,"2576":1,"2620":1,"2626":1,"2628":1,"2658":1,"2676":1,"2683":1,"2685":1,"2686":1,"2710":1,"2746":7,"2776":1,"2781":3,"2869":1,"2901":1,"2902":1,"2904":1,"2924":1,"2927":1,"2942":1,"2947":1,"2949":1}}],["possess",{"2":{"763":1,"1288":1,"1291":1,"2505":1}}],["possesses",{"2":{"688":1}}],["positive",{"2":{"524":2,"1954":1,"2290":1}}],["positives",{"2":{"199":1,"1503":1}}],["positioning",{"0":{"1647":1},"2":{"2764":1}}],["positional",{"2":{"452":1,"453":1}}],["positions",{"2":{"176":1,"211":1,"222":1,"1619":1,"1702":1,"1846":2,"1968":2,"2082":2,"2453":1,"2746":2,"2794":1,"2869":1,"2891":1,"2926":1}}],["position",{"0":{"1329":1,"1659":1},"1":{"1660":1},"2":{"62":1,"211":1,"1329":1,"1353":1,"1539":1,"1647":2,"1648":1,"1659":1,"1660":2,"1665":1,"1670":1,"1707":1,"1711":1,"1728":1,"1741":2,"1747":1,"1760":1,"1761":1,"1791":1,"1802":2,"1846":9,"1947":1,"1954":9,"1968":1,"1974":3,"2082":9,"2086":1,"2286":1,"2290":9,"2293":1,"2428":1,"2721":1,"2860":1,"2869":5,"2871":3,"2878":3,"2880":1,"2926":2,"2936":1}}],["pos",{"2":{"176":1,"1665":1,"2195":1,"2197":1}}],["postage",{"2":{"2424":2}}],["postprocess",{"2":{"176":1}}],["post",{"0":{"369":1,"410":1,"640":1,"641":1,"642":1,"1632":1,"2686":1},"1":{"411":1,"412":1,"641":1,"642":1},"2":{"74":1,"133":2,"134":3,"176":3,"266":2,"369":1,"374":1,"376":2,"405":1,"406":1,"633":2,"641":2,"642":2,"647":3,"1322":1,"1363":1,"1417":3,"1420":1,"1447":2,"1638":6,"1701":1,"1702":1,"1997":1,"2097":1,"2189":1,"2191":4,"2277":1,"2300":1,"2454":10,"2455":8,"2575":1,"2637":2,"2686":2,"2746":1,"2748":1,"2756":1,"2763":2,"2764":4,"2940":6}}],["posted",{"2":{"49":1,"2747":1}}],["points",{"2":{"512":1,"1538":1,"1781":1,"2300":1,"2310":1,"2329":3,"2330":3,"2331":5,"2418":3,"2434":1,"2684":1}}],["pointer",{"2":{"323":1,"770":1,"773":1,"776":1,"779":2,"782":1,"785":1,"788":1,"791":1,"1260":1,"1263":1,"1278":1,"1280":1,"1535":1,"1930":1,"1947":5,"1954":1,"1964":1,"1968":1,"2057":1,"2058":1,"2062":1,"2064":1,"2286":5,"2290":1,"2310":2}}],["pointers",{"2":{"114":1,"222":1,"581":1}}],["pointed",{"2":{"21":1}}],["point",{"0":{"2347":1,"2354":1},"1":{"2348":1,"2355":1,"2356":1},"2":{"94":2,"215":2,"236":1,"317":1,"402":1,"409":1,"411":1,"412":1,"640":1,"657":1,"661":1,"710":1,"711":2,"1348":1,"1368":1,"1517":1,"1528":1,"1538":1,"1609":1,"1670":1,"1757":1,"1846":2,"1999":1,"2082":2,"2272":1,"2310":2,"2317":1,"2319":1,"2329":1,"2331":1,"2332":3,"2348":2,"2354":1,"2356":1,"2357":1,"2371":1,"2418":1,"2431":1,"2437":1,"2462":1,"2540":3,"2564":1,"2605":1,"2634":2,"2637":1,"2683":2,"2685":1,"2714":1,"2719":1,"2763":1,"2789":2,"2871":1,"2878":1,"2888":1,"2914":1,"2922":1,"2934":1}}],["pointless",{"2":{"50":1,"94":1,"211":1,"236":1,"277":1}}],["pointing",{"0":{"118":1,"138":1,"175":1,"190":1,"1941":1,"1964":1,"1996":1,"1997":1,"2015":1},"1":{"1965":1,"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1971":1,"1972":1,"1973":1,"1974":1,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1984":1,"1985":1,"1986":1,"1987":1,"1988":1,"1989":1},"2":{"6":1,"63":1,"118":12,"134":3,"138":4,"149":4,"175":5,"176":8,"190":4,"191":6,"211":3,"249":1,"266":1,"273":1,"285":2,"298":1,"317":2,"564":1,"1638":6,"1645":1,"1941":1,"1964":2,"1965":1,"1966":3,"1967":1,"1974":2,"1976":2,"1977":1,"1978":2,"1979":1,"1981":3,"1982":1,"1983":7,"1984":5,"1985":22,"1986":8,"1987":16,"1988":17,"1989":11,"1990":9,"1992":3,"1993":2,"1994":1,"1995":1,"1996":5,"1997":6,"1998":2,"1999":3,"2001":2,"2003":1,"2014":2,"2015":10,"2276":5,"2439":1,"2455":1,"2872":1,"2908":1}}],["pryce",{"2":{"2941":1}}],["prf5",{"2":{"2377":1,"2516":1}}],["prf4",{"2":{"2377":1,"2516":1}}],["prf3",{"2":{"2377":1,"2516":1}}],["prf2",{"2":{"2377":1,"2516":1}}],["prf1",{"2":{"2377":1,"2516":1}}],["prune",{"2":{"421":1,"422":2}}],["pr12345",{"2":{"403":1}}],["practical",{"0":{"2739":1},"2":{"2466":1,"2579":1,"2902":1,"2903":1}}],["practically",{"2":{"399":1,"2324":1,"2503":1}}],["practice",{"2":{"1364":1,"1499":1,"1523":1,"2463":1,"2764":1}}],["practices",{"0":{"674":1,"2631":1},"1":{"2632":1},"2":{"414":1,"514":1,"674":1,"2744":1,"2748":1}}],["pragma",{"2":{"134":1,"199":1,"211":1,"303":1,"338":1,"512":1,"717":2,"718":2,"721":2,"764":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1299":2,"1303":2,"1405":1,"1472":1,"1502":1,"1556":2,"1557":2,"1850":1,"2042":1,"2088":1,"2416":2,"2744":1,"2794":2}}],["pr20584",{"2":{"211":1}}],["pristine",{"2":{"2746":2}}],["price",{"2":{"2664":1}}],["private",{"2":{"2568":1,"2746":1}}],["privately",{"2":{"2568":1}}],["privileged",{"2":{"2417":1}}],["privileges",{"2":{"1316":1,"1332":1}}],["prir",{"2":{"2510":1,"2548":1}}],["principle",{"2":{"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1934":1,"2713":1}}],["println",{"2":{"2652":12}}],["printed",{"2":{"1209":1,"1998":1,"2059":1,"2418":1,"2435":1,"2507":1,"2627":1,"2694":1,"2884":1}}],["printedpad",{"2":{"277":1}}],["printer",{"2":{"191":1}}],["prints",{"2":{"160":1,"1333":1,"1428":2,"1627":1,"2761":1}}],["print",{"2":{"75":2,"114":1,"119":1,"149":1,"199":1,"249":1,"339":2,"433":6,"437":1,"455":2,"493":1,"529":1,"562":1,"625":2,"1327":9,"1329":1,"1333":3,"1450":1,"1625":5,"1694":1,"1713":1,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1962":7,"2059":7,"2418":13,"2510":2,"2531":1,"2548":2,"2912":1,"2949":1}}],["printing",{"0":{"491":1,"493":1},"1":{"492":1,"493":1,"494":1},"2":{"49":1,"211":1,"491":1,"562":1,"1592":1,"1736":1}}],["printf",{"0":{"24":1},"2":{"160":1,"176":4,"396":1,"491":1,"526":1,"529":1,"1316":1,"1535":1,"2889":1}}],["prioritized",{"2":{"403":1}}],["prioritizes",{"2":{"312":1}}],["priority",{"2":{"236":1,"555":2,"764":4,"2559":1}}],["prior",{"2":{"251":1,"297":1,"308":1,"611":1,"2510":2,"2548":2}}],["primitives",{"2":{"2760":1}}],["primarily",{"2":{"634":1,"1199":1,"1346":2,"2500":1}}],["primary",{"2":{"191":1,"716":1,"1475":1,"1645":1,"1943":1,"2276":1,"2283":1,"2405":1,"2880":2}}],["prime",{"2":{"328":1}}],["prime+",{"2":{"285":1,"328":1}}],["primekb",{"2":{"211":1}}],["primus75",{"2":{"211":1}}],["prnt",{"2":{"119":1,"2531":1,"2912":3}}],["preamble",{"0":{"2438":1}}],["prerequisite",{"2":{"2406":1}}],["prerequisites",{"0":{"623":1,"2591":1,"2619":1,"2621":1,"2622":1,"2624":1,"2654":1,"2676":1},"1":{"2655":1,"2656":1},"2":{"308":1,"460":1,"461":1}}],["preloaded",{"2":{"1686":1,"2393":1,"2398":1}}],["pregenerated",{"2":{"719":1}}],["pretty=oneline",{"2":{"588":1,"589":1}}],["pretty",{"2":{"437":1,"512":1,"614":1,"619":1,"1327":1,"1340":1,"1342":1,"1375":1,"1470":1,"2042":1,"2425":1,"2466":1,"2616":1,"2617":1}}],["pretend",{"2":{"100":1}}],["predetermined",{"2":{"1590":1}}],["predefined",{"0":{"1513":1,"1514":1,"1515":1,"1516":1},"2":{"231":1,"719":1,"1480":1,"1513":1,"1514":1,"1515":1,"1516":1,"1741":1,"2016":1,"2069":1,"2771":1}}],["predicted",{"2":{"399":1}}],["precompiled",{"2":{"2501":1,"2727":2,"2733":2,"2736":1,"2742":1}}],["precomputed",{"2":{"1488":1}}],["precalculated",{"2":{"1952":2,"1953":3,"2289":1}}],["precedence",{"0":{"2559":1},"2":{"568":1,"2189":2,"2270":1,"2419":1,"2557":2,"2824":1,"2919":1,"2924":1,"2926":1}}],["preceding",{"2":{"297":1,"2922":1,"2923":1}}],["precision",{"2":{"222":2,"685":1,"1681":1,"1743":12}}],["precisely",{"2":{"1769":1}}],["precise",{"2":{"134":1,"1936":1,"1939":1,"1940":1}}],["preonic",{"2":{"211":1,"1320":1}}],["preflashed",{"2":{"2388":1}}],["preformatted",{"2":{"354":1}}],["preferring",{"2":{"2746":1}}],["preferred",{"2":{"116":1,"448":1,"449":1,"450":1,"2407":1,"2432":1,"2458":1,"2628":2,"2709":1,"2745":2,"2746":2,"2759":1,"2794":1}}],["prefers",{"2":{"2717":1}}],["preferable",{"2":{"1410":1,"1681":1,"2009":1}}],["preferably",{"2":{"581":1,"1434":1,"2659":1,"2746":1}}],["prefer",{"2":{"344":3,"403":1,"491":1,"493":1,"499":1,"512":1,"516":2,"527":1,"529":1,"535":1,"538":1,"539":1,"540":1,"1325":1,"1410":1,"2606":1,"2745":1,"2746":1,"2941":1}}],["preferences",{"2":{"353":1,"494":1,"1675":1,"2331":1,"2678":1}}],["preference",{"2":{"328":1,"2598":1,"2746":2,"2913":1}}],["prefix=",{"2":{"420":1}}],["prefixed",{"2":{"236":1,"494":2,"1422":1,"1444":1,"2552":1,"2563":1,"2575":1,"2884":1}}],["prefix",{"2":{"199":3,"236":1,"249":1,"266":1,"1444":1,"1448":1,"1625":1,"2222":1,"2329":1,"2453":1,"2651":1,"2944":1}}],["prebuilt",{"0":{"164":1},"2":{"164":2,"1326":1,"2395":1}}],["preinstalled",{"2":{"2178":1}}],["preinstall",{"2":{"160":1}}],["preprocess",{"2":{"2310":1,"2940":1}}],["preprocessor",{"2":{"211":1,"512":3,"555":1,"1446":1,"2417":2,"2751":1}}],["prepend",{"2":{"1850":1,"2088":1}}],["prepended",{"2":{"1634":1,"1635":1,"1636":1}}],["prep",{"2":{"114":1,"149":1,"236":1}}],["preparing",{"2":{"455":1,"1468":1}}],["prepare",{"0":{"2620":1},"1":{"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1},"2":{"149":1,"222":1,"249":1,"408":1,"2207":1,"2331":1,"2425":1,"2620":1}}],["prepared",{"2":{"134":1,"619":1,"2569":1}}],["prepares",{"2":{"56":1}}],["preparation",{"2":{"86":1,"142":1,"1954":1,"2290":1}}],["presumably",{"2":{"1319":1}}],["prescribe",{"2":{"2720":1}}],["presc",{"2":{"766":1}}],["preset",{"2":{"1407":1}}],["presets",{"2":{"160":3,"719":1,"1952":3}}],["presence",{"2":{"249":1,"1364":1,"1974":1}}],["presented",{"2":{"2569":1}}],["presents",{"2":{"581":1,"709":1,"1442":1,"2388":1,"2390":1,"2726":1}}],["present",{"2":{"34":1,"201":2,"206":1,"228":1,"229":1,"236":1,"433":2,"446":1,"463":1,"521":1,"567":1,"594":1,"607":1,"688":1,"690":1,"746":1,"754":1,"758":1,"1407":1,"1408":1,"1410":1,"1465":1,"1628":1,"1631":1,"1632":1,"1962":1,"2294":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":2,"2395":2,"2398":2,"2400":1,"2402":1,"2404":1,"2453":1,"2474":1,"2612":1,"2634":1,"2709":2,"2717":1,"2746":3,"2778":1,"2782":1,"2786":1,"2886":1}}],["pressplayid",{"2":{"2567":1}}],["pressure",{"2":{"1645":1,"1974":1}}],["presses",{"2":{"312":1,"564":1,"626":2,"720":1,"1431":1,"1448":2,"1525":1,"1609":1,"1618":1,"1673":2,"1743":1,"1787":1,"1933":1,"1941":1,"1988":1,"2087":1,"2272":1,"2276":1,"2317":1,"2469":2,"2572":2,"2823":1,"2825":1,"2833":1,"2884":1}}],["pressed",{"0":{"1452":1},"2":{"46":2,"98":1,"194":2,"199":1,"202":1,"222":1,"289":2,"294":1,"297":1,"307":2,"324":1,"325":1,"564":1,"593":6,"630":1,"631":5,"632":1,"647":1,"1329":9,"1363":1,"1366":1,"1367":1,"1409":2,"1417":6,"1420":1,"1422":3,"1431":1,"1446":8,"1447":4,"1452":2,"1458":1,"1459":1,"1460":1,"1462":1,"1471":2,"1472":1,"1490":1,"1498":1,"1499":1,"1517":1,"1538":1,"1591":1,"1593":1,"1597":1,"1598":2,"1604":1,"1605":3,"1611":1,"1612":4,"1615":1,"1618":2,"1627":1,"1672":1,"1674":1,"1676":4,"1687":1,"1690":1,"1743":5,"1764":2,"1766":1,"1767":2,"1770":2,"1772":1,"1774":1,"1776":1,"1781":4,"1782":4,"1784":5,"1785":3,"1786":4,"1787":2,"1795":1,"1798":1,"1800":1,"1801":1,"1923":1,"1924":1,"1940":1,"1962":2,"1988":1,"1992":1,"1993":1,"1994":3,"1999":4,"2000":2,"2003":1,"2006":1,"2009":3,"2013":2,"2031":1,"2048":1,"2065":1,"2067":1,"2068":1,"2069":1,"2076":4,"2077":5,"2079":2,"2086":2,"2191":1,"2225":2,"2259":1,"2293":1,"2295":1,"2300":6,"2301":1,"2302":1,"2309":3,"2310":3,"2316":1,"2317":4,"2320":1,"2434":1,"2466":6,"2469":1,"2519":1,"2521":2,"2523":1,"2537":1,"2572":1,"2578":1,"2579":3,"2580":2,"2650":2,"2651":1,"2685":1,"2768":2,"2821":1,"2829":1,"2861":1,"2872":3,"2912":4,"2913":4,"2920":3,"2922":2,"2925":5,"2930":1,"2936":2,"2939":2}}],["press",{"0":{"1611":1,"1612":1,"2469":1,"2920":1},"2":{"99":1,"114":1,"134":1,"191":2,"194":7,"199":1,"202":2,"206":2,"235":1,"266":1,"312":1,"393":1,"398":2,"564":9,"600":1,"601":2,"631":1,"632":1,"647":1,"684":2,"712":1,"1348":1,"1363":28,"1364":1,"1375":1,"1376":1,"1409":1,"1417":1,"1446":1,"1448":1,"1455":1,"1485":5,"1486":5,"1498":2,"1501":1,"1517":2,"1518":1,"1522":3,"1523":3,"1525":1,"1529":1,"1600":3,"1611":1,"1612":5,"1614":2,"1615":1,"1624":2,"1661":4,"1752":1,"1762":2,"1766":1,"1786":1,"1787":1,"1789":1,"1795":1,"1803":1,"1930":1,"1937":1,"1962":2,"1968":1,"1971":2,"1980":1,"2022":1,"2026":1,"2065":2,"2071":1,"2073":1,"2086":1,"2272":1,"2293":1,"2297":1,"2300":2,"2304":1,"2310":1,"2317":2,"2319":2,"2330":1,"2383":2,"2386":2,"2388":2,"2389":2,"2391":2,"2396":1,"2397":1,"2433":1,"2466":4,"2469":1,"2471":1,"2529":28,"2539":1,"2564":1,"2612":3,"2617":1,"2682":2,"2746":1,"2775":1,"2834":2,"2843":1,"2852":1,"2854":2,"2912":1,"2913":1,"2915":2,"2916":3,"2917":2,"2918":1,"2919":6,"2920":9,"2921":3,"2922":1,"2923":1,"2925":6,"2930":1}}],["pressing",{"2":{"73":1,"99":1,"202":2,"211":1,"394":1,"599":1,"600":1,"710":1,"1333":1,"1367":1,"1381":1,"1409":1,"1440":1,"1518":1,"1593":1,"1594":3,"1597":1,"1608":1,"1618":1,"1767":2,"1774":2,"1791":1,"1935":2,"1936":1,"1939":1,"1993":1,"1999":1,"2065":1,"2072":1,"2076":1,"2077":1,"2466":1,"2650":3,"2652":2,"2834":1,"2839":1,"2842":1,"2861":2,"2913":1,"2919":1,"2928":2}}],["pre",{"0":{"203":1,"634":1,"635":1,"636":1,"2685":1,"2701":1},"1":{"635":1,"636":1,"2702":1,"2703":1},"2":{"34":2,"176":1,"194":1,"203":4,"211":2,"266":1,"285":1,"430":1,"439":1,"633":1,"635":2,"636":2,"749":1,"750":1,"1395":1,"1638":6,"1986":1,"2423":1,"2429":1,"2470":1,"2685":2,"2686":1,"2701":1,"2703":1,"2746":4,"2937":1,"2940":3}}],["prev",{"2":{"1489":1,"1495":1,"1667":1,"1680":1,"1776":2,"1848":1,"2084":1,"2181":1,"2331":1,"2332":1,"2377":4,"2510":1,"2512":1,"2516":4,"2525":1,"2532":1,"2533":1,"2540":1,"2549":2,"2924":5}}],["preview",{"2":{"617":1,"2680":2,"2746":2}}],["previewing",{"0":{"617":1}}],["previous",{"2":{"24":2,"56":1,"57":1,"58":1,"98":1,"107":1,"124":1,"126":1,"145":1,"149":1,"191":1,"206":1,"231":1,"279":1,"331":1,"406":1,"411":2,"413":1,"559":1,"712":1,"713":1,"1353":1,"1367":1,"1489":1,"1495":1,"1680":2,"1776":1,"1848":2,"1875":1,"1876":1,"1901":1,"1902":1,"2059":1,"2068":2,"2084":2,"2117":1,"2118":1,"2155":1,"2156":1,"2181":1,"2199":2,"2200":2,"2295":1,"2309":1,"2319":1,"2332":1,"2339":1,"2377":1,"2416":2,"2428":1,"2451":1,"2466":1,"2510":1,"2512":1,"2516":1,"2525":2,"2532":1,"2533":2,"2540":1,"2549":1,"2583":1,"2599":1,"2601":1,"2634":1,"2746":1,"2764":1,"2922":2,"2924":3,"2930":1,"2939":1,"2948":1}}],["previously",{"2":{"14":1,"50":1,"166":1,"169":1,"170":1,"182":1,"184":1,"234":1,"276":1,"283":1,"757":1,"1962":1,"2213":1,"2272":1,"2295":1,"2719":1,"2764":1}}],["prevention",{"2":{"889":1}}],["preventing",{"2":{"190":2,"191":1,"229":1,"2000":1,"2008":2,"2570":2}}],["prevent",{"2":{"186":1,"191":2,"199":1,"211":1,"222":1,"249":1,"308":1,"312":1,"333":1,"409":1,"564":1,"575":1,"592":1,"656":1,"677":1,"754":1,"799":1,"1785":1,"2000":1,"2013":1,"2212":1,"2260":1,"2298":1,"2418":1,"2585":1,"2667":1,"2672":1,"2744":1,"2794":1,"2886":1,"2930":1}}],["prevented",{"2":{"103":1}}],["prevents",{"2":{"6":1,"1455":1,"1786":1,"1990":1,"2912":1}}],["pros",{"2":{"2329":1,"2425":1}}],["professional",{"2":{"2291":1}}],["profile5",{"2":{"2377":1,"2516":1}}],["profile4",{"2":{"2377":1,"2516":1}}],["profile3",{"2":{"2377":1,"2516":1}}],["profile2",{"2":{"2377":1,"2516":1}}],["profile1",{"2":{"2377":1,"2516":1}}],["profiles",{"2":{"1970":1,"2678":1}}],["profile",{"2":{"509":1,"510":1,"511":1,"2377":10,"2516":10}}],["profiler",{"2":{"211":1}}],["proficient",{"2":{"414":1,"2905":1}}],["prone",{"2":{"1425":1,"1524":1,"1610":1,"1614":1}}],["proving",{"2":{"2566":1}}],["providing",{"2":{"616":1,"673":1,"1480":1,"2453":2,"2461":1,"2566":2,"2568":1,"2569":1,"2676":1,"2684":1,"2711":1,"2753":1}}],["provided",{"2":{"70":1,"125":1,"164":1,"185":1,"288":1,"312":1,"425":1,"444":1,"489":2,"570":7,"746":2,"753":1,"757":3,"1300":1,"1326":1,"1343":1,"1398":1,"1404":1,"1446":1,"1528":1,"1626":1,"1627":1,"1630":1,"1681":1,"1738":1,"1742":2,"1781":1,"1970":2,"1983":1,"1984":1,"1986":1,"2277":1,"2298":1,"2300":1,"2448":1,"2503":1,"2567":17,"2568":1,"2569":2,"2626":1,"2627":1,"2642":1,"2711":1,"2746":4,"2747":1,"2925":1}}],["provides",{"2":{"24":1,"45":1,"69":1,"164":1,"174":1,"380":1,"460":1,"554":1,"618":1,"622":1,"624":1,"629":1,"697":1,"723":1,"741":1,"1194":1,"1197":1,"1200":1,"1283":1,"1577":1,"1738":1,"1801":1,"1835":1,"1846":1,"1939":1,"1985":3,"2058":1,"2082":1,"2194":1,"2291":1,"2620":1,"2653":1,"2673":1,"2676":1,"2680":1,"2726":1,"2733":1,"2817":1,"2884":1}}],["provide",{"2":{"4":1,"160":1,"199":1,"213":1,"234":1,"285":1,"288":1,"308":1,"461":1,"495":1,"515":1,"575":1,"625":1,"797":1,"1388":1,"1390":1,"1392":1,"1393":1,"1407":1,"1517":1,"1526":1,"1527":1,"1626":1,"1628":1,"1629":1,"1630":2,"1634":2,"1638":2,"1681":1,"1742":1,"1835":1,"1837":1,"1842":1,"1843":1,"1923":1,"1985":1,"2265":1,"2418":1,"2460":1,"2506":1,"2566":2,"2568":2,"2571":1,"2701":1,"2703":1,"2707":1,"2728":1,"2731":1,"2733":1,"2751":1}}],["proves",{"2":{"540":1}}],["probe",{"2":{"2508":1,"2683":5}}],["probability",{"2":{"2185":1}}],["probably",{"2":{"233":1,"393":1,"531":1,"710":1,"1361":1,"1376":1,"1796":1,"1957":1,"2417":1,"2429":2,"2434":1,"2502":1,"2658":1,"2662":1,"2947":1}}],["problem",{"0":{"1387":1,"1788":1},"2":{"1319":1,"1352":1,"1359":1,"1382":1,"1427":1,"1470":1,"1497":1,"1503":1,"1593":1,"1961":2,"2466":1,"2728":1,"2930":1,"2943":1}}],["problems",{"0":{"608":1},"2":{"211":1,"254":1,"399":1,"435":4,"440":1,"456":1,"600":1,"613":1,"1384":1,"1424":1,"1485":1,"2417":1,"2448":1,"2567":1,"2586":1,"2616":1,"2666":1,"2734":1,"2946":1}}],["problematic",{"2":{"123":1,"254":1,"2739":1}}],["proceed",{"2":{"710":1,"2595":1}}],["procedures",{"2":{"2573":1}}],["procedure",{"0":{"419":1},"1":{"420":1,"421":1,"422":1,"423":1},"2":{"176":1,"191":1,"2269":1,"2277":1,"2746":1}}],["processes",{"2":{"404":1}}],["processed",{"2":{"114":1,"1425":1,"1446":2,"1464":1,"1466":1,"1491":2,"1612":1,"2016":1,"2300":2,"2320":1,"2562":1,"2769":1,"2823":1}}],["processors",{"2":{"611":1,"2298":1,"2465":2,"2934":1}}],["processor==stm32f411",{"2":{"433":3}}],["processor",{"2":{"70":1,"111":2,"191":1,"199":1,"439":1,"668":1,"1936":1,"2572":2,"2689":1,"2830":1,"2853":1}}],["processing",{"0":{"98":1,"1803":1},"2":{"4":1,"98":1,"112":1,"125":1,"185":1,"191":1,"199":1,"203":3,"249":1,"288":2,"294":1,"307":2,"564":1,"627":1,"630":1,"631":1,"646":1,"647":1,"799":1,"1292":1,"1293":1,"1294":1,"1417":1,"1472":1,"1533":2,"1535":1,"1609":1,"1610":1,"1618":1,"1626":2,"1667":1,"1723":1,"1803":1,"1964":1,"2000":1,"2013":1,"2015":1,"2300":2,"2454":1,"2559":1,"2578":1,"2579":3,"2759":2,"2870":1,"2940":1}}],["process",{"0":{"16":1,"23":1,"203":1,"631":1,"632":1,"1446":1,"1532":1,"1533":1,"2749":1,"2940":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"1533":1},"2":{"0":1,"1":1,"3":1,"7":1,"9":1,"15":1,"19":1,"39":1,"46":3,"52":1,"76":1,"94":1,"114":1,"156":1,"176":2,"201":1,"203":6,"211":3,"222":3,"235":1,"236":1,"266":1,"277":1,"285":1,"294":1,"307":2,"317":2,"324":1,"325":1,"399":1,"404":1,"413":1,"415":1,"416":1,"417":1,"572":1,"593":5,"609":1,"619":1,"627":2,"630":3,"631":2,"632":2,"633":3,"640":1,"643":1,"647":1,"651":1,"653":1,"666":2,"711":1,"712":1,"799":2,"1329":1,"1366":3,"1367":2,"1388":2,"1417":4,"1420":1,"1431":2,"1446":4,"1447":5,"1462":1,"1471":2,"1472":5,"1485":6,"1486":12,"1518":1,"1527":1,"1532":4,"1533":2,"1605":3,"1617":3,"1618":6,"1622":1,"1638":12,"1661":2,"1663":2,"1667":1,"1668":1,"1681":1,"1743":1,"1755":1,"1795":2,"1852":2,"1923":1,"1924":1,"1929":2,"1949":1,"1958":4,"1959":1,"1962":2,"1993":1,"1994":1,"2009":1,"2013":1,"2015":2,"2053":1,"2071":1,"2076":2,"2077":1,"2079":5,"2091":2,"2181":2,"2191":3,"2225":1,"2277":1,"2300":3,"2310":5,"2316":2,"2325":1,"2396":1,"2428":2,"2429":1,"2441":1,"2456":1,"2461":1,"2466":1,"2559":1,"2573":1,"2578":2,"2579":1,"2580":1,"2598":1,"2602":2,"2604":1,"2612":1,"2621":2,"2626":1,"2632":1,"2714":1,"2722":1,"2726":1,"2746":1,"2747":1,"2768":1,"2811":1,"2871":2,"2878":2,"2880":1,"2912":1,"2936":1,"2939":1,"2940":45}}],["proprietary",{"0":{"2725":1,"2738":1},"1":{"2726":1,"2727":1,"2728":1,"2729":1,"2730":1,"2731":1,"2732":1,"2733":1,"2734":1,"2735":1,"2736":1,"2737":1,"2738":1,"2739":1,"2740":1,"2741":1,"2742":1},"2":{"2567":1,"2725":1,"2726":1,"2727":1,"2728":1,"2729":1,"2733":3,"2734":1,"2738":1,"2739":2,"2741":1,"2742":1}}],["props",{"2":{"2510":1,"2548":1}}],["proposed",{"2":{"344":3,"403":1,"414":1,"2725":1}}],["prophet",{"2":{"211":1}}],["property",{"2":{"534":1,"1381":1,"2764":2}}],["properties",{"0":{"534":1},"2":{"308":1,"393":2,"534":1,"712":1,"1708":1,"1990":1,"2663":1,"2869":2}}],["properly",{"2":{"191":1,"222":1,"249":1,"328":1,"561":1,"564":1,"1353":1,"1615":1,"1802":1,"1954":1,"2091":1,"2280":1,"2298":1,"2470":1,"2490":1,"2498":1,"2651":1,"2662":1,"2793":1}}],["proper",{"2":{"174":1,"458":1,"1315":1,"1316":1,"2599":1,"2665":1,"2667":1,"2711":1}}],["propagated",{"2":{"500":1}}],["propagate",{"2":{"149":1}}],["prologues",{"2":{"160":1}}],["promenade",{"2":{"294":1}}],["promethium",{"2":{"114":1}}],["prompts",{"2":{"308":1,"2628":4}}],["prompt",{"2":{"294":1,"308":1,"333":1,"435":1,"444":2,"712":1,"2502":1,"2510":1,"2600":1,"2622":1,"2676":1}}],["prompted",{"2":{"172":1,"2659":1}}],["promote",{"2":{"199":1,"333":1,"2567":1}}],["prominent",{"2":{"2797":1}}],["prominently",{"2":{"131":1}}],["promises",{"2":{"2742":1}}],["promicro",{"0":{"2441":1,"2835":1},"2":{"153":1,"222":1,"271":2,"277":1,"306":2,"311":14,"315":2,"317":2,"439":2,"1313":1,"1389":14,"1403":1,"1407":1,"2441":1,"2714":1,"2853":2}}],["programs",{"0":{"2796":1},"2":{"1788":2,"1986":2,"2068":1,"2582":1,"2704":1,"2928":2,"2934":1}}],["program",{"0":{"1315":1},"1":{"1316":1,"1317":1},"2":{"398":1,"489":1,"491":2,"540":1,"619":1,"665":1,"754":1,"1205":1,"1292":1,"1311":1,"1467":3,"1593":1,"1605":1,"2054":1,"2251":1,"2291":1,"2418":1,"2432":1,"2572":2,"2591":3,"2619":3,"2750":3,"2807":1,"2934":3,"2945":1}}],["programmed",{"2":{"2617":1}}],["programmer>",{"2":{"2502":1}}],["programmers",{"2":{"529":1,"2490":1,"2502":1,"2508":1}}],["programmer",{"0":{"389":1},"2":{"389":1,"1315":3,"1523":3,"1928":1,"2383":4,"2386":1,"2389":2,"2417":1,"2484":1,"2486":1,"2488":1,"2490":1,"2492":1,"2494":1,"2502":2,"2573":1,"2615":3,"2887":3}}],["programmatically",{"2":{"1742":1,"1850":1,"2088":1,"2297":1,"2326":1}}],["programmatic",{"2":{"1686":1}}],["programmable",{"0":{"2016":1,"2020":1,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2032":1,"2033":1,"2035":1,"2536":1},"1":{"2017":1,"2018":1,"2019":1,"2020":1,"2021":1,"2022":2,"2023":1,"2024":2,"2025":1,"2026":2,"2027":1,"2028":2,"2029":1,"2030":2,"2031":2,"2032":1,"2033":1,"2034":2,"2035":1,"2036":2},"2":{"134":4,"149":1,"188":1,"190":1,"191":3,"231":3,"1292":1,"2016":2,"2018":64,"2020":1,"2032":1,"2033":1,"2034":1,"2035":1,"2036":1,"2460":1,"2536":65,"2704":1,"2940":1}}],["programming",{"0":{"630":1,"2461":1},"1":{"631":1,"632":1},"2":{"611":1,"2054":1,"2057":1,"2478":1,"2503":1,"2568":1,"2572":1,"2589":1,"2615":1,"2673":1,"2809":1,"2818":2,"2933":1}}],["progressively",{"2":{"213":1}}],["progress",{"2":{"113":1,"377":1,"714":1,"2218":1}}],["progressed",{"2":{"109":1}}],["progmem",{"2":{"94":1,"114":1,"149":1,"247":1,"307":1,"589":1,"729":1,"772":1,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1446":2,"1527":1,"1535":1,"1540":1,"1602":2,"1603":2,"1604":2,"1605":6,"1617":1,"1618":1,"1640":1,"1667":1,"1702":1,"1717":1,"1718":1,"1721":1,"1722":1,"1924":1,"1946":1,"1954":3,"2187":7,"2189":5,"2191":3,"2232":1,"2234":1,"2285":1,"2290":3,"2303":1,"2305":1,"2312":1,"2329":1,"2330":1,"2557":1,"2562":2,"2585":1,"2926":1,"2938":1}}],["pro",{"0":{"271":1,"1391":1,"1394":2,"2484":1,"2702":1},"1":{"1392":1,"1393":1,"1394":1,"1395":1,"1396":1,"1397":1,"1398":1,"2485":1},"2":{"77":1,"86":2,"102":3,"114":12,"134":2,"143":2,"149":2,"159":4,"160":2,"163":1,"172":1,"176":4,"189":1,"191":2,"197":2,"199":1,"222":3,"236":2,"271":2,"317":2,"322":2,"546":1,"568":1,"709":1,"713":2,"1317":1,"1389":1,"1391":7,"1396":1,"1398":1,"1400":1,"1401":1,"1406":1,"2261":1,"2263":1,"2266":1,"2267":1,"2273":2,"2279":1,"2386":1,"2387":1,"2421":1,"2423":1,"2424":2,"2484":2,"2485":3,"2486":1,"2499":3,"2503":1,"2589":1,"2688":1,"2690":1,"2691":6,"2700":2,"2702":2,"2703":1,"2706":1,"2714":2,"2835":1,"2887":4,"2895":3}}],["producing",{"2":{"93":1,"2178":1}}],["production",{"0":{"2462":1,"2504":1},"2":{"461":1,"2384":3,"2391":3,"2462":1,"2504":2}}],["products",{"2":{"142":1,"749":3,"1319":1,"2571":1,"2739":1,"2851":1}}],["product",{"2":{"70":1,"134":2,"169":2,"184":2,"191":2,"561":2,"713":1,"749":4,"750":1,"1319":4,"1332":1,"2057":2,"2059":5,"2384":2,"2391":2,"2483":1,"2566":1,"2568":1,"2746":1,"2852":2,"2882":1}}],["producers",{"2":{"2569":1}}],["produced",{"2":{"430":1,"561":1,"2071":2,"2396":1,"2397":1,"2802":1,"2803":1}}],["produces",{"2":{"303":1,"338":1,"1480":1,"1597":2,"1802":1,"2071":2,"2079":2}}],["produce",{"2":{"49":1,"170":1,"209":1,"266":1,"721":1,"1518":3,"1527":1,"1602":1,"1926":1,"2429":1,"2474":1,"2501":1,"2589":1,"2925":3}}],["protozoa",{"2":{"211":2}}],["prototypist",{"2":{"143":2,"149":1,"211":3,"222":2}}],["prototypes",{"2":{"133":1,"134":1,"2457":1,"2746":1}}],["prototype",{"2":{"114":1,"191":1,"2462":1,"2744":1}}],["proto",{"2":{"114":1,"134":1,"253":1}}],["protocol=serial",{"2":{"266":1,"277":1}}],["protocols",{"0":{"2297":1},"2":{"133":1,"134":1,"2292":1,"2294":2,"2297":3,"2298":1,"2374":1}}],["protocol",{"0":{"2294":1},"1":{"2295":1,"2296":1,"2297":1},"2":{"50":1,"75":1,"111":2,"112":1,"113":1,"114":1,"133":3,"134":3,"160":1,"176":2,"191":1,"199":2,"222":1,"236":2,"249":1,"263":1,"265":1,"266":1,"396":1,"570":1,"575":1,"1283":1,"1286":1,"1682":1,"1966":1,"1978":1,"1981":1,"2046":1,"2178":1,"2276":1,"2294":1,"2295":2,"2296":2,"2297":6,"2298":2,"2300":4,"2374":1,"2386":1,"2396":1,"2469":1,"2738":1,"2806":2,"2880":3,"2881":2,"2934":2,"2935":1}}],["proton",{"0":{"304":1,"1211":1,"1392":1,"1479":1,"2688":1},"1":{"2689":1,"2690":1,"2691":1},"2":{"49":3,"50":2,"77":1,"134":2,"160":1,"172":2,"189":2,"304":1,"308":1,"548":1,"568":1,"723":1,"764":1,"1200":2,"1248":1,"1269":1,"1311":1,"1389":1,"1390":2,"1391":3,"1392":2,"1395":1,"1405":1,"1406":2,"1479":1,"1556":1,"2273":1,"2394":1,"2421":1,"2423":1,"2424":1,"2683":2,"2688":1,"2690":2,"2691":6,"2895":1}}],["protected",{"2":{"2807":1}}],["protection",{"2":{"312":1}}],["protect",{"2":{"26":1,"749":1,"2466":1}}],["project¹",{"2":{"2662":1}}],["projectcain",{"2":{"249":1,"333":1}}],["projects",{"0":{"1311":1,"2462":1},"1":{"1312":1},"2":{"204":1,"561":2,"665":1,"2382":1,"2412":1,"2452":1,"2454":1,"2658":1,"2659":1}}],["project",{"0":{"42":1,"611":1,"2414":1,"2449":1,"2662":1},"2":{"211":2,"213":1,"353":1,"393":1,"414":1,"519":1,"560":1,"609":1,"613":1,"621":1,"1311":1,"1343":1,"1963":1,"2291":1,"2405":2,"2411":1,"2412":2,"2414":2,"2434":1,"2462":3,"2464":1,"2659":1,"2662":5,"2663":6,"2714":4,"2817":1}}],["pr",{"0":{"416":1,"423":1,"2569":1,"2743":1},"1":{"2744":1,"2745":1,"2746":1,"2747":1,"2748":1,"2749":1,"2750":1},"2":{"1":1,"14":1,"32":1,"36":1,"49":1,"130":1,"134":1,"149":2,"191":1,"198":1,"199":1,"229":1,"236":1,"255":1,"256":1,"265":1,"273":1,"275":1,"308":1,"344":12,"403":11,"406":1,"407":1,"408":1,"409":1,"416":1,"422":1,"505":1,"506":2,"615":2,"618":1,"619":2,"1410":1,"1413":3,"1433":1,"1605":1,"2297":1,"2301":3,"2567":5,"2569":2,"2744":8,"2746":8,"2747":6,"2749":2,"2854":2}}],["prs",{"0":{"38":1,"2744":1,"2745":1,"2746":1,"2747":1},"2":{"1":1,"21":1,"134":1,"188":1,"199":1,"213":1,"224":1,"233":1,"251":2,"265":1,"268":2,"275":1,"279":1,"307":1,"399":1,"402":4,"403":4,"405":3,"406":1,"407":1,"412":9,"458":1,"615":1,"619":1,"2567":5,"2569":3,"2570":1,"2571":1,"2743":1,"2744":1,"2745":1,"2746":4,"2747":3,"2748":1,"2749":3}}],["tft",{"2":{"2439":1,"2763":1}}],["tsr",{"2":{"2301":1}}],["tsangan",{"2":{"211":2,"285":1,"308":1,"328":1}}],["tl",{"2":{"2301":3,"2321":2}}],["tps65",{"2":{"1969":1,"1970":2}}],["tps43",{"2":{"1969":1,"1970":2}}],["tpyo",{"2":{"1534":1}}],["tpm754",{"2":{"1378":2}}],["t6181",{"2":{"1379":1}}],["t1l",{"2":{"1295":1}}],["t1h",{"2":{"1285":1,"1286":1,"1295":1}}],["tmpu",{"2":{"2253":1}}],["tmpd",{"2":{"2253":1}}],["tm023023",{"2":{"1973":1}}],["tm035035",{"2":{"1973":1}}],["tm040040",{"2":{"1973":1}}],["tm1812",{"2":{"1287":1}}],["tmk",{"0":{"619":1,"1343":1},"2":{"1":1,"38":1,"49":1,"75":2,"113":4,"114":5,"133":3,"134":3,"176":1,"199":1,"222":2,"574":2,"1319":2,"1335":1,"1343":6,"1352":2,"1353":4,"1359":2,"1361":2,"1376":1,"1382":1,"1387":2,"2374":1,"2412":3,"2557":1,"2562":1,"2612":1,"2803":1,"2934":1}}],["t0l",{"2":{"355":1,"1295":1}}],["t0h",{"2":{"355":1,"1285":1,"1286":1,"1295":1}}],["td",{"2":{"324":1,"325":1,"1603":2,"2309":1,"2312":4,"2313":1,"2315":1,"2316":1,"2317":41,"2318":26,"2319":25}}],["tbkmini",{"2":{"311":8,"317":2}}],["tbk",{"2":{"277":1}}],["tty",{"2":{"2502":1}}],["ttyacmx",{"2":{"2502":1}}],["ttf",{"2":{"467":1,"2760":1,"2762":3,"2764":1}}],["tt",{"2":{"194":1,"564":1,"1422":2,"1690":1,"1789":1,"2000":1,"2304":2,"2523":1,"2539":1,"2921":1}}],["txbolt",{"2":{"2295":1,"2881":1}}],["txen1",{"2":{"2043":1}}],["txled",{"2":{"1392":1,"1396":1}}],["tx",{"0":{"778":2,"2295":1},"1":{"779":2,"780":2},"2":{"277":1,"779":3,"1197":4,"1198":3,"1200":8,"1201":6,"1205":1,"1211":11,"1212":9,"1213":8,"1268":2,"1269":4,"2294":1,"2295":3,"2296":1,"2298":1,"2301":4,"2691":2,"2702":3,"2704":2}}],["txt",{"2":{"191":1,"463":2,"1527":1,"1529":1,"2634":4}}],["txuu",{"2":{"143":2}}],["tube",{"2":{"2425":1}}],["tuning",{"2":{"2076":1,"2921":1,"2927":1}}],["tuned",{"2":{"1974":1,"2722":1}}],["tunes",{"2":{"1473":1}}],["tune",{"2":{"176":2,"1769":1,"1787":1,"2077":1,"2771":1,"2931":1}}],["tuple",{"2":{"526":2,"528":1}}],["tuples",{"0":{"526":1},"2":{"526":1}}],["tutorial",{"0":{"2572":1},"1":{"2573":1,"2574":1},"2":{"389":1,"762":1,"2589":1,"2590":2,"2644":1,"2646":1,"2655":1,"2906":2}}],["tuw",{"2":{"328":1}}],["tuv",{"2":{"266":1}}],["tuvw",{"2":{"249":1}}],["turquoise",{"2":{"2089":2,"2205":2}}],["turing",{"2":{"2008":2}}],["turkish",{"2":{"134":1,"2887":6}}],["turnaround",{"2":{"265":1,"2604":1}}],["turn",{"0":{"2315":1},"2":{"92":1,"124":1,"152":1,"222":1,"409":1,"647":1,"669":1,"674":1,"718":1,"1195":1,"1207":1,"1288":1,"1322":1,"1485":1,"1543":2,"1545":1,"1549":1,"1561":1,"1562":1,"1573":1,"1574":1,"1680":2,"1708":1,"1710":1,"1780":2,"1789":1,"1791":1,"1792":1,"1843":2,"1848":2,"1852":1,"1859":1,"1860":1,"1861":1,"1862":1,"1925":2,"1947":1,"1954":2,"2013":1,"2084":2,"2085":3,"2091":1,"2101":1,"2102":1,"2103":1,"2104":1,"2191":2,"2200":4,"2210":1,"2249":1,"2286":1,"2290":2,"2293":1,"2304":5,"2315":2,"2418":1,"2515":2,"2523":3,"2525":2,"2527":2,"2533":2,"2539":5,"2564":1,"2704":1,"2746":1,"2769":1,"2856":1,"2857":1,"2867":1,"2871":1,"2877":1,"2878":1,"2935":1}}],["turned",{"2":{"77":1,"619":2,"1491":1,"1546":1,"1648":1,"1670":1,"1839":1,"1961":1,"2191":1,"2330":1,"2651":1,"2722":1}}],["turns",{"2":{"31":1,"34":1,"152":1,"561":1,"1417":1,"1428":10,"1485":2,"1490":2,"1493":2,"1495":6,"1521":2,"1530":2,"1536":2,"1593":1,"1594":4,"1595":2,"1597":1,"1598":1,"1599":2,"1601":1,"1606":2,"1793":2,"1838":2,"1852":1,"1948":1,"1949":1,"1954":3,"2091":1,"2288":1,"2290":4,"2306":2,"2309":1,"2417":2,"2512":6,"2513":2,"2514":2,"2523":2,"2535":2,"2651":2,"2762":1,"2767":2,"2861":2}}],["turning",{"2":{"13":1,"25":1,"134":1,"195":1,"328":1,"651":1,"1485":1,"1947":1,"2012":1,"2286":1,"2418":1,"2811":1,"2935":1}}],["tzarc",{"2":{"174":1,"176":1,"288":1}}],["typ65+",{"2":{"211":1}}],["typists",{"2":{"1410":1,"2919":1,"2920":1}}],["typically",{"2":{"672":1,"1288":1,"1297":1,"1343":1,"1346":1,"1425":1,"1498":1,"1742":1,"1790":1,"1951":1,"1986":1,"2317":1,"2418":1,"2455":1,"2456":1,"2562":1,"2727":1,"2805":1,"2807":1,"2845":1,"2926":1,"2936":1,"2937":1}}],["typical",{"2":{"194":1,"489":1,"1422":1,"1558":1,"1593":1,"1986":1,"2562":1,"2566":1}}],["typing",{"0":{"2071":1,"2086":1},"2":{"152":1,"195":1,"211":1,"246":1,"297":3,"308":1,"645":1,"1425":1,"1493":1,"1522":1,"1529":2,"1535":1,"1597":2,"1801":1,"1802":2,"1999":1,"2065":1,"2071":2,"2079":2,"2085":3,"2086":6,"2209":1,"2231":1,"2235":1,"2291":1,"2302":1,"2317":5,"2331":1,"2379":5,"2434":1,"2682":2,"2831":1,"2894":1,"2922":2,"2930":2,"2931":1,"2945":1}}],["typographic",{"2":{"199":1}}],["typos",{"2":{"134":2,"249":1,"308":1,"1524":1,"1525":3,"1527":1,"1528":2,"1532":1}}],["typo",{"2":{"114":4,"134":4,"149":3,"176":1,"191":1,"249":1,"1525":3,"1527":3,"1528":4,"1529":2,"1532":2,"1533":4,"1534":4,"1535":4,"1538":4,"1539":1}}],["typeid",{"2":{"2777":2,"2779":1,"2780":1,"2781":1,"2782":1,"2783":1,"2784":1,"2785":2,"2787":1,"2788":1,"2789":1,"2790":2,"2791":2}}],["typed",{"2":{"1443":2,"1523":1,"1524":1,"1625":1,"1784":1,"1785":1,"1786":9,"2070":2,"2071":1,"2317":1,"2330":1,"2912":1}}],["typedef",{"2":{"236":1,"1420":1,"1953":1,"1954":1,"2277":1,"2290":1,"2317":1,"2318":1,"2319":2,"2788":1}}],["typeof",{"2":{"1419":4}}],["typewriter",{"2":{"236":1}}],["typenames",{"2":{"176":1}}],["typestring",{"2":{"2854":1}}],["types",{"0":{"671":1,"1410":1},"2":{"114":2,"119":1,"149":1,"191":1,"196":2,"236":1,"555":2,"615":1,"671":1,"1627":1,"1678":1,"1798":2,"1952":1,"2065":1,"2071":1,"2225":1,"2226":2,"2382":2,"2531":1,"2762":2,"2841":1,"2912":1}}],["type",{"0":{"539":1,"1945":1},"2":{"49":2,"111":1,"112":1,"114":2,"132":1,"143":2,"149":1,"152":2,"160":1,"199":1,"211":1,"222":1,"236":4,"249":3,"273":1,"277":1,"333":2,"376":1,"386":1,"432":1,"504":1,"539":1,"555":1,"574":1,"600":1,"615":1,"639":1,"669":1,"696":1,"711":2,"712":1,"1379":2,"1409":1,"1410":1,"1413":2,"1414":1,"1440":1,"1442":2,"1444":1,"1446":2,"1472":1,"1490":1,"1493":1,"1522":2,"1529":2,"1538":1,"1539":2,"1593":2,"1602":1,"1615":1,"1648":1,"1762":1,"1766":2,"1802":2,"1846":3,"1952":4,"1953":1,"1966":1,"1978":1,"1981":1,"1983":1,"1984":1,"2008":1,"2009":1,"2014":1,"2082":3,"2209":1,"2228":1,"2229":1,"2230":1,"2231":1,"2232":1,"2233":1,"2234":1,"2235":1,"2236":1,"2237":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":1,"2245":1,"2246":1,"2273":1,"2289":3,"2302":2,"2303":1,"2317":4,"2318":2,"2319":1,"2327":1,"2330":1,"2374":1,"2417":1,"2418":1,"2449":1,"2455":6,"2468":1,"2502":1,"2612":1,"2650":3,"2664":1,"2683":1,"2760":1,"2763":2,"2777":1,"2778":4,"2779":2,"2780":2,"2781":2,"2782":2,"2783":2,"2784":2,"2785":1,"2787":2,"2788":2,"2789":2,"2841":1,"2871":1,"2878":1,"2945":1}}],["tweezers",{"2":{"2421":1,"2428":1}}],["tweetydabird",{"2":{"311":8,"317":1}}],["tweak",{"2":{"119":1,"285":1,"2086":1,"2185":1,"2581":1}}],["tweaks",{"0":{"2893":1},"2":{"94":1,"149":1,"277":1,"294":1,"2665":1}}],["tw40",{"2":{"241":2}}],["tw",{"2":{"93":1,"2181":1,"2532":1}}],["twisting",{"2":{"2427":1}}],["twinkling",{"2":{"2185":1}}],["twinkle",{"2":{"74":1,"93":1,"114":1,"231":1,"2181":2,"2183":2,"2184":2,"2185":3,"2187":2,"2532":2,"2894":1}}],["twi",{"2":{"249":1}}],["twig50",{"2":{"191":1}}],["twice",{"2":{"92":1,"1498":1,"2252":1,"2308":1,"2309":1,"2312":1,"2386":1,"2499":1,"2861":1}}],["two",{"0":{"359":1,"360":1,"1823":1},"1":{"1824":1,"1825":1},"2":{"18":1,"31":1,"34":1,"35":1,"49":1,"114":1,"149":1,"196":2,"203":1,"222":1,"255":1,"277":1,"289":1,"344":1,"359":1,"360":1,"396":1,"473":1,"491":1,"538":1,"555":1,"615":1,"619":1,"631":1,"648":1,"665":1,"673":2,"688":1,"709":1,"715":2,"722":1,"1192":3,"1200":2,"1252":1,"1296":1,"1351":1,"1364":1,"1367":2,"1395":1,"1398":2,"1410":1,"1422":1,"1433":1,"1446":1,"1464":1,"1474":1,"1478":1,"1482":1,"1486":1,"1503":1,"1517":1,"1538":3,"1539":1,"1609":1,"1614":1,"1617":1,"1627":1,"1632":1,"1634":1,"1640":1,"1661":1,"1667":1,"1670":3,"1697":1,"1740":1,"1742":1,"1743":1,"1798":2,"1804":1,"1919":1,"1923":1,"1944":1,"1948":1,"1953":2,"1969":1,"1971":3,"2015":1,"2038":1,"2042":1,"2058":1,"2079":1,"2085":1,"2186":1,"2189":1,"2208":1,"2210":1,"2226":1,"2242":1,"2261":3,"2263":2,"2266":1,"2267":1,"2287":1,"2295":2,"2300":1,"2301":1,"2310":1,"2317":2,"2427":3,"2460":1,"2558":1,"2569":1,"2576":1,"2614":1,"2634":1,"2638":1,"2683":1,"2691":1,"2701":1,"2704":1,"2749":1,"2792":1,"2919":2,"2925":4,"2941":2,"2949":1}}],["tgr",{"2":{"122":2,"134":1}}],["tg",{"2":{"38":1,"1422":2,"2000":3,"2013":2,"2309":1,"2319":3,"2523":1}}],["tkd",{"2":{"2567":1}}],["tkm",{"2":{"114":1,"211":1}}],["tkc",{"2":{"43":4,"211":3}}],["tkc1800",{"0":{"33":1,"34":1},"1":{"34":1},"2":{"33":2,"34":1,"43":2,"2797":1}}],["tkl87",{"2":{"270":1,"277":1}}],["tklfrlnrlmlao",{"2":{"211":1}}],["tkl",{"2":{"18":2,"110":1,"197":6,"211":5,"226":2,"236":1,"253":2,"281":2,"2301":1,"2607":1,"2746":1}}],["tainting",{"2":{"2739":1}}],["tacworks",{"2":{"2567":1}}],["tate",{"2":{"2079":1}}],["talking",{"2":{"619":1,"2261":1}}],["talk",{"2":{"613":1,"619":2,"620":1,"1252":1,"2410":1,"2508":1}}],["tandem",{"2":{"419":1}}],["tahoe",{"2":{"339":1}}],["tag+=",{"2":{"1332":1}}],["tagging",{"2":{"420":1}}],["tagged",{"2":{"402":1}}],["tag",{"2":{"211":1,"228":1,"354":1,"409":2,"411":1,"420":2,"421":1,"618":1,"2664":1,"2683":1}}],["tags",{"0":{"110":1},"2":{"110":5,"420":2,"421":1,"422":2,"2639":1,"2795":1,"2852":2}}],["tabbing",{"2":{"1366":1}}],["tabs",{"0":{"356":1},"1":{"357":1,"358":1,"359":1,"360":1,"361":1},"2":{"356":1,"512":1,"514":1,"2432":1,"2745":1}}],["tabsification",{"2":{"191":1}}],["tab",{"0":{"357":1,"360":1,"361":1,"507":1,"1366":1,"1505":1},"1":{"358":1,"359":1,"508":1,"509":1,"510":1,"511":1},"2":{"222":1,"356":1,"375":1,"393":3,"397":1,"507":2,"508":1,"509":1,"510":4,"511":2,"579":1,"580":1,"589":2,"712":1,"1347":3,"1366":4,"1381":1,"1462":14,"1504":1,"1505":1,"1510":2,"1516":1,"1604":1,"1605":3,"1618":4,"1622":2,"2069":9,"2222":2,"2298":2,"2317":2,"2381":1,"2510":2,"2544":2,"2554":1,"2557":1,"2563":1,"2576":1,"2601":1,"2651":1,"2663":2,"2795":1}}],["tables",{"0":{"351":1},"2":{"2223":1,"2696":1,"2840":1,"2885":1,"2886":1}}],["tablet",{"2":{"100":1,"1421":1}}],["table",{"0":{"462":1,"2788":1,"2789":1},"2":{"55":1,"160":1,"191":1,"199":1,"247":1,"285":1,"462":3,"675":1,"677":2,"681":1,"690":1,"712":1,"719":3,"723":1,"1198":1,"1201":1,"1480":1,"1553":1,"1554":1,"1846":1,"1999":1,"2082":1,"2183":1,"2303":1,"2329":2,"2330":7,"2372":1,"2418":2,"2427":1,"2472":1,"2692":1,"2705":1,"2764":2,"2787":6,"2788":4,"2789":3}}],["taking",{"2":{"346":1,"414":1,"609":1,"2079":1,"2189":1,"2468":1,"2634":1,"2663":1,"2919":1}}],["takashicompany",{"2":{"249":2,"449":2}}],["takashiski",{"2":{"143":4,"149":2}}],["takai",{"2":{"149":1}}],["taken",{"2":{"414":1,"489":1,"1424":1,"1648":1,"2309":1,"2479":1}}],["take",{"0":{"1331":1},"2":{"134":1,"191":2,"194":1,"222":1,"236":1,"288":1,"302":1,"393":1,"397":1,"420":1,"470":1,"474":1,"572":1,"610":1,"619":1,"665":1,"762":1,"770":1,"773":1,"776":1,"779":2,"782":1,"785":1,"788":1,"791":1,"1260":1,"1263":1,"1278":1,"1280":1,"1351":1,"1448":1,"1783":1,"1786":1,"1787":1,"1954":1,"2189":1,"2210":1,"2269":1,"2319":1,"2419":1,"2428":1,"2461":1,"2572":1,"2707":1,"2749":1,"2753":1,"2889":1,"2901":1,"2938":1,"2944":1,"2949":1}}],["takes",{"2":{"49":1,"474":1,"748":1,"1356":1,"1383":1,"1409":1,"1619":1,"1681":1,"1771":1,"1772":1,"1773":1,"1786":1,"1957":1,"2297":1,"2309":1,"2317":1,"2410":1,"2563":1,"2633":1,"2824":1,"2893":1,"2924":1,"2926":1}}],["taurus",{"2":{"114":1}}],["ta65",{"2":{"57":2}}],["taro",{"2":{"143":2}}],["targeted",{"2":{"2279":1,"2711":1}}],["target2initiator",{"2":{"2277":4}}],["targets",{"0":{"2385":1,"2387":1,"2392":1,"2394":1,"2399":1,"2401":1,"2403":1,"2608":1,"2609":1},"2":{"173":1,"176":1,"199":1,"204":1,"213":1,"236":1,"279":1,"293":3,"294":1,"305":3,"314":3,"433":11,"452":2,"453":2,"454":2,"455":1,"611":1,"1407":1,"2273":1,"2279":1,"2417":1,"2608":1,"2609":2,"2610":1,"2683":3,"2747":1}}],["targeting",{"2":{"149":1,"412":3,"1196":1,"1199":1,"2712":1,"2745":1,"2746":1}}],["target",{"0":{"2000":1,"2008":1,"2012":1,"2014":1},"2":{"49":2,"94":1,"114":3,"149":1,"160":1,"198":1,"236":1,"240":1,"266":23,"294":1,"317":1,"354":1,"423":4,"430":1,"433":2,"455":1,"514":1,"721":1,"770":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"794":1,"1198":1,"1201":1,"1300":1,"1388":1,"1391":1,"1399":1,"1406":1,"1407":1,"1427":1,"1472":1,"1952":4,"1962":1,"1999":6,"2000":12,"2001":1,"2003":1,"2006":1,"2008":8,"2009":1,"2011":4,"2012":6,"2013":1,"2014":3,"2015":1,"2383":1,"2384":2,"2386":1,"2388":1,"2389":1,"2390":1,"2391":3,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2407":5,"2417":5,"2475":1,"2483":2,"2494":1,"2502":1,"2508":1,"2616":2,"2657":1,"2663":2,"2683":3,"2744":1,"2747":1,"2763":3}}],["tartan",{"2":{"37":2}}],["tasks",{"2":{"76":1,"149":1,"425":1,"574":1,"651":1,"1550":1,"1602":1,"2934":1}}],["task",{"0":{"125":1,"647":1,"2015":1,"2759":1},"2":{"31":2,"34":1,"49":1,"64":1,"84":1,"93":1,"113":1,"114":1,"125":4,"134":5,"149":2,"211":1,"266":2,"277":1,"317":1,"628":1,"640":1,"646":2,"647":2,"656":1,"1392":1,"1393":1,"1420":1,"1551":1,"1638":6,"1852":1,"1945":2,"1946":1,"1947":1,"1948":1,"1954":5,"1955":4,"1974":1,"1983":2,"1985":2,"1988":2,"1989":3,"1990":2,"1993":2,"1994":1,"1996":1,"1997":1,"2014":1,"2015":8,"2091":1,"2277":2,"2284":2,"2286":1,"2287":1,"2290":4,"2310":1,"2573":1,"2632":1,"2759":5,"2761":4,"2764":7,"2871":1,"2878":1,"2935":3}}],["tapdance",{"2":{"2318":11}}],["tape",{"2":{"2298":2,"2425":2,"2435":2}}],["tapped1",{"2":{"2575":1}}],["tapped",{"2":{"289":1,"297":1,"320":1,"564":1,"1367":1,"1422":1,"1423":1,"1462":1,"1533":2,"1594":1,"1612":2,"1690":3,"2000":1,"2257":7,"2259":7,"2260":3,"2304":2,"2308":1,"2309":4,"2317":2,"2318":3,"2510":1,"2523":2,"2530":29,"2538":7,"2539":2,"2549":1,"2575":29,"2576":1,"2650":1,"2913":1,"2919":3,"2922":1,"2925":2,"2927":1,"2930":1}}],["tapping",{"0":{"119":1,"195":1,"1612":1,"2531":1,"2910":1,"2912":1,"2928":1},"1":{"2911":1,"2912":1,"2929":1},"2":{"22":2,"49":1,"63":1,"112":11,"119":11,"134":2,"149":1,"160":1,"176":1,"188":1,"191":1,"194":1,"195":6,"199":3,"203":1,"222":3,"289":1,"294":1,"297":1,"320":1,"339":1,"562":2,"564":12,"574":2,"1422":2,"1466":1,"1498":1,"1499":2,"1503":1,"1518":6,"1519":1,"1522":1,"1533":2,"1538":1,"1594":6,"1610":1,"1690":1,"1788":2,"1795":1,"1976":3,"1977":1,"2000":2,"2003":1,"2065":2,"2259":1,"2304":2,"2309":9,"2310":4,"2317":4,"2318":1,"2319":7,"2389":1,"2531":9,"2650":1,"2841":1,"2854":1,"2890":2,"2910":10,"2911":9,"2912":51,"2913":6,"2914":2,"2918":6,"2919":6,"2920":4,"2921":8,"2922":2,"2925":4,"2928":11,"2929":2,"2930":4,"2940":1}}],["taps",{"0":{"320":1,"2314":1,"2577":1,"2915":1},"1":{"2578":1,"2579":1,"2580":1},"2":{"98":1,"176":1,"191":1,"194":7,"211":1,"289":1,"294":1,"297":1,"308":1,"320":1,"328":1,"564":2,"720":1,"1422":2,"1455":1,"1518":2,"1519":1,"1594":2,"1788":1,"1801":1,"1803":2,"1974":2,"2226":1,"2304":1,"2309":1,"2310":1,"2316":1,"2317":2,"2554":2,"2746":1,"2911":2,"2912":2,"2922":1,"2925":1,"2928":1,"2930":2,"2948":1}}],["tap",{"0":{"15":1,"22":1,"194":1,"195":1,"206":1,"297":1,"323":1,"1370":1,"1372":1,"1448":1,"1455":1,"1456":1,"1457":2,"1519":1,"1795":1,"2246":1,"2307":1,"2309":1,"2312":2,"2316":1,"2317":1,"2318":3,"2319":1,"2530":1,"2575":1,"2578":1,"2580":1,"2700":1,"2775":1,"2842":1,"2843":1,"2909":1,"2913":1,"2916":1,"2921":1,"2922":1,"2923":1,"2924":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1,"2576":1,"2577":1,"2578":1,"2579":1,"2580":1,"2581":1,"2910":1,"2911":1,"2912":1,"2913":1,"2914":2,"2915":2,"2916":2,"2917":2,"2918":2,"2919":2,"2920":2,"2921":1,"2922":1,"2923":2,"2924":2,"2925":1,"2926":1,"2927":1,"2928":1,"2929":1,"2930":1,"2931":1,"2932":1},"2":{"22":3,"38":1,"49":3,"74":1,"90":8,"112":5,"120":3,"134":1,"149":4,"152":2,"176":7,"191":4,"194":14,"195":10,"196":1,"199":6,"203":3,"206":3,"211":3,"222":3,"249":1,"266":1,"277":1,"289":2,"294":1,"297":8,"308":7,"317":1,"320":4,"323":7,"324":10,"325":13,"328":2,"379":1,"562":1,"564":18,"592":2,"710":1,"1370":1,"1372":1,"1422":2,"1423":1,"1427":1,"1441":3,"1444":4,"1448":7,"1450":1,"1455":3,"1456":1,"1462":2,"1472":1,"1496":2,"1498":2,"1499":2,"1510":1,"1517":4,"1518":6,"1519":1,"1532":1,"1533":11,"1535":1,"1538":1,"1594":4,"1597":1,"1603":2,"1605":3,"1610":1,"1612":17,"1618":3,"1667":1,"1668":4,"1690":5,"1762":1,"1788":1,"1789":3,"1791":2,"1795":6,"1798":1,"1801":1,"1803":1,"1937":3,"1971":8,"1976":4,"1977":5,"1999":4,"2000":2,"2065":1,"2181":1,"2222":1,"2226":1,"2255":2,"2259":4,"2260":2,"2297":2,"2304":4,"2308":1,"2309":35,"2310":21,"2312":8,"2313":1,"2314":5,"2315":12,"2316":59,"2317":53,"2318":23,"2319":49,"2327":1,"2344":4,"2345":3,"2346":3,"2381":8,"2390":1,"2393":2,"2395":2,"2396":1,"2397":1,"2398":2,"2400":4,"2402":4,"2404":5,"2530":1,"2539":1,"2575":3,"2576":3,"2578":4,"2579":7,"2580":5,"2581":2,"2650":2,"2651":1,"2652":2,"2700":7,"2702":1,"2746":1,"2775":1,"2825":1,"2842":1,"2843":1,"2854":4,"2861":1,"2870":3,"2874":2,"2890":2,"2907":2,"2909":2,"2910":1,"2911":13,"2912":8,"2913":4,"2914":2,"2918":1,"2919":11,"2920":4,"2921":14,"2922":15,"2923":8,"2924":20,"2925":3,"2927":6,"2928":2,"2930":9,"2931":1,"2940":2,"2945":4,"2948":1}}],["ti",{"2":{"2802":1}}],["tie",{"2":{"2794":1}}],["tied",{"2":{"419":1,"2475":1,"2796":1}}],["tin",{"2":{"2427":1}}],["tiny",{"0":{"2672":1}}],["tinyuf2",{"0":{"2400":1},"1":{"2401":1},"2":{"93":1,"176":1,"199":1,"277":1,"2400":5,"2672":2}}],["tinyprintf",{"0":{"24":1}}],["tion",{"2":{"2079":2}}],["tilde",{"2":{"1777":2,"2534":1,"2555":1,"2886":1}}],["tild",{"2":{"1423":1,"2534":1,"2555":1,"2576":1}}],["tips",{"0":{"680":1,"1437":1},"1":{"1438":1,"1439":1},"2":{"1935":1,"1936":1,"1939":1,"2427":1,"2429":1}}],["tip",{"0":{"1655":1,"1656":1},"2":{"288":1,"352":2,"379":1,"488":1,"504":1,"555":1,"596":1,"598":1,"599":1,"651":1,"656":1,"680":4,"711":1,"717":1,"749":1,"763":1,"764":1,"1192":1,"1209":1,"1303":1,"1388":1,"1390":1,"1412":1,"1413":2,"1415":1,"1428":1,"1446":2,"1451":1,"1472":1,"1503":1,"1528":1,"1532":1,"1533":1,"1534":1,"1535":1,"1590":1,"1633":1,"1640":1,"1645":2,"1647":1,"1651":2,"1655":1,"1656":1,"1661":1,"1667":2,"1668":1,"1740":1,"1835":1,"1849":1,"1850":1,"1940":1,"1946":1,"1957":1,"1962":1,"1970":1,"1998":1,"2016":1,"2075":1,"2085":2,"2088":1,"2095":1,"2096":1,"2179":1,"2181":1,"2188":1,"2212":1,"2219":1,"2266":1,"2273":2,"2274":1,"2278":2,"2309":1,"2410":1,"2450":1,"2453":1,"2454":1,"2455":1,"2499":1,"2501":1,"2503":1,"2549":1,"2583":1,"2586":1,"2592":1,"2597":1,"2600":1,"2602":1,"2603":1,"2613":1,"2619":1,"2626":1,"2628":2,"2629":1,"2633":1,"2635":1,"2639":1,"2640":2,"2678":1,"2702":1,"2717":1,"2721":1,"2753":1,"2763":1,"2764":5,"2771":1,"2775":1,"2794":1,"2795":1,"2902":1,"2910":1,"2919":1,"2921":1}}],["tiger80",{"2":{"211":1}}],["tiger910",{"2":{"143":2}}],["tighter",{"2":{"2085":2,"2603":1}}],["tight",{"2":{"191":1,"1290":1}}],["ticking",{"2":{"2384":1,"2391":1}}],["tick3",{"2":{"1686":1}}],["tick2",{"2":{"1686":1}}],["tick1",{"2":{"1686":1}}],["tick",{"2":{"160":2,"285":1,"339":1,"647":1,"711":1,"1686":6,"1986":2}}],["ticks",{"2":{"25":1,"64":1,"176":1,"1556":1,"2757":1}}],["title",{"2":{"149":1,"341":1,"356":1,"613":2,"675":1}}],["tidy",{"2":{"50":1,"114":3,"131":1,"133":1,"134":3,"149":2,"199":3,"211":3,"222":1,"249":1,"266":3,"308":1,"328":1,"2425":1,"2431":1}}],["tim4",{"2":{"1556":3}}],["tim2",{"2":{"1303":2}}],["timx",{"2":{"721":2,"1303":5,"1483":1}}],["tim8",{"2":{"717":3,"723":1}}],["tim7",{"2":{"717":3}}],["tim6",{"2":{"717":3,"718":3}}],["tim15",{"2":{"1557":2}}],["tim1",{"2":{"716":1,"721":6,"722":1,"1483":1}}],["timingr",{"2":{"766":5}}],["timings",{"2":{"191":1,"1196":1,"1199":1,"1612":1}}],["timing",{"0":{"1286":1,"1612":1},"2":{"11":1,"74":1,"112":1,"134":2,"149":1,"211":1,"564":4,"656":1,"755":1,"1285":1,"1286":1,"1290":1,"1295":2,"1670":1,"1787":1,"1801":3,"2686":1,"2744":2,"2761":1,"2764":1,"2870":1,"2910":1,"2921":2}}],["timeframe",{"2":{"2310":1}}],["timely",{"2":{"2277":1,"2568":1}}],["timeline",{"2":{"127":1,"2747":1}}],["timed",{"0":{"1818":1},"2":{"574":1,"647":1,"2418":1}}],["time80",{"2":{"211":1}}],["timeout=1000",{"2":{"2059":1}}],["timeouts",{"2":{"25":1,"199":1,"2276":1,"2924":1}}],["timeout",{"0":{"25":1,"769":1,"772":1,"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"1208":1,"1503":1,"1598":1,"1792":1,"1800":1,"1801":1,"1802":1},"1":{"770":1,"771":1,"773":1,"774":1,"776":1,"777":1,"779":1,"780":1,"782":1,"783":1,"785":1,"786":1,"788":1,"789":1,"791":1,"792":1,"794":1,"795":1},"2":{"25":7,"49":1,"74":1,"93":1,"112":2,"134":2,"152":1,"158":1,"160":1,"176":4,"183":4,"191":3,"211":1,"297":1,"328":1,"564":5,"570":7,"647":17,"764":1,"770":1,"771":2,"772":1,"773":1,"774":2,"776":1,"777":2,"779":1,"780":2,"782":1,"783":2,"785":1,"786":2,"788":1,"789":2,"791":1,"792":2,"794":1,"795":2,"802":2,"828":2,"857":2,"889":2,"921":2,"956":2,"990":2,"1024":2,"1058":2,"1092":2,"1126":2,"1160":2,"1208":2,"1216":2,"1256":2,"1258":2,"1261":2,"1264":2,"1291":2,"1498":3,"1501":1,"1502":1,"1503":5,"1512":1,"1518":1,"1520":1,"1521":3,"1522":5,"1523":1,"1598":4,"1608":2,"1612":1,"1792":2,"1800":1,"1801":4,"1802":3,"1815":1,"1818":2,"1852":1,"1949":5,"1954":1,"1970":2,"1974":2,"1980":2,"2008":6,"2091":1,"2214":2,"2217":4,"2275":1,"2278":6,"2288":1,"2290":1,"2317":1,"2513":3,"2650":1,"2700":2,"2761":2,"2861":1,"2870":2,"2871":3,"2874":1,"2878":3,"2879":4,"2880":2,"2883":2,"2922":3,"2924":3,"2929":1}}],["timer1",{"2":{"715":1,"2418":1}}],["timer3",{"2":{"715":1}}],["timer",{"0":{"11":1,"1549":1,"1554":1,"1557":1,"1614":1,"1615":1,"1616":1,"1819":1},"1":{"1615":1,"1616":1},"2":{"11":1,"49":1,"74":1,"114":4,"134":1,"149":2,"191":1,"199":3,"222":1,"285":1,"294":3,"308":1,"328":2,"564":5,"647":7,"717":5,"718":2,"721":3,"722":2,"1303":1,"1410":4,"1413":4,"1420":3,"1462":6,"1474":2,"1481":1,"1483":2,"1498":1,"1546":1,"1547":1,"1549":2,"1553":22,"1554":8,"1557":2,"1613":1,"1614":2,"1615":2,"1616":2,"1812":1,"1815":1,"1819":1,"1947":1,"1999":1,"2006":1,"2009":1,"2277":2,"2286":1,"2310":1,"2744":3,"2764":12,"2776":5,"2857":2}}],["timers",{"0":{"2776":1},"2":{"10":1,"11":1,"655":1,"717":1,"721":1,"1303":2,"1554":3,"1557":1,"2687":1,"2776":1}}],["time",{"0":{"1412":1,"2315":1},"2":{"10":2,"25":1,"28":1,"49":2,"50":1,"73":1,"112":1,"123":1,"124":1,"134":1,"140":1,"152":1,"153":1,"173":1,"174":1,"176":3,"182":1,"191":1,"222":1,"228":1,"243":1,"265":2,"283":1,"331":1,"346":1,"379":1,"389":1,"392":1,"393":2,"414":1,"420":1,"473":1,"489":1,"493":1,"511":2,"513":1,"522":2,"523":2,"524":3,"542":1,"544":1,"566":1,"572":2,"579":1,"580":1,"609":1,"610":1,"630":1,"632":1,"646":1,"647":5,"655":1,"656":6,"657":1,"658":1,"665":1,"749":2,"762":1,"764":1,"768":1,"770":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"794":1,"860":6,"1095":6,"1129":6,"1163":6,"1192":1,"1208":1,"1292":1,"1329":8,"1364":1,"1389":1,"1409":3,"1410":7,"1412":1,"1413":2,"1428":1,"1429":1,"1455":1,"1466":1,"1472":2,"1477":1,"1484":3,"1485":1,"1486":1,"1493":1,"1498":5,"1501":1,"1503":1,"1522":2,"1525":1,"1533":1,"1546":1,"1579":1,"1594":2,"1595":1,"1598":1,"1608":1,"1610":1,"1612":1,"1662":1,"1667":1,"1670":1,"1672":1,"1680":2,"1681":8,"1762":1,"1786":1,"1787":1,"1789":1,"1792":1,"1800":1,"1801":1,"1802":4,"1853":1,"1935":8,"1936":1,"1937":8,"1939":4,"1940":1,"1947":1,"1949":1,"1953":4,"1954":1,"1957":2,"1959":1,"1960":1,"1961":1,"1965":1,"1971":9,"1976":2,"1983":1,"1986":2,"1999":1,"2003":4,"2011":1,"2014":2,"2046":1,"2057":1,"2085":1,"2087":1,"2092":1,"2181":1,"2191":1,"2231":1,"2235":1,"2258":1,"2273":1,"2275":2,"2286":1,"2288":1,"2291":2,"2294":2,"2297":1,"2309":6,"2310":2,"2317":1,"2319":2,"2327":1,"2378":1,"2379":3,"2414":1,"2428":1,"2430":1,"2466":2,"2469":1,"2475":1,"2502":1,"2566":2,"2590":1,"2603":1,"2604":2,"2608":1,"2612":1,"2616":1,"2633":1,"2634":1,"2637":1,"2640":1,"2650":2,"2663":1,"2685":1,"2726":1,"2744":2,"2746":2,"2749":4,"2759":1,"2760":1,"2761":5,"2764":3,"2769":1,"2776":1,"2781":1,"2851":1,"2854":1,"2861":1,"2862":1,"2870":1,"2872":2,"2873":1,"2874":1,"2880":2,"2882":1,"2889":1,"2895":1,"2903":1,"2910":1,"2914":1,"2915":2,"2916":3,"2917":2,"2924":2,"2930":1,"2934":1,"2936":1}}],["timestamp",{"2":{"1410":6}}],["timestamps",{"2":{"199":1,"211":1,"434":1,"2276":1,"2880":1}}],["times",{"2":{"0":2,"9":2,"19":2,"39":2,"52":2,"222":1,"234":1,"433":2,"455":1,"469":2,"564":3,"643":1,"649":1,"712":1,"748":1,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1409":1,"1410":1,"1518":1,"1523":2,"1538":2,"1681":1,"1690":1,"1934":2,"2076":1,"2078":1,"2191":3,"2252":5,"2308":2,"2317":1,"2417":1,"2523":1,"2650":2,"2652":1,"2780":1,"2792":1,"2841":1,"2843":1,"2874":1,"2912":2,"2936":3}}],["tedious",{"2":{"2409":1,"2583":1}}],["telephony",{"2":{"2016":1}}],["telling",{"2":{"2567":1}}],["tells",{"2":{"1444":1,"1470":1,"1846":1,"2082":1,"2260":1,"2470":1,"2634":2,"2640":1,"2794":2,"2939":1}}],["tell",{"2":{"105":2,"233":1,"263":1,"492":1,"588":1,"599":1,"618":1,"1962":1,"2272":2,"2418":1,"2567":1,"2576":1,"2635":1,"2949":1}}],["tekezo",{"2":{"1359":2}}],["tee",{"2":{"1316":1}}],["teensys",{"2":{"709":1,"2388":1,"2417":1}}],["teensy++",{"2":{"546":1,"2280":1,"2423":1,"2424":1}}],["teensy2",{"2":{"207":2}}],["teensypp",{"2":{"207":2}}],["teensy",{"0":{"81":1,"108":1,"2280":1,"2431":1,"2488":1,"2844":1},"1":{"2489":1},"2":{"81":1,"93":1,"108":1,"114":4,"131":1,"134":1,"149":2,"176":1,"199":1,"207":2,"354":4,"546":1,"551":4,"570":1,"684":1,"1311":1,"2280":3,"2388":5,"2391":1,"2417":2,"2421":1,"2423":1,"2424":1,"2430":1,"2431":1,"2434":2,"2488":2,"2489":3,"2844":1}}],["ten",{"2":{"2079":1}}],["tend",{"2":{"403":1,"1538":1,"2763":1}}],["tentative",{"0":{"88":1},"2":{"176":1}}],["tegic",{"2":{"253":2}}],["technology",{"2":{"1409":1}}],["technologies",{"2":{"1409":1}}],["technique",{"2":{"1409":1,"1541":1,"1788":1,"2425":1,"2928":1}}],["techniques",{"2":{"538":1,"2425":1}}],["technically",{"2":{"1356":1,"1409":1,"2279":1}}],["technical",{"0":{"588":1,"1953":1},"2":{"70":1,"201":1,"213":1,"224":1,"238":1,"610":1,"762":1,"1343":1,"1476":1,"2741":1,"2742":1}}],["tech",{"2":{"187":1,"191":1,"198":1,"199":1,"211":23,"341":1,"2567":1,"2746":3}}],["teach",{"2":{"2619":1,"2632":1}}],["teaching",{"2":{"176":1}}],["teal",{"2":{"641":1,"2089":2,"2205":2}}],["teardown",{"2":{"339":1}}],["team",{"0":{"265":1,"275":1},"2":{"116":1,"265":3,"268":1,"273":1,"275":2,"276":1,"284":1,"312":5,"418":1,"1343":1,"2566":4,"2567":3,"2569":1,"2570":2,"2902":3,"2903":1}}],["team0110",{"2":{"102":1}}],["tempo",{"0":{"1487":1},"2":{"1487":10,"1493":1,"2086":1,"2252":1,"2253":4,"2254":10}}],["temporarily",{"2":{"273":1,"396":1,"1367":1,"1377":1,"1520":1,"1521":1,"1606":1,"2418":1,"2483":1,"2912":1,"2922":1}}],["temporary",{"2":{"114":1,"249":1,"279":1,"455":1,"1362":1,"1422":1,"1661":1}}],["temperature",{"2":{"691":2,"2086":3,"2427":1}}],["temp",{"2":{"455":1,"1472":7}}],["templates",{"0":{"682":1},"1":{"683":1,"684":1},"2":{"266":1,"277":1,"380":1,"444":1,"682":1}}],["template",{"0":{"683":1,"684":1,"2597":1},"2":{"50":1,"277":1,"308":1,"380":1,"618":1,"681":1,"1467":1,"1470":1,"1838":1,"2452":1,"2597":1,"2715":1,"2746":1}}],["textwidth",{"2":{"2764":4}}],["text",{"0":{"458":1,"491":1,"494":1,"2585":1,"2645":1},"1":{"492":1,"493":1,"494":1},"2":{"110":1,"111":2,"153":1,"199":1,"236":1,"341":1,"362":1,"448":1,"449":1,"450":1,"458":3,"490":1,"491":4,"493":1,"494":7,"678":1,"1376":1,"1440":1,"1527":2,"1528":1,"1538":1,"1971":1,"2330":1,"2418":1,"2432":1,"2434":1,"2504":1,"2582":1,"2585":1,"2591":3,"2599":1,"2619":3,"2622":1,"2634":2,"2640":1,"2645":2,"2653":1,"2663":1,"2673":1,"2764":4,"2795":1,"2852":2,"2886":1}}],["terpstra",{"2":{"1363":1,"2575":1}}],["terry",{"2":{"176":1}}],["terrazzo",{"2":{"92":2}}],["term\`",{"2":{"2317":1}}],["terms",{"0":{"2801":1},"1":{"2802":1,"2803":1,"2804":1,"2805":1,"2806":1,"2807":1,"2808":1,"2809":1,"2810":1,"2811":1,"2812":1,"2813":1,"2814":1,"2815":1,"2816":1,"2817":1,"2818":1,"2819":1,"2820":1,"2821":1,"2822":1,"2823":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":1,"2832":1,"2833":1,"2834":1,"2835":1,"2836":1,"2837":1,"2838":1,"2839":1,"2840":1,"2841":1,"2842":1,"2843":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2849":1},"2":{"1410":1,"1467":1,"1518":1,"1630":1,"2319":1,"2329":1,"2727":1,"2728":1,"2740":1,"2741":1,"2750":1,"2777":1,"2785":1,"2911":1,"2912":1}}],["terminated",{"2":{"1538":3,"1602":1}}],["terminator",{"2":{"272":1,"1702":1}}],["terminals",{"2":{"2622":1}}],["terminal",{"2":{"176":1,"191":1,"353":5,"386":2,"492":1,"494":1,"1325":1,"1535":1,"1675":1,"2221":1,"2317":1,"2434":1,"2502":1,"2582":1,"2587":1,"2616":1,"2620":1,"2622":3,"2628":3,"2678":9}}],["terminology",{"2":{"249":2}}],["term",{"0":{"119":1,"195":1,"1608":1,"2531":1,"2850":1,"2910":1,"2912":1,"2921":1,"2924":1},"1":{"2911":1,"2912":1},"2":{"22":2,"49":1,"112":3,"114":1,"119":9,"134":2,"160":1,"176":1,"188":1,"191":1,"194":1,"195":9,"199":3,"222":2,"262":1,"283":1,"289":1,"339":1,"564":18,"574":2,"1466":1,"1498":1,"1518":1,"1519":1,"1594":4,"1602":1,"1608":1,"1610":2,"1612":8,"1614":1,"1615":1,"1976":3,"1977":1,"2003":1,"2309":9,"2310":4,"2317":3,"2318":1,"2319":6,"2531":9,"2707":1,"2805":1,"2833":1,"2839":1,"2845":1,"2850":1,"2854":2,"2862":1,"2899":1,"2910":10,"2911":8,"2912":51,"2913":6,"2914":1,"2918":6,"2919":6,"2920":4,"2921":17,"2922":4,"2924":7,"2925":4,"2928":2,"2930":2,"2940":1}}],["testgroup",{"2":{"2944":1}}],["testlist",{"2":{"2944":3}}],["tester",{"2":{"2434":2}}],["testers",{"2":{"402":1,"405":1,"406":1}}],["tested",{"2":{"49":3,"273":1,"347":1,"723":1,"1452":1,"1943":1,"2249":1,"2317":1,"2450":1,"2653":1}}],["testing",{"0":{"501":1,"502":1,"505":1,"542":1,"723":1,"2434":1,"2647":1,"2648":1,"2847":1,"2941":1},"1":{"502":1,"503":1,"504":1,"505":1,"506":1,"543":1,"544":1,"2648":1,"2649":1,"2942":1,"2943":1,"2944":1,"2945":1,"2946":1,"2947":1},"2":{"312":3,"399":1,"402":1,"411":1,"414":1,"456":1,"542":1,"1330":1,"1331":1,"1375":1,"1523":1,"1953":1,"2418":1,"2617":1,"2707":1,"2847":2,"2941":2,"2942":1,"2944":1,"2947":1}}],["test",{"0":{"469":1,"1375":1,"2617":1,"2629":1,"2942":1},"2":{"49":1,"134":3,"149":2,"191":1,"199":3,"211":2,"236":3,"249":3,"266":1,"277":1,"285":1,"339":4,"354":2,"465":9,"469":16,"501":1,"505":1,"542":1,"543":1,"544":1,"1375":1,"1376":1,"1539":1,"1602":4,"1603":2,"1604":4,"1641":4,"2181":1,"2183":2,"2184":2,"2298":1,"2434":2,"2449":1,"2532":1,"2617":2,"2747":1,"2894":1,"2941":1,"2942":3,"2943":3,"2944":4,"2945":5,"2946":2,"2947":2}}],["tests",{"0":{"543":1,"544":1,"2944":1,"2945":1,"2946":1,"2947":1},"2":{"1":1,"114":1,"134":3,"149":1,"160":1,"174":1,"176":1,"191":1,"196":1,"198":1,"199":2,"222":1,"263":1,"285":1,"308":1,"465":3,"469":2,"501":1,"505":8,"542":5,"543":2,"544":4,"619":1,"1522":1,"2747":3,"2847":1,"2941":1,"2942":1,"2944":7,"2945":4,"2946":3,"2947":1}}],["t",{"0":{"607":1,"610":1,"702":4,"704":3,"707":1,"731":1,"733":1,"735":3,"737":3,"739":2,"769":5,"772":5,"775":5,"778":7,"781":6,"784":6,"787":6,"790":6,"793":3,"807":1,"810":2,"812":3,"814":3,"816":1,"818":1,"820":1,"822":1,"833":1,"835":1,"837":3,"839":3,"841":3,"843":1,"845":1,"847":1,"849":1,"851":1,"853":1,"865":1,"867":1,"869":3,"871":3,"873":3,"875":1,"877":1,"879":4,"881":2,"883":1,"885":1,"895":1,"897":1,"899":3,"901":2,"903":3,"905":3,"907":1,"909":1,"911":1,"913":1,"915":1,"917":1,"930":1,"932":1,"934":3,"936":2,"938":3,"940":3,"942":1,"944":1,"946":1,"948":1,"950":1,"952":1,"964":1,"966":1,"968":3,"970":2,"972":3,"974":3,"976":1,"978":1,"980":1,"982":1,"984":1,"986":1,"998":1,"1000":1,"1002":3,"1004":2,"1006":3,"1008":3,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1020":1,"1032":1,"1034":1,"1036":3,"1038":2,"1040":3,"1042":3,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1054":1,"1066":1,"1068":1,"1070":3,"1072":2,"1074":3,"1076":3,"1078":1,"1080":1,"1082":4,"1084":2,"1086":1,"1088":1,"1100":1,"1102":1,"1104":3,"1106":2,"1108":3,"1110":3,"1112":1,"1114":1,"1116":4,"1118":2,"1120":1,"1122":1,"1134":1,"1136":1,"1138":3,"1140":2,"1142":3,"1144":3,"1146":1,"1148":1,"1150":4,"1152":2,"1154":1,"1156":1,"1168":1,"1170":1,"1172":3,"1174":2,"1176":3,"1178":3,"1180":1,"1182":1,"1184":4,"1186":2,"1188":1,"1190":1,"1221":1,"1223":1,"1225":3,"1227":2,"1229":3,"1231":3,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1243":1,"1251":3,"1254":2,"1257":1,"1259":3,"1262":3,"1271":1,"1273":1,"1275":1,"1277":2,"1279":1,"1306":3,"1308":3,"1315":1,"1320":1,"1332":1,"1333":1,"1336":1,"1338":1,"1348":1,"1350":1,"1351":1,"1359":1,"1377":1,"1379":1,"1380":1,"1381":1,"1566":1,"1568":1,"1582":1,"1585":1,"1587":1,"1650":1,"1711":2,"1719":2,"1721":2,"1725":1,"1727":1,"1730":1,"1732":1,"1734":1,"1736":1,"1746":1,"1748":1,"1751":1,"1753":1,"1755":2,"1758":2,"1760":1,"1781":1,"1782":1,"1809":1,"1815":1,"1820":1,"1823":2,"1826":3,"1829":4,"1832":5,"1865":2,"1867":1,"1869":1,"1871":1,"1877":1,"1883":1,"1889":1,"1891":1,"1893":1,"1895":1,"1897":1,"1903":1,"1912":2,"1915":2,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2033":1,"2035":1,"2061":2,"2063":2,"2107":4,"2109":3,"2111":1,"2113":1,"2119":1,"2125":1,"2131":1,"2137":1,"2143":1,"2145":1,"2147":1,"2149":1,"2151":1,"2157":1,"2159":3,"2161":3,"2163":1,"2172":2,"2175":2,"2230":1,"2234":1,"2238":1,"2240":1,"2242":1,"2244":1,"2334":1,"2336":1,"2340":1,"2342":1,"2347":1,"2351":2,"2354":2,"2357":1,"2362":1,"2364":1,"2409":1,"2729":1,"2850":1},"1":{"703":4,"705":3,"708":1,"732":1,"734":1,"736":3,"738":3,"740":2,"770":5,"771":5,"773":5,"774":5,"776":5,"777":5,"779":7,"780":7,"782":6,"783":6,"785":6,"786":6,"788":6,"789":6,"791":6,"792":6,"794":3,"795":3,"808":1,"811":2,"813":3,"815":3,"817":1,"819":1,"821":1,"823":1,"834":1,"836":1,"838":3,"840":3,"842":3,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"866":1,"868":1,"870":3,"872":3,"874":3,"876":1,"878":1,"880":4,"882":2,"884":1,"886":1,"896":1,"898":1,"900":3,"902":2,"904":3,"906":3,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"931":1,"933":1,"935":3,"937":2,"939":3,"941":3,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"965":1,"967":1,"969":3,"971":2,"973":3,"975":3,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"999":1,"1001":1,"1003":3,"1005":2,"1007":3,"1009":3,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1033":1,"1035":1,"1037":3,"1039":2,"1041":3,"1043":3,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1067":1,"1069":1,"1071":3,"1073":2,"1075":3,"1077":3,"1079":1,"1081":1,"1083":4,"1085":2,"1087":1,"1089":1,"1101":1,"1103":1,"1105":3,"1107":2,"1109":3,"1111":3,"1113":1,"1115":1,"1117":4,"1119":2,"1121":1,"1123":1,"1135":1,"1137":1,"1139":3,"1141":2,"1143":3,"1145":3,"1147":1,"1149":1,"1151":4,"1153":2,"1155":1,"1157":1,"1169":1,"1171":1,"1173":3,"1175":2,"1177":3,"1179":3,"1181":1,"1183":1,"1185":4,"1187":2,"1189":1,"1191":1,"1222":1,"1224":1,"1226":3,"1228":2,"1230":3,"1232":3,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1252":3,"1253":3,"1255":2,"1256":2,"1258":1,"1260":3,"1261":3,"1263":3,"1264":3,"1272":1,"1274":1,"1276":1,"1278":2,"1280":1,"1307":3,"1309":3,"1316":1,"1317":1,"1567":1,"1569":1,"1583":1,"1651":1,"1712":2,"1720":2,"1722":2,"1726":1,"1728":1,"1729":1,"1731":1,"1733":1,"1735":1,"1737":1,"1747":1,"1749":1,"1752":1,"1754":1,"1756":2,"1757":2,"1759":2,"1761":1,"1810":1,"1811":1,"1816":1,"1817":1,"1821":1,"1822":1,"1824":2,"1825":2,"1827":3,"1828":3,"1830":4,"1831":4,"1833":5,"1834":5,"1866":2,"1868":1,"1870":1,"1872":1,"1878":1,"1884":1,"1890":1,"1892":1,"1894":1,"1896":1,"1898":1,"1904":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2031":1,"2034":1,"2036":1,"2062":2,"2064":2,"2108":4,"2110":3,"2112":1,"2114":1,"2120":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2150":1,"2152":1,"2158":1,"2162":3,"2164":1,"2231":1,"2235":1,"2239":1,"2241":1,"2243":1,"2245":1,"2335":1,"2337":1,"2341":1,"2343":1,"2348":1,"2352":2,"2353":2,"2355":2,"2356":2,"2358":1,"2363":1,"2365":1,"2366":1,"2730":1,"2731":1},"2":{"22":9,"31":3,"34":3,"46":3,"90":4,"94":2,"105":8,"114":4,"119":1,"149":3,"153":1,"164":1,"166":1,"173":2,"176":1,"188":1,"191":2,"194":9,"195":6,"198":1,"199":2,"211":3,"214":1,"221":1,"222":1,"232":1,"247":1,"249":1,"266":1,"272":3,"277":2,"279":1,"300":2,"307":3,"308":3,"323":3,"324":5,"325":6,"328":1,"332":2,"337":2,"353":1,"375":1,"379":1,"411":1,"414":2,"429":1,"434":2,"444":1,"455":3,"465":4,"469":2,"489":1,"512":1,"513":2,"514":1,"516":1,"533":1,"538":1,"557":1,"560":1,"564":1,"574":1,"589":3,"593":4,"596":2,"597":1,"599":1,"610":1,"616":1,"619":4,"624":1,"625":3,"631":2,"632":10,"634":1,"637":1,"639":7,"645":1,"647":4,"656":2,"665":1,"672":1,"681":1,"703":4,"705":3,"708":1,"720":2,"729":1,"732":4,"734":1,"736":3,"738":3,"740":2,"745":1,"770":4,"773":4,"776":4,"779":6,"782":5,"785":5,"788":5,"791":5,"794":2,"805":2,"808":4,"811":2,"813":3,"815":3,"817":1,"819":1,"821":1,"823":1,"831":2,"834":5,"836":1,"838":3,"840":3,"842":3,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"863":2,"866":5,"868":1,"870":3,"872":3,"874":3,"876":1,"878":1,"880":4,"882":2,"884":1,"886":1,"893":2,"896":5,"898":1,"900":3,"902":2,"904":3,"906":3,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"928":2,"931":5,"933":1,"935":3,"937":2,"939":3,"941":3,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"962":2,"965":5,"967":1,"969":3,"971":2,"973":3,"975":3,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"996":2,"999":5,"1001":1,"1003":3,"1005":2,"1007":3,"1009":3,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1030":2,"1033":5,"1035":1,"1037":3,"1039":2,"1041":3,"1043":3,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1064":2,"1067":5,"1069":1,"1071":3,"1073":2,"1075":3,"1077":3,"1079":1,"1081":1,"1083":4,"1085":2,"1087":1,"1089":1,"1098":2,"1101":5,"1103":1,"1105":3,"1107":2,"1109":3,"1111":3,"1113":1,"1115":1,"1117":4,"1119":2,"1121":1,"1123":1,"1132":2,"1135":5,"1137":1,"1139":3,"1141":2,"1143":3,"1145":3,"1147":1,"1149":1,"1151":4,"1153":2,"1155":1,"1157":1,"1166":2,"1169":5,"1171":2,"1173":3,"1175":2,"1177":3,"1179":3,"1181":1,"1183":1,"1185":4,"1187":2,"1189":1,"1191":1,"1196":1,"1197":1,"1208":1,"1219":2,"1222":5,"1224":1,"1226":3,"1228":2,"1230":3,"1232":3,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1248":1,"1252":3,"1255":1,"1260":2,"1263":2,"1272":1,"1274":1,"1278":2,"1280":2,"1307":3,"1309":3,"1313":1,"1314":1,"1318":1,"1319":1,"1329":2,"1332":1,"1338":1,"1340":1,"1343":1,"1344":1,"1349":1,"1354":2,"1366":3,"1367":5,"1375":1,"1376":3,"1377":2,"1379":1,"1409":1,"1415":1,"1417":9,"1418":4,"1419":12,"1420":9,"1423":1,"1427":1,"1428":4,"1430":2,"1431":4,"1432":4,"1446":8,"1447":5,"1448":1,"1450":1,"1454":1,"1462":3,"1465":2,"1466":1,"1470":8,"1471":2,"1472":9,"1480":1,"1485":1,"1487":3,"1490":2,"1491":2,"1492":2,"1493":1,"1503":3,"1510":4,"1517":8,"1525":2,"1526":1,"1527":1,"1529":1,"1532":5,"1533":4,"1534":1,"1535":3,"1537":1,"1538":5,"1551":1,"1567":1,"1586":1,"1588":1,"1589":1,"1600":2,"1602":3,"1603":3,"1604":5,"1605":9,"1609":2,"1612":22,"1613":8,"1616":1,"1617":10,"1618":11,"1620":2,"1622":1,"1640":1,"1641":4,"1648":1,"1663":1,"1664":5,"1666":1,"1667":1,"1668":3,"1689":2,"1702":1,"1712":1,"1720":2,"1722":2,"1726":1,"1731":1,"1733":1,"1735":1,"1737":1,"1742":1,"1743":6,"1747":3,"1749":4,"1752":1,"1754":1,"1756":1,"1759":2,"1761":1,"1766":1,"1769":2,"1770":1,"1773":2,"1774":4,"1776":7,"1777":3,"1779":6,"1781":9,"1783":1,"1794":1,"1795":3,"1801":1,"1804":1,"1810":1,"1816":1,"1821":1,"1824":2,"1827":3,"1830":4,"1833":5,"1835":3,"1837":2,"1838":1,"1839":2,"1840":1,"1843":5,"1846":2,"1850":7,"1855":2,"1866":2,"1868":1,"1870":1,"1872":1,"1890":1,"1892":1,"1896":1,"1898":1,"1913":2,"1916":2,"1924":3,"1945":1,"1947":4,"1948":2,"1952":2,"1953":2,"1954":30,"1956":1,"1957":2,"1958":1,"1961":1,"1962":2,"1983":4,"1984":5,"1986":2,"1987":1,"1988":7,"1989":3,"1990":5,"1992":1,"1993":4,"1994":10,"1996":4,"1997":3,"1999":1,"2003":1,"2005":4,"2006":2,"2008":10,"2011":2,"2012":2,"2013":2,"2014":1,"2015":4,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2036":1,"2046":2,"2053":1,"2057":2,"2059":3,"2062":2,"2064":2,"2069":6,"2070":3,"2071":5,"2073":3,"2074":3,"2075":3,"2076":2,"2077":5,"2079":15,"2082":2,"2088":7,"2094":2,"2095":13,"2096":9,"2108":4,"2110":3,"2112":1,"2114":1,"2144":1,"2146":1,"2150":1,"2152":1,"2160":3,"2162":3,"2164":1,"2173":2,"2176":2,"2179":1,"2181":1,"2187":7,"2189":6,"2190":5,"2191":7,"2211":1,"2222":1,"2225":2,"2231":1,"2235":1,"2239":1,"2241":1,"2243":1,"2245":1,"2253":1,"2254":13,"2272":2,"2275":1,"2277":20,"2280":1,"2284":1,"2286":4,"2287":2,"2289":1,"2290":16,"2293":1,"2296":2,"2297":1,"2300":9,"2301":2,"2303":2,"2304":1,"2305":1,"2309":1,"2312":2,"2314":2,"2315":5,"2316":18,"2317":14,"2318":11,"2319":16,"2320":1,"2327":1,"2329":1,"2330":2,"2331":1,"2337":1,"2341":1,"2343":1,"2348":1,"2352":1,"2355":1,"2358":1,"2365":1,"2372":1,"2381":6,"2397":1,"2409":1,"2410":1,"2417":1,"2418":1,"2427":1,"2428":1,"2429":4,"2434":2,"2441":1,"2456":3,"2462":1,"2466":2,"2490":1,"2510":3,"2530":42,"2532":1,"2539":1,"2542":3,"2557":1,"2559":1,"2561":2,"2562":3,"2563":1,"2566":2,"2572":2,"2575":42,"2576":1,"2578":3,"2579":2,"2580":2,"2585":1,"2586":1,"2606":1,"2615":1,"2616":2,"2617":1,"2619":1,"2628":1,"2634":2,"2652":6,"2658":1,"2674":1,"2676":1,"2678":2,"2682":1,"2683":1,"2694":1,"2703":1,"2707":1,"2714":1,"2717":1,"2731":1,"2746":1,"2749":1,"2756":2,"2763":103,"2764":131,"2767":1,"2768":2,"2770":5,"2776":1,"2778":7,"2779":13,"2780":5,"2781":11,"2782":10,"2783":9,"2784":4,"2787":16,"2788":7,"2789":5,"2794":1,"2884":1,"2889":1,"2890":3,"2894":1,"2907":2,"2910":4,"2911":7,"2912":9,"2914":2,"2915":5,"2916":8,"2917":5,"2918":3,"2919":2,"2920":2,"2921":9,"2923":1,"2924":10,"2925":10,"2926":2,"2927":6,"2928":2,"2930":5,"2932":1,"2937":2,"2938":1,"2939":1,"2940":81,"2941":1,"2943":1,"2944":1,"2949":3}}],["tr6",{"2":{"1925":1,"2527":1}}],["tr5",{"2":{"1925":1,"2527":1}}],["tr4",{"2":{"1925":1,"2527":1}}],["tr3",{"2":{"1925":1,"2527":1}}],["tr2",{"2":{"1925":1,"2527":1}}],["tr1",{"2":{"1925":1,"2527":1}}],["tr0",{"2":{"1925":1,"2527":1}}],["trn1",{"2":{"1925":1,"2527":1}}],["trn2",{"2":{"1925":1,"2527":1}}],["trn3",{"2":{"1925":1,"2527":1}}],["trn4",{"2":{"1925":1,"2527":1}}],["trn5",{"2":{"1925":1,"2527":1}}],["trn6",{"2":{"1925":1,"2527":1}}],["trns",{"2":{"307":6,"375":118,"589":152,"1353":1,"1422":1,"1427":2,"1791":1,"2069":3,"2070":1,"2071":1,"2077":1,"2095":1,"2259":3,"2260":1,"2510":1,"2523":1,"2541":1,"2551":1,"2559":4,"2561":2,"2564":1,"2794":1}}],["trp",{"2":{"1686":1}}],["trrs",{"2":{"1200":1,"2261":1,"2263":1,"2264":2,"2265":2,"2266":1,"2267":1,"2278":1,"2426":1}}],["trsu",{"2":{"1925":1,"2527":1}}],["trsd",{"2":{"1925":1,"2527":1}}],["trst",{"2":{"1285":1,"1286":1}}],["trs",{"2":{"1194":1,"1197":1,"2266":1}}],["troubleshoot",{"2":{"2405":1}}],["troubleshooting",{"0":{"603":1,"1209":1,"1595":1,"1961":1,"1998":1},"1":{"604":1,"605":1,"606":1,"607":1,"608":1},"2":{"1209":1,"1321":1,"1328":1,"1960":2,"1998":1,"2281":1,"2590":1}}],["trouble",{"2":{"614":1,"1376":1,"2434":1}}],["tronguylabs",{"2":{"114":1,"207":4}}],["trk2",{"2":{"328":1}}],["trk1",{"2":{"277":1}}],["trkeyboard",{"2":{"277":1,"328":1}}],["trying",{"2":{"613":1,"1503":1,"1986":1,"2016":1,"2272":1,"2317":2,"2441":1,"2566":1,"2629":1}}],["try",{"2":{"228":1,"520":1,"525":2,"536":1,"600":1,"610":1,"616":1,"619":1,"620":1,"710":1,"768":1,"1332":2,"1333":1,"1358":1,"1377":1,"1387":1,"1425":1,"1433":1,"1477":1,"1986":1,"2059":1,"2317":1,"2429":1,"2434":1,"2490":1,"2508":2,"2612":1,"2616":1,"2662":1,"2683":1,"2720":1,"2746":1,"2769":1,"2912":1,"2944":1}}],["treated",{"2":{"2000":4,"2004":1,"2006":1,"2463":1,"2510":1}}],["treating",{"2":{"621":1,"2526":1,"2552":1}}],["treat",{"2":{"176":1,"671":1,"1426":1,"2207":1,"2526":1,"2552":1,"2936":1}}],["treadstone48",{"2":{"143":4}}],["treadstone32",{"2":{"143":2}}],["tree",{"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"143":2,"181":2,"191":1,"199":2,"399":1,"495":1,"1300":1,"1425":1,"1525":1,"2590":2,"2634":1}}],["truth",{"2":{"665":2}}],["trunk",{"2":{"134":1}}],["truetype",{"2":{"2762":1}}],["true",{"0":{"258":1,"535":1},"2":{"13":1,"90":3,"105":6,"111":8,"185":1,"194":3,"195":1,"230":1,"249":1,"256":1,"258":1,"303":3,"324":1,"325":1,"338":3,"376":1,"456":1,"512":1,"535":2,"593":1,"630":1,"631":2,"647":1,"651":1,"652":1,"668":1,"669":3,"696":1,"717":7,"718":5,"721":3,"746":1,"764":3,"1195":1,"1200":1,"1203":2,"1204":2,"1248":2,"1252":1,"1253":1,"1269":1,"1282":1,"1299":2,"1303":2,"1329":1,"1366":2,"1367":4,"1405":1,"1417":4,"1420":1,"1431":1,"1446":3,"1447":1,"1462":2,"1471":1,"1472":1,"1491":1,"1510":2,"1517":1,"1533":2,"1535":2,"1536":1,"1544":1,"1556":2,"1557":2,"1571":1,"1576":1,"1599":1,"1600":3,"1612":6,"1613":1,"1617":1,"1618":2,"1621":1,"1625":2,"1630":1,"1641":4,"1648":2,"1668":2,"1701":2,"1724":1,"1729":1,"1743":1,"1781":2,"1794":1,"1795":1,"1804":2,"1811":1,"1817":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1837":1,"1839":2,"1847":2,"1852":1,"1855":1,"1864":1,"1907":1,"1911":1,"1917":1,"1924":2,"1948":1,"1954":16,"1958":1,"1962":1,"1971":3,"1984":1,"1988":1,"1989":1,"1993":1,"1994":1,"1996":1,"1997":1,"2001":2,"2006":2,"2008":3,"2009":2,"2011":2,"2014":3,"2031":1,"2042":1,"2044":2,"2052":1,"2071":1,"2073":2,"2074":1,"2075":1,"2076":1,"2077":1,"2079":2,"2083":2,"2091":1,"2094":1,"2106":1,"2167":1,"2171":1,"2177":1,"2182":1,"2190":1,"2203":1,"2225":1,"2290":12,"2293":1,"2300":3,"2306":1,"2310":1,"2316":1,"2317":2,"2319":2,"2327":1,"2361":1,"2366":1,"2368":1,"2381":2,"2461":1,"2578":1,"2579":7,"2580":1,"2599":1,"2709":5,"2764":5,"2768":1,"2854":1,"2856":2,"2857":1,"2871":3,"2877":3,"2878":3,"2882":1,"2912":1,"2919":1,"2920":1,"2923":2,"2927":3,"2928":1,"2930":1,"2934":1}}],["tr",{"2":{"134":1,"2301":3}}],["trim",{"2":{"2428":1}}],["tried",{"2":{"2620":1,"2909":1}}],["trie",{"0":{"1537":1},"1":{"1538":1,"1539":1},"2":{"1525":4,"1527":1,"1537":1,"1538":4,"1539":1}}],["tries",{"2":{"561":1,"1538":1,"2572":1,"2614":1}}],["triangle",{"2":{"1480":1}}],["trickier",{"2":{"1427":1}}],["tricky",{"2":{"1425":1,"1525":1,"2410":1,"2949":1}}],["triplet",{"2":{"1288":1,"2764":1}}],["triple",{"2":{"521":2,"2317":5}}],["trinity",{"2":{"211":1}}],["tri",{"0":{"2320":1,"2766":1,"2767":1,"2769":1},"1":{"2321":1,"2322":1,"2323":1,"2767":1,"2768":2,"2769":1,"2770":2},"2":{"199":2,"211":1,"1428":3,"1470":3,"2320":1,"2321":2,"2322":4,"2323":7,"2567":21,"2746":2,"2767":1,"2768":4,"2769":1,"2770":4}}],["triggered",{"2":{"297":1,"564":1,"651":1,"718":1,"1664":4,"1690":3,"1781":1,"2008":1,"2922":1}}],["triggers",{"0":{"1528":1},"2":{"195":1,"1518":1,"1781":1,"1788":1,"1796":1,"1976":2,"2091":1,"2922":1,"2928":1}}],["triggering",{"2":{"98":1,"564":1,"1681":1,"2259":1,"2276":1}}],["trigger",{"2":{"95":1,"98":1,"114":1,"191":1,"198":1,"564":1,"580":1,"645":1,"651":1,"656":4,"717":2,"718":1,"1364":1,"1366":1,"1367":1,"1528":3,"1589":1,"1590":1,"1591":1,"1613":3,"1662":1,"1681":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1766":1,"1776":7,"1779":2,"1781":4,"1782":6,"1784":8,"1785":6,"1786":1,"1788":1,"1976":1,"1977":1,"2008":1,"2009":1,"2014":1,"2091":1,"2599":1,"2601":1,"2602":1,"2685":1,"2769":1,"2912":2,"2921":2,"2928":1,"2930":2}}],["trivial",{"2":{"95":1,"266":1,"1781":1,"2464":1,"2557":1}}],["travel",{"2":{"1971":7,"2185":1,"2423":1}}],["travis",{"2":{"1":1,"17":1}}],["trapezoid",{"2":{"1480":1}}],["trailing",{"2":{"211":2,"520":1,"526":1,"527":3,"1252":2}}],["traditional",{"2":{"2603":1}}],["traditionally",{"2":{"125":1,"185":1,"240":1,"2563":1,"2568":1}}],["tradestation",{"2":{"43":2}}],["tracing",{"0":{"2949":1},"2":{"2418":1,"2949":3}}],["trace=x",{"2":{"2949":1}}],["traced",{"2":{"2640":1,"2949":5}}],["trace",{"2":{"2280":1,"2418":1,"2949":4}}],["traceability",{"2":{"403":1}}],["tractyl",{"2":{"114":1,"149":2,"308":1}}],["tracked",{"2":{"1939":1}}],["tracker++",{"2":{"1447":1}}],["tracker",{"2":{"1447":3,"2008":5}}],["tracks",{"0":{"2251":1},"2":{"1934":1,"2251":2,"2634":1,"2949":2}}],["trackpoints",{"2":{"2037":1}}],["trackpoint",{"0":{"1378":1,"2038":1},"2":{"266":1,"2037":4,"2048":1}}],["trackpad",{"0":{"1969":1,"1973":1},"1":{"1970":1,"1971":1,"1972":1,"1974":1,"1975":1,"1976":1,"1977":1},"2":{"176":2,"249":1,"1969":1,"1970":3,"1973":1,"1974":6,"1977":4,"1994":1}}],["trackpads",{"2":{"176":1,"1969":1,"1973":1}}],["tracking",{"2":{"134":1,"714":1,"1967":1,"1983":1,"2072":1,"2817":1}}],["trackballs",{"2":{"1986":1}}],["trackball",{"0":{"1980":1},"2":{"114":3,"118":2,"176":1,"199":1,"246":1,"291":2,"1980":11,"1986":1}}],["track",{"2":{"74":2,"1367":2,"1776":6,"1974":5,"2014":1,"2068":1,"2253":1,"2254":19,"2295":1,"2300":1,"2427":1,"2510":8,"2549":10,"2763":1,"2949":3}}],["transcription",{"2":{"2291":1}}],["translucent",{"2":{"2178":1}}],["translating",{"2":{"2651":1}}],["translation",{"2":{"472":1,"2291":1}}],["translatable",{"2":{"1446":1}}],["translated",{"2":{"2016":1,"2568":1}}],["translates",{"2":{"693":1,"694":1,"2891":1}}],["translate",{"2":{"99":1,"1684":1,"2751":1}}],["transmitted",{"2":{"2375":1,"2761":1,"2913":1}}],["transmitting",{"2":{"1194":1,"1197":1,"1200":2,"2276":5}}],["transmit",{"0":{"769":1,"772":1,"778":1,"1259":1,"1277":1},"1":{"770":1,"771":1,"773":1,"774":1,"779":1,"780":1,"1260":1,"1261":1,"1278":1},"2":{"328":1,"749":1,"750":1,"770":1,"772":1,"773":1,"779":1,"782":1,"785":1,"1272":1,"1273":1,"1277":1,"2880":1}}],["transmissions",{"2":{"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1}}],["transmission",{"2":{"214":1,"263":1,"1192":3,"1252":1,"1296":1}}],["transistor",{"2":{"1545":4,"1558":1}}],["transitions",{"2":{"340":1,"1409":2,"1473":1,"2865":1}}],["transitioned",{"2":{"268":1}}],["transition",{"2":{"236":1,"265":1,"283":1,"1409":1,"1686":60}}],["transient",{"0":{"751":1},"2":{"149":1,"746":2,"751":3,"2864":1}}],["transparency",{"0":{"2559":1},"2":{"2559":1,"2781":3,"2787":2}}],["transparent",{"2":{"231":1,"307":1,"1422":1,"1788":1,"1791":1,"2260":1,"2510":2,"2551":2,"2559":4,"2561":1,"2781":3,"2787":1,"2928":1}}],["transposition",{"2":{"1925":15,"1926":1,"2527":15}}],["transpose",{"2":{"222":1,"1925":15,"2527":15}}],["transported",{"2":{"74":1}}],["transport",{"0":{"107":1},"2":{"74":1,"75":1,"111":1,"112":3,"114":1,"134":1,"160":1,"176":1,"266":1,"277":1,"567":1,"570":9,"1852":1,"1945":2,"1985":1,"2091":1,"2262":1,"2268":2,"2275":1,"2276":1,"2277":2,"2418":2,"2676":1,"2760":1,"2880":2}}],["transformation",{"2":{"2046":1,"2912":1}}],["transformations",{"2":{"169":1,"176":1,"185":1}}],["transform",{"2":{"1983":1,"2051":1}}],["transferring",{"2":{"1953":1,"2763":1}}],["transfers",{"2":{"160":1}}],["transfer",{"2":{"107":1,"764":1,"2275":1,"2277":1,"2297":1,"2469":1,"2763":2,"2764":2}}],["transactions",{"2":{"1207":1,"2277":1}}],["transaction",{"2":{"149":1,"176":1,"191":2,"266":1,"570":2,"1251":1,"1265":1,"1637":1,"2277":12,"2761":1}}],["toward",{"2":{"2428":1}}],["towards",{"2":{"111":1,"191":1,"194":1,"262":1,"384":1,"665":1,"1558":1,"2319":2,"2845":1}}],["to=michi",{"2":{"1391":2}}],["to=imera",{"2":{"1391":2}}],["to=liatris",{"2":{"1391":2,"1399":2}}],["to=helios",{"2":{"1391":2,"1399":2}}],["to=elite",{"2":{"1391":2,"1399":2}}],["to=rp2040",{"2":{"1391":2,"1399":2}}],["to=svlinky",{"2":{"1391":2}}],["to=stemcell",{"2":{"1391":2,"1399":2}}],["to=sparkfun",{"2":{"1391":2}}],["to=bonsai",{"2":{"1391":2}}],["to=bit",{"2":{"1391":2}}],["to=blok",{"2":{"1391":2}}],["to=kb2040",{"2":{"1391":2}}],["to=",{"2":{"1388":1}}],["to=proton",{"2":{"304":1,"1388":1,"1391":2,"2691":1}}],["tolerant",{"2":{"1297":1,"1298":1,"2669":1,"2693":1}}],["tour",{"2":{"619":1}}],["touching",{"2":{"2428":1}}],["touchdown",{"2":{"2014":1}}],["touch",{"2":{"176":1,"211":44,"222":4,"266":1,"273":1,"276":1,"284":1,"1973":1,"1974":1,"1976":4,"1977":1,"2428":2,"2434":1,"2597":2,"2743":1}}],["touchpads",{"2":{"190":1,"191":1,"244":1,"2037":1,"2047":1}}],["touchpad",{"2":{"118":2,"1974":1,"2046":1}}],["todo",{"2":{"505":1,"624":2,"625":4}}],["today",{"2":{"405":1,"406":1,"407":1}}],["tokens",{"2":{"475":1,"491":2,"494":1}}],["tokenn",{"2":{"431":1}}],["token2",{"2":{"431":1}}],["token1",{"2":{"431":1}}],["token",{"2":{"333":1,"657":4,"658":3,"659":5,"2594":1,"2600":1,"2676":1,"2764":6}}],["tokyokeyboard",{"2":{"102":1,"114":1}}],["tokyo60",{"2":{"102":2,"114":2}}],["tones",{"2":{"719":6,"1474":1,"1477":1,"1484":1,"1486":1}}],["tone",{"0":{"1484":1},"2":{"222":1,"631":3,"674":1,"1417":2,"1477":1,"1484":5,"1486":1}}],["tofujr",{"2":{"236":1}}],["tofu60",{"2":{"236":2}}],["tofu",{"2":{"199":1}}],["totally",{"2":{"1992":1}}],["total",{"2":{"191":4,"749":1,"750":1,"751":1,"759":1,"1285":1,"1286":1,"1661":1,"2267":1,"2382":1,"2410":2,"2431":1,"2586":1,"2764":2,"2779":4,"2787":4,"2892":1}}],["tominabox1",{"2":{"143":5,"149":2,"222":1,"236":1}}],["tops",{"2":{"2428":1}}],["topmost",{"2":{"1425":1,"1720":1,"1722":1}}],["topic=41989",{"2":{"1387":1}}],["topic=14290",{"2":{"1386":1}}],["topic=50176",{"2":{"1378":1}}],["topic=57008",{"2":{"1353":1}}],["topics",{"0":{"661":1,"1368":1,"1402":1,"2906":1,"2907":1,"2908":1},"1":{"662":1,"663":1,"1369":1,"1370":1,"1371":1,"1372":1,"1373":1,"1403":1,"1404":1,"1405":1,"1406":1,"1407":1,"1408":1},"2":{"2617":1,"2906":1,"2907":2}}],["topic",{"2":{"412":5,"1364":1,"1634":1,"2503":1}}],["top",{"2":{"100":1,"149":1,"255":1,"411":1,"561":1,"571":1,"604":1,"668":1,"673":2,"684":1,"686":1,"746":1,"1327":1,"1348":1,"1417":1,"1422":1,"1427":2,"1485":1,"1590":2,"1647":1,"1668":1,"1741":1,"1802":1,"1845":1,"1846":1,"1849":1,"1954":1,"2011":1,"2057":1,"2070":1,"2081":1,"2082":1,"2085":2,"2269":1,"2290":1,"2296":1,"2317":1,"2326":1,"2428":1,"2450":2,"2454":13,"2455":13,"2464":1,"2503":1,"2561":1,"2562":2,"2585":1,"2612":1,"2634":1,"2659":1,"2678":1,"2683":2,"2715":1,"2717":1,"2746":1,"2762":1,"2764":5,"2783":3,"2794":1,"2795":1,"2796":1,"2860":1,"2869":2,"2885":1}}],["too",{"2":{"94":1,"105":1,"134":1,"153":1,"188":1,"211":1,"233":1,"530":1,"532":1,"536":1,"574":1,"614":1,"651":1,"657":1,"677":1,"710":1,"719":4,"720":3,"1320":1,"1376":2,"1409":1,"1415":1,"1417":1,"1423":1,"1451":1,"1472":1,"1488":1,"1493":1,"1497":1,"1525":1,"1602":1,"1802":1,"1935":6,"1936":1,"1994":1,"2280":2,"2305":1,"2309":1,"2317":1,"2319":1,"2418":1,"2427":1,"2428":1,"2429":1,"2461":1,"2576":1,"2603":1,"2652":1,"2716":1,"2744":2,"2746":2,"2895":1,"2912":1,"2949":1}}],["tool",{"2":{"182":1,"379":1,"386":1,"389":1,"393":1,"489":1,"578":1,"600":1,"1359":1,"2331":1,"2448":1,"2484":1,"2486":1,"2488":1,"2567":1,"2589":1,"2746":1,"2795":1}}],["toolchains",{"2":{"294":1,"393":1,"426":1}}],["toolchain",{"0":{"387":1},"2":{"134":1,"387":1,"414":1,"2662":1,"2683":1}}],["toolbox",{"0":{"1324":1,"2613":1,"2614":1},"1":{"2614":1,"2615":1},"2":{"82":1,"119":1,"131":1,"164":2,"240":3,"354":1,"578":1,"710":1,"713":1,"1318":1,"1324":1,"1333":1,"1624":1,"2273":2,"2382":1,"2383":2,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":2,"2409":1,"2433":2,"2477":1,"2496":1,"2508":1,"2591":1,"2601":1,"2612":1,"2613":3,"2614":2,"2615":1,"2619":1}}],["tooling",{"2":{"70":1,"198":1,"379":1,"665":1,"2657":1}}],["tools",{"0":{"388":1,"1323":1},"1":{"1324":1,"1325":1,"1326":1},"2":{"49":1,"182":1,"380":1,"384":1,"387":1,"388":1,"390":1,"393":1,"490":2,"600":2,"665":2,"684":1,"1323":1,"1335":1,"1376":1,"1946":1,"1962":1,"2273":1,"2298":2,"2382":1,"2394":1,"2422":1,"2496":1,"2589":1,"2653":2,"2658":1,"2673":2,"2674":1,"2680":1,"2906":1}}],["tog",{"2":{"188":1,"191":1,"231":1}}],["togg",{"2":{"188":2,"191":3,"235":1,"285":1,"303":1,"338":1,"589":4,"1322":1,"1485":1,"1490":1,"1493":1,"1495":3,"1521":1,"1526":1,"1529":1,"1530":1,"1543":1,"1594":1,"1606":1,"1680":1,"1780":1,"1848":1,"1925":1,"2084":1,"2181":1,"2191":2,"2192":1,"2210":1,"2216":1,"2253":1,"2304":2,"2418":1,"2511":1,"2512":3,"2513":1,"2514":1,"2515":1,"2517":1,"2525":1,"2526":7,"2527":1,"2532":1,"2533":1,"2535":1,"2539":1,"2552":7,"2651":1,"2752":1}}],["toggling",{"0":{"1422":1},"1":{"1423":1},"2":{"49":1,"1290":1,"1416":1,"1994":1,"1999":1,"2008":1,"2009":1,"2097":1,"2191":1,"2319":1,"2418":1,"2686":1,"2889":1}}],["toggles",{"0":{"2184":1},"2":{"721":1,"1417":1,"1422":1,"1428":1,"1481":1,"1485":1,"1490":1,"1493":1,"1495":3,"1521":1,"1530":1,"1536":1,"1599":1,"1606":1,"1621":1,"1793":1,"2210":1,"2306":1,"2309":1,"2512":3,"2513":1,"2514":1,"2517":1,"2523":1,"2526":1,"2535":1,"2552":1,"2651":1,"2652":1,"2921":1}}],["toggled",{"2":{"565":1,"722":1,"749":1,"1422":1,"2418":1,"2652":1,"2685":1,"2746":1}}],["toggleterminal",{"2":{"353":1,"2678":1}}],["togglepin",{"2":{"243":1}}],["toggle",{"0":{"327":1,"1560":1,"1572":1,"1857":1,"1858":1,"2099":1,"2100":1,"2319":1},"2":{"38":1,"49":2,"93":1,"112":2,"114":1,"149":1,"160":1,"211":1,"222":1,"231":3,"243":1,"339":1,"564":6,"722":1,"797":1,"1377":1,"1416":1,"1422":4,"1485":1,"1490":1,"1493":1,"1495":3,"1521":1,"1529":1,"1530":1,"1533":1,"1536":1,"1543":3,"1560":1,"1572":1,"1594":1,"1599":1,"1606":2,"1621":1,"1625":6,"1680":8,"1690":3,"1779":1,"1780":2,"1789":1,"1795":2,"1848":2,"1857":1,"1858":1,"1925":2,"1993":1,"1994":1,"1999":2,"2000":2,"2008":4,"2009":4,"2013":4,"2084":2,"2099":1,"2100":1,"2181":2,"2191":2,"2200":4,"2216":2,"2253":3,"2254":7,"2304":9,"2306":1,"2309":1,"2319":1,"2393":1,"2398":1,"2511":2,"2512":3,"2513":1,"2514":1,"2515":3,"2517":1,"2523":1,"2525":2,"2526":13,"2527":2,"2532":2,"2533":2,"2535":1,"2539":4,"2552":13,"2650":2,"2651":1,"2652":2,"2685":1,"2686":1,"2752":2,"2854":1,"2874":1,"2921":1}}],["together",{"2":{"72":1,"384":1,"516":1,"575":1,"609":1,"668":1,"923":1,"1094":1,"1128":1,"1193":1,"1283":1,"1362":1,"1603":1,"1605":1,"1627":1,"1949":1,"2048":1,"2068":1,"2178":1,"2207":1,"2280":1,"2309":1,"2315":1,"2416":1,"2427":2,"2459":1,"2504":1,"2575":1,"2612":1,"2720":1,"2731":1,"2734":1,"2746":1,"2924":1,"2925":3}}],["to",{"0":{"3":1,"4":1,"5":1,"6":1,"7":1,"15":1,"16":1,"17":1,"21":1,"24":1,"25":1,"26":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"43":1,"46":1,"57":1,"142":1,"164":1,"166":1,"173":1,"263":1,"265":1,"275":1,"304":1,"520":1,"587":1,"609":1,"610":1,"626":1,"667":1,"668":1,"672":1,"673":1,"711":1,"1331":1,"1336":1,"1341":1,"1342":1,"1431":1,"1499":1,"1613":1,"1627":1,"1628":1,"1643":1,"1644":1,"1767":2,"1787":1,"1788":1,"1931":1,"2001":1,"2002":1,"2006":2,"2008":1,"2013":1,"2057":1,"2186":1,"2309":1,"2410":1,"2436":1,"2473":1,"2475":1,"2586":1,"2600":1,"2608":1,"2632":1,"2667":1,"2714":1,"2765":1,"2773":1,"2937":1},"1":{"31":1,"34":1,"36":1,"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"610":1,"627":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"1342":1,"1932":1,"1933":1,"2003":1,"2004":1,"2005":1,"2006":1,"2715":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2722":1,"2723":1,"2724":1,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1},"2":{"0":1,"1":2,"2":3,"3":1,"4":2,"5":3,"6":4,"7":1,"9":1,"10":9,"12":1,"14":4,"15":1,"16":2,"17":1,"19":1,"21":2,"22":2,"23":2,"24":3,"25":3,"26":1,"27":1,"28":5,"30":3,"31":5,"32":3,"33":3,"34":5,"36":2,"37":2,"38":1,"39":1,"43":2,"45":6,"46":3,"48":1,"49":21,"50":9,"51":2,"52":1,"56":2,"58":1,"62":1,"63":4,"64":4,"65":4,"69":2,"70":6,"72":1,"73":3,"74":8,"75":2,"76":5,"77":3,"82":5,"83":1,"87":3,"88":2,"89":1,"90":6,"92":3,"93":14,"94":5,"95":2,"98":2,"99":5,"100":2,"103":2,"104":2,"105":3,"107":5,"109":1,"110":3,"112":2,"113":6,"114":48,"116":1,"118":4,"119":8,"120":2,"123":4,"124":6,"125":9,"126":3,"127":2,"128":2,"130":3,"131":1,"132":3,"133":8,"134":38,"137":1,"140":1,"142":1,"149":60,"152":3,"153":11,"154":4,"156":2,"157":2,"158":4,"160":27,"163":2,"164":4,"166":1,"167":4,"169":2,"170":1,"172":5,"173":5,"174":4,"175":1,"176":32,"179":1,"182":6,"184":2,"185":9,"186":2,"187":1,"188":3,"189":4,"191":40,"194":8,"195":7,"198":3,"199":36,"201":4,"202":4,"203":3,"204":1,"206":4,"209":3,"211":64,"213":5,"214":1,"215":2,"218":3,"220":3,"221":2,"222":28,"224":2,"228":7,"230":3,"231":3,"232":4,"233":5,"234":4,"235":4,"236":33,"240":7,"241":1,"243":1,"244":3,"245":2,"246":1,"247":1,"249":38,"253":1,"255":4,"256":1,"257":1,"258":1,"259":2,"262":2,"263":4,"265":5,"266":87,"268":4,"270":1,"271":1,"272":5,"273":5,"275":3,"276":5,"277":24,"279":3,"281":1,"283":5,"284":3,"285":18,"288":4,"289":1,"293":3,"294":17,"297":2,"304":2,"305":3,"306":1,"307":7,"308":27,"312":6,"314":2,"315":1,"317":16,"320":1,"323":5,"327":2,"328":32,"331":1,"332":1,"333":9,"337":1,"339":12,"340":2,"341":4,"344":21,"346":1,"353":2,"354":1,"364":2,"365":3,"366":1,"367":4,"371":1,"372":1,"373":1,"374":1,"375":2,"376":2,"377":2,"379":6,"380":2,"381":1,"382":2,"384":1,"385":1,"386":2,"387":1,"388":1,"389":1,"392":2,"393":8,"396":2,"397":4,"398":1,"399":1,"402":4,"403":19,"405":2,"406":2,"407":3,"408":2,"411":8,"412":10,"413":1,"414":14,"415":1,"416":4,"417":1,"418":1,"419":2,"420":2,"422":3,"423":1,"425":1,"426":2,"429":4,"430":5,"432":1,"433":6,"434":3,"435":3,"437":2,"443":2,"447":2,"448":1,"449":1,"450":1,"452":6,"453":4,"455":3,"456":2,"458":3,"459":3,"460":3,"461":3,"462":1,"463":5,"465":1,"466":1,"467":2,"468":1,"469":4,"473":1,"474":2,"475":2,"476":1,"477":1,"482":2,"483":1,"485":1,"486":1,"487":2,"488":3,"489":6,"490":2,"491":4,"492":3,"493":1,"494":9,"495":4,"496":1,"499":3,"500":5,"501":2,"504":2,"505":3,"506":1,"509":4,"510":2,"511":3,"512":7,"513":4,"514":5,"515":1,"516":6,"519":1,"521":1,"524":1,"525":3,"527":4,"528":2,"529":1,"530":2,"531":1,"532":2,"533":2,"536":1,"537":1,"538":6,"540":5,"541":3,"542":3,"543":2,"544":1,"547":1,"555":6,"557":1,"558":2,"559":2,"561":13,"563":1,"564":19,"565":11,"566":1,"568":8,"569":4,"570":3,"571":1,"572":5,"574":6,"575":4,"578":3,"579":1,"580":2,"581":2,"585":2,"586":2,"587":2,"588":5,"589":4,"591":2,"592":1,"593":4,"594":1,"596":7,"597":1,"600":3,"601":1,"602":1,"604":1,"605":2,"607":1,"609":4,"610":7,"611":2,"613":17,"614":1,"615":6,"616":5,"617":1,"618":2,"619":13,"620":3,"621":1,"622":2,"623":3,"624":2,"625":5,"626":4,"627":3,"628":2,"629":7,"630":3,"632":1,"633":4,"639":4,"640":2,"641":2,"643":2,"644":1,"645":1,"646":3,"647":7,"651":5,"652":3,"653":3,"654":2,"655":3,"656":5,"657":5,"658":1,"659":1,"660":1,"661":3,"664":1,"665":10,"666":7,"667":1,"668":7,"669":8,"670":5,"671":1,"672":4,"673":5,"674":2,"675":2,"677":1,"678":2,"681":7,"682":1,"683":4,"684":2,"685":3,"686":2,"688":2,"690":1,"691":3,"693":2,"694":2,"696":4,"697":1,"698":2,"699":4,"703":3,"705":3,"706":1,"708":2,"709":2,"710":9,"711":4,"712":3,"713":3,"714":1,"715":1,"716":1,"717":4,"718":4,"719":1,"720":7,"721":6,"722":2,"724":1,"725":2,"726":6,"727":3,"728":1,"729":4,"732":1,"734":2,"736":3,"738":3,"739":1,"740":1,"742":2,"744":7,"745":1,"746":4,"748":3,"749":5,"750":5,"752":1,"753":7,"754":12,"755":5,"756":3,"757":2,"758":1,"759":3,"760":1,"761":2,"762":2,"763":2,"764":10,"768":3,"769":1,"770":5,"772":1,"773":5,"776":5,"779":9,"781":1,"782":7,"784":1,"785":7,"788":6,"791":6,"793":2,"794":1,"796":2,"799":5,"800":1,"801":2,"802":3,"804":1,"805":4,"811":1,"813":3,"815":3,"817":1,"819":1,"824":1,"825":1,"826":1,"827":2,"828":3,"829":2,"830":1,"831":4,"834":1,"838":1,"840":3,"842":3,"844":1,"846":1,"851":1,"853":1,"855":1,"856":2,"857":3,"858":2,"859":1,"860":3,"861":3,"862":1,"863":5,"866":1,"870":1,"872":3,"874":3,"876":1,"878":1,"883":1,"885":1,"887":1,"888":2,"889":3,"890":2,"891":2,"892":1,"893":5,"896":1,"900":1,"902":1,"904":3,"906":3,"908":1,"910":1,"915":1,"917":1,"919":1,"920":2,"921":3,"922":2,"923":1,"924":1,"925":3,"926":3,"927":1,"928":5,"931":1,"935":1,"937":1,"939":3,"941":3,"943":1,"945":1,"950":1,"952":1,"954":1,"955":2,"956":3,"957":2,"958":1,"959":3,"960":3,"961":1,"962":5,"965":1,"969":1,"971":1,"973":3,"975":3,"977":1,"979":1,"984":1,"986":1,"988":1,"989":2,"990":3,"991":2,"992":1,"993":3,"994":3,"995":1,"996":5,"999":1,"1003":1,"1005":1,"1007":3,"1009":3,"1011":1,"1013":1,"1018":1,"1020":1,"1022":1,"1023":2,"1024":3,"1025":2,"1026":1,"1027":3,"1028":3,"1029":1,"1030":5,"1033":1,"1037":1,"1039":1,"1041":3,"1043":3,"1045":1,"1047":1,"1052":1,"1054":1,"1056":1,"1057":2,"1058":3,"1059":2,"1060":1,"1061":3,"1062":3,"1063":1,"1064":5,"1067":1,"1071":1,"1073":1,"1075":3,"1077":3,"1079":1,"1081":1,"1086":1,"1088":1,"1090":1,"1091":2,"1092":3,"1093":2,"1094":1,"1095":3,"1096":3,"1097":1,"1098":5,"1101":1,"1105":1,"1107":1,"1109":3,"1111":3,"1113":1,"1115":1,"1120":1,"1122":1,"1124":1,"1125":2,"1126":3,"1127":2,"1128":1,"1129":3,"1130":3,"1131":1,"1132":5,"1135":1,"1139":1,"1141":1,"1143":3,"1145":3,"1147":1,"1149":1,"1154":1,"1156":1,"1158":1,"1159":2,"1160":3,"1161":2,"1162":1,"1163":3,"1164":3,"1165":1,"1166":5,"1169":1,"1173":1,"1175":1,"1177":3,"1179":3,"1181":1,"1183":1,"1188":1,"1190":1,"1192":1,"1194":2,"1195":3,"1196":2,"1197":6,"1198":5,"1199":3,"1200":9,"1201":6,"1203":5,"1204":6,"1205":1,"1207":1,"1208":2,"1209":3,"1213":2,"1214":1,"1215":2,"1216":3,"1217":2,"1218":1,"1219":5,"1222":1,"1226":1,"1228":1,"1230":3,"1232":3,"1234":1,"1236":1,"1241":1,"1243":1,"1245":1,"1246":2,"1247":5,"1248":12,"1252":6,"1254":1,"1255":1,"1259":1,"1260":4,"1263":4,"1266":1,"1267":2,"1268":1,"1269":9,"1272":1,"1274":1,"1276":1,"1278":4,"1280":4,"1281":1,"1282":1,"1283":1,"1284":2,"1285":2,"1286":1,"1287":3,"1288":7,"1290":1,"1291":1,"1292":3,"1293":1,"1294":2,"1295":1,"1296":1,"1297":5,"1298":2,"1299":6,"1300":3,"1301":2,"1302":1,"1303":6,"1307":3,"1309":3,"1310":1,"1311":6,"1312":4,"1313":4,"1315":2,"1316":1,"1317":1,"1318":2,"1319":1,"1320":5,"1322":4,"1323":1,"1324":1,"1325":1,"1326":1,"1327":1,"1328":1,"1329":4,"1330":1,"1331":3,"1332":2,"1336":1,"1337":2,"1338":1,"1339":1,"1340":3,"1342":5,"1343":3,"1345":2,"1346":1,"1347":2,"1348":5,"1349":4,"1350":1,"1351":1,"1353":3,"1354":1,"1356":4,"1357":1,"1358":1,"1359":2,"1362":1,"1363":1,"1364":13,"1366":4,"1367":7,"1368":3,"1375":1,"1376":8,"1377":4,"1378":1,"1379":2,"1380":2,"1381":1,"1383":2,"1384":1,"1387":2,"1388":7,"1389":1,"1390":5,"1391":14,"1392":4,"1394":1,"1395":4,"1396":4,"1397":2,"1398":2,"1399":5,"1400":1,"1401":1,"1403":3,"1405":3,"1406":2,"1407":5,"1408":1,"1409":8,"1410":4,"1412":1,"1413":1,"1414":3,"1415":3,"1416":5,"1417":27,"1418":2,"1419":3,"1420":1,"1421":2,"1422":15,"1423":10,"1424":3,"1425":3,"1426":1,"1427":3,"1428":9,"1430":1,"1431":4,"1433":7,"1434":2,"1435":1,"1436":2,"1438":3,"1439":4,"1440":6,"1441":1,"1442":4,"1443":2,"1446":12,"1447":5,"1448":2,"1449":1,"1450":2,"1451":3,"1452":1,"1453":1,"1454":2,"1455":2,"1457":3,"1462":1,"1463":3,"1464":5,"1465":2,"1466":1,"1467":3,"1468":1,"1470":5,"1471":9,"1472":18,"1473":4,"1474":2,"1475":2,"1477":2,"1478":6,"1479":1,"1480":7,"1481":2,"1482":5,"1483":6,"1484":3,"1485":7,"1486":7,"1487":3,"1488":1,"1489":2,"1490":10,"1491":2,"1492":10,"1493":7,"1495":1,"1497":1,"1498":2,"1499":3,"1500":1,"1501":1,"1502":1,"1503":9,"1510":3,"1517":3,"1518":7,"1520":2,"1522":11,"1524":4,"1525":6,"1526":4,"1527":2,"1528":7,"1529":3,"1532":4,"1533":2,"1534":4,"1535":6,"1536":1,"1537":4,"1538":17,"1539":9,"1540":3,"1541":1,"1543":1,"1544":4,"1545":4,"1546":7,"1549":4,"1551":5,"1554":2,"1556":8,"1557":3,"1558":6,"1567":2,"1569":1,"1578":2,"1579":1,"1589":9,"1590":4,"1591":6,"1592":4,"1593":6,"1594":5,"1595":2,"1598":2,"1599":1,"1600":3,"1601":2,"1602":5,"1603":1,"1604":1,"1605":3,"1606":1,"1608":3,"1609":5,"1610":2,"1612":12,"1613":1,"1614":1,"1615":1,"1617":1,"1618":2,"1619":2,"1620":2,"1621":2,"1622":7,"1623":4,"1624":4,"1625":9,"1626":2,"1627":6,"1628":4,"1629":3,"1630":7,"1631":1,"1633":4,"1634":2,"1639":4,"1640":2,"1643":3,"1644":1,"1645":2,"1646":1,"1647":2,"1648":4,"1651":4,"1652":1,"1660":2,"1661":8,"1662":5,"1663":3,"1664":3,"1665":2,"1666":2,"1667":4,"1668":3,"1669":2,"1671":1,"1672":1,"1675":3,"1676":1,"1678":3,"1680":4,"1681":13,"1682":2,"1684":1,"1685":4,"1687":2,"1688":1,"1690":4,"1697":1,"1698":1,"1699":6,"1701":1,"1702":2,"1705":2,"1707":1,"1709":2,"1711":1,"1712":5,"1713":3,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1720":2,"1722":2,"1725":1,"1726":2,"1728":1,"1730":3,"1731":1,"1732":2,"1733":1,"1735":3,"1736":1,"1737":3,"1738":1,"1739":1,"1740":1,"1741":2,"1742":5,"1747":2,"1749":1,"1750":1,"1752":2,"1754":2,"1756":1,"1759":2,"1761":1,"1762":2,"1765":1,"1766":8,"1768":4,"1769":2,"1770":1,"1772":1,"1773":1,"1774":2,"1776":3,"1777":3,"1779":4,"1781":23,"1782":2,"1783":2,"1784":3,"1785":4,"1786":3,"1787":4,"1788":11,"1789":4,"1790":1,"1791":4,"1792":1,"1793":1,"1794":2,"1795":2,"1796":3,"1797":2,"1800":2,"1801":5,"1802":11,"1803":5,"1804":1,"1809":1,"1810":2,"1811":2,"1815":1,"1816":1,"1821":1,"1824":2,"1827":3,"1830":4,"1833":5,"1835":3,"1836":2,"1837":1,"1839":2,"1841":2,"1843":3,"1844":3,"1845":3,"1846":14,"1847":2,"1849":6,"1850":8,"1851":2,"1852":8,"1855":3,"1858":1,"1860":1,"1862":1,"1866":2,"1868":1,"1870":2,"1871":1,"1872":2,"1873":1,"1874":2,"1875":1,"1876":2,"1880":1,"1882":1,"1884":1,"1886":1,"1888":1,"1890":2,"1891":1,"1892":2,"1894":1,"1896":1,"1897":1,"1898":1,"1899":1,"1900":2,"1901":1,"1902":2,"1908":1,"1910":1,"1911":1,"1912":1,"1915":1,"1917":1,"1919":3,"1921":2,"1922":2,"1923":5,"1925":49,"1926":2,"1930":1,"1931":2,"1932":2,"1933":5,"1934":3,"1935":8,"1936":4,"1937":9,"1938":7,"1939":11,"1940":1,"1944":3,"1945":1,"1946":2,"1947":5,"1948":4,"1949":10,"1951":1,"1952":11,"1953":9,"1954":31,"1957":2,"1958":1,"1959":1,"1960":2,"1961":4,"1962":8,"1964":4,"1965":2,"1966":6,"1967":4,"1968":11,"1969":2,"1970":3,"1971":5,"1973":2,"1974":9,"1975":1,"1976":3,"1977":2,"1978":5,"1979":5,"1980":3,"1981":7,"1982":4,"1983":18,"1984":3,"1985":9,"1986":8,"1987":1,"1988":7,"1989":3,"1990":15,"1992":2,"1993":5,"1994":8,"1995":1,"1997":3,"1998":4,"1999":4,"2000":2,"2001":1,"2002":1,"2003":3,"2004":2,"2006":1,"2008":4,"2009":3,"2011":3,"2012":5,"2013":2,"2015":1,"2016":6,"2017":1,"2022":2,"2024":2,"2026":2,"2028":2,"2030":2,"2032":1,"2037":5,"2038":1,"2043":4,"2046":4,"2047":1,"2048":9,"2049":1,"2050":2,"2051":1,"2052":2,"2053":2,"2054":3,"2055":1,"2056":1,"2057":11,"2058":4,"2059":1,"2062":1,"2064":2,"2065":2,"2068":4,"2069":5,"2070":3,"2071":2,"2072":4,"2074":2,"2077":4,"2078":5,"2079":1,"2080":3,"2081":3,"2082":14,"2083":2,"2085":21,"2086":7,"2087":1,"2088":8,"2089":5,"2090":2,"2091":13,"2094":3,"2095":1,"2096":7,"2097":2,"2100":1,"2102":1,"2104":1,"2108":4,"2110":3,"2112":2,"2113":1,"2114":2,"2115":1,"2116":2,"2117":1,"2118":2,"2122":1,"2124":1,"2126":1,"2128":1,"2130":1,"2132":1,"2134":1,"2136":1,"2138":1,"2140":1,"2142":1,"2144":2,"2145":1,"2146":2,"2148":1,"2150":1,"2151":1,"2152":1,"2153":1,"2154":2,"2155":1,"2156":2,"2160":6,"2161":1,"2162":6,"2168":1,"2170":1,"2171":1,"2172":1,"2175":1,"2177":1,"2178":6,"2179":9,"2180":1,"2181":4,"2182":9,"2184":2,"2185":12,"2186":1,"2187":6,"2188":3,"2189":11,"2191":6,"2192":2,"2193":2,"2194":3,"2195":1,"2198":20,"2199":7,"2200":3,"2201":9,"2202":3,"2205":5,"2206":2,"2207":3,"2208":6,"2210":3,"2211":3,"2212":1,"2213":3,"2214":1,"2215":1,"2216":1,"2217":4,"2219":2,"2220":1,"2221":2,"2222":2,"2223":3,"2225":1,"2226":1,"2229":1,"2231":2,"2233":1,"2235":2,"2237":1,"2239":2,"2241":2,"2243":2,"2245":2,"2247":1,"2248":1,"2249":2,"2250":1,"2251":2,"2252":1,"2253":3,"2254":4,"2258":1,"2259":2,"2260":11,"2261":1,"2263":2,"2264":2,"2265":3,"2266":1,"2267":3,"2268":3,"2269":2,"2270":2,"2271":6,"2272":14,"2273":9,"2274":6,"2275":11,"2276":19,"2277":20,"2278":10,"2280":6,"2281":3,"2284":4,"2285":2,"2286":5,"2287":2,"2288":9,"2289":2,"2290":26,"2292":2,"2293":14,"2294":10,"2295":5,"2296":4,"2297":8,"2298":10,"2300":13,"2301":4,"2302":1,"2303":2,"2304":1,"2305":3,"2306":1,"2309":12,"2310":10,"2312":2,"2315":3,"2316":2,"2317":25,"2318":4,"2319":21,"2320":6,"2322":4,"2323":1,"2325":1,"2326":3,"2327":8,"2328":7,"2329":10,"2330":9,"2331":17,"2332":7,"2337":1,"2338":1,"2339":1,"2348":1,"2350":1,"2352":1,"2364":1,"2365":1,"2369":1,"2374":3,"2375":4,"2376":1,"2377":11,"2378":2,"2379":7,"2380":1,"2381":5,"2382":5,"2383":4,"2384":7,"2386":7,"2387":2,"2388":4,"2389":3,"2390":3,"2391":10,"2393":5,"2394":2,"2395":5,"2396":3,"2397":2,"2398":5,"2400":8,"2402":8,"2404":8,"2405":3,"2407":9,"2409":3,"2410":14,"2411":3,"2412":1,"2413":1,"2415":2,"2416":4,"2417":21,"2418":33,"2419":1,"2422":2,"2423":10,"2424":2,"2425":5,"2427":9,"2428":16,"2429":12,"2430":7,"2431":12,"2432":5,"2433":1,"2434":8,"2435":2,"2436":1,"2437":2,"2439":2,"2441":2,"2444":4,"2445":2,"2446":1,"2447":5,"2450":3,"2452":2,"2453":3,"2454":2,"2455":5,"2456":3,"2458":2,"2459":3,"2460":4,"2461":2,"2462":3,"2464":5,"2465":1,"2466":18,"2467":1,"2469":1,"2470":4,"2471":2,"2472":3,"2473":1,"2474":5,"2475":3,"2478":1,"2479":2,"2480":1,"2481":5,"2482":7,"2483":9,"2484":2,"2485":2,"2486":1,"2487":2,"2488":2,"2489":2,"2490":1,"2494":1,"2496":1,"2498":2,"2499":2,"2501":2,"2502":8,"2503":5,"2504":3,"2505":2,"2506":3,"2507":1,"2508":12,"2509":3,"2512":1,"2515":1,"2516":11,"2523":1,"2527":49,"2528":3,"2535":1,"2540":7,"2551":1,"2552":3,"2553":1,"2554":3,"2556":1,"2557":2,"2558":5,"2559":5,"2560":2,"2561":4,"2562":1,"2563":4,"2564":3,"2565":1,"2566":6,"2567":15,"2568":10,"2569":9,"2570":3,"2572":7,"2573":4,"2575":2,"2576":11,"2578":3,"2579":7,"2580":3,"2582":1,"2583":5,"2584":3,"2585":3,"2586":8,"2587":7,"2588":4,"2589":3,"2590":4,"2591":5,"2592":1,"2593":2,"2594":1,"2595":3,"2597":1,"2598":4,"2599":1,"2600":1,"2601":5,"2602":4,"2603":8,"2604":5,"2605":3,"2606":2,"2607":6,"2608":8,"2609":2,"2610":3,"2611":1,"2612":6,"2613":3,"2614":4,"2615":4,"2616":9,"2617":3,"2618":3,"2619":5,"2620":4,"2621":2,"2622":1,"2624":1,"2627":2,"2628":12,"2629":6,"2630":2,"2632":8,"2633":2,"2634":16,"2635":4,"2636":5,"2637":13,"2638":4,"2639":14,"2640":22,"2641":4,"2642":1,"2643":1,"2645":2,"2646":1,"2650":1,"2651":11,"2652":6,"2653":3,"2655":1,"2656":4,"2657":1,"2658":8,"2659":3,"2660":1,"2662":1,"2663":3,"2664":3,"2665":2,"2668":2,"2669":1,"2671":4,"2672":2,"2673":3,"2674":3,"2676":4,"2677":3,"2678":11,"2679":1,"2680":5,"2682":7,"2683":28,"2684":3,"2685":17,"2686":5,"2687":2,"2690":2,"2691":6,"2694":5,"2695":3,"2696":2,"2697":1,"2698":1,"2700":5,"2701":1,"2702":3,"2703":3,"2705":4,"2706":1,"2707":7,"2709":11,"2710":4,"2711":1,"2712":1,"2713":3,"2714":8,"2715":2,"2716":1,"2717":3,"2718":2,"2720":5,"2721":4,"2722":2,"2727":2,"2728":4,"2731":1,"2733":3,"2734":1,"2740":1,"2741":1,"2742":1,"2744":9,"2745":6,"2746":39,"2747":8,"2748":5,"2749":6,"2751":2,"2752":1,"2753":7,"2754":4,"2756":6,"2757":1,"2759":6,"2760":7,"2761":7,"2762":15,"2763":42,"2764":61,"2765":1,"2767":2,"2769":6,"2770":3,"2771":5,"2772":3,"2773":2,"2774":5,"2775":3,"2776":1,"2779":2,"2780":3,"2782":3,"2783":7,"2784":1,"2786":1,"2787":2,"2790":1,"2791":1,"2792":3,"2793":1,"2794":13,"2795":10,"2796":3,"2797":1,"2799":1,"2800":2,"2806":1,"2807":2,"2808":1,"2823":1,"2824":2,"2825":2,"2827":2,"2828":2,"2831":1,"2833":1,"2836":3,"2841":1,"2842":2,"2843":1,"2844":1,"2846":2,"2851":4,"2852":3,"2854":2,"2855":3,"2856":4,"2857":7,"2858":6,"2859":1,"2860":2,"2862":1,"2863":1,"2864":4,"2865":3,"2867":6,"2869":5,"2870":1,"2871":12,"2872":6,"2873":1,"2874":2,"2875":3,"2876":6,"2877":10,"2878":14,"2879":7,"2880":18,"2881":1,"2882":3,"2883":2,"2884":3,"2885":1,"2886":7,"2888":7,"2889":6,"2890":5,"2891":2,"2892":2,"2894":4,"2895":2,"2897":2,"2901":5,"2902":9,"2903":1,"2905":3,"2906":3,"2907":3,"2908":2,"2909":1,"2910":9,"2911":4,"2912":21,"2913":3,"2914":2,"2918":2,"2919":6,"2920":5,"2921":11,"2922":5,"2923":4,"2924":4,"2925":5,"2926":7,"2927":4,"2928":15,"2929":1,"2930":13,"2931":2,"2932":2,"2933":2,"2934":1,"2935":3,"2936":3,"2937":10,"2938":4,"2939":4,"2940":7,"2941":2,"2942":3,"2943":3,"2944":6,"2945":2,"2946":4,"2947":3,"2948":9,"2949":17}}],["th",{"2":{"1622":1}}],["th+tl",{"2":{"1285":1}}],["thus",{"2":{"403":1,"1205":1,"1288":1,"1364":1,"1379":1,"1462":1,"1501":1,"1593":1,"1788":1,"2269":1,"2319":1,"2388":1,"2470":1,"2475":1,"2570":1,"2634":1,"2696":1,"2703":1,"2733":1,"2886":1,"2912":1,"2919":1,"2928":1}}],["thumb",{"2":{"199":1,"294":1,"2926":2}}],["threads",{"2":{"2410":1}}],["threading",{"0":{"537":1}}],["threshold",{"0":{"246":1},"2":{"246":2,"249":1,"2003":1,"2930":1}}],["three",{"0":{"361":1,"1826":1},"1":{"1827":1,"1828":1},"2":{"98":1,"191":1,"196":1,"344":1,"361":1,"521":1,"555":1,"605":1,"633":1,"639":1,"1351":1,"1503":1,"1520":1,"1521":1,"1538":1,"1604":2,"1670":2,"1784":2,"1798":1,"1801":1,"1835":1,"1934":1,"1945":1,"1954":1,"2037":1,"2191":1,"2252":2,"2284":2,"2292":1,"2300":2,"2308":1,"2310":3,"2317":1,"2330":1,"2466":1,"2510":1,"2910":1,"2912":2,"2913":1}}],["throttling",{"2":{"646":1,"2275":1}}],["throttled",{"2":{"2277":1}}],["throttle",{"2":{"149":1,"570":1,"1974":1,"1985":2,"1986":1,"2275":1,"2761":1,"2764":6}}],["thrown",{"2":{"575":1}}],["throw",{"2":{"114":1,"1376":1}}],["throughout",{"2":{"1766":1}}],["through",{"0":{"1431":1},"2":{"110":1,"160":1,"166":1,"224":1,"232":1,"323":1,"377":1,"416":2,"433":1,"561":1,"588":1,"593":1,"633":1,"639":1,"665":1,"685":1,"721":1,"744":1,"1319":1,"1343":1,"1411":1,"1422":2,"1431":1,"1433":1,"1462":1,"1472":1,"1480":1,"1483":1,"1484":2,"1489":2,"1490":2,"1495":3,"1507":1,"1508":1,"1513":1,"1514":2,"1532":1,"1541":1,"1543":1,"1558":1,"1563":1,"1592":1,"1594":1,"1629":1,"1667":2,"1681":2,"1742":2,"1795":1,"1848":4,"1852":1,"2011":1,"2084":6,"2085":1,"2087":1,"2091":1,"2181":2,"2238":1,"2240":1,"2242":1,"2244":1,"2252":1,"2309":1,"2310":1,"2327":2,"2331":1,"2332":2,"2377":2,"2386":1,"2410":1,"2421":1,"2423":1,"2427":1,"2429":1,"2432":1,"2441":1,"2466":3,"2470":1,"2474":1,"2479":1,"2506":1,"2512":3,"2515":1,"2516":2,"2525":4,"2532":2,"2533":6,"2540":2,"2559":1,"2560":1,"2568":1,"2621":1,"2632":1,"2662":1,"2683":1,"2689":1,"2707":1,"2709":1,"2712":2,"2733":1,"2746":3,"2748":1,"2751":1,"2764":3,"2805":1,"2871":1,"2878":1,"2882":2,"2902":1,"2925":1,"2927":1,"2934":1}}],["thomas",{"2":{"2492":1,"2643":1}}],["thoughts",{"0":{"2895":1}}],["thought",{"2":{"541":1,"2430":1,"2572":1}}],["though",{"2":{"50":1,"396":1,"1366":1,"1382":1,"1464":1,"1477":1,"1498":1,"1528":1,"1541":1,"1781":1,"1785":1,"1786":1,"2424":1,"2427":1,"2429":1,"2640":1}}],["those",{"2":{"33":1,"49":1,"113":1,"175":1,"263":1,"265":1,"276":1,"366":1,"379":1,"489":1,"513":1,"538":1,"578":1,"600":2,"616":1,"698":1,"725":1,"753":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1200":1,"1215":1,"1284":1,"1349":1,"1351":1,"1358":1,"1470":1,"1472":1,"1473":1,"1490":1,"1503":1,"1522":1,"1788":1,"1801":1,"1837":1,"1855":1,"1953":1,"1986":1,"2043":1,"2094":1,"2294":1,"2300":1,"2329":1,"2410":1,"2431":1,"2469":1,"2562":1,"2573":1,"2597":1,"2603":1,"2678":1,"2690":1,"2709":1,"2718":1,"2725":1,"2751":1,"2763":1,"2765":1,"2774":1,"2885":1,"2888":1,"2889":1,"2902":1,"2912":1,"2928":1,"2931":2,"2937":2,"2944":2,"2946":1}}],["thickness",{"2":{"2422":1}}],["thicker",{"2":{"1974":1}}],["thiers",{"2":{"1528":1}}],["thier",{"2":{"1527":3,"1528":8}}],["thing",{"0":{"610":1},"2":{"213":1,"543":1,"568":1,"1338":1,"1364":1,"1388":1,"1415":1,"1446":3,"2317":1,"2474":1,"2718":1,"2886":1,"2931":1,"2943":1}}],["things",{"0":{"2307":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"50":1,"113":1,"119":1,"158":1,"230":1,"340":1,"367":1,"414":1,"415":1,"448":1,"449":1,"450":1,"513":1,"514":1,"521":1,"560":1,"610":1,"619":2,"620":1,"626":1,"631":1,"633":1,"666":1,"685":1,"1340":1,"1376":1,"1447":1,"1450":1,"1490":1,"1491":1,"1503":1,"1592":1,"1919":1,"2038":1,"2276":2,"2280":1,"2300":2,"2317":1,"2326":1,"2384":1,"2391":1,"2410":1,"2417":1,"2428":2,"2432":1,"2434":2,"2456":1,"2466":1,"2473":1,"2503":1,"2563":1,"2564":1,"2568":1,"2572":2,"2612":1,"2632":2,"2674":1,"2677":1,"2685":1,"2731":1,"2749":1,"2889":1}}],["thinkpad",{"2":{"1379":1,"2037":1}}],["thinking",{"2":{"243":1,"331":1}}],["thinks",{"2":{"182":1}}],["think",{"2":{"119":1,"228":1,"512":1,"514":1,"540":1,"613":1,"619":1,"1319":1,"1499":2,"1762":1,"2460":1,"2466":1,"2744":1,"2884":1,"2934":1,"2949":1}}],["third",{"2":{"49":1,"288":1,"379":1,"609":1,"657":1,"717":1,"1493":1,"1626":1,"1786":1,"1827":1,"1830":1,"1833":1,"2303":2,"2309":1,"2317":1,"2320":1,"2331":1,"2569":1,"2746":1,"2903":1}}],["this",{"0":{"610":1,"1329":1,"1330":1},"2":{"0":1,"3":1,"5":1,"6":2,"10":1,"11":2,"14":2,"15":1,"16":1,"21":1,"23":1,"28":1,"30":1,"31":1,"32":1,"33":1,"34":1,"36":3,"45":2,"49":6,"50":2,"69":1,"70":2,"87":1,"88":1,"90":2,"99":3,"103":1,"104":1,"107":1,"111":1,"116":1,"119":1,"120":1,"123":1,"125":3,"126":2,"127":1,"131":1,"132":2,"133":1,"143":2,"149":1,"152":2,"154":1,"156":1,"163":1,"164":1,"172":2,"173":1,"182":2,"185":3,"187":1,"189":1,"190":1,"194":4,"198":1,"201":2,"209":1,"211":1,"213":3,"214":1,"215":2,"218":2,"221":1,"224":1,"228":2,"229":1,"230":2,"231":1,"233":1,"240":1,"243":1,"244":1,"251":1,"255":2,"256":1,"262":1,"263":5,"265":1,"268":1,"271":1,"273":4,"275":1,"276":2,"279":2,"302":1,"303":1,"306":1,"307":3,"312":5,"315":1,"320":1,"327":1,"331":1,"338":1,"340":1,"341":1,"346":1,"348":1,"350":1,"352":6,"353":1,"354":1,"355":2,"362":1,"365":2,"366":1,"369":1,"370":1,"371":1,"372":1,"373":2,"374":1,"377":1,"378":2,"381":1,"384":3,"385":1,"386":1,"388":1,"389":1,"390":1,"393":4,"396":1,"397":2,"399":3,"402":1,"403":3,"404":1,"405":1,"406":1,"407":1,"411":3,"412":5,"413":1,"414":2,"417":1,"420":1,"429":4,"430":3,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":2,"439":1,"440":1,"441":1,"442":2,"443":1,"444":1,"445":2,"446":1,"447":1,"448":1,"449":1,"450":1,"452":2,"453":2,"454":2,"455":2,"456":1,"458":1,"459":1,"460":2,"461":4,"462":2,"463":1,"464":1,"465":2,"466":2,"467":2,"468":2,"469":3,"470":1,"471":1,"472":1,"474":1,"486":1,"488":1,"489":5,"492":1,"493":1,"494":1,"495":3,"499":1,"505":2,"506":1,"507":1,"509":2,"512":2,"516":1,"523":1,"524":2,"525":1,"526":1,"529":1,"537":1,"539":1,"540":1,"541":2,"542":1,"543":1,"544":2,"554":1,"555":1,"556":1,"557":2,"559":1,"560":1,"561":1,"564":3,"567":1,"569":2,"570":1,"571":1,"572":2,"574":2,"575":3,"576":1,"579":1,"580":2,"582":2,"583":2,"584":1,"587":1,"588":8,"591":1,"592":1,"593":6,"594":1,"595":1,"598":2,"600":4,"609":2,"613":1,"615":1,"616":1,"617":1,"619":3,"622":1,"623":2,"624":1,"625":3,"626":1,"629":2,"631":2,"633":2,"634":4,"635":1,"637":2,"639":5,"640":3,"641":1,"644":2,"645":2,"646":1,"647":1,"648":3,"651":5,"655":1,"656":2,"657":4,"658":1,"659":1,"660":1,"661":3,"664":1,"665":3,"667":1,"668":3,"669":4,"670":1,"672":3,"673":1,"674":1,"675":4,"676":1,"679":2,"680":2,"681":1,"682":1,"683":1,"684":2,"685":2,"686":2,"690":4,"694":2,"696":2,"697":1,"701":1,"702":1,"710":2,"711":6,"712":5,"713":1,"717":1,"719":1,"721":3,"722":2,"725":1,"727":1,"729":2,"733":1,"735":1,"741":1,"742":2,"746":2,"749":1,"750":1,"752":2,"753":4,"754":4,"755":1,"756":1,"757":3,"762":1,"763":1,"764":2,"765":1,"766":1,"768":2,"772":1,"793":2,"796":1,"798":1,"801":1,"805":2,"809":1,"812":1,"816":1,"820":1,"822":1,"827":1,"829":1,"831":2,"835":1,"839":1,"843":1,"847":1,"849":1,"856":1,"858":1,"860":1,"861":1,"863":2,"867":1,"871":1,"875":1,"879":1,"881":1,"888":1,"890":1,"891":2,"893":2,"897":1,"903":1,"907":1,"911":1,"913":1,"920":1,"922":1,"923":1,"925":1,"926":1,"928":2,"932":1,"938":1,"942":1,"946":1,"948":1,"955":1,"957":1,"959":1,"960":1,"962":2,"966":1,"972":1,"976":1,"980":1,"982":1,"989":1,"991":1,"993":1,"994":1,"996":2,"1000":1,"1006":1,"1010":1,"1014":1,"1016":1,"1023":1,"1025":1,"1027":1,"1028":1,"1030":2,"1034":1,"1040":1,"1044":1,"1048":1,"1050":1,"1057":1,"1059":1,"1061":1,"1062":1,"1064":2,"1068":1,"1074":1,"1078":1,"1082":1,"1084":1,"1091":1,"1093":1,"1094":1,"1095":1,"1096":1,"1098":2,"1102":1,"1108":1,"1112":1,"1116":1,"1118":1,"1125":1,"1127":1,"1128":1,"1129":1,"1130":1,"1132":2,"1136":1,"1142":1,"1146":1,"1150":1,"1152":1,"1159":1,"1161":1,"1163":1,"1164":1,"1166":2,"1170":1,"1176":1,"1180":1,"1184":1,"1186":1,"1192":1,"1193":2,"1194":2,"1197":2,"1199":1,"1200":5,"1203":1,"1204":1,"1205":2,"1208":2,"1214":1,"1215":1,"1217":1,"1219":2,"1223":1,"1229":1,"1233":1,"1237":1,"1239":1,"1247":1,"1248":1,"1250":1,"1252":1,"1265":1,"1266":1,"1271":1,"1272":1,"1276":1,"1281":1,"1283":2,"1290":2,"1292":3,"1293":1,"1294":2,"1296":1,"1297":2,"1298":1,"1299":1,"1303":1,"1305":1,"1306":1,"1312":1,"1313":1,"1314":1,"1315":2,"1319":2,"1320":5,"1321":1,"1329":1,"1330":1,"1331":1,"1332":3,"1336":1,"1342":2,"1344":1,"1347":1,"1348":5,"1349":1,"1350":1,"1352":1,"1354":5,"1356":3,"1357":1,"1359":2,"1361":1,"1363":1,"1364":1,"1366":3,"1367":4,"1368":3,"1376":1,"1377":1,"1379":1,"1381":1,"1388":3,"1389":2,"1392":1,"1398":1,"1404":1,"1407":2,"1409":2,"1410":1,"1412":1,"1413":3,"1415":3,"1416":2,"1417":16,"1420":1,"1421":1,"1422":7,"1423":4,"1425":2,"1427":1,"1428":1,"1429":2,"1430":1,"1431":2,"1434":1,"1435":1,"1438":1,"1441":1,"1442":3,"1444":1,"1446":2,"1447":5,"1448":3,"1449":1,"1450":1,"1452":2,"1453":1,"1454":2,"1455":3,"1458":1,"1459":1,"1460":1,"1462":3,"1463":3,"1464":4,"1465":2,"1466":2,"1467":5,"1468":1,"1470":3,"1471":6,"1472":11,"1473":1,"1479":1,"1480":1,"1481":1,"1484":1,"1485":6,"1488":1,"1490":6,"1491":4,"1492":5,"1493":7,"1498":3,"1499":1,"1502":1,"1503":7,"1510":2,"1518":3,"1520":1,"1524":1,"1526":1,"1527":3,"1528":3,"1529":2,"1532":1,"1533":1,"1534":1,"1535":3,"1537":3,"1538":6,"1539":1,"1540":1,"1541":1,"1545":2,"1546":3,"1548":1,"1549":1,"1550":1,"1551":1,"1554":1,"1556":1,"1557":1,"1558":2,"1577":1,"1578":1,"1589":4,"1591":3,"1593":2,"1594":3,"1595":1,"1597":2,"1601":1,"1602":2,"1605":2,"1606":1,"1608":1,"1609":3,"1610":1,"1612":2,"1614":1,"1616":1,"1620":3,"1622":2,"1623":2,"1624":1,"1627":1,"1628":1,"1631":1,"1633":3,"1635":1,"1636":1,"1639":2,"1640":2,"1645":1,"1647":1,"1648":1,"1661":2,"1662":4,"1663":1,"1664":1,"1665":3,"1666":1,"1667":2,"1668":2,"1670":3,"1672":1,"1675":1,"1676":2,"1681":2,"1683":1,"1685":2,"1687":1,"1688":1,"1689":1,"1697":1,"1702":2,"1704":1,"1706":1,"1707":1,"1708":1,"1717":1,"1721":1,"1730":1,"1732":1,"1734":1,"1736":1,"1738":1,"1739":1,"1740":1,"1765":1,"1766":2,"1768":1,"1770":2,"1772":1,"1774":4,"1776":2,"1779":3,"1781":16,"1782":1,"1783":2,"1784":1,"1785":1,"1786":7,"1788":2,"1790":1,"1794":1,"1795":2,"1800":2,"1801":4,"1802":3,"1803":4,"1804":1,"1838":3,"1839":1,"1840":1,"1841":1,"1844":1,"1846":6,"1847":2,"1855":2,"1865":1,"1867":1,"1913":2,"1916":2,"1926":1,"1935":3,"1936":2,"1937":1,"1938":7,"1939":2,"1940":1,"1945":1,"1946":1,"1947":2,"1948":1,"1949":2,"1952":1,"1953":4,"1956":1,"1957":2,"1959":1,"1960":2,"1961":2,"1964":1,"1966":1,"1967":1,"1968":3,"1969":2,"1973":2,"1976":3,"1977":2,"1978":1,"1979":2,"1980":1,"1981":1,"1982":2,"1983":4,"1985":4,"1986":4,"1990":14,"1992":2,"1993":2,"1994":2,"1999":1,"2008":1,"2011":1,"2014":2,"2016":2,"2040":1,"2044":1,"2048":2,"2054":2,"2057":1,"2065":1,"2069":1,"2071":1,"2072":1,"2074":2,"2075":1,"2076":1,"2077":1,"2080":1,"2082":6,"2083":2,"2086":3,"2089":1,"2091":2,"2094":2,"2096":4,"2097":1,"2107":1,"2109":1,"2173":2,"2176":2,"2178":2,"2180":1,"2181":2,"2183":3,"2189":2,"2191":1,"2201":12,"2205":1,"2206":1,"2207":1,"2213":1,"2219":1,"2221":1,"2226":2,"2228":1,"2232":1,"2234":1,"2247":1,"2248":1,"2249":1,"2250":1,"2259":1,"2260":1,"2261":1,"2263":1,"2265":2,"2270":1,"2271":4,"2272":2,"2273":5,"2274":3,"2275":13,"2276":19,"2277":4,"2278":17,"2283":1,"2284":1,"2285":1,"2286":2,"2287":1,"2288":2,"2289":1,"2292":3,"2294":3,"2297":1,"2298":1,"2300":10,"2303":1,"2308":1,"2309":8,"2310":5,"2313":2,"2316":1,"2317":6,"2318":1,"2319":8,"2320":3,"2322":1,"2325":2,"2327":1,"2329":1,"2330":3,"2331":8,"2344":1,"2345":1,"2346":1,"2375":1,"2377":2,"2378":2,"2379":5,"2381":1,"2382":1,"2383":1,"2384":1,"2385":1,"2386":1,"2387":2,"2388":1,"2389":1,"2390":2,"2391":2,"2393":1,"2394":1,"2395":2,"2396":2,"2397":2,"2398":1,"2400":3,"2402":3,"2404":3,"2405":3,"2407":2,"2409":2,"2410":5,"2411":1,"2413":1,"2414":4,"2416":1,"2417":3,"2418":21,"2422":2,"2423":2,"2425":1,"2427":4,"2428":5,"2429":1,"2431":2,"2434":1,"2435":2,"2437":3,"2441":2,"2444":1,"2450":3,"2451":1,"2453":4,"2454":2,"2455":2,"2456":5,"2457":3,"2460":3,"2464":1,"2466":14,"2467":1,"2468":1,"2469":3,"2470":1,"2471":1,"2473":1,"2474":1,"2477":1,"2481":1,"2482":3,"2490":1,"2499":2,"2500":1,"2501":2,"2502":2,"2503":3,"2504":2,"2505":2,"2506":1,"2508":2,"2509":2,"2510":1,"2551":1,"2554":3,"2556":1,"2558":1,"2560":1,"2561":1,"2562":5,"2563":1,"2564":4,"2565":1,"2566":1,"2568":3,"2569":3,"2571":1,"2572":2,"2573":3,"2574":1,"2575":2,"2576":7,"2580":1,"2582":1,"2583":1,"2584":2,"2585":3,"2586":1,"2587":2,"2589":1,"2590":4,"2595":1,"2602":1,"2603":1,"2604":1,"2607":1,"2608":2,"2610":1,"2612":5,"2614":2,"2616":9,"2618":1,"2621":1,"2622":1,"2628":5,"2629":2,"2632":3,"2633":2,"2634":4,"2635":1,"2637":4,"2639":5,"2640":3,"2641":1,"2650":3,"2651":3,"2652":1,"2653":2,"2658":2,"2659":1,"2663":1,"2664":1,"2667":2,"2668":1,"2669":1,"2671":1,"2672":1,"2673":2,"2676":6,"2677":1,"2678":3,"2680":4,"2682":1,"2683":6,"2684":2,"2685":8,"2686":5,"2687":4,"2690":3,"2691":1,"2694":1,"2695":2,"2700":1,"2702":1,"2703":2,"2704":1,"2707":2,"2709":3,"2711":1,"2712":2,"2714":2,"2715":1,"2719":1,"2720":1,"2721":1,"2725":2,"2726":1,"2733":4,"2742":1,"2743":2,"2744":5,"2745":2,"2746":5,"2747":2,"2748":2,"2749":1,"2750":3,"2751":2,"2759":3,"2760":1,"2761":3,"2762":8,"2763":1,"2764":7,"2767":4,"2769":5,"2770":1,"2771":5,"2775":2,"2777":1,"2778":1,"2779":1,"2780":3,"2781":5,"2782":1,"2783":1,"2784":1,"2785":1,"2787":1,"2789":1,"2793":1,"2794":5,"2795":3,"2835":1,"2851":1,"2852":2,"2860":1,"2869":3,"2882":1,"2884":3,"2886":2,"2889":8,"2890":3,"2891":3,"2893":5,"2895":1,"2899":1,"2901":1,"2902":1,"2905":1,"2906":1,"2910":6,"2911":2,"2912":4,"2913":7,"2914":1,"2918":1,"2919":7,"2920":5,"2921":2,"2922":3,"2923":1,"2924":4,"2925":5,"2926":3,"2928":4,"2930":7,"2933":1,"2934":2,"2935":3,"2936":3,"2937":5,"2938":2,"2939":3,"2940":4,"2943":1,"2944":1,"2949":4}}],["thank",{"2":{"2502":1}}],["thanks",{"2":{"235":1,"346":1,"609":1,"2410":1,"2447":1,"2472":1,"2748":1}}],["thankyou",{"2":{"116":1}}],["than",{"0":{"1355":1},"2":{"24":1,"46":1,"49":1,"50":1,"63":1,"112":1,"124":1,"152":1,"153":1,"166":1,"176":1,"194":1,"201":2,"213":1,"230":1,"234":1,"251":1,"323":1,"340":1,"433":4,"474":1,"477":1,"512":3,"514":1,"527":1,"535":1,"541":1,"561":1,"564":1,"570":2,"615":1,"619":1,"626":2,"629":1,"630":1,"655":1,"712":1,"754":1,"1192":2,"1199":1,"1247":1,"1296":1,"1297":1,"1330":1,"1376":1,"1379":1,"1413":1,"1423":1,"1425":1,"1426":1,"1427":3,"1442":1,"1446":1,"1455":1,"1463":1,"1470":1,"1490":1,"1491":1,"1498":1,"1499":1,"1503":2,"1518":2,"1529":1,"1532":1,"1533":2,"1538":1,"1593":2,"1609":1,"1670":1,"1681":1,"1766":1,"1781":1,"1801":1,"1803":1,"1923":1,"1953":2,"1954":1,"1965":1,"1986":1,"1988":1,"2009":1,"2011":1,"2180":1,"2183":1,"2207":1,"2260":1,"2275":1,"2293":1,"2295":1,"2309":4,"2310":1,"2318":1,"2394":2,"2396":1,"2417":2,"2418":1,"2427":1,"2441":1,"2454":1,"2466":1,"2490":1,"2499":1,"2559":1,"2569":1,"2576":2,"2589":1,"2604":1,"2622":1,"2634":1,"2650":1,"2651":1,"2666":1,"2712":1,"2745":1,"2746":2,"2747":1,"2751":1,"2764":1,"2769":1,"2772":1,"2776":1,"2834":1,"2911":1,"2913":4,"2918":2,"2919":1,"2921":2,"2924":1,"2948":1,"2949":1}}],["that",{"0":{"562":1,"563":1,"564":1,"1338":1,"1341":1,"1468":1,"2000":1},"1":{"1342":1},"2":{"0":3,"5":1,"6":2,"9":3,"13":2,"14":1,"19":3,"23":1,"24":1,"28":1,"31":2,"34":1,"36":2,"38":1,"39":3,"45":1,"46":1,"49":2,"50":3,"52":3,"70":1,"73":2,"75":1,"87":1,"90":1,"94":2,"95":1,"98":1,"99":1,"103":1,"110":1,"112":1,"114":3,"123":2,"124":2,"125":1,"126":1,"131":1,"132":2,"149":4,"152":2,"153":1,"154":1,"156":1,"163":1,"166":1,"175":1,"176":5,"179":2,"182":4,"185":1,"191":2,"194":1,"195":1,"199":3,"203":3,"209":1,"218":1,"224":1,"230":1,"233":1,"240":2,"243":1,"255":1,"256":1,"262":1,"263":1,"268":1,"275":1,"276":1,"297":1,"303":1,"306":1,"312":2,"314":1,"315":1,"317":2,"323":1,"327":1,"331":1,"338":1,"340":1,"362":1,"365":1,"367":1,"369":1,"374":1,"377":1,"379":3,"380":2,"386":2,"393":1,"396":1,"399":5,"403":3,"406":1,"407":2,"408":1,"409":1,"411":3,"412":2,"414":5,"415":1,"416":3,"417":1,"423":1,"429":2,"432":1,"443":1,"444":1,"458":1,"459":1,"461":1,"473":1,"474":2,"487":1,"490":1,"493":1,"494":4,"495":1,"496":1,"505":1,"511":1,"512":5,"513":1,"516":1,"519":1,"524":1,"525":1,"526":2,"530":1,"532":1,"533":2,"538":2,"539":1,"540":3,"541":2,"542":1,"547":1,"554":1,"555":1,"556":2,"557":1,"558":1,"559":1,"560":1,"561":1,"565":2,"568":3,"571":2,"578":2,"579":1,"582":1,"583":1,"584":1,"588":5,"589":2,"592":2,"593":2,"596":1,"597":3,"599":1,"610":1,"613":3,"615":6,"618":2,"619":4,"621":2,"623":1,"626":2,"627":1,"629":2,"630":2,"633":2,"634":1,"637":1,"643":2,"645":1,"646":2,"651":2,"656":2,"657":2,"658":1,"660":1,"661":2,"665":4,"668":1,"670":1,"673":1,"675":1,"681":1,"683":1,"690":2,"691":3,"694":2,"696":2,"709":1,"710":1,"711":2,"712":1,"713":2,"719":3,"721":1,"722":1,"723":1,"749":1,"750":1,"753":1,"754":1,"756":2,"759":1,"793":1,"799":3,"1192":2,"1196":1,"1197":1,"1198":1,"1200":1,"1203":3,"1204":3,"1206":1,"1209":1,"1213":1,"1283":1,"1290":1,"1291":1,"1312":1,"1313":1,"1315":1,"1316":1,"1318":1,"1327":1,"1336":3,"1338":1,"1342":2,"1343":1,"1348":1,"1349":1,"1350":1,"1356":2,"1363":1,"1364":3,"1366":1,"1367":4,"1368":2,"1376":3,"1382":1,"1383":1,"1389":1,"1398":3,"1406":1,"1407":1,"1409":3,"1410":2,"1413":6,"1415":1,"1416":3,"1417":11,"1418":1,"1419":3,"1421":1,"1422":4,"1423":1,"1424":1,"1427":5,"1428":3,"1429":1,"1433":1,"1438":2,"1440":1,"1446":5,"1447":1,"1448":2,"1449":1,"1451":1,"1452":1,"1455":1,"1464":6,"1466":1,"1467":2,"1470":8,"1471":4,"1472":14,"1477":1,"1481":1,"1484":2,"1485":4,"1486":1,"1487":1,"1491":1,"1492":4,"1497":2,"1499":1,"1500":1,"1501":2,"1502":1,"1503":4,"1510":1,"1514":1,"1516":1,"1517":1,"1518":1,"1522":1,"1523":1,"1524":1,"1526":1,"1527":2,"1528":2,"1532":1,"1533":3,"1538":2,"1539":1,"1542":1,"1544":1,"1545":1,"1551":1,"1554":1,"1558":1,"1589":5,"1590":1,"1591":3,"1592":2,"1593":2,"1597":1,"1600":3,"1605":1,"1612":2,"1615":1,"1621":1,"1623":1,"1628":1,"1630":1,"1633":1,"1651":1,"1661":3,"1662":2,"1664":3,"1666":2,"1671":2,"1681":4,"1684":1,"1686":1,"1687":1,"1738":1,"1740":1,"1769":1,"1771":1,"1772":1,"1773":1,"1774":1,"1776":1,"1781":5,"1784":1,"1785":1,"1786":2,"1787":3,"1788":4,"1789":1,"1790":1,"1791":2,"1794":1,"1795":2,"1801":2,"1802":1,"1835":1,"1836":5,"1838":1,"1846":3,"1849":2,"1919":1,"1923":1,"1930":1,"1934":2,"1937":1,"1948":1,"1952":2,"1953":1,"1954":3,"1957":1,"1965":2,"1967":2,"1968":2,"1974":1,"1976":2,"1983":3,"1984":1,"1985":4,"1986":2,"1987":1,"1988":2,"1990":1,"1992":3,"1994":1,"1998":1,"1999":4,"2007":1,"2008":2,"2009":1,"2011":2,"2012":1,"2013":4,"2014":3,"2016":1,"2048":1,"2054":1,"2057":1,"2065":1,"2069":1,"2070":3,"2072":1,"2074":2,"2082":3,"2085":4,"2086":2,"2087":1,"2178":1,"2179":2,"2187":1,"2189":1,"2198":1,"2209":1,"2210":1,"2211":1,"2216":1,"2218":1,"2219":1,"2222":1,"2258":1,"2260":1,"2261":1,"2263":1,"2264":1,"2265":3,"2266":1,"2267":1,"2270":1,"2272":5,"2273":1,"2275":3,"2276":1,"2277":1,"2278":8,"2279":1,"2280":2,"2281":1,"2287":1,"2289":1,"2290":3,"2291":1,"2292":1,"2294":1,"2295":3,"2296":1,"2297":1,"2298":3,"2300":1,"2301":1,"2303":1,"2308":2,"2309":6,"2310":6,"2317":12,"2318":1,"2319":5,"2320":1,"2329":1,"2331":1,"2375":1,"2377":1,"2379":1,"2381":2,"2382":1,"2383":3,"2384":1,"2388":1,"2391":1,"2393":2,"2398":2,"2405":2,"2407":2,"2409":1,"2410":3,"2411":1,"2413":1,"2414":3,"2415":1,"2417":9,"2418":3,"2419":1,"2422":1,"2423":1,"2424":1,"2425":1,"2427":2,"2428":6,"2429":1,"2430":3,"2431":3,"2434":4,"2435":1,"2437":2,"2439":1,"2447":2,"2452":1,"2453":6,"2454":2,"2456":1,"2459":1,"2460":2,"2461":4,"2462":1,"2463":1,"2464":2,"2466":13,"2471":1,"2474":3,"2482":1,"2484":1,"2485":1,"2487":1,"2488":1,"2489":1,"2496":1,"2498":1,"2501":1,"2502":1,"2503":1,"2508":2,"2509":2,"2518":1,"2553":1,"2559":1,"2560":1,"2562":1,"2563":1,"2564":2,"2566":1,"2567":1,"2569":1,"2570":2,"2572":4,"2573":1,"2575":1,"2576":1,"2581":1,"2582":1,"2583":1,"2584":2,"2585":6,"2586":2,"2587":1,"2589":3,"2591":4,"2592":1,"2593":1,"2598":1,"2599":2,"2601":1,"2603":1,"2611":1,"2612":1,"2616":3,"2617":1,"2619":4,"2622":1,"2626":1,"2627":1,"2628":3,"2629":3,"2630":1,"2633":2,"2634":9,"2635":2,"2636":1,"2637":2,"2639":4,"2640":9,"2650":2,"2652":1,"2653":2,"2657":1,"2658":1,"2659":1,"2665":2,"2668":1,"2673":1,"2674":1,"2676":2,"2677":1,"2678":1,"2679":2,"2680":3,"2681":1,"2682":1,"2683":2,"2684":1,"2685":2,"2686":1,"2687":2,"2690":1,"2694":1,"2695":2,"2701":1,"2702":1,"2705":1,"2706":1,"2707":1,"2709":4,"2710":1,"2711":1,"2716":2,"2717":2,"2721":3,"2722":1,"2725":1,"2730":1,"2744":1,"2745":1,"2746":6,"2747":5,"2749":6,"2750":1,"2753":1,"2761":6,"2762":1,"2763":2,"2764":5,"2765":3,"2766":1,"2767":1,"2769":2,"2771":3,"2772":2,"2775":1,"2777":1,"2781":1,"2785":1,"2787":1,"2792":1,"2794":4,"2795":3,"2796":1,"2797":1,"2803":1,"2805":1,"2807":2,"2808":1,"2810":1,"2814":1,"2815":1,"2817":2,"2820":1,"2821":1,"2822":1,"2825":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":2,"2832":1,"2833":2,"2834":1,"2840":2,"2843":1,"2844":1,"2845":1,"2847":1,"2852":1,"2869":1,"2871":1,"2878":1,"2886":3,"2889":4,"2890":4,"2891":1,"2892":2,"2894":1,"2901":2,"2902":2,"2906":1,"2907":1,"2909":1,"2910":1,"2912":12,"2913":3,"2914":1,"2918":1,"2919":2,"2920":1,"2921":2,"2922":1,"2925":3,"2926":1,"2928":4,"2931":3,"2933":1,"2934":3,"2936":4,"2937":4,"2939":2,"2940":1,"2942":1,"2943":3,"2944":9,"2945":1,"2947":5,"2949":3}}],["theory",{"2":{"2666":1}}],["theories",{"2":{"2296":1}}],["thekey",{"2":{"207":4,"211":1}}],["thermal",{"2":{"191":1}}],["thereafter",{"2":{"1936":1}}],["thereby",{"2":{"69":1}}],["therefore",{"2":{"28":1,"439":1,"690":2,"762":1,"764":1,"799":2,"1193":1,"1196":1,"1199":1,"1205":1,"1681":1,"1953":1,"1959":1,"2044":1,"2390":1,"2930":1,"2943":1}}],["there",{"0":{"605":1,"1343":1,"1499":1,"2932":1},"2":{"28":1,"99":1,"123":1,"131":1,"152":1,"154":1,"163":1,"166":1,"175":1,"189":1,"198":1,"201":1,"213":1,"224":1,"233":1,"238":1,"268":1,"276":1,"279":1,"288":1,"348":1,"353":1,"368":1,"377":1,"399":1,"403":1,"411":1,"415":1,"422":1,"473":1,"487":1,"491":1,"494":1,"508":1,"513":1,"544":1,"555":1,"564":1,"568":1,"581":1,"584":1,"593":1,"596":1,"597":1,"607":1,"619":3,"633":1,"651":1,"657":1,"660":1,"668":1,"685":1,"709":1,"714":1,"715":1,"719":1,"749":1,"750":3,"752":1,"755":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1206":1,"1219":1,"1282":1,"1296":1,"1297":1,"1311":1,"1336":3,"1337":3,"1346":1,"1350":1,"1351":1,"1364":2,"1376":2,"1395":1,"1409":2,"1416":2,"1428":2,"1444":1,"1448":1,"1451":1,"1462":1,"1481":1,"1484":1,"1485":1,"1487":1,"1498":2,"1502":1,"1503":2,"1510":2,"1517":1,"1518":1,"1522":2,"1524":1,"1529":1,"1538":1,"1593":1,"1612":1,"1615":1,"1620":1,"1621":1,"1623":1,"1627":1,"1647":1,"1662":2,"1664":1,"1671":1,"1676":1,"1681":1,"1685":1,"1787":1,"1794":1,"1835":1,"1855":1,"1919":1,"1923":1,"1937":2,"1944":1,"1952":1,"1954":1,"1964":1,"1965":1,"1968":1,"1984":1,"1987":1,"2002":1,"2007":1,"2014":1,"2016":1,"2037":1,"2044":1,"2079":1,"2094":1,"2179":1,"2183":1,"2198":1,"2210":1,"2211":1,"2220":1,"2261":1,"2270":1,"2272":1,"2275":1,"2276":1,"2278":1,"2280":1,"2284":1,"2290":1,"2292":1,"2295":1,"2300":1,"2309":1,"2310":1,"2316":1,"2317":1,"2325":2,"2326":1,"2381":1,"2382":1,"2407":1,"2410":1,"2416":1,"2418":1,"2422":1,"2424":1,"2425":1,"2427":1,"2428":1,"2431":1,"2433":1,"2435":1,"2439":1,"2450":1,"2481":1,"2482":1,"2499":1,"2501":1,"2560":1,"2568":1,"2569":1,"2572":2,"2573":2,"2574":1,"2585":1,"2586":1,"2601":1,"2603":1,"2614":1,"2617":1,"2619":2,"2652":5,"2657":1,"2659":1,"2662":1,"2665":1,"2672":1,"2677":1,"2678":2,"2680":1,"2710":1,"2716":1,"2720":1,"2722":1,"2742":1,"2743":1,"2744":1,"2747":1,"2748":1,"2760":1,"2763":1,"2764":1,"2765":1,"2766":2,"2769":1,"2771":1,"2772":1,"2792":1,"2794":1,"2886":1,"2887":1,"2888":1,"2889":2,"2890":1,"2892":1,"2895":3,"2896":1,"2897":3,"2902":1,"2930":2,"2932":2,"2936":1,"2941":3,"2943":1,"2944":2,"2946":1,"2947":1}}],["thedogkeyboard",{"2":{"143":2,"211":1}}],["they",{"2":{"124":1,"125":2,"185":2,"188":1,"196":1,"198":1,"203":1,"243":1,"265":1,"273":2,"276":1,"283":3,"331":1,"366":1,"370":2,"396":1,"414":1,"472":1,"475":1,"483":1,"489":1,"491":1,"494":1,"505":1,"512":1,"514":1,"525":1,"575":1,"578":1,"588":1,"597":1,"618":1,"633":1,"640":1,"661":1,"688":1,"697":1,"720":1,"799":1,"1248":1,"1351":1,"1364":2,"1368":1,"1417":1,"1427":1,"1448":2,"1514":1,"1532":2,"1533":4,"1542":1,"1597":1,"1611":1,"1612":1,"1616":1,"1628":1,"1661":2,"1662":1,"1665":1,"1787":1,"1788":1,"1846":2,"1983":1,"1986":1,"1999":1,"2006":1,"2016":2,"2048":2,"2056":1,"2072":1,"2082":2,"2181":1,"2191":1,"2261":1,"2265":1,"2278":1,"2300":2,"2308":2,"2310":2,"2317":1,"2320":1,"2331":1,"2374":1,"2395":1,"2413":1,"2429":2,"2434":1,"2437":1,"2454":1,"2460":1,"2466":1,"2499":1,"2502":1,"2553":1,"2561":1,"2565":1,"2566":2,"2567":1,"2579":1,"2589":1,"2603":2,"2607":1,"2666":1,"2669":2,"2691":1,"2711":1,"2717":1,"2720":1,"2733":1,"2734":1,"2742":1,"2744":2,"2746":4,"2747":2,"2751":1,"2763":4,"2764":2,"2767":1,"2794":1,"2796":1,"2800":1,"2884":1,"2886":1,"2889":2,"2909":1,"2912":1,"2928":1,"2936":1,"2945":1}}],["the60",{"2":{"102":3}}],["then",{"0":{"2315":1},"2":{"49":1,"70":1,"120":2,"152":1,"235":1,"289":1,"353":1,"366":1,"383":1,"393":1,"414":1,"416":1,"491":1,"559":1,"564":1,"565":1,"569":1,"586":1,"593":1,"599":2,"600":1,"618":1,"647":1,"656":1,"660":1,"666":1,"672":1,"686":1,"696":1,"698":1,"712":1,"720":1,"749":1,"761":1,"764":1,"799":1,"1246":1,"1248":2,"1267":1,"1284":1,"1297":1,"1318":1,"1332":1,"1336":1,"1338":2,"1339":1,"1348":1,"1363":2,"1364":1,"1376":1,"1407":1,"1409":1,"1410":1,"1415":1,"1417":2,"1422":1,"1446":1,"1448":2,"1455":1,"1457":1,"1462":1,"1464":1,"1470":2,"1471":2,"1472":1,"1482":1,"1485":1,"1492":2,"1498":5,"1499":1,"1500":1,"1503":2,"1525":1,"1527":1,"1539":2,"1594":3,"1598":1,"1602":1,"1614":1,"1618":1,"1622":2,"1624":1,"1628":1,"1640":1,"1648":1,"1661":1,"1666":1,"1667":1,"1678":2,"1681":3,"1738":1,"1762":1,"1763":1,"1768":1,"1781":1,"1784":2,"1785":3,"1786":3,"1787":1,"1797":1,"1849":9,"1851":1,"1855":1,"1939":1,"1945":1,"1958":1,"1962":1,"1965":1,"1968":1,"1985":1,"1992":1,"1999":2,"2000":1,"2058":1,"2059":2,"2065":1,"2066":1,"2073":1,"2076":1,"2085":15,"2086":1,"2090":1,"2094":1,"2096":1,"2179":1,"2210":1,"2222":1,"2226":2,"2260":1,"2268":1,"2269":1,"2271":1,"2272":1,"2277":2,"2278":1,"2284":1,"2300":2,"2309":2,"2310":3,"2312":1,"2315":1,"2317":2,"2319":3,"2329":2,"2330":2,"2331":3,"2344":4,"2385":1,"2387":1,"2392":1,"2393":1,"2394":1,"2395":1,"2398":1,"2399":1,"2410":1,"2416":2,"2417":2,"2418":1,"2427":2,"2432":1,"2450":1,"2453":1,"2466":1,"2474":1,"2483":1,"2504":1,"2508":1,"2562":1,"2567":2,"2616":1,"2620":1,"2632":1,"2633":1,"2634":4,"2635":1,"2637":1,"2639":1,"2640":2,"2641":1,"2650":2,"2663":1,"2669":1,"2678":3,"2683":1,"2704":1,"2746":2,"2763":11,"2764":3,"2767":2,"2774":2,"2775":1,"2800":1,"2834":1,"2889":1,"2895":1,"2910":1,"2912":3,"2913":2,"2919":3,"2920":2,"2921":2,"2924":1,"2925":2,"2928":1,"2931":1,"2934":1,"2937":1,"2941":1,"2944":1,"2948":2,"2949":3}}],["themself",{"2":{"414":1}}],["themselves",{"2":{"233":1,"317":1,"414":1,"588":1,"1620":1,"1622":1,"2603":1,"2703":1,"2794":1}}],["theme",{"2":{"233":1}}],["them",{"2":{"2":1,"154":1,"164":1,"186":1,"202":1,"204":1,"221":1,"234":2,"272":1,"273":1,"284":1,"366":1,"396":1,"435":2,"512":2,"514":2,"528":1,"530":1,"538":1,"561":1,"586":1,"596":1,"605":1,"608":1,"613":1,"629":2,"677":1,"681":1,"721":1,"1247":1,"1363":1,"1380":1,"1396":1,"1410":1,"1425":1,"1426":1,"1427":1,"1428":1,"1448":1,"1457":1,"1462":1,"1463":1,"1470":1,"1471":1,"1472":1,"1485":1,"1503":1,"1541":1,"1556":1,"1594":1,"1597":1,"1606":1,"1612":1,"1613":1,"1661":1,"1676":1,"1843":1,"1923":2,"1935":1,"1961":1,"1974":1,"2004":1,"2016":1,"2048":1,"2057":1,"2071":1,"2079":1,"2178":2,"2189":2,"2259":2,"2260":1,"2261":1,"2265":1,"2298":1,"2315":1,"2319":1,"2325":1,"2327":1,"2330":1,"2382":3,"2410":1,"2418":2,"2426":1,"2427":1,"2428":1,"2429":1,"2435":1,"2447":1,"2458":2,"2461":1,"2462":1,"2463":1,"2483":1,"2498":1,"2503":1,"2552":1,"2561":1,"2567":2,"2568":1,"2574":1,"2575":1,"2576":1,"2586":1,"2589":2,"2600":1,"2602":1,"2609":1,"2612":2,"2627":1,"2632":1,"2634":3,"2637":1,"2640":2,"2665":1,"2679":1,"2691":2,"2702":1,"2720":1,"2747":1,"2764":1,"2800":1,"2884":1,"2889":1,"2894":1,"2902":1,"2909":1,"2919":1,"2932":1,"2941":1,"2944":1,"2949":1}}],["the",{"0":{"23":1,"42":1,"56":1,"377":1,"385":1,"386":1,"387":1,"396":1,"397":1,"398":1,"401":1,"411":1,"412":1,"499":1,"560":1,"571":1,"606":1,"617":1,"621":1,"630":1,"668":1,"1203":1,"1204":1,"1205":1,"1300":1,"1337":1,"1346":1,"1350":1,"1643":3,"1644":2,"1788":1,"1794":1,"1796":1,"2000":1,"2006":1,"2038":1,"2057":1,"2058":1,"2206":2,"2250":1,"2255":1,"2297":1,"2300":1,"2416":1,"2422":1,"2423":1,"2425":1,"2428":1,"2429":1,"2430":1,"2431":1,"2433":1,"2470":1,"2471":1,"2472":1,"2473":1,"2502":1,"2503":1,"2572":1,"2586":1,"2608":1,"2614":1,"2616":1,"2636":1,"2660":1,"2662":1,"2729":1,"2759":1,"2771":1,"2772":1,"2774":1,"2794":1,"2795":1,"2796":1,"2850":1,"2888":1,"2931":2,"2935":1,"2945":1,"2946":1},"1":{"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"402":1,"561":1,"562":1,"563":1,"564":1,"565":1,"566":1,"567":1,"568":1,"569":1,"570":1,"572":1,"573":1,"574":1,"575":1,"631":1,"632":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"2256":1,"2257":1,"2258":1,"2259":1,"2260":1,"2424":1,"2426":1,"2427":1,"2428":1,"2429":1,"2431":1,"2503":1,"2573":1,"2574":1,"2730":1,"2731":1,"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1},"2":{"0":1,"1":1,"2":1,"3":2,"4":2,"5":3,"6":3,"7":3,"8":1,"10":3,"11":1,"12":1,"13":3,"14":5,"15":2,"16":3,"18":1,"19":1,"21":4,"22":3,"23":2,"24":2,"25":4,"27":2,"28":5,"30":4,"31":13,"32":1,"33":3,"34":12,"35":1,"36":7,"37":1,"43":3,"45":7,"46":2,"49":24,"50":18,"51":1,"55":5,"56":3,"58":1,"60":1,"62":3,"65":3,"67":4,"69":2,"70":17,"73":3,"74":3,"76":1,"83":3,"86":5,"87":4,"88":2,"90":4,"92":1,"93":2,"94":2,"99":4,"100":1,"102":1,"103":6,"104":2,"105":3,"107":4,"110":1,"112":1,"113":3,"114":13,"116":3,"118":5,"119":8,"120":3,"122":1,"123":3,"124":8,"125":8,"126":5,"127":2,"128":2,"130":1,"131":4,"132":2,"134":5,"137":1,"138":1,"140":1,"142":1,"143":3,"146":1,"149":10,"152":5,"153":4,"154":1,"156":6,"157":6,"158":4,"159":1,"160":6,"163":6,"164":4,"166":4,"167":2,"168":1,"169":3,"172":2,"173":4,"174":5,"175":6,"176":12,"181":1,"182":13,"184":3,"185":9,"186":2,"187":1,"188":1,"189":4,"191":10,"194":23,"195":6,"196":6,"197":2,"198":3,"199":7,"201":8,"202":7,"203":6,"204":3,"206":5,"209":5,"210":3,"211":11,"213":6,"215":1,"218":3,"219":1,"220":2,"221":2,"222":9,"224":3,"228":6,"229":2,"230":4,"231":1,"232":4,"233":5,"234":5,"235":3,"236":3,"238":1,"240":9,"243":4,"244":1,"245":4,"246":3,"247":1,"248":3,"249":4,"251":5,"254":6,"255":16,"256":3,"257":1,"258":1,"259":4,"262":6,"263":7,"264":1,"265":14,"266":4,"268":3,"271":6,"272":4,"273":7,"274":1,"275":4,"276":4,"277":2,"279":4,"282":1,"283":5,"284":4,"285":2,"288":6,"289":5,"292":1,"293":5,"297":6,"298":2,"301":1,"302":2,"303":5,"304":1,"305":5,"306":2,"307":8,"308":2,"312":11,"313":1,"314":5,"315":2,"316":2,"320":12,"323":6,"326":1,"328":2,"331":5,"332":1,"333":1,"336":1,"338":4,"339":4,"340":2,"341":1,"344":16,"346":1,"348":1,"353":4,"354":1,"356":1,"364":1,"365":2,"366":6,"367":7,"368":1,"369":5,"370":3,"371":1,"372":1,"373":1,"374":3,"375":3,"376":3,"377":8,"378":6,"379":8,"380":2,"381":1,"382":2,"383":2,"384":2,"385":3,"386":4,"387":2,"389":2,"392":3,"393":24,"394":2,"396":11,"397":10,"398":6,"399":4,"401":1,"403":20,"404":1,"408":3,"409":4,"411":8,"412":13,"413":1,"414":6,"415":1,"416":4,"417":2,"418":1,"419":2,"422":3,"423":5,"425":2,"426":3,"429":8,"430":9,"431":2,"432":2,"433":12,"434":1,"436":2,"437":3,"439":1,"441":1,"442":1,"443":2,"444":2,"446":2,"447":2,"448":2,"449":2,"450":1,"452":3,"453":3,"454":1,"455":3,"458":1,"459":1,"460":5,"461":4,"462":2,"463":2,"465":1,"466":2,"467":2,"468":2,"469":3,"470":2,"472":2,"473":1,"474":1,"475":4,"476":2,"477":1,"482":1,"484":3,"485":5,"487":5,"488":3,"489":23,"490":3,"491":3,"492":7,"493":2,"494":14,"495":6,"496":5,"497":1,"498":1,"499":3,"500":2,"501":1,"504":1,"505":1,"507":2,"509":2,"510":3,"511":3,"512":32,"513":7,"514":2,"516":4,"517":1,"521":9,"522":1,"523":1,"524":2,"525":2,"526":1,"527":2,"529":3,"530":1,"531":1,"533":1,"535":1,"538":1,"539":1,"540":3,"541":1,"542":6,"543":1,"544":3,"546":2,"552":2,"554":2,"555":9,"556":2,"557":1,"558":1,"559":1,"560":3,"561":31,"562":1,"563":3,"564":25,"565":14,"567":1,"568":17,"569":11,"570":35,"571":2,"572":11,"573":1,"574":15,"575":9,"576":4,"578":3,"579":4,"580":5,"581":11,"582":1,"583":1,"584":2,"585":2,"586":5,"588":19,"589":13,"591":2,"592":5,"593":9,"594":2,"595":1,"596":6,"597":3,"598":1,"599":6,"600":5,"601":3,"604":3,"605":2,"607":1,"609":3,"610":1,"611":1,"613":30,"615":13,"616":6,"617":2,"618":8,"619":11,"620":1,"621":4,"622":3,"623":1,"624":2,"625":8,"627":11,"628":3,"629":2,"630":7,"631":2,"632":3,"633":8,"634":3,"635":2,"637":3,"639":13,"640":2,"641":3,"643":2,"645":2,"646":5,"647":6,"648":2,"651":15,"655":1,"656":18,"657":18,"658":3,"659":2,"660":3,"661":1,"665":4,"666":5,"668":1,"669":5,"670":1,"671":1,"672":1,"673":5,"675":3,"676":2,"677":2,"681":1,"682":1,"683":8,"684":11,"685":2,"686":2,"688":2,"690":14,"691":5,"693":8,"694":12,"696":12,"697":1,"698":6,"699":11,"701":1,"702":2,"703":5,"704":1,"705":3,"706":2,"707":1,"708":1,"709":10,"710":27,"711":13,"712":18,"713":7,"714":7,"715":1,"716":5,"717":8,"718":5,"719":9,"720":11,"721":15,"722":6,"723":2,"725":4,"726":11,"727":3,"728":2,"729":4,"731":1,"732":8,"733":1,"734":3,"735":2,"736":6,"737":1,"738":3,"739":2,"740":5,"742":2,"744":11,"745":1,"746":10,"748":3,"749":22,"750":10,"751":3,"752":5,"753":7,"754":29,"755":17,"756":13,"757":7,"758":4,"759":18,"760":1,"761":4,"762":12,"763":6,"764":18,"765":1,"766":1,"768":3,"769":1,"770":7,"771":1,"772":1,"773":7,"774":1,"775":1,"776":6,"777":1,"778":1,"779":9,"780":1,"781":1,"782":8,"783":1,"784":1,"785":8,"786":1,"787":1,"788":7,"789":1,"790":1,"791":7,"792":1,"793":2,"794":4,"795":1,"797":3,"798":4,"799":11,"801":4,"802":5,"803":1,"804":2,"805":7,"807":1,"808":8,"809":1,"810":2,"811":2,"812":2,"813":6,"814":1,"815":3,"816":2,"817":4,"818":1,"819":1,"820":2,"821":6,"822":2,"823":4,"824":2,"825":2,"827":4,"828":9,"829":5,"830":2,"831":7,"833":1,"834":10,"835":1,"836":1,"837":2,"838":3,"839":2,"840":6,"841":1,"842":3,"843":2,"844":4,"845":1,"846":1,"847":2,"848":6,"849":2,"850":4,"851":2,"852":1,"853":2,"854":1,"856":4,"857":14,"858":5,"859":2,"860":6,"861":4,"862":2,"863":10,"865":1,"866":10,"867":1,"868":1,"869":2,"870":3,"871":2,"872":6,"873":1,"874":3,"875":2,"876":4,"877":1,"878":1,"879":2,"880":9,"881":2,"882":5,"883":2,"884":1,"885":2,"886":1,"888":4,"889":9,"890":5,"891":3,"892":2,"893":10,"895":1,"896":10,"897":1,"898":1,"899":2,"900":3,"901":2,"902":2,"903":2,"904":6,"905":1,"906":3,"907":2,"908":4,"909":1,"910":1,"911":2,"912":6,"913":2,"914":4,"915":2,"916":1,"917":2,"918":1,"920":4,"921":18,"922":5,"923":5,"924":2,"925":6,"926":5,"927":2,"928":10,"930":1,"931":10,"932":1,"933":1,"934":2,"935":3,"936":2,"937":2,"938":2,"939":6,"940":1,"941":3,"942":2,"943":4,"944":1,"945":1,"946":2,"947":6,"948":2,"949":4,"950":2,"951":1,"952":2,"953":1,"955":4,"956":14,"957":5,"958":2,"959":6,"960":5,"961":2,"962":10,"964":1,"965":10,"966":1,"967":1,"968":2,"969":3,"970":2,"971":2,"972":2,"973":6,"974":1,"975":3,"976":2,"977":4,"978":1,"979":1,"980":2,"981":6,"982":2,"983":4,"984":2,"985":1,"986":2,"987":1,"989":4,"990":14,"991":5,"992":2,"993":6,"994":5,"995":2,"996":10,"998":1,"999":10,"1000":1,"1001":1,"1002":2,"1003":3,"1004":2,"1005":2,"1006":2,"1007":6,"1008":1,"1009":3,"1010":2,"1011":4,"1012":1,"1013":1,"1014":2,"1015":6,"1016":2,"1017":4,"1018":2,"1019":1,"1020":2,"1021":1,"1023":4,"1024":16,"1025":5,"1026":2,"1027":6,"1028":5,"1029":2,"1030":10,"1032":1,"1033":10,"1034":1,"1035":1,"1036":2,"1037":3,"1038":2,"1039":2,"1040":2,"1041":6,"1042":1,"1043":3,"1044":2,"1045":4,"1046":1,"1047":1,"1048":2,"1049":6,"1050":2,"1051":4,"1052":2,"1053":1,"1054":2,"1055":1,"1057":4,"1058":16,"1059":5,"1060":2,"1061":6,"1062":5,"1063":2,"1064":10,"1066":1,"1067":10,"1068":1,"1069":1,"1070":2,"1071":3,"1072":2,"1073":2,"1074":2,"1075":6,"1076":1,"1077":3,"1078":2,"1079":4,"1080":1,"1081":1,"1082":2,"1083":9,"1084":2,"1085":5,"1086":2,"1087":1,"1088":2,"1089":1,"1091":4,"1092":18,"1093":5,"1094":5,"1095":6,"1096":5,"1097":2,"1098":10,"1100":1,"1101":10,"1102":1,"1103":1,"1104":2,"1105":3,"1106":2,"1107":2,"1108":2,"1109":6,"1110":1,"1111":3,"1112":2,"1113":4,"1114":1,"1115":1,"1116":2,"1117":9,"1118":2,"1119":5,"1120":2,"1121":1,"1122":2,"1123":1,"1125":4,"1126":18,"1127":5,"1128":5,"1129":6,"1130":5,"1131":2,"1132":10,"1134":1,"1135":10,"1136":1,"1137":1,"1138":2,"1139":3,"1140":2,"1141":2,"1142":2,"1143":6,"1144":1,"1145":3,"1146":2,"1147":4,"1148":1,"1149":1,"1150":2,"1151":9,"1152":2,"1153":5,"1154":2,"1155":1,"1156":2,"1157":1,"1159":4,"1160":16,"1161":5,"1162":2,"1163":6,"1164":5,"1165":2,"1166":10,"1168":1,"1169":10,"1170":1,"1171":2,"1172":2,"1173":3,"1174":2,"1175":2,"1176":2,"1177":6,"1178":1,"1179":3,"1180":2,"1181":4,"1182":1,"1183":1,"1184":2,"1185":9,"1186":2,"1187":5,"1188":2,"1189":1,"1190":2,"1191":1,"1192":4,"1193":5,"1194":3,"1195":4,"1196":1,"1197":8,"1198":10,"1199":3,"1200":23,"1201":10,"1203":16,"1204":17,"1205":13,"1207":4,"1208":1,"1209":4,"1213":3,"1215":4,"1216":9,"1217":5,"1218":2,"1219":10,"1221":1,"1222":10,"1223":1,"1224":1,"1225":2,"1226":3,"1227":2,"1228":2,"1229":2,"1230":6,"1231":1,"1232":3,"1233":2,"1234":4,"1235":1,"1236":1,"1237":2,"1238":6,"1239":2,"1240":4,"1241":2,"1242":1,"1243":2,"1244":1,"1245":1,"1246":4,"1247":4,"1248":14,"1250":2,"1252":11,"1253":3,"1254":1,"1255":1,"1256":1,"1257":1,"1258":3,"1259":1,"1260":3,"1261":1,"1262":1,"1263":2,"1264":1,"1265":3,"1266":2,"1267":4,"1268":3,"1269":12,"1271":2,"1272":2,"1274":1,"1276":3,"1278":3,"1280":2,"1281":1,"1283":4,"1284":6,"1285":13,"1286":7,"1287":8,"1288":7,"1290":4,"1291":6,"1292":6,"1293":2,"1294":6,"1295":3,"1296":3,"1297":9,"1298":5,"1299":10,"1300":5,"1301":2,"1302":3,"1303":11,"1305":1,"1306":2,"1307":5,"1308":1,"1309":3,"1310":2,"1311":3,"1312":4,"1313":5,"1314":1,"1315":3,"1316":4,"1318":6,"1319":1,"1320":3,"1322":5,"1325":1,"1327":1,"1329":2,"1330":4,"1331":3,"1332":4,"1335":1,"1336":2,"1337":1,"1338":3,"1339":1,"1341":1,"1343":5,"1346":2,"1348":15,"1349":3,"1350":3,"1351":4,"1352":4,"1353":1,"1355":1,"1356":8,"1359":1,"1360":1,"1361":1,"1362":9,"1363":5,"1364":24,"1365":2,"1366":7,"1367":23,"1368":1,"1375":1,"1376":14,"1377":1,"1378":1,"1381":1,"1383":8,"1387":1,"1388":5,"1389":1,"1390":3,"1391":1,"1392":4,"1393":1,"1395":2,"1396":3,"1397":1,"1398":5,"1399":1,"1400":1,"1401":1,"1403":3,"1404":1,"1405":1,"1406":1,"1407":8,"1409":10,"1410":17,"1412":1,"1413":9,"1414":2,"1415":5,"1416":4,"1417":39,"1418":5,"1419":7,"1420":2,"1421":3,"1422":16,"1423":13,"1424":1,"1425":6,"1426":2,"1427":10,"1428":19,"1429":1,"1430":4,"1431":9,"1432":4,"1433":13,"1434":8,"1435":1,"1436":1,"1438":3,"1439":3,"1441":1,"1442":1,"1444":3,"1446":19,"1447":7,"1448":8,"1450":1,"1451":3,"1452":1,"1453":2,"1454":3,"1455":4,"1456":1,"1457":2,"1460":1,"1462":6,"1463":8,"1464":10,"1465":8,"1466":7,"1467":9,"1469":1,"1470":10,"1471":7,"1472":20,"1474":3,"1475":5,"1476":1,"1477":5,"1478":2,"1479":1,"1480":5,"1481":4,"1482":4,"1483":4,"1484":6,"1485":13,"1486":12,"1487":5,"1488":5,"1489":3,"1490":9,"1491":1,"1492":16,"1493":18,"1495":5,"1497":3,"1498":11,"1499":6,"1500":1,"1501":2,"1502":2,"1503":12,"1504":1,"1505":1,"1509":1,"1510":3,"1514":1,"1517":10,"1518":9,"1519":1,"1521":6,"1522":9,"1523":3,"1525":11,"1526":2,"1527":13,"1528":4,"1529":7,"1530":4,"1532":4,"1533":6,"1534":10,"1535":8,"1537":4,"1538":42,"1539":14,"1540":1,"1541":6,"1542":1,"1543":5,"1544":16,"1545":9,"1546":11,"1548":3,"1549":4,"1550":2,"1551":4,"1553":4,"1554":7,"1556":9,"1557":5,"1558":11,"1560":1,"1561":1,"1562":1,"1564":1,"1565":1,"1566":1,"1567":1,"1568":1,"1569":1,"1570":1,"1571":1,"1575":1,"1577":1,"1578":1,"1579":2,"1580":1,"1583":2,"1586":2,"1588":2,"1589":11,"1590":9,"1591":5,"1592":3,"1593":12,"1594":7,"1595":4,"1597":3,"1598":2,"1600":7,"1601":1,"1602":5,"1603":2,"1604":2,"1605":4,"1606":3,"1608":4,"1609":10,"1610":5,"1611":3,"1612":22,"1613":3,"1614":6,"1615":5,"1616":3,"1617":5,"1618":1,"1619":5,"1620":17,"1621":9,"1622":14,"1623":2,"1624":6,"1625":27,"1626":1,"1627":4,"1628":11,"1630":15,"1631":2,"1632":1,"1633":11,"1634":9,"1635":1,"1636":1,"1637":1,"1638":2,"1639":6,"1640":2,"1641":1,"1643":5,"1644":3,"1645":3,"1646":1,"1647":11,"1648":8,"1650":2,"1651":13,"1652":2,"1653":2,"1654":2,"1655":2,"1656":2,"1657":2,"1658":2,"1659":3,"1660":4,"1661":19,"1662":18,"1663":6,"1664":2,"1665":3,"1666":11,"1667":8,"1668":7,"1669":4,"1670":4,"1671":1,"1672":4,"1673":1,"1675":2,"1678":7,"1681":41,"1682":2,"1683":1,"1684":2,"1685":8,"1686":1,"1687":3,"1688":1,"1689":3,"1690":6,"1691":2,"1692":2,"1693":2,"1694":2,"1695":2,"1698":1,"1699":13,"1701":1,"1702":6,"1704":2,"1705":2,"1706":1,"1707":2,"1708":2,"1709":2,"1710":1,"1711":3,"1712":2,"1713":9,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1720":8,"1722":8,"1723":1,"1724":1,"1725":1,"1726":3,"1727":1,"1728":3,"1729":5,"1730":6,"1731":1,"1732":4,"1733":1,"1734":1,"1735":1,"1736":3,"1737":1,"1738":3,"1739":4,"1740":2,"1741":6,"1742":16,"1743":1,"1746":2,"1747":5,"1749":5,"1750":2,"1751":2,"1752":2,"1753":2,"1754":2,"1755":2,"1756":1,"1757":1,"1758":2,"1759":3,"1760":2,"1761":1,"1762":1,"1763":1,"1764":2,"1765":5,"1766":5,"1768":1,"1769":2,"1771":1,"1774":4,"1776":4,"1777":2,"1779":4,"1781":27,"1782":10,"1783":1,"1784":17,"1785":12,"1786":13,"1787":3,"1788":9,"1789":9,"1790":3,"1791":15,"1792":1,"1793":2,"1794":4,"1795":9,"1796":1,"1797":2,"1798":7,"1800":4,"1801":3,"1802":17,"1803":5,"1804":3,"1805":1,"1807":1,"1808":1,"1809":1,"1810":2,"1811":1,"1812":2,"1813":1,"1814":1,"1815":4,"1816":1,"1817":2,"1818":3,"1819":1,"1820":2,"1821":1,"1822":1,"1823":2,"1824":2,"1825":1,"1826":2,"1827":3,"1828":1,"1829":2,"1830":4,"1831":1,"1832":2,"1833":5,"1834":1,"1835":6,"1836":15,"1837":6,"1838":6,"1840":6,"1841":4,"1842":2,"1843":5,"1844":3,"1845":5,"1846":34,"1847":3,"1848":4,"1849":5,"1850":10,"1851":6,"1852":13,"1853":2,"1855":4,"1863":1,"1865":3,"1866":2,"1867":3,"1868":1,"1869":1,"1870":1,"1871":1,"1872":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":2,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":1,"1891":1,"1892":1,"1893":1,"1894":1,"1895":1,"1896":1,"1897":1,"1898":1,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":1,"1905":1,"1906":1,"1907":1,"1908":1,"1910":1,"1911":1,"1912":1,"1913":4,"1915":1,"1916":4,"1917":1,"1919":2,"1921":1,"1922":1,"1923":4,"1926":3,"1930":1,"1932":1,"1933":1,"1934":10,"1935":14,"1936":23,"1937":13,"1938":7,"1939":11,"1940":4,"1944":2,"1945":5,"1946":5,"1947":18,"1948":3,"1949":17,"1950":2,"1951":14,"1952":28,"1953":18,"1954":84,"1956":2,"1957":3,"1958":4,"1959":5,"1960":5,"1961":7,"1962":17,"1964":4,"1965":1,"1966":12,"1967":11,"1968":14,"1969":3,"1970":8,"1973":4,"1974":25,"1975":8,"1976":2,"1977":4,"1978":9,"1979":7,"1980":12,"1981":12,"1982":7,"1983":26,"1984":4,"1985":13,"1986":11,"1987":12,"1988":13,"1989":11,"1990":23,"1992":4,"1993":7,"1994":15,"1995":3,"1996":2,"1997":2,"1998":3,"1999":16,"2000":2,"2001":4,"2002":1,"2004":1,"2006":3,"2007":1,"2008":19,"2009":1,"2011":8,"2012":4,"2013":4,"2014":7,"2015":3,"2016":6,"2017":1,"2020":1,"2021":1,"2022":2,"2023":1,"2024":2,"2025":2,"2026":2,"2027":2,"2028":2,"2029":1,"2030":2,"2031":1,"2032":2,"2033":1,"2034":1,"2035":1,"2037":3,"2038":3,"2041":1,"2042":3,"2043":1,"2044":9,"2046":9,"2047":4,"2048":13,"2049":1,"2050":2,"2051":6,"2052":2,"2053":3,"2054":5,"2055":1,"2056":7,"2057":23,"2058":6,"2059":15,"2061":1,"2062":3,"2064":3,"2065":10,"2066":2,"2067":2,"2068":10,"2069":17,"2070":4,"2071":7,"2072":1,"2073":5,"2074":3,"2075":3,"2076":8,"2077":5,"2078":5,"2079":1,"2080":3,"2081":5,"2082":34,"2083":4,"2084":6,"2085":9,"2086":17,"2087":3,"2088":10,"2089":4,"2090":6,"2091":19,"2092":2,"2094":5,"2096":6,"2097":1,"2105":1,"2107":3,"2108":4,"2109":3,"2110":3,"2111":1,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":2,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":1,"2145":1,"2146":1,"2147":1,"2148":1,"2149":1,"2150":1,"2151":1,"2152":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":1,"2159":1,"2160":3,"2161":1,"2162":3,"2163":1,"2164":1,"2165":1,"2166":1,"2167":1,"2168":1,"2170":1,"2171":1,"2172":1,"2173":4,"2175":1,"2176":4,"2177":1,"2178":12,"2179":20,"2180":10,"2181":3,"2182":20,"2183":3,"2184":1,"2185":21,"2186":1,"2187":9,"2188":1,"2189":15,"2190":4,"2191":12,"2192":1,"2193":1,"2194":3,"2198":18,"2199":15,"2201":14,"2202":6,"2205":4,"2206":10,"2207":8,"2208":4,"2209":6,"2210":4,"2211":3,"2212":1,"2213":2,"2214":5,"2215":1,"2216":1,"2217":2,"2218":5,"2219":7,"2220":1,"2221":6,"2222":10,"2223":1,"2225":2,"2226":3,"2229":1,"2231":3,"2233":1,"2235":3,"2237":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":1,"2245":1,"2246":1,"2249":2,"2250":2,"2251":3,"2252":6,"2253":12,"2254":26,"2255":3,"2256":4,"2258":3,"2259":20,"2260":13,"2261":6,"2262":1,"2264":1,"2265":9,"2266":4,"2267":9,"2268":2,"2269":13,"2270":1,"2271":7,"2272":13,"2273":24,"2274":8,"2275":18,"2276":45,"2277":11,"2278":31,"2279":1,"2280":15,"2281":4,"2284":5,"2285":3,"2286":18,"2287":3,"2288":19,"2289":10,"2290":69,"2291":3,"2292":3,"2293":7,"2294":6,"2295":23,"2296":8,"2297":11,"2298":18,"2299":1,"2300":22,"2301":4,"2302":3,"2303":5,"2305":6,"2308":6,"2309":46,"2310":31,"2312":1,"2313":2,"2315":4,"2316":2,"2317":25,"2318":8,"2319":30,"2320":7,"2321":6,"2322":9,"2323":9,"2325":3,"2326":2,"2327":10,"2328":13,"2329":12,"2330":17,"2331":15,"2334":1,"2335":1,"2336":1,"2337":1,"2338":1,"2339":1,"2340":1,"2341":1,"2342":1,"2343":1,"2344":3,"2345":3,"2346":3,"2347":1,"2348":2,"2350":1,"2351":3,"2352":2,"2353":1,"2354":3,"2355":2,"2357":3,"2358":2,"2359":1,"2362":2,"2363":1,"2364":2,"2365":1,"2366":1,"2367":2,"2368":1,"2369":1,"2370":1,"2371":2,"2372":2,"2374":2,"2375":11,"2376":2,"2377":3,"2378":4,"2379":11,"2380":2,"2381":7,"2382":9,"2383":11,"2384":13,"2385":3,"2386":13,"2387":5,"2388":10,"2389":13,"2390":10,"2391":25,"2392":1,"2393":11,"2394":7,"2395":11,"2396":11,"2397":11,"2398":10,"2399":3,"2400":22,"2401":2,"2402":22,"2403":2,"2404":28,"2405":3,"2406":1,"2407":16,"2410":6,"2411":2,"2412":6,"2413":2,"2414":11,"2415":6,"2416":7,"2417":57,"2418":27,"2419":1,"2421":1,"2422":4,"2423":21,"2424":2,"2425":7,"2426":1,"2427":25,"2428":45,"2429":18,"2430":10,"2431":24,"2432":11,"2433":4,"2434":28,"2435":5,"2437":1,"2439":1,"2441":3,"2442":1,"2443":1,"2444":2,"2445":2,"2446":3,"2449":1,"2450":5,"2451":2,"2452":3,"2453":12,"2454":9,"2455":13,"2456":4,"2457":1,"2458":2,"2459":3,"2460":1,"2461":5,"2462":3,"2463":1,"2464":11,"2465":3,"2466":44,"2467":1,"2468":2,"2469":5,"2470":5,"2471":3,"2472":3,"2473":3,"2474":5,"2475":5,"2477":2,"2478":1,"2479":1,"2480":1,"2481":4,"2482":10,"2483":14,"2485":8,"2486":1,"2487":8,"2489":8,"2490":5,"2494":5,"2496":4,"2497":7,"2498":2,"2499":8,"2500":1,"2501":4,"2502":16,"2503":17,"2504":12,"2505":6,"2506":5,"2507":7,"2508":17,"2509":2,"2510":7,"2511":4,"2512":5,"2513":6,"2514":4,"2515":5,"2516":3,"2518":1,"2521":2,"2522":1,"2523":4,"2525":4,"2526":8,"2531":3,"2533":6,"2537":2,"2541":4,"2549":9,"2551":2,"2552":11,"2553":2,"2554":7,"2556":3,"2557":8,"2558":7,"2559":10,"2560":3,"2561":6,"2562":11,"2563":13,"2564":5,"2565":1,"2566":8,"2567":10,"2568":14,"2569":8,"2570":7,"2571":3,"2572":5,"2573":2,"2574":1,"2575":4,"2576":12,"2578":3,"2579":2,"2581":1,"2582":1,"2583":8,"2584":5,"2585":7,"2586":5,"2587":5,"2589":4,"2590":3,"2591":2,"2592":2,"2593":6,"2594":1,"2597":3,"2598":9,"2599":5,"2600":5,"2601":8,"2602":7,"2603":11,"2604":1,"2605":1,"2606":1,"2607":12,"2608":4,"2609":5,"2610":2,"2612":16,"2613":7,"2614":8,"2615":2,"2616":14,"2617":2,"2619":2,"2620":3,"2621":3,"2622":5,"2623":1,"2624":1,"2625":1,"2626":7,"2627":5,"2628":13,"2629":6,"2632":3,"2633":3,"2634":60,"2635":1,"2636":2,"2637":5,"2638":2,"2639":18,"2640":14,"2641":2,"2642":3,"2643":1,"2645":1,"2650":9,"2651":9,"2652":8,"2653":5,"2655":4,"2656":3,"2657":3,"2658":6,"2659":14,"2662":13,"2663":9,"2664":2,"2665":2,"2667":3,"2668":10,"2669":6,"2671":4,"2672":3,"2673":3,"2674":2,"2676":9,"2677":2,"2678":15,"2679":5,"2680":4,"2681":1,"2682":6,"2683":51,"2684":7,"2685":15,"2686":8,"2687":5,"2688":2,"2690":8,"2691":10,"2692":2,"2693":2,"2694":14,"2695":4,"2696":2,"2697":2,"2698":2,"2700":10,"2702":7,"2703":3,"2704":8,"2705":4,"2706":2,"2707":8,"2709":15,"2710":2,"2711":9,"2712":1,"2713":2,"2714":11,"2715":3,"2716":3,"2717":14,"2718":4,"2719":4,"2720":6,"2721":9,"2722":2,"2723":1,"2724":1,"2725":2,"2726":1,"2728":2,"2729":1,"2730":5,"2731":2,"2733":4,"2739":1,"2742":1,"2743":1,"2744":15,"2745":2,"2746":52,"2747":14,"2749":5,"2750":8,"2751":3,"2752":4,"2753":3,"2754":3,"2756":9,"2757":2,"2759":3,"2760":6,"2761":17,"2762":40,"2763":111,"2764":129,"2767":2,"2769":7,"2770":1,"2771":8,"2772":2,"2773":1,"2774":4,"2775":2,"2777":8,"2778":5,"2779":4,"2780":9,"2781":12,"2782":6,"2783":11,"2784":5,"2785":7,"2786":2,"2787":12,"2788":3,"2789":6,"2790":8,"2791":3,"2792":3,"2793":1,"2794":17,"2795":36,"2796":12,"2797":6,"2799":2,"2800":6,"2803":1,"2804":3,"2805":1,"2807":1,"2808":1,"2811":1,"2812":2,"2813":3,"2815":1,"2816":1,"2817":2,"2818":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":2,"2830":1,"2831":1,"2834":4,"2837":3,"2838":3,"2839":1,"2840":2,"2841":1,"2843":1,"2845":6,"2846":1,"2848":1,"2849":1,"2850":2,"2851":9,"2852":12,"2853":8,"2854":5,"2855":9,"2856":9,"2857":14,"2858":11,"2859":2,"2860":5,"2861":3,"2862":2,"2863":4,"2864":8,"2865":6,"2866":1,"2867":13,"2868":4,"2869":41,"2870":4,"2871":29,"2872":9,"2873":2,"2874":4,"2875":8,"2876":6,"2877":22,"2878":36,"2879":6,"2880":35,"2881":3,"2882":14,"2883":8,"2884":15,"2885":6,"2886":7,"2888":2,"2889":7,"2890":2,"2891":2,"2892":4,"2894":1,"2895":2,"2897":1,"2898":1,"2901":5,"2902":12,"2903":8,"2905":2,"2906":5,"2907":3,"2909":2,"2910":10,"2912":43,"2913":34,"2914":5,"2918":10,"2919":43,"2920":22,"2921":20,"2922":13,"2923":9,"2924":9,"2925":24,"2926":22,"2927":6,"2928":15,"2929":2,"2930":23,"2931":5,"2932":1,"2933":2,"2934":13,"2935":8,"2936":7,"2937":13,"2938":4,"2939":10,"2940":5,"2942":3,"2943":5,"2944":20,"2945":7,"2946":5,"2947":3,"2948":8,"2949":25}}],["theirs",{"2":{"2464":1}}],["their",{"2":{"0":2,"9":2,"19":2,"39":2,"52":2,"58":1,"67":1,"83":1,"86":1,"102":1,"107":1,"114":1,"122":1,"123":1,"124":1,"125":1,"134":1,"143":1,"154":1,"157":1,"159":1,"166":1,"168":1,"172":1,"175":2,"179":1,"181":1,"182":1,"185":1,"197":1,"222":1,"228":2,"233":1,"234":1,"251":1,"263":1,"275":1,"284":3,"288":1,"369":1,"372":1,"380":1,"399":2,"411":1,"414":4,"433":1,"434":1,"447":1,"492":1,"494":1,"499":1,"512":1,"543":1,"555":2,"569":1,"578":3,"586":1,"610":1,"615":1,"618":1,"621":1,"646":1,"661":1,"713":1,"714":1,"716":1,"798":1,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1287":1,"1321":1,"1343":2,"1368":1,"1387":1,"1405":1,"1423":1,"1457":1,"1517":1,"1527":2,"1528":1,"1612":1,"1620":1,"1626":1,"1629":1,"1647":1,"1839":1,"1843":1,"1846":2,"1937":1,"1985":1,"1986":2,"2079":1,"2082":2,"2193":1,"2200":2,"2222":1,"2325":1,"2327":1,"2329":1,"2331":1,"2382":1,"2383":2,"2386":1,"2396":1,"2441":2,"2456":1,"2460":3,"2464":2,"2501":1,"2509":1,"2553":1,"2566":4,"2567":3,"2568":1,"2569":3,"2571":3,"2583":1,"2589":1,"2603":1,"2628":2,"2637":1,"2694":1,"2696":1,"2710":1,"2721":1,"2727":1,"2744":3,"2746":2,"2748":1,"2753":1,"2761":2,"2764":1,"2765":1,"2777":1,"2797":1,"2835":1,"2884":1,"2909":1,"2911":1,"2919":1,"2948":1}}],["these",{"0":{"2731":1},"2":{"0":1,"7":1,"9":1,"16":1,"19":1,"21":1,"28":1,"37":1,"38":1,"39":1,"52":1,"67":1,"86":1,"120":2,"124":1,"182":1,"188":1,"202":2,"254":1,"268":2,"273":1,"276":1,"279":4,"288":1,"304":1,"307":2,"312":1,"379":1,"399":1,"473":1,"490":1,"491":1,"500":2,"501":1,"512":1,"529":1,"532":1,"538":3,"544":1,"555":1,"562":1,"563":1,"568":1,"574":1,"575":1,"579":1,"581":1,"588":1,"589":1,"610":2,"618":1,"619":1,"630":4,"632":1,"633":1,"639":1,"643":1,"646":3,"665":3,"669":1,"670":1,"671":1,"673":1,"674":1,"676":1,"688":1,"690":1,"720":1,"721":1,"729":1,"754":1,"860":1,"863":1,"893":1,"925":1,"928":1,"959":1,"962":1,"993":1,"996":1,"1027":1,"1030":1,"1061":1,"1064":1,"1095":1,"1098":1,"1129":1,"1132":1,"1163":1,"1166":1,"1195":1,"1198":1,"1200":1,"1201":1,"1203":1,"1204":1,"1209":1,"1219":1,"1283":1,"1322":1,"1343":3,"1345":1,"1346":1,"1351":1,"1359":1,"1363":1,"1364":1,"1396":1,"1398":1,"1408":1,"1415":1,"1417":1,"1422":2,"1425":1,"1428":1,"1438":1,"1440":1,"1441":1,"1448":1,"1457":1,"1470":1,"1472":1,"1479":1,"1485":1,"1489":1,"1493":1,"1510":1,"1514":1,"1517":1,"1522":1,"1524":1,"1533":2,"1541":1,"1556":2,"1558":1,"1589":2,"1590":2,"1603":1,"1607":1,"1609":1,"1612":1,"1625":1,"1626":1,"1632":1,"1634":1,"1647":1,"1661":1,"1676":1,"1681":1,"1682":1,"1686":1,"1697":1,"1741":1,"1766":1,"1769":1,"1784":1,"1798":1,"1836":1,"1837":1,"1846":1,"1849":2,"1855":1,"1926":1,"1949":1,"1952":3,"1953":1,"1962":1,"1973":1,"1984":1,"1986":2,"1990":1,"1994":1,"1998":1,"2016":1,"2046":1,"2057":2,"2065":1,"2068":2,"2082":1,"2085":3,"2089":2,"2094":1,"2178":1,"2179":1,"2181":2,"2182":1,"2184":1,"2187":1,"2188":1,"2189":1,"2191":1,"2205":2,"2219":1,"2222":1,"2252":1,"2260":1,"2265":1,"2272":1,"2275":1,"2276":1,"2277":1,"2294":1,"2297":1,"2300":1,"2301":2,"2317":1,"2320":1,"2322":1,"2323":1,"2329":1,"2330":1,"2331":1,"2384":1,"2397":1,"2417":2,"2418":2,"2424":1,"2425":1,"2430":1,"2434":2,"2463":1,"2490":1,"2497":1,"2498":1,"2505":1,"2549":2,"2551":1,"2553":1,"2554":2,"2559":1,"2561":3,"2565":1,"2566":1,"2573":1,"2575":1,"2576":1,"2585":1,"2607":1,"2619":1,"2628":1,"2637":1,"2642":1,"2650":2,"2666":1,"2684":1,"2691":1,"2694":2,"2696":1,"2701":1,"2702":2,"2705":1,"2706":1,"2709":1,"2710":1,"2717":1,"2721":1,"2722":1,"2733":2,"2743":1,"2745":1,"2746":3,"2749":1,"2751":1,"2763":6,"2764":2,"2819":1,"2840":1,"2845":1,"2851":1,"2884":1,"2887":1,"2889":1,"2890":1,"2892":1,"2894":3,"2906":1,"2907":3,"2909":1,"2912":1,"2924":1,"2930":2,"2938":1,"2941":1,"2948":1}}],["w25x10cl",{"2":{"2705":2}}],["w25q080",{"2":{"2705":2}}],["wuque",{"2":{"2567":1}}],["wmp",{"2":{"2510":1}}],["wm",{"2":{"2510":1}}],["w^wr^sd",{"2":{"2302":1}}],["wfav",{"2":{"2510":1,"2549":1}}],["wfwd",{"2":{"2068":1,"2510":1,"2549":1}}],["wfi",{"2":{"222":1}}],["www",{"2":{"610":1,"684":1,"749":7,"750":1,"762":1,"1319":2,"1378":1,"1467":1,"2187":1,"2317":1,"2510":7,"2549":7,"2750":1}}],["wt",{"2":{"236":1,"249":2,"2746":2}}],["wt80",{"2":{"211":2}}],["wt75",{"2":{"211":3}}],["wt70",{"2":{"211":1}}],["wt69",{"2":{"211":1}}],["wt65",{"2":{"211":8}}],["wt60",{"2":{"199":1,"211":8}}],["w1",{"2":{"211":1,"241":2,"249":1}}],["wk",{"2":{"211":1}}],["wkl",{"2":{"149":1}}],["wl",{"2":{"176":2,"339":1,"2301":3}}],["wbak",{"2":{"2068":1,"2510":1,"2549":1}}],["wbg7",{"2":{"176":1}}],["wb32fq95xx",{"2":{"549":1}}],["wb32fq95",{"2":{"160":1}}],["wb32f3g71xx",{"2":{"549":1}}],["wb32f3g71",{"2":{"134":1}}],["wb32",{"0":{"549":1,"2397":1},"2":{"160":1,"176":4,"191":4,"199":2,"222":1,"236":1,"2397":4}}],["wstp",{"2":{"2510":1,"2549":1}}],["wsch",{"2":{"2510":1,"2549":1}}],["ws2811",{"2":{"1283":1,"2178":1,"2443":1}}],["ws2812s",{"2":{"1287":1}}],["ws2812c",{"2":{"1283":1,"2178":1}}],["ws2812b",{"2":{"1283":1,"1287":2,"2178":1}}],["ws2812",{"0":{"1283":1,"1305":1,"1306":1,"1308":1,"1310":1,"2443":1,"2883":1},"1":{"1284":1,"1285":1,"1286":1,"1287":1,"1288":1,"1289":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1295":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1304":1,"1305":1,"1306":1,"1307":2,"1308":1,"1309":2,"1310":1},"2":{"49":1,"50":2,"93":2,"134":2,"149":1,"176":4,"191":3,"199":1,"201":2,"211":7,"221":4,"222":1,"234":2,"236":1,"249":3,"266":2,"285":2,"294":1,"333":1,"339":2,"565":3,"697":1,"1193":2,"1283":1,"1284":4,"1285":10,"1286":2,"1287":3,"1288":2,"1289":2,"1290":1,"1291":3,"1292":1,"1295":6,"1296":1,"1297":2,"1299":6,"1300":1,"1301":1,"1302":1,"1303":7,"1306":1,"1307":1,"2081":1,"2096":1,"2178":1,"2179":4,"2443":1,"2689":1,"2692":1,"2877":2,"2878":1,"2883":3}}],["wsl",{"2":{"158":1,"1472":1,"2626":3}}],["w64",{"2":{"158":1,"2506":2}}],["w",{"2":{"134":1,"199":1,"201":2,"211":1,"241":1,"249":1,"266":4,"375":1,"434":1,"589":2,"1283":1,"1288":4,"1593":2,"1605":1,"1622":1,"1741":1,"1766":1,"1937":8,"2068":1,"2079":6,"2296":1,"2301":1,"2317":1,"2386":1,"2389":1,"2502":1,"2503":3,"2510":3,"2542":3,"2557":1,"2563":1,"2762":4,"2795":3,"2796":1,"2869":2,"2926":1}}],["wch",{"2":{"2727":1,"2733":1,"2736":1}}],["wc",{"2":{"116":1}}],["wp",{"2":{"114":1,"749":5}}],["wpm",{"0":{"2378":1},"1":{"2379":1,"2380":1,"2381":1},"2":{"93":1,"114":1,"134":1,"149":1,"191":2,"199":1,"570":2,"1801":1,"2085":1,"2276":3,"2291":1,"2378":4,"2379":24,"2380":4,"2381":9,"2880":2,"2889":2,"2893":12,"2940":1}}],["wref",{"2":{"2510":1,"2549":1}}],["wraps",{"2":{"1954":3,"2201":4,"2290":3}}],["wrapping",{"2":{"676":1,"1448":1}}],["wrapped",{"2":{"249":1,"495":1}}],["wrappers",{"2":{"176":1}}],["wrap",{"2":{"199":1,"512":3,"513":1,"514":3,"1485":1,"1699":2,"2318":1}}],["wrote",{"2":{"174":1,"447":1,"463":1,"473":1,"474":1,"476":1,"482":1,"483":1}}],["wrongly",{"2":{"1352":1}}],["wrong",{"0":{"28":1,"711":1},"2":{"5":1,"25":1,"92":1,"176":1,"240":1,"249":1,"492":1,"616":1,"1287":1,"1318":1,"1376":1,"1534":1,"2569":1,"2617":1}}],["written",{"2":{"164":1,"230":1,"499":1,"611":2,"1416":1,"1417":1,"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2183":1,"2198":9,"2199":3,"2200":3,"2201":7,"2202":3,"2281":1,"2455":1,"2502":1,"2508":2,"2563":1,"2612":1,"2615":1,"2764":1,"2807":1,"2809":1,"2943":2,"2948":1}}],["writing",{"0":{"499":1,"1629":1},"1":{"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1},"2":{"65":1,"70":1,"112":1,"134":1,"174":1,"182":1,"379":1,"429":1,"447":1,"489":2,"493":1,"500":1,"542":2,"544":1,"674":1,"746":4,"749":1,"753":1,"758":1,"1415":1,"1451":1,"1525":1,"1686":1,"1954":6,"2290":6,"2291":1,"2330":1,"2410":1,"2455":1,"2502":2,"2685":1,"2715":1,"2762":4,"2764":1,"2942":1,"2947":1}}],["writereg16",{"2":{"244":1}}],["writereg",{"2":{"244":1,"249":1}}],["writepinlow",{"2":{"243":1}}],["writepinhigh",{"2":{"243":1}}],["writepin",{"2":{"160":1,"243":1}}],["writes",{"2":{"114":1,"754":1,"755":1,"756":1,"757":1,"1415":1,"1417":1,"1428":1,"1841":1,"1954":9,"2290":9,"2686":1,"2762":2}}],["write",{"0":{"781":1,"784":1,"810":1,"837":1,"869":1,"899":1,"934":1,"968":1,"1002":1,"1036":1,"1070":1,"1104":1,"1138":1,"1172":1,"1225":1,"1254":1,"1273":1,"1725":1},"1":{"782":1,"783":1,"785":1,"786":1,"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1226":1,"1255":1,"1256":1,"1274":1,"1726":1},"2":{"31":4,"62":1,"114":2,"149":1,"174":1,"243":3,"244":2,"249":5,"294":1,"333":2,"483":1,"486":1,"499":1,"500":1,"505":2,"512":1,"514":1,"544":1,"618":1,"619":1,"644":1,"672":1,"673":1,"683":1,"749":2,"753":1,"754":2,"755":3,"756":3,"762":2,"770":1,"773":1,"779":1,"781":1,"782":2,"784":1,"785":2,"797":3,"1254":1,"1255":1,"1260":2,"1274":1,"1278":2,"1376":2,"1415":1,"1417":5,"1418":1,"1420":1,"1428":1,"1448":1,"1451":1,"1535":1,"1622":1,"1725":1,"1838":6,"1851":1,"1945":9,"1946":1,"1947":1,"1948":2,"1954":17,"1955":18,"1980":1,"2016":1,"2054":1,"2059":1,"2090":1,"2284":9,"2285":1,"2286":1,"2290":11,"2508":4,"2588":1,"2686":1,"2714":1,"2734":1,"2792":2,"2893":5,"2942":1,"2943":2,"2944":1}}],["womier",{"2":{"2567":1}}],["wobkey",{"2":{"2567":1}}],["wonder",{"2":{"2474":1,"2949":1}}],["wondering",{"2":{"613":1,"2931":1}}],["wonderland",{"2":{"57":2}}],["won",{"0":{"607":1},"2":{"221":1,"411":1,"557":1,"619":1,"1450":1,"1466":1,"1470":1,"1472":1,"1490":1,"1801":1,"1961":1,"2179":1,"2309":1,"2429":1,"2490":1,"2634":1,"2749":1,"2767":1,"2884":1,"2907":1,"2912":1,"2941":1}}],["woodkeys",{"2":{"143":6,"149":2}}],["wootpatoot",{"2":{"70":1}}],["worst",{"2":{"2570":1}}],["worse",{"2":{"1356":1,"2265":1}}],["worrying",{"0":{"2632":1}}],["worry",{"2":{"1340":1}}],["worth",{"2":{"598":1,"1605":1,"2309":1,"2789":1,"2944":1}}],["worldsemi",{"2":{"1283":1}}],["world",{"0":{"1701":1,"2225":1,"2735":1},"1":{"2736":1,"2737":1,"2738":1},"2":{"489":4,"491":1,"529":1,"1328":1,"1346":1,"1409":2,"1523":3,"1627":2,"1628":1,"1630":1,"1633":2,"1638":19,"1701":1,"2225":2,"2302":1,"2846":1}}],["world1",{"2":{"120":1,"1441":1}}],["wordtypo",{"2":{"1534":1}}],["wordtpyo",{"2":{"1534":1}}],["words",{"2":{"1446":1,"1524":1,"1525":1,"1528":8,"1534":3,"1804":1,"2068":1,"2291":2,"2317":1,"2330":1,"2378":1,"2575":1,"2913":1}}],["word",{"0":{"152":1,"627":1,"1593":1,"1594":1,"1596":1,"1600":1,"1601":1,"2240":1,"2378":1,"2517":1,"2861":1},"1":{"1594":1,"1595":2,"1596":1,"1597":2,"1598":2,"1599":2,"1600":2,"1601":2,"2241":1,"2379":1,"2380":1,"2381":1},"2":{"152":3,"160":3,"176":2,"188":1,"191":2,"199":1,"211":3,"222":1,"249":1,"308":1,"519":1,"1367":1,"1527":1,"1528":3,"1532":1,"1533":1,"1534":2,"1593":14,"1594":10,"1595":2,"1597":8,"1598":7,"1599":9,"1600":11,"1601":6,"1612":1,"2065":1,"2068":2,"2317":2,"2379":2,"2381":1,"2481":1,"2517":3,"2861":7,"2940":1}}],["workman",{"2":{"1442":1,"2887":6}}],["worked",{"2":{"665":1,"2578":1,"2619":1}}],["worker",{"2":{"367":1}}],["workers",{"0":{"367":1},"2":{"366":1,"367":1}}],["workbench",{"2":{"353":1,"2659":2,"2678":1}}],["workarounds",{"0":{"2732":1,"2798":1},"1":{"2733":1,"2734":1,"2799":1,"2800":1},"2":{"1296":1,"2725":1,"2741":1}}],["workaround",{"0":{"218":1},"2":{"149":1,"160":5,"199":2,"218":2,"222":1,"249":2,"294":1,"339":1,"1484":1,"1518":1,"2097":1}}],["workflows",{"2":{"262":1,"1407":1,"2597":2,"2599":1,"2600":1,"2610":1}}],["workflow",{"0":{"2599":1,"2601":1},"2":{"134":1,"164":1,"176":1,"191":1,"199":1,"213":1,"423":1,"580":1,"616":1,"2405":1,"2590":2,"2599":3,"2601":3,"2602":4}}],["workings",{"0":{"1783":1},"1":{"1784":1,"1785":1,"1786":1},"2":{"1998":1}}],["working",{"0":{"604":1,"1349":1,"1350":1,"1351":1,"1424":1,"2631":1},"1":{"1425":1,"1426":1,"1427":1,"2632":1},"2":{"114":1,"158":1,"383":1,"425":1,"429":1,"448":1,"449":1,"450":1,"458":1,"540":2,"575":1,"613":1,"619":1,"665":2,"749":1,"750":1,"755":1,"759":1,"1320":1,"1359":1,"1387":1,"1409":1,"1542":1,"1943":2,"2038":1,"2179":1,"2275":1,"2319":1,"2331":1,"2406":1,"2432":2,"2434":2,"2435":1,"2448":1,"2460":1,"2508":1,"2565":1,"2583":1,"2591":1,"2593":1,"2617":1,"2653":1,"2658":1,"2663":1,"2683":2,"2714":1,"2744":1}}],["workshop",{"2":{"1379":1}}],["workspaceroot",{"2":{"2683":2}}],["workspace",{"2":{"353":1,"2659":1,"2678":1,"2679":1,"2680":2,"2681":1}}],["works",{"0":{"2438":1,"2466":1},"2":{"100":1,"176":1,"199":1,"211":4,"263":2,"308":1,"347":1,"434":1,"471":1,"540":1,"569":1,"591":1,"664":1,"723":1,"1193":1,"1286":1,"1313":1,"1316":1,"1320":1,"1361":1,"1421":1,"1488":1,"1490":1,"1498":1,"1503":1,"1529":1,"1534":1,"1537":1,"1593":1,"1594":2,"1597":1,"1685":1,"1783":1,"1976":1,"1977":1,"1986":1,"2014":1,"2076":1,"2180":1,"2265":1,"2269":1,"2273":1,"2310":1,"2319":3,"2320":1,"2330":1,"2331":4,"2404":1,"2425":1,"2438":1,"2466":1,"2486":1,"2504":1,"2559":1,"2589":1,"2663":1,"2683":1,"2734":1,"2908":1,"2933":1,"2949":1}}],["work",{"0":{"1359":1,"1377":1,"1380":1,"1381":1,"1498":1,"1525":1},"2":{"10":1,"23":2,"28":1,"49":1,"50":2,"114":1,"131":1,"134":1,"142":1,"160":1,"182":2,"189":2,"191":3,"194":1,"199":2,"222":1,"236":1,"251":2,"266":1,"277":1,"293":1,"305":1,"308":1,"314":1,"379":1,"398":1,"411":1,"416":1,"420":1,"439":1,"494":1,"511":1,"547":1,"574":2,"593":1,"600":1,"610":1,"613":2,"619":3,"664":1,"665":1,"793":1,"799":1,"1197":1,"1203":1,"1204":1,"1313":1,"1315":1,"1318":1,"1349":1,"1367":2,"1377":2,"1379":1,"1417":2,"1422":1,"1427":2,"1450":1,"1457":1,"1462":1,"1472":3,"1490":4,"1503":3,"1519":1,"1522":1,"1616":1,"1619":1,"1676":1,"1680":1,"1787":2,"1791":1,"1795":1,"1919":1,"1920":1,"1954":1,"1956":1,"1981":1,"1986":1,"1987":1,"1996":1,"2001":2,"2008":1,"2188":1,"2192":1,"2261":1,"2293":1,"2298":1,"2301":1,"2310":1,"2317":1,"2325":1,"2327":1,"2329":1,"2391":1,"2393":1,"2409":1,"2411":1,"2417":1,"2431":1,"2434":1,"2447":2,"2456":1,"2464":2,"2466":1,"2467":1,"2475":1,"2496":1,"2499":1,"2554":1,"2576":1,"2586":1,"2607":1,"2617":1,"2619":1,"2633":1,"2634":1,"2636":1,"2650":1,"2662":1,"2667":1,"2683":1,"2685":1,"2733":1,"2734":1,"2764":1,"2908":1,"2919":1,"2920":1,"2933":1,"2937":1}}],["wouldn",{"2":{"1616":1,"2949":1}}],["would",{"2":{"11":1,"73":1,"98":1,"164":1,"194":3,"263":1,"293":1,"305":1,"314":1,"382":1,"393":1,"538":1,"539":1,"544":1,"564":1,"588":1,"589":1,"591":1,"613":1,"670":1,"698":1,"720":4,"721":2,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1203":1,"1204":1,"1215":1,"1252":1,"1284":1,"1299":1,"1303":1,"1342":1,"1364":2,"1383":1,"1409":1,"1421":1,"1423":3,"1425":1,"1448":4,"1453":1,"1478":1,"1479":1,"1492":1,"1517":2,"1519":1,"1528":2,"1538":2,"1556":1,"1557":1,"1602":1,"1604":1,"1608":1,"1625":1,"1668":1,"1685":1,"1781":1,"1787":1,"1791":1,"1850":1,"1853":1,"1923":1,"1936":1,"1992":1,"2009":1,"2011":2,"2013":2,"2048":1,"2079":1,"2088":1,"2092":1,"2096":1,"2186":1,"2191":1,"2192":1,"2193":1,"2211":1,"2300":3,"2302":1,"2303":1,"2310":1,"2317":2,"2331":1,"2375":1,"2381":1,"2423":1,"2466":2,"2552":1,"2559":2,"2575":1,"2576":4,"2583":1,"2629":2,"2676":1,"2694":1,"2712":1,"2733":1,"2746":1,"2764":3,"2771":2,"2794":1,"2902":1,"2918":2,"2919":1,"2920":1,"2943":1,"2947":3}}],["whlr",{"2":{"1933":1,"2068":1,"2528":1}}],["whll",{"2":{"1933":1,"2068":1,"2528":1}}],["whld",{"2":{"1667":1,"1933":1,"2068":1,"2528":1}}],["whlu",{"2":{"1667":1,"1933":1,"2068":1,"2528":1}}],["wh",{"2":{"209":2}}],["why",{"0":{"1496":1,"1497":1,"2409":1,"2438":1,"2729":1,"2731":1,"2931":1,"2932":1},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1,"2730":1,"2731":1},"2":{"173":1,"512":1,"514":1,"541":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1364":1,"1427":1,"2474":1,"2725":1,"2733":2,"2851":1,"2931":1,"2949":1}}],["whom",{"2":{"2510":1,"2549":1}}],["whoeveryouare",{"2":{"2410":3}}],["whose",{"2":{"489":1,"2297":1,"2912":1}}],["who",{"2":{"119":2,"164":1,"166":1,"173":3,"209":1,"221":1,"231":1,"234":1,"279":1,"529":1,"538":1,"561":1,"618":1,"664":1,"665":1,"1440":1,"1850":1,"2088":1,"2331":1,"2447":1,"2452":1,"2460":2,"2566":1,"2569":2,"2573":2,"2727":1}}],["whole",{"0":{"479":1,"610":1},"2":{"116":1,"263":1,"516":1,"557":1,"560":1,"1342":1,"1367":1,"1528":1,"1538":1,"1681":1,"1953":1,"2379":1,"2429":1,"2434":1,"2466":1,"2913":1,"2931":1,"2947":1}}],["whatever",{"2":{"561":3,"632":1,"1350":1,"1425":1,"1438":1,"1947":1,"1962":1,"2183":1,"2277":1,"2286":1,"2591":1,"2619":1,"2640":1,"2849":1,"2912":1}}],["what",{"0":{"400":1,"403":1,"415":1,"605":1,"606":1,"621":1,"1335":1,"1338":1,"1339":1,"1342":1,"1343":1,"1345":1,"1346":1,"1362":1,"1673":1,"2470":1,"2471":1,"2472":1,"2477":1},"1":{"416":1,"417":1,"418":1},"2":{"50":1,"99":1,"119":2,"182":1,"228":1,"246":1,"251":1,"254":1,"365":1,"494":1,"505":1,"521":1,"533":2,"575":1,"586":1,"598":1,"599":1,"609":1,"615":1,"626":1,"633":2,"645":1,"661":1,"665":1,"675":1,"713":1,"721":1,"1336":1,"1361":1,"1368":1,"1376":1,"1392":1,"1393":1,"1421":1,"1427":2,"1428":2,"1444":1,"1446":1,"1484":1,"1537":1,"1538":1,"1609":1,"1687":1,"1781":2,"1786":1,"1796":1,"1846":3,"1953":1,"2072":1,"2082":3,"2188":1,"2273":1,"2300":1,"2308":1,"2309":1,"2310":1,"2317":1,"2319":1,"2410":1,"2423":1,"2425":1,"2430":1,"2437":1,"2452":1,"2454":1,"2466":3,"2467":1,"2468":1,"2470":2,"2473":1,"2497":2,"2503":1,"2561":1,"2587":1,"2616":1,"2617":1,"2628":1,"2633":1,"2638":1,"2640":1,"2713":1,"2714":1,"2743":1,"2746":2,"2748":1,"2764":1,"2766":1,"2795":1,"2869":1,"2910":2,"2937":1,"2943":1}}],["wheatfield",{"2":{"159":2}}],["wheels",{"2":{"1986":2}}],["wheel",{"2":{"112":1,"222":1,"285":1,"320":1,"566":1,"1933":8,"1935":12,"1936":12,"1937":1,"1939":1,"1940":3,"1985":2,"1986":5,"2068":2,"2087":1,"2180":2,"2528":8,"2873":1}}],["whereas",{"2":{"651":1,"690":2,"720":1,"1647":1,"2912":1}}],["wherever",{"2":{"555":1,"1623":1,"2869":1,"2902":1,"2904":1}}],["where",{"0":{"612":1,"1336":1},"2":{"94":1,"99":1,"134":1,"140":1,"191":1,"194":1,"199":1,"211":1,"231":1,"249":1,"266":1,"293":1,"294":1,"305":1,"314":1,"328":1,"366":1,"433":10,"505":1,"517":1,"541":1,"543":1,"559":1,"561":2,"570":1,"585":1,"616":2,"633":2,"637":1,"749":1,"829":1,"858":1,"890":1,"922":1,"923":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1094":1,"1127":1,"1128":1,"1161":1,"1196":1,"1199":2,"1203":1,"1204":1,"1207":1,"1217":1,"1287":1,"1364":1,"1366":1,"1367":1,"1413":2,"1428":1,"1493":1,"1525":1,"1538":1,"1617":1,"1685":1,"1720":1,"1722":1,"1738":1,"1757":1,"1783":1,"1846":2,"1855":1,"1962":2,"1984":1,"1994":1,"2068":2,"2082":2,"2094":1,"2198":9,"2201":2,"2212":1,"2300":2,"2329":2,"2330":1,"2414":2,"2417":1,"2421":1,"2429":2,"2430":1,"2432":1,"2434":1,"2452":1,"2453":1,"2466":1,"2503":1,"2508":1,"2523":1,"2562":1,"2563":1,"2585":2,"2607":1,"2614":1,"2638":2,"2662":1,"2694":1,"2715":1,"2716":1,"2720":1,"2744":1,"2746":6,"2747":1,"2748":1,"2764":2,"2780":1,"2782":1,"2783":1,"2794":2,"2888":1,"2923":1,"2926":1,"2933":1,"2935":2,"2937":1,"2947":1,"2949":1}}],["whether",{"2":{"49":1,"214":1,"234":1,"416":1,"496":1,"540":1,"639":2,"651":1,"746":1,"758":1,"762":1,"799":1,"1281":1,"1303":1,"1364":1,"1499":1,"1517":1,"1525":2,"1544":1,"1651":1,"1705":2,"1709":2,"1723":1,"1726":1,"1728":1,"1747":1,"1781":1,"1793":2,"1814":1,"1818":1,"1838":1,"1846":1,"1937":1,"1962":1,"2082":1,"2254":3,"2272":1,"2276":1,"2300":1,"2310":2,"2317":1,"2319":1,"2327":1,"2360":1,"2503":1,"2567":1,"2685":1,"2742":1,"2761":1,"2763":1,"2764":1,"2787":1,"2857":1,"2872":4,"2926":1}}],["whenever",{"2":{"263":1,"344":3,"403":2,"631":1,"643":1,"647":1,"651":1,"672":1,"755":1,"756":1,"1203":1,"1446":1,"1529":1,"1630":1,"1666":1,"1992":1,"2011":1,"2086":1,"2190":1,"2194":1,"2275":1,"2302":1,"2379":1,"2468":1,"2469":1,"2559":1,"2603":1,"2610":1,"2652":1,"2764":1,"2940":1}}],["when",{"0":{"401":1,"423":1,"1348":1,"2012":1},"1":{"402":1},"2":{"11":1,"28":1,"49":1,"50":1,"58":1,"65":2,"74":1,"92":2,"93":1,"94":1,"107":1,"111":1,"114":6,"133":1,"134":2,"149":1,"160":1,"176":2,"191":5,"195":1,"199":7,"211":3,"222":5,"230":1,"233":1,"234":2,"236":3,"240":1,"241":1,"246":1,"247":1,"249":4,"253":1,"263":1,"266":1,"270":1,"281":1,"289":1,"294":3,"297":1,"303":1,"307":1,"308":2,"312":1,"317":2,"328":2,"333":1,"338":1,"339":2,"367":1,"374":1,"393":1,"399":1,"403":1,"404":1,"423":1,"452":2,"453":2,"475":2,"485":1,"490":1,"492":1,"494":1,"495":1,"499":1,"500":1,"506":2,"512":3,"516":2,"518":1,"524":1,"526":2,"527":2,"533":1,"536":1,"538":1,"540":1,"541":1,"555":1,"561":2,"564":1,"565":4,"569":2,"570":16,"572":1,"581":1,"585":1,"586":1,"588":1,"598":1,"600":1,"601":1,"615":1,"616":1,"618":1,"619":1,"624":1,"625":1,"627":2,"629":1,"630":1,"631":3,"637":1,"645":1,"648":2,"651":1,"665":1,"666":1,"668":2,"669":1,"674":1,"682":1,"683":1,"694":1,"709":1,"711":1,"712":2,"719":2,"746":1,"749":1,"799":1,"1193":1,"1204":1,"1247":1,"1285":1,"1296":1,"1297":1,"1315":1,"1316":2,"1318":1,"1327":2,"1329":2,"1331":1,"1332":1,"1343":2,"1345":1,"1350":1,"1362":1,"1363":1,"1367":1,"1377":2,"1379":1,"1408":1,"1409":2,"1410":1,"1413":4,"1417":4,"1419":1,"1422":5,"1423":1,"1424":1,"1425":1,"1426":2,"1427":2,"1436":1,"1440":1,"1442":1,"1444":1,"1446":6,"1455":1,"1463":1,"1464":1,"1468":2,"1484":1,"1485":13,"1486":17,"1497":1,"1498":2,"1499":1,"1512":1,"1517":2,"1519":1,"1528":2,"1533":4,"1535":1,"1544":1,"1545":1,"1546":1,"1550":1,"1558":1,"1585":1,"1587":1,"1589":1,"1590":1,"1593":1,"1595":1,"1597":1,"1600":1,"1601":3,"1602":1,"1604":1,"1611":1,"1612":2,"1613":1,"1618":1,"1622":2,"1625":1,"1627":1,"1661":1,"1662":2,"1664":3,"1665":1,"1670":1,"1672":2,"1674":2,"1681":4,"1684":1,"1685":1,"1687":1,"1690":6,"1734":1,"1736":1,"1739":1,"1742":1,"1766":1,"1767":4,"1770":1,"1774":2,"1776":1,"1777":1,"1779":1,"1781":1,"1782":4,"1784":1,"1785":2,"1786":2,"1789":1,"1791":1,"1794":1,"1798":2,"1804":2,"1807":1,"1808":1,"1809":1,"1836":1,"1837":2,"1841":1,"1852":1,"1934":1,"1935":1,"1937":2,"1938":1,"1940":1,"1944":1,"1949":2,"1953":1,"1954":2,"1958":1,"1960":3,"1961":3,"1968":1,"1974":1,"1985":1,"1986":3,"1987":1,"1989":1,"1990":2,"1992":1,"1994":2,"1999":4,"2000":4,"2008":1,"2009":1,"2011":1,"2012":1,"2013":1,"2014":4,"2015":1,"2048":1,"2051":1,"2061":1,"2068":1,"2074":2,"2076":1,"2077":1,"2078":2,"2091":1,"2096":1,"2178":1,"2181":10,"2182":1,"2184":1,"2185":1,"2189":5,"2191":1,"2192":2,"2210":2,"2221":1,"2225":1,"2255":2,"2257":14,"2258":1,"2259":17,"2260":4,"2261":1,"2272":1,"2273":2,"2274":1,"2276":1,"2278":7,"2279":1,"2284":1,"2290":4,"2294":1,"2300":2,"2304":4,"2305":1,"2308":1,"2309":10,"2310":4,"2317":4,"2318":4,"2319":1,"2325":1,"2327":3,"2328":6,"2330":2,"2340":1,"2342":1,"2377":4,"2379":6,"2384":1,"2391":1,"2405":1,"2407":1,"2417":5,"2422":1,"2425":1,"2427":1,"2428":3,"2431":1,"2434":2,"2450":1,"2453":2,"2455":1,"2459":1,"2460":1,"2463":1,"2466":6,"2469":1,"2475":1,"2502":1,"2503":1,"2509":1,"2510":2,"2516":3,"2519":2,"2523":3,"2530":58,"2532":10,"2538":14,"2539":4,"2549":2,"2554":1,"2558":1,"2561":1,"2568":1,"2572":2,"2575":62,"2576":1,"2579":1,"2585":1,"2587":1,"2602":1,"2607":1,"2616":1,"2622":1,"2629":1,"2633":3,"2634":1,"2638":1,"2651":1,"2652":6,"2659":2,"2672":1,"2679":1,"2682":2,"2685":1,"2700":1,"2715":1,"2722":1,"2743":1,"2746":5,"2748":2,"2759":2,"2760":1,"2762":4,"2763":4,"2764":1,"2781":1,"2796":2,"2813":1,"2821":1,"2822":1,"2861":1,"2871":1,"2872":1,"2877":2,"2878":1,"2880":1,"2884":1,"2886":1,"2899":1,"2902":1,"2903":1,"2904":1,"2912":3,"2913":4,"2919":2,"2920":2,"2921":1,"2922":2,"2924":3,"2925":3,"2930":3,"2934":2,"2936":1,"2939":2,"2949":1}}],["whistles",{"2":{"2746":1}}],["whitefacemountain",{"2":{"277":1}}],["whitefox",{"2":{"143":2,"236":1}}],["white",{"2":{"266":1,"492":1,"494":2,"589":1,"1288":5,"1417":1,"1958":1,"2089":2,"2198":1,"2205":3,"2781":4}}],["whitespace",{"2":{"211":4,"512":1,"513":1,"615":1,"675":1,"1527":1,"2563":1}}],["whilst",{"2":{"198":1,"460":1,"2569":1,"2710":1}}],["while",{"0":{"320":1},"2":{"21":1,"37":1,"49":1,"73":1,"191":1,"194":3,"199":2,"203":1,"294":1,"328":1,"393":1,"408":1,"555":1,"564":1,"618":1,"627":1,"649":1,"665":1,"710":3,"714":1,"723":1,"1343":1,"1348":1,"1351":1,"1362":2,"1367":1,"1395":1,"1405":1,"1407":1,"1409":3,"1413":2,"1415":1,"1440":1,"1443":1,"1451":1,"1470":1,"1490":1,"1528":1,"1529":1,"1533":1,"1550":1,"1592":1,"1593":2,"1597":2,"1600":2,"1612":1,"1661":1,"1664":1,"1678":1,"1681":1,"1702":1,"1766":1,"1781":1,"1784":3,"1785":1,"1788":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1954":7,"1959":1,"1994":1,"1996":1,"2000":1,"2004":1,"2006":1,"2013":1,"2041":3,"2043":4,"2065":1,"2073":1,"2089":1,"2205":1,"2210":1,"2213":1,"2217":1,"2252":1,"2259":1,"2272":1,"2275":1,"2290":5,"2296":2,"2300":1,"2304":3,"2317":1,"2319":1,"2389":1,"2390":1,"2404":2,"2410":1,"2417":2,"2418":1,"2434":1,"2439":1,"2448":1,"2539":3,"2556":1,"2563":2,"2564":1,"2571":1,"2574":1,"2586":1,"2587":1,"2612":3,"2665":1,"2759":1,"2761":1,"2792":1,"2820":1,"2831":1,"2834":1,"2839":1,"2851":1,"2879":1,"2909":1,"2911":1,"2913":3,"2922":1,"2927":1,"2928":1,"2934":1,"2936":1,"2945":1}}],["whichever",{"2":{"283":1,"1492":1,"2058":1,"2300":1}}],["which",{"0":{"1329":1,"1330":1,"1600":1},"2":{"0":1,"9":1,"19":1,"27":1,"30":1,"33":1,"39":1,"45":1,"49":3,"50":1,"52":1,"69":1,"108":1,"118":1,"119":1,"134":1,"149":1,"154":1,"158":1,"173":1,"191":1,"194":1,"201":1,"209":1,"215":2,"233":1,"236":1,"246":1,"265":1,"288":3,"312":1,"320":1,"375":1,"379":2,"389":1,"393":1,"396":2,"399":1,"403":1,"420":1,"460":1,"474":1,"475":1,"489":1,"492":1,"512":1,"526":1,"529":1,"533":1,"546":1,"555":3,"562":1,"563":2,"564":2,"569":1,"572":1,"588":3,"599":1,"615":1,"617":1,"619":1,"633":1,"645":1,"648":1,"674":1,"683":1,"690":3,"710":1,"714":1,"715":1,"720":3,"721":2,"753":1,"761":1,"764":2,"793":1,"796":1,"1193":1,"1200":1,"1207":1,"1208":1,"1209":1,"1246":1,"1248":2,"1267":1,"1269":1,"1286":1,"1287":1,"1288":1,"1291":1,"1320":1,"1330":1,"1331":1,"1348":1,"1349":2,"1357":1,"1362":1,"1364":1,"1365":1,"1367":1,"1376":3,"1379":1,"1409":1,"1410":2,"1419":2,"1422":2,"1423":1,"1436":1,"1444":1,"1446":2,"1448":3,"1479":1,"1480":1,"1481":1,"1483":1,"1484":1,"1487":2,"1491":3,"1498":1,"1501":1,"1503":1,"1504":1,"1506":1,"1508":1,"1510":1,"1515":1,"1519":1,"1523":1,"1535":1,"1546":2,"1548":1,"1589":2,"1593":1,"1595":1,"1600":2,"1610":1,"1617":1,"1618":1,"1622":1,"1626":3,"1627":2,"1628":1,"1633":1,"1634":2,"1640":1,"1641":1,"1643":2,"1645":1,"1664":1,"1665":1,"1667":1,"1670":2,"1680":1,"1683":1,"1738":1,"1770":1,"1771":1,"1772":1,"1773":1,"1781":3,"1784":1,"1786":1,"1787":1,"1788":1,"1791":1,"1794":1,"1796":1,"1843":1,"1852":3,"1935":2,"1936":3,"1939":1,"1947":1,"1948":1,"1953":3,"1954":1,"1956":2,"1957":2,"1962":1,"1970":1,"1973":1,"1974":2,"1986":3,"1990":3,"1999":1,"2048":1,"2058":1,"2059":1,"2065":1,"2068":1,"2077":1,"2079":1,"2091":5,"2182":3,"2187":1,"2188":1,"2210":1,"2225":1,"2252":1,"2270":2,"2278":2,"2286":1,"2287":1,"2303":1,"2309":4,"2317":1,"2319":2,"2325":1,"2326":1,"2329":2,"2379":1,"2388":1,"2389":1,"2391":1,"2407":3,"2409":1,"2410":1,"2417":2,"2418":1,"2427":3,"2431":2,"2448":1,"2451":1,"2454":1,"2455":1,"2466":3,"2470":1,"2499":1,"2501":1,"2504":2,"2505":1,"2523":1,"2558":1,"2562":1,"2563":1,"2566":2,"2567":1,"2568":3,"2569":2,"2576":2,"2605":1,"2610":1,"2616":1,"2628":1,"2635":1,"2637":3,"2639":3,"2640":2,"2645":1,"2667":1,"2683":1,"2684":1,"2690":1,"2695":2,"2696":1,"2700":3,"2702":1,"2703":1,"2704":1,"2707":1,"2709":1,"2718":1,"2746":1,"2747":1,"2751":2,"2759":1,"2760":1,"2763":2,"2764":4,"2781":2,"2787":1,"2794":4,"2795":4,"2813":2,"2823":1,"2841":1,"2844":1,"2857":1,"2869":1,"2871":4,"2872":1,"2877":5,"2878":6,"2880":1,"2882":1,"2884":1,"2887":1,"2889":1,"2893":2,"2901":1,"2912":1,"2913":2,"2921":1,"2928":1,"2930":1,"2931":1,"2934":1,"2935":1,"2936":1,"2937":1,"2940":1,"2941":1,"2943":1,"2949":3}}],["waz",{"2":{"2295":1,"2296":1}}],["warranty",{"2":{"1467":2,"2750":2}}],["warn",{"2":{"114":1,"160":1,"669":1,"2508":1}}],["warnings",{"0":{"2463":1,"2690":1},"2":{"95":1,"160":1,"170":1,"191":1,"211":1,"236":2,"308":1,"317":1,"339":1,"414":1,"2417":1,"2463":2,"2904":1}}],["warning",{"2":{"23":1,"50":1,"107":1,"114":1,"134":1,"149":1,"153":1,"154":1,"160":1,"176":2,"182":1,"199":3,"228":1,"236":4,"266":1,"308":1,"352":3,"379":1,"492":1,"596":1,"597":1,"599":1,"600":1,"633":1,"669":1,"679":2,"710":1,"712":1,"748":1,"750":1,"753":1,"754":1,"755":1,"759":1,"1193":1,"1197":1,"1297":1,"1407":1,"1440":1,"1463":2,"1466":1,"1485":1,"1535":1,"1589":1,"1622":1,"1627":1,"1634":1,"1666":1,"1668":1,"1788":1,"1835":1,"1952":1,"1954":2,"1984":1,"1985":2,"1986":2,"1987":1,"2057":1,"2181":1,"2184":1,"2191":1,"2249":1,"2261":2,"2265":1,"2276":1,"2277":1,"2294":1,"2298":1,"2309":1,"2323":1,"2331":1,"2409":1,"2485":1,"2487":1,"2489":1,"2490":1,"2494":1,"2503":2,"2585":1,"2589":1,"2598":1,"2599":1,"2603":1,"2604":2,"2607":1,"2616":2,"2622":1,"2626":1,"2627":1,"2637":1,"2651":1,"2683":1,"2693":1,"2745":1,"2752":1,"2756":1,"2760":1,"2763":4,"2764":3,"2794":2,"2901":1,"2921":1,"2926":1,"2928":1,"2948":1}}],["watch",{"2":{"1376":1,"2187":1,"2589":1,"2941":1}}],["watchdog",{"2":{"191":1,"222":2,"294":1,"570":3,"2278":5,"2880":2}}],["waffling60",{"2":{"236":1}}],["waffling80",{"2":{"211":1}}],["waveshare",{"2":{"2763":3}}],["wavetable",{"2":{"1480":1}}],["waveforms",{"2":{"1686":1}}],["waveform",{"0":{"1686":1},"2":{"249":1,"1480":5,"1488":2,"1680":2,"1686":2}}],["wave",{"2":{"222":1,"266":1,"721":1,"1480":3,"1684":1,"1849":8,"2085":5,"2894":1}}],["walk",{"2":{"2410":1,"2560":1,"2621":1,"2632":1,"2748":1}}],["walter",{"2":{"191":1}}],["wallaby",{"2":{"143":2}}],["wako",{"2":{"1343":1,"2412":1}}],["waka60",{"2":{"266":1}}],["wakizashi40",{"2":{"211":1}}],["wakizashi",{"2":{"149":1}}],["wakes",{"2":{"648":1}}],["wakeup",{"0":{"649":1},"2":{"112":1,"114":1,"176":1,"199":2,"222":3,"236":1,"561":2,"574":1,"647":2,"648":1,"649":2,"650":2,"1638":3,"2764":1,"2882":2}}],["wake",{"0":{"648":1,"650":1,"1381":1,"1387":1},"1":{"649":1,"650":1},"2":{"62":1,"73":1,"231":1,"328":1,"561":1,"574":1,"1351":1,"1381":2,"2510":3,"2549":3}}],["wanted",{"2":{"1471":1,"1472":1,"1499":1,"2322":1}}],["wanten",{"2":{"143":2}}],["wanting",{"2":{"1252":1,"2317":1,"2431":1,"2706":1,"2765":1}}],["wants",{"2":{"222":1,"1518":1,"2573":1,"2636":1,"2939":1}}],["want",{"0":{"610":1,"1341":1,"1342":1},"1":{"1342":1},"2":{"125":1,"173":1,"185":1,"194":1,"232":1,"307":1,"403":1,"435":1,"474":1,"510":1,"511":1,"516":1,"533":1,"538":1,"540":1,"561":3,"564":3,"570":2,"596":1,"597":1,"598":1,"600":1,"609":1,"613":1,"626":1,"630":1,"633":5,"640":1,"645":1,"664":1,"668":1,"717":1,"718":1,"799":1,"1207":1,"1208":1,"1319":1,"1364":3,"1376":1,"1392":1,"1396":1,"1415":1,"1416":1,"1417":7,"1418":1,"1422":1,"1425":2,"1426":1,"1427":1,"1438":1,"1440":1,"1446":2,"1447":1,"1448":1,"1449":1,"1451":1,"1455":1,"1467":1,"1468":2,"1470":2,"1471":1,"1472":5,"1483":1,"1492":2,"1498":1,"1525":1,"1529":1,"1535":1,"1551":2,"1589":2,"1612":4,"1619":1,"1624":1,"1663":1,"1766":1,"1788":1,"1803":1,"1844":1,"1846":2,"1850":1,"1852":1,"1855":1,"1923":1,"1935":1,"1937":1,"1947":1,"1954":1,"1958":1,"1962":1,"1974":1,"2011":1,"2048":1,"2080":1,"2082":2,"2088":1,"2091":1,"2094":1,"2096":1,"2097":1,"2183":1,"2189":1,"2191":2,"2206":1,"2207":1,"2211":1,"2251":1,"2260":1,"2264":1,"2280":1,"2286":1,"2290":1,"2293":2,"2297":1,"2300":1,"2301":1,"2309":4,"2310":1,"2317":4,"2331":1,"2381":2,"2407":1,"2410":1,"2417":2,"2418":1,"2419":1,"2423":1,"2425":1,"2427":1,"2429":1,"2430":2,"2431":1,"2435":1,"2460":1,"2461":1,"2474":1,"2482":1,"2496":1,"2558":1,"2560":1,"2584":1,"2606":1,"2607":1,"2608":1,"2611":1,"2614":1,"2628":4,"2635":1,"2636":1,"2637":1,"2640":1,"2651":2,"2674":1,"2680":1,"2683":1,"2690":1,"2694":1,"2702":1,"2749":1,"2761":1,"2767":1,"2770":2,"2771":2,"2772":1,"2775":1,"2886":1,"2890":2,"2912":1,"2926":1,"2928":1,"2941":1,"2944":1,"2949":2}}],["waits",{"2":{"574":1,"658":1,"1410":1,"1455":2,"1730":1,"1732":1,"2394":1,"2399":1,"2913":1}}],["waiting",{"2":{"176":1,"191":1,"230":1,"377":1,"570":1,"582":1,"1329":1,"1332":2,"1455":1,"1662":1,"2278":1,"2279":1,"2604":1}}],["wait",{"2":{"92":1,"94":2,"112":1,"113":1,"114":4,"149":1,"176":3,"222":2,"263":1,"266":1,"308":1,"398":1,"574":2,"613":1,"647":1,"657":1,"768":2,"770":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"794":1,"1410":1,"1462":1,"1591":1,"1852":1,"2046":1,"2091":1,"2185":1,"2187":6,"2222":1,"2231":1,"2235":1,"2309":1,"2315":4,"2317":1,"2327":1,"2383":1,"2386":2,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":4,"2402":4,"2404":4,"2612":1,"2744":1,"2761":1,"2872":1,"2880":2,"2882":3,"2921":1,"2922":1}}],["waaffle",{"2":{"86":4}}],["wasn",{"2":{"1612":1,"2914":1}}],["wasting",{"2":{"489":1}}],["wasdat",{"2":{"57":4,"160":1}}],["was",{"0":{"414":1},"1":{"415":1,"416":1,"417":1,"418":1},"2":{"6":1,"8":1,"10":1,"11":1,"113":1,"125":1,"174":1,"179":1,"185":1,"189":2,"194":1,"214":1,"215":1,"243":1,"245":1,"251":1,"255":1,"263":1,"271":1,"293":1,"305":1,"314":1,"331":1,"347":1,"386":1,"389":1,"414":1,"423":2,"531":1,"564":1,"588":1,"604":1,"615":2,"665":1,"723":1,"1204":1,"1253":1,"1343":1,"1350":2,"1417":1,"1525":1,"1535":1,"1617":2,"1781":1,"1784":1,"1786":1,"1789":1,"1817":1,"1953":2,"1954":7,"1962":2,"2012":1,"2065":1,"2069":4,"2281":2,"2290":4,"2295":1,"2310":2,"2319":1,"2366":1,"2368":1,"2429":1,"2464":1,"2466":1,"2562":1,"2567":1,"2599":1,"2628":1,"2634":4,"2640":1,"2685":1,"2706":1,"2762":1,"2803":1}}],["ways",{"2":{"303":1,"306":1,"315":1,"338":1,"399":1,"491":1,"496":1,"497":1,"498":1,"508":1,"568":1,"599":1,"616":1,"619":1,"684":1,"1348":1,"1409":2,"1416":1,"1422":1,"1423":1,"1427":1,"1440":1,"1529":1,"1593":1,"1835":1,"2002":1,"2270":1,"2292":1,"2422":2,"2435":1,"2460":1,"2481":1,"2559":1,"2612":1,"2632":2}}],["way",{"2":{"0":1,"9":1,"19":1,"39":1,"50":1,"52":1,"120":1,"124":1,"154":2,"194":2,"222":1,"254":1,"285":2,"399":1,"416":1,"426":1,"436":1,"492":1,"495":2,"542":1,"593":1,"619":2,"643":1,"691":1,"750":1,"1283":1,"1311":1,"1312":1,"1416":1,"1424":1,"1433":1,"1464":1,"1470":1,"1472":2,"1478":1,"1491":1,"1534":1,"1538":2,"1541":1,"1589":1,"1623":1,"1741":1,"1766":1,"1786":1,"1788":1,"1802":1,"1846":1,"1935":1,"1985":1,"1986":1,"1990":1,"1994":1,"2058":1,"2071":1,"2082":1,"2178":1,"2277":1,"2298":1,"2331":1,"2379":1,"2391":1,"2425":1,"2427":1,"2466":3,"2481":1,"2499":1,"2504":1,"2559":1,"2562":1,"2569":1,"2607":1,"2613":1,"2634":2,"2636":1,"2640":1,"2663":1,"2690":1,"2700":1,"2742":1,"2744":1,"2749":1,"2794":1,"2795":1,"2872":1,"2886":1,"2902":1,"2924":1,"2928":1,"2944":1,"2947":1}}],["wikipedia",{"2":{"1364":1,"1935":1,"2466":1}}],["wiki",{"2":{"574":1,"2037":1,"2299":1}}],["wipe",{"2":{"2774":1}}],["wiper",{"2":{"1738":1}}],["wip",{"2":{"277":1}}],["wiping",{"0":{"2774":1},"2":{"191":1,"2427":1}}],["witf",{"2":{"211":1}}],["within",{"2":{"31":1,"34":1,"50":1,"67":1,"75":1,"86":1,"94":1,"102":1,"122":1,"124":1,"126":1,"132":1,"133":1,"134":1,"141":2,"143":1,"149":2,"159":1,"168":1,"181":1,"190":1,"191":1,"195":1,"197":1,"199":1,"201":1,"222":1,"231":1,"236":2,"254":1,"266":1,"285":2,"288":1,"293":1,"297":1,"305":1,"307":1,"308":1,"312":1,"314":1,"317":1,"339":1,"379":1,"399":1,"422":1,"432":1,"491":1,"494":1,"519":1,"545":1,"570":1,"639":2,"669":1,"670":1,"676":1,"749":1,"750":1,"755":1,"1327":1,"1388":1,"1423":1,"1431":1,"1451":1,"1484":1,"1487":1,"1498":1,"1528":2,"1590":1,"1597":1,"1602":1,"1612":1,"1614":1,"1615":1,"1622":1,"1626":1,"1627":1,"1628":1,"1630":1,"1634":1,"1651":1,"1681":1,"1850":1,"1865":1,"1867":1,"1959":1,"1970":1,"2076":1,"2088":1,"2107":1,"2109":1,"2181":1,"2262":1,"2267":1,"2278":1,"2310":1,"2317":1,"2318":1,"2386":1,"2413":1,"2414":2,"2418":1,"2475":1,"2510":1,"2549":1,"2559":1,"2590":1,"2607":1,"2663":1,"2711":2,"2721":1,"2746":2,"2751":2,"2777":1,"2780":1,"2868":1,"2884":1,"2902":1,"2903":3,"2908":1,"2919":3,"2920":2,"2921":1,"2922":2,"2925":1,"2930":1,"2935":1,"2936":1,"2940":1}}],["without",{"0":{"2097":1},"2":{"23":1,"49":2,"70":1,"80":1,"112":1,"125":1,"152":2,"164":1,"173":1,"176":1,"185":1,"194":1,"228":1,"273":2,"276":1,"285":1,"308":1,"328":1,"352":1,"414":1,"429":1,"447":1,"473":1,"489":1,"529":1,"540":1,"559":1,"570":1,"574":1,"609":1,"619":1,"641":3,"644":1,"799":1,"1364":4,"1378":1,"1424":1,"1467":2,"1472":1,"1485":1,"1503":1,"1518":4,"1529":1,"1544":1,"1550":1,"1600":1,"1623":1,"1663":1,"1777":1,"1801":2,"1850":1,"1938":1,"1981":1,"1985":1,"1999":1,"2016":1,"2071":1,"2088":1,"2097":1,"2188":1,"2212":1,"2216":2,"2226":1,"2272":1,"2275":1,"2278":1,"2279":1,"2291":1,"2292":1,"2294":1,"2297":1,"2302":1,"2331":2,"2390":1,"2405":1,"2407":2,"2417":2,"2418":1,"2460":1,"2466":1,"2471":1,"2503":1,"2567":34,"2603":1,"2640":1,"2650":1,"2666":1,"2691":1,"2727":1,"2746":1,"2750":2,"2751":1,"2764":4,"2769":1,"2800":1,"2909":1,"2922":1,"2928":3,"2930":1,"2935":1,"2949":1}}],["with",{"0":{"1":1,"27":1,"513":1,"709":1,"1324":1,"1325":1,"1326":1,"1342":1,"1359":1,"1424":1,"1433":1,"1771":1,"1772":1,"1773":1,"1795":1,"1941":1,"2230":1,"2234":1,"2293":1,"2294":1,"2300":1,"2410":1,"2590":1,"2613":1,"2631":1,"2683":1},"1":{"710":1,"711":1,"712":1,"713":1,"1425":1,"1426":1,"1427":1,"1434":1,"1435":1,"1436":1,"1437":1,"1438":1,"1439":1,"2231":1,"2235":1,"2295":1,"2296":1,"2297":1,"2591":1,"2592":1,"2593":1,"2594":1,"2595":1,"2596":1,"2597":1,"2598":1,"2599":1,"2600":1,"2601":1,"2602":1,"2614":1,"2615":1,"2632":1},"2":{"1":1,"5":1,"6":2,"7":2,"8":1,"11":1,"25":1,"27":1,"30":2,"31":5,"33":2,"34":2,"36":1,"49":3,"50":1,"60":1,"69":1,"72":1,"77":1,"83":1,"84":1,"86":1,"92":1,"93":1,"98":4,"100":1,"107":1,"111":1,"114":11,"119":2,"123":1,"124":1,"126":1,"131":2,"134":6,"138":1,"149":7,"153":1,"154":1,"156":1,"157":1,"160":4,"163":2,"166":1,"167":1,"172":1,"173":3,"175":2,"176":9,"182":5,"186":1,"189":1,"190":1,"191":6,"194":2,"195":1,"196":1,"198":1,"199":7,"201":1,"211":9,"218":1,"221":1,"222":5,"230":2,"231":2,"236":1,"240":3,"241":1,"243":1,"244":1,"249":8,"253":1,"254":1,"263":1,"264":1,"265":1,"266":4,"268":1,"270":1,"273":3,"274":1,"276":1,"277":1,"279":2,"281":1,"282":1,"283":1,"284":2,"285":7,"288":1,"289":2,"292":1,"293":1,"294":4,"301":1,"302":1,"305":1,"307":1,"308":1,"312":2,"313":1,"314":2,"320":3,"326":1,"327":1,"328":3,"331":1,"336":1,"344":1,"353":1,"354":2,"356":1,"366":1,"379":2,"384":1,"386":1,"393":2,"402":1,"403":4,"409":1,"411":1,"412":1,"414":1,"419":1,"422":1,"423":2,"425":1,"429":8,"430":2,"433":1,"434":1,"436":1,"439":2,"448":1,"449":1,"450":1,"459":3,"470":1,"475":3,"487":1,"489":1,"490":1,"494":2,"496":1,"512":2,"514":3,"521":2,"527":2,"531":1,"532":1,"536":1,"538":2,"540":2,"542":2,"544":1,"545":3,"547":1,"548":1,"554":1,"561":1,"564":1,"567":1,"568":3,"569":1,"570":2,"573":1,"574":2,"581":2,"600":2,"604":1,"605":1,"610":1,"611":2,"613":6,"614":2,"615":4,"618":2,"619":3,"621":1,"622":1,"627":2,"643":1,"644":1,"646":1,"665":1,"669":1,"670":1,"672":2,"675":2,"676":1,"681":1,"684":1,"688":1,"690":1,"698":1,"709":2,"710":2,"711":2,"712":2,"713":2,"714":1,"716":4,"717":1,"719":1,"721":2,"722":2,"725":1,"754":3,"757":1,"781":1,"784":1,"787":1,"790":1,"797":3,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1192":1,"1193":1,"1197":1,"1200":4,"1203":1,"1204":2,"1205":2,"1207":1,"1209":1,"1210":1,"1215":1,"1247":1,"1272":1,"1284":1,"1286":2,"1288":2,"1311":1,"1312":1,"1315":4,"1316":2,"1318":1,"1319":2,"1332":3,"1333":2,"1335":1,"1336":1,"1339":1,"1342":1,"1343":2,"1348":2,"1359":1,"1362":1,"1363":2,"1364":8,"1366":1,"1367":2,"1376":1,"1377":1,"1379":1,"1382":1,"1383":1,"1388":1,"1390":1,"1395":1,"1398":1,"1400":1,"1401":1,"1405":1,"1406":1,"1409":2,"1410":1,"1412":1,"1413":2,"1414":1,"1416":1,"1417":1,"1422":4,"1424":1,"1425":2,"1431":1,"1433":2,"1435":1,"1438":1,"1439":1,"1446":1,"1448":1,"1449":1,"1450":1,"1455":1,"1456":1,"1457":1,"1462":1,"1463":3,"1464":1,"1465":3,"1467":3,"1472":3,"1474":1,"1475":2,"1477":2,"1478":2,"1479":1,"1480":3,"1482":2,"1484":1,"1485":1,"1486":2,"1490":3,"1498":2,"1499":1,"1500":1,"1503":3,"1518":2,"1522":4,"1523":3,"1525":1,"1527":2,"1532":1,"1535":1,"1538":14,"1539":2,"1553":1,"1554":2,"1589":1,"1592":1,"1594":2,"1595":1,"1597":3,"1600":1,"1602":2,"1603":1,"1604":1,"1605":2,"1609":2,"1610":3,"1612":2,"1615":1,"1618":2,"1619":1,"1620":1,"1622":1,"1625":6,"1627":1,"1628":2,"1633":1,"1634":1,"1635":2,"1636":2,"1640":1,"1644":1,"1645":1,"1651":1,"1662":1,"1664":1,"1665":2,"1666":1,"1667":1,"1671":2,"1672":1,"1678":1,"1681":1,"1684":1,"1686":1,"1688":1,"1689":1,"1690":2,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1697":1,"1739":3,"1740":1,"1741":1,"1742":1,"1743":1,"1766":2,"1770":1,"1774":1,"1776":5,"1777":1,"1779":2,"1781":2,"1782":1,"1786":2,"1787":3,"1788":1,"1791":1,"1795":1,"1801":2,"1840":1,"1843":3,"1846":1,"1850":2,"1851":1,"1853":1,"1855":1,"1919":1,"1934":1,"1936":1,"1940":2,"1941":1,"1945":2,"1946":2,"1947":1,"1949":1,"1952":7,"1953":2,"1954":2,"1960":2,"1968":1,"1969":1,"1970":1,"1974":2,"1978":1,"1980":2,"1983":1,"1985":3,"1986":1,"1987":1,"1994":2,"1996":1,"1998":1,"1999":3,"2002":1,"2007":1,"2008":1,"2044":1,"2048":1,"2051":1,"2054":1,"2057":2,"2059":3,"2065":2,"2068":3,"2069":1,"2071":1,"2074":1,"2075":1,"2076":3,"2079":1,"2082":1,"2085":2,"2087":2,"2088":2,"2090":1,"2092":1,"2094":1,"2095":2,"2097":1,"2178":2,"2179":1,"2181":1,"2187":1,"2189":4,"2192":1,"2206":1,"2209":1,"2210":1,"2219":2,"2222":2,"2228":1,"2230":1,"2232":1,"2234":2,"2247":2,"2248":2,"2249":1,"2251":1,"2256":7,"2258":2,"2259":8,"2260":3,"2264":1,"2267":1,"2272":1,"2273":9,"2274":2,"2275":1,"2277":4,"2278":4,"2279":1,"2280":1,"2286":1,"2289":1,"2290":1,"2291":2,"2292":4,"2293":1,"2294":1,"2298":2,"2301":1,"2308":1,"2309":5,"2310":1,"2316":1,"2317":3,"2319":6,"2324":1,"2326":1,"2327":3,"2330":3,"2331":2,"2374":2,"2375":3,"2382":1,"2383":2,"2384":2,"2385":1,"2386":3,"2387":2,"2388":1,"2389":2,"2390":1,"2391":3,"2393":3,"2394":1,"2395":2,"2396":1,"2397":1,"2398":2,"2399":1,"2400":1,"2402":1,"2404":3,"2407":1,"2410":5,"2411":4,"2412":1,"2417":3,"2418":4,"2422":1,"2423":2,"2424":1,"2425":4,"2427":2,"2428":1,"2431":1,"2432":1,"2434":2,"2445":1,"2449":1,"2450":2,"2458":1,"2465":1,"2466":1,"2469":1,"2471":1,"2473":1,"2475":1,"2477":1,"2482":1,"2483":1,"2486":1,"2490":2,"2496":2,"2499":1,"2504":1,"2505":1,"2506":2,"2523":1,"2541":1,"2552":1,"2553":1,"2557":1,"2558":2,"2560":1,"2562":1,"2563":2,"2567":8,"2568":2,"2569":1,"2575":1,"2578":2,"2579":1,"2580":1,"2582":1,"2583":3,"2584":1,"2587":1,"2589":2,"2590":4,"2591":1,"2592":1,"2593":1,"2594":1,"2597":1,"2599":5,"2600":2,"2603":1,"2605":1,"2613":1,"2614":1,"2617":2,"2619":3,"2628":2,"2629":2,"2633":2,"2634":5,"2635":1,"2637":4,"2639":1,"2640":1,"2651":1,"2652":1,"2653":1,"2655":1,"2659":1,"2662":2,"2667":1,"2668":3,"2669":1,"2671":1,"2678":1,"2680":1,"2683":3,"2684":1,"2685":1,"2687":1,"2690":1,"2691":2,"2705":4,"2707":2,"2709":1,"2710":1,"2711":1,"2713":1,"2714":2,"2718":1,"2719":1,"2721":1,"2725":2,"2727":1,"2728":1,"2730":1,"2738":2,"2742":2,"2743":2,"2744":6,"2745":1,"2746":6,"2747":1,"2748":1,"2750":1,"2753":3,"2756":2,"2759":1,"2760":1,"2762":1,"2763":24,"2764":12,"2774":1,"2780":1,"2781":1,"2783":1,"2784":1,"2787":1,"2792":3,"2795":1,"2796":1,"2799":1,"2814":1,"2817":1,"2827":1,"2828":1,"2835":1,"2850":2,"2851":2,"2854":1,"2869":1,"2871":1,"2878":1,"2884":1,"2885":1,"2886":1,"2890":2,"2895":1,"2896":1,"2897":1,"2902":1,"2903":1,"2905":1,"2908":1,"2909":1,"2912":6,"2914":1,"2919":1,"2920":1,"2921":2,"2922":1,"2925":11,"2926":5,"2928":2,"2930":4,"2931":1,"2933":1,"2934":1,"2937":3,"2938":1,"2945":1,"2946":3,"2948":1,"2949":3}}],["wild",{"2":{"2308":1}}],["wildcard",{"2":{"469":1}}],["wildcards",{"2":{"433":3}}],["wilba",{"2":{"191":1,"199":1,"211":23,"2746":3}}],["willing",{"2":{"2749":1}}],["willoucom",{"2":{"222":1}}],["will",{"0":{"403":1,"2903":1,"2904":1},"2":{"0":1,"5":1,"7":1,"9":1,"10":1,"14":1,"19":1,"21":1,"22":1,"23":3,"39":1,"45":1,"49":1,"52":1,"70":1,"88":3,"89":1,"90":3,"103":1,"104":3,"105":2,"107":1,"110":2,"120":1,"126":1,"127":3,"132":3,"152":1,"153":1,"156":1,"170":3,"182":2,"195":2,"198":1,"201":1,"203":2,"206":1,"209":3,"213":3,"218":1,"220":1,"228":1,"230":1,"240":2,"255":1,"256":1,"262":1,"263":2,"265":3,"272":1,"273":1,"275":1,"276":1,"283":1,"303":1,"306":1,"307":5,"327":1,"332":1,"353":1,"365":1,"378":1,"384":1,"393":3,"396":2,"398":1,"399":2,"403":1,"407":1,"412":5,"417":1,"420":2,"429":2,"430":1,"432":1,"436":1,"437":1,"440":1,"442":1,"444":2,"445":1,"446":1,"463":1,"474":1,"483":1,"488":1,"489":4,"490":1,"492":1,"494":2,"500":1,"505":2,"506":1,"507":1,"509":2,"511":1,"513":3,"527":2,"533":2,"537":1,"546":1,"555":1,"556":1,"560":1,"561":1,"562":1,"563":1,"565":2,"571":1,"574":2,"578":1,"581":2,"584":1,"585":1,"586":1,"589":1,"592":1,"593":1,"596":1,"597":1,"599":1,"600":2,"601":1,"613":2,"615":1,"619":2,"621":1,"626":1,"627":1,"629":1,"630":3,"633":1,"639":4,"643":1,"645":1,"647":1,"649":2,"651":3,"652":1,"653":1,"656":1,"657":3,"658":1,"659":1,"665":1,"666":1,"672":1,"674":2,"675":2,"676":1,"677":1,"694":3,"696":2,"709":1,"710":2,"712":2,"721":1,"723":1,"746":4,"749":1,"750":1,"754":3,"757":1,"762":1,"793":1,"1203":1,"1204":1,"1209":2,"1252":1,"1265":1,"1276":1,"1281":1,"1288":1,"1292":1,"1297":1,"1300":1,"1312":1,"1315":1,"1319":1,"1320":1,"1322":1,"1329":1,"1332":2,"1336":1,"1347":1,"1348":4,"1363":2,"1366":1,"1376":2,"1377":1,"1378":1,"1379":1,"1388":1,"1390":1,"1398":1,"1407":1,"1409":4,"1410":2,"1412":1,"1417":6,"1422":3,"1423":2,"1425":2,"1427":3,"1431":1,"1433":1,"1440":1,"1446":1,"1448":1,"1454":1,"1458":1,"1459":1,"1460":1,"1462":5,"1463":1,"1464":2,"1465":1,"1466":2,"1467":1,"1470":1,"1472":7,"1483":1,"1485":2,"1490":2,"1491":2,"1492":2,"1493":4,"1498":2,"1499":3,"1501":1,"1503":4,"1518":5,"1520":1,"1522":1,"1526":1,"1527":3,"1528":1,"1532":2,"1533":2,"1535":2,"1544":1,"1546":1,"1589":2,"1593":2,"1602":1,"1603":1,"1604":1,"1605":1,"1609":1,"1620":5,"1622":1,"1628":1,"1631":1,"1633":1,"1640":1,"1647":1,"1661":1,"1666":2,"1667":1,"1668":3,"1670":1,"1671":1,"1672":2,"1673":3,"1675":1,"1676":1,"1678":1,"1680":1,"1681":4,"1685":1,"1687":4,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1713":1,"1729":2,"1762":2,"1765":1,"1776":7,"1781":5,"1782":3,"1784":2,"1785":1,"1786":3,"1788":3,"1789":1,"1795":2,"1802":1,"1803":1,"1804":2,"1835":1,"1837":3,"1839":1,"1840":1,"1852":2,"1865":1,"1867":1,"1919":2,"1923":1,"1926":1,"1935":3,"1936":3,"1940":2,"1947":2,"1949":1,"1953":1,"1954":2,"1957":1,"1962":1,"1974":2,"1977":1,"1984":1,"1985":3,"1986":2,"1987":1,"1988":1,"1989":1,"1990":3,"1994":3,"1996":1,"1998":2,"1999":3,"2000":3,"2001":2,"2006":1,"2008":2,"2012":1,"2014":4,"2046":1,"2048":4,"2054":1,"2057":1,"2074":1,"2076":1,"2086":1,"2087":3,"2091":2,"2095":1,"2096":1,"2097":1,"2107":1,"2109":1,"2182":1,"2188":1,"2189":4,"2191":3,"2208":1,"2209":1,"2210":2,"2213":1,"2214":1,"2219":1,"2221":1,"2222":1,"2249":1,"2259":1,"2261":1,"2264":2,"2268":1,"2271":1,"2272":3,"2273":2,"2275":2,"2276":1,"2277":1,"2278":4,"2280":1,"2286":2,"2288":1,"2290":2,"2292":2,"2294":3,"2297":1,"2298":1,"2300":3,"2301":2,"2304":1,"2309":6,"2317":3,"2319":1,"2323":1,"2325":1,"2329":4,"2330":3,"2331":3,"2347":1,"2378":1,"2379":5,"2382":3,"2383":2,"2384":1,"2387":1,"2390":1,"2391":1,"2397":1,"2405":1,"2407":3,"2410":1,"2415":1,"2416":1,"2417":6,"2418":7,"2419":1,"2421":1,"2422":1,"2423":3,"2426":1,"2427":3,"2428":7,"2429":1,"2431":1,"2434":1,"2435":1,"2448":1,"2450":2,"2454":1,"2460":2,"2463":1,"2466":5,"2467":1,"2471":2,"2482":1,"2483":1,"2484":1,"2488":1,"2490":1,"2497":2,"2501":1,"2502":1,"2506":3,"2507":1,"2510":1,"2554":1,"2560":1,"2561":1,"2564":2,"2568":1,"2569":3,"2570":2,"2571":3,"2573":1,"2576":2,"2578":1,"2582":1,"2585":1,"2587":2,"2589":2,"2590":2,"2593":2,"2594":1,"2595":1,"2597":1,"2598":1,"2599":1,"2600":1,"2601":2,"2602":2,"2603":2,"2604":2,"2605":1,"2608":1,"2609":2,"2610":2,"2612":3,"2613":1,"2614":1,"2615":1,"2616":2,"2617":2,"2619":1,"2621":2,"2622":1,"2624":1,"2626":2,"2628":5,"2632":1,"2634":1,"2635":1,"2637":3,"2640":1,"2641":1,"2650":4,"2651":2,"2652":1,"2656":1,"2657":2,"2658":1,"2659":2,"2662":1,"2663":2,"2672":1,"2674":1,"2676":1,"2678":2,"2683":5,"2690":1,"2704":1,"2707":1,"2709":4,"2711":1,"2713":1,"2714":1,"2717":3,"2743":1,"2744":5,"2745":2,"2746":6,"2747":3,"2748":1,"2749":1,"2750":1,"2751":2,"2756":1,"2760":2,"2761":4,"2762":1,"2763":1,"2764":7,"2765":1,"2769":3,"2771":1,"2795":4,"2813":1,"2842":1,"2852":2,"2869":1,"2871":1,"2878":1,"2889":6,"2899":1,"2902":2,"2903":4,"2904":2,"2906":1,"2912":3,"2913":1,"2918":2,"2919":6,"2920":3,"2921":7,"2925":3,"2928":7,"2934":4,"2935":2,"2936":1,"2937":3,"2939":1,"2940":1,"2944":1,"2945":2,"2949":3}}],["wise",{"2":{"756":1,"764":1,"1248":1,"1269":1}}],["wisdom",{"2":{"179":1}}],["wishes",{"2":{"1628":1}}],["wished",{"2":{"589":1}}],["wishing",{"2":{"284":1,"486":1}}],["wish",{"2":{"1":1,"152":1,"206":1,"231":1,"232":1,"265":1,"429":1,"559":1,"1467":1,"1627":1,"1668":1,"1777":1,"1851":1,"2058":1,"2090":1,"2181":1,"2267":1,"2297":1,"2416":2,"2567":2,"2603":1,"2604":2,"2605":1,"2613":1,"2685":1,"2686":1,"2703":1}}],["widht",{"2":{"1527":2}}],["width",{"2":{"111":1,"114":1,"677":1,"754":1,"755":1,"756":1,"1527":2,"1541":1,"1939":1,"1949":2,"1952":3,"1953":3,"1954":1,"1970":2,"2288":2,"2289":3,"2763":16,"2764":8,"2779":1,"2788":4,"2795":1,"2869":1,"2889":1}}],["widely",{"2":{"2653":1,"2709":1}}],["wider",{"2":{"414":1,"512":1,"514":2}}],["widen",{"2":{"191":1}}],["wide",{"0":{"510":1,"511":1},"2":{"77":1,"188":1,"677":1,"1849":3,"2085":3,"2663":1,"2705":1,"2764":3,"2799":1,"2884":1,"2894":1}}],["winc",{"2":{"2327":1,"2328":1,"2332":1,"2344":1,"2540":1}}],["wincompose",{"2":{"191":1,"2327":1,"2328":1,"2331":4,"2332":2,"2344":1,"2345":1,"2346":1,"2540":2}}],["window",{"2":{"393":3,"412":2,"712":1,"1208":1,"1610":2,"1612":2,"1675":1,"1935":1,"2502":1,"2560":1,"2582":1,"2587":1,"2616":1,"2663":1,"2678":2,"2700":1}}],["windows",{"0":{"240":1,"388":1,"2409":1,"2675":1},"1":{"2676":1,"2677":1,"2678":1},"2":{"73":1,"158":1,"240":1,"388":2,"393":1,"458":1,"513":1,"709":1,"711":1,"713":1,"1318":1,"1326":1,"1351":1,"1361":1,"1381":1,"1462":1,"1618":2,"1675":1,"1676":1,"1784":1,"1957":1,"1958":1,"2016":1,"2057":1,"2328":1,"2331":5,"2332":3,"2390":1,"2400":1,"2402":1,"2404":1,"2407":1,"2409":6,"2498":1,"2502":2,"2506":1,"2510":4,"2540":3,"2546":2,"2548":1,"2554":1,"2575":2,"2576":1,"2591":1,"2597":2,"2613":1,"2614":1,"2619":1,"2626":1,"2627":1,"2673":1,"2676":3,"2678":2,"2683":4,"2717":1,"2731":1}}],["winusb",{"2":{"240":2,"713":13}}],["wings",{"2":{"211":2,"266":1}}],["wings42",{"2":{"143":6}}],["winkeyless",{"2":{"211":1}}],["winkeys",{"2":{"211":1}}],["winni",{"2":{"211":1}}],["winry25",{"2":{"317":1}}],["winry25tc",{"2":{"143":2,"149":1}}],["winry315",{"2":{"277":1}}],["winry",{"2":{"143":1,"149":1}}],["wins",{"2":{"70":13}}],["win",{"2":{"70":1,"134":1,"266":1,"1673":1,"2328":1,"2332":1,"2530":1,"2540":1,"2575":1}}],["wired",{"2":{"565":2,"1313":1,"1479":1,"1546":1,"1558":1,"1643":1,"1669":2,"1968":1,"2265":1,"2278":1,"2429":1,"2485":1,"2487":1,"2489":1,"2566":1,"2567":11,"2569":2,"2844":1,"2848":1,"2931":1}}],["wires",{"2":{"396":1,"1192":1,"1200":1,"2264":2,"2265":4,"2266":1,"2267":1,"2427":1,"2429":5,"2430":1,"2431":4,"2434":2,"2483":2}}],["wireless",{"0":{"2373":1,"2516":1,"2736":1,"2859":1},"1":{"2374":1,"2375":1,"2376":1,"2377":1},"2":{"241":1,"2377":1,"2516":2,"2566":1,"2567":20,"2569":2,"2728":1,"2746":10,"2806":2,"2859":1}}],["wire",{"2":{"45":2,"114":1,"396":1,"1192":5,"1194":1,"1197":1,"1283":2,"1287":1,"1395":1,"2178":2,"2208":1,"2281":1,"2421":3,"2422":1,"2423":3,"2425":9,"2427":1,"2428":2,"2429":5,"2434":1,"2436":1,"2466":3,"2468":1}}],["wiring",{"0":{"45":1,"1475":1,"1478":1,"1482":1,"2266":1,"2267":1,"2420":1,"2425":1,"2430":1,"2485":1,"2487":1,"2489":1,"2491":1,"2493":1,"2495":1,"2507":1},"1":{"1479":1,"2421":1,"2422":1,"2423":1,"2424":1,"2425":1,"2426":2,"2427":2,"2428":2,"2429":2,"2430":1,"2431":2,"2432":1,"2433":1,"2434":1,"2435":1,"2436":1},"2":{"45":3,"134":1,"716":1,"1478":1,"1482":1,"1681":1,"1954":2,"1983":1,"2085":1,"2290":2,"2422":1,"2425":1,"2427":1,"2429":1,"2434":1,"2436":1,"2483":1,"2508":1,"2683":1,"2721":1,"2828":1}}],["welcomed",{"2":{"2749":1}}],["welcome",{"2":{"2659":1}}],["well",{"2":{"49":1,"50":2,"90":1,"107":1,"131":1,"132":1,"152":1,"153":1,"173":1,"198":1,"201":1,"213":1,"215":1,"224":1,"229":1,"232":1,"243":1,"249":1,"263":1,"265":1,"272":1,"298":1,"331":1,"393":1,"398":1,"433":1,"494":1,"571":1,"611":1,"619":1,"665":1,"694":1,"713":1,"756":1,"1198":1,"1201":1,"1367":1,"1421":1,"1434":1,"1472":1,"1483":1,"1490":1,"1498":1,"1503":1,"1534":1,"1540":1,"1594":1,"1630":1,"1681":1,"1786":1,"1787":1,"1837":1,"1843":1,"1983":1,"1986":1,"2014":1,"2075":1,"2086":1,"2255":2,"2261":1,"2292":1,"2298":1,"2310":1,"2317":1,"2327":1,"2329":1,"2384":1,"2391":1,"2407":1,"2418":2,"2422":1,"2447":1,"2461":1,"2502":1,"2508":1,"2523":1,"2567":1,"2569":1,"2604":1,"2707":1,"2751":1,"2760":2,"2894":1,"2931":1}}],["wetting",{"2":{"2427":1}}],["wet",{"2":{"2427":1}}],["wete",{"2":{"197":4}}],["west",{"2":{"1741":1,"2051":1}}],["westberrytech",{"0":{"549":1},"2":{"130":1,"134":1}}],["week",{"0":{"407":1},"2":{"412":1}}],["weeks",{"0":{"405":1,"406":1},"2":{"228":1,"412":7,"2567":1}}],["webhost",{"2":{"2634":3}}],["webpage",{"2":{"1315":1}}],["webserver",{"2":{"460":1}}],["website",{"2":{"70":1,"2425":1,"2432":1,"2434":1,"2436":1,"2452":1,"2817":1}}],["web",{"2":{"364":1,"380":1,"576":1,"616":1,"661":1,"1368":1,"2317":1,"2437":1,"2592":1}}],["weikav",{"2":{"2567":1}}],["weighting",{"2":{"1968":1}}],["weight",{"2":{"1684":2,"1685":3,"2300":1}}],["weights",{"2":{"249":1,"1968":6}}],["weird",{"2":{"1490":1,"2774":1}}],["weirdo",{"2":{"143":7,"149":2,"211":1}}],["werror=array",{"2":{"160":1}}],["weren",{"2":{"199":1}}],["were",{"2":{"98":1,"128":1,"131":1,"166":1,"175":1,"186":1,"188":1,"204":1,"229":1,"234":2,"244":1,"251":1,"254":1,"256":1,"263":2,"268":1,"272":1,"273":1,"279":1,"283":1,"512":1,"514":1,"1398":1,"1425":1,"1499":1,"1517":1,"1538":1,"1592":1,"1604":1,"1631":1,"1632":1,"1786":1,"1962":1,"1996":1,"2048":1,"2065":1,"2069":1,"2076":1,"2077":1,"2183":1,"2280":1,"2569":1,"2589":1,"2634":2,"2762":1,"2800":1,"2894":1,"2919":1}}],["went",{"2":{"125":1,"185":1,"1953":1}}],["wealthier",{"2":{"1528":2}}],["weact",{"0":{"2664":1},"1":{"2665":1,"2666":1,"2667":1,"2668":1,"2669":1,"2670":1,"2671":1,"2672":1},"2":{"308":1,"548":2,"2664":3,"2672":1,"2895":1}}],["wear",{"0":{"174":1,"752":1,"753":1,"754":1,"755":1,"756":1,"757":1},"1":{"754":1,"755":1,"756":1,"757":1},"2":{"114":1,"174":1,"176":4,"191":1,"211":1,"236":5,"249":1,"277":1,"308":1,"333":1,"746":2,"752":3,"753":6,"754":8,"755":7,"756":5,"2864":3}}],["weakly",{"2":{"768":1,"793":1,"1591":1,"2344":1,"2345":1,"2346":1}}],["weak",{"0":{"1362":1},"2":{"65":1,"93":1,"114":1,"149":2,"191":1,"222":1,"328":1,"339":1,"570":1,"625":4,"1362":7,"1470":2,"1472":1,"1517":2,"1532":1,"1600":2,"1689":1,"1954":2,"2276":1,"2290":4,"2381":3,"2746":1}}],["we",{"0":{"1496":1,"2438":1,"2931":1},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1},"2":{"0":1,"9":1,"19":1,"39":1,"50":2,"51":1,"52":1,"83":1,"89":1,"92":1,"93":1,"111":1,"112":1,"172":1,"188":2,"194":2,"213":1,"224":1,"228":1,"245":2,"263":1,"273":1,"277":1,"283":1,"376":1,"384":1,"393":7,"396":3,"399":3,"404":1,"406":1,"407":1,"408":1,"425":1,"489":6,"492":1,"495":1,"499":1,"501":1,"504":1,"505":2,"506":1,"512":6,"513":1,"514":5,"515":1,"516":4,"518":1,"521":1,"527":1,"529":3,"530":1,"537":1,"538":2,"539":2,"540":1,"542":1,"543":1,"544":1,"555":1,"571":1,"589":2,"596":1,"608":1,"609":2,"610":1,"615":2,"616":1,"618":1,"619":3,"620":2,"621":1,"627":2,"661":1,"665":4,"670":2,"671":1,"696":4,"709":1,"721":1,"1313":1,"1320":1,"1335":1,"1340":1,"1341":1,"1342":2,"1368":1,"1396":1,"1410":1,"1417":5,"1420":1,"1424":1,"1431":2,"1446":8,"1447":1,"1462":1,"1472":1,"1499":7,"1518":1,"1525":4,"1528":1,"1538":7,"1539":1,"1618":2,"1622":1,"1623":1,"1641":1,"1661":1,"1947":2,"1952":1,"1953":2,"1959":1,"1996":2,"2059":1,"2189":4,"2190":1,"2191":2,"2261":1,"2286":2,"2310":3,"2316":2,"2319":4,"2384":1,"2391":1,"2410":1,"2422":1,"2429":1,"2431":2,"2437":1,"2441":1,"2447":2,"2448":2,"2458":1,"2459":1,"2460":1,"2462":3,"2466":9,"2560":1,"2561":1,"2563":1,"2564":1,"2565":1,"2572":1,"2573":1,"2574":1,"2582":1,"2620":1,"2628":1,"2632":2,"2634":4,"2639":1,"2657":1,"2663":2,"2669":1,"2676":1,"2677":1,"2678":1,"2682":1,"2746":1,"2748":1,"2749":3,"2751":1,"2794":3,"2795":3,"2796":1,"2836":1,"2909":1,"2919":2,"2931":2,"2937":3,"2938":2,"2939":3,"2940":1}}],["i+7",{"2":{"2764":1}}],["i+=8",{"2":{"2764":3}}],["i++",{"2":{"1850":2,"1947":1,"1948":1,"2088":2,"2095":2,"2096":1,"2286":1}}],["i2s",{"2":{"2689":1}}],["i2c0",{"2":{"2697":2}}],["i2cv2",{"0":{"766":1},"2":{"766":1}}],["i2cv1",{"0":{"765":1},"2":{"765":1}}],["i2cd0",{"2":{"2697":1}}],["i2cd1",{"2":{"764":2,"2697":1,"2702":1}}],["i2cd2",{"2":{"199":1,"764":1}}],["i2c3",{"2":{"764":1}}],["i2c2",{"2":{"764":4}}],["i2c1",{"2":{"764":7,"765":3,"766":5,"2697":2,"2702":2}}],["i2c",{"0":{"244":1,"749":1,"760":1,"762":1,"768":1,"769":2,"772":2,"775":2,"778":2,"781":2,"784":2,"787":2,"790":2,"793":2,"1291":1,"1950":1,"2267":1,"2446":1,"2697":1},"1":{"761":1,"762":1,"763":1,"764":1,"765":1,"766":1,"767":1,"768":1,"769":1,"770":3,"771":3,"772":1,"773":3,"774":3,"775":1,"776":3,"777":3,"778":1,"779":3,"780":3,"781":1,"782":3,"783":3,"784":1,"785":3,"786":3,"787":1,"788":3,"789":3,"790":1,"791":3,"792":3,"793":1,"794":3,"795":3},"2":{"30":1,"33":2,"45":1,"75":1,"92":1,"114":1,"118":2,"134":4,"149":1,"176":5,"191":1,"199":2,"211":1,"232":1,"234":4,"236":4,"244":9,"249":7,"266":1,"285":1,"294":5,"328":1,"355":1,"561":2,"570":3,"746":2,"749":19,"760":1,"761":3,"762":5,"763":3,"764":16,"765":1,"768":4,"769":1,"770":1,"771":3,"772":2,"773":1,"774":3,"775":1,"776":1,"777":3,"778":1,"779":1,"780":3,"781":1,"782":1,"783":3,"784":1,"785":1,"786":3,"787":1,"788":1,"789":3,"790":1,"791":1,"792":3,"793":2,"794":1,"795":3,"801":1,"802":2,"803":1,"827":1,"828":6,"829":5,"856":1,"857":6,"858":5,"888":1,"889":6,"890":5,"920":1,"921":6,"922":17,"955":1,"956":6,"957":17,"989":1,"990":6,"991":5,"1023":1,"1024":6,"1025":5,"1057":1,"1058":6,"1059":5,"1091":1,"1092":6,"1093":17,"1125":1,"1126":6,"1127":17,"1159":1,"1160":6,"1161":17,"1215":1,"1216":6,"1217":5,"1285":1,"1289":1,"1291":6,"1395":1,"1682":1,"1943":1,"1945":3,"1950":1,"1953":1,"1970":3,"1973":2,"1974":3,"1980":3,"2261":2,"2262":1,"2264":1,"2275":4,"2431":1,"2444":1,"2446":1,"2689":1,"2692":2,"2695":1,"2697":4,"2702":3,"2744":1,"2760":9,"2763":17,"2864":1,"2880":1,"2883":5}}],["ipad",{"2":{"2454":1}}],["iphone",{"2":{"2454":1}}],["ipsum",{"2":{"363":1}}],["ignoring",{"0":{"2072":1,"2073":1},"1":{"2073":1,"2074":1,"2075":1},"2":{"2011":1}}],["ignores",{"2":{"1359":1,"1361":1,"2073":1,"2075":1,"2913":1}}],["ignored",{"2":{"452":2,"453":2,"1407":1,"1410":1,"1527":1,"1533":1,"1960":1,"1968":1,"1999":1,"2072":2,"2073":1,"2189":1,"2213":1,"2503":1,"2554":1,"2787":1,"2872":1}}],["ignore",{"0":{"194":1,"206":1},"2":{"22":2,"112":2,"160":1,"194":11,"199":2,"206":2,"211":1,"249":1,"308":1,"339":1,"393":1,"396":1,"2008":1,"2073":1,"2075":1,"2079":1,"2189":1,"2272":1,"2510":1,"2551":1,"2578":1,"2628":1}}],["iqs572",{"2":{"1969":1}}],["iqs550",{"2":{"1969":1}}],["iqs525",{"2":{"1969":1}}],["iqs5xx",{"0":{"1969":1},"1":{"1970":1,"1971":1,"1972":1},"2":{"236":1,"1969":2,"1970":9,"1971":17,"1972":3}}],["i²c",{"0":{"803":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1217":1},"2":{"800":1,"802":2,"803":1,"804":1,"826":1,"828":6,"829":1,"830":1,"855":1,"857":6,"858":1,"862":1,"887":1,"889":6,"890":1,"892":1,"919":1,"921":6,"922":1,"927":1,"954":1,"956":6,"957":1,"961":1,"988":1,"990":6,"991":1,"995":1,"1022":1,"1024":6,"1025":1,"1029":1,"1056":1,"1058":6,"1059":1,"1063":1,"1090":1,"1092":6,"1093":1,"1097":1,"1124":1,"1126":6,"1127":1,"1131":1,"1158":1,"1160":6,"1161":1,"1165":1,"1214":1,"1216":6,"1217":1,"1218":1,"2883":2}}],["ie",{"2":{"736":1,"813":1,"817":1,"821":1,"823":1,"840":1,"844":1,"848":1,"850":1,"872":1,"876":1,"880":1,"882":1,"904":1,"908":1,"912":1,"914":1,"939":1,"943":1,"947":1,"949":1,"973":1,"977":1,"981":1,"983":1,"1007":1,"1011":1,"1015":1,"1017":1,"1041":1,"1045":1,"1049":1,"1051":1,"1075":1,"1079":1,"1083":1,"1085":1,"1109":1,"1113":1,"1117":1,"1119":1,"1143":1,"1147":1,"1151":1,"1153":1,"1177":1,"1181":1,"1185":1,"1187":1,"1230":1,"1234":1,"1238":1,"1240":1,"1276":1,"1290":1,"1651":1,"1681":1,"1718":1,"1741":1,"2626":1}}],["icsp",{"2":{"2494":1}}],["ics",{"2":{"1943":1,"2383":1}}],["icelandic",{"2":{"2887":3}}],["ice",{"2":{"1939":1}}],["icebreaker",{"2":{"308":1}}],["ic",{"2":{"1214":1,"1298":1,"1551":1,"1697":2,"1943":1,"1949":5,"1952":3,"2283":2}}],["icon",{"2":{"398":1,"2622":2}}],["ivndbt",{"2":{"300":2,"308":1}}],["ivy",{"2":{"143":2}}],["ijk",{"2":{"266":1}}],["ii",{"2":{"199":1,"211":1}}],["iie",{"2":{"181":2}}],["i64",{"2":{"191":1}}],["ireland",{"2":{"2887":1}}],["irene",{"2":{"211":1}}],["iron",{"2":{"2421":1,"2427":5,"2428":1,"2429":1}}],["irony",{"2":{"2329":2}}],["iron180",{"2":{"211":2,"249":1}}],["ir",{"2":{"1983":1}}],["irregularities",{"2":{"2926":1}}],["irregular",{"2":{"622":1}}],["irrelevant",{"2":{"244":1}}],["irq",{"2":{"191":1,"236":1,"764":1,"2375":1}}],["irqs",{"2":{"176":1}}],["irish",{"2":{"2887":1}}],["iris60",{"2":{"211":1}}],["iris",{"2":{"45":1,"134":1,"199":1,"211":2,"266":2,"277":1}}],["ik75",{"2":{"176":1}}],["imagine",{"2":{"1802":1,"1846":1,"2082":1,"2794":1}}],["image",{"0":{"467":1,"468":1,"2458":1},"2":{"468":1,"683":4,"889":1,"1320":1,"2423":1,"2425":1,"2705":1,"2715":1,"2726":1,"2746":3,"2762":14,"2764":55,"2777":1,"2779":2,"2781":2,"2783":5,"2784":1}}],["images",{"0":{"343":1},"2":{"153":3,"466":1,"683":1,"1342":1,"2415":1,"2715":1,"2746":2,"2760":2,"2761":2,"2762":2,"2764":5,"2777":1,"2785":1}}],["imgur",{"2":{"683":2,"684":1,"2415":1,"2458":1,"2715":1,"2746":4}}],["imera",{"2":{"249":1,"1389":1,"1391":3,"2895":1}}],["immediate",{"2":{"618":1,"1413":3,"2726":1,"2739":1}}],["immediately",{"2":{"230":1,"259":1,"297":1,"411":1,"651":1,"702":1,"735":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1229":1,"1233":1,"1237":1,"1239":1,"1281":1,"1306":1,"1351":1,"1364":2,"1410":1,"1417":3,"1498":1,"1538":1,"1612":1,"1786":1,"2310":1,"2650":2,"2764":1,"2770":1,"2780":1,"2781":2,"2886":1,"2912":1,"2913":3,"2919":1,"2920":1,"2922":1,"2923":1,"2925":1,"2930":1,"2948":1}}],["immutable",{"2":{"533":1}}],["immune",{"2":{"231":1}}],["impartial",{"2":{"2569":1}}],["impact",{"2":{"194":1,"643":1,"2276":1,"2310":1,"2753":1,"2902":1,"2903":1,"2921":1}}],["impacts",{"2":{"14":1}}],["impose",{"2":{"2725":1,"2727":1}}],["impossible",{"2":{"1376":1,"1423":1,"1801":1,"2453":1}}],["imported",{"2":{"448":1,"449":1,"450":1,"1628":1,"2423":1,"2432":1,"2744":1}}],["importer",{"2":{"176":1}}],["important",{"0":{"402":1,"679":1},"2":{"492":1,"512":1,"526":1,"596":1,"619":2,"627":1,"679":2,"1364":1,"1425":1,"1462":1,"1522":1,"1535":1,"1620":1,"1647":1,"2096":1,"2379":1,"2598":1,"2612":1,"2886":1,"2912":1}}],["imports",{"0":{"516":1},"1":{"517":1},"2":{"236":1,"448":1,"449":1,"516":1}}],["importing",{"0":{"2662":1},"2":{"173":1,"448":1,"449":1,"450":1,"516":2,"2432":1,"2662":1}}],["import",{"0":{"173":1,"448":1,"449":1,"450":1,"517":1},"2":{"173":4,"176":1,"288":1,"354":1,"393":2,"448":2,"449":2,"450":2,"489":2,"516":8,"517":4,"538":1,"1626":1,"1628":1,"1629":1,"2059":1,"2432":3,"2589":1,"2746":1}}],["impedance",{"2":{"797":1}}],["impls",{"2":{"1850":2,"2088":2}}],["impls\`",{"2":{"1850":1,"2088":1}}],["implied",{"2":{"1467":1,"2750":1}}],["implies",{"2":{"1313":1,"1484":1,"2278":1}}],["implicitly",{"2":{"565":1}}],["implicit",{"2":{"526":1,"535":1,"2886":1}}],["implications",{"2":{"312":1,"414":2,"417":1}}],["impl",{"2":{"339":1}}],["implementing",{"0":{"1414":1},"2":{"277":2,"619":1,"623":1,"624":1,"646":1,"685":1,"1192":1,"1540":1,"1617":1,"1618":1,"1984":1,"2746":1}}],["implemented",{"2":{"74":1,"149":1,"176":1,"215":2,"288":1,"312":1,"327":1,"593":1,"639":1,"1343":1,"1392":1,"1393":1,"1626":1,"1645":1,"1689":1,"1786":1,"1787":1,"1838":1,"1923":1,"1936":1,"2015":1,"2057":1,"2316":1,"2331":1,"2332":1,"2377":12,"2516":12,"2540":1,"2709":1,"2746":2,"2781":1,"2787":1,"2869":3,"2902":1}}],["implement",{"2":{"50":1,"74":1,"93":1,"114":1,"131":1,"134":1,"149":1,"160":1,"176":1,"191":1,"199":2,"211":1,"236":5,"259":1,"277":2,"288":1,"308":2,"328":2,"575":1,"619":1,"624":1,"625":2,"633":1,"745":1,"1343":1,"1410":1,"1414":2,"1431":1,"1480":1,"1492":1,"1551":1,"1626":1,"1798":1,"1835":1,"1846":1,"1923":1,"1945":1,"1952":1,"1964":1,"1965":1,"1986":2,"2054":1,"2057":1,"2082":1,"2212":1,"2284":1,"2381":1,"2455":1,"2652":1,"2685":1,"2686":1,"2687":1,"2751":1}}],["implementations",{"2":{"149":3,"175":1,"211":1,"214":1,"277":6,"285":1,"288":1,"294":2,"328":2,"333":1,"1192":1,"1626":1,"1842":1,"1843":1,"2261":1,"2746":1,"2747":1,"2889":1,"2934":1}}],["implementation",{"0":{"631":1,"635":1,"641":1,"644":1,"647":1,"649":1,"652":1,"653":1,"1417":1,"1430":1,"1838":1,"1839":1,"2310":1,"2741":1},"2":{"49":1,"75":1,"114":1,"125":1,"163":1,"176":1,"185":1,"233":1,"236":1,"277":1,"307":1,"308":1,"317":1,"328":1,"619":1,"624":1,"627":1,"690":2,"696":3,"757":1,"1198":1,"1201":1,"1205":2,"1292":1,"1480":2,"1493":1,"1529":1,"1537":2,"1593":1,"1605":1,"1681":1,"1953":1,"1968":1,"1993":1,"2044":2,"2261":2,"2301":1,"2374":1,"2418":2,"2455":1,"2523":1,"2569":1,"2685":1,"2686":1,"2687":1,"2872":2,"2889":1,"2923":1,"2924":1}}],["implements",{"2":{"49":1,"289":1,"1645":1,"1795":1,"2014":1,"2079":1,"2444":1,"2580":1,"2925":1}}],["improving",{"2":{"460":1}}],["improvement",{"2":{"114":1,"175":1,"328":1}}],["improvements",{"0":{"84":1,"98":1,"107":1,"109":1,"175":1,"210":1},"1":{"110":1,"111":1,"112":1},"2":{"45":1,"107":1,"114":2,"134":1,"149":1,"176":1,"190":1,"191":2,"211":3,"222":1,"236":1,"1540":1,"2902":1}}],["improve",{"0":{"229":1},"2":{"93":1,"114":5,"134":1,"175":1,"176":4,"191":2,"211":3,"214":1,"222":1,"236":4,"249":1,"285":2,"294":1,"575":1,"609":1,"613":1,"1410":1,"1413":1,"1949":1,"2288":1,"2379":1,"2565":1,"2902":2}}],["improved",{"0":{"83":1},"2":{"10":2,"50":1,"74":1,"84":1,"174":1,"196":1,"620":1,"1299":1}}],["improper",{"2":{"249":1,"1378":1}}],["ibus",{"2":{"2331":3}}],["ibnuda",{"2":{"143":3,"149":2}}],["ibm122m",{"2":{"207":2}}],["ibm4704",{"2":{"133":1,"134":1}}],["ibm",{"2":{"114":1,"204":1,"207":11,"217":1,"222":1}}],["ixora",{"2":{"102":2}}],["ilovbee",{"2":{"2567":1}}],["illusion",{"2":{"1541":1}}],["illustrious",{"2":{"123":1}}],["illustrate",{"2":{"99":1,"194":1,"2914":1}}],["ill",{"2":{"417":1,"2925":1}}],["ili9341",{"2":{"2760":2,"2763":7}}],["ili9163",{"2":{"2760":2,"2763":7}}],["ili9486",{"2":{"248":1,"249":1,"2760":2,"2763":8}}],["ili9488",{"2":{"176":1,"2760":2,"2763":7}}],["ili9xxx",{"2":{"222":1}}],["ilumkb",{"2":{"102":1,"114":1}}],["ios",{"2":{"1957":1,"1958":1,"2374":2,"2454":5}}],["iohidconsumer",{"2":{"1357":2}}],["iohidfamily",{"2":{"1357":6}}],["io",{"2":{"74":1,"112":1,"561":1,"798":1,"2599":1,"2704":1,"2872":1}}],["iota",{"2":{"31":3,"34":2,"1955":10}}],["i",{"0":{"415":1,"605":1,"610":2,"612":1,"613":1,"1320":1,"1336":1,"1337":2,"1338":1,"1339":1,"1341":2,"1342":1,"1345":1,"1347":1,"1348":1,"1375":1,"1500":1,"1526":1,"1594":1,"1790":1,"2066":1,"2409":1,"2632":1},"1":{"416":1,"417":1,"418":1,"1342":2,"1595":1},"2":{"65":1,"105":2,"108":1,"114":1,"219":4,"249":2,"266":2,"328":1,"341":1,"375":1,"393":1,"397":1,"466":1,"473":1,"589":2,"596":1,"615":2,"622":1,"670":1,"683":1,"684":1,"764":1,"1248":1,"1269":1,"1292":1,"1319":1,"1352":1,"1425":1,"1446":1,"1450":1,"1523":3,"1535":2,"1537":1,"1538":4,"1612":2,"1661":1,"1781":2,"1850":6,"1855":1,"1947":3,"1948":3,"1999":1,"2037":1,"2059":4,"2068":1,"2079":6,"2088":6,"2094":1,"2095":8,"2096":4,"2203":4,"2286":3,"2319":2,"2329":2,"2330":4,"2332":4,"2386":1,"2389":1,"2417":3,"2423":2,"2424":2,"2430":2,"2439":1,"2502":1,"2510":3,"2540":4,"2542":3,"2563":1,"2567":1,"2589":1,"2662":1,"2689":1,"2744":1,"2745":1,"2746":3,"2762":6,"2764":19,"2792":2,"2941":2,"2949":1}}],["idproduct",{"2":{"1332":1}}],["idvendor",{"2":{"1332":1}}],["id=92",{"2":{"1319":1}}],["id=some",{"2":{"341":1}}],["idling",{"0":{"648":1},"1":{"649":1,"650":1}}],["idled",{"2":{"648":2}}],["idle",{"0":{"1598":1,"1792":1},"2":{"149":1,"211":1,"222":1,"236":2,"297":1,"308":1,"647":1,"1593":1,"1598":3,"1792":3,"2217":1,"2861":1,"2879":1}}],["idx",{"2":{"323":1,"1612":3}}],["idb",{"2":{"217":3}}],["idb60",{"2":{"211":1}}],["ids",{"0":{"169":1,"184":1},"1":{"170":1},"2":{"169":1,"176":1,"184":1,"222":1,"379":1,"570":2,"713":1,"1637":1,"2057":1,"2277":4}}],["id75",{"2":{"143":1,"149":3,"199":1,"211":2,"291":2,"294":1,"308":1}}],["idobo",{"2":{"143":1,"149":1}}],["idobao",{"2":{"143":6,"149":6,"168":4,"176":4,"266":1,"328":1}}],["id87v2",{"2":{"176":1}}],["id87",{"2":{"143":2,"149":1}}],["id80v1",{"2":{"176":1}}],["id80v3",{"2":{"176":1}}],["id80",{"2":{"143":2,"149":4,"168":4}}],["id67",{"2":{"143":4,"149":1,"176":1}}],["ides",{"2":{"2906":1}}],["ideally",{"2":{"1463":1,"1984":1,"2003":3,"2280":1,"2711":1}}],["ideal",{"2":{"1409":1,"1468":1,"2267":1,"2385":1,"2387":1,"2394":1}}],["idea",{"2":{"532":1,"619":1,"620":1,"1315":1,"1440":1,"1503":1,"1538":1,"1963":1,"2057":1,"2428":1,"2429":2,"2713":1}}],["identity",{"2":{"621":1}}],["identical",{"2":{"307":1,"1394":1,"1395":1,"1397":1,"1400":1,"1401":1,"1493":1,"1938":1,"2275":1,"2309":1,"2694":1,"2702":1,"2711":1,"2763":1,"2786":1,"2790":1,"2791":1}}],["identification",{"2":{"2569":1}}],["identifies",{"2":{"2570":1}}],["identified",{"2":{"312":1,"1538":1,"2567":1,"2571":2}}],["identifier",{"2":{"157":2,"520":1,"1423":1,"1630":1,"2576":1,"2750":2}}],["identifiers",{"2":{"110":1,"266":1,"1528":1,"1593":1}}],["identifying",{"2":{"2796":1}}],["identify",{"2":{"70":1,"110":1,"312":1,"1538":1,"1539":1,"1590":1,"2037":1,"2320":1,"2940":1}}],["ide",{"0":{"392":1},"2":{"132":1,"384":1,"385":1,"392":1,"393":1,"429":1,"2653":2,"2658":2,"2814":1}}],["id",{"0":{"370":1,"371":1,"372":1},"2":{"50":1,"70":2,"160":1,"169":2,"184":2,"191":2,"211":1,"277":1,"285":1,"376":1,"377":1,"403":1,"561":2,"1303":1,"1319":4,"1332":1,"2056":3,"2057":3,"2059":6,"2277":3,"2295":2,"2498":1,"2499":1,"2500":1,"2501":1,"2562":1,"2717":1,"2778":3,"2779":2,"2780":2,"2781":2,"2782":2,"2783":2,"2784":2,"2787":2,"2788":2,"2789":2,"2882":2}}],["iwrap",{"2":{"50":1}}],["italian",{"2":{"2887":9}}],["itunes",{"2":{"2510":1}}],["ition",{"2":{"2079":1}}],["ith",{"2":{"1781":1}}],["iterates",{"2":{"1953":1}}],["iterate",{"2":{"639":1}}],["iterators",{"2":{"520":1}}],["iterations",{"2":{"615":1}}],["iteration",{"2":{"65":1,"496":1,"646":1}}],["itemid=1",{"2":{"1319":1}}],["item",{"0":{"183":1},"2":{"268":1,"279":1,"526":2,"527":1,"751":1,"2312":1}}],["items",{"2":{"83":1,"112":1,"134":1,"183":1,"210":1,"236":2,"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"344":3,"403":1,"532":1}}],["it",{"0":{"27":1,"607":1,"668":1,"672":1,"673":1,"1320":2,"1331":1,"1342":1,"1348":1,"1498":1,"1525":1,"2479":1,"2617":1},"2":{"5":1,"6":1,"8":1,"14":2,"21":2,"23":1,"27":1,"31":2,"45":2,"50":1,"82":1,"89":1,"94":1,"98":1,"99":1,"105":2,"114":2,"116":2,"119":1,"123":1,"130":2,"133":1,"134":1,"149":1,"153":2,"154":1,"166":1,"173":1,"174":2,"176":1,"179":3,"182":2,"194":2,"195":2,"198":1,"199":1,"203":1,"213":1,"214":1,"228":2,"233":1,"235":1,"246":1,"251":2,"254":1,"259":1,"288":1,"294":1,"297":2,"302":1,"303":1,"315":1,"323":2,"328":1,"338":1,"340":1,"344":5,"365":1,"367":1,"370":1,"377":1,"386":1,"387":1,"389":1,"390":1,"391":1,"393":3,"396":2,"403":5,"409":1,"414":2,"415":1,"416":1,"417":1,"429":3,"430":1,"434":1,"435":2,"437":1,"440":1,"442":1,"443":1,"444":1,"445":1,"459":3,"463":3,"470":1,"475":1,"482":1,"489":3,"491":1,"494":2,"495":1,"496":1,"499":1,"512":2,"513":7,"514":1,"517":1,"525":1,"526":1,"528":1,"529":2,"531":1,"532":2,"533":1,"536":1,"538":2,"540":4,"541":1,"554":1,"559":2,"563":1,"564":3,"568":1,"569":2,"571":1,"572":1,"574":2,"575":1,"585":2,"586":1,"593":1,"596":2,"598":2,"600":2,"610":2,"611":1,"613":2,"619":8,"623":1,"624":1,"625":1,"627":1,"630":2,"631":3,"633":1,"634":2,"637":1,"643":2,"645":2,"646":1,"648":3,"651":4,"656":5,"657":2,"658":2,"659":2,"664":1,"666":3,"672":1,"678":1,"681":2,"683":2,"684":1,"694":2,"696":2,"710":3,"711":1,"712":2,"713":1,"720":1,"721":1,"723":1,"727":1,"748":1,"754":2,"755":1,"761":1,"768":1,"793":1,"797":4,"799":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1193":3,"1195":1,"1196":1,"1198":1,"1199":1,"1201":1,"1203":3,"1204":4,"1205":1,"1246":1,"1267":1,"1290":1,"1297":3,"1312":1,"1327":1,"1329":2,"1331":1,"1332":1,"1338":1,"1339":1,"1341":2,"1343":1,"1347":2,"1348":3,"1350":1,"1351":1,"1354":1,"1356":4,"1361":1,"1364":1,"1366":3,"1367":1,"1375":2,"1376":3,"1383":1,"1392":2,"1396":2,"1406":1,"1409":1,"1410":2,"1412":1,"1415":2,"1417":17,"1420":1,"1422":7,"1423":2,"1424":1,"1425":3,"1427":2,"1428":4,"1433":1,"1434":1,"1438":1,"1440":2,"1446":2,"1447":4,"1449":1,"1454":1,"1455":2,"1462":1,"1464":4,"1467":4,"1470":3,"1471":1,"1472":3,"1473":1,"1485":5,"1490":1,"1492":2,"1493":2,"1496":1,"1498":4,"1499":3,"1500":1,"1517":2,"1518":1,"1522":1,"1525":2,"1526":3,"1527":2,"1528":5,"1529":1,"1532":2,"1537":3,"1538":1,"1541":2,"1542":2,"1546":1,"1550":1,"1558":2,"1589":1,"1590":1,"1592":2,"1593":4,"1597":1,"1602":2,"1604":1,"1605":2,"1609":2,"1612":6,"1618":2,"1620":3,"1621":1,"1623":2,"1626":1,"1630":3,"1631":1,"1632":1,"1633":1,"1638":1,"1643":2,"1648":2,"1652":1,"1661":3,"1662":2,"1663":1,"1664":1,"1665":2,"1668":1,"1672":1,"1673":2,"1675":1,"1681":2,"1729":1,"1739":1,"1750":1,"1762":3,"1763":1,"1765":2,"1769":1,"1777":1,"1781":2,"1785":1,"1786":4,"1789":2,"1790":1,"1791":1,"1795":1,"1801":1,"1804":3,"1838":2,"1839":1,"1841":1,"1843":1,"1844":2,"1846":2,"1851":1,"1853":2,"1865":1,"1867":1,"1908":1,"1910":1,"1912":1,"1915":1,"1934":3,"1935":4,"1936":1,"1939":1,"1948":1,"1952":1,"1953":1,"1954":5,"1956":3,"1957":4,"1959":2,"1962":1,"1964":2,"1965":1,"1968":1,"1977":1,"1981":2,"1984":1,"1988":1,"1990":1,"1992":1,"1993":1,"2000":1,"2001":1,"2002":1,"2008":1,"2009":1,"2011":1,"2013":1,"2014":2,"2016":1,"2048":2,"2053":1,"2057":4,"2058":1,"2059":1,"2066":1,"2068":2,"2069":1,"2070":2,"2072":2,"2073":1,"2074":1,"2076":1,"2079":1,"2080":2,"2082":2,"2086":2,"2090":1,"2092":2,"2097":2,"2107":1,"2109":1,"2168":1,"2170":1,"2172":1,"2175":1,"2179":2,"2181":1,"2184":1,"2188":2,"2189":1,"2198":2,"2210":3,"2219":1,"2220":1,"2249":1,"2255":2,"2258":1,"2265":1,"2267":1,"2269":2,"2270":1,"2271":4,"2272":3,"2273":1,"2275":3,"2277":3,"2278":5,"2279":1,"2281":1,"2287":1,"2290":4,"2291":1,"2293":5,"2295":1,"2297":1,"2298":1,"2300":3,"2302":1,"2305":1,"2308":3,"2309":2,"2310":8,"2317":2,"2318":1,"2319":2,"2320":1,"2326":1,"2328":1,"2329":1,"2330":1,"2331":9,"2374":2,"2375":3,"2379":1,"2383":1,"2384":1,"2386":2,"2388":2,"2389":1,"2390":2,"2391":2,"2396":1,"2405":1,"2407":3,"2409":3,"2410":9,"2411":1,"2414":1,"2415":1,"2417":6,"2418":4,"2422":3,"2423":4,"2427":6,"2428":13,"2429":8,"2430":3,"2431":1,"2432":1,"2434":5,"2435":1,"2447":1,"2448":1,"2450":3,"2452":3,"2453":1,"2455":1,"2456":1,"2459":1,"2460":1,"2461":1,"2462":1,"2466":5,"2469":2,"2472":1,"2475":1,"2481":1,"2482":4,"2484":1,"2488":1,"2496":2,"2497":1,"2500":1,"2501":2,"2502":1,"2503":1,"2504":2,"2508":4,"2523":1,"2558":1,"2559":1,"2560":1,"2561":2,"2562":1,"2563":1,"2564":3,"2567":1,"2572":3,"2573":1,"2575":2,"2576":4,"2578":2,"2584":1,"2585":1,"2586":1,"2587":1,"2589":1,"2590":1,"2593":1,"2598":1,"2599":1,"2603":1,"2605":3,"2608":1,"2612":5,"2614":1,"2616":3,"2617":3,"2620":1,"2626":3,"2627":1,"2628":2,"2629":1,"2633":1,"2634":4,"2635":1,"2636":1,"2637":1,"2638":2,"2639":2,"2640":5,"2650":1,"2651":2,"2652":6,"2653":1,"2656":1,"2658":7,"2659":1,"2662":1,"2664":1,"2667":2,"2668":1,"2671":1,"2672":1,"2676":3,"2678":1,"2679":3,"2680":1,"2682":5,"2683":5,"2690":1,"2691":1,"2694":1,"2700":2,"2702":1,"2703":1,"2705":1,"2707":1,"2709":1,"2710":2,"2713":2,"2714":1,"2717":2,"2720":1,"2721":1,"2744":4,"2746":3,"2747":1,"2748":3,"2749":2,"2750":3,"2751":1,"2753":2,"2757":1,"2759":2,"2760":1,"2761":1,"2763":2,"2764":9,"2767":2,"2769":4,"2771":2,"2776":1,"2777":1,"2779":1,"2781":1,"2785":1,"2787":1,"2790":1,"2794":1,"2795":2,"2796":2,"2799":1,"2817":1,"2834":1,"2843":1,"2846":2,"2851":1,"2869":1,"2874":1,"2880":1,"2884":2,"2886":4,"2888":1,"2891":3,"2895":1,"2903":1,"2906":2,"2912":2,"2921":3,"2922":1,"2923":1,"2924":1,"2926":1,"2928":2,"2929":3,"2930":1,"2931":3,"2933":2,"2934":5,"2935":3,"2936":4,"2937":1,"2938":2,"2939":2,"2941":1,"2942":1,"2943":1,"2944":4,"2947":1,"2948":1,"2949":7}}],["itsybitsy",{"2":{"713":2,"2499":2}}],["itself",{"2":{"152":1,"383":1,"576":1,"588":1,"639":2,"664":1,"709":1,"711":1,"712":1,"714":1,"1463":1,"1522":1,"1529":1,"1535":1,"1593":2,"1627":1,"2294":1,"2388":1,"2390":1,"2417":1,"2428":1,"2430":1,"2482":1,"2506":1,"2553":1,"2684":1,"2707":1,"2730":1,"2795":1,"2884":1,"2930":1,"2940":1}}],["its",{"0":{"2657":1},"1":{"2658":1,"2659":1,"2660":1},"2":{"3":1,"7":1,"8":1,"15":1,"30":1,"33":1,"113":2,"114":1,"120":1,"133":1,"157":1,"174":1,"175":1,"195":1,"307":1,"392":1,"393":1,"411":1,"414":1,"558":1,"588":1,"711":1,"721":1,"729":1,"751":1,"754":1,"755":1,"756":2,"798":1,"1199":1,"1313":1,"1315":1,"1317":1,"1356":1,"1382":1,"1389":1,"1407":1,"1411":1,"1413":1,"1488":1,"1496":2,"1517":1,"1518":1,"1538":1,"1539":3,"1558":2,"1602":1,"1605":1,"1612":4,"1613":1,"1630":1,"1738":1,"1742":1,"1777":1,"1934":4,"1946":1,"1953":1,"1985":1,"2037":1,"2077":3,"2086":2,"2087":1,"2255":2,"2300":1,"2319":1,"2331":1,"2414":2,"2427":1,"2437":1,"2455":1,"2466":4,"2473":1,"2558":1,"2559":1,"2562":2,"2566":2,"2569":1,"2570":1,"2590":1,"2597":1,"2601":2,"2602":1,"2626":3,"2662":1,"2746":1,"2763":1,"2777":1,"2785":1,"2795":1,"2799":1,"2807":1,"2844":1,"2851":1,"2864":1,"2902":1,"2918":1,"2919":2,"2920":2,"2921":2,"2929":1,"2934":1}}],["ifkb",{"2":{"2567":1}}],["ifeq",{"2":{"2455":2}}],["ifnormation",{"2":{"179":1}}],["ifndef",{"2":{"134":1,"512":1,"1472":1,"1510":5,"1533":1,"2316":1,"2454":4,"2744":1}}],["ify",{"2":{"176":1}}],["ifdefs",{"2":{"114":1,"191":1,"211":1,"266":1,"1406":1}}],["ifdef",{"2":{"31":4,"34":4,"134":1,"211":1,"249":2,"512":1,"555":1,"647":3,"666":1,"1329":1,"1391":14,"1399":5,"1406":1,"1438":3,"1471":3,"1485":2,"1510":1,"1533":2,"1535":4,"1612":4,"1641":2,"1804":3,"1839":2,"1850":2,"1945":1,"1948":1,"1983":1,"2040":1,"2041":1,"2043":1,"2088":2,"2284":1,"2287":1,"2454":1}}],["if",{"0":{"141":1,"1338":1,"1339":1,"1342":1},"2":{"1":1,"7":1,"14":1,"16":1,"18":2,"21":1,"23":2,"31":4,"34":4,"37":1,"43":1,"45":1,"49":2,"50":2,"62":1,"87":1,"89":1,"90":9,"98":1,"105":6,"107":1,"114":2,"119":1,"125":2,"149":1,"152":1,"157":1,"158":2,"160":1,"182":1,"185":2,"194":3,"196":4,"198":1,"199":2,"201":1,"202":1,"206":1,"209":2,"214":1,"215":1,"218":1,"221":1,"222":1,"228":1,"230":1,"232":2,"233":1,"236":2,"240":3,"241":1,"245":1,"247":1,"248":1,"253":1,"254":1,"255":1,"256":1,"259":1,"266":1,"270":1,"272":1,"273":2,"276":1,"277":2,"281":1,"283":1,"284":1,"289":1,"306":1,"307":5,"315":1,"320":2,"323":1,"324":1,"325":1,"344":6,"353":1,"370":2,"373":1,"374":1,"375":1,"379":1,"381":1,"382":1,"383":1,"388":1,"389":1,"393":2,"394":1,"396":1,"398":1,"403":4,"411":1,"414":1,"415":1,"416":1,"418":1,"423":2,"429":1,"430":1,"432":1,"434":1,"435":1,"436":1,"437":1,"440":1,"442":1,"444":1,"445":1,"446":1,"458":1,"463":1,"465":1,"469":1,"488":2,"489":2,"492":2,"493":1,"494":1,"505":2,"507":1,"509":1,"510":1,"512":16,"513":2,"514":3,"518":1,"521":2,"524":2,"525":3,"530":1,"532":2,"533":3,"535":5,"537":1,"540":3,"543":1,"544":1,"556":1,"559":1,"560":1,"561":3,"562":1,"563":1,"564":10,"565":4,"568":2,"569":3,"570":4,"572":1,"574":1,"575":2,"576":1,"580":1,"588":1,"589":1,"593":7,"596":3,"598":1,"599":2,"600":1,"604":2,"605":1,"610":2,"611":1,"612":1,"613":3,"614":1,"615":1,"616":2,"617":1,"618":1,"619":5,"620":1,"621":1,"630":2,"631":2,"634":1,"639":1,"640":1,"644":1,"645":1,"646":1,"647":10,"648":1,"651":3,"652":2,"653":1,"656":5,"657":3,"660":1,"668":1,"671":1,"672":2,"673":2,"681":2,"684":1,"685":1,"693":1,"694":2,"696":2,"698":2,"709":1,"710":6,"711":3,"712":1,"713":1,"716":1,"720":2,"721":1,"725":2,"742":1,"748":2,"749":3,"750":1,"754":2,"761":2,"762":1,"764":1,"768":1,"771":2,"774":2,"777":2,"780":2,"783":2,"786":2,"789":2,"792":2,"793":1,"795":2,"799":3,"801":2,"827":2,"856":2,"861":1,"888":2,"920":2,"926":1,"955":2,"960":1,"989":2,"994":1,"1023":2,"1028":1,"1057":2,"1062":1,"1091":2,"1096":1,"1125":2,"1130":1,"1159":2,"1164":1,"1196":1,"1198":1,"1199":1,"1200":1,"1201":2,"1203":4,"1204":4,"1207":2,"1209":1,"1215":2,"1246":2,"1248":2,"1252":1,"1253":2,"1256":1,"1258":1,"1261":2,"1264":2,"1266":1,"1267":2,"1276":1,"1281":1,"1282":1,"1284":2,"1286":1,"1287":1,"1297":1,"1301":1,"1303":1,"1314":1,"1315":3,"1317":1,"1318":1,"1320":1,"1322":1,"1329":2,"1332":1,"1336":2,"1338":2,"1339":1,"1342":1,"1344":1,"1348":1,"1349":1,"1362":1,"1364":3,"1366":3,"1367":3,"1375":1,"1376":1,"1383":1,"1388":1,"1390":1,"1391":1,"1392":1,"1396":2,"1398":1,"1399":1,"1407":1,"1409":2,"1410":3,"1413":1,"1414":1,"1415":2,"1417":21,"1420":3,"1422":3,"1423":1,"1425":2,"1426":1,"1427":1,"1428":4,"1431":5,"1438":1,"1442":1,"1444":1,"1446":6,"1447":4,"1448":2,"1449":2,"1450":2,"1451":1,"1452":2,"1454":1,"1455":3,"1462":6,"1463":2,"1464":2,"1465":2,"1467":2,"1470":2,"1471":3,"1472":4,"1473":1,"1481":1,"1482":1,"1483":1,"1485":1,"1488":2,"1490":3,"1493":1,"1498":5,"1500":1,"1502":2,"1503":1,"1517":3,"1518":5,"1519":1,"1522":5,"1525":1,"1528":1,"1532":1,"1533":9,"1535":1,"1536":1,"1538":1,"1539":2,"1542":2,"1544":1,"1546":2,"1551":1,"1571":1,"1576":1,"1589":1,"1590":1,"1591":2,"1593":2,"1594":2,"1598":1,"1599":1,"1601":1,"1602":1,"1603":1,"1605":3,"1606":1,"1608":2,"1609":3,"1610":1,"1612":19,"1613":1,"1615":1,"1618":1,"1619":2,"1620":6,"1622":1,"1623":1,"1625":1,"1627":2,"1628":1,"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1638":1,"1640":1,"1641":9,"1647":1,"1648":1,"1652":1,"1661":1,"1662":1,"1663":1,"1664":1,"1665":3,"1666":3,"1667":1,"1668":14,"1671":1,"1673":3,"1675":1,"1676":4,"1678":3,"1681":6,"1686":1,"1687":2,"1699":1,"1705":1,"1709":1,"1724":1,"1729":1,"1743":1,"1750":1,"1765":2,"1766":1,"1770":1,"1779":1,"1781":4,"1782":5,"1784":2,"1785":1,"1786":3,"1788":2,"1792":1,"1794":2,"1795":2,"1796":1,"1798":4,"1802":2,"1803":1,"1804":5,"1815":2,"1817":2,"1818":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1838":1,"1839":2,"1844":1,"1846":2,"1847":7,"1850":1,"1851":1,"1852":6,"1855":2,"1864":1,"1907":1,"1923":2,"1924":1,"1935":1,"1936":1,"1937":1,"1940":1,"1947":3,"1948":4,"1949":1,"1951":1,"1952":2,"1953":2,"1954":24,"1958":2,"1960":1,"1962":5,"1965":1,"1968":1,"1970":1,"1974":1,"1983":3,"1984":1,"1985":3,"1986":1,"1987":2,"1988":3,"1989":1,"1990":1,"1992":1,"1993":2,"1994":4,"1996":5,"1998":1,"1999":1,"2000":1,"2001":2,"2008":4,"2011":1,"2012":5,"2013":2,"2014":2,"2031":1,"2040":1,"2043":1,"2048":2,"2051":1,"2054":1,"2056":1,"2058":1,"2059":6,"2065":1,"2068":1,"2069":4,"2074":1,"2075":1,"2076":4,"2077":7,"2079":2,"2080":1,"2082":2,"2083":8,"2088":1,"2090":1,"2091":9,"2094":2,"2095":4,"2096":6,"2097":1,"2106":1,"2167":1,"2179":2,"2181":2,"2182":2,"2183":1,"2185":1,"2189":1,"2191":2,"2192":1,"2193":1,"2194":1,"2199":2,"2203":1,"2206":1,"2207":1,"2208":1,"2211":1,"2218":3,"2220":1,"2221":1,"2223":1,"2225":1,"2259":3,"2260":2,"2264":1,"2267":1,"2268":1,"2271":2,"2272":1,"2273":1,"2274":3,"2275":5,"2277":5,"2278":4,"2286":3,"2287":3,"2290":19,"2292":1,"2293":3,"2294":1,"2295":2,"2297":2,"2298":2,"2300":4,"2301":1,"2302":1,"2305":2,"2306":1,"2309":7,"2310":7,"2314":1,"2315":2,"2316":4,"2317":13,"2318":3,"2319":11,"2320":1,"2321":2,"2322":1,"2327":1,"2328":1,"2329":1,"2330":1,"2331":3,"2332":1,"2347":1,"2361":1,"2366":1,"2368":1,"2375":1,"2379":6,"2381":10,"2382":1,"2383":2,"2384":2,"2386":1,"2388":1,"2391":3,"2393":1,"2395":1,"2397":1,"2398":1,"2404":1,"2407":2,"2410":3,"2415":1,"2416":1,"2417":5,"2418":2,"2419":1,"2422":1,"2423":1,"2426":1,"2427":2,"2428":3,"2429":7,"2430":1,"2431":2,"2432":1,"2433":1,"2434":5,"2435":2,"2441":1,"2450":2,"2452":1,"2453":3,"2454":2,"2456":1,"2460":3,"2461":2,"2462":1,"2464":4,"2465":2,"2466":1,"2472":1,"2474":1,"2483":1,"2490":1,"2497":1,"2502":3,"2503":2,"2506":1,"2508":4,"2511":2,"2540":1,"2558":1,"2564":1,"2565":1,"2567":3,"2568":2,"2569":3,"2570":1,"2572":4,"2573":2,"2576":2,"2578":1,"2579":3,"2580":2,"2583":1,"2584":3,"2585":1,"2586":1,"2587":1,"2592":1,"2593":1,"2594":1,"2598":2,"2600":2,"2601":1,"2603":1,"2604":2,"2605":1,"2606":1,"2607":1,"2608":3,"2610":1,"2612":3,"2613":1,"2614":1,"2616":3,"2617":2,"2619":1,"2621":1,"2626":2,"2628":2,"2629":1,"2633":1,"2634":1,"2635":2,"2636":2,"2637":1,"2640":2,"2650":2,"2651":2,"2652":14,"2656":1,"2658":2,"2659":2,"2662":1,"2666":1,"2667":1,"2671":1,"2674":1,"2678":3,"2680":1,"2682":1,"2683":3,"2684":1,"2685":2,"2686":1,"2691":1,"2694":1,"2702":1,"2707":1,"2709":3,"2711":2,"2712":1,"2714":1,"2717":2,"2734":1,"2743":1,"2744":4,"2746":16,"2747":5,"2748":1,"2750":1,"2751":1,"2752":2,"2756":1,"2759":1,"2761":5,"2762":4,"2763":2,"2764":22,"2767":4,"2768":2,"2769":1,"2770":2,"2771":4,"2772":1,"2774":2,"2775":1,"2776":3,"2778":1,"2780":1,"2781":6,"2785":2,"2787":1,"2788":1,"2789":2,"2790":3,"2792":1,"2794":1,"2797":1,"2800":1,"2834":1,"2840":1,"2853":4,"2869":1,"2876":2,"2880":1,"2885":1,"2886":1,"2887":1,"2888":1,"2889":3,"2890":3,"2891":1,"2892":3,"2894":2,"2895":1,"2897":1,"2903":1,"2906":1,"2907":1,"2911":2,"2912":12,"2913":5,"2919":7,"2920":4,"2921":3,"2923":2,"2924":3,"2925":5,"2926":4,"2927":2,"2928":3,"2930":3,"2931":2,"2934":1,"2937":1,"2941":3,"2943":2,"2944":2,"2946":1,"2949":2}}],["innovation",{"2":{"2902":1}}],["inner",{"0":{"1783":1},"1":{"1784":1,"1785":1,"1786":1},"2":{"362":1,"1955":1,"1998":1,"2180":1,"2556":1}}],["inbound",{"2":{"2277":1}}],["inoperable",{"2":{"1376":1}}],["inheriting",{"2":{"2869":1}}],["inheritance",{"2":{"538":1}}],["inherently",{"2":{"1787":1}}],["inherent",{"2":{"1288":1}}],["injection",{"0":{"2226":1}}],["injected",{"2":{"2222":1}}],["inject",{"2":{"626":1,"1622":1}}],["inability",{"2":{"2733":1}}],["inadvertently",{"2":{"2567":1}}],["inactivity",{"2":{"1949":2,"2288":1}}],["inactive",{"2":{"1422":1,"2014":1}}],["inappropriate",{"2":{"621":1}}],["inaugural",{"2":{"0":1}}],["ini",{"2":{"473":1,"474":1,"476":1,"482":1,"483":1,"489":1}}],["initiator2target",{"2":{"2277":4}}],["initiated",{"2":{"1936":1}}],["initiative",{"2":{"213":1}}],["initially",{"2":{"2558":1}}],["initial",{"0":{"1802":1,"2596":1},"1":{"2597":1,"2598":1,"2599":1,"2600":1,"2601":1},"2":{"93":1,"130":1,"134":2,"149":2,"188":1,"191":1,"199":2,"266":1,"1487":1,"1936":5,"1971":5,"2071":2,"2558":1,"2600":1,"2747":2,"2855":1,"2918":1}}],["initializing",{"2":{"634":1,"714":1,"2046":1,"2273":1,"2684":1,"2934":1}}],["initializers",{"2":{"1769":1,"1781":1}}],["initialized",{"2":{"633":1,"634":2,"637":2,"640":1,"641":1,"691":1,"1539":1,"1591":1,"1954":1,"2290":1,"2502":1,"2552":1,"2686":1}}],["initialize",{"2":{"624":1,"625":1,"701":1,"733":1,"734":1,"768":1,"809":1,"835":1,"867":1,"897":1,"932":1,"966":1,"1000":1,"1034":1,"1068":1,"1102":1,"1136":1,"1170":1,"1223":1,"1250":1,"1271":1,"1305":1,"1367":2,"1704":1,"1954":1,"2290":1,"2319":1,"2687":1}}],["initializes",{"2":{"49":1}}],["initialization",{"0":{"633":1,"634":1,"637":1,"640":1,"2684":1},"1":{"634":1,"635":2,"636":2,"637":1,"638":2,"639":2,"640":1,"641":2,"642":2,"2685":1,"2686":1,"2687":1},"2":{"149":1,"176":2,"236":1,"249":1,"288":1,"341":2,"420":1,"421":1,"633":2,"634":1,"640":1,"651":1,"1378":1,"1428":2,"1626":1,"1988":2,"2001":1,"2684":2,"2686":1,"2687":1,"2746":1}}],["initialised",{"2":{"176":1}}],["initialise",{"2":{"65":1,"639":1,"2756":1,"2764":2}}],["initialisation",{"2":{"49":1,"73":1,"77":1,"94":2,"639":3,"745":1,"2456":1,"2685":1,"2746":1,"2756":1,"2764":4}}],["initilization",{"2":{"149":1}}],["init",{"0":{"635":1,"636":1,"638":1,"641":1,"642":1,"649":1,"701":1,"733":1,"768":1,"809":1,"835":1,"867":1,"897":1,"932":1,"966":1,"1000":1,"1034":1,"1068":1,"1102":1,"1136":1,"1170":1,"1223":1,"1250":1,"1271":1,"1305":1,"1704":1,"2685":1,"2686":1,"2687":1},"1":{"734":1,"836":1,"868":1,"898":1,"933":1,"967":1,"1001":1,"1035":1,"1069":1,"1103":1,"1137":1,"1171":1,"1224":1,"1272":1,"1705":1},"2":{"31":2,"34":4,"49":1,"50":1,"65":1,"114":2,"134":1,"149":2,"176":3,"191":7,"199":1,"236":3,"249":6,"266":2,"277":1,"317":1,"328":1,"332":1,"337":1,"420":1,"534":1,"624":1,"625":7,"633":4,"635":2,"636":2,"638":2,"639":1,"641":2,"642":2,"648":1,"649":1,"650":2,"745":1,"768":1,"1322":1,"1416":2,"1417":6,"1418":2,"1419":2,"1420":2,"1486":1,"1551":1,"1628":1,"1638":12,"1701":2,"1702":2,"1706":1,"1707":1,"1708":1,"1850":3,"1948":1,"1954":5,"1955":2,"1983":3,"1984":1,"1988":2,"1990":1,"1997":1,"2001":1,"2041":1,"2043":1,"2046":1,"2088":3,"2097":2,"2189":1,"2191":1,"2273":1,"2277":1,"2287":1,"2290":4,"2456":1,"2508":1,"2600":1,"2685":4,"2686":4,"2687":2,"2746":8,"2756":3,"2763":3,"2764":8,"2774":1,"2949":1}}],["inexpensively",{"2":{"2835":1}}],["inefficient",{"2":{"2198":1,"2764":1}}],["inett",{"2":{"249":1}}],["inertia",{"0":{"1939":1},"2":{"190":2,"191":2,"1934":1,"1939":3}}],["inertial",{"2":{"175":1,"176":1,"1940":1,"1985":2}}],["inland",{"2":{"217":1,"317":1,"2397":1}}],["inline",{"2":{"50":1,"199":1,"354":2}}],["insulate",{"2":{"2429":1}}],["insulation",{"2":{"2425":3,"2429":2}}],["inspected",{"2":{"2749":1}}],["inspect",{"2":{"2428":1}}],["inspiration",{"2":{"1766":1,"1850":1,"2079":1,"2088":1,"2746":1}}],["inseparable",{"2":{"2726":1}}],["insensitive",{"2":{"1527":1}}],["insertion",{"2":{"2410":1}}],["inserting",{"2":{"710":1}}],["inserted",{"2":{"1641":1,"1668":1,"2330":3}}],["inserts",{"2":{"366":1}}],["insert",{"2":{"249":1,"266":1,"339":1,"613":2,"1663":1,"1694":1,"1964":1,"2331":1,"2510":3,"2548":2,"2550":1}}],["insights",{"2":{"1209":1,"1998":1}}],["inside",{"2":{"169":1,"184":1,"241":1,"253":1,"270":1,"281":1,"489":1,"544":1,"629":1,"1200":1,"1532":2,"1633":1,"1850":1,"2088":1,"2181":1,"2435":1,"2451":1,"2556":1,"2572":2,"2585":1,"2603":1,"2626":1,"2682":2,"2684":1,"2709":3,"2764":4,"2944":1}}],["ins",{"2":{"589":2,"2510":1,"2548":1}}],["instructs",{"2":{"2764":1}}],["instruct",{"2":{"2272":1,"2632":1}}],["instruction",{"2":{"1726":1,"2795":1}}],["instructions",{"0":{"2382":1,"2417":1,"2431":1},"1":{"2383":1,"2384":1,"2385":1,"2386":1,"2387":1,"2388":1,"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2418":1,"2419":1},"2":{"36":1,"112":1,"240":1,"328":1,"333":1,"385":1,"386":1,"426":1,"429":1,"594":1,"684":1,"710":1,"1205":1,"1292":1,"1314":1,"1315":1,"1723":1,"2057":1,"2502":1,"2593":1,"2603":2,"2607":1,"2612":1,"2624":1,"2627":1,"2628":1,"2672":1,"2705":1,"2746":1,"2748":1,"2764":3,"2795":1,"2814":1,"2852":2,"2935":1}}],["instructing",{"2":{"23":1,"2637":1}}],["instant",{"2":{"2317":1,"2569":1}}],["instantly",{"0":{"320":1},"2":{"320":1,"328":1,"2930":1}}],["instances",{"2":{"277":1,"2638":1}}],["instance",{"2":{"31":3,"34":1,"152":1,"344":3,"403":1,"519":1,"633":1,"717":1,"722":1,"1203":1,"1204":1,"1439":1,"1447":1,"1465":1,"1470":1,"1471":1,"1472":1,"1527":1,"1528":1,"1529":1,"1546":1,"1591":1,"1593":1,"1598":1,"1602":1,"1608":1,"1742":1,"1794":1,"2008":1,"2070":1,"2073":1,"2076":1,"2302":1,"2317":1,"2318":1,"2381":1,"2626":1,"2694":1,"2711":1,"2746":1,"2889":1,"2893":1,"2911":2,"2912":1,"2918":1,"2923":1,"2925":1,"2928":1,"2930":1,"2931":1}}],["installs",{"2":{"2496":1,"2680":1}}],["installer",{"2":{"513":1,"1318":1,"2676":1,"2677":2,"2679":2}}],["installed",{"2":{"23":1,"65":1,"385":1,"460":1,"461":1,"488":2,"709":1,"711":1,"1318":1,"1528":1,"1668":1,"2178":1,"2331":1,"2410":1,"2593":1,"2622":1,"2626":1,"2658":1,"2660":1,"2678":1,"2680":1}}],["installing",{"0":{"385":1,"2677":1},"1":{"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"2678":1},"2":{"317":1,"665":1,"2390":1,"2422":1,"2660":1,"2679":1}}],["install",{"0":{"2593":1,"2657":1,"2658":1,"2660":1},"1":{"2658":1,"2659":1,"2660":1},"2":{"158":2,"160":2,"191":1,"294":1,"384":1,"385":1,"387":2,"388":2,"389":1,"390":1,"392":1,"393":2,"420":1,"426":3,"488":1,"513":1,"710":2,"1316":2,"1318":1,"1500":1,"1528":2,"1541":1,"2331":1,"2406":1,"2433":1,"2506":2,"2593":7,"2618":1,"2620":1,"2621":2,"2622":1,"2623":2,"2624":1,"2625":2,"2626":2,"2627":2,"2656":1,"2657":1,"2658":2,"2680":1,"2683":1}}],["installation",{"0":{"158":1,"426":1,"709":1,"710":1,"711":1,"2623":1,"2625":1,"2626":1,"2627":1},"1":{"710":1,"711":1,"712":1,"713":1},"2":{"158":2,"173":1,"191":1,"240":1,"386":3,"709":1,"712":1,"1318":2,"2325":1,"2622":1,"2626":2,"2627":1,"2658":1,"2659":2,"2682":1,"2683":1}}],["instability",{"2":{"73":1}}],["instead",{"2":{"5":1,"17":1,"25":1,"30":1,"33":1,"45":2,"65":1,"70":1,"87":1,"88":1,"95":1,"104":1,"127":1,"128":1,"149":3,"164":1,"184":1,"188":1,"191":1,"195":1,"196":1,"199":1,"202":1,"206":1,"211":1,"215":1,"218":1,"232":2,"234":1,"240":2,"265":1,"268":1,"283":1,"285":1,"302":1,"308":1,"323":2,"332":1,"337":1,"434":1,"450":1,"461":1,"470":1,"473":1,"511":1,"516":2,"524":1,"534":1,"546":1,"561":1,"563":1,"564":2,"565":1,"570":1,"588":1,"593":2,"615":1,"639":2,"660":1,"672":1,"684":1,"694":1,"698":1,"710":2,"711":1,"719":1,"722":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1193":1,"1196":1,"1215":1,"1283":1,"1284":1,"1297":2,"1302":1,"1333":1,"1348":1,"1351":1,"1352":1,"1354":1,"1364":1,"1367":1,"1379":1,"1392":1,"1396":1,"1414":1,"1422":1,"1438":1,"1439":1,"1450":1,"1451":1,"1455":1,"1457":1,"1472":1,"1518":2,"1527":1,"1534":1,"1538":1,"1545":1,"1546":2,"1549":1,"1558":1,"1602":1,"1612":1,"1622":2,"1623":1,"1633":1,"1665":1,"1672":1,"1742":1,"1769":1,"1777":1,"1786":1,"1788":1,"1796":1,"1844":1,"1852":1,"1936":1,"1953":2,"1983":1,"1985":2,"1993":1,"1994":1,"2012":2,"2046":1,"2048":1,"2065":1,"2073":1,"2080":1,"2091":1,"2096":1,"2178":1,"2181":1,"2219":1,"2222":1,"2269":1,"2281":1,"2297":1,"2309":1,"2329":2,"2330":1,"2331":1,"2379":1,"2383":1,"2393":1,"2409":1,"2414":2,"2424":1,"2432":1,"2434":1,"2446":1,"2482":1,"2494":1,"2496":1,"2504":1,"2510":1,"2558":1,"2562":1,"2572":1,"2590":1,"2606":1,"2626":2,"2627":2,"2634":1,"2638":1,"2652":1,"2659":1,"2663":1,"2684":1,"2717":1,"2720":1,"2733":1,"2744":2,"2746":2,"2748":1,"2750":1,"2759":1,"2762":2,"2763":3,"2764":2,"2771":2,"2846":1,"2861":1,"2871":1,"2878":1,"2884":1,"2892":1,"2918":1,"2919":1,"2920":1,"2921":1,"2928":2,"2931":1,"2936":1,"2941":1}}],["instituted",{"2":{"1":1}}],["invalidate",{"2":{"1419":2}}],["invalid",{"2":{"222":1,"236":2,"249":3,"285":1,"293":1,"294":2,"305":1,"314":1,"333":1,"657":1,"659":1,"1253":1,"1795":1,"2453":1}}],["invited",{"2":{"194":1,"206":1}}],["invisible",{"2":{"176":1,"2425":1}}],["invented",{"2":{"1350":1}}],["inversion",{"2":{"222":1}}],["inversely",{"2":{"722":1}}],["inverse",{"2":{"222":1,"568":1}}],["inverts",{"2":{"211":1,"1428":1,"1597":1,"1774":1,"1954":6,"1985":2,"1987":2,"2290":6}}],["inverted",{"2":{"199":1,"285":1,"294":1,"1838":1,"1954":1,"2290":1}}],["invert",{"0":{"1597":1,"2049":1,"2050":1},"2":{"114":3,"190":1,"191":1,"211":1,"222":1,"797":1,"1428":1,"1597":2,"1742":1,"1793":1,"1795":1,"1954":13,"1985":2,"1987":3,"1988":1,"1989":1,"2049":2,"2050":5,"2290":9,"2861":2}}],["investigations",{"2":{"134":1}}],["invoking",{"2":{"2076":1,"2277":1,"2466":1,"2678":1}}],["invoke",{"2":{"294":1,"627":1,"647":1,"2277":1,"2330":1,"2764":1,"2934":1}}],["invoked",{"2":{"92":1,"574":1,"646":1,"656":1,"657":2,"658":2,"659":1,"1798":1,"1807":1,"1808":1,"1809":1,"1908":1,"1910":1,"1912":1,"1915":1,"1961":1,"2061":1,"2168":1,"2170":1,"2172":1,"2175":1,"2309":1,"2340":1,"2342":1,"2418":1,"2763":1,"2764":1}}],["involve",{"2":{"2325":1,"2422":1}}],["involves",{"2":{"623":1,"2926":1}}],["involved",{"2":{"610":1,"712":1,"2713":1}}],["involving",{"2":{"99":1,"690":1,"2075":1,"2914":1,"2925":1}}],["invocations",{"2":{"1961":1,"2948":1}}],["invocation",{"2":{"176":1,"236":1,"656":1}}],["inputting",{"2":{"1614":1,"1615":1,"2330":1,"2418":1}}],["inputs",{"2":{"639":1,"690":2,"1359":1,"1410":1,"1986":1,"2040":1,"2428":1,"2759":2}}],["input",{"0":{"1355":1,"2329":1,"2331":1,"2334":1,"2336":1,"2338":1,"2339":1,"2340":2,"2342":2,"2344":1,"2345":1,"2346":1,"2471":1},"1":{"2330":1,"2335":1,"2337":1,"2341":2,"2343":2},"2":{"94":1,"114":1,"143":4,"149":1,"176":1,"199":2,"203":2,"236":2,"243":3,"249":2,"297":1,"312":1,"444":1,"561":1,"565":1,"639":2,"768":2,"797":6,"1213":1,"1413":4,"1442":1,"1532":3,"1699":1,"1738":2,"1742":1,"1749":1,"1784":1,"1785":1,"1786":2,"1787":1,"1986":1,"2015":1,"2043":1,"2213":1,"2272":1,"2294":1,"2310":1,"2324":1,"2325":2,"2327":7,"2328":6,"2330":2,"2331":17,"2332":7,"2334":1,"2335":1,"2336":1,"2337":1,"2338":1,"2339":1,"2340":1,"2341":2,"2342":1,"2343":2,"2344":2,"2345":2,"2346":2,"2347":2,"2359":1,"2362":1,"2363":1,"2364":1,"2367":1,"2369":1,"2370":1,"2374":1,"2384":1,"2390":1,"2391":1,"2396":2,"2407":2,"2428":1,"2475":1,"2477":2,"2502":3,"2540":7,"2669":1,"2746":1,"2761":1,"2762":16,"2795":1,"2865":1,"2872":2,"2876":1,"2886":1,"2922":1,"2925":1,"2930":1,"2947":1}}],["induced",{"2":{"1788":1,"2928":1}}],["industry",{"2":{"149":1}}],["indisinguishable",{"2":{"2763":1}}],["indirect",{"2":{"2331":1}}],["individually",{"2":{"1247":1,"2444":1}}],["individual",{"2":{"544":1,"743":1,"1288":1,"1289":1,"1464":1,"1503":2,"1541":1,"1547":1,"1766":1,"1843":2,"2039":1,"2178":1,"2319":1,"2417":1,"2445":1,"2694":1}}],["indicative",{"2":{"2317":1}}],["indicating",{"2":{"1781":1,"2450":1,"2926":1}}],["indication",{"2":{"1416":1,"1417":6,"1429":1,"1847":1,"1855":1,"2083":1,"2094":1}}],["indicated",{"2":{"1538":1,"1954":1,"2290":1,"2295":1,"2296":1,"2747":1}}],["indicate",{"2":{"1446":1,"1473":1,"1538":1,"1630":1,"2096":1,"2585":1,"2652":1}}],["indicates",{"2":{"565":1,"582":1,"583":1,"584":1,"651":2,"1651":1,"1664":1,"1723":1,"2073":1,"2558":1,"2585":1}}],["indicator",{"0":{"185":1,"2095":1},"1":{"2096":1,"2097":1},"2":{"114":1,"185":1,"191":2,"199":1,"266":1,"298":1,"317":1,"570":1,"1544":1,"1648":1,"1653":1,"1654":1,"1836":1,"1838":1,"1841":2,"1847":1,"1851":1,"1855":3,"1865":1,"1867":1,"2083":1,"2090":1,"2094":3,"2095":3,"2096":2,"2107":1,"2109":1,"2668":1,"2746":2,"2857":1,"2880":1}}],["indicators",{"0":{"1835":1,"1855":1,"1908":1,"1910":1,"1912":1,"1915":1,"2094":1,"2097":1,"2168":1,"2170":1,"2172":1,"2175":1,"2867":1},"1":{"1836":1,"1837":1,"1838":1,"1839":1,"1840":1,"1841":1,"1842":1,"1843":1,"1909":1,"1911":1,"2169":1,"2171":1},"2":{"63":1,"93":1,"114":1,"149":1,"185":4,"191":1,"211":1,"222":2,"589":1,"668":1,"685":1,"1638":12,"1835":1,"1836":1,"1855":6,"2094":6,"2095":3,"2096":3,"2097":1,"2188":2,"2826":1,"2867":2,"2880":1}}],["indices",{"2":{"149":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"2303":1,"2329":1,"2330":1,"2877":1}}],["indemnification",{"2":{"2727":1}}],["indefinite",{"2":{"2008":1}}],["indefinitely",{"2":{"1598":1,"2570":1,"2761":1,"2764":1}}],["indeed",{"2":{"646":1}}],["indenting",{"2":{"512":1}}],["indent",{"2":{"352":1,"512":2,"514":1,"521":1}}],["indented",{"0":{"352":1},"2":{"354":2,"521":1}}],["indentation",{"2":{"249":1,"512":2,"2599":1}}],["independence",{"2":{"307":1}}],["independently",{"2":{"1610":1,"1939":1,"1983":1,"2189":1,"2267":1,"2475":1}}],["independent",{"0":{"1619":1},"1":{"1620":1},"2":{"113":1,"114":1,"176":1,"1422":1,"2251":1,"2669":1,"2855":1}}],["indexes",{"2":{"2305":1}}],["indexed",{"2":{"690":2,"694":1,"2557":1,"2662":1,"2781":5}}],["index>",{"2":{"434":1}}],["indexing",{"2":{"333":1}}],["index",{"0":{"702":1,"735":1,"739":1,"812":1,"816":1,"820":1,"822":1,"835":1,"837":1,"839":1,"843":1,"847":1,"849":1,"851":1,"853":1,"867":1,"869":1,"871":1,"875":1,"879":1,"881":1,"883":1,"885":1,"897":1,"899":1,"901":1,"903":1,"907":1,"911":1,"913":1,"915":1,"917":1,"932":1,"934":1,"936":1,"938":1,"942":1,"946":1,"948":1,"950":1,"952":1,"966":1,"968":1,"970":1,"972":1,"976":1,"980":1,"982":1,"984":1,"986":1,"1000":1,"1002":1,"1004":1,"1006":1,"1010":1,"1014":1,"1016":1,"1018":1,"1020":1,"1034":1,"1036":1,"1038":1,"1040":1,"1044":1,"1048":1,"1050":1,"1052":1,"1054":1,"1068":1,"1070":1,"1072":1,"1074":1,"1078":1,"1082":1,"1084":1,"1086":1,"1088":1,"1102":1,"1104":1,"1106":1,"1108":1,"1112":1,"1116":1,"1118":1,"1120":1,"1122":1,"1136":1,"1138":1,"1140":1,"1142":1,"1146":1,"1150":1,"1152":1,"1154":1,"1156":1,"1170":1,"1172":1,"1174":1,"1176":1,"1180":1,"1184":1,"1186":1,"1188":1,"1190":1,"1223":1,"1225":1,"1227":1,"1229":1,"1233":1,"1237":1,"1239":1,"1241":1,"1243":1,"1306":1,"1719":1,"1721":1,"1865":1,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2107":1,"2351":1,"2354":1,"2357":1},"1":{"703":1,"736":1,"740":1,"813":1,"817":1,"821":1,"823":1,"836":1,"838":1,"840":1,"844":1,"848":1,"850":1,"852":1,"854":1,"868":1,"870":1,"872":1,"876":1,"880":1,"882":1,"884":1,"886":1,"898":1,"900":1,"902":1,"904":1,"908":1,"912":1,"914":1,"916":1,"918":1,"933":1,"935":1,"937":1,"939":1,"943":1,"947":1,"949":1,"951":1,"953":1,"967":1,"969":1,"971":1,"973":1,"977":1,"981":1,"983":1,"985":1,"987":1,"1001":1,"1003":1,"1005":1,"1007":1,"1011":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":1,"1039":1,"1041":1,"1045":1,"1049":1,"1051":1,"1053":1,"1055":1,"1069":1,"1071":1,"1073":1,"1075":1,"1079":1,"1083":1,"1085":1,"1087":1,"1089":1,"1103":1,"1105":1,"1107":1,"1109":1,"1113":1,"1117":1,"1119":1,"1121":1,"1123":1,"1137":1,"1139":1,"1141":1,"1143":1,"1147":1,"1151":1,"1153":1,"1155":1,"1157":1,"1171":1,"1173":1,"1175":1,"1177":1,"1181":1,"1185":1,"1187":1,"1189":1,"1191":1,"1224":1,"1226":1,"1228":1,"1230":1,"1234":1,"1238":1,"1240":1,"1242":1,"1244":1,"1307":1,"1720":1,"1722":1,"1866":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2031":1,"2108":1,"2352":1,"2353":1,"2355":1,"2356":1,"2358":1},"2":{"46":3,"90":10,"105":8,"160":1,"324":1,"325":2,"333":1,"341":1,"591":1,"613":2,"647":1,"691":1,"703":2,"729":2,"732":1,"736":3,"740":2,"755":1,"805":2,"813":3,"817":3,"821":3,"823":3,"829":1,"831":2,"834":1,"836":2,"838":2,"840":3,"844":3,"848":3,"850":3,"852":2,"854":2,"858":1,"863":2,"866":1,"868":2,"870":2,"872":3,"876":3,"880":3,"882":3,"884":2,"886":2,"890":1,"893":2,"896":1,"898":2,"900":2,"902":2,"904":3,"908":3,"912":3,"914":3,"916":2,"918":2,"922":1,"923":1,"928":2,"931":1,"933":2,"935":2,"937":2,"939":3,"943":3,"947":3,"949":3,"951":2,"953":2,"957":1,"962":2,"965":1,"967":2,"969":2,"971":2,"973":3,"977":3,"981":3,"983":3,"985":2,"987":2,"991":1,"996":2,"999":1,"1001":2,"1003":2,"1005":2,"1007":3,"1011":3,"1015":3,"1017":3,"1019":2,"1021":2,"1025":1,"1030":2,"1033":1,"1035":2,"1037":2,"1039":2,"1041":3,"1045":3,"1049":3,"1051":3,"1053":2,"1055":2,"1059":1,"1064":2,"1067":1,"1069":2,"1071":2,"1073":2,"1075":3,"1079":3,"1083":3,"1085":3,"1087":2,"1089":2,"1093":1,"1094":1,"1098":2,"1101":1,"1103":2,"1105":2,"1107":2,"1109":3,"1113":3,"1117":3,"1119":3,"1121":2,"1123":2,"1127":1,"1128":1,"1132":2,"1135":1,"1137":2,"1139":2,"1141":2,"1143":3,"1147":3,"1151":3,"1153":3,"1155":2,"1157":2,"1161":1,"1166":2,"1169":1,"1171":2,"1173":2,"1175":2,"1177":3,"1181":3,"1185":3,"1187":3,"1189":2,"1191":2,"1217":1,"1219":2,"1222":1,"1224":2,"1226":2,"1228":2,"1230":3,"1234":3,"1238":3,"1240":3,"1242":2,"1244":2,"1307":2,"1319":1,"1345":1,"1353":1,"1378":1,"1386":1,"1387":1,"1605":2,"1612":13,"1613":3,"1617":5,"1618":7,"1641":4,"1668":7,"1720":2,"1722":2,"1752":1,"1754":1,"1843":2,"1846":7,"1855":2,"1866":2,"1878":1,"1913":2,"1916":2,"1947":2,"1949":2,"1953":1,"1954":4,"1983":1,"2001":2,"2003":1,"2008":1,"2022":2,"2024":2,"2026":2,"2028":2,"2030":2,"2082":7,"2094":2,"2095":5,"2108":2,"2120":1,"2173":2,"2176":2,"2198":4,"2286":2,"2288":2,"2290":4,"2309":1,"2316":2,"2329":1,"2332":2,"2351":1,"2352":1,"2353":1,"2354":1,"2355":2,"2357":1,"2358":2,"2371":1,"2372":2,"2418":1,"2540":2,"2634":1,"2781":3,"2787":3,"2869":1}}],["inf",{"2":{"712":4}}],["infrequently",{"2":{"214":1}}],["infrastructure",{"0":{"51":1,"65":1,"70":1,"76":1,"95":1},"2":{"2405":1}}],["influence",{"2":{"203":1,"633":1,"2913":1}}],["inferred",{"2":{"2719":1,"2720":1}}],["inferior",{"2":{"1410":1}}],["infer",{"2":{"133":1,"134":1,"236":1,"266":1}}],["infinity87",{"2":{"211":3}}],["infinity60",{"2":{"143":2,"236":1}}],["infinity",{"2":{"114":3,"134":1,"143":2,"2283":1,"2417":2}}],["infinitely",{"2":{"555":1}}],["infinite",{"2":{"93":1,"179":1,"339":1,"1802":1}}],["informing",{"2":{"2572":1,"2587":1}}],["informs",{"2":{"656":1}}],["inform",{"2":{"276":1,"750":1,"759":1}}],["informed",{"2":{"275":1,"2570":1}}],["information",{"0":{"588":1,"2382":1,"2670":1},"1":{"2383":1,"2384":1,"2385":1,"2386":1,"2387":1,"2388":1,"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2671":1,"2672":1},"2":{"2":1,"14":1,"70":1,"118":1,"132":1,"152":1,"153":1,"169":1,"170":2,"174":1,"182":1,"184":2,"194":1,"196":1,"206":1,"213":1,"247":1,"285":1,"288":2,"289":1,"297":1,"298":1,"304":1,"306":1,"315":1,"320":1,"331":1,"339":1,"378":1,"379":1,"437":3,"466":1,"467":1,"468":1,"486":1,"490":1,"494":1,"561":2,"570":2,"571":1,"574":1,"632":1,"656":1,"665":2,"672":1,"684":1,"693":1,"694":1,"721":1,"743":1,"752":1,"755":1,"762":1,"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1192":1,"1209":1,"1289":1,"1318":1,"1322":1,"1328":1,"1330":1,"1356":1,"1363":1,"1364":1,"1397":1,"1403":1,"1433":1,"1440":2,"1547":1,"1558":1,"1580":1,"1592":2,"1630":1,"1634":1,"1835":1,"1845":1,"1964":1,"1990":1,"1998":1,"2037":1,"2039":1,"2057":1,"2081":1,"2096":1,"2178":1,"2179":1,"2276":1,"2281":1,"2310":1,"2382":1,"2411":1,"2413":1,"2414":2,"2417":1,"2418":4,"2426":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2452":1,"2502":1,"2557":1,"2572":1,"2575":1,"2589":1,"2612":1,"2616":1,"2617":1,"2622":1,"2642":1,"2683":3,"2712":1,"2714":3,"2745":1,"2761":1,"2763":2,"2764":3,"2789":1,"2851":5,"2852":1,"2929":1,"2942":1,"2949":1}}],["info",{"0":{"437":1,"667":1,"670":1,"2453":1,"2851":1},"1":{"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"2852":1,"2853":1,"2854":1,"2855":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2861":1,"2862":1,"2863":1,"2864":1,"2865":1,"2866":1,"2867":1,"2868":1,"2869":1,"2870":1,"2871":1,"2872":1,"2873":1,"2874":1,"2875":1,"2876":1,"2877":1,"2878":1,"2879":1,"2880":1,"2881":1,"2882":1,"2883":1},"2":{"70":33,"73":1,"76":4,"99":1,"109":1,"110":1,"111":2,"112":1,"114":5,"134":1,"141":1,"149":1,"160":1,"169":2,"176":3,"184":3,"191":4,"198":1,"199":4,"201":5,"211":22,"213":2,"222":2,"224":2,"232":1,"236":8,"238":1,"249":26,"262":1,"266":3,"277":1,"333":1,"344":1,"352":2,"433":4,"436":1,"437":4,"443":2,"448":1,"463":3,"489":1,"491":1,"492":2,"493":1,"496":1,"500":1,"529":1,"555":3,"665":3,"666":2,"667":1,"668":1,"669":5,"670":2,"672":2,"673":3,"684":1,"1289":1,"1320":1,"1336":1,"1337":1,"1387":1,"1419":1,"1467":1,"1472":1,"1628":1,"1630":1,"1633":1,"1638":1,"1851":1,"2039":1,"2044":2,"2057":1,"2090":1,"2258":1,"2294":1,"2301":1,"2317":1,"2397":1,"2414":1,"2450":1,"2451":1,"2453":1,"2454":1,"2508":17,"2562":1,"2626":1,"2627":1,"2634":1,"2651":1,"2746":5,"2795":3,"2796":1,"2797":1,"2851":4,"2869":2,"2908":1,"2937":1}}],["int9",{"2":{"2510":1,"2547":1}}],["int7",{"2":{"2510":1,"2547":1}}],["int6",{"2":{"2510":1,"2547":1}}],["int3",{"2":{"2510":1,"2547":1}}],["int2",{"2":{"2041":3,"2510":1,"2547":1}}],["int8",{"0":{"1760":1},"1":{"1761":1},"2":{"1664":4,"1747":1,"1761":1,"1994":4,"2008":2,"2277":3,"2300":1,"2510":1,"2547":1}}],["intimidates",{"2":{"2572":1}}],["intimidated",{"2":{"418":1,"540":1}}],["intimidating",{"0":{"1340":1}}],["intimate",{"2":{"757":1}}],["int4",{"2":{"375":1,"2510":1,"2547":1,"2563":1}}],["int5",{"2":{"375":1,"2510":1,"2547":1,"2563":1}}],["int16",{"0":{"1755":1,"1758":1},"1":{"1756":1,"1757":1,"1759":1},"2":{"1743":1,"1747":1,"1759":1,"2764":2}}],["int1",{"2":{"375":1,"2510":1,"2547":1,"2563":1}}],["intrinsics",{"2":{"236":1}}],["introducing",{"2":{"2905":1}}],["introduction",{"0":{"262":1,"472":1,"2308":1,"2411":1},"1":{"473":1,"474":1,"2412":1,"2413":1,"2414":1,"2415":1},"2":{"293":1,"305":1,"314":1,"2645":1,"2933":1}}],["introduces",{"2":{"298":1,"2925":1}}],["introduced",{"2":{"191":1,"211":1,"236":1,"293":1,"305":1,"308":1,"314":1,"665":1,"2628":1}}],["introduce",{"2":{"191":1,"199":1,"365":1,"1849":1,"2085":2}}],["introspection",{"0":{"1634":2},"2":{"176":1,"191":1,"211":1,"222":1,"249":1,"272":1,"277":2,"1634":2}}],["int",{"0":{"735":1,"812":1,"816":1,"839":1,"843":1,"871":1,"875":1,"903":1,"907":1,"938":1,"942":1,"972":1,"976":1,"1006":1,"1010":1,"1040":1,"1044":1,"1074":1,"1078":1,"1108":1,"1112":1,"1142":1,"1146":1,"1176":1,"1180":1,"1229":1,"1233":1,"1306":1},"1":{"736":1,"813":1,"817":1,"840":1,"844":1,"872":1,"876":1,"904":1,"908":1,"939":1,"943":1,"973":1,"977":1,"1007":1,"1011":1,"1041":1,"1045":1,"1075":1,"1079":1,"1109":1,"1113":1,"1143":1,"1147":1,"1177":1,"1181":1,"1230":1,"1234":1,"1307":1},"2":{"211":1,"512":1,"522":1,"523":1,"524":1,"671":2,"696":4,"736":1,"813":1,"817":1,"840":1,"844":1,"872":1,"876":1,"904":1,"908":1,"939":1,"943":1,"973":1,"977":1,"1007":1,"1011":1,"1041":1,"1045":1,"1075":1,"1079":1,"1109":1,"1113":1,"1143":1,"1147":1,"1177":1,"1181":1,"1230":1,"1234":1,"1307":1,"1329":7,"1379":1,"1948":1,"1990":4,"2041":5,"2043":1,"2277":2,"2763":11,"2764":5}}],["intel",{"2":{"2504":1}}],["intelligent",{"2":{"2653":1,"2673":1}}],["intelligently",{"2":{"671":1}}],["intellisense",{"2":{"1977":1,"2679":1,"2680":1,"2683":1}}],["intensity",{"2":{"2180":1}}],["intend",{"2":{"488":1,"533":1,"627":1,"1499":1,"1790":1,"2054":1,"2656":1}}],["intended",{"2":{"240":1,"328":1,"627":1,"656":2,"1422":1,"1428":1,"1633":1,"1964":1,"2685":1,"2686":1,"2687":1,"2904":1,"2912":1,"2925":1}}],["intentional",{"2":{"2569":1}}],["intentionally",{"2":{"2567":3}}],["intention",{"2":{"1522":1,"2746":1}}],["intent",{"2":{"293":1,"305":1,"314":1,"393":1,"512":1,"2902":1}}],["integral",{"2":{"494":1}}],["integrates",{"2":{"2753":1}}],["integrated",{"2":{"1205":1,"2044":1,"2653":1,"2678":4,"2714":1,"2760":1}}],["integrate",{"2":{"133":1,"284":1,"668":1,"1985":1}}],["integration",{"0":{"543":1,"2753":1,"2947":1},"1":{"2754":1,"2755":1,"2756":1,"2757":1,"2758":1,"2759":1},"2":{"118":1,"142":1,"199":1,"505":3,"542":1,"543":1,"2603":1,"2733":1,"2753":1,"2754":1,"2817":1,"2947":1}}],["integrations",{"2":{"24":1,"156":1}}],["integers",{"2":{"671":1,"685":1}}],["integer",{"2":{"114":1,"176":1,"191":1,"222":1,"523":1,"524":2,"671":1,"1493":1,"1757":1,"1952":1,"1994":2,"2289":1,"2317":1,"2751":1,"2777":1,"2785":1,"2912":1}}],["interpolation",{"2":{"2781":3}}],["interprets",{"2":{"1593":2}}],["interpret",{"2":{"1330":1,"1538":1,"1788":1,"1986":1,"2016":1,"2455":1,"2928":1}}],["interpreted",{"0":{"2467":1},"1":{"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"215":1,"1670":1,"2455":1,"2918":1}}],["interdependence",{"2":{"2734":1}}],["intervention",{"2":{"2212":1,"2764":1}}],["intervals",{"2":{"656":1,"1456":1,"1934":1,"2187":6}}],["interval",{"0":{"2230":1,"2234":1,"2248":1},"1":{"2231":1,"2235":1},"2":{"49":1,"63":1,"93":1,"112":2,"328":1,"561":1,"564":1,"566":1,"720":3,"1292":2,"1579":1,"1926":1,"1935":4,"1936":4,"1937":8,"1939":2,"1940":2,"1949":3,"1968":2,"2048":3,"2185":1,"2231":1,"2234":1,"2235":1,"2248":2,"2288":2,"2858":1,"2873":1,"2880":1,"2882":1}}],["inter",{"2":{"2079":1}}],["intercepting",{"0":{"2577":1},"1":{"2578":1,"2579":1,"2580":1},"2":{"2578":1}}],["interceptable",{"2":{"2298":1,"2300":1}}],["intercept",{"2":{"1988":2,"1989":2,"1993":1,"2578":1,"2579":4,"2580":2}}],["interchangeable",{"2":{"1985":1}}],["interfacing",{"0":{"2300":1}}],["interfaces",{"2":{"561":1,"711":1,"2059":6,"2478":1,"2733":1,"2742":1}}],["interface",{"2":{"49":2,"114":1,"308":1,"425":1,"714":1,"745":1,"1248":1,"1383":1,"1407":2,"1484":1,"2054":1,"2056":3,"2057":1,"2059":11,"2508":1,"2589":1,"2639":1,"2728":1,"2736":1,"2763":1,"2819":1,"2848":1}}],["interfere",{"2":{"1362":1,"2931":1}}],["internet",{"2":{"762":1,"2941":1}}],["internally",{"2":{"1977":1,"2260":1,"2763":2,"2764":4}}],["internal",{"2":{"174":1,"211":1,"231":1,"235":1,"693":1,"714":1,"748":1,"1199":1,"1313":1,"1357":1,"1362":1,"1364":1,"1535":1,"1609":1,"1923":1,"1974":1,"2551":1,"2667":1,"2695":1,"2705":1,"2757":1,"2761":2,"2764":2}}],["internals",{"0":{"25":1,"51":1,"65":1,"70":1,"76":1,"95":1},"2":{"263":1,"538":1,"644":1,"1661":1}}],["international",{"0":{"2547":1},"2":{"74":1,"188":1,"191":1,"2330":1,"2474":1,"2510":18,"2547":12,"2887":5}}],["intermittently",{"2":{"615":1,"2668":1}}],["intermediates=yes",{"2":{"211":1}}],["intermediate",{"0":{"1426":1,"1775":1,"2907":1},"1":{"1776":1,"1777":1},"2":{"211":1,"222":1,"467":1,"468":1,"1538":1,"1959":1,"1962":1,"2590":1,"2762":2,"2906":1}}],["intersections",{"0":{"1644":1},"2":{"1639":1,"2272":2,"2872":1}}],["intersection",{"2":{"569":2,"2272":4}}],["interacting",{"2":{"490":1}}],["interaction",{"0":{"490":1},"1":{"491":1,"492":1,"493":1,"494":1},"2":{"369":1,"1648":1,"1787":1,"2007":1,"2212":1}}],["interactions",{"2":{"133":1,"134":1,"490":1}}],["interact",{"2":{"366":1,"475":1,"489":1,"496":1,"2277":1,"2705":1}}],["interacts",{"2":{"263":1}}],["interoperate",{"2":{"218":1}}],["interoperation",{"2":{"182":1}}],["interesting",{"2":{"2417":1,"2563":1,"2564":1,"2568":1}}],["interested",{"2":{"381":1,"383":1,"576":1,"613":1,"1537":1,"2764":1}}],["interest",{"2":{"175":1}}],["interrupter",{"2":{"2308":1}}],["interrupted",{"2":{"564":1,"1329":1,"2308":1,"2310":1,"2317":5}}],["interrupting",{"2":{"1518":1}}],["interruptions",{"2":{"799":1,"2310":1}}],["interruption",{"2":{"564":1}}],["interrupts",{"2":{"799":3,"2037":1,"2913":1}}],["interrupt",{"0":{"194":1,"206":1,"2041":1,"2042":1},"2":{"22":2,"73":1,"112":2,"114":1,"194":10,"199":1,"206":2,"211":2,"294":1,"764":1,"799":1,"1205":1,"1292":1,"1549":1,"2039":1,"2040":1,"2041":2,"2042":2,"2043":1,"2612":1,"2875":1}}],["into",{"0":{"2612":1,"2614":1},"2":{"18":1,"21":1,"35":1,"36":1,"50":2,"65":2,"72":1,"73":1,"75":1,"99":1,"113":1,"114":7,"119":1,"131":1,"133":1,"134":4,"149":27,"160":3,"173":1,"176":1,"179":1,"188":1,"191":1,"198":2,"201":3,"211":1,"213":1,"218":1,"222":2,"224":1,"236":1,"238":1,"249":11,"254":1,"265":1,"266":1,"272":1,"277":1,"284":1,"288":1,"302":1,"365":1,"366":1,"376":2,"399":1,"406":1,"407":1,"409":1,"411":1,"412":4,"414":1,"432":1,"448":2,"449":2,"450":1,"470":1,"476":1,"483":1,"495":1,"509":1,"511":1,"540":1,"545":1,"558":1,"568":4,"575":2,"579":1,"585":1,"598":1,"615":1,"619":1,"643":2,"644":1,"651":1,"656":1,"665":1,"668":1,"681":1,"710":1,"712":1,"714":1,"736":1,"776":1,"779":1,"788":1,"791":1,"813":1,"817":1,"821":1,"823":1,"840":1,"844":1,"848":1,"850":1,"872":1,"876":1,"880":1,"882":1,"904":1,"908":1,"912":1,"914":1,"939":1,"943":1,"947":1,"949":1,"973":1,"977":1,"981":1,"983":1,"1007":1,"1011":1,"1015":1,"1017":1,"1041":1,"1045":1,"1049":1,"1051":1,"1075":1,"1079":1,"1083":1,"1085":1,"1109":1,"1113":1,"1117":1,"1119":1,"1143":1,"1147":1,"1151":1,"1153":1,"1177":1,"1181":1,"1185":1,"1187":1,"1230":1,"1234":1,"1238":1,"1240":1,"1263":1,"1280":1,"1348":3,"1376":2,"1413":1,"1424":1,"1433":2,"1472":1,"1483":1,"1485":1,"1491":1,"1538":1,"1589":2,"1609":2,"1622":1,"1626":1,"1627":1,"1628":2,"1634":1,"1641":1,"1668":1,"1684":1,"1783":1,"1844":1,"1948":1,"1952":1,"1954":2,"1962":1,"1985":1,"1994":1,"2049":1,"2050":2,"2080":1,"2189":1,"2249":1,"2259":1,"2261":1,"2289":1,"2290":2,"2291":1,"2296":1,"2309":2,"2325":1,"2329":1,"2351":1,"2353":1,"2355":1,"2358":1,"2372":1,"2383":1,"2388":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":1,"2402":1,"2410":2,"2432":1,"2434":1,"2435":1,"2461":1,"2482":1,"2504":1,"2511":2,"2554":1,"2564":1,"2567":1,"2568":1,"2569":1,"2570":1,"2571":1,"2572":1,"2576":1,"2598":1,"2600":1,"2601":1,"2602":2,"2612":1,"2614":2,"2615":1,"2620":1,"2626":1,"2635":1,"2683":1,"2684":1,"2707":1,"2713":1,"2714":1,"2726":1,"2733":1,"2746":4,"2751":2,"2752":2,"2754":1,"2760":2,"2763":1,"2764":2,"2785":1,"2795":4,"2811":1,"2849":1,"2852":1,"2888":1,"2889":1,"2891":1,"2893":1,"2904":1,"2907":1,"2939":1,"2949":1}}],["inclination",{"2":{"2707":1}}],["inclusive",{"2":{"1846":1,"1986":2,"2082":1,"2764":1}}],["inclusions",{"2":{"236":1}}],["inclusion",{"2":{"50":1,"74":1,"134":1,"176":2,"234":1,"236":1,"403":1}}],["including",{"2":{"30":1,"33":1,"49":1,"174":1,"234":1,"235":1,"248":1,"277":1,"288":1,"298":1,"327":1,"494":1,"560":1,"698":1,"761":1,"1201":1,"1246":1,"1267":1,"1284":1,"1327":1,"1466":1,"1532":1,"1789":1,"1962":1,"2069":1,"2188":1,"2191":1,"2281":1,"2296":1,"2318":1,"2329":1,"2407":1,"2462":1,"2567":1,"2593":1,"2639":1,"2687":1,"2739":1,"2740":1,"2745":1,"2746":3,"2778":1,"2786":1,"2886":1,"2934":1}}],["include=",{"2":{"2417":2}}],["included",{"0":{"400":1,"403":1},"2":{"10":2,"114":1,"160":1,"273":1,"288":1,"308":1,"403":1,"406":1,"407":1,"527":1,"529":1,"560":2,"571":1,"677":1,"698":1,"725":1,"761":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1438":1,"1463":2,"1464":1,"1485":1,"1526":1,"1633":1,"2044":1,"2198":2,"2381":1,"2417":2,"2418":1,"2456":1,"2561":1,"2567":2,"2679":1,"2747":4,"2765":1,"2785":2,"2787":1,"2901":1,"2940":1,"2944":1}}],["includes",{"0":{"1438":1},"2":{"5":1,"10":2,"12":1,"25":1,"94":1,"114":3,"191":6,"194":1,"211":1,"222":7,"266":4,"339":1,"399":1,"403":1,"414":1,"574":1,"1349":1,"1404":1,"1408":2,"1542":1,"1855":1,"2094":1,"2179":1,"2381":1,"2405":1,"2418":1,"2470":1,"2566":1,"2568":2,"2569":1,"2575":1,"2682":1,"2707":2,"2725":1,"2760":1,"2777":1,"2785":1,"2886":1,"2891":1,"2942":1,"2943":1}}],["include",{"0":{"2931":1},"2":{"4":1,"12":1,"22":1,"50":1,"73":1,"114":3,"132":1,"133":2,"134":5,"149":2,"176":4,"199":1,"211":1,"222":1,"236":2,"265":1,"276":1,"277":1,"333":1,"411":1,"429":2,"433":3,"505":1,"512":3,"513":1,"514":1,"526":1,"589":1,"618":2,"622":1,"683":1,"686":2,"717":2,"718":2,"721":2,"764":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1299":2,"1303":2,"1317":1,"1327":1,"1376":1,"1405":1,"1409":1,"1420":3,"1438":3,"1444":1,"1449":2,"1463":1,"1464":2,"1467":1,"1472":6,"1479":1,"1504":1,"1506":1,"1508":1,"1515":1,"1556":2,"1557":2,"1622":2,"1661":1,"1686":1,"1765":1,"1924":1,"1957":1,"1962":1,"2042":1,"2053":1,"2068":1,"2181":1,"2194":1,"2319":3,"2329":1,"2416":1,"2418":6,"2425":1,"2437":1,"2439":1,"2455":1,"2457":1,"2561":1,"2569":2,"2597":1,"2676":1,"2725":1,"2742":1,"2744":2,"2745":1,"2746":8,"2762":1,"2764":4,"2831":1,"2839":1,"2852":2,"2885":3,"2886":2,"2889":1,"2901":1,"2931":1,"2944":2,"2948":1}}],["inch",{"2":{"1983":1}}],["inc",{"0":{"1635":1,"1636":1},"2":{"1635":2,"1636":2,"1850":2,"2088":2,"2944":1}}],["incredibly",{"2":{"1801":2,"2765":1}}],["increasing",{"2":{"565":1,"753":1,"1936":1,"1949":1,"1985":1,"2189":1,"2379":2,"2576":1,"2685":1,"2913":1}}],["increase",{"0":{"1564":1,"1879":1,"1880":1,"1885":1,"1886":1,"2121":1,"2122":1,"2127":1,"2128":1,"2133":1,"2134":1,"2139":1,"2140":1},"2":{"134":2,"149":1,"211":2,"563":1,"564":1,"565":1,"660":1,"1322":1,"1487":1,"1520":1,"1522":2,"1543":1,"1564":1,"1609":1,"1661":1,"1662":1,"1668":2,"1680":2,"1688":1,"1848":2,"1849":1,"1879":1,"1880":1,"1885":1,"1886":1,"1925":4,"1953":1,"1985":1,"2084":3,"2085":3,"2086":1,"2121":1,"2122":1,"2127":1,"2128":1,"2133":1,"2134":1,"2139":1,"2140":1,"2181":8,"2189":1,"2201":12,"2202":2,"2211":1,"2253":1,"2254":3,"2309":1,"2427":1,"2515":1,"2525":2,"2527":4,"2532":8,"2533":3,"2759":1,"2912":1}}],["increases",{"2":{"119":1,"215":1,"1493":1,"1495":1,"1851":1,"1852":2,"2086":2,"2090":1,"2091":2,"2202":2,"2512":1,"2531":1,"2685":1,"2871":1,"2878":1,"2912":2}}],["increased",{"2":{"70":1,"175":1,"262":1,"414":1,"657":1,"697":1,"755":2,"2086":1,"2179":1,"2319":1,"2764":2}}],["incrementms",{"2":{"2531":2,"2912":2}}],["incremented",{"2":{"1419":2,"1702":1,"2310":1}}],["incremental",{"2":{"420":1}}],["incrementing",{"2":{"409":1,"1947":1,"2286":1}}],["increments",{"2":{"160":1,"1966":1,"1967":1,"1981":1,"1982":1,"1983":2}}],["increment",{"2":{"114":1,"1539":2,"1852":2,"1947":1,"2091":4,"2182":3,"2286":1,"2871":2,"2877":3,"2878":4,"2912":2}}],["inception",{"2":{"113":1}}],["inconsistencies",{"2":{"2743":1}}],["inconsistent",{"2":{"512":1,"1288":1,"1378":1}}],["incoming",{"2":{"1532":1}}],["incomplete",{"2":{"616":1,"1839":1}}],["incompatibility",{"2":{"284":1,"2728":1}}],["incompatible",{"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"399":1,"1196":1,"1405":1,"2567":1,"2725":1,"2727":1,"2736":1}}],["incorporated",{"2":{"495":1,"558":1}}],["incorporates",{"2":{"414":1,"2828":1}}],["incorrect",{"2":{"114":1,"160":1,"191":2,"198":1,"211":1,"249":1,"333":1,"713":1,"1665":1,"1670":1,"2213":1,"2503":1,"2508":1,"2599":1}}],["incorrectly",{"2":{"11":1,"754":1,"1524":1,"1962":1,"2434":1}}],["in",{"0":{"3":1,"7":1,"8":1,"15":1,"23":1,"120":1,"218":1,"273":1,"400":1,"605":1,"1311":1,"1317":1,"1357":1,"1358":1,"1387":1,"1441":1,"1445":1,"1450":1,"1503":1,"1643":1,"1644":2,"1653":1,"1654":1,"1661":1,"2255":1,"2291":1,"2292":1,"2585":1,"2793":1},"1":{"1312":1,"1442":1,"1443":1,"1444":1,"1446":1,"1447":1,"1448":1,"1449":1,"1450":1,"1451":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1461":1,"1462":1,"1662":1,"1663":1,"1664":1,"2256":1,"2257":1,"2258":1,"2259":1,"2260":1,"2292":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2299":1,"2300":1,"2301":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"0":1,"3":3,"5":2,"6":1,"9":1,"10":3,"11":1,"15":3,"16":2,"17":1,"19":1,"25":3,"28":1,"31":1,"33":1,"39":1,"48":1,"49":9,"50":5,"52":1,"55":1,"62":1,"64":1,"70":33,"73":2,"74":4,"75":3,"76":2,"77":1,"86":2,"87":1,"92":4,"94":1,"95":2,"99":3,"103":3,"108":1,"109":1,"110":2,"111":1,"113":1,"114":13,"118":1,"119":5,"120":4,"123":2,"124":4,"125":2,"126":1,"132":1,"133":1,"134":13,"142":1,"149":10,"154":2,"156":3,"158":3,"160":3,"169":3,"170":2,"172":2,"174":1,"175":2,"176":21,"179":1,"182":10,"184":3,"185":2,"186":1,"188":1,"189":1,"190":1,"191":13,"194":7,"195":1,"196":2,"199":11,"201":4,"202":2,"204":1,"206":2,"211":9,"213":1,"214":1,"215":2,"218":2,"221":2,"222":10,"228":3,"231":1,"232":1,"233":2,"234":4,"236":4,"240":2,"246":2,"248":1,"249":7,"251":1,"254":1,"262":1,"263":3,"264":1,"265":2,"266":7,"268":1,"272":1,"273":2,"274":1,"276":2,"277":2,"282":1,"283":1,"284":2,"285":4,"288":2,"289":1,"292":1,"294":2,"301":1,"303":2,"306":1,"307":4,"308":6,"312":1,"313":1,"315":1,"317":2,"320":1,"326":1,"328":1,"332":2,"333":4,"336":1,"337":1,"338":1,"339":1,"340":1,"344":5,"353":1,"354":1,"376":1,"377":1,"379":5,"381":2,"382":1,"383":1,"384":1,"393":2,"396":1,"397":3,"398":1,"399":4,"403":6,"405":1,"406":1,"407":1,"411":3,"414":3,"416":1,"419":2,"420":1,"429":10,"430":2,"432":1,"436":1,"437":3,"439":1,"440":2,"441":1,"442":2,"444":2,"445":2,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"458":2,"460":2,"462":2,"463":1,"464":1,"483":1,"489":4,"491":3,"495":2,"496":3,"497":1,"498":1,"504":1,"505":3,"511":1,"512":2,"513":2,"514":1,"515":1,"516":2,"519":1,"520":2,"521":2,"528":1,"529":1,"532":2,"533":2,"535":1,"538":1,"539":1,"540":3,"541":1,"542":1,"543":1,"544":1,"555":2,"556":1,"557":1,"561":9,"564":2,"565":3,"567":1,"568":1,"569":3,"570":1,"575":3,"576":1,"580":1,"584":1,"588":5,"589":2,"591":2,"592":2,"593":3,"594":2,"595":1,"596":2,"597":2,"598":1,"599":3,"600":1,"610":1,"611":4,"613":3,"615":3,"616":4,"618":4,"619":6,"620":2,"621":1,"624":2,"625":2,"626":1,"632":1,"633":2,"639":1,"640":1,"643":2,"647":3,"655":1,"656":2,"657":2,"660":1,"666":3,"668":6,"669":3,"672":1,"673":2,"674":1,"675":1,"676":2,"677":2,"681":1,"683":2,"684":4,"685":1,"690":3,"691":2,"696":2,"698":2,"699":2,"703":1,"709":1,"710":5,"711":3,"712":3,"713":3,"714":1,"716":1,"717":2,"718":2,"719":1,"720":1,"722":1,"729":3,"743":1,"744":3,"746":2,"748":1,"749":6,"750":6,"751":2,"753":1,"754":7,"755":3,"756":1,"757":1,"759":11,"760":1,"761":2,"763":1,"764":1,"770":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"793":1,"794":1,"797":1,"799":1,"802":1,"805":2,"828":1,"829":1,"831":2,"857":1,"858":1,"860":6,"863":3,"889":1,"890":1,"893":3,"921":1,"922":1,"923":1,"928":3,"956":1,"957":1,"962":3,"990":1,"991":1,"996":3,"1024":1,"1025":1,"1030":3,"1058":1,"1059":1,"1064":3,"1092":1,"1093":1,"1094":1,"1095":6,"1098":3,"1126":1,"1127":1,"1128":1,"1129":6,"1132":3,"1160":1,"1161":1,"1163":6,"1166":3,"1192":2,"1194":1,"1195":1,"1197":2,"1198":2,"1200":2,"1201":2,"1203":3,"1204":3,"1205":2,"1206":1,"1207":1,"1208":3,"1213":7,"1216":1,"1217":1,"1219":3,"1245":1,"1246":2,"1248":4,"1253":1,"1266":2,"1267":2,"1283":1,"1284":2,"1285":6,"1286":1,"1287":1,"1288":1,"1289":2,"1291":1,"1292":1,"1295":2,"1297":4,"1298":1,"1307":1,"1311":1,"1316":1,"1319":2,"1320":1,"1322":2,"1330":2,"1332":2,"1338":1,"1342":1,"1343":2,"1345":1,"1346":1,"1347":1,"1348":4,"1350":1,"1351":3,"1354":2,"1356":2,"1357":1,"1364":7,"1365":1,"1366":2,"1367":2,"1376":3,"1377":4,"1379":4,"1380":2,"1381":2,"1387":2,"1388":2,"1395":1,"1406":1,"1409":4,"1410":9,"1412":1,"1413":1,"1414":2,"1415":2,"1417":6,"1419":4,"1420":2,"1422":1,"1423":1,"1425":2,"1427":5,"1428":4,"1431":1,"1432":1,"1433":3,"1434":3,"1435":1,"1439":3,"1441":2,"1442":1,"1444":1,"1446":1,"1447":2,"1448":3,"1449":1,"1451":3,"1463":3,"1464":6,"1465":1,"1466":4,"1467":1,"1468":1,"1470":9,"1471":5,"1472":3,"1474":1,"1477":1,"1480":2,"1481":3,"1482":1,"1483":3,"1484":1,"1485":6,"1487":2,"1488":2,"1489":2,"1490":1,"1491":4,"1492":3,"1493":2,"1495":1,"1499":2,"1500":1,"1501":1,"1502":1,"1503":3,"1514":1,"1518":2,"1519":1,"1521":1,"1522":1,"1523":1,"1525":3,"1526":2,"1527":3,"1533":3,"1535":1,"1537":3,"1538":9,"1539":2,"1541":1,"1544":1,"1545":1,"1546":1,"1547":1,"1550":1,"1551":1,"1556":1,"1558":2,"1579":1,"1583":1,"1586":1,"1588":1,"1589":2,"1590":1,"1591":3,"1593":3,"1594":3,"1595":2,"1597":1,"1598":1,"1601":1,"1602":1,"1603":2,"1605":3,"1606":1,"1607":1,"1609":2,"1611":3,"1612":14,"1619":1,"1620":1,"1621":1,"1622":4,"1623":1,"1625":1,"1627":2,"1628":2,"1630":2,"1631":1,"1632":1,"1634":1,"1635":1,"1636":1,"1639":3,"1648":6,"1651":2,"1653":1,"1654":1,"1661":3,"1662":4,"1666":2,"1667":1,"1668":1,"1670":2,"1672":1,"1675":1,"1676":1,"1678":2,"1681":5,"1682":1,"1683":1,"1689":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1697":1,"1702":2,"1740":1,"1742":3,"1762":1,"1763":2,"1765":1,"1766":2,"1768":1,"1770":1,"1776":2,"1777":2,"1781":1,"1782":2,"1783":1,"1784":3,"1785":1,"1786":4,"1787":2,"1788":3,"1790":2,"1791":1,"1792":2,"1794":2,"1795":3,"1796":1,"1798":1,"1802":3,"1804":1,"1835":2,"1836":1,"1837":2,"1838":1,"1843":1,"1846":1,"1848":2,"1849":5,"1850":5,"1851":4,"1852":2,"1855":2,"1907":1,"1913":2,"1916":2,"1919":1,"1923":1,"1926":1,"1930":1,"1933":1,"1934":2,"1935":3,"1936":3,"1937":2,"1938":1,"1939":5,"1940":2,"1945":1,"1946":1,"1947":3,"1948":2,"1949":4,"1952":3,"1953":7,"1954":4,"1957":2,"1958":1,"1959":2,"1960":2,"1962":6,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1970":3,"1971":8,"1973":1,"1974":5,"1975":1,"1976":3,"1977":4,"1979":1,"1980":1,"1981":1,"1982":2,"1983":9,"1984":1,"1986":6,"1990":6,"1992":3,"1994":3,"1998":1,"1999":1,"2000":1,"2001":4,"2006":1,"2008":2,"2011":1,"2012":3,"2013":2,"2014":1,"2015":3,"2016":1,"2039":2,"2040":2,"2041":2,"2042":3,"2043":2,"2044":1,"2048":1,"2051":1,"2053":2,"2054":1,"2057":3,"2058":1,"2059":1,"2062":1,"2064":1,"2065":1,"2066":2,"2068":4,"2069":1,"2070":2,"2072":2,"2073":1,"2076":2,"2077":1,"2079":2,"2082":1,"2084":3,"2085":12,"2086":2,"2088":5,"2089":1,"2090":4,"2091":2,"2094":2,"2167":1,"2173":2,"2176":2,"2178":1,"2179":2,"2181":3,"2182":1,"2183":1,"2185":2,"2187":6,"2188":1,"2189":5,"2191":1,"2194":2,"2199":4,"2205":1,"2206":4,"2207":1,"2210":1,"2218":1,"2219":1,"2222":1,"2231":1,"2235":1,"2250":1,"2256":2,"2258":1,"2259":4,"2260":1,"2261":1,"2264":1,"2265":2,"2267":1,"2269":2,"2270":1,"2272":2,"2273":4,"2275":2,"2276":1,"2277":4,"2278":2,"2284":1,"2285":1,"2286":3,"2287":2,"2288":2,"2289":1,"2290":3,"2291":2,"2292":1,"2293":5,"2294":3,"2295":1,"2296":1,"2297":3,"2298":4,"2300":5,"2301":2,"2302":2,"2303":1,"2305":1,"2308":2,"2309":9,"2310":5,"2312":3,"2313":1,"2316":1,"2317":12,"2318":3,"2319":6,"2322":1,"2325":1,"2327":2,"2329":5,"2330":6,"2331":5,"2332":2,"2344":1,"2345":1,"2346":1,"2354":1,"2357":1,"2362":1,"2374":1,"2375":1,"2377":1,"2379":3,"2381":1,"2382":2,"2383":3,"2385":1,"2386":2,"2387":1,"2388":2,"2389":3,"2390":4,"2391":3,"2393":2,"2394":1,"2395":2,"2396":1,"2397":1,"2398":2,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":3,"2407":3,"2410":2,"2412":3,"2415":1,"2416":1,"2417":2,"2418":12,"2419":1,"2422":2,"2423":3,"2425":1,"2426":1,"2427":2,"2428":5,"2429":5,"2430":1,"2431":4,"2432":2,"2433":2,"2434":2,"2435":4,"2439":1,"2449":1,"2450":2,"2451":2,"2453":3,"2454":8,"2455":4,"2456":3,"2458":3,"2460":3,"2461":1,"2462":1,"2463":1,"2464":3,"2466":8,"2467":1,"2468":1,"2469":1,"2473":2,"2474":1,"2475":2,"2482":4,"2490":1,"2497":2,"2498":1,"2499":2,"2500":1,"2501":2,"2502":3,"2503":2,"2504":1,"2505":2,"2508":3,"2509":2,"2510":2,"2512":1,"2516":1,"2523":1,"2525":2,"2531":1,"2532":1,"2533":3,"2540":2,"2541":1,"2549":2,"2551":2,"2554":3,"2557":4,"2558":2,"2559":2,"2560":2,"2561":3,"2562":2,"2563":2,"2564":2,"2566":2,"2567":5,"2568":3,"2569":4,"2570":3,"2571":1,"2575":2,"2576":2,"2578":1,"2583":1,"2584":2,"2585":1,"2586":1,"2590":3,"2597":2,"2598":2,"2599":1,"2600":1,"2601":2,"2602":4,"2604":1,"2607":4,"2608":1,"2609":1,"2610":2,"2612":9,"2614":4,"2615":1,"2616":2,"2622":1,"2626":1,"2628":4,"2629":2,"2632":3,"2633":2,"2634":8,"2635":1,"2637":2,"2638":1,"2639":1,"2640":1,"2642":2,"2650":3,"2651":1,"2652":2,"2653":1,"2655":1,"2657":1,"2665":2,"2666":1,"2669":2,"2673":1,"2676":1,"2678":4,"2680":1,"2682":1,"2683":9,"2684":1,"2685":3,"2686":1,"2687":1,"2688":1,"2690":2,"2691":2,"2694":1,"2695":1,"2700":3,"2702":2,"2704":2,"2705":1,"2706":1,"2707":3,"2709":2,"2710":1,"2711":2,"2713":1,"2714":1,"2716":1,"2717":5,"2719":1,"2720":1,"2721":1,"2725":1,"2727":2,"2733":1,"2739":1,"2742":1,"2743":1,"2744":6,"2746":19,"2747":4,"2748":2,"2749":4,"2750":1,"2751":1,"2752":1,"2753":2,"2756":1,"2758":1,"2760":1,"2761":5,"2762":3,"2763":38,"2764":14,"2765":1,"2771":2,"2777":2,"2778":2,"2779":4,"2780":2,"2781":3,"2782":2,"2783":1,"2785":2,"2787":5,"2788":1,"2790":1,"2791":2,"2792":1,"2793":1,"2794":4,"2795":7,"2796":4,"2799":1,"2800":4,"2809":1,"2810":1,"2812":1,"2818":1,"2840":1,"2842":1,"2846":2,"2850":1,"2851":2,"2853":2,"2854":2,"2855":2,"2856":1,"2857":1,"2858":4,"2861":1,"2862":1,"2863":1,"2869":10,"2870":1,"2871":5,"2872":2,"2874":2,"2877":1,"2878":5,"2880":3,"2882":2,"2883":2,"2884":4,"2885":2,"2886":3,"2887":1,"2889":1,"2890":1,"2892":1,"2894":3,"2896":1,"2901":3,"2902":1,"2904":1,"2906":2,"2907":1,"2910":1,"2911":1,"2912":13,"2913":5,"2914":3,"2918":2,"2919":6,"2920":1,"2921":1,"2922":2,"2924":2,"2925":4,"2926":6,"2927":2,"2928":5,"2929":1,"2930":5,"2931":1,"2934":3,"2935":3,"2937":2,"2940":2,"2941":2,"2943":2,"2944":5,"2945":1,"2946":1,"2947":1,"2949":4}}],["is25lp080",{"2":{"2705":2}}],["isc20",{"2":{"2041":1}}],["isc21",{"2":{"2041":1}}],["isdata",{"0":{"1725":1,"1727":1},"1":{"1726":1,"1728":1,"1729":1},"2":{"1726":1,"1728":1,"1729":1}}],["is=yes",{"2":{"1395":1}}],["isn",{"0":{"1338":1,"1350":1},"2":{"353":1,"597":1,"637":1,"645":1,"1197":1,"1367":1,"1465":1,"1485":1,"1517":1,"1984":1,"2272":1,"2429":1,"2466":1,"2676":1,"2678":1,"2889":1,"2932":1}}],["islefthand",{"0":{"332":1,"337":1},"2":{"332":2,"333":2,"337":1,"339":1}}],["isp",{"0":{"2482":1,"2484":1,"2486":1,"2488":1,"2818":1},"1":{"2483":1,"2484":1,"2485":2,"2486":1,"2487":2,"2488":1,"2489":2,"2490":1,"2491":1,"2492":1,"2493":1,"2494":1,"2495":1,"2496":1,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":1,"2503":1,"2504":1,"2505":1,"2506":1,"2507":1,"2508":1},"2":{"328":1,"430":1,"713":1,"2388":1,"2389":1,"2482":2,"2483":3,"2484":2,"2486":2,"2488":2,"2491":1,"2493":1,"2494":1,"2496":2,"2497":1,"2502":2,"2504":1,"2567":1}}],["ish",{"0":{"350":1},"2":{"160":2,"211":1,"2319":1}}],["issi",{"2":{"114":2,"134":3,"176":1,"211":1,"236":4,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1}}],["issuing",{"2":{"49":1}}],["issued",{"2":{"2567":1,"2904":1}}],["issuecomment",{"2":{"1359":1}}],["issues",{"0":{"312":1,"2671":1,"2797":1,"2899":1},"1":{"2798":1,"2799":1,"2800":1},"2":{"24":1,"25":1,"86":1,"114":7,"134":8,"149":2,"160":1,"176":3,"199":1,"211":2,"240":1,"263":1,"266":1,"273":1,"276":1,"285":1,"294":1,"317":1,"333":1,"414":1,"564":2,"598":1,"613":1,"1193":1,"1207":1,"1209":1,"1315":1,"1318":1,"1319":1,"1329":1,"1331":1,"1337":1,"1338":1,"1352":1,"1353":1,"1356":1,"1359":3,"1361":1,"1387":1,"1417":1,"1423":1,"1455":1,"1466":1,"1486":1,"1490":1,"1551":1,"1609":1,"1960":2,"1961":2,"1986":1,"1994":1,"1998":1,"2272":1,"2275":1,"2298":1,"2331":1,"2405":1,"2554":1,"2576":2,"2603":1,"2634":1,"2635":1,"2640":1,"2651":1,"2662":1,"2664":1,"2667":1,"2671":1,"2680":1,"2774":1,"2909":2}}],["issue",{"0":{"1338":1},"2":{"5":1,"6":1,"73":1,"92":1,"114":2,"149":2,"176":4,"191":2,"199":3,"211":3,"236":1,"249":1,"294":2,"414":1,"544":1,"570":1,"604":1,"612":1,"613":6,"618":1,"619":1,"620":1,"644":1,"668":1,"672":1,"1296":1,"1318":1,"1333":1,"1336":1,"1338":1,"1339":1,"1342":1,"1356":1,"1433":1,"1634":1,"1962":2,"2011":1,"2441":1,"2454":1,"2490":1,"2554":1,"2565":1,"2576":1,"2638":1,"2651":1,"2667":1,"2671":1,"2690":1,"2704":1,"2743":1,"2745":1,"2748":1,"2817":1,"2850":1,"2899":2,"2930":1}}],["is31flcommon",{"2":{"249":1}}],["is31fl3236",{"0":{"826":1,"833":1,"835":1,"837":1,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"851":1,"853":1},"1":{"827":1,"828":1,"829":1,"830":1,"831":1,"832":1,"833":1,"834":2,"835":1,"836":2,"837":1,"838":2,"839":1,"840":2,"841":1,"842":2,"843":1,"844":2,"845":1,"846":2,"847":1,"848":2,"849":1,"850":2,"851":1,"852":2,"853":1,"854":2},"2":{"266":1,"826":1,"827":4,"828":7,"829":6,"831":6,"839":1,"840":1,"843":1,"844":1,"847":1,"848":1,"849":1,"850":1,"1845":1,"2081":1,"2878":1}}],["is31fl3218",{"0":{"800":1,"807":1,"809":1,"810":1,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"824":1,"825":1},"1":{"801":1,"802":1,"803":1,"804":1,"805":1,"806":1,"807":1,"808":2,"809":1,"810":1,"811":2,"812":1,"813":2,"814":1,"815":2,"816":1,"817":2,"818":1,"819":2,"820":1,"821":2,"822":1,"823":2,"824":1,"825":1},"2":{"236":3,"800":1,"801":4,"802":3,"803":2,"805":6,"812":1,"813":1,"816":1,"817":1,"820":1,"821":1,"822":1,"823":1,"1845":2,"2081":2,"2871":1,"2878":1}}],["is31fl3729",{"0":{"855":1,"865":1,"867":1,"869":1,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"883":1,"885":1},"1":{"856":1,"857":1,"858":1,"859":1,"860":1,"861":1,"862":1,"863":1,"864":1,"865":1,"866":2,"867":1,"868":2,"869":1,"870":2,"871":1,"872":2,"873":1,"874":2,"875":1,"876":2,"877":1,"878":2,"879":1,"880":2,"881":1,"882":2,"883":1,"884":2,"885":1,"886":2},"2":{"249":2,"333":1,"855":1,"856":4,"857":14,"858":6,"859":10,"860":22,"861":1,"863":6,"871":1,"872":1,"875":1,"876":1,"879":1,"880":1,"881":1,"882":1,"1845":1,"2081":1,"2878":1}}],["is31fl3741a",{"2":{"1022":1,"1024":1,"1026":1}}],["is31fl3741",{"0":{"1022":1,"1032":1,"1034":1,"1036":1,"1038":1,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1054":1},"1":{"1023":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1029":1,"1030":1,"1031":1,"1032":1,"1033":2,"1034":1,"1035":2,"1036":1,"1037":2,"1038":1,"1039":2,"1040":1,"1041":2,"1042":1,"1043":2,"1044":1,"1045":2,"1046":1,"1047":2,"1048":1,"1049":2,"1050":1,"1051":2,"1052":1,"1053":2,"1054":1,"1055":2},"2":{"221":2,"236":2,"249":1,"1023":4,"1024":15,"1025":6,"1026":6,"1027":22,"1028":1,"1030":6,"1040":1,"1041":1,"1044":1,"1045":1,"1048":1,"1049":1,"1050":1,"1051":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3746a",{"0":{"1158":1,"1168":1,"1170":1,"1172":1,"1174":1,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1188":1,"1190":1},"1":{"1159":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1165":1,"1166":1,"1167":1,"1168":1,"1169":2,"1170":1,"1171":2,"1172":1,"1173":2,"1174":1,"1175":2,"1176":1,"1177":2,"1178":1,"1179":2,"1180":1,"1181":2,"1182":1,"1183":2,"1184":1,"1185":2,"1186":1,"1187":2,"1188":1,"1189":2,"1190":1,"1191":2},"2":{"147":1,"149":1,"221":4,"249":1,"1158":1,"1159":4,"1160":15,"1161":18,"1162":9,"1163":22,"1164":1,"1166":6,"1176":1,"1177":1,"1180":1,"1181":1,"1184":1,"1185":1,"1186":1,"1187":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3745",{"0":{"1124":1,"1134":1,"1136":1,"1138":1,"1140":1,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1154":1,"1156":1},"1":{"1125":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1131":1,"1132":1,"1133":1,"1134":1,"1135":2,"1136":1,"1137":2,"1138":1,"1139":2,"1140":1,"1141":2,"1142":1,"1143":2,"1144":1,"1145":2,"1146":1,"1147":2,"1148":1,"1149":2,"1150":1,"1151":2,"1152":1,"1153":2,"1154":1,"1155":2,"1156":1,"1157":2},"2":{"147":1,"149":1,"221":4,"249":1,"1124":1,"1125":4,"1126":21,"1127":18,"1128":5,"1129":22,"1130":1,"1132":6,"1142":1,"1143":1,"1146":1,"1147":1,"1150":1,"1151":1,"1152":1,"1153":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3743a",{"0":{"1090":1,"1100":1,"1102":1,"1104":1,"1106":1,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1120":1,"1122":1},"1":{"1091":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1097":1,"1098":1,"1099":1,"1100":1,"1101":2,"1102":1,"1103":2,"1104":1,"1105":2,"1106":1,"1107":2,"1108":1,"1109":2,"1110":1,"1111":2,"1112":1,"1113":2,"1114":1,"1115":2,"1116":1,"1117":2,"1118":1,"1119":2,"1120":1,"1121":2,"1122":1,"1123":2},"2":{"147":1,"149":1,"221":4,"249":1,"1090":1,"1091":4,"1092":21,"1093":18,"1094":5,"1095":22,"1096":1,"1098":6,"1108":1,"1109":1,"1112":1,"1113":1,"1116":1,"1117":1,"1118":1,"1119":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3742a",{"0":{"1056":1,"1066":1,"1068":1,"1070":1,"1072":1,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1086":1,"1088":1},"1":{"1057":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1063":1,"1064":1,"1065":1,"1066":1,"1067":2,"1068":1,"1069":2,"1070":1,"1071":2,"1072":1,"1073":2,"1074":1,"1075":2,"1076":1,"1077":2,"1078":1,"1079":2,"1080":1,"1081":2,"1082":1,"1083":2,"1084":1,"1085":2,"1086":1,"1087":2,"1088":1,"1089":2},"2":{"147":1,"149":1,"221":4,"249":1,"1056":1,"1057":4,"1058":15,"1059":6,"1060":6,"1061":22,"1062":1,"1064":6,"1074":1,"1075":1,"1078":1,"1079":1,"1082":1,"1083":1,"1084":1,"1085":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3731",{"0":{"887":1,"895":1,"897":1,"899":1,"901":1,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"915":1,"917":1,"2444":1},"1":{"888":1,"889":1,"890":1,"891":1,"892":1,"893":1,"894":1,"895":1,"896":2,"897":1,"898":2,"899":1,"900":2,"901":1,"902":2,"903":1,"904":2,"905":1,"906":2,"907":1,"908":2,"909":1,"910":2,"911":1,"912":2,"913":1,"914":2,"915":1,"916":2,"917":1,"918":2},"2":{"221":4,"236":1,"887":1,"888":4,"889":8,"890":6,"891":2,"893":6,"903":1,"904":1,"907":1,"908":1,"911":1,"912":1,"913":1,"914":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3736b",{"2":{"956":1,"958":1}}],["is31fl3736",{"0":{"954":1,"964":1,"966":1,"968":1,"970":1,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"984":1,"986":1},"1":{"955":1,"956":1,"957":1,"958":1,"959":1,"960":1,"961":1,"962":1,"963":1,"964":1,"965":2,"966":1,"967":2,"968":1,"969":2,"970":1,"971":2,"972":1,"973":2,"974":1,"975":2,"976":1,"977":2,"978":1,"979":2,"980":1,"981":2,"982":1,"983":2,"984":1,"985":2,"986":1,"987":2},"2":{"211":3,"221":2,"236":2,"249":1,"954":1,"955":4,"956":14,"957":18,"958":7,"959":22,"960":1,"962":6,"972":1,"973":1,"976":1,"977":1,"980":1,"981":1,"982":1,"983":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3737b",{"2":{"160":1,"990":1,"992":1}}],["is31fl3737",{"0":{"988":1,"998":1,"1000":1,"1002":1,"1004":1,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1020":1},"1":{"989":1,"990":1,"991":1,"992":1,"993":1,"994":1,"995":1,"996":1,"997":1,"998":1,"999":2,"1000":1,"1001":2,"1002":1,"1003":2,"1004":1,"1005":2,"1006":1,"1007":2,"1008":1,"1009":2,"1010":1,"1011":2,"1012":1,"1013":2,"1014":1,"1015":2,"1016":1,"1017":2,"1018":1,"1019":2,"1020":1,"1021":2},"2":{"114":2,"176":1,"191":1,"221":2,"236":2,"988":1,"989":4,"990":14,"991":6,"992":7,"993":22,"994":1,"996":6,"1006":1,"1007":1,"1010":1,"1011":1,"1014":1,"1015":1,"1016":1,"1017":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3733b",{"2":{"134":1,"921":1,"924":1}}],["is31fl3733",{"0":{"919":1,"930":1,"932":1,"934":1,"936":1,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"950":1,"952":1,"2445":1},"1":{"920":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"927":1,"928":1,"929":1,"930":1,"931":2,"932":1,"933":2,"934":1,"935":2,"936":1,"937":2,"938":1,"939":2,"940":1,"941":2,"942":1,"943":2,"944":1,"945":2,"946":1,"947":2,"948":1,"949":2,"950":1,"951":2,"952":1,"953":2},"2":{"93":1,"149":1,"221":2,"236":2,"249":2,"919":1,"920":4,"921":22,"922":18,"923":5,"924":7,"925":22,"926":1,"928":6,"938":1,"939":1,"942":1,"943":1,"946":1,"947":1,"948":1,"949":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31common",{"2":{"249":4}}],["is31",{"2":{"114":1}}],["isolated",{"2":{"2777":1}}],["isolation",{"2":{"241":2,"2726":1}}],["iso",{"2":{"102":3,"114":2,"122":3,"143":2,"149":2,"159":2,"168":2,"191":1,"199":1,"211":5,"217":2,"226":4,"236":2,"266":2,"277":1,"328":2,"429":2,"444":1,"1346":3,"1434":1,"1465":2,"2423":1,"2453":5,"2797":1,"2799":2,"2869":5,"2887":18}}],["is",{"0":{"141":1,"401":1,"604":1,"606":1,"1317":1,"1329":1,"1330":1,"1335":1,"1570":1,"1575":1,"1863":1,"2012":1,"2029":1,"2076":1,"2077":1,"2105":1,"2477":1,"2923":1},"1":{"402":1,"1571":1,"1576":1,"1864":1,"2030":1,"2031":1,"2106":1},"2":{"0":2,"3":1,"7":1,"9":2,"10":2,"13":2,"14":1,"15":1,"18":4,"19":2,"23":2,"24":1,"25":1,"28":2,"30":1,"31":3,"34":2,"36":1,"39":2,"45":2,"48":1,"49":4,"50":3,"52":2,"70":23,"76":1,"88":1,"90":1,"94":1,"98":1,"103":1,"104":1,"113":2,"114":1,"118":1,"120":2,"123":1,"126":1,"127":1,"130":1,"134":3,"141":1,"149":4,"152":1,"153":3,"154":3,"156":3,"160":2,"166":1,"176":3,"179":1,"191":3,"194":4,"195":4,"196":1,"199":5,"201":2,"202":1,"203":2,"204":1,"206":1,"209":3,"211":2,"213":2,"218":1,"222":1,"224":3,"228":1,"230":1,"232":2,"233":3,"234":1,"235":2,"236":3,"238":1,"240":1,"244":1,"246":2,"249":4,"251":1,"262":2,"263":1,"266":2,"268":1,"273":1,"276":2,"279":2,"284":1,"288":1,"289":3,"293":2,"294":1,"297":2,"305":2,"306":2,"314":2,"315":1,"317":1,"320":7,"332":2,"337":2,"339":1,"344":3,"348":1,"350":1,"352":5,"354":1,"355":2,"362":1,"365":1,"366":1,"368":1,"369":1,"370":1,"374":1,"375":1,"377":4,"378":1,"379":2,"384":1,"385":1,"386":2,"387":1,"390":1,"391":1,"393":3,"396":1,"397":1,"398":1,"399":3,"401":1,"402":6,"403":10,"405":2,"406":2,"407":2,"408":3,"409":1,"411":2,"412":5,"414":2,"415":2,"416":1,"417":2,"426":1,"429":2,"430":5,"433":10,"437":1,"439":1,"440":1,"442":1,"444":2,"445":1,"446":1,"450":1,"452":2,"453":2,"460":1,"463":1,"472":1,"475":1,"487":2,"489":6,"490":1,"492":1,"493":1,"494":1,"495":1,"496":1,"499":2,"504":1,"512":6,"513":2,"514":1,"516":2,"517":1,"521":1,"525":2,"526":3,"527":2,"528":1,"529":2,"530":1,"531":1,"533":3,"538":4,"540":1,"541":4,"542":2,"543":2,"554":1,"555":2,"556":2,"560":2,"561":8,"564":6,"565":5,"568":11,"569":8,"570":8,"571":3,"572":5,"574":1,"575":2,"578":1,"579":2,"580":1,"581":1,"585":1,"586":1,"588":7,"591":1,"592":1,"593":9,"596":2,"599":2,"600":1,"601":1,"605":1,"610":1,"611":2,"613":3,"614":1,"615":2,"616":3,"619":4,"621":1,"623":2,"625":1,"626":2,"627":1,"628":2,"629":2,"630":2,"631":2,"632":2,"633":5,"634":2,"637":4,"639":2,"640":2,"643":1,"645":1,"647":6,"648":3,"649":1,"651":10,"656":4,"657":7,"658":1,"659":1,"661":1,"664":1,"665":2,"666":1,"668":3,"669":2,"671":1,"673":2,"679":2,"680":2,"681":2,"683":2,"684":1,"685":1,"690":2,"691":3,"693":1,"694":1,"696":1,"698":1,"710":3,"711":1,"712":1,"713":2,"714":1,"715":2,"716":1,"719":3,"720":1,"721":1,"722":2,"725":1,"742":1,"744":1,"745":1,"746":5,"748":1,"749":5,"750":2,"751":1,"752":1,"753":5,"754":4,"755":3,"756":1,"757":5,"758":1,"759":1,"761":1,"762":2,"763":1,"764":6,"768":1,"772":1,"793":2,"796":2,"797":4,"798":2,"799":4,"801":1,"803":1,"805":2,"827":1,"829":1,"831":2,"856":1,"858":1,"861":1,"863":2,"888":1,"890":1,"893":2,"920":1,"926":1,"928":2,"955":1,"960":1,"962":2,"989":1,"991":1,"994":1,"996":2,"1023":1,"1025":1,"1028":1,"1030":2,"1057":1,"1059":1,"1062":1,"1064":2,"1091":1,"1096":1,"1098":2,"1125":1,"1130":1,"1132":2,"1159":1,"1164":1,"1166":2,"1192":2,"1193":3,"1194":3,"1196":3,"1197":5,"1198":1,"1199":4,"1200":4,"1201":1,"1203":3,"1204":4,"1205":4,"1207":1,"1208":1,"1213":4,"1214":1,"1215":1,"1217":1,"1219":2,"1246":1,"1247":2,"1248":2,"1252":1,"1253":1,"1267":1,"1268":1,"1276":1,"1282":1,"1283":1,"1284":1,"1285":1,"1286":1,"1287":1,"1288":1,"1290":2,"1292":2,"1293":1,"1294":2,"1296":1,"1297":5,"1298":1,"1303":2,"1312":1,"1313":1,"1315":3,"1320":1,"1322":1,"1327":3,"1328":1,"1329":2,"1331":1,"1332":3,"1335":1,"1336":2,"1337":1,"1338":1,"1348":3,"1349":1,"1350":3,"1351":2,"1353":1,"1354":1,"1356":4,"1361":2,"1362":6,"1364":6,"1366":1,"1367":6,"1368":1,"1375":1,"1376":5,"1379":1,"1382":2,"1383":1,"1387":1,"1388":1,"1389":1,"1392":3,"1393":2,"1394":1,"1396":1,"1397":2,"1398":1,"1405":1,"1406":1,"1409":3,"1410":14,"1412":1,"1413":18,"1414":1,"1415":2,"1416":3,"1417":8,"1418":1,"1419":3,"1420":2,"1421":1,"1422":9,"1423":4,"1425":1,"1426":1,"1427":5,"1428":8,"1431":6,"1432":1,"1433":1,"1438":1,"1440":2,"1443":2,"1444":1,"1446":16,"1447":6,"1448":1,"1452":3,"1455":3,"1462":7,"1464":3,"1465":1,"1466":2,"1467":3,"1468":1,"1470":3,"1471":2,"1475":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1485":6,"1486":11,"1487":4,"1488":1,"1490":4,"1491":1,"1492":2,"1493":3,"1497":1,"1498":9,"1501":3,"1502":3,"1503":6,"1510":3,"1512":1,"1514":1,"1517":7,"1518":5,"1522":1,"1523":3,"1525":5,"1526":3,"1527":3,"1528":6,"1529":1,"1532":6,"1533":3,"1535":2,"1536":2,"1537":5,"1538":11,"1539":2,"1541":2,"1542":1,"1544":1,"1545":3,"1546":4,"1547":1,"1548":1,"1549":2,"1550":3,"1551":1,"1556":1,"1558":4,"1571":1,"1576":1,"1589":5,"1590":3,"1591":4,"1593":9,"1594":1,"1595":3,"1597":2,"1598":2,"1599":2,"1600":5,"1601":1,"1602":1,"1604":1,"1605":3,"1606":1,"1608":1,"1610":1,"1612":5,"1613":2,"1614":2,"1615":4,"1616":1,"1619":2,"1620":5,"1621":1,"1622":1,"1623":4,"1624":2,"1625":2,"1627":2,"1628":3,"1630":4,"1633":3,"1634":3,"1638":1,"1643":1,"1645":1,"1647":4,"1648":3,"1651":1,"1652":1,"1661":3,"1662":2,"1663":1,"1664":3,"1668":2,"1670":1,"1671":2,"1675":2,"1676":4,"1678":4,"1681":14,"1682":1,"1684":2,"1685":4,"1687":2,"1689":1,"1690":5,"1702":3,"1706":1,"1707":1,"1708":1,"1717":1,"1720":2,"1721":1,"1722":2,"1723":1,"1724":1,"1726":1,"1729":1,"1734":1,"1736":1,"1738":2,"1739":1,"1740":1,"1742":4,"1747":1,"1757":1,"1764":1,"1765":1,"1766":1,"1767":2,"1769":2,"1771":1,"1774":2,"1776":3,"1777":1,"1779":2,"1781":10,"1782":5,"1783":1,"1784":7,"1785":7,"1786":18,"1789":2,"1790":1,"1791":4,"1792":1,"1793":3,"1794":9,"1795":5,"1796":1,"1798":2,"1800":2,"1801":2,"1802":4,"1809":1,"1814":1,"1815":3,"1817":1,"1818":1,"1835":1,"1836":1,"1837":1,"1838":2,"1839":2,"1840":1,"1843":2,"1845":2,"1846":13,"1847":3,"1849":1,"1851":1,"1852":1,"1853":1,"1855":1,"1858":1,"1860":1,"1862":1,"1864":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"1907":1,"1908":2,"1910":2,"1912":2,"1915":2,"1926":1,"1930":1,"1934":1,"1935":6,"1936":4,"1937":7,"1938":3,"1939":3,"1940":1,"1941":1,"1946":1,"1947":1,"1948":5,"1949":2,"1951":1,"1952":3,"1953":6,"1954":16,"1956":1,"1957":2,"1958":1,"1959":4,"1960":1,"1961":4,"1962":1,"1963":1,"1964":1,"1966":1,"1967":2,"1968":3,"1971":8,"1973":1,"1974":4,"1976":1,"1978":1,"1979":2,"1980":2,"1981":1,"1982":2,"1983":6,"1984":1,"1985":6,"1986":3,"1987":2,"1988":1,"1990":13,"1992":4,"1993":1,"1994":7,"1999":6,"2000":1,"2001":1,"2003":1,"2004":1,"2005":2,"2006":2,"2008":4,"2009":1,"2011":1,"2012":4,"2014":3,"2015":1,"2016":2,"2031":1,"2038":1,"2040":1,"2044":2,"2046":1,"2048":2,"2051":1,"2053":1,"2057":4,"2059":6,"2065":3,"2068":5,"2069":4,"2070":2,"2071":2,"2072":1,"2073":3,"2075":2,"2076":8,"2077":3,"2079":1,"2081":2,"2082":13,"2083":4,"2085":2,"2086":3,"2090":1,"2091":2,"2092":1,"2094":1,"2096":1,"2097":1,"2100":1,"2102":1,"2104":1,"2106":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2167":1,"2168":2,"2170":2,"2172":2,"2175":2,"2178":1,"2179":3,"2181":12,"2182":1,"2183":3,"2184":1,"2185":1,"2187":1,"2188":2,"2189":4,"2191":3,"2192":2,"2198":4,"2202":2,"2203":3,"2204":1,"2207":1,"2209":1,"2210":3,"2212":1,"2213":1,"2218":6,"2219":2,"2220":3,"2221":3,"2223":1,"2232":1,"2234":1,"2238":1,"2240":1,"2242":1,"2244":1,"2249":1,"2254":6,"2258":1,"2259":2,"2260":3,"2261":4,"2265":2,"2266":1,"2267":1,"2270":1,"2271":2,"2272":7,"2273":4,"2274":3,"2275":4,"2276":10,"2277":5,"2278":12,"2279":4,"2280":1,"2281":1,"2286":1,"2287":5,"2289":2,"2290":9,"2291":1,"2292":1,"2293":1,"2294":1,"2295":5,"2296":3,"2297":4,"2298":1,"2300":13,"2302":2,"2303":3,"2304":1,"2306":2,"2309":15,"2310":22,"2315":1,"2316":1,"2317":24,"2318":2,"2319":16,"2321":2,"2325":2,"2328":6,"2329":3,"2330":1,"2331":6,"2332":1,"2340":1,"2342":1,"2344":1,"2345":1,"2346":1,"2360":1,"2361":1,"2374":3,"2375":3,"2377":1,"2379":6,"2381":4,"2382":1,"2383":2,"2385":2,"2386":1,"2387":4,"2388":3,"2389":3,"2390":3,"2391":1,"2392":1,"2393":2,"2394":2,"2395":3,"2396":3,"2397":3,"2398":2,"2399":1,"2400":3,"2402":3,"2404":2,"2406":1,"2407":5,"2409":1,"2410":1,"2412":1,"2413":2,"2414":4,"2415":1,"2417":6,"2418":9,"2421":1,"2422":1,"2423":2,"2424":1,"2425":2,"2427":2,"2428":5,"2429":2,"2430":1,"2431":3,"2432":3,"2433":1,"2434":3,"2435":1,"2437":1,"2439":2,"2449":1,"2450":3,"2452":1,"2453":8,"2454":3,"2455":3,"2456":2,"2457":1,"2458":1,"2460":1,"2463":1,"2464":1,"2465":1,"2466":17,"2468":2,"2469":3,"2470":1,"2471":1,"2472":2,"2473":3,"2474":1,"2477":1,"2481":1,"2482":2,"2483":2,"2490":1,"2494":1,"2496":1,"2497":1,"2499":3,"2500":2,"2501":1,"2502":5,"2503":2,"2504":2,"2505":4,"2508":5,"2509":1,"2511":1,"2518":1,"2521":1,"2523":1,"2532":10,"2540":1,"2556":3,"2558":4,"2559":1,"2561":1,"2562":4,"2563":5,"2564":1,"2566":1,"2567":1,"2568":4,"2569":5,"2570":1,"2572":2,"2573":2,"2576":4,"2578":1,"2579":1,"2583":1,"2584":2,"2585":2,"2586":1,"2587":1,"2589":3,"2590":3,"2591":1,"2593":1,"2594":1,"2598":2,"2603":2,"2604":2,"2608":2,"2610":1,"2612":4,"2613":2,"2614":1,"2616":4,"2617":1,"2621":2,"2622":2,"2626":4,"2627":2,"2628":3,"2629":4,"2633":2,"2634":4,"2635":1,"2636":2,"2637":1,"2638":2,"2639":3,"2640":6,"2641":1,"2650":5,"2652":7,"2653":2,"2656":1,"2657":1,"2658":4,"2659":3,"2662":1,"2664":1,"2665":2,"2666":3,"2667":1,"2668":4,"2669":3,"2671":1,"2672":1,"2673":2,"2676":4,"2677":2,"2679":1,"2680":2,"2683":2,"2684":4,"2685":6,"2686":5,"2687":4,"2688":1,"2690":2,"2691":2,"2700":2,"2702":5,"2704":2,"2705":2,"2706":1,"2707":2,"2709":7,"2710":1,"2711":1,"2712":1,"2714":2,"2715":1,"2716":1,"2717":1,"2718":1,"2720":1,"2721":2,"2722":1,"2726":1,"2730":1,"2733":1,"2742":1,"2743":1,"2744":9,"2746":12,"2747":2,"2748":2,"2749":5,"2750":2,"2752":1,"2753":3,"2756":1,"2759":3,"2760":4,"2761":3,"2762":5,"2763":39,"2764":29,"2767":4,"2769":2,"2770":1,"2771":1,"2772":1,"2775":6,"2777":4,"2778":2,"2779":1,"2780":2,"2781":6,"2782":6,"2785":4,"2786":2,"2787":2,"2790":3,"2791":2,"2794":4,"2795":3,"2796":1,"2799":2,"2805":1,"2807":1,"2809":1,"2810":1,"2813":1,"2814":1,"2821":3,"2822":1,"2827":1,"2831":1,"2834":2,"2839":1,"2840":1,"2844":2,"2846":1,"2849":2,"2851":2,"2853":2,"2857":2,"2861":1,"2869":3,"2871":1,"2872":1,"2874":1,"2877":2,"2878":1,"2884":3,"2886":4,"2888":3,"2889":1,"2893":1,"2895":2,"2897":2,"2898":1,"2899":1,"2901":3,"2902":6,"2903":2,"2904":1,"2910":5,"2912":7,"2913":12,"2918":4,"2919":11,"2920":7,"2921":6,"2922":10,"2923":6,"2924":8,"2925":16,"2926":4,"2928":1,"2929":1,"2930":14,"2931":4,"2932":1,"2934":5,"2935":6,"2936":6,"2937":3,"2938":1,"2939":1,"2940":6,"2941":1,"2943":2,"2944":1,"2948":1,"2949":4}}],["bndu",{"2":{"1925":1,"2527":1}}],["bndd",{"2":{"1925":1,"2527":1}}],["bn009",{"2":{"207":1,"211":1}}],["bn009r2",{"2":{"207":1}}],["bn006",{"2":{"191":1}}],["b♭",{"2":{"1925":6,"2527":6}}],["bbb",{"2":{"2567":1}}],["bb5",{"2":{"1925":1,"2527":1}}],["bb4",{"2":{"1925":1,"2527":1}}],["bb3",{"2":{"1925":1,"2527":1}}],["bb2",{"2":{"1925":1,"2527":1}}],["bb1",{"2":{"1925":1,"2527":1}}],["bb",{"2":{"1925":1,"2527":1}}],["bbs",{"2":{"266":1}}],["b9",{"2":{"1639":1,"2691":1}}],["b8",{"2":{"1556":1,"2685":1,"2691":1}}],["b87",{"2":{"211":2}}],["b3",{"2":{"635":2,"1247":3,"1670":6,"1699":1,"1838":1,"1925":1,"2485":1,"2487":2,"2489":1,"2527":1,"2691":2,"2720":1}}],["b2",{"2":{"635":2,"690":1,"1247":3,"1396":1,"1482":2,"1546":1,"1553":1,"1670":6,"1699":1,"1838":1,"1925":1,"2485":1,"2487":2,"2489":1,"2527":1,"2666":1,"2691":2,"2720":1,"2872":2}}],["b11",{"2":{"2691":1}}],["b10",{"2":{"2691":1}}],["b15",{"2":{"690":1,"1248":1,"2691":1}}],["b15288fb87",{"2":{"95":1}}],["b14",{"2":{"690":1,"1248":1,"1639":1,"2691":1}}],["b12",{"2":{"690":1,"1665":1,"1666":1,"2691":1}}],["b13",{"2":{"690":1,"1248":1,"1665":1,"1666":1,"2691":1}}],["b1²",{"2":{"690":1}}],["b1¹",{"2":{"690":1}}],["b1",{"2":{"635":2,"690":4,"1247":2,"1482":2,"1553":1,"1670":6,"1699":1,"1838":1,"1925":1,"2485":1,"2487":1,"2489":1,"2527":1,"2612":1,"2691":2,"2720":1,"2872":2}}],["b7",{"2":{"561":1,"569":2,"715":2,"764":1,"768":2,"1201":1,"1247":1,"1268":1,"1474":2,"1553":1,"2271":1,"2418":1,"2691":1,"2720":1}}],["b007",{"2":{"713":1,"2396":1}}],["b0²",{"2":{"690":1}}],["b0¹",{"2":{"690":1}}],["b0",{"2":{"561":2,"570":1,"635":2,"690":4,"1247":2,"1392":1,"1396":3,"1838":1,"2278":1,"2390":1,"2489":2,"2691":3,"2720":1,"2872":2}}],["b6",{"2":{"561":1,"688":1,"764":1,"768":2,"1198":1,"1201":1,"1247":1,"1474":2,"1553":1,"1699":1,"1983":1,"2485":1,"2487":1,"2691":2,"2720":1}}],["b5",{"2":{"561":1,"688":1,"715":2,"1247":2,"1474":2,"1553":1,"1925":1,"1983":1,"2487":1,"2527":1,"2669":1,"2691":2,"2720":1,"2880":1}}],["bgr",{"2":{"1287":1}}],["bg",{"2":{"492":1,"494":1,"2764":9}}],["bdfc",{"2":{"376":1,"377":1}}],["bdn9",{"2":{"149":1,"1388":1,"1390":2,"1405":2}}],["bc417",{"2":{"2374":1}}],["bcat",{"2":{"222":1}}],["bc",{"2":{"211":1}}],["bcd",{"2":{"149":1,"328":1,"2882":1}}],["bx",{"2":{"211":2}}],["bsd",{"2":{"2328":2,"2331":2,"2332":3,"2540":3,"2740":1}}],["bspace",{"2":{"1625":1}}],["bspc",{"2":{"195":1,"375":1,"589":4,"1367":6,"1535":1,"1600":1,"1605":5,"1622":1,"1774":1,"2068":1,"2073":1,"2381":2,"2510":1,"2544":1,"2563":1,"2919":1,"2920":1}}],["bssl",{"2":{"1622":1}}],["bss",{"2":{"1376":1}}],["bsls",{"2":{"375":1,"589":2,"2510":1,"2544":1,"2563":1}}],["bs",{"2":{"191":3,"259":2,"266":1,"308":1,"2222":1,"2526":3,"2552":3}}],["bépo",{"2":{"176":1,"2887":1}}],["bpm",{"2":{"1487":1}}],["bp",{"2":{"176":1}}],["bpp",{"2":{"160":1,"236":1}}],["bpiphany",{"2":{"143":2,"149":2}}],["bkf",{"2":{"143":2}}],["b4",{"2":{"111":1,"561":1,"635":2,"688":1,"715":2,"1247":2,"1838":1,"1925":1,"2375":1,"2487":1,"2527":1,"2691":2}}],["bmpgdbserialport",{"2":{"2683":2}}],["bmp",{"2":{"2683":1}}],["bm",{"2":{"134":1,"266":1}}],["bm68hsrgb",{"2":{"122":1,"143":2,"149":1}}],["bm68rgb",{"2":{"102":2,"122":1}}],["bm65hsrgb",{"2":{"122":1,"143":2,"149":1}}],["bm65iso",{"2":{"122":1}}],["bm60hsrgb",{"2":{"122":3,"328":3}}],["bm60rgb",{"2":{"102":4,"122":2}}],["bm60poker",{"2":{"102":2,"122":1}}],["bm43a",{"2":{"102":2}}],["bm40hsrgb",{"2":{"102":2,"226":2,"236":1}}],["bm16s",{"2":{"102":2}}],["bm16a",{"2":{"102":2,"199":1}}],["b",{"0":{"2107":1,"2109":1},"1":{"2108":1,"2110":1},"2":{"98":2,"199":1,"211":5,"249":1,"266":1,"328":1,"351":1,"354":1,"361":2,"375":1,"421":1,"422":1,"430":1,"459":2,"460":3,"572":2,"589":2,"613":1,"617":1,"729":1,"732":1,"805":1,"808":1,"831":1,"834":1,"863":1,"866":1,"893":1,"896":1,"928":1,"931":1,"962":1,"965":1,"996":1,"999":1,"1030":1,"1033":1,"1064":1,"1067":1,"1098":1,"1101":1,"1132":1,"1135":1,"1166":1,"1169":1,"1219":1,"1222":1,"1288":2,"1597":1,"1602":3,"1603":1,"1604":2,"1605":1,"1617":2,"1622":1,"1625":1,"1641":3,"1665":4,"1666":3,"1669":1,"1670":2,"1784":2,"1785":2,"1786":2,"1925":13,"1983":2,"2059":2,"2068":2,"2094":1,"2096":1,"2108":1,"2110":1,"2181":1,"2198":10,"2222":1,"2277":2,"2278":1,"2296":2,"2301":2,"2317":1,"2443":1,"2472":2,"2510":3,"2527":13,"2532":1,"2542":3,"2563":1,"2612":2,"2640":3,"2865":2,"2914":1,"2915":10,"2916":29,"2917":17}}],["btn",{"2":{"2048":8}}],["btn8",{"2":{"1933":1,"2528":1}}],["btn7",{"2":{"1933":1,"2528":1}}],["btn6",{"2":{"1933":1,"2528":1}}],["btn5",{"2":{"1933":1,"2528":1}}],["btn4",{"2":{"1933":1,"2528":1}}],["btn3",{"2":{"1933":1,"2528":1}}],["btn2",{"2":{"1933":1,"2528":1}}],["btn1",{"2":{"1933":1,"1992":2,"2528":1}}],["bt",{"2":{"75":1,"134":1,"2377":9,"2516":9}}],["bfo",{"2":{"45":1}}],["bh",{"2":{"37":3,"159":6,"160":3}}],["baart",{"2":{"2643":1}}],["bay",{"2":{"2427":1}}],["ball",{"2":{"1980":1,"2919":1}}],["balance",{"2":{"211":1}}],["baud",{"0":{"1271":1},"1":{"1272":1},"2":{"1207":12,"1272":2,"2298":1}}],["baudrate",{"0":{"1207":1,"1300":1},"2":{"93":1,"1207":4,"1299":1,"1300":2}}],["baking",{"2":{"583":1}}],["bakingpy",{"2":{"574":1,"2418":1}}],["bakeneko",{"2":{"211":1}}],["bakeneko80",{"2":{"143":2}}],["bakeneko60",{"2":{"143":2}}],["bakeneko65",{"2":{"102":3,"114":1,"143":4}}],["baz",{"2":{"512":1}}],["bare",{"2":{"2425":1,"2709":1,"2731":1,"2746":2}}],["barring",{"2":{"2014":1}}],["barrel",{"0":{"1657":1,"1658":1},"2":{"1645":1,"1651":2,"1657":1,"1658":1}}],["bar",{"2":{"512":2,"518":1,"534":8,"535":2,"605":1,"629":2,"1788":1,"2293":1,"2301":12,"2331":1,"2928":1}}],["barleycorn",{"2":{"143":2}}],["bamfk",{"2":{"266":1}}],["bamfk1",{"2":{"222":1}}],["babyv",{"2":{"236":1}}],["badly",{"2":{"616":1}}],["bad",{"2":{"149":1,"294":1,"512":1,"517":1,"533":1,"535":1,"1440":1,"1535":1,"2427":2,"2434":1,"2463":1,"2746":1}}],["battery",{"0":{"741":1,"1577":1,"1582":1,"1585":1,"1587":1,"2858":1},"1":{"742":1,"743":1,"744":1,"745":1,"1578":1,"1579":1,"1580":1,"1581":1,"1582":1,"1583":2,"1584":1,"1585":1,"1586":1,"1587":1,"1588":1},"2":{"308":3,"317":1,"685":1,"741":1,"742":1,"743":1,"744":6,"745":2,"1577":1,"1579":2,"1580":1,"1582":1,"1583":1,"1585":1,"1586":1,"1587":1,"1588":1,"2278":1,"2858":3}}],["bat43",{"2":{"143":4}}],["batch",{"2":{"133":1,"408":1,"411":1,"412":1,"1913":2,"1916":2,"2173":2,"2176":2}}],["ban",{"2":{"2739":1}}],["bang",{"2":{"2329":3}}],["banging",{"2":{"1193":1,"1290":1}}],["banger",{"2":{"143":2,"149":1}}],["bandwidth",{"2":{"2707":1}}],["band",{"2":{"1849":10,"2085":20,"2894":6}}],["bandana",{"2":{"211":1}}],["bandominedoni",{"2":{"134":1}}],["bank",{"2":{"49":4,"176":1,"2685":8}}],["basing",{"2":{"2429":1}}],["basis",{"0":{"2419":1},"2":{"1333":1,"1846":1,"2082":1,"2627":1}}],["basics",{"0":{"1443":1},"1":{"1444":1},"2":{"2643":2,"2905":1,"2906":1}}],["basically",{"2":{"297":1,"645":1,"1954":1,"2290":1,"2748":1,"2922":1}}],["basic",{"0":{"699":1,"717":1,"726":1,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1285":1,"1416":1,"1418":1,"1477":1,"1544":1,"1579":1,"1699":1,"1770":1,"1799":1,"1921":1,"1949":1,"2056":1,"2221":1,"2288":1,"2327":1,"2412":1,"2432":1,"2510":1,"2541":1},"1":{"727":1,"803":1,"829":1,"858":1,"859":1,"860":1,"861":1,"890":1,"891":1,"922":1,"923":1,"924":1,"925":1,"926":1,"957":1,"958":1,"959":1,"960":1,"991":1,"992":1,"993":1,"994":1,"1025":1,"1026":1,"1027":1,"1028":1,"1059":1,"1060":1,"1061":1,"1062":1,"1093":1,"1094":1,"1095":1,"1096":1,"1127":1,"1128":1,"1129":1,"1130":1,"1161":1,"1162":1,"1163":1,"1164":1,"1217":1,"1286":1,"1287":1,"1288":1,"1417":1,"1418":1,"1478":1,"1479":1,"1545":1,"1546":1,"1800":1,"1801":1,"1802":1,"1803":1,"1950":1,"1951":1,"2328":1,"2413":1,"2414":1,"2415":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1},"2":{"133":1,"134":1,"211":1,"222":1,"231":4,"248":1,"249":2,"369":1,"379":1,"437":1,"440":1,"450":1,"469":1,"599":1,"606":1,"619":1,"666":1,"681":1,"716":1,"720":1,"723":1,"797":1,"1356":1,"1419":1,"1423":1,"1444":1,"1477":2,"1480":1,"1532":1,"1533":1,"1627":1,"1665":1,"1765":1,"1774":2,"1776":1,"1777":2,"1788":1,"1795":2,"1919":2,"1921":2,"2054":1,"2219":1,"2222":1,"2297":1,"2309":1,"2318":1,"2329":1,"2411":1,"2423":1,"2432":1,"2478":1,"2510":1,"2541":1,"2565":1,"2576":1,"2578":1,"2586":1,"2605":1,"2619":1,"2644":1,"2738":1,"2746":2,"2751":2,"2760":1,"2777":1,"2785":1,"2820":1,"2856":1,"2906":1,"2928":1,"2933":2,"2948":1}}],["bashcompinit",{"2":{"509":3}}],["bashrc",{"2":{"509":1,"2628":2}}],["bash",{"2":{"507":1,"2628":2,"2676":1,"2678":1}}],["bastard",{"2":{"249":1}}],["bastardkb",{"2":{"114":1,"176":2,"266":1,"277":1,"311":50,"317":8,"2706":1}}],["base64",{"0":{"2246":1},"2":{"2775":2}}],["bases",{"2":{"619":2}}],["base",{"0":{"2563":1},"2":{"125":1,"163":1,"174":1,"185":1,"217":2,"221":1,"226":1,"270":2,"294":1,"311":1,"575":1,"591":1,"748":1,"749":4,"756":1,"1407":1,"1422":1,"1425":1,"1426":4,"1533":3,"1545":1,"1613":1,"1619":1,"1638":1,"1790":2,"1791":2,"1936":4,"2453":1,"2523":2,"2558":3,"2562":1,"2563":1,"2564":1,"2605":1,"2634":2,"2640":2,"2653":1,"2701":1,"2703":1,"2707":1,"2714":1,"2744":1,"2747":1}}],["based",{"0":{"25":1,"1474":1,"1476":1,"2734":1},"1":{"1475":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1},"2":{"25":1,"49":1,"50":1,"65":2,"74":1,"93":1,"113":1,"114":2,"123":1,"153":1,"160":1,"163":1,"164":1,"172":1,"191":1,"199":1,"210":1,"235":1,"236":1,"248":1,"263":2,"356":1,"411":1,"433":1,"444":1,"445":1,"450":1,"495":1,"567":1,"616":1,"639":6,"715":1,"716":1,"746":2,"754":1,"759":1,"1196":1,"1199":1,"1296":1,"1320":1,"1325":1,"1392":1,"1393":1,"1395":1,"1410":10,"1417":1,"1428":7,"1430":1,"1471":1,"1472":2,"1474":1,"1477":1,"1683":1,"1738":1,"1743":1,"1798":1,"1846":1,"1851":1,"1939":1,"1943":1,"1953":1,"1954":1,"1956":1,"1961":1,"1970":1,"1980":1,"1994":2,"2011":1,"2075":1,"2082":1,"2090":1,"2096":1,"2200":2,"2203":1,"2212":1,"2278":1,"2290":1,"2303":1,"2308":1,"2331":1,"2374":2,"2375":1,"2379":1,"2382":2,"2385":1,"2387":1,"2394":1,"2418":1,"2432":1,"2442":1,"2446":1,"2482":1,"2501":1,"2541":1,"2567":26,"2568":1,"2573":1,"2592":1,"2603":1,"2608":1,"2616":1,"2626":1,"2664":2,"2684":1,"2688":1,"2704":2,"2706":1,"2725":1,"2733":1,"2760":1,"2763":4,"2764":4,"2775":1,"2777":1,"2785":1,"2790":1,"2843":1,"2853":1,"2903":1,"2926":1}}],["backtick",{"2":{"1673":1,"1675":1}}],["backticks",{"2":{"354":1}}],["backlit",{"2":{"1541":1}}],["backlightx",{"2":{"2455":1}}],["backlighting",{"0":{"1541":1,"2515":1},"1":{"1542":1,"1543":1,"1544":1,"1545":1,"1546":1,"1547":1,"1548":1,"1549":1,"1550":1,"1551":1,"1552":1,"1553":1,"1554":1,"1555":1,"1556":1,"1557":1,"1558":1,"1559":1,"1560":1,"1561":1,"1562":1,"1563":1,"1564":1,"1565":1,"1566":1,"1567":1,"1568":1,"1569":1,"1570":1,"1571":1,"1572":1,"1573":1,"1574":1,"1575":1,"1576":1},"2":{"1542":1,"1844":1,"2309":1,"2418":1,"2455":1,"2515":1,"2774":1}}],["backlights",{"2":{"648":1,"1664":1}}],["backlight|led",{"2":{"176":1}}],["backlight",{"0":{"7":1,"14":2,"16":1,"1546":1,"1560":1,"1561":1,"1562":1,"1563":1,"1564":1,"1565":1,"1566":1,"1568":1,"1570":1,"1572":1,"1573":1,"1574":1,"1575":1,"2805":1,"2857":1},"1":{"1567":1,"1569":1,"1571":1,"1576":1},"2":{"14":4,"16":4,"32":1,"49":1,"50":1,"63":1,"70":1,"73":1,"93":1,"94":1,"110":1,"111":1,"112":4,"114":1,"134":4,"149":1,"160":1,"188":1,"191":4,"198":1,"199":6,"222":4,"231":3,"236":2,"249":3,"266":3,"294":1,"561":7,"1311":2,"1392":1,"1393":1,"1543":14,"1544":21,"1545":4,"1546":10,"1547":1,"1548":1,"1550":1,"1551":5,"1553":1,"1554":1,"1556":4,"1557":1,"1558":3,"1560":1,"1561":1,"1562":1,"1563":1,"1564":1,"1565":1,"1566":1,"1567":1,"1568":1,"1569":2,"1570":1,"1571":1,"1572":1,"1573":1,"1574":1,"1575":1,"1576":1,"1844":1,"1847":1,"2083":1,"2418":3,"2419":3,"2455":3,"2515":14,"2692":1,"2746":2,"2764":11,"2805":1,"2857":9,"2907":1,"2940":1}}],["backslash",{"2":{"1349":1,"1692":2,"1788":1,"2510":2,"2526":3,"2544":2,"2552":3,"2928":1}}],["backspaced",{"2":{"2330":1}}],["backspaces",{"2":{"1534":2,"1535":3,"1538":1,"1539":1}}],["backspace",{"0":{"1367":1},"2":{"99":1,"152":1,"211":1,"255":1,"599":1,"605":1,"1349":1,"1367":2,"1538":3,"1593":1,"1605":1,"1692":1,"1767":1,"1774":1,"2068":1,"2073":4,"2222":1,"2379":1,"2510":2,"2526":6,"2544":2,"2552":6}}],["backgrounds",{"2":{"494":1}}],["background",{"2":{"494":5,"656":1,"2764":3}}],["backup",{"2":{"447":2}}],["backing",{"0":{"2636":1},"2":{"236":1,"339":1,"753":1,"754":3,"755":3,"756":4,"2864":1}}],["backwards",{"2":{"114":1,"249":1,"262":1,"293":1,"305":1,"314":1,"316":1,"331":1,"1618":1,"2260":1,"2377":1,"2516":1}}],["backward",{"2":{"75":1,"285":1,"2068":2}}],["back",{"0":{"2473":1,"2481":1},"2":{"50":1,"55":13,"124":1,"134":1,"152":1,"393":1,"403":1,"489":1,"530":1,"588":1,"651":1,"681":1,"684":1,"1483":1,"1522":2,"1662":1,"1663":1,"1664":1,"1791":1,"1802":1,"1970":1,"2058":1,"2068":1,"2085":3,"2213":1,"2214":1,"2216":1,"2277":2,"2280":1,"2294":2,"2384":1,"2391":1,"2410":1,"2428":1,"2429":1,"2434":1,"2503":2,"2510":2,"2549":2,"2566":1,"2587":1,"2616":1,"2634":2,"2668":1,"2747":1,"2852":1,"2894":1,"2912":1,"2936":1}}],["backend",{"0":{"383":1},"2":{"49":1,"279":2,"2676":1,"2864":1}}],["backport",{"0":{"5":1},"2":{"74":1}}],["bidirectional",{"2":{"2054":1}}],["bilateral",{"2":{"294":1}}],["bioses",{"2":{"575":1}}],["bios",{"0":{"1387":1},"2":{"263":1,"1377":1,"1381":1,"1387":1}}],["bioi",{"2":{"211":4,"236":1}}],["biacco42",{"2":{"143":3,"149":2}}],["bigram",{"2":{"2070":5}}],["bigrams",{"2":{"2070":2}}],["bigseries",{"2":{"143":8}}],["bigswitch",{"2":{"43":2,"266":1}}],["big",{"2":{"94":2,"411":1,"529":1,"604":1,"784":1,"790":1,"2418":1,"2753":1}}],["bigger",{"2":{"46":1,"574":1,"2466":1,"2586":1,"2949":1}}],["bin|hex",{"2":{"430":1}}],["binding",{"2":{"2418":1}}],["bindings",{"2":{"1522":1,"2510":1,"2746":2}}],["bind",{"2":{"308":1,"339":1,"1788":1,"2928":1}}],["binary",{"0":{"1537":1},"1":{"1538":1,"1539":1},"2":{"284":1,"285":1,"366":1,"378":1,"430":1,"581":2,"584":1,"586":2,"1367":1,"2417":1,"2458":1,"2506":1,"2508":1,"2725":1,"2726":1,"2727":1,"2728":1,"2731":1,"2733":2,"2736":2,"2738":1,"2741":1,"2742":1,"2746":1,"2854":1,"2949":1}}],["binaries",{"0":{"164":1},"2":{"93":1,"164":1,"176":1,"199":1,"578":1,"1326":1,"2395":1,"2465":2,"2683":1,"2710":1}}],["binepad",{"2":{"207":2,"211":1,"328":1}}],["bin",{"2":{"23":1,"94":2,"95":2,"133":1,"134":1,"394":1,"430":1,"446":1,"572":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2407":1,"2417":1,"2508":2,"2589":1,"2599":1,"2614":2,"2628":2,"2678":1,"2683":3,"2854":1}}],["bit|status",{"2":{"2558":1}}],["bitmap",{"2":{"1953":1}}],["bitmask",{"2":{"285":1,"1364":2,"1432":1,"1771":1,"1772":1,"1773":1,"1781":1,"1846":1,"2034":1,"2036":1,"2082":1,"2781":1}}],["bitfields",{"2":{"2871":1,"2878":1}}],["bitfield",{"2":{"1782":1,"1794":1,"2871":1,"2878":1}}],["bitwise",{"2":{"762":1,"1364":2,"1422":1,"1538":1,"1953":1}}],["bits",{"2":{"378":1,"762":1,"1364":1,"1417":2,"1423":4,"1428":6,"1538":3,"1539":1,"1740":1,"1742":1,"1847":4,"1990":2,"2083":4,"2295":4,"2298":2,"2300":2,"2466":1,"2503":2,"2557":2,"2558":1,"2576":3,"2788":6}}],["bitbanging",{"2":{"1196":1,"1199":1}}],["bitbang",{"0":{"1193":1,"1290":1},"1":{"1194":1,"1195":1},"2":{"249":1,"1192":1,"1193":3,"1194":1,"1195":3,"1196":1,"1207":1,"1289":1,"1290":1,"1295":2,"2179":1,"2880":2,"2883":3}}],["bit",{"0":{"11":1,"1394":1},"2":{"11":2,"63":1,"114":1,"130":1,"134":1,"166":1,"176":2,"199":2,"211":1,"285":1,"308":1,"339":1,"685":1,"696":4,"719":2,"720":1,"762":4,"770":1,"773":1,"776":1,"779":1,"781":1,"782":1,"784":1,"785":1,"787":1,"788":1,"790":1,"791":1,"794":1,"803":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1192":1,"1193":1,"1217":1,"1252":1,"1285":3,"1286":3,"1290":1,"1295":2,"1343":2,"1364":5,"1366":1,"1379":1,"1389":1,"1391":3,"1413":1,"1417":2,"1418":1,"1423":3,"1428":2,"1493":1,"1517":1,"1523":1,"1532":4,"1538":2,"1539":1,"1600":2,"1641":1,"1697":1,"1720":2,"1722":2,"1740":2,"1747":1,"1757":1,"1779":6,"1781":2,"1788":12,"1794":1,"1947":2,"1990":2,"1994":1,"2043":4,"2074":1,"2238":1,"2240":1,"2242":1,"2272":2,"2286":2,"2296":2,"2318":2,"2466":1,"2523":1,"2557":1,"2558":1,"2561":6,"2562":2,"2576":3,"2578":1,"2612":1,"2617":1,"2622":2,"2651":1,"2689":1,"2713":1,"2714":1,"2763":1,"2765":1,"2777":1,"2778":1,"2781":8,"2785":1,"2802":1,"2803":1,"2902":1,"2923":1,"2928":12,"2941":1,"2948":1}}],["bob",{"2":{"2941":1}}],["bold",{"2":{"350":1,"604":1,"1213":1}}],["bolt",{"0":{"2295":1},"2":{"231":1,"2294":1,"2295":3,"2296":1,"2297":2,"2298":1,"2300":2,"2301":4}}],["bout",{"2":{"2079":1}}],["bouvet",{"2":{"339":1}}],["bounce",{"0":{"1409":1},"1":{"1410":1,"1411":1,"1412":1,"1413":1,"1414":1},"2":{"1409":4,"2582":1}}],["bounce75",{"2":{"211":1}}],["bound",{"2":{"236":1,"1788":1,"2901":1,"2928":1}}],["boundary",{"2":{"191":1}}],["bounds",{"2":{"114":1,"160":1,"333":3,"1954":3,"2290":3,"2447":1}}],["bounded",{"2":{"31":1,"34":1}}],["bongopad",{"2":{"311":2}}],["bonsai",{"0":{"1396":1},"2":{"176":1,"189":1,"191":1,"1389":1,"1391":3,"1396":1,"2895":1}}],["boy",{"2":{"211":1}}],["bocc",{"2":{"211":1}}],["boston",{"2":{"134":1,"211":1}}],["bodges",{"2":{"199":1}}],["bodge",{"2":{"114":1,"134":1,"149":1,"266":1}}],["box",{"2":{"114":1,"288":1,"352":1,"596":1,"2279":1,"2280":1,"2427":1,"2568":1,"2570":1,"2614":1,"2936":1}}],["boilerplate",{"2":{"114":1,"624":1,"2416":2}}],["bottom",{"2":{"100":1,"149":1,"255":1,"561":1,"616":1,"1376":1,"1400":1,"1401":1,"1408":1,"1492":1,"1533":1,"1633":1,"1647":1,"1846":1,"1849":1,"2082":1,"2085":2,"2178":1,"2269":1,"2296":1,"2317":1,"2319":1,"2425":1,"2481":1,"2612":1,"2659":1,"2744":1,"2764":6,"2783":2,"2794":1,"2845":1}}],["both",{"0":{"2580":1},"2":{"35":1,"45":1,"58":1,"70":14,"98":1,"107":1,"114":1,"134":1,"152":1,"163":1,"173":1,"175":1,"190":1,"229":1,"232":1,"233":1,"236":1,"249":1,"283":3,"366":1,"411":1,"447":1,"491":1,"494":1,"505":2,"512":1,"542":1,"564":1,"565":1,"570":1,"592":1,"599":1,"609":1,"629":1,"669":1,"685":1,"746":1,"1193":1,"1343":2,"1364":2,"1367":1,"1396":1,"1410":1,"1428":2,"1436":1,"1439":1,"1455":1,"1470":1,"1478":1,"1518":1,"1533":1,"1541":1,"1593":2,"1594":3,"1595":3,"1604":1,"1665":1,"1666":1,"1680":1,"1781":1,"1837":1,"1937":1,"1945":1,"1962":1,"1973":1,"1977":1,"1983":3,"1987":1,"1990":1,"2002":1,"2057":1,"2189":2,"2258":1,"2261":1,"2262":1,"2267":1,"2274":2,"2276":2,"2277":1,"2278":1,"2294":1,"2301":2,"2320":1,"2325":1,"2330":1,"2331":1,"2374":1,"2377":1,"2428":3,"2434":2,"2450":2,"2453":2,"2496":1,"2508":1,"2510":1,"2526":6,"2552":6,"2568":1,"2591":1,"2612":2,"2619":1,"2632":1,"2634":1,"2637":1,"2650":1,"2702":1,"2704":1,"2707":1,"2728":2,"2763":1,"2764":1,"2767":4,"2792":1,"2842":1,"2861":2,"2865":1,"2889":1,"2894":1,"2908":1,"2919":1,"2922":1,"2923":2,"2924":1,"2926":1,"2949":1}}],["boardinit",{"2":{"2687":1,"2746":2}}],["board",{"0":{"172":1,"189":1,"2687":1,"2703":1},"2":{"50":5,"76":1,"77":2,"113":1,"114":3,"134":1,"160":3,"167":1,"176":3,"182":1,"189":3,"191":1,"199":1,"211":2,"222":1,"233":1,"236":2,"248":1,"266":2,"277":1,"283":1,"285":1,"306":1,"307":1,"308":6,"315":1,"317":12,"333":1,"397":2,"554":1,"561":2,"565":1,"588":1,"646":1,"648":2,"651":1,"709":1,"710":2,"711":1,"717":1,"718":1,"728":1,"756":1,"764":2,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1200":1,"1218":1,"1248":2,"1269":1,"1299":1,"1303":1,"1348":5,"1383":1,"1391":2,"1392":1,"1396":1,"1399":1,"1403":1,"1407":2,"1417":1,"1465":1,"1471":1,"1479":1,"1488":1,"1492":1,"1551":1,"1556":1,"1557":1,"1846":1,"1953":1,"1959":1,"1980":1,"1987":1,"2082":1,"2261":2,"2265":1,"2275":1,"2278":2,"2328":1,"2374":1,"2375":1,"2410":1,"2421":1,"2424":4,"2425":1,"2429":1,"2430":2,"2433":1,"2460":1,"2483":1,"2494":1,"2497":3,"2501":1,"2566":2,"2567":2,"2568":1,"2569":5,"2589":1,"2612":2,"2616":2,"2683":1,"2684":4,"2685":1,"2686":1,"2687":3,"2691":1,"2694":2,"2700":1,"2702":2,"2703":3,"2707":1,"2710":1,"2714":5,"2744":2,"2745":1,"2746":16,"2747":1,"2753":1,"2771":3,"2772":1,"2835":1,"2844":1,"2845":1,"2853":7,"2894":1,"2912":1,"2926":1}}],["boardsource",{"2":{"176":4,"249":1,"277":2,"308":1,"2702":1}}],["boards",{"0":{"43":1,"235":1,"1474":1,"1476":1,"1843":1,"2280":1,"2424":1,"2701":1},"1":{"1475":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1,"2702":1,"2703":1},"2":{"8":1,"10":1,"28":1,"45":1,"57":1,"72":1,"80":1,"93":1,"108":1,"114":7,"131":1,"134":3,"149":25,"153":2,"160":3,"163":1,"172":3,"185":1,"189":1,"191":4,"199":2,"211":8,"221":1,"222":4,"235":1,"249":1,"263":1,"266":1,"277":1,"279":2,"283":1,"308":4,"317":9,"333":1,"555":1,"564":1,"568":3,"574":1,"710":1,"715":2,"716":1,"717":1,"723":1,"1196":1,"1199":1,"1291":1,"1312":1,"1319":1,"1392":1,"1393":1,"1470":1,"1471":3,"1472":4,"1474":1,"1492":1,"1589":1,"1591":1,"1739":1,"1843":1,"2091":1,"2265":1,"2279":3,"2280":1,"2374":2,"2383":2,"2386":1,"2390":1,"2393":1,"2395":1,"2396":1,"2398":1,"2418":1,"2424":1,"2483":1,"2501":1,"2566":2,"2567":32,"2568":1,"2569":6,"2572":2,"2664":1,"2684":1,"2700":1,"2701":2,"2702":2,"2706":1,"2707":1,"2712":1,"2713":1,"2733":1,"2746":4,"2747":1,"2760":1,"2852":1,"2895":1}}],["books",{"2":{"2941":1}}],["boost",{"2":{"1678":1,"2747":1}}],["boot1",{"2":{"2666":1}}],["bootstrap",{"2":{"2714":1}}],["bootstrapper",{"2":{"426":1,"488":1}}],["bootsel",{"2":{"2404":2}}],["booted",{"2":{"1957":1}}],["bootable",{"2":{"754":1}}],["booting",{"2":{"754":1,"1948":1,"2558":1}}],["boot\`",{"2":{"684":1}}],["bootlader",{"2":{"236":1}}],["bootloadhid",{"0":{"2390":1,"2500":1},"1":{"2391":1,"2392":1},"2":{"114":1,"191":1,"573":1,"713":1,"2390":6,"2417":1}}],["bootloader>",{"2":{"430":2,"2508":1}}],["bootloaders",{"0":{"713":1},"2":{"49":1,"149":1,"160":1,"199":1,"294":1,"430":3,"434":1,"710":1,"754":1,"1348":1,"2382":2,"2407":1,"2417":1,"2482":1,"2498":2,"2746":1}}],["bootloader",{"0":{"141":1,"709":1,"1317":1,"1318":1,"2382":1,"2497":1,"2502":1,"2505":1,"2612":1,"2671":1,"2705":1,"2773":1,"2807":1,"2876":1},"1":{"710":1,"711":1,"712":1,"713":1,"2383":1,"2384":1,"2385":1,"2386":1,"2387":1,"2388":1,"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2498":1,"2499":1,"2500":1,"2501":1,"2503":1,"2506":1,"2507":1,"2508":1},"2":{"49":4,"50":1,"65":1,"70":1,"74":1,"93":2,"111":1,"112":1,"114":3,"141":3,"149":8,"176":8,"191":4,"199":6,"211":1,"230":2,"231":1,"236":1,"240":3,"339":1,"430":4,"434":1,"548":1,"568":3,"573":1,"651":4,"652":4,"653":3,"654":2,"684":2,"709":3,"710":6,"711":2,"712":2,"713":9,"1316":1,"1318":2,"1348":2,"1376":1,"1382":1,"1472":7,"1589":3,"1591":2,"1625":4,"1681":2,"1948":5,"2273":10,"2382":1,"2383":6,"2384":8,"2386":5,"2388":6,"2389":5,"2390":5,"2391":14,"2393":5,"2394":1,"2395":6,"2396":4,"2397":3,"2398":5,"2399":1,"2400":7,"2402":7,"2404":7,"2482":6,"2490":1,"2496":1,"2497":1,"2499":4,"2500":1,"2501":2,"2502":2,"2503":2,"2504":3,"2505":5,"2506":1,"2508":2,"2511":4,"2612":1,"2616":6,"2667":2,"2671":1,"2672":3,"2685":9,"2691":2,"2700":5,"2705":2,"2734":1,"2746":2,"2752":4,"2773":2,"2844":1,"2852":1,"2853":2,"2876":3}}],["boot20",{"2":{"2508":1}}],["boot2",{"2":{"236":1}}],["bootmapper",{"2":{"235":1,"1291":1,"2500":1,"2612":1}}],["bootmagic",{"0":{"87":1,"103":1,"104":1,"126":1,"127":1,"245":2,"1589":1,"1591":1,"2808":1,"2860":1},"1":{"88":1,"104":1,"127":1,"1590":1,"1591":1,"1592":1},"2":{"70":1,"87":8,"88":8,"93":2,"94":1,"103":3,"104":8,"111":1,"114":2,"126":3,"127":8,"134":1,"176":3,"199":3,"222":1,"245":4,"249":2,"333":2,"574":3,"651":1,"684":1,"710":3,"1320":2,"1348":1,"1376":1,"1417":1,"1589":5,"1590":3,"1591":6,"1592":1,"1623":1,"2052":1,"2384":1,"2391":1,"2418":1,"2552":1,"2746":1,"2774":1,"2860":3,"2880":2,"2908":1}}],["boot",{"0":{"156":1,"167":1,"2700":1},"2":{"149":1,"156":2,"167":2,"176":1,"191":2,"199":1,"266":1,"277":1,"303":1,"338":1,"375":1,"574":1,"575":2,"589":2,"710":3,"754":1,"1376":1,"1485":1,"1486":1,"1948":2,"2383":1,"2386":1,"2388":1,"2389":2,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":2,"2402":2,"2404":2,"2511":1,"2620":1,"2685":1,"2700":1,"2702":1,"2746":1,"2752":1,"2773":1}}],["boot0",{"2":{"49":4,"2393":3,"2395":3,"2398":3}}],["boolean",{"0":{"90":1,"105":1},"2":{"93":1,"114":1,"134":1,"203":1,"647":1,"1367":3,"1417":1,"1452":1,"1840":1,"2854":11,"2856":4,"2857":4,"2860":1,"2861":4,"2863":1,"2866":1,"2870":2,"2871":4,"2872":4,"2873":1,"2875":2,"2877":6,"2878":4,"2879":1,"2880":13,"2881":1,"2882":4,"2883":1}}],["bool",{"0":{"820":3,"822":1,"847":3,"849":1,"911":3,"913":1,"946":3,"948":1,"980":3,"982":1,"1014":3,"1016":1,"1048":3,"1050":1,"1237":3,"1239":1,"1251":2,"1281":1,"1570":1,"1575":1,"1704":2,"1708":2,"1723":1,"1725":1,"1727":1,"1809":1,"1814":1,"1815":1,"1818":1,"1819":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"1863":1,"1906":1,"1908":1,"1910":1,"1912":1,"1915":1,"2029":1,"2105":1,"2166":1,"2168":1,"2170":1,"2172":1,"2175":1,"2360":1,"2364":1,"2367":1},"1":{"821":3,"823":1,"848":3,"850":1,"912":3,"914":1,"947":3,"949":1,"981":3,"983":1,"1015":3,"1017":1,"1049":3,"1051":1,"1238":3,"1240":1,"1252":2,"1253":2,"1282":1,"1571":1,"1576":1,"1705":2,"1709":2,"1724":1,"1726":1,"1728":1,"1729":1,"1810":1,"1811":1,"1816":1,"1817":1,"1821":1,"1822":1,"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1,"1864":1,"1907":1,"1909":1,"1911":1,"2030":1,"2031":1,"2106":1,"2167":1,"2169":1,"2171":1,"2361":1,"2365":1,"2366":1,"2368":1},"2":{"22":2,"46":2,"90":6,"105":8,"114":1,"125":2,"185":2,"230":1,"593":1,"624":2,"625":1,"632":3,"647":2,"652":1,"653":1,"654":4,"656":1,"696":1,"821":3,"823":1,"848":3,"850":1,"912":3,"914":1,"947":3,"949":1,"981":3,"983":1,"1015":3,"1017":1,"1049":3,"1051":1,"1238":3,"1240":1,"1252":1,"1367":2,"1417":3,"1420":1,"1431":1,"1446":2,"1447":1,"1462":1,"1472":2,"1491":1,"1517":2,"1532":1,"1535":1,"1601":2,"1605":1,"1612":6,"1613":1,"1617":2,"1618":3,"1641":2,"1651":4,"1668":2,"1689":1,"1705":2,"1709":2,"1712":1,"1726":1,"1728":1,"1743":2,"1747":1,"1779":2,"1781":3,"1795":1,"1804":1,"1837":2,"1838":1,"1839":1,"1850":3,"1924":1,"1945":1,"1946":1,"1948":4,"1954":26,"1962":1,"1989":1,"1993":2,"1994":2,"1996":1,"2005":2,"2006":1,"2008":5,"2009":3,"2013":4,"2014":1,"2069":1,"2071":1,"2077":1,"2079":2,"2088":3,"2203":1,"2254":6,"2277":2,"2290":16,"2316":1,"2317":1,"2319":1,"2381":2,"2456":2,"2747":1,"2763":1,"2764":5,"2787":1,"2912":1,"2940":34}}],["buflen",{"2":{"2277":2}}],["buff",{"2":{"1947":4,"2286":4}}],["buffered",{"2":{"285":1}}],["buffers",{"0":{"739":1,"824":1,"851":1,"883":1,"915":1,"950":1,"984":1,"1018":1,"1052":1,"1086":1,"1120":1,"1154":1,"1188":1,"1241":1},"1":{"740":1,"852":1,"884":1,"916":1,"951":1,"985":1,"1019":1,"1053":1,"1087":1,"1121":1,"1155":1,"1189":1,"1242":1},"2":{"93":1,"249":2,"285":1,"652":1,"653":1,"735":1,"812":1,"816":1,"839":1,"843":1,"871":1,"875":1,"903":1,"907":1,"938":1,"942":1,"972":1,"976":1,"1006":1,"1010":1,"1040":1,"1044":1,"1074":1,"1078":1,"1108":1,"1112":1,"1142":1,"1146":1,"1176":1,"1180":1,"1229":1,"1233":1,"1609":5,"2195":1,"2207":2,"2379":1}}],["buffer",{"0":{"720":1,"1301":1,"1609":1,"1947":1,"2286":1},"2":{"49":1,"93":1,"114":1,"176":1,"199":1,"211":1,"249":3,"696":3,"719":3,"720":8,"776":1,"779":1,"788":1,"791":1,"1263":1,"1276":2,"1280":1,"1281":1,"1299":2,"1301":3,"1488":1,"1525":4,"1532":1,"1533":6,"1609":2,"1621":1,"1662":3,"1798":1,"1803":2,"1812":1,"1815":2,"1817":1,"1818":1,"1820":1,"1822":1,"1823":1,"1825":1,"1826":1,"1828":1,"1829":1,"1831":1,"1832":1,"1834":1,"1947":7,"1952":3,"1953":2,"1954":16,"1986":1,"2057":1,"2058":1,"2059":1,"2062":1,"2064":1,"2206":1,"2277":10,"2286":7,"2289":1,"2290":17,"2362":1,"2363":1,"2364":1,"2367":1,"2761":1,"2763":10,"2764":2,"2948":1}}],["bundled",{"2":{"2397":1}}],["bundle",{"2":{"2259":1,"2593":3,"2620":1}}],["bunch",{"2":{"254":1,"1337":1,"1416":1,"1470":1,"1471":1,"1472":1,"2466":1,"2680":1,"2893":1,"2897":1,"2931":1}}],["buzz",{"2":{"1680":3,"1681":12,"1686":7,"2276":1}}],["buzzer",{"2":{"1475":1}}],["burst",{"2":{"1983":1}}],["burnout",{"2":{"2749":1}}],["burns",{"2":{"2425":1}}],["burn",{"2":{"1376":1,"1949":2,"2288":1}}],["burden",{"2":{"213":1,"2746":1}}],["buy",{"2":{"684":1,"1319":1}}],["bumblebee",{"2":{"277":1}}],["bump",{"2":{"76":1,"114":2,"160":1,"236":1,"285":1,"339":2,"422":2,"1686":3}}],["buspirate",{"2":{"2494":1}}],["bus",{"0":{"2494":1},"1":{"2495":1},"2":{"191":2,"266":1,"277":1,"793":1,"2494":2,"2495":1,"2848":1}}],["busywait",{"0":{"2040":1},"2":{"2037":1,"2039":1,"2040":2,"2875":2}}],["busy",{"0":{"1723":1},"1":{"1724":1},"2":{"191":1,"764":1,"1550":1,"1724":1,"1729":1,"1730":1,"1732":1}}],["business",{"2":{"143":4}}],["bulk",{"2":{"182":1,"2310":1,"2387":1}}],["bullseye",{"2":{"114":1}}],["bugging",{"2":{"2586":1}}],["buggy",{"2":{"317":1,"1493":1}}],["bug17281",{"2":{"199":1}}],["bugfix",{"2":{"176":1,"222":1,"236":1,"266":1,"294":1,"333":1,"402":1,"412":3}}],["bugfixes",{"2":{"10":2,"196":1,"402":1,"406":2,"407":2,"2836":1}}],["bugs",{"0":{"608":1},"2":{"114":1,"134":1,"149":1,"160":1,"176":1,"191":2,"199":1,"211":1,"222":1,"236":2,"249":1,"266":1,"277":1,"285":1,"294":1,"308":1,"317":1,"328":1,"333":1,"339":1,"540":1,"1777":3,"2727":1,"2739":1}}],["bug",{"0":{"1339":1},"2":{"62":1,"73":1,"149":1,"160":2,"236":1,"377":1,"398":1,"542":1,"604":1,"608":1,"613":1,"619":2,"2481":1,"2498":1,"2628":3,"2683":1,"2949":1}}],["builtin",{"2":{"647":1,"797":2,"1332":2,"1479":1,"2298":1}}],["built",{"0":{"1337":1,"2255":1},"1":{"2256":1,"2257":1,"2258":1,"2259":1,"2260":1},"2":{"33":1,"49":1,"191":1,"228":1,"399":1,"461":2,"491":1,"647":1,"713":1,"715":1,"1205":1,"1410":1,"1485":1,"1493":1,"1633":1,"1850":1,"1983":1,"2088":1,"2273":1,"2291":1,"2331":2,"2386":1,"2414":1,"2417":1,"2439":1,"2572":1,"2590":1,"2602":1,"2609":1,"2611":1,"2710":1,"2754":1,"2760":1,"2796":1}}],["buildable",{"2":{"2450":1,"2453":1}}],["builder",{"2":{"450":1,"2422":1,"2423":1,"2432":2}}],["builddefs",{"2":{"149":1,"285":1}}],["building",{"0":{"394":1,"1435":1,"2582":1,"2590":1,"2795":1},"1":{"1436":1,"2583":1,"2584":1,"2585":1,"2586":1,"2587":1,"2588":1,"2591":1,"2592":1,"2593":1,"2594":1,"2595":1,"2596":1,"2597":1,"2598":1,"2599":1,"2600":1,"2601":1,"2602":1},"2":{"114":2,"133":1,"134":1,"145":1,"199":1,"213":1,"224":1,"233":1,"367":1,"393":1,"425":1,"429":1,"572":1,"574":2,"595":1,"619":1,"1311":1,"1314":1,"1332":1,"1335":1,"2375":1,"2407":2,"2436":1,"2561":1,"2568":1,"2573":1,"2582":1,"2604":1,"2607":1,"2630":1,"2663":1,"2763":2}}],["builds",{"2":{"28":1,"49":1,"94":1,"114":3,"130":1,"134":4,"149":2,"153":1,"160":3,"176":1,"198":1,"209":1,"211":3,"241":1,"253":1,"270":1,"273":1,"281":1,"288":2,"452":3,"453":3,"455":1,"1343":1,"1472":1,"1626":1,"2417":2,"2609":1,"2610":1,"2633":1,"2635":1,"2663":1,"2683":1,"2696":1,"2747":2,"2796":1,"2844":1}}],["build",{"0":{"23":1,"55":1,"141":1,"388":1,"572":1,"1311":1,"1314":1,"1468":1,"1627":1,"2422":1,"2583":1,"2587":1,"2608":1,"2609":1,"2620":1,"2629":1,"2655":1,"2663":1,"2724":1},"1":{"1312":1,"1315":1,"1316":1,"1317":1,"1318":1,"1319":1,"1320":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1},"2":{"23":1,"55":3,"65":1,"70":1,"73":1,"92":2,"112":3,"114":6,"118":1,"126":1,"132":1,"133":1,"134":3,"149":7,"160":2,"164":1,"170":1,"176":2,"189":2,"191":4,"199":6,"201":2,"204":1,"206":1,"211":2,"222":1,"228":1,"234":3,"236":1,"249":1,"262":1,"266":23,"277":2,"279":1,"293":5,"294":1,"304":1,"305":5,"314":5,"317":1,"354":1,"367":2,"388":1,"393":6,"394":1,"422":1,"429":3,"433":1,"435":1,"446":1,"448":1,"449":1,"450":1,"452":4,"453":4,"454":2,"455":5,"555":1,"575":1,"597":1,"599":1,"673":3,"684":3,"720":1,"1313":1,"1314":1,"1376":2,"1377":1,"1387":1,"1388":1,"1390":1,"1435":1,"1436":1,"1463":1,"1464":1,"1468":1,"1627":2,"1630":2,"1631":1,"1632":1,"1633":2,"1681":1,"2326":1,"2397":2,"2405":3,"2407":9,"2416":1,"2417":3,"2425":1,"2432":1,"2436":2,"2453":1,"2454":1,"2455":1,"2463":1,"2501":1,"2564":2,"2568":1,"2572":1,"2573":1,"2582":1,"2583":1,"2584":1,"2587":3,"2590":3,"2591":1,"2597":1,"2598":1,"2599":6,"2600":1,"2601":4,"2602":2,"2603":4,"2604":1,"2608":2,"2609":2,"2610":2,"2616":1,"2618":2,"2626":1,"2629":6,"2632":1,"2653":1,"2655":1,"2663":2,"2673":1,"2674":1,"2683":4,"2714":1,"2746":1,"2794":1,"2795":2,"2854":1,"2905":1,"2944":1,"2946":1}}],["butterstick",{"2":{"143":2}}],["button",{"0":{"1751":2,"1753":2,"2016":1,"2020":1,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2032":1,"2033":1,"2035":1,"2048":1,"2536":1},"1":{"1752":2,"1754":2,"2017":1,"2018":1,"2019":1,"2020":1,"2021":1,"2022":2,"2023":1,"2024":2,"2025":1,"2026":2,"2027":1,"2028":2,"2029":1,"2030":2,"2031":2,"2032":1,"2033":1,"2034":2,"2035":1,"2036":2},"2":{"49":1,"63":1,"134":1,"188":1,"190":1,"191":3,"231":5,"394":1,"396":1,"600":2,"601":2,"626":2,"684":2,"710":2,"1313":1,"1348":1,"1376":1,"1446":3,"1472":1,"1493":1,"1589":1,"1661":1,"1740":2,"1744":64,"1747":2,"1751":1,"1752":2,"1753":1,"1754":2,"1933":16,"1941":2,"1971":6,"1988":2,"1990":4,"1994":1,"1999":1,"2016":1,"2017":1,"2018":64,"2020":1,"2021":1,"2022":1,"2023":1,"2024":1,"2025":1,"2026":1,"2027":1,"2028":1,"2029":1,"2030":1,"2031":1,"2032":1,"2033":1,"2034":1,"2035":1,"2036":1,"2048":5,"2273":1,"2298":2,"2383":1,"2386":1,"2388":1,"2389":3,"2391":1,"2393":3,"2395":3,"2396":1,"2397":1,"2398":3,"2400":2,"2402":2,"2404":4,"2410":3,"2432":1,"2433":3,"2520":64,"2528":16,"2536":65,"2572":2,"2612":1,"2615":1,"2659":2,"2668":1,"2678":1,"2683":2,"2689":1,"2795":1,"2852":1,"2940":1}}],["buttons",{"0":{"2049":1},"2":{"49":1,"74":1,"114":1,"134":4,"149":1,"190":1,"222":1,"1645":1,"1738":1,"1740":1,"1747":1,"1930":1,"1974":2,"1988":2,"1990":1,"1992":3,"1999":1,"2014":1,"2016":1,"2048":4,"2049":2}}],["but",{"0":{"1340":1,"1460":1},"2":{"11":1,"49":1,"50":1,"99":1,"100":1,"120":1,"124":1,"125":2,"153":1,"156":1,"160":1,"170":1,"174":1,"185":2,"194":1,"202":1,"233":1,"251":1,"262":1,"273":2,"279":1,"283":2,"320":1,"379":1,"396":1,"398":1,"403":1,"414":1,"417":1,"429":1,"430":1,"436":1,"491":1,"505":1,"512":2,"517":1,"528":1,"530":1,"531":1,"532":1,"533":1,"538":1,"558":1,"572":1,"574":1,"575":1,"588":1,"589":1,"591":1,"596":1,"599":1,"615":1,"616":1,"619":1,"626":1,"633":1,"637":2,"683":1,"696":1,"697":1,"710":1,"749":1,"750":1,"752":1,"753":1,"754":1,"755":1,"805":1,"831":1,"861":1,"863":1,"893":1,"926":1,"928":1,"960":1,"962":1,"994":1,"996":1,"1028":1,"1030":1,"1062":1,"1064":1,"1096":1,"1098":1,"1130":1,"1132":1,"1164":1,"1166":1,"1199":1,"1208":1,"1219":1,"1266":1,"1296":1,"1298":1,"1311":4,"1322":1,"1327":2,"1338":1,"1343":1,"1349":1,"1354":1,"1361":2,"1364":3,"1387":1,"1409":1,"1410":1,"1417":1,"1422":2,"1423":1,"1427":1,"1428":2,"1434":1,"1448":2,"1450":1,"1456":1,"1457":1,"1467":1,"1470":2,"1471":2,"1480":1,"1483":2,"1487":1,"1490":3,"1496":1,"1499":4,"1503":1,"1505":1,"1526":1,"1527":1,"1533":1,"1535":1,"1537":2,"1542":1,"1549":1,"1610":1,"1614":1,"1615":1,"1640":1,"1648":1,"1661":1,"1667":1,"1739":1,"1762":1,"1774":1,"1777":1,"1784":1,"1789":1,"1791":1,"1800":1,"1802":2,"1846":1,"1908":1,"1910":1,"1912":1,"1915":1,"1934":1,"1943":1,"1954":1,"1957":1,"1964":1,"1981":1,"1984":1,"1990":1,"1999":1,"2000":1,"2016":1,"2044":1,"2082":1,"2168":1,"2170":1,"2172":1,"2175":1,"2191":2,"2194":1,"2210":1,"2222":2,"2250":1,"2259":1,"2261":1,"2265":1,"2279":1,"2290":1,"2292":1,"2293":1,"2297":1,"2300":3,"2310":3,"2317":2,"2319":1,"2320":1,"2329":1,"2331":1,"2374":1,"2375":1,"2382":1,"2385":1,"2387":2,"2394":1,"2396":1,"2399":1,"2401":1,"2403":1,"2411":1,"2417":1,"2418":2,"2421":1,"2423":2,"2427":1,"2428":1,"2429":3,"2431":1,"2432":1,"2462":1,"2464":1,"2466":2,"2470":1,"2478":1,"2496":1,"2499":1,"2501":1,"2503":1,"2506":1,"2510":2,"2549":1,"2553":1,"2559":1,"2563":1,"2564":1,"2567":4,"2568":2,"2575":1,"2576":1,"2578":1,"2603":2,"2617":1,"2626":2,"2635":1,"2637":1,"2638":1,"2639":2,"2652":1,"2653":1,"2667":2,"2668":1,"2669":1,"2676":3,"2683":2,"2690":1,"2691":1,"2694":1,"2700":1,"2705":1,"2707":1,"2709":1,"2720":1,"2737":2,"2746":3,"2748":1,"2750":1,"2751":1,"2764":1,"2767":1,"2772":1,"2775":1,"2805":1,"2821":1,"2835":1,"2869":2,"2887":1,"2889":3,"2890":1,"2891":1,"2907":1,"2909":1,"2912":1,"2913":2,"2918":1,"2920":1,"2929":1,"2930":1,"2931":1,"2933":1,"2934":2,"2936":1,"2937":1,"2939":1,"2940":1,"2941":1,"2943":1,"2948":1,"2949":2}}],["blurb",{"0":{"2464":1},"2":{"599":1}}],["bluesmirf",{"2":{"2374":1}}],["blue",{"0":{"702":1,"704":1,"735":1,"737":1,"812":1,"814":1,"820":1,"839":1,"841":1,"847":1,"871":1,"873":1,"879":1,"903":1,"905":1,"911":1,"938":1,"940":1,"946":1,"972":1,"974":1,"980":1,"1006":1,"1008":1,"1014":1,"1040":1,"1042":1,"1048":1,"1074":1,"1076":1,"1082":1,"1108":1,"1110":1,"1116":1,"1142":1,"1144":1,"1150":1,"1176":1,"1178":1,"1184":1,"1229":1,"1231":1,"1237":1,"1306":1,"1308":1},"1":{"703":1,"705":1,"736":1,"738":1,"813":1,"815":1,"821":1,"840":1,"842":1,"848":1,"872":1,"874":1,"880":1,"904":1,"906":1,"912":1,"939":1,"941":1,"947":1,"973":1,"975":1,"981":1,"1007":1,"1009":1,"1015":1,"1041":1,"1043":1,"1049":1,"1075":1,"1077":1,"1083":1,"1109":1,"1111":1,"1117":1,"1143":1,"1145":1,"1151":1,"1177":1,"1179":1,"1185":1,"1230":1,"1232":1,"1238":1,"1307":1,"1309":1},"2":{"492":1,"494":1,"703":2,"705":2,"729":1,"732":1,"736":2,"738":2,"805":1,"808":1,"813":2,"815":2,"821":2,"831":1,"834":1,"840":2,"842":2,"848":2,"863":1,"866":1,"872":2,"874":2,"880":2,"893":1,"896":1,"904":2,"906":2,"912":2,"928":1,"931":1,"939":2,"941":2,"947":2,"962":1,"965":1,"973":2,"975":2,"981":2,"996":1,"999":1,"1007":2,"1009":2,"1015":2,"1030":1,"1033":1,"1041":2,"1043":2,"1049":2,"1064":1,"1067":1,"1075":2,"1077":2,"1083":2,"1098":1,"1101":1,"1109":2,"1111":2,"1117":2,"1132":1,"1135":1,"1143":2,"1145":2,"1151":2,"1166":1,"1169":1,"1177":2,"1179":2,"1185":2,"1219":1,"1222":1,"1230":2,"1232":2,"1238":2,"1288":1,"1307":2,"1309":2,"1958":1,"2089":2,"2094":2,"2095":1,"2108":1,"2110":1,"2181":1,"2205":2,"2532":1,"2622":1}}],["bluefruit",{"2":{"221":1,"308":1,"574":1,"2374":4,"2375":6,"2376":1,"2859":1}}],["bluefruitle",{"0":{"142":1},"2":{"149":1,"221":1}}],["bluepill70",{"2":{"67":1}}],["bluepill",{"2":{"67":1,"72":1,"160":2,"191":1,"207":2,"548":1,"723":1,"2402":1,"2505":1,"2507":2,"2508":3}}],["bluetooth",{"0":{"1359":1,"2373":1,"2374":1,"2376":1,"2377":1,"2516":1,"2728":1,"2736":1,"2806":1,"2859":1},"1":{"2374":1,"2375":2,"2376":1,"2377":1},"2":{"50":2,"51":1,"70":1,"75":1,"111":1,"112":2,"133":1,"134":2,"142":1,"188":1,"191":4,"211":1,"221":4,"222":1,"285":1,"308":2,"574":1,"685":1,"2374":9,"2375":1,"2376":2,"2377":21,"2439":1,"2516":20,"2728":3,"2731":1,"2733":1,"2734":1,"2736":2,"2742":2,"2746":4,"2859":1}}],["blade",{"2":{"1849":1,"2085":2}}],["blank",{"2":{"262":1,"294":1,"521":2,"599":1,"2407":1,"2720":1}}],["black",{"2":{"494":2,"561":1,"1475":1,"1478":3,"1482":2,"1947":1,"2089":2,"2205":2,"2423":1,"2428":1,"2466":2,"2683":5,"2781":4,"2936":1}}],["blackio83",{"2":{"253":2,"266":1}}],["blackpills",{"2":{"2261":1,"2664":2}}],["blackpill",{"0":{"2664":1},"1":{"2665":1,"2666":1,"2667":1,"2668":1,"2669":1,"2670":1,"2671":1,"2672":1},"2":{"93":1,"114":1,"160":2,"176":1,"191":2,"207":2,"253":1,"548":2,"2261":1,"2273":1,"2400":1,"2664":2,"2665":1,"2672":1,"2853":1,"2895":1}}],["blackheart",{"2":{"37":3}}],["blowing",{"2":{"2428":1}}],["blow",{"2":{"2428":1}}],["blog",{"2":{"1363":1,"2575":1,"2643":2}}],["blob",{"2":{"1353":1,"2777":2,"2778":2,"2781":1,"2782":1,"2784":1,"2785":2}}],["blobs",{"2":{"276":2,"284":3,"285":1,"2741":1,"2742":1}}],["blooming",{"2":{"236":1,"2085":3,"2894":1}}],["blok",{"0":{"1394":1},"2":{"176":1,"211":1,"317":1,"1389":1,"1391":3,"2702":1,"2895":1}}],["bloat",{"2":{"114":1,"2418":1}}],["blockader",{"2":{"339":1}}],["blocked",{"2":{"1490":1}}],["blocked65",{"2":{"159":2}}],["blocker",{"2":{"211":2,"308":1}}],["blocks",{"0":{"354":1,"678":1},"1":{"679":1,"680":1},"2":{"191":2,"211":1,"231":1,"308":1,"525":1,"678":1,"755":1,"1419":1,"1949":1,"1952":1,"1953":2,"1954":1,"2289":1,"2746":1,"2777":2,"2778":1,"2785":2,"2786":1}}],["block",{"0":{"2778":1,"2779":1,"2780":1,"2781":1,"2782":1,"2783":1,"2784":1,"2786":1,"2787":1,"2790":1,"2791":1},"2":{"16":1,"31":3,"34":3,"134":1,"176":1,"188":1,"191":1,"352":1,"512":2,"593":1,"629":1,"632":1,"673":1,"754":1,"755":7,"759":2,"799":8,"1276":1,"1376":1,"1419":2,"1425":1,"1613":1,"1850":1,"1952":6,"1953":6,"2088":1,"2275":1,"2280":1,"2289":6,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2398":1,"2400":1,"2402":1,"2404":1,"2777":10,"2778":10,"2779":5,"2780":8,"2781":13,"2782":2,"2783":2,"2784":2,"2785":9,"2786":2,"2787":5,"2788":4,"2789":4,"2790":4,"2791":3,"2799":1,"2937":1}}],["bling",{"2":{"114":1}}],["blinks",{"2":{"2700":1}}],["blinked",{"2":{"2191":1}}],["blink",{"0":{"1704":1,"1708":1,"2191":1},"1":{"1705":1,"1709":1},"2":{"112":1,"565":2,"1664":1,"1705":2,"1709":2,"2191":9,"2309":1,"2668":1,"2877":1}}],["blinking",{"2":{"93":1,"160":1,"1662":1,"1701":1,"2191":3,"2877":1}}],["blindassassin111",{"2":{"37":2}}],["blend",{"2":{"308":1,"2330":1}}],["ble",{"0":{"2375":1},"2":{"50":1,"133":1,"134":2,"142":1,"2374":2,"2375":1,"2733":1}}],["bl",{"0":{"7":1},"2":{"7":1,"375":1,"430":3,"589":6,"1543":7,"2273":3,"2515":7,"2561":2,"2563":1,"2564":1}}],["brmu",{"2":{"2510":1,"2548":1}}],["brmd",{"2":{"2510":1,"2545":1}}],["brk",{"2":{"2510":1,"2548":1}}],["brtg",{"2":{"1543":1,"2515":1}}],["brushing",{"2":{"246":1}}],["brutal",{"2":{"211":2}}],["brazilian",{"2":{"2887":2}}],["brazil",{"2":{"2887":1}}],["brass",{"2":{"2425":1}}],["brackets",{"2":{"2678":1}}],["bracket",{"2":{"1692":2,"2510":2,"2534":2,"2544":2,"2555":2}}],["braces",{"2":{"512":2,"513":1,"2226":1,"2318":1,"2841":1}}],["brace",{"2":{"512":5,"2534":2,"2555":2}}],["braking",{"2":{"1684":1,"1685":1}}],["brakefactor",{"2":{"1684":1,"1685":1}}],["brands",{"2":{"2397":1}}],["branding",{"2":{"1342":1}}],["brand",{"0":{"1342":1},"2":{"561":1,"684":1}}],["branching",{"2":{"1538":5,"1539":1}}],["branch",{"0":{"411":1,"2635":1,"2636":1,"2637":1,"2639":1},"1":{"2636":1,"2637":1},"2":{"51":2,"73":1,"76":1,"92":1,"94":1,"114":2,"251":1,"294":1,"308":1,"399":2,"408":1,"411":5,"419":1,"422":1,"423":2,"459":4,"579":1,"586":1,"588":1,"594":1,"613":3,"1538":2,"2501":1,"2600":1,"2632":1,"2633":2,"2634":12,"2635":3,"2636":5,"2637":3,"2638":4,"2639":3,"2640":19,"2641":1,"2744":7,"2746":1,"2747":1,"2748":7,"2903":2}}],["branches",{"2":{"51":1,"199":1,"308":1,"409":1,"1538":1,"1539":1,"2638":1,"2639":1,"2748":3}}],["brauner",{"2":{"211":1}}],["brett",{"2":{"1363":1,"2575":1}}],["brew",{"2":{"158":1,"2506":1,"2593":1,"2624":1}}],["breadth",{"2":{"2747":1}}],["breach",{"2":{"2568":1}}],["breath",{"2":{"561":1,"1544":1,"2418":1,"2428":1}}],["breathe",{"0":{"462":1},"2":{"462":2,"2181":1,"2185":2,"2532":1}}],["breathing",{"0":{"1572":1,"1573":1,"1574":1,"1575":1},"1":{"1576":1},"2":{"74":1,"93":1,"112":2,"134":1,"160":2,"199":1,"231":1,"285":2,"294":1,"462":1,"561":3,"641":2,"1543":2,"1544":5,"1550":1,"1572":1,"1573":1,"1574":1,"1575":1,"1576":1,"1849":3,"2085":7,"2181":1,"2183":2,"2184":2,"2185":2,"2187":2,"2210":2,"2515":2,"2532":1,"2857":6,"2871":1,"2877":1,"2878":1,"2894":3}}],["breakout",{"2":{"1980":1}}],["breaks",{"2":{"575":1,"676":1,"714":1}}],["breakpoints",{"2":{"2683":2}}],["breakpoint",{"2":{"409":1,"411":2}}],["breakage",{"2":{"114":1}}],["break",{"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"105":2,"114":1,"236":1,"249":1,"333":1,"399":1,"525":1,"527":1,"1417":6,"1430":5,"1446":4,"1447":2,"1462":1,"1471":2,"1472":1,"1517":2,"1527":1,"1528":1,"1533":2,"1605":2,"1617":2,"1618":1,"1641":4,"1676":1,"1795":1,"1945":3,"1958":4,"1992":1,"1994":2,"1996":2,"2011":2,"2012":3,"2071":2,"2074":1,"2079":10,"2095":3,"2191":3,"2208":1,"2284":3,"2315":3,"2317":12,"2318":8,"2319":4,"2578":1,"2632":1,"2847":1,"2912":4,"2927":2}}],["breaking",{"0":{"0":1,"9":1,"19":1,"39":1,"52":1,"66":1,"78":1,"96":1,"115":1,"135":1,"150":1,"161":1,"177":1,"192":1,"200":1,"212":1,"223":1,"237":1,"250":1,"267":1,"278":1,"286":1,"295":1,"309":1,"318":1,"329":1,"334":1,"399":1,"400":1,"401":1,"413":1,"414":1,"1600":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"176":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"211":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1,"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1,"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1,"400":1,"401":1,"402":2,"403":1,"404":1,"405":1,"406":1,"407":1,"408":1,"409":1,"410":1,"411":1,"412":1,"415":1,"416":1,"417":1,"418":1},"2":{"0":3,"9":2,"19":2,"23":1,"28":1,"39":2,"52":2,"103":1,"105":1,"107":1,"114":1,"116":1,"126":1,"131":1,"156":1,"163":1,"167":1,"172":1,"176":1,"182":1,"184":1,"187":1,"198":1,"201":1,"206":1,"213":2,"224":1,"238":1,"251":1,"254":1,"262":1,"265":2,"273":1,"275":1,"276":1,"284":1,"303":1,"307":2,"332":1,"399":3,"400":1,"401":1,"403":4,"404":1,"405":3,"406":3,"407":3,"408":1,"409":1,"411":3,"412":4,"413":1,"414":1,"415":1,"416":2,"540":1,"1597":1,"1598":1,"1600":2,"2747":1,"2903":2,"2904":1}}],["bridge",{"2":{"2393":2,"2395":2,"2398":2}}],["brid",{"2":{"1776":1,"1848":1,"2068":1,"2510":1,"2525":1,"2549":1}}],["briu",{"2":{"1776":1,"1848":1,"2068":1,"2510":1,"2525":1,"2549":1}}],["briefs",{"2":{"2291":1}}],["brief",{"2":{"1469":1,"1791":1,"1846":1,"2082":1,"2414":1}}],["briefly",{"2":{"684":1}}],["bricking",{"2":{"2567":1}}],["brick",{"2":{"199":1,"1376":1}}],["brightens",{"2":{"2185":1}}],["brighter",{"2":{"494":1}}],["bright",{"2":{"494":1}}],["brightness",{"0":{"707":2,"1776":1,"2193":1},"1":{"708":2},"2":{"111":1,"114":1,"160":1,"176":1,"191":2,"333":1,"565":1,"699":2,"707":1,"708":2,"816":1,"817":1,"818":1,"819":1,"843":1,"844":1,"845":1,"846":1,"875":1,"876":1,"877":1,"878":1,"907":1,"908":1,"909":1,"910":1,"942":1,"943":1,"944":1,"945":1,"976":1,"977":1,"978":1,"979":1,"1010":1,"1011":1,"1012":1,"1013":1,"1044":1,"1045":1,"1046":1,"1047":1,"1078":1,"1079":1,"1080":1,"1081":1,"1112":1,"1113":1,"1114":1,"1115":1,"1146":1,"1147":1,"1148":1,"1149":1,"1180":1,"1181":1,"1182":1,"1183":1,"1233":1,"1234":1,"1235":1,"1236":1,"1541":1,"1543":1,"1544":2,"1546":1,"1767":1,"1776":7,"1843":5,"1848":4,"1849":4,"1852":5,"1865":1,"1866":1,"1867":1,"1868":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":1,"1905":1,"1949":3,"1954":4,"2068":1,"2084":2,"2085":8,"2091":6,"2096":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2180":1,"2181":4,"2182":3,"2185":1,"2193":2,"2510":6,"2515":1,"2525":4,"2532":4,"2533":2,"2545":1,"2548":1,"2549":4,"2764":1,"2781":3,"2855":2,"2857":6,"2871":5,"2877":5,"2878":4}}],["brigthness",{"2":{"176":1}}],["bringing",{"2":{"665":1}}],["brings",{"2":{"251":1,"268":1,"279":1}}],["bring",{"2":{"114":1,"285":1,"353":1,"1788":1,"2678":1,"2928":1}}],["brownfox",{"2":{"2425":1,"2436":1}}],["brown",{"2":{"749":1}}],["browsed",{"2":{"2662":1}}],["browse",{"2":{"393":1,"2617":1,"2934":1}}],["browser",{"2":{"294":1,"460":4,"581":1,"617":1,"2068":1,"2510":7,"2549":7,"2560":1}}],["browsing",{"2":{"110":1,"460":1}}],["brought",{"2":{"108":1}}],["broken",{"2":{"73":1,"93":1,"114":2,"134":2,"149":1,"176":1,"191":1,"199":1,"236":1,"277":1,"285":1,"317":1,"377":1,"414":1,"540":1,"619":1,"1389":1,"2483":1}}],["br",{"2":{"5":1,"344":1,"2300":1,"2301":3}}],["bypasses",{"2":{"2218":1}}],["bypassed",{"2":{"4":1}}],["bytecode",{"2":{"538":1}}],["byte",{"0":{"1287":1,"2242":1},"1":{"2243":1},"2":{"191":1,"749":1,"750":1,"754":1,"756":1,"762":1,"793":1,"1252":1,"1254":1,"1255":1,"1257":1,"1258":1,"1273":1,"1274":1,"1275":1,"1276":1,"1285":3,"1287":5,"1364":1,"1537":1,"1538":8,"1539":5,"1609":1,"1702":1,"1720":2,"1722":2,"1725":1,"1726":2,"1727":1,"1729":1,"1732":1,"1733":1,"1947":4,"1953":3,"1954":2,"1967":1,"1974":1,"2058":1,"2059":2,"2286":4,"2290":2,"2295":7,"2296":1,"2503":1,"2562":2,"2751":1,"2763":3,"2820":1,"2840":1}}],["bytes",{"2":{"25":1,"131":1,"134":1,"215":1,"222":1,"236":1,"696":1,"748":1,"749":3,"750":3,"751":1,"754":2,"755":2,"756":4,"757":11,"759":5,"769":1,"770":1,"772":1,"773":1,"775":1,"776":1,"778":1,"779":2,"782":1,"785":1,"788":1,"791":1,"1259":1,"1260":1,"1262":1,"1263":1,"1277":1,"1278":1,"1279":1,"1280":1,"1287":1,"1416":1,"1419":2,"1538":2,"1539":1,"1720":1,"1722":1,"1947":3,"2057":1,"2059":2,"2062":1,"2064":1,"2275":1,"2277":1,"2286":3,"2295":1,"2296":2,"2379":1,"2382":1,"2410":1,"2496":1,"2502":4,"2503":1,"2508":2,"2587":1,"2615":4,"2629":1,"2764":2,"2778":1,"2779":1,"2781":1,"2783":1,"2784":1,"2787":1,"2788":1,"2864":2,"2889":1,"2949":1}}],["by",{"0":{"27":1,"43":1,"591":1,"595":1,"1620":1,"2271":1,"2272":1,"2273":1,"2274":1,"2467":1},"1":{"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"602":1,"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"3":1,"7":1,"15":1,"21":1,"25":2,"28":1,"31":1,"34":1,"37":6,"38":2,"43":2,"45":1,"49":2,"50":2,"58":1,"74":1,"82":1,"94":1,"114":6,"118":2,"119":2,"120":1,"124":1,"125":1,"134":5,"149":2,"154":2,"164":1,"169":1,"173":1,"174":1,"175":1,"176":5,"179":1,"182":1,"184":1,"185":1,"191":4,"194":1,"195":3,"199":4,"201":1,"209":3,"211":1,"215":1,"222":3,"233":1,"248":1,"263":1,"273":1,"288":1,"289":1,"308":1,"312":2,"320":1,"328":2,"333":1,"340":1,"344":3,"347":1,"354":1,"379":2,"380":1,"383":1,"391":1,"393":1,"402":1,"403":3,"414":2,"429":1,"430":2,"433":3,"463":1,"466":1,"472":1,"474":1,"476":1,"482":1,"487":2,"489":4,"494":1,"500":1,"506":1,"513":1,"519":1,"520":1,"521":1,"529":1,"538":1,"540":1,"544":1,"552":1,"557":1,"561":3,"564":1,"569":1,"570":1,"571":1,"572":2,"575":3,"579":1,"580":1,"581":1,"582":1,"586":1,"588":4,"589":1,"592":1,"596":1,"600":1,"613":1,"617":1,"618":1,"619":3,"628":1,"630":1,"631":1,"639":2,"640":1,"643":1,"648":2,"656":1,"657":1,"658":1,"659":1,"660":1,"669":1,"671":1,"672":1,"673":2,"675":2,"684":1,"691":2,"696":3,"698":1,"710":3,"711":1,"712":1,"716":1,"717":1,"719":1,"720":1,"721":1,"722":1,"723":1,"724":1,"727":1,"729":1,"746":3,"749":2,"752":1,"753":2,"754":2,"755":3,"756":1,"757":1,"761":1,"762":1,"764":1,"793":1,"800":1,"805":1,"826":1,"831":1,"855":1,"859":1,"861":2,"863":1,"887":1,"893":1,"919":1,"923":1,"924":1,"926":2,"928":1,"954":1,"958":1,"960":2,"962":1,"988":1,"992":1,"994":2,"996":1,"1022":1,"1026":1,"1028":2,"1030":1,"1056":1,"1060":1,"1062":2,"1064":1,"1090":1,"1094":1,"1096":2,"1098":1,"1124":1,"1128":1,"1130":2,"1132":1,"1158":1,"1162":1,"1164":2,"1166":1,"1193":1,"1199":1,"1200":1,"1203":1,"1204":2,"1205":2,"1207":1,"1208":1,"1214":1,"1219":1,"1246":1,"1252":2,"1265":1,"1267":1,"1284":1,"1286":1,"1287":1,"1290":1,"1297":1,"1300":1,"1313":2,"1316":1,"1322":1,"1326":1,"1327":1,"1332":1,"1333":1,"1343":4,"1348":1,"1351":1,"1354":1,"1359":1,"1361":1,"1363":1,"1364":4,"1367":1,"1377":1,"1383":1,"1384":1,"1388":1,"1389":1,"1390":1,"1391":1,"1392":1,"1396":2,"1397":1,"1399":1,"1404":1,"1405":1,"1409":1,"1410":2,"1413":4,"1417":5,"1422":2,"1423":1,"1427":1,"1433":2,"1440":1,"1441":1,"1444":2,"1446":2,"1448":3,"1449":1,"1455":1,"1465":1,"1467":1,"1470":1,"1472":1,"1474":2,"1480":2,"1485":1,"1487":2,"1489":1,"1490":1,"1491":2,"1492":1,"1493":4,"1501":3,"1502":1,"1510":1,"1517":1,"1518":2,"1522":1,"1525":1,"1526":2,"1528":1,"1538":5,"1539":2,"1541":3,"1542":1,"1545":1,"1558":1,"1589":2,"1590":1,"1593":5,"1594":5,"1595":3,"1597":2,"1601":1,"1608":1,"1610":1,"1611":1,"1612":4,"1613":1,"1616":1,"1617":3,"1618":3,"1622":2,"1623":1,"1624":2,"1626":1,"1627":1,"1630":1,"1639":1,"1661":2,"1662":1,"1665":3,"1666":1,"1667":1,"1675":1,"1681":2,"1685":1,"1738":2,"1739":1,"1740":1,"1741":2,"1742":1,"1763":1,"1765":1,"1766":1,"1776":1,"1781":1,"1782":1,"1783":1,"1785":1,"1786":6,"1788":2,"1789":2,"1794":1,"1800":1,"1803":1,"1843":2,"1844":1,"1846":2,"1849":1,"1850":1,"1851":2,"1852":2,"1919":1,"1926":1,"1934":1,"1936":3,"1947":3,"1948":2,"1952":3,"1953":2,"1954":7,"1965":2,"1968":1,"1976":1,"1977":1,"1984":1,"1985":5,"1986":7,"1987":4,"1988":1,"1989":1,"1990":2,"1993":1,"1994":1,"1999":1,"2001":2,"2004":1,"2014":2,"2016":1,"2044":1,"2046":1,"2048":1,"2056":2,"2057":3,"2059":1,"2065":1,"2068":7,"2070":1,"2071":2,"2072":1,"2076":1,"2079":1,"2080":1,"2082":2,"2085":3,"2086":1,"2088":1,"2090":2,"2091":4,"2179":1,"2182":4,"2185":2,"2188":1,"2189":2,"2191":1,"2193":1,"2206":2,"2207":1,"2210":1,"2214":1,"2220":1,"2221":1,"2223":1,"2250":1,"2259":3,"2261":3,"2266":1,"2270":1,"2271":2,"2272":1,"2273":1,"2276":1,"2277":1,"2278":1,"2279":1,"2283":1,"2286":3,"2287":2,"2290":9,"2291":2,"2292":1,"2295":3,"2296":1,"2300":1,"2304":2,"2305":1,"2308":1,"2309":4,"2310":1,"2317":2,"2319":1,"2330":3,"2331":5,"2347":1,"2375":1,"2378":1,"2379":1,"2381":1,"2382":1,"2383":2,"2387":1,"2388":1,"2389":1,"2396":1,"2401":1,"2403":1,"2407":5,"2410":2,"2416":1,"2418":6,"2422":1,"2427":1,"2428":1,"2430":1,"2432":1,"2434":1,"2435":2,"2436":1,"2441":1,"2447":1,"2453":2,"2455":1,"2457":1,"2458":1,"2464":1,"2466":4,"2469":2,"2470":1,"2473":1,"2474":1,"2479":1,"2481":1,"2498":1,"2499":1,"2501":1,"2505":1,"2506":1,"2508":1,"2531":4,"2557":1,"2558":1,"2561":1,"2566":1,"2567":2,"2568":1,"2572":1,"2575":2,"2576":1,"2578":2,"2589":1,"2614":1,"2616":3,"2623":1,"2625":1,"2626":3,"2627":2,"2629":1,"2633":1,"2634":1,"2637":2,"2638":1,"2639":2,"2640":4,"2650":3,"2651":1,"2652":3,"2663":1,"2666":1,"2668":1,"2676":1,"2683":1,"2685":1,"2686":1,"2700":3,"2702":2,"2704":1,"2705":3,"2706":1,"2707":1,"2709":4,"2712":1,"2713":1,"2717":3,"2744":1,"2746":5,"2747":1,"2750":1,"2753":2,"2761":1,"2762":3,"2763":23,"2764":7,"2777":1,"2779":1,"2781":2,"2785":1,"2787":2,"2795":1,"2797":1,"2799":1,"2802":1,"2803":1,"2812":1,"2825":1,"2840":1,"2841":1,"2851":2,"2861":2,"2864":1,"2869":3,"2871":2,"2877":3,"2878":4,"2884":1,"2886":1,"2889":2,"2890":1,"2891":3,"2893":1,"2894":3,"2901":1,"2902":1,"2903":1,"2904":1,"2905":1,"2910":1,"2911":1,"2912":9,"2918":1,"2919":7,"2920":5,"2921":2,"2922":2,"2924":1,"2925":3,"2926":2,"2928":2,"2930":5,"2934":2,"2936":1,"2937":1,"2941":2,"2945":1,"2948":1,"2949":4}}],["bepo",{"2":{"2887":2}}],["beware",{"2":{"1681":1}}],["beat",{"2":{"2252":7}}],["beats",{"2":{"1487":1,"2252":2}}],["beacon",{"2":{"1849":3,"2085":6,"2894":2}}],["bear65",{"2":{"72":1}}],["bear",{"2":{"67":2,"277":2,"2423":1,"2430":1}}],["bespoke",{"2":{"2707":1}}],["besides",{"2":{"1460":1,"1480":1,"2075":1,"2417":1,"2908":1}}],["best",{"0":{"674":1,"2631":1},"1":{"2632":1},"2":{"233":1,"512":1,"597":1,"605":1,"619":2,"621":1,"634":1,"674":1,"676":1,"793":1,"1423":1,"1446":3,"1490":1,"1534":1,"1956":1,"2037":1,"2086":1,"2317":1,"2329":1,"2429":1,"2576":1,"2589":1,"2612":1,"2626":1,"2627":1,"2632":1,"2707":1,"2713":1,"2743":1,"2744":1,"2748":1,"2764":1,"2897":1}}],["beyond",{"0":{"1379":1},"2":{"755":1,"1379":1,"2077":1,"2574":1,"2725":1,"2727":1,"2927":1}}],["beiwagon",{"2":{"308":1}}],["being",{"2":{"6":1,"92":1,"114":1,"124":1,"176":1,"182":1,"234":1,"417":1,"619":1,"719":2,"720":1,"750":1,"759":1,"1297":1,"1331":1,"1367":1,"1413":1,"1433":1,"1438":1,"1450":1,"1452":1,"1463":2,"1471":1,"1499":1,"1524":1,"1529":1,"1546":1,"1558":1,"1594":1,"1609":1,"1661":1,"1664":3,"1766":1,"1786":3,"1959":1,"1961":1,"1969":1,"2076":2,"2178":1,"2181":1,"2184":1,"2300":2,"2309":2,"2317":3,"2418":2,"2423":2,"2434":1,"2466":14,"2518":1,"2563":1,"2569":2,"2570":1,"2587":1,"2612":1,"2616":1,"2638":1,"2639":1,"2650":2,"2656":1,"2672":1,"2709":1,"2728":1,"2748":1,"2763":3,"2797":1,"2895":1,"2904":1,"2908":1,"2925":1,"2929":1}}],["beneath",{"2":{"2431":1}}],["beneficial",{"2":{"755":1,"2759":1}}],["benefits",{"2":{"412":1,"1766":1,"2261":1}}],["benefit",{"2":{"215":1,"619":1,"1463":1,"2447":1}}],["bent",{"2":{"2428":2,"2429":1}}],["bends",{"2":{"2427":1}}],["bending",{"2":{"2425":1,"2427":1}}],["bend",{"2":{"231":1,"1925":4,"2427":1,"2527":4}}],["beck",{"2":{"2941":1}}],["becom",{"2":{"2074":1}}],["become",{"2":{"293":1,"305":1,"377":1,"1622":1,"2400":2,"2402":2,"2404":2,"2428":1,"2466":1,"2576":2,"2739":1}}],["becomes",{"2":{"213":1,"231":1,"564":1,"1593":1,"2462":1,"2482":1,"2726":1,"2731":1}}],["because",{"2":{"28":1,"414":1,"513":1,"596":1,"690":3,"1205":1,"1283":1,"1287":1,"1297":1,"1350":1,"1366":1,"1410":2,"1422":1,"1423":1,"1425":1,"1470":1,"1529":1,"1532":1,"1538":1,"1593":3,"1786":1,"1923":1,"1953":2,"1992":1,"2001":1,"2057":1,"2096":1,"2097":1,"2178":1,"2191":1,"2273":1,"2275":1,"2279":1,"2293":1,"2300":2,"2309":2,"2310":1,"2319":1,"2325":1,"2379":1,"2474":1,"2482":1,"2503":1,"2554":1,"2568":1,"2569":1,"2576":2,"2578":1,"2579":1,"2634":1,"2666":1,"2669":1,"2748":1,"2759":1,"2763":1,"2764":1,"2769":1,"2912":1,"2913":1,"2919":1,"2930":1,"2935":1,"2947":1}}],["bebol",{"2":{"211":1}}],["beekeeb",{"2":{"211":1}}],["beeps",{"2":{"1473":1}}],["beep",{"2":{"120":1,"1441":1,"1444":3,"1473":1,"2221":1,"2856":2,"2868":1}}],["been",{"0":{"400":1},"2":{"1":2,"3":1,"7":1,"8":2,"10":1,"14":2,"15":1,"16":1,"25":1,"36":1,"38":1,"49":2,"60":1,"67":2,"69":1,"70":3,"82":1,"84":1,"86":3,"90":1,"98":1,"114":2,"118":2,"123":1,"124":1,"125":1,"126":1,"128":1,"132":1,"137":1,"140":2,"142":1,"154":1,"157":1,"163":1,"164":1,"166":1,"167":1,"169":1,"175":2,"182":5,"183":1,"185":1,"194":2,"196":1,"198":2,"201":4,"202":1,"203":1,"206":1,"209":1,"213":2,"215":1,"218":1,"219":1,"220":1,"221":1,"224":1,"228":2,"230":1,"231":1,"233":2,"238":1,"243":1,"254":1,"262":3,"265":1,"271":1,"273":1,"279":1,"283":2,"284":2,"293":1,"302":1,"303":1,"304":1,"305":1,"312":2,"314":1,"315":1,"316":1,"323":1,"331":2,"338":1,"411":1,"434":1,"459":1,"470":1,"569":1,"582":1,"596":1,"634":1,"637":2,"644":1,"646":4,"657":1,"659":1,"665":2,"710":1,"723":1,"1392":1,"1393":1,"1398":1,"1405":1,"1446":1,"1447":2,"1539":1,"1589":1,"1750":1,"1785":1,"1800":1,"1852":5,"1937":1,"1959":1,"1962":1,"2008":1,"2061":1,"2076":1,"2078":1,"2085":1,"2091":7,"2191":1,"2249":1,"2265":1,"2275":2,"2300":2,"2308":1,"2310":1,"2317":2,"2404":1,"2466":1,"2502":1,"2568":1,"2569":4,"2571":1,"2586":1,"2607":1,"2612":1,"2616":1,"2617":1,"2633":1,"2639":1,"2640":1,"2653":1,"2655":1,"2686":2,"2746":2,"2763":1,"2764":2,"2765":1,"2813":1,"2902":1,"2918":1,"2934":1,"2939":1}}],["belgian",{"2":{"2887":4}}],["belgium",{"2":{"2887":2}}],["bel",{"2":{"2221":1,"2856":1}}],["belong",{"2":{"1203":1,"1204":1,"1499":1,"2746":2}}],["below",{"2":{"43":1,"55":1,"182":1,"196":2,"204":1,"224":1,"491":1,"521":1,"627":1,"656":1,"657":1,"661":1,"669":2,"683":1,"712":1,"716":1,"743":1,"746":3,"758":1,"768":1,"1198":1,"1201":1,"1250":1,"1271":1,"1289":1,"1315":1,"1328":1,"1368":1,"1422":1,"1503":1,"1517":1,"1547":1,"1590":1,"1593":2,"1594":1,"1604":1,"1680":1,"1742":1,"1768":1,"1769":1,"1773":1,"1774":1,"1781":1,"1798":2,"1801":1,"1845":1,"1952":1,"1954":1,"1964":1,"1989":1,"1999":2,"2012":1,"2013":1,"2039":1,"2042":1,"2068":1,"2081":1,"2085":1,"2179":1,"2180":1,"2206":1,"2222":1,"2266":1,"2295":1,"2296":1,"2309":1,"2310":1,"2317":1,"2318":2,"2326":1,"2327":1,"2417":2,"2423":1,"2437":1,"2450":1,"2541":1,"2585":2,"2626":1,"2705":1,"2746":1,"2760":1,"2764":3,"2777":1,"2781":3,"2785":1,"2787":3,"2884":1,"2885":1,"2886":1,"2908":1,"2940":2,"2944":1}}],["believe",{"2":{"414":1}}],["belt",{"2":{"199":1}}],["bells",{"2":{"2746":1}}],["bella",{"2":{"211":1}}],["bell",{"2":{"114":1,"1444":1,"1486":1,"2221":2}}],["began",{"2":{"2379":1}}],["begins",{"2":{"1538":1,"1798":1,"1807":1,"2300":1,"2379":2,"2524":1,"2562":1,"2585":1}}],["beginner",{"2":{"1427":1}}],["beginners",{"0":{"1425":1}}],["beginning",{"0":{"2906":1},"2":{"203":1,"398":1,"512":1,"1462":1,"1538":3,"1663":1,"1936":1,"1954":2,"2290":2,"2295":1,"2296":1,"2310":1,"2319":1,"2327":3,"2429":1,"2634":1,"2794":1}}],["begin",{"2":{"94":1,"113":1,"114":1,"133":1,"134":1,"249":1,"1529":1,"1805":1,"1812":1,"1954":2,"2218":1,"2344":1,"2359":1,"2449":1,"2605":1,"2614":1,"2949":1}}],["begun",{"2":{"50":1}}],["bet",{"2":{"233":1,"1534":1,"2612":1}}],["beta",{"2":{"143":2,"211":1,"228":1,"311":1}}],["better",{"0":{"2765":1},"1":{"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1},"2":{"50":1,"98":1,"149":1,"160":1,"191":2,"263":1,"308":1,"328":1,"517":1,"526":1,"541":1,"648":1,"1968":1,"2037":1,"2441":1,"2467":1,"2565":1,"2652":1,"2658":2,"2676":1,"2679":1,"2759":1,"2850":1,"2902":1,"2914":1,"2919":1,"2920":1,"2949":1}}],["between",{"0":{"1343":1,"1463":1,"2038":1,"2277":1},"1":{"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1},"2":{"32":1,"45":1,"49":2,"64":1,"76":1,"107":1,"114":1,"211":2,"249":1,"257":1,"258":1,"259":2,"266":1,"271":1,"276":1,"403":1,"472":1,"474":1,"512":1,"521":1,"527":1,"533":1,"561":2,"564":2,"570":3,"622":1,"651":1,"685":1,"716":1,"720":3,"760":1,"1192":1,"1245":1,"1266":1,"1288":1,"1297":1,"1298":1,"1343":1,"1350":1,"1364":1,"1366":2,"1377":1,"1409":1,"1426":2,"1427":1,"1428":6,"1463":1,"1464":1,"1472":1,"1538":1,"1558":1,"1579":1,"1590":1,"1594":1,"1623":1,"1647":1,"1665":1,"1667":1,"1675":1,"1695":1,"1742":1,"1788":1,"1838":1,"1935":4,"1936":2,"1937":8,"1939":3,"1940":1,"1954":1,"1960":1,"1961":1,"1962":1,"1968":1,"1986":2,"1993":1,"2037":1,"2038":1,"2054":1,"2072":1,"2180":1,"2183":1,"2185":1,"2187":6,"2198":13,"2200":2,"2201":2,"2202":2,"2216":1,"2226":1,"2230":1,"2234":1,"2254":1,"2264":1,"2265":2,"2266":1,"2267":1,"2273":1,"2276":3,"2277":1,"2278":1,"2280":1,"2294":1,"2296":1,"2297":1,"2305":1,"2309":1,"2317":1,"2327":1,"2365":1,"2377":1,"2378":1,"2380":2,"2384":1,"2391":1,"2413":1,"2426":1,"2427":1,"2450":2,"2497":1,"2504":1,"2582":1,"2634":2,"2656":1,"2678":1,"2733":1,"2751":2,"2759":1,"2761":1,"2775":1,"2777":1,"2785":1,"2794":1,"2842":1,"2854":2,"2858":1,"2872":1,"2877":1,"2913":1,"2919":1,"2921":1,"2928":1,"2949":1}}],["behind",{"2":{"49":1,"198":1,"201":1,"213":1,"224":1,"238":1,"251":1,"576":1,"2310":1,"2728":1,"2902":2}}],["behave",{"2":{"303":1,"338":1,"588":1,"1366":1,"1597":1,"1787":1,"1999":1,"2076":1,"2308":1,"2549":1,"2651":1,"2747":1,"2919":1}}],["behaves",{"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"399":1,"626":1,"2077":1,"2585":1}}],["behavioral",{"2":{"1349":1}}],["behaviors",{"0":{"564":1}}],["behavior",{"0":{"626":1,"630":1},"1":{"627":1,"631":1,"632":1},"2":{"4":1,"49":1,"64":1,"87":2,"88":1,"103":1,"104":1,"126":1,"127":1,"176":1,"194":2,"297":3,"320":1,"327":2,"393":1,"414":3,"431":1,"489":2,"494":1,"540":1,"543":1,"570":1,"621":1,"625":2,"628":1,"630":2,"631":1,"648":1,"1349":1,"1490":1,"1502":1,"1623":1,"1662":1,"1663":1,"1766":1,"1770":1,"1773":1,"1777":1,"1781":1,"1782":1,"1784":1,"1785":1,"1786":1,"1787":1,"1837":1,"1838":1,"1956":1,"1961":1,"1986":1,"1990":2,"2077":1,"2278":1,"2318":1,"2320":1,"2344":1,"2345":1,"2346":1,"2461":1,"2466":1,"2581":1,"2650":1,"2663":1,"2700":2,"2702":1,"2808":1,"2909":1,"2913":2,"2922":3,"2925":3,"2930":2}}],["behaviours",{"2":{"198":1}}],["behaviour",{"0":{"194":1,"206":1,"2000":1},"2":{"2":1,"113":1,"114":1,"134":1,"149":2,"191":2,"206":1,"211":2,"294":2,"328":1,"333":1,"646":1,"656":1,"1322":1,"1367":1,"1431":1,"1519":1,"1593":1,"1614":1,"1668":2,"1803":1,"2000":1,"2054":1,"2181":2,"2271":1,"2720":1}}],["be",{"0":{"25":1,"263":1,"403":1,"562":1,"563":1,"564":1,"591":1,"2667":1,"2903":1,"2904":1},"2":{"5":1,"10":2,"11":1,"16":1,"22":1,"23":1,"24":1,"25":1,"28":1,"45":1,"49":2,"50":2,"58":1,"60":1,"63":2,"64":1,"70":1,"74":4,"88":2,"93":1,"100":1,"103":2,"104":2,"107":1,"109":1,"110":1,"118":1,"124":2,"125":1,"126":1,"127":2,"131":1,"134":4,"137":1,"138":1,"153":2,"154":1,"156":1,"157":1,"160":1,"164":1,"176":1,"184":1,"185":2,"191":2,"194":3,"195":2,"201":5,"203":1,"209":3,"210":1,"213":2,"220":1,"221":1,"228":3,"230":2,"231":1,"236":1,"249":1,"254":1,"262":2,"263":1,"265":3,"266":1,"268":1,"271":1,"273":1,"275":2,"276":2,"283":1,"284":1,"285":2,"288":2,"289":1,"303":2,"306":2,"307":3,"308":1,"312":1,"315":1,"317":1,"327":1,"328":1,"332":1,"338":1,"339":1,"344":3,"353":1,"377":1,"378":1,"379":1,"386":1,"389":1,"393":3,"396":3,"397":1,"399":1,"402":1,"403":8,"405":2,"406":2,"407":3,"411":1,"412":10,"414":5,"419":2,"420":2,"423":1,"429":3,"430":2,"433":6,"443":1,"444":1,"446":1,"455":3,"459":1,"460":1,"461":1,"469":3,"473":1,"474":1,"475":1,"476":1,"483":1,"489":2,"492":1,"493":1,"494":2,"500":3,"505":1,"506":1,"509":1,"511":1,"512":1,"514":1,"516":1,"519":1,"521":1,"524":1,"525":2,"531":1,"532":1,"533":3,"537":1,"538":2,"540":3,"541":2,"542":1,"543":1,"545":1,"556":1,"557":1,"560":2,"561":4,"563":1,"564":1,"565":3,"568":3,"569":2,"570":3,"571":1,"574":2,"575":4,"578":2,"584":1,"588":4,"589":2,"591":1,"592":1,"593":1,"594":1,"596":2,"597":1,"598":1,"601":1,"605":1,"609":1,"610":1,"613":2,"615":2,"619":5,"620":1,"625":2,"626":1,"627":4,"629":1,"630":2,"633":1,"634":1,"639":1,"640":1,"643":2,"645":2,"647":1,"648":2,"651":2,"656":4,"657":9,"658":1,"659":2,"660":1,"661":1,"672":1,"676":1,"677":1,"681":3,"685":1,"690":5,"691":2,"693":1,"694":3,"696":2,"701":1,"710":4,"711":3,"712":4,"713":2,"719":1,"720":5,"721":2,"723":1,"729":1,"733":1,"743":1,"746":3,"748":1,"749":4,"750":1,"751":1,"753":1,"754":5,"755":5,"756":2,"758":1,"762":1,"763":1,"764":1,"768":3,"793":1,"799":2,"805":1,"809":1,"831":1,"835":1,"859":1,"863":1,"867":1,"893":1,"897":1,"923":2,"924":1,"928":1,"932":1,"958":1,"962":1,"966":1,"992":1,"996":1,"1000":1,"1026":1,"1030":1,"1034":1,"1060":1,"1064":1,"1068":1,"1094":2,"1098":1,"1102":1,"1128":2,"1132":1,"1136":1,"1162":1,"1166":1,"1170":1,"1192":1,"1196":1,"1198":1,"1199":1,"1200":4,"1201":1,"1203":2,"1204":2,"1205":2,"1206":1,"1209":1,"1213":1,"1219":1,"1223":1,"1247":1,"1248":4,"1250":2,"1252":2,"1269":1,"1271":2,"1283":1,"1286":1,"1287":2,"1288":2,"1289":1,"1292":1,"1294":3,"1297":2,"1298":2,"1301":1,"1305":1,"1313":1,"1319":1,"1320":3,"1324":1,"1325":1,"1326":1,"1329":1,"1330":1,"1331":1,"1332":1,"1343":1,"1348":3,"1351":1,"1353":1,"1363":3,"1364":4,"1367":1,"1368":1,"1382":2,"1383":1,"1384":1,"1387":1,"1388":3,"1390":2,"1395":1,"1407":2,"1408":1,"1409":1,"1410":3,"1412":1,"1413":1,"1416":3,"1417":2,"1419":3,"1422":5,"1423":2,"1424":1,"1425":2,"1426":1,"1427":4,"1428":1,"1429":1,"1433":2,"1434":4,"1435":1,"1436":1,"1438":1,"1440":1,"1446":3,"1447":1,"1448":2,"1451":1,"1452":1,"1453":1,"1454":1,"1455":2,"1462":2,"1463":2,"1464":5,"1465":1,"1466":2,"1467":1,"1470":2,"1471":1,"1472":2,"1474":2,"1477":1,"1478":1,"1480":1,"1481":2,"1483":1,"1485":5,"1487":1,"1489":1,"1490":1,"1491":2,"1493":1,"1498":1,"1501":1,"1502":1,"1503":1,"1510":1,"1517":1,"1518":7,"1522":1,"1523":1,"1527":2,"1528":1,"1532":1,"1533":2,"1534":1,"1538":2,"1546":2,"1554":1,"1589":1,"1591":1,"1594":1,"1595":1,"1600":2,"1605":1,"1607":1,"1608":2,"1609":4,"1610":3,"1612":8,"1620":2,"1623":1,"1625":1,"1626":1,"1628":1,"1631":1,"1633":2,"1634":1,"1640":2,"1641":1,"1643":2,"1645":1,"1647":2,"1648":3,"1651":1,"1661":1,"1665":4,"1666":1,"1667":2,"1668":1,"1669":2,"1670":4,"1678":1,"1681":5,"1682":1,"1685":1,"1686":2,"1687":2,"1697":1,"1702":2,"1704":2,"1729":2,"1738":3,"1740":1,"1741":1,"1742":3,"1747":1,"1762":2,"1765":2,"1770":1,"1772":1,"1774":2,"1776":2,"1777":1,"1779":1,"1781":13,"1782":3,"1783":1,"1784":2,"1785":1,"1787":2,"1788":2,"1792":1,"1795":3,"1802":1,"1803":1,"1837":1,"1838":1,"1846":3,"1850":2,"1851":1,"1852":1,"1853":1,"1865":1,"1867":1,"1919":1,"1936":2,"1938":1,"1939":1,"1940":2,"1941":1,"1943":1,"1946":2,"1947":2,"1949":1,"1951":1,"1953":1,"1954":4,"1956":1,"1957":1,"1959":1,"1960":1,"1964":2,"1965":1,"1968":3,"1971":1,"1974":3,"1976":4,"1977":2,"1979":1,"1981":1,"1982":1,"1983":3,"1984":2,"1985":3,"1986":4,"1988":1,"1990":4,"1994":3,"1998":2,"1999":5,"2000":1,"2001":3,"2004":1,"2006":1,"2008":3,"2009":1,"2011":4,"2012":2,"2013":2,"2014":2,"2015":2,"2016":2,"2039":1,"2042":1,"2043":1,"2044":2,"2046":1,"2048":3,"2051":1,"2056":1,"2057":3,"2058":2,"2064":2,"2065":1,"2068":1,"2069":1,"2070":3,"2071":1,"2072":2,"2073":1,"2074":3,"2075":1,"2077":1,"2078":3,"2079":1,"2082":3,"2087":1,"2088":2,"2089":1,"2090":1,"2091":1,"2092":1,"2096":2,"2107":1,"2109":1,"2178":1,"2179":1,"2181":2,"2182":2,"2183":1,"2184":2,"2189":3,"2191":2,"2205":1,"2208":2,"2210":1,"2212":1,"2213":2,"2214":1,"2219":2,"2222":2,"2249":1,"2261":1,"2265":2,"2267":2,"2271":2,"2272":3,"2273":2,"2275":3,"2276":1,"2277":6,"2278":2,"2279":1,"2286":2,"2290":2,"2293":1,"2294":2,"2295":1,"2298":1,"2300":7,"2301":2,"2304":1,"2309":5,"2310":1,"2316":1,"2317":6,"2318":1,"2319":6,"2320":1,"2322":1,"2323":1,"2324":1,"2326":1,"2327":2,"2330":6,"2331":2,"2344":1,"2345":1,"2346":1,"2347":1,"2365":1,"2375":2,"2377":1,"2378":1,"2379":4,"2381":1,"2382":2,"2383":2,"2388":2,"2390":3,"2391":1,"2393":3,"2395":2,"2396":2,"2397":1,"2398":3,"2400":1,"2402":1,"2404":1,"2409":2,"2410":3,"2412":3,"2414":1,"2415":2,"2417":5,"2418":7,"2423":2,"2424":1,"2425":2,"2426":1,"2427":2,"2428":7,"2429":3,"2430":2,"2431":2,"2432":2,"2434":4,"2435":1,"2437":1,"2439":1,"2441":1,"2449":1,"2450":4,"2451":3,"2453":3,"2454":3,"2455":1,"2456":1,"2458":1,"2460":1,"2462":1,"2463":1,"2464":2,"2466":4,"2467":1,"2470":1,"2471":1,"2473":1,"2482":1,"2483":1,"2485":1,"2486":1,"2487":1,"2489":1,"2490":1,"2497":1,"2499":1,"2501":1,"2502":3,"2503":2,"2504":1,"2505":2,"2506":3,"2507":1,"2508":1,"2510":1,"2523":1,"2554":1,"2557":2,"2558":1,"2559":2,"2561":3,"2565":1,"2566":2,"2567":1,"2568":6,"2569":6,"2570":3,"2571":3,"2575":1,"2576":3,"2578":4,"2579":1,"2583":1,"2584":2,"2585":3,"2589":2,"2590":2,"2593":2,"2601":1,"2602":4,"2603":1,"2605":1,"2609":2,"2610":2,"2612":4,"2613":1,"2614":1,"2616":1,"2618":1,"2619":1,"2628":1,"2629":2,"2636":1,"2637":1,"2639":1,"2640":4,"2650":1,"2651":1,"2652":2,"2656":1,"2658":1,"2659":1,"2662":3,"2664":1,"2665":1,"2666":3,"2667":5,"2668":5,"2669":4,"2671":1,"2672":1,"2676":2,"2678":1,"2682":1,"2683":12,"2685":6,"2686":1,"2687":1,"2690":1,"2691":1,"2694":1,"2695":1,"2696":1,"2700":1,"2702":1,"2703":1,"2704":1,"2705":2,"2706":1,"2707":1,"2709":6,"2710":3,"2711":2,"2712":1,"2713":2,"2714":1,"2716":1,"2719":1,"2720":1,"2722":2,"2743":1,"2744":11,"2745":6,"2746":34,"2747":13,"2749":2,"2750":1,"2751":1,"2754":1,"2759":1,"2760":2,"2761":5,"2762":4,"2763":42,"2764":30,"2765":1,"2769":4,"2771":1,"2777":1,"2778":1,"2779":2,"2780":1,"2781":3,"2783":2,"2787":2,"2788":2,"2789":1,"2792":1,"2794":2,"2813":1,"2847":1,"2850":1,"2852":2,"2853":1,"2854":2,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2864":3,"2869":1,"2871":3,"2872":2,"2875":1,"2876":1,"2877":2,"2878":3,"2880":2,"2881":1,"2883":1,"2886":1,"2888":1,"2889":1,"2893":1,"2894":1,"2897":1,"2901":2,"2902":3,"2903":7,"2904":2,"2905":1,"2906":1,"2908":1,"2912":5,"2913":1,"2918":2,"2919":5,"2920":3,"2921":5,"2924":1,"2925":4,"2926":3,"2927":2,"2928":2,"2930":2,"2931":2,"2934":1,"2936":1,"2940":3,"2943":3,"2944":2,"2945":1,"2946":1,"2947":1,"2948":3,"2949":2}}],["beforehand",{"2":{"2612":1}}],["before",{"0":{"324":1,"405":1,"406":1,"407":1,"408":1},"2":{"1":1,"45":1,"49":1,"55":1,"73":1,"90":1,"105":1,"160":2,"176":1,"191":1,"199":1,"203":2,"211":1,"234":1,"240":1,"246":1,"259":1,"263":1,"289":1,"320":2,"362":1,"369":1,"403":1,"407":1,"409":1,"412":9,"455":1,"467":1,"469":1,"506":1,"537":1,"564":7,"574":3,"613":1,"615":2,"617":1,"619":4,"630":1,"633":1,"634":1,"637":1,"644":1,"646":1,"651":2,"657":2,"658":1,"659":1,"691":1,"768":1,"799":2,"1250":1,"1271":1,"1410":1,"1446":1,"1447":4,"1455":1,"1456":1,"1490":1,"1498":1,"1503":1,"1518":2,"1527":1,"1528":1,"1529":1,"1532":1,"1538":1,"1591":1,"1604":1,"1622":1,"1634":1,"1678":1,"1704":1,"1730":1,"1732":1,"1781":1,"1835":1,"1846":1,"1908":1,"1910":1,"1912":1,"1915":1,"1939":1,"1948":1,"1953":1,"1971":8,"1993":1,"1996":1,"1999":1,"2001":2,"2008":2,"2011":2,"2046":1,"2048":1,"2053":1,"2082":1,"2168":1,"2170":1,"2172":1,"2175":1,"2217":1,"2231":1,"2235":1,"2259":2,"2260":1,"2265":1,"2275":2,"2281":1,"2300":2,"2308":1,"2310":1,"2317":1,"2417":1,"2418":1,"2425":1,"2427":1,"2429":1,"2431":1,"2455":1,"2466":1,"2503":1,"2566":1,"2567":1,"2573":1,"2603":1,"2612":1,"2618":1,"2619":1,"2634":1,"2650":1,"2655":1,"2674":1,"2685":3,"2712":1,"2713":1,"2740":1,"2744":1,"2746":2,"2749":1,"2762":1,"2769":1,"2821":1,"2861":1,"2869":1,"2874":1,"2879":1,"2882":1,"2896":1,"2903":1,"2913":1,"2918":1,"2919":1,"2925":2,"2930":2}}],["m4",{"2":{"2689":1}}],["mrwd",{"2":{"2068":1,"2510":1,"2549":1}}],["mrelax",{"2":{"160":1}}],["mhz",{"2":{"1252":2}}],["mb85rs64v",{"2":{"750":2}}],["mb85rc256v",{"2":{"749":2}}],["mnt",{"2":{"2626":1}}],["mnemonic",{"2":{"2330":2,"2418":1}}],["mnxt",{"2":{"589":2,"1776":1,"2068":1,"2510":1,"2549":1}}],["mnk50",{"2":{"241":2}}],["mnk75",{"2":{"211":1,"241":2}}],["mnk1800s",{"2":{"211":1,"241":2}}],["mnk65",{"2":{"211":1}}],["mmd",{"2":{"2567":1}}],["mm",{"2":{"411":2,"1970":4,"1974":1,"2882":1}}],["mmcu=",{"2":{"354":1,"2388":1}}],["mmoskal",{"2":{"199":1}}],["m32u4",{"2":{"2502":1}}],["m3",{"2":{"328":1}}],["m3n3van",{"2":{"143":2}}],["m1",{"2":{"328":1}}],["m122",{"2":{"114":1,"207":8}}],["m12og",{"2":{"102":3}}],["m2s",{"2":{"2277":7}}],["m2",{"2":{"328":1}}],["m256ws",{"2":{"277":1}}],["m256wh",{"2":{"277":1}}],["m20add",{"2":{"114":1}}],["mj65",{"2":{"253":2}}],["mj6xy",{"2":{"211":1}}],["mfa",{"2":{"2676":1}}],["mffd",{"2":{"2068":1,"2510":1,"2549":1}}],["mf34",{"2":{"226":1,"236":1}}],["mf17",{"2":{"226":1,"236":1}}],["m60",{"2":{"199":1}}],["m65",{"2":{"114":1,"211":2}}],["msel",{"2":{"2510":1,"2549":1}}],["msecs",{"2":{"1448":1}}],["mstp",{"2":{"2510":1,"2549":1}}],["msb",{"2":{"2296":2}}],["msbs",{"2":{"2295":1}}],["msg1967778",{"2":{"1387":2}}],["msg1884034",{"2":{"1386":2}}],["msg1127447",{"2":{"1378":2}}],["msg1492604",{"2":{"1353":2}}],["msystem",{"2":{"2678":1}}],["msys2",{"0":{"2678":1},"2":{"158":1,"160":1,"709":1,"2502":1,"2506":1,"2593":1,"2620":1,"2621":1,"2622":1,"2678":2}}],["msys",{"2":{"158":1,"160":1,"240":1,"2397":1,"2502":1,"2593":1,"2597":1,"2620":1,"2621":1,"2622":3,"2628":1,"2678":2,"2683":4}}],["ms",{"0":{"1503":1},"2":{"149":1,"160":1,"209":2,"222":2,"231":2,"561":1,"564":1,"570":1,"647":2,"768":1,"1410":2,"1444":1,"1591":1,"1662":1,"1667":2,"1681":4,"1801":1,"1933":19,"1935":3,"1937":22,"1938":6,"1939":1,"1949":1,"1970":1,"1971":2,"1974":1,"1985":2,"1992":1,"2003":6,"2014":1,"2068":8,"2086":2,"2222":2,"2275":1,"2288":1,"2315":4,"2499":1,"2528":19,"2650":1,"2700":1,"2744":2,"2854":2,"2862":1,"2870":1,"2872":1,"2880":1,"2882":1,"2883":1,"2922":1}}],["mschwingen",{"2":{"149":1,"207":2}}],["mctl",{"2":{"2510":1,"2549":1}}],["mcselec",{"2":{"1319":1}}],["mcmuffin",{"2":{"675":1}}],["mc",{"2":{"211":1}}],["mcall",{"2":{"160":1}}],["mcp23018",{"2":{"148":1,"149":2,"191":2}}],["mcu>",{"2":{"354":1,"2383":3,"2386":1,"2388":1,"2389":1,"2502":1}}],["mcuconf",{"2":{"50":2,"717":1,"718":1,"721":1,"764":3,"1203":3,"1204":3,"1248":3,"1269":2,"1299":1,"1303":1,"1405":2,"1556":1,"1557":1,"2697":1,"2698":1,"2699":1}}],["mcus",{"0":{"1210":1,"2683":1},"1":{"1211":1,"1212":1,"1213":1},"2":{"49":1,"76":1,"114":1,"149":1,"174":1,"191":1,"249":1,"384":1,"393":1,"396":1,"398":1,"545":1,"546":1,"685":1,"696":1,"714":1,"716":1,"753":1,"754":1,"760":1,"1198":3,"1200":4,"1201":4,"1203":2,"1204":2,"1245":1,"1266":1,"1300":1,"1383":1,"1477":1,"1740":2,"1953":1,"2273":1,"2393":1,"2398":1,"2501":1,"2685":5,"2692":1,"2710":1,"2711":3,"2747":1,"2763":1,"2802":1,"2803":1}}],["mcu",{"0":{"130":1,"145":1,"392":1,"573":1,"1643":1,"2707":1,"2708":1,"2711":1,"2713":1,"2830":1},"1":{"2708":1,"2709":2,"2710":2,"2711":1,"2712":1,"2713":1},"2":{"10":2,"73":1,"93":1,"114":1,"130":2,"134":1,"145":1,"149":1,"174":2,"176":5,"191":1,"199":4,"211":1,"236":1,"285":2,"339":1,"347":1,"384":1,"385":1,"388":1,"393":5,"396":1,"397":1,"571":1,"573":1,"574":2,"622":1,"645":1,"646":1,"693":1,"694":1,"714":1,"716":2,"721":1,"723":1,"746":1,"752":1,"753":2,"754":9,"757":3,"763":2,"764":2,"1192":1,"1196":1,"1198":1,"1200":3,"1201":1,"1203":4,"1204":5,"1205":1,"1247":2,"1248":1,"1252":2,"1268":2,"1269":1,"1294":3,"1297":3,"1300":1,"1303":1,"1312":1,"1313":2,"1383":1,"1415":1,"1481":1,"1556":1,"1558":3,"1639":1,"1643":1,"1669":1,"1681":1,"1682":1,"1979":1,"1982":1,"2044":1,"2208":1,"2261":1,"2375":1,"2384":1,"2390":1,"2391":1,"2418":1,"2439":1,"2483":2,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":1,"2503":1,"2683":5,"2685":2,"2690":2,"2691":4,"2694":1,"2707":8,"2709":3,"2711":1,"2713":1,"2718":1,"2746":3,"2747":1,"2753":1,"2761":3,"2807":2,"2811":1,"2815":1,"2828":1,"2863":1}}],["mprv",{"2":{"1776":1,"2068":1,"2510":1,"2549":1}}],["mply",{"2":{"589":2,"1776":6,"2510":1,"2549":1}}],["mp",{"2":{"143":2}}],["mpaland",{"0":{"24":1},"2":{"176":1}}],["m0",{"2":{"134":1}}],["m0lly",{"2":{"43":2,"211":1}}],["md5",{"2":{"2417":2,"2508":1}}],["mdbt40",{"2":{"2375":1}}],["mdash",{"2":{"2297":1,"2638":2,"2639":2,"2640":1,"2797":2}}],["mdloader",{"2":{"134":1}}],["md",{"0":{"683":1,"684":1,"1467":1,"2452":1,"2715":1},"2":{"114":1,"134":1,"176":2,"222":1,"339":1,"403":1,"409":1,"411":1,"412":1,"618":2,"666":1,"681":2,"1353":1,"1433":3,"1463":1,"2414":1,"2415":1,"2448":1,"2451":1,"2452":1,"2458":2,"2715":2,"2746":1}}],["mün",{"2":{"114":1}}],["mymacro2",{"2":{"2948":2}}],["mymacro1",{"2":{"2948":2}}],["mycoolkeeb",{"2":{"2714":4}}],["mycm",{"2":{"2510":1,"2549":1}}],["myusername",{"2":{"2605":1}}],["mykeyclub",{"2":{"2567":1}}],["mykeyboard",{"2":{"169":2,"184":2}}],["mylayout",{"2":{"1465":3}}],["my",{"0":{"414":1,"501":1,"604":1,"605":1,"1320":1,"1348":1,"1349":1,"1375":1},"1":{"415":1,"416":1,"417":1,"418":1,"502":1,"503":1,"504":1,"505":1,"506":1},"2":{"114":1,"120":2,"272":4,"307":6,"375":1,"393":1,"397":1,"473":1,"522":1,"523":1,"524":1,"533":2,"616":4,"629":1,"656":3,"657":3,"658":2,"659":2,"675":2,"681":5,"762":2,"1352":1,"1420":5,"1427":1,"1441":2,"1446":4,"1450":4,"1464":2,"1485":3,"1523":3,"1620":4,"1633":1,"1850":10,"2076":4,"2077":5,"2088":10,"2189":10,"2318":2,"2319":14,"2410":2,"2416":2,"2436":1,"2510":2,"2549":2,"2603":5,"2608":1,"2616":2,"2640":1,"2717":1,"2762":10,"2763":5,"2764":29,"2885":2}}],["mx",{"2":{"2421":1,"2890":1}}],["mx25l4006e",{"2":{"759":1}}],["mxss",{"2":{"211":2,"236":1}}],["mx1062",{"2":{"108":1}}],["mx5160",{"2":{"57":2,"211":1}}],["m",{"2":{"93":1,"102":1,"114":1,"158":2,"191":1,"204":2,"207":14,"211":1,"217":1,"222":1,"249":1,"266":5,"375":1,"409":1,"411":1,"420":2,"421":1,"430":2,"437":2,"462":1,"589":2,"613":1,"1528":1,"1605":2,"1625":1,"2071":6,"2181":10,"2410":1,"2503":3,"2510":3,"2532":10,"2542":3,"2563":1,"2600":2,"2634":1,"2640":1,"2882":1}}],["mumbo",{"0":{"1953":1}}],["mu",{"2":{"1490":4,"1495":4,"2512":4}}],["muhenkan",{"2":{"1358":1,"2547":1}}],["mux",{"2":{"693":4,"694":2}}],["mutually",{"2":{"1426":1}}],["mutable",{"2":{"533":1}}],["mute",{"2":{"231":1,"255":1,"2510":5,"2548":2,"2549":3}}],["mutex",{"2":{"160":1}}],["murcielago",{"2":{"253":2}}],["musl",{"2":{"2626":1}}],["musical",{"2":{"1485":1,"1493":2}}],["music",{"0":{"1490":1,"1491":1,"1492":1},"1":{"1491":1,"1492":1},"2":{"191":1,"211":1,"651":1,"1484":1,"1485":15,"1486":20,"1490":13,"1491":6,"1492":6,"1495":8,"1641":2,"2512":8,"2891":2,"2940":1}}],["must",{"2":{"88":2,"104":2,"127":2,"141":1,"184":1,"194":1,"268":1,"284":1,"337":1,"393":1,"429":2,"458":1,"476":1,"524":1,"525":1,"533":1,"564":3,"567":1,"570":2,"574":1,"591":1,"594":1,"625":2,"627":1,"668":1,"684":1,"691":1,"693":1,"713":1,"729":1,"755":1,"768":1,"805":1,"831":1,"863":1,"893":1,"923":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1094":1,"1098":1,"1128":1,"1132":1,"1166":1,"1195":1,"1200":1,"1219":1,"1250":1,"1271":1,"1294":2,"1297":2,"1332":1,"1351":1,"1404":1,"1409":1,"1423":1,"1424":1,"1434":4,"1446":1,"1518":3,"1527":1,"1545":1,"1553":1,"1589":1,"1610":2,"1611":1,"1612":12,"1616":1,"1623":1,"1625":1,"1627":2,"1630":1,"1633":1,"1647":1,"1670":1,"1697":1,"1702":1,"1739":1,"1740":1,"1742":2,"1781":2,"1788":2,"1818":1,"1931":1,"1937":1,"1938":1,"1977":1,"1979":1,"1982":1,"1986":2,"2001":1,"2011":1,"2015":1,"2044":1,"2048":2,"2057":2,"2064":2,"2178":1,"2179":2,"2208":1,"2213":1,"2261":1,"2278":1,"2280":1,"2319":1,"2330":1,"2365":1,"2376":1,"2393":1,"2398":1,"2416":1,"2418":2,"2450":1,"2465":1,"2506":1,"2510":1,"2566":2,"2568":3,"2571":1,"2602":2,"2607":1,"2612":1,"2644":1,"2651":1,"2655":2,"2683":1,"2707":1,"2720":1,"2721":1,"2741":2,"2744":4,"2745":1,"2746":9,"2747":2,"2762":1,"2763":3,"2778":1,"2779":2,"2781":1,"2783":1,"2787":2,"2788":2,"2789":1,"2794":1,"2853":1,"2854":2,"2856":1,"2857":1,"2858":1,"2859":1,"2864":2,"2871":2,"2872":1,"2875":1,"2877":2,"2878":2,"2880":2,"2881":1,"2883":1,"2886":1,"2921":1,"2928":2}}],["multilingual",{"2":{"2887":3}}],["multilayer",{"2":{"285":1}}],["multitude",{"2":{"2684":1}}],["multiarch",{"2":{"2683":1}}],["multimeter",{"2":{"2434":1}}],["multisplash",{"2":{"1849":3,"2085":6,"2894":2}}],["multinexus",{"2":{"1849":3,"2085":3,"2894":1}}],["multicross",{"2":{"1849":3,"2085":3,"2894":1}}],["multiwide",{"2":{"1849":3,"2085":3,"2894":1}}],["multiprocessing",{"0":{"537":1}}],["multiplier",{"2":{"1951":1,"1980":1,"1986":7,"2047":3}}],["multiplicative",{"2":{"1493":1}}],["multiplication",{"2":{"191":1}}],["multiples",{"2":{"1934":1}}],["multiplexing",{"0":{"1484":1},"2":{"1484":4,"1486":2,"2695":1}}],["multiplexer",{"2":{"622":1}}],["multiple",{"0":{"481":1,"483":1,"1433":1,"1546":1,"1670":1},"1":{"1434":1,"1435":1,"1436":1,"1437":1,"1438":1,"1439":1},"2":{"75":1,"114":1,"160":3,"211":1,"234":2,"236":1,"249":1,"307":1,"308":1,"312":1,"375":1,"433":2,"455":1,"469":2,"474":2,"477":1,"483":1,"512":1,"527":1,"649":1,"677":1,"694":1,"712":2,"754":1,"755":1,"756":1,"764":1,"769":1,"772":1,"775":1,"778":1,"798":1,"799":1,"923":1,"1094":1,"1128":1,"1247":1,"1248":1,"1259":1,"1262":1,"1269":1,"1277":1,"1279":1,"1409":2,"1411":1,"1422":1,"1426":1,"1433":1,"1436":1,"1440":1,"1444":3,"1465":1,"1472":1,"1486":1,"1517":1,"1522":1,"1538":1,"1541":1,"1546":2,"1602":1,"1615":1,"1619":1,"1647":1,"1648":1,"1665":1,"1670":1,"1681":1,"1787":1,"1801":1,"1849":4,"1936":1,"1937":1,"1962":1,"1983":4,"1985":3,"2057":1,"2085":5,"2189":1,"2191":1,"2213":1,"2293":1,"2377":1,"2434":1,"2450":1,"2453":2,"2475":1,"2523":1,"2557":1,"2567":2,"2569":1,"2584":1,"2587":1,"2602":1,"2616":1,"2633":1,"2640":1,"2683":1,"2733":1,"2744":1,"2746":2,"2747":1,"2770":1,"2780":1,"2824":1,"2829":1,"2843":1,"2856":1,"2864":1,"2922":1,"2925":1,"2926":1,"2930":1}}],["multiply",{"2":{"25":1}}],["multi",{"0":{"923":1,"1094":1,"1128":1},"2":{"191":1,"211":1,"2925":1}}],["multibuild",{"2":{"149":1,"199":1}}],["mun",{"2":{"114":1}}],["much",{"0":{"2903":1},"2":{"98":1,"100":1,"123":1,"153":1,"163":1,"174":1,"175":1,"189":1,"244":1,"247":1,"248":1,"251":1,"263":1,"307":1,"417":1,"536":1,"588":1,"614":1,"757":1,"1342":1,"1421":1,"1470":1,"1493":1,"1510":1,"1525":1,"1558":1,"1766":1,"1787":1,"1938":1,"1939":1,"1974":1,"2042":1,"2085":2,"2330":1,"2379":1,"2390":1,"2405":1,"2428":1,"2429":1,"2466":1,"2604":1,"2676":1,"2678":1,"2679":1,"2686":1,"2695":1,"2704":1,"2745":1,"2884":1,"2948":1}}],["mv",{"2":{"70":1,"744":1}}],["med",{"2":{"1686":22}}],["medium",{"0":{"1213":1},"2":{"1684":1,"1685":1,"1686":5,"2508":2}}],["media",{"0":{"1776":1,"2549":1},"2":{"73":1,"176":1,"266":1,"561":1,"591":1,"1776":1,"2057":1,"2068":3,"2510":9,"2549":13,"2558":1,"2889":1}}],["meh",{"2":{"1363":1,"2529":2,"2530":1,"2535":1,"2575":3,"2651":1}}],["mentioning",{"2":{"2728":1}}],["mentioned",{"2":{"228":1,"276":1,"757":1,"1346":1,"1774":1,"1846":1,"2082":1,"2310":1,"2490":1,"2505":1}}],["menu",{"0":{"1350":1},"2":{"712":1,"1350":1,"1788":2,"2273":1,"2331":1,"2510":3,"2548":3,"2622":1,"2928":2,"2930":1}}],["messing",{"2":{"1376":1}}],["messages",{"0":{"1327":1,"1923":1},"2":{"82":1,"160":1,"191":2,"199":2,"222":1,"434":5,"492":1,"615":1,"1209":3,"1324":1,"1325":1,"1326":1,"1327":1,"1919":1,"1923":1,"1975":1,"1998":2,"2418":10,"2434":1,"2640":1,"2819":2,"2946":1}}],["message",{"0":{"1333":1},"2":{"49":1,"93":1,"149":1,"236":1,"405":1,"406":1,"407":1,"411":1,"452":1,"453":1,"454":1,"455":1,"460":1,"461":1,"469":1,"604":1,"613":2,"1332":2,"1595":1,"1948":1,"2612":1,"2628":1,"2634":1,"2640":1,"2744":1,"2762":3,"2764":1}}],["mesh",{"2":{"619":1}}],["meck",{"2":{"253":2}}],["mechanics",{"2":{"2310":1}}],["mechanical",{"0":{"1354":1,"2476":1},"1":{"2477":1,"2478":1,"2479":1,"2480":1,"2481":1},"2":{"561":1,"684":1,"1335":1,"1354":2,"1409":1,"2469":1,"2477":1,"2572":1}}],["mechanism",{"2":{"160":1,"622":1,"628":1,"1680":1,"2568":1,"2700":1,"2733":1}}],["mechanisms",{"2":{"152":1,"665":1,"2569":1,"2733":1}}],["mechmerlin",{"2":{"429":2}}],["mechmini",{"2":{"143":4}}],["mechwild",{"2":{"211":1,"236":1,"266":2}}],["mechkeys",{"0":{"256":1},"1":{"257":1,"258":1,"259":1,"260":1},"2":{"143":5,"149":2,"266":1}}],["mechloving",{"2":{"134":1}}],["mechlovin9",{"2":{"102":3,"114":1,"211":1}}],["mechlovin",{"2":{"102":3,"134":1,"191":1,"211":9,"222":1,"249":1,"266":2,"308":1}}],["meant",{"2":{"1451":1,"2667":1,"2769":1}}],["meantime",{"2":{"403":1}}],["mean",{"0":{"621":1},"2":{"263":1,"609":1,"1356":1,"2561":1,"2744":1,"2746":1}}],["means",{"2":{"251":1,"263":1,"386":1,"399":1,"414":1,"455":1,"469":1,"561":1,"613":1,"621":1,"629":1,"672":1,"676":1,"719":1,"1364":1,"1379":1,"1398":1,"1447":2,"1485":1,"1491":1,"1545":1,"1594":1,"1662":1,"1774":1,"1781":1,"1803":1,"1934":1,"2016":1,"2073":1,"2265":1,"2294":1,"2295":1,"2310":1,"2317":4,"2325":1,"2409":1,"2417":2,"2426":1,"2427":1,"2466":1,"2474":2,"2616":1,"2628":1,"2695":1,"2726":1,"2739":1,"2749":1,"2756":1,"2769":1,"2846":1,"2851":1,"2886":1,"2914":1}}],["meaningful",{"2":{"2749":1}}],["meaning",{"2":{"245":1,"768":1,"793":1,"1297":1,"1366":1,"1409":1,"1423":1,"1525":1,"1647":1,"1919":1,"2016":1,"2069":1,"2427":1,"2466":1,"2576":1,"2762":1}}],["measure",{"2":{"685":1,"1974":1}}],["measured",{"2":{"214":1,"1410":1,"1487":1,"1786":1,"2309":1,"2764":1}}],["measurement",{"2":{"199":1,"2379":1,"2685":1,"2764":1}}],["merchantability",{"2":{"1467":1,"2750":1}}],["mercutio",{"2":{"211":1,"317":1}}],["merits",{"2":{"1343":1}}],["meridian",{"2":{"211":1}}],["merely",{"2":{"557":1,"2293":1}}],["merges",{"2":{"279":1,"399":1,"402":1,"406":2,"407":1,"408":1,"412":3}}],["merged",{"2":{"114":1,"134":1,"402":4,"403":2,"405":1,"406":1,"407":1,"411":2,"412":4,"414":1,"458":1,"613":1,"2567":2,"2744":1,"2746":2,"2747":1,"2749":1}}],["merge",{"0":{"405":1,"406":1,"407":1,"408":1,"409":1,"410":1,"2633":1},"1":{"411":1,"412":1,"2634":1},"2":{"0":1,"1":1,"75":1,"114":2,"158":1,"176":1,"191":1,"199":2,"201":1,"211":1,"222":2,"275":1,"276":1,"328":1,"344":3,"399":1,"402":1,"403":3,"407":1,"408":1,"409":2,"411":1,"412":17,"423":2,"537":1,"596":1,"1341":1,"1627":1,"1983":2,"2569":2,"2570":1,"2571":1,"2632":1,"2633":1,"2634":6,"2638":1,"2744":4,"2746":1,"2747":1,"2748":1,"2749":1,"2904":1}}],["merging",{"0":{"423":1},"2":{"0":1,"9":1,"19":1,"39":1,"52":1,"73":1,"191":1,"423":1,"2634":1,"2744":2}}],["metrics",{"2":{"2054":1,"2902":1}}],["met",{"2":{"1670":1}}],["metal",{"2":{"2427":1,"2731":1}}],["metaclasses",{"2":{"538":1}}],["metadata",{"0":{"580":1,"2852":1},"2":{"188":1,"191":1,"266":1,"367":2,"379":3,"555":1,"578":2,"580":1,"2659":1,"2851":1}}],["meticulously",{"2":{"201":1}}],["methods=",{"0":{"369":1,"370":1,"371":1,"372":1}}],["methods",{"2":{"140":1,"491":2,"1315":1,"1349":1,"1409":2,"1413":1,"1594":1,"1835":1,"1842":1,"1850":2,"2088":2,"2277":1,"2382":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":2,"2398":1,"2400":2,"2402":2,"2404":2,"2425":1,"2573":1,"2683":1,"2733":1}}],["method",{"0":{"1413":1},"2":{"49":1,"169":1,"184":1,"236":1,"285":1,"293":1,"305":1,"314":1,"371":1,"372":1,"519":1,"569":1,"1409":1,"1594":2,"1633":1,"1850":1,"2088":1,"2261":1,"2268":1,"2273":2,"2291":1,"2325":1,"2330":1,"2331":2,"2382":1,"2475":1,"2769":1,"2775":1,"2818":1}}],["me",{"0":{"621":1},"2":{"169":2,"184":2,"199":1,"561":1,"609":1,"1352":1,"1417":1,"2319":1,"2572":1,"2584":1,"2590":1}}],["mem",{"2":{"2764":9}}],["memset",{"2":{"2059":2}}],["member",{"2":{"414":1,"1781":1,"1783":1,"1784":1,"2749":1}}],["members",{"0":{"732":1,"808":1,"834":1,"866":1,"896":1,"931":1,"965":1,"999":1,"1033":1,"1067":1,"1101":1,"1135":1,"1169":1,"1222":1,"1651":1,"1747":1,"1749":1},"2":{"312":1,"1781":2,"2477":1,"2567":1,"2642":1}}],["memory",{"0":{"323":1,"1450":1,"2186":1},"2":{"160":1,"236":1,"308":1,"328":1,"619":1,"749":2,"750":1,"752":1,"1348":1,"1376":1,"1413":1,"1417":1,"1428":2,"1490":1,"1525":1,"1526":1,"1609":2,"1619":1,"1662":1,"1851":1,"1952":3,"1953":5,"1962":1,"2090":1,"2297":1,"2383":1,"2482":1,"2502":2,"2503":1,"2508":1,"2511":1,"2615":3,"2705":3,"2726":2,"2733":1,"2752":1,"2763":1,"2764":2,"2949":3}}],["memcmp",{"2":{"114":1}}],["meletrix",{"2":{"2567":1}}],["melt",{"2":{"2427":1,"2429":1}}],["melting",{"2":{"2427":1}}],["melodies",{"2":{"222":1}}],["melody96",{"2":{"159":2,"160":1,"226":2,"236":1}}],["melgeek",{"2":{"134":1,"253":10}}],["meishi",{"2":{"143":2}}],["meishi2",{"2":{"143":2}}],["meira",{"2":{"143":2}}],["meetup",{"2":{"134":1}}],["mtb60",{"2":{"211":1}}],["mtbkeys",{"2":{"211":1}}],["mt980",{"2":{"159":2}}],["mt84",{"2":{"159":2,"277":1}}],["mt64rgb",{"2":{"159":2,"211":1}}],["mt40",{"2":{"159":2}}],["mt",{"2":{"38":1,"159":6,"160":1,"277":1,"297":1,"564":2,"1690":1,"1795":2,"2318":1,"2530":1,"2575":2,"2576":1,"2578":2,"2922":1}}],["mkand",{"2":{"2944":1}}],["mkmakeifeq",{"2":{"2455":1}}],["mkmake",{"2":{"2455":1}}],["mkdir",{"2":{"1628":1,"2597":1}}],["mk64fx512",{"2":{"551":1}}],["mk66fx1m0",{"2":{"133":1,"134":1,"551":1}}],["mk66f18",{"2":{"81":1,"93":2,"133":1,"134":1}}],["mk20dx256",{"2":{"551":1}}],["mk20dx128",{"2":{"551":1}}],["mkl26z64",{"2":{"551":1}}],["mk0",{"2":{"199":1}}],["mkiirgb",{"2":{"217":1}}],["mkii",{"2":{"114":1}}],["mk",{"0":{"571":1,"1464":1,"1632":2,"1678":1,"2376":1,"2418":1,"2455":1,"2889":1},"1":{"572":1,"573":1,"574":1,"575":1,"1465":1},"2":{"32":1,"49":1,"50":1,"70":29,"74":1,"76":1,"87":1,"94":1,"103":1,"114":2,"118":2,"119":1,"133":5,"134":8,"141":1,"149":2,"172":1,"191":3,"199":1,"202":1,"211":5,"235":1,"262":1,"266":11,"293":1,"305":1,"308":3,"314":1,"344":1,"348":1,"433":1,"555":2,"558":1,"567":1,"623":1,"624":1,"625":1,"655":1,"665":3,"666":1,"667":1,"669":2,"672":2,"673":5,"686":1,"698":1,"725":1,"742":1,"743":1,"746":1,"753":1,"761":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1195":1,"1198":2,"1201":2,"1215":1,"1246":1,"1267":1,"1284":1,"1289":1,"1322":1,"1330":1,"1380":1,"1391":1,"1399":1,"1413":1,"1414":2,"1433":1,"1434":2,"1463":2,"1464":7,"1465":1,"1471":2,"1472":2,"1473":1,"1477":1,"1480":1,"1481":1,"1483":1,"1500":2,"1526":1,"1542":1,"1547":1,"1578":1,"1589":1,"1594":1,"1595":1,"1602":1,"1622":1,"1623":1,"1633":1,"1639":1,"1640":1,"1646":1,"1661":1,"1665":1,"1667":1,"1678":1,"1698":1,"1739":1,"1763":1,"1768":1,"1790":1,"1797":1,"1845":1,"1850":2,"1919":1,"1932":1,"1936":1,"1937":22,"1938":2,"1944":1,"1957":1,"1962":1,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1984":1,"2017":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2055":1,"2066":1,"2081":1,"2088":2,"2179":2,"2210":1,"2215":1,"2220":1,"2250":1,"2258":1,"2268":1,"2284":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2302":1,"2309":1,"2312":1,"2320":1,"2326":1,"2329":2,"2330":1,"2374":1,"2376":2,"2378":1,"2382":1,"2383":1,"2386":1,"2388":1,"2389":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2398":1,"2400":2,"2402":2,"2404":2,"2414":2,"2415":1,"2417":1,"2419":4,"2451":1,"2455":22,"2497":1,"2597":1,"2600":1,"2683":1,"2691":1,"2702":1,"2703":1,"2724":1,"2744":2,"2746":4,"2754":1,"2760":2,"2763":11,"2764":2,"2851":1,"2889":1,"2891":1,"2908":1,"2912":2,"2940":1,"2944":6,"2946":1,"2948":1}}],["mib",{"2":{"2410":2}}],["mimic",{"2":{"2317":1,"2319":1}}],["mi",{"2":{"1919":2,"1925":174,"1926":2,"2418":2,"2527":174}}],["mikrocontroller",{"2":{"1378":1}}],["mike1808",{"2":{"114":1}}],["might",{"2":{"397":1,"403":1,"420":1,"429":1,"561":1,"710":2,"749":2,"762":1,"1376":2,"1409":2,"1410":6,"1422":2,"1427":1,"1446":1,"1463":1,"1529":1,"1590":1,"1595":1,"1615":1,"1619":1,"1923":1,"1968":1,"1974":1,"2294":1,"2309":1,"2413":1,"2415":1,"2434":1,"2453":1,"2662":1,"2710":1,"2943":1,"2949":1}}],["migrator",{"2":{"65":1}}],["migrations",{"2":{"77":1,"134":1,"199":1,"266":3}}],["migration",{"0":{"38":1,"69":1,"77":1,"265":1,"275":1},"2":{"70":1,"77":1,"113":1,"114":1,"134":2,"149":1,"188":1,"191":1,"199":3,"201":1,"213":1,"238":1,"265":1}}],["migrating",{"0":{"3":1,"7":1,"15":1,"30":1,"36":1},"1":{"31":1},"2":{"167":1,"232":1,"2746":1}}],["migrated",{"2":{"118":1,"126":1,"128":1,"140":1,"209":1,"262":1,"2722":1,"2746":2}}],["migrate",{"0":{"31":1,"34":1,"443":1},"2":{"75":1,"113":1,"114":4,"133":2,"134":6,"149":3,"176":1,"199":7,"211":1,"228":1,"236":9,"249":27,"266":66,"277":11,"294":4,"304":1,"307":1,"308":1,"317":4,"328":25,"332":1,"333":1,"337":1,"339":1,"443":1,"588":1}}],["mixture",{"2":{"2291":1}}],["mixing",{"2":{"2261":1}}],["mix",{"2":{"1288":1,"1417":1,"1423":1,"2576":1}}],["mixed",{"0":{"2738":1},"2":{"344":1,"419":1,"512":1,"619":1,"1499":1,"2742":1}}],["mixup",{"2":{"199":1}}],["mit",{"2":{"2740":1}}],["mitchsplit",{"0":{"260":1},"2":{"256":1}}],["mitigates",{"2":{"1352":1}}],["mitigated",{"2":{"263":1,"2576":1}}],["mitigate",{"0":{"312":1},"2":{"211":1,"317":1,"1409":2,"2903":1,"2930":1}}],["mitigation",{"2":{"191":1,"312":1}}],["miiiw",{"2":{"253":2,"266":1}}],["mice",{"2":{"2046":1,"2439":1,"2477":1}}],["michi",{"0":{"1394":1},"2":{"199":1,"1389":1,"1391":3,"2895":1}}],["micdrop",{"2":{"163":1}}],["microcontrol",{"2":{"2830":1}}],["microcontroller>",{"2":{"430":1}}],["microcontroller",{"0":{"2424":1},"2":{"81":1,"430":2,"433":1,"545":2,"554":1,"575":1,"696":1,"720":1,"764":1,"796":1,"798":1,"1548":1,"1558":1,"1738":1,"2273":1,"2421":1,"2430":3,"2433":1,"2466":1,"2482":2,"2494":1,"2502":1,"2503":1,"2714":1,"2731":1,"2746":1,"2853":2,"2901":1}}],["microcontrollers",{"0":{"545":1},"1":{"546":1,"547":1,"548":1,"549":1,"550":1,"551":1,"552":1,"553":1,"554":1},"2":{"69":1,"215":2,"263":1,"554":2,"1296":1,"1943":1,"2390":1,"2396":1,"2482":2,"2714":3,"2728":1,"2908":1}}],["microchip",{"2":{"749":3,"1283":1,"2178":1,"2498":1}}],["microsoft",{"2":{"1350":1,"2683":1}}],["micros",{"2":{"568":1,"709":1,"2266":1,"2267":1,"2486":1,"2700":1,"2706":1,"2835":1}}],["microseconds",{"2":{"561":1,"1285":1,"2872":1}}],["microdox",{"2":{"176":2}}],["micronucleus",{"2":{"149":1}}],["micro",{"0":{"271":1,"1391":1,"1394":1,"2484":1,"2486":1,"2702":1},"1":{"1392":1,"1393":1,"1394":1,"1395":1,"1396":1,"1397":1,"1398":1,"2485":1,"2487":1},"2":{"77":1,"86":2,"93":1,"163":1,"172":1,"176":1,"189":1,"271":2,"322":2,"546":1,"713":4,"1317":1,"1382":2,"1391":2,"1396":1,"1398":1,"1400":1,"1401":1,"1406":1,"1936":1,"2261":1,"2263":1,"2273":2,"2279":1,"2386":1,"2387":1,"2421":1,"2423":1,"2424":3,"2484":2,"2485":3,"2486":2,"2487":3,"2499":4,"2502":5,"2503":1,"2589":1,"2664":1,"2688":1,"2690":1,"2691":6,"2700":1,"2702":2,"2703":1,"2714":1,"2895":3}}],["mio",{"2":{"143":2}}],["mirrored",{"2":{"2302":1}}],["mirrors",{"2":{"570":1,"2276":1,"2319":3,"2603":1,"2746":1}}],["mirroring",{"2":{"114":1,"126":1,"2746":1}}],["mirror",{"2":{"76":1,"114":1,"149":1,"570":1,"1852":1,"2091":1,"2276":1,"2880":10}}],["mint",{"2":{"2626":1}}],["minted",{"2":{"2610":1}}],["minus",{"2":{"1692":1,"2510":2,"2544":1,"2550":1}}],["minuted",{"2":{"1961":1}}],["minute",{"0":{"2378":1},"1":{"2379":1,"2380":1,"2381":1},"2":{"1487":1,"2378":1,"2879":1}}],["minutes",{"2":{"1311":1,"2428":1}}],["mine",{"2":{"1470":1,"2410":1}}],["mind",{"2":{"512":1,"538":1,"610":1,"615":1,"619":1,"675":1,"1366":1,"1415":1,"1451":1,"1591":1,"1666":1,"1952":1,"2259":1,"2289":1,"2309":1,"2423":1,"2428":1,"2430":1,"2434":1,"2460":1,"2461":1,"2463":1,"2466":1,"2753":1,"2902":1}}],["mins",{"2":{"375":1,"589":2,"1593":2,"1600":1,"2510":1,"2544":1,"2563":1}}],["mino",{"2":{"222":1,"241":6}}],["minor",{"2":{"49":1,"51":1,"64":1,"86":1,"114":1,"149":1,"176":1,"191":1,"222":2,"294":1,"328":1,"333":1,"339":1,"1493":1}}],["min",{"0":{"1912":1,"1915":1,"2172":1,"2175":1},"2":{"211":1,"308":1,"1288":1,"1493":2,"1527":1,"1633":1,"1681":3,"1740":3,"1749":1,"1850":4,"1855":1,"1913":1,"1916":1,"1968":2,"2088":4,"2094":1,"2095":6,"2096":3,"2173":1,"2176":1}}],["mingw64",{"2":{"2622":1,"2678":1,"2683":3}}],["mingw",{"2":{"158":1,"339":1,"2506":2,"2622":2}}],["minizone",{"2":{"249":1}}],["miniaxe",{"2":{"241":2,"249":1}}],["minitkl",{"2":{"222":1}}],["minitomic",{"2":{"57":2}}],["mini36",{"2":{"191":1}}],["mini42",{"2":{"191":1}}],["minidox",{"2":{"143":2,"149":1,"217":1,"236":1,"277":1}}],["mini",{"2":{"134":1,"143":4,"149":1,"211":3,"1679":1,"2424":1}}],["minimize",{"2":{"615":1,"2720":1}}],["minimise",{"2":{"103":1,"308":1,"752":1,"754":1,"2762":1,"2901":1}}],["minim",{"2":{"143":2}}],["minimally",{"2":{"2277":1,"2746":1}}],["minimal",{"2":{"128":1,"160":1,"176":1,"215":1,"328":1,"2310":1,"2459":1,"2763":1,"2889":1,"2902":1,"2903":1}}],["minimum",{"2":{"70":1,"134":1,"222":1,"285":1,"719":2,"720":1,"748":1,"1630":1,"1633":1,"1742":1,"1749":1,"1971":5,"1975":2,"2179":1,"2201":6,"2379":1,"2568":1,"2709":1,"2746":2,"2779":1,"2944":1}}],["midpoint",{"2":{"1749":1}}],["midway",{"2":{"633":1}}],["midway60",{"2":{"211":1}}],["mid",{"2":{"564":1,"1749":1,"1757":1}}],["middle",{"2":{"50":1,"222":1,"393":1,"799":1,"1448":1,"1648":1,"2048":2,"2939":1}}],["mididevice",{"2":{"1924":1}}],["midi",{"0":{"1494":1,"1918":1,"1921":1,"1922":1,"1924":1,"1928":1,"2527":1},"1":{"1919":1,"1920":1,"1921":1,"1922":1,"1923":2,"1924":2,"1925":1,"1926":1,"1927":1,"1928":1,"1929":1},"2":{"50":1,"63":1,"70":1,"75":1,"111":1,"114":1,"188":1,"191":2,"199":3,"222":1,"231":3,"249":1,"266":1,"574":2,"575":1,"651":1,"1486":4,"1494":1,"1919":4,"1920":1,"1921":2,"1922":2,"1923":3,"1924":15,"1925":147,"1926":1,"1928":2,"1929":9,"2249":1,"2294":1,"2418":3,"2477":1,"2527":148,"2746":2,"2940":1}}],["millimeters",{"2":{"1970":2,"1974":1}}],["millivolts",{"2":{"744":1,"2858":1}}],["millisecond",{"2":{"656":1,"1410":1,"1801":1}}],["milliseconds",{"2":{"25":1,"119":1,"195":1,"561":2,"564":2,"565":1,"656":1,"657":2,"764":1,"770":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"794":1,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1208":1,"1216":1,"1291":1,"1410":1,"1412":1,"1413":7,"1444":1,"1448":1,"1455":2,"1579":1,"1594":1,"1598":1,"1792":1,"1800":1,"1852":2,"1934":1,"1935":1,"1936":2,"1939":1,"1940":1,"1957":1,"1959":1,"1960":1,"1968":1,"1970":1,"1974":1,"1980":1,"2086":1,"2091":2,"2185":1,"2187":6,"2191":1,"2222":1,"2231":1,"2235":1,"2275":3,"2309":1,"2310":1,"2327":1,"2386":1,"2531":1,"2759":1,"2761":2,"2781":1,"2854":2,"2858":1,"2861":1,"2862":1,"2870":1,"2871":2,"2872":1,"2874":1,"2878":2,"2880":3,"2882":1,"2883":1,"2910":1,"2912":1,"2921":1,"2922":2,"2930":1}}],["mild",{"2":{"211":1}}],["milc",{"2":{"65":2,"95":1,"489":3,"490":1}}],["milk",{"2":{"37":2}}],["misfires",{"2":{"1608":1,"1610":1,"1614":1,"1615":1}}],["miso",{"2":{"1247":2,"1248":5,"2483":1,"2485":1,"2487":2,"2489":1,"2491":2,"2493":2,"2495":2,"2668":1,"2702":1}}],["misterknife",{"2":{"211":3}}],["mistaken",{"2":{"2265":1}}],["mistakenly",{"2":{"243":1,"331":1}}],["mistake",{"2":{"92":1}}],["mishandling",{"2":{"199":1}}],["mis",{"2":{"199":1,"211":1}}],["mismatch",{"2":{"191":1,"411":1}}],["mismatched",{"2":{"149":1}}],["miss",{"2":{"604":1,"2554":1,"2576":1}}],["mission",{"2":{"199":2,"2510":2,"2549":2}}],["missing",{"2":{"28":1,"73":1,"92":1,"93":1,"134":4,"149":4,"160":1,"176":2,"182":1,"191":3,"199":2,"201":1,"211":4,"236":2,"249":1,"294":1,"328":1,"333":1,"2448":1,"2585":1,"2744":1,"2759":1}}],["missed",{"2":{"149":1,"160":1,"236":1}}],["miscellaneous",{"0":{"1374":1},"1":{"1375":1,"1376":1,"1377":1,"1378":1,"1379":1,"1380":1,"1381":1,"1382":1,"1383":1,"1384":1,"1385":1,"1386":1,"1387":1},"2":{"211":1,"222":1,"266":3,"308":1,"317":1}}],["misc",{"2":{"149":1,"249":2,"266":3,"277":1,"2068":1}}],["misconfigured",{"2":{"28":1}}],["misplaced",{"2":{"134":1}}],["mocks",{"2":{"2942":1}}],["mock",{"0":{"2942":1},"2":{"2942":1}}],["mocking",{"2":{"544":1,"2944":2}}],["moff",{"2":{"2304":1,"2539":1}}],["mood",{"2":{"2183":1,"2184":2,"2187":1,"2210":1,"2877":1,"2894":1}}],["moon",{"2":{"317":1}}],["moonlander",{"2":{"191":1,"199":1,"241":2,"249":1,"277":2}}],["mounting",{"2":{"2430":1}}],["mount",{"2":{"2421":1,"2424":1}}],["mounted",{"2":{"2178":1,"2689":1}}],["mousing",{"2":{"1997":1}}],["mousereport",{"2":{"1990":6}}],["mouse=true",{"2":{"1322":1}}],["mousekey",{"2":{"63":1,"70":1,"75":1,"111":1,"114":1,"188":1,"191":2,"209":1,"222":1,"236":1,"566":5,"574":1,"575":2,"1376":1,"1935":16,"1936":12,"1939":13,"1940":7,"2210":1,"2418":1,"2889":1}}],["mousekeysaccel",{"2":{"1935":1}}],["mousekeys",{"0":{"2832":1},"2":{"48":1,"160":1,"176":1,"191":1,"564":1,"1964":1,"2832":1}}],["mouse",{"0":{"246":1,"316":1,"566":1,"1378":1,"1930":1,"1931":1,"1932":1,"1933":1,"1934":1,"1940":1,"1941":1,"1990":1,"1992":1,"1993":1,"1999":1,"2004":1,"2005":1,"2006":1,"2008":1,"2011":1,"2013":1,"2015":1,"2037":1,"2046":1,"2049":1,"2050":1,"2051":1,"2528":1,"2873":1},"1":{"1931":1,"1932":2,"1933":2,"1934":1,"1935":2,"1936":2,"1937":2,"1938":2,"1939":2,"1940":2,"1941":1,"1991":1,"1992":1,"1993":1,"1994":1,"1995":1,"1996":1,"1997":1,"2000":1,"2001":1,"2002":1,"2003":1,"2004":1,"2005":2,"2006":3,"2007":1,"2008":1,"2009":1,"2010":1,"2011":1,"2012":1,"2013":1,"2014":1,"2015":1,"2038":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2045":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1},"2":{"48":1,"74":3,"100":1,"112":7,"114":5,"133":1,"134":1,"149":1,"160":3,"175":5,"176":4,"190":6,"191":7,"211":2,"222":3,"231":1,"236":2,"246":3,"249":1,"266":2,"277":3,"285":2,"291":2,"294":1,"308":1,"316":2,"317":2,"320":1,"328":2,"339":3,"561":1,"564":1,"574":1,"575":4,"599":1,"1518":1,"1625":2,"1645":2,"1930":2,"1931":3,"1932":1,"1933":39,"1934":1,"1936":5,"1937":2,"1939":1,"1940":4,"1941":3,"1971":6,"1983":8,"1984":4,"1985":3,"1986":5,"1988":14,"1989":9,"1990":13,"1992":4,"1993":12,"1994":17,"1995":1,"1996":10,"1997":3,"1999":7,"2000":7,"2001":15,"2002":1,"2003":9,"2004":5,"2005":4,"2006":3,"2007":1,"2008":33,"2009":11,"2011":10,"2012":16,"2013":10,"2014":8,"2015":10,"2037":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2046":18,"2047":5,"2048":12,"2049":1,"2050":4,"2051":3,"2052":5,"2053":4,"2057":1,"2068":4,"2294":1,"2298":1,"2374":1,"2528":39,"2586":1,"2832":1,"2873":3,"2875":2,"2882":2,"2930":1,"2935":1}}],["motivations",{"2":{"2902":1}}],["motion",{"2":{"190":1,"191":1,"1939":1,"1968":1,"1983":3,"1985":7,"1986":1,"1999":1}}],["motions",{"2":{"175":1}}],["motors",{"2":{"1683":1,"1684":1}}],["motor",{"0":{"1683":1},"1":{"1684":1,"1685":1},"2":{"1679":1,"1683":1,"1684":2,"1685":2}}],["moky88",{"2":{"294":1}}],["moky",{"2":{"294":1}}],["momokai",{"2":{"266":1}}],["moment",{"2":{"211":2,"1786":5,"2650":1,"2653":1,"2795":1,"2925":1,"2939":1}}],["momentarily",{"2":{"73":1,"1422":4,"1938":1,"2321":2,"2523":2,"2912":1}}],["momentary",{"0":{"3":1,"2319":1},"2":{"199":1,"1353":1,"1422":1,"1612":5,"1690":2,"1766":1,"1779":3,"1789":2,"1791":1,"1937":8,"2304":4,"2320":1,"2539":4}}],["mojo75",{"2":{"253":2}}],["mojo68",{"2":{"253":2}}],["morgan65",{"2":{"211":2}}],["moreover",{"2":{"2261":1}}],["more",{"0":{"1767":1,"2417":1},"1":{"2418":1,"2419":1},"2":{"2":1,"6":2,"8":1,"10":2,"14":1,"16":1,"24":1,"46":1,"49":1,"76":1,"82":1,"93":1,"99":2,"107":1,"109":1,"111":1,"112":1,"114":6,"118":1,"133":2,"134":4,"149":6,"152":1,"153":2,"160":1,"166":1,"172":1,"174":1,"176":4,"179":1,"182":1,"190":3,"191":4,"194":2,"195":1,"196":1,"198":1,"199":6,"206":1,"211":6,"213":1,"222":2,"224":1,"228":2,"229":1,"231":1,"232":1,"236":3,"245":1,"247":1,"248":1,"249":1,"251":1,"265":1,"266":1,"288":2,"289":1,"294":1,"297":1,"298":1,"304":1,"306":1,"308":3,"315":1,"320":2,"331":1,"380":1,"396":1,"403":1,"417":2,"425":1,"426":1,"430":1,"466":1,"467":1,"468":1,"477":1,"505":1,"512":1,"514":1,"521":1,"529":2,"538":1,"540":1,"541":1,"555":1,"561":2,"565":1,"570":2,"574":2,"575":1,"599":1,"613":1,"615":1,"625":1,"626":3,"671":1,"674":1,"684":2,"685":2,"693":1,"694":1,"710":2,"712":1,"720":1,"752":1,"755":1,"762":1,"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1192":1,"1199":1,"1247":1,"1288":1,"1298":1,"1312":1,"1318":1,"1330":2,"1345":1,"1347":1,"1363":1,"1364":2,"1365":1,"1379":1,"1387":1,"1397":1,"1398":1,"1403":1,"1410":1,"1422":1,"1425":1,"1426":1,"1427":3,"1444":2,"1446":1,"1463":1,"1467":1,"1469":1,"1476":1,"1477":1,"1491":1,"1492":2,"1498":1,"1501":1,"1503":2,"1510":1,"1517":1,"1538":1,"1558":1,"1580":1,"1592":1,"1602":1,"1605":1,"1609":1,"1610":1,"1614":1,"1619":1,"1630":1,"1641":1,"1662":1,"1670":1,"1697":1,"1766":1,"1768":1,"1773":2,"1777":1,"1781":1,"1801":1,"1803":1,"1835":1,"1846":2,"1850":1,"1919":1,"1923":1,"1934":1,"1935":1,"1940":1,"1953":1,"1965":1,"1986":1,"1994":1,"1999":1,"2007":1,"2015":1,"2037":1,"2054":1,"2065":1,"2070":1,"2082":2,"2088":1,"2091":1,"2095":1,"2096":1,"2179":1,"2191":1,"2207":1,"2293":1,"2296":1,"2299":1,"2300":1,"2309":2,"2310":1,"2317":2,"2326":1,"2328":1,"2331":1,"2374":1,"2379":2,"2382":1,"2413":1,"2414":2,"2417":4,"2418":4,"2423":2,"2424":2,"2425":2,"2427":1,"2428":1,"2429":1,"2437":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2452":1,"2454":1,"2455":1,"2466":2,"2468":1,"2478":1,"2490":1,"2499":1,"2502":1,"2503":1,"2509":1,"2541":1,"2562":2,"2564":3,"2565":1,"2575":2,"2602":1,"2612":1,"2616":1,"2617":1,"2622":1,"2638":1,"2640":1,"2642":1,"2650":1,"2656":1,"2680":1,"2683":1,"2704":1,"2712":1,"2713":1,"2714":4,"2723":1,"2745":2,"2747":1,"2748":1,"2749":1,"2750":1,"2753":1,"2761":3,"2764":2,"2776":1,"2794":1,"2795":2,"2841":1,"2844":1,"2851":3,"2884":1,"2894":1,"2907":1,"2910":2,"2912":1,"2919":1,"2920":2,"2921":1,"2928":1,"2929":1,"2930":1,"2945":1,"2949":1}}],["mobile",{"2":{"149":1,"160":1}}],["monsgeek",{"2":{"2397":1}}],["monstargear",{"2":{"211":1}}],["mon",{"2":{"2304":1,"2539":1}}],["monitor",{"2":{"1939":1}}],["monitors",{"2":{"1647":1}}],["month",{"2":{"399":1,"2749":1}}],["months",{"2":{"251":1,"540":1,"2903":1}}],["montex",{"2":{"143":2,"149":1}}],["mono1bpp",{"2":{"2763":1}}],["mono16",{"2":{"2762":4}}],["mono2",{"2":{"2762":3,"2763":2}}],["mono256",{"2":{"2762":3}}],["mono4",{"2":{"2762":4}}],["monochrome",{"2":{"2760":6,"2763":1,"2764":3}}],["monolithic",{"2":{"2726":2}}],["mono",{"2":{"249":2,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1}}],["monokei",{"2":{"241":3,"249":1}}],["monksoffunk",{"2":{"149":1}}],["mona",{"2":{"102":3,"197":6}}],["movable",{"2":{"1738":1}}],["movements",{"2":{"1440":1,"1934":1,"1935":4,"1936":15,"1937":4,"1938":1,"1939":3,"1940":1,"2418":1}}],["movement",{"0":{"2053":1},"2":{"48":1,"74":1,"175":2,"246":1,"249":1,"328":1,"1934":5,"1935":4,"1936":5,"1937":5,"1939":2,"1940":1,"1968":5,"1990":3,"1993":2,"1994":1,"2003":1,"2014":1,"2040":1,"2046":1,"2053":1}}],["moved",{"2":{"43":1,"50":1,"56":1,"57":1,"67":1,"72":1,"86":1,"102":1,"114":1,"122":1,"143":1,"149":1,"159":1,"168":1,"181":1,"197":1,"198":1,"201":2,"204":1,"222":1,"341":1,"661":1,"1368":1,"1398":1,"2053":1,"2437":1,"2648":1,"2649":1,"2746":1,"2888":1}}],["moves",{"0":{"37":1},"2":{"399":1,"1741":1,"1934":2,"1954":2,"2180":1,"2290":2,"2309":1,"2563":1,"2746":1}}],["move",{"0":{"323":1},"2":{"21":1,"36":1,"37":1,"50":1,"72":1,"75":1,"94":1,"100":2,"113":6,"114":14,"133":7,"134":9,"149":58,"156":1,"160":11,"167":1,"176":6,"188":1,"191":7,"199":11,"211":38,"222":16,"236":6,"241":1,"249":12,"253":1,"255":2,"266":2,"270":1,"277":3,"281":1,"285":1,"294":2,"308":1,"328":1,"333":1,"447":1,"1428":1,"1431":1,"1492":1,"1675":1,"1707":1,"1711":1,"1712":2,"1713":1,"1735":1,"1737":1,"1873":1,"1874":1,"1875":1,"1876":1,"1899":1,"1900":1,"1901":1,"1902":1,"1925":2,"1930":1,"1934":1,"1935":1,"1936":3,"1939":4,"1940":2,"2115":1,"2116":1,"2117":1,"2118":1,"2153":1,"2154":1,"2155":1,"2156":1,"2226":1,"2309":1,"2377":2,"2428":1,"2431":1,"2462":1,"2516":2,"2527":2,"2588":1,"2612":1,"2630":1,"2746":2,"2795":1}}],["moving",{"0":{"16":1},"2":{"36":1,"37":1,"43":1,"111":1,"113":1,"191":1,"275":1,"294":1,"366":1,"512":1,"1423":1,"1802":1,"1938":1,"1953":1,"1954":2,"1964":1,"1976":1,"1985":1,"1993":1,"2048":1,"2085":3,"2290":2,"2425":1,"2428":1,"2576":1,"2748":1,"2894":1}}],["mosy",{"2":{"2423":1}}],["mosi",{"2":{"1247":2,"1248":5,"1294":1,"1299":2,"2483":1,"2485":1,"2487":2,"2489":1,"2491":2,"2493":2,"2495":2,"2668":1,"2702":1,"2763":2}}],["most",{"0":{"2888":1},"1":{"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"70":1,"118":1,"124":1,"131":1,"158":1,"182":2,"194":1,"214":1,"215":2,"221":1,"233":1,"234":1,"249":2,"251":1,"263":2,"370":1,"398":1,"491":1,"492":1,"493":1,"499":1,"512":1,"513":1,"514":1,"547":1,"557":1,"558":1,"561":2,"588":1,"614":1,"619":1,"628":1,"633":3,"634":1,"651":1,"669":1,"672":1,"683":2,"698":1,"754":1,"761":1,"1246":1,"1267":1,"1284":1,"1287":1,"1318":1,"1319":1,"1343":1,"1350":1,"1354":1,"1356":1,"1421":2,"1424":1,"1425":1,"1427":1,"1433":1,"1446":1,"1447":1,"1462":1,"1477":1,"1484":1,"1528":2,"1532":1,"1542":1,"1545":1,"1546":1,"1672":1,"1681":1,"1685":1,"1740":1,"1802":1,"1803":1,"1934":1,"1939":1,"1962":1,"1967":1,"1974":2,"1986":1,"2011":1,"2047":1,"2194":1,"2261":1,"2265":1,"2281":1,"2291":1,"2292":1,"2296":1,"2297":2,"2327":1,"2329":2,"2330":1,"2410":1,"2417":2,"2418":1,"2427":1,"2439":1,"2479":1,"2482":1,"2483":1,"2505":1,"2556":1,"2557":1,"2567":1,"2573":1,"2583":2,"2628":4,"2709":2,"2714":1,"2746":1,"2763":1,"2774":1,"2806":1,"2809":1,"2817":1,"2826":1,"2848":1,"2886":1,"2889":2,"2891":1,"2895":1,"2901":1,"2913":1,"2934":2,"2941":1}}],["mostly",{"2":{"8":1,"199":1,"436":1,"1343":1,"2261":1,"2499":1,"2678":1}}],["mosfet",{"2":{"14":2,"1545":2,"1558":2,"1681":1}}],["modu",{"2":{"1925":1,"2527":1}}],["modulation",{"2":{"1541":1,"1919":1,"1925":6,"1926":1,"2527":6}}],["modular",{"2":{"16":1}}],["modules",{"0":{"288":1,"298":1,"1626":1},"1":{"1627":1,"1628":1,"1629":1,"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1},"2":{"93":1,"288":5,"294":1,"298":1,"308":4,"328":1,"333":1,"538":2,"749":1,"750":1,"1626":3,"1627":9,"1628":6,"1629":1,"1633":1,"1638":1,"1697":2,"1943":2,"2283":1,"2374":1,"2439":1}}],["module",{"0":{"1627":1,"1628":1,"1629":1,"1630":1,"1633":1,"1635":1,"1636":1},"1":{"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1},"2":{"6":1,"288":1,"298":1,"308":1,"339":2,"487":1,"516":5,"519":1,"520":1,"529":2,"544":1,"627":12,"749":1,"750":1,"1359":1,"1627":3,"1628":8,"1629":1,"1630":11,"1633":2,"1635":1,"1636":1,"1637":2,"1638":22,"1697":1,"1980":2,"2037":3,"2038":1,"2283":1,"2762":1,"2763":1}}],["modd",{"2":{"1925":1,"2527":1}}],["modded",{"2":{"176":1,"1457":1,"2381":2}}],["modtaps",{"2":{"1364":1}}],["modifying",{"2":{"512":1,"540":2,"710":1,"1425":1,"1537":1,"2464":1,"2470":1,"2479":1}}],["modify",{"2":{"125":1,"185":1,"211":1,"221":1,"236":1,"540":1,"588":1,"764":2,"1248":2,"1269":1,"1364":1,"1447":1,"1467":1,"1487":1,"1648":1,"1841":1,"1988":2,"1989":2,"1993":1,"1994":1,"2179":1,"2187":1,"2189":1,"2300":1,"2470":1,"2603":1,"2727":1,"2733":1,"2746":1,"2750":1,"2831":1,"2909":1}}],["modifiable",{"2":{"1964":1}}],["modification",{"0":{"2208":1},"2":{"65":1,"538":1,"1356":1,"2085":1,"2178":1,"2949":2}}],["modifications",{"2":{"21":1,"344":3,"403":1,"514":1,"1349":1,"2412":1,"2683":2,"2711":1,"2744":1,"2747":1}}],["modifiers",{"0":{"1362":1,"1501":1,"1770":1,"1771":1,"1772":1,"1773":1,"1779":1,"1788":1,"2529":1,"2546":1},"1":{"1784":1,"1785":1,"1786":1},"2":{"99":1,"112":1,"160":1,"222":1,"562":1,"564":1,"683":1,"1362":3,"1364":15,"1367":2,"1422":2,"1423":5,"1451":1,"1453":1,"1473":1,"1501":3,"1517":1,"1518":1,"1602":1,"1617":3,"1765":1,"1766":4,"1770":3,"1772":1,"1776":1,"1781":7,"1782":4,"1784":5,"1785":1,"1787":1,"1849":1,"2073":1,"2096":1,"2259":1,"2554":1,"2575":1,"2576":2,"2578":1,"2650":2,"2880":1,"2925":1}}],["modifier",{"0":{"1352":1,"1353":1,"1363":1,"1364":1,"1610":1,"1796":1,"2831":1,"2834":1},"1":{"1365":1,"1366":1,"1367":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1},"2":{"74":1,"99":1,"194":2,"211":1,"231":4,"289":1,"320":5,"570":1,"1353":3,"1362":5,"1363":3,"1364":15,"1366":1,"1367":4,"1422":1,"1423":1,"1447":2,"1448":2,"1451":1,"1517":1,"1518":1,"1529":1,"1532":2,"1610":1,"1663":1,"1690":2,"1743":1,"1765":1,"1766":3,"1770":1,"1774":1,"1777":1,"1779":1,"1781":7,"1782":2,"1784":3,"1785":2,"1786":2,"1787":2,"1788":4,"1795":1,"1847":2,"1852":1,"1999":1,"2072":2,"2075":1,"2083":2,"2091":1,"2096":1,"2259":8,"2260":7,"2276":2,"2529":1,"2575":2,"2576":1,"2651":1,"2652":2,"2834":1,"2880":1,"2912":1,"2925":1,"2928":3,"2930":7}}],["modified",{"2":{"2":1,"8":1,"74":1,"149":1,"221":2,"512":1,"533":1,"1214":1,"1335":1,"1428":1,"1786":1,"1938":1,"2074":1,"2318":1,"2393":1,"2398":1,"2498":1,"2628":1,"2739":1,"2744":1,"2746":1,"2748":1,"2912":1,"2919":1,"2949":1}}],["modifies",{"2":{"0":1,"9":1,"19":1,"30":1,"33":1,"39":1,"52":1,"297":1,"312":1,"399":1,"2085":2,"2922":1,"2949":1}}],["moderate",{"2":{"2434":1}}],["modern",{"2":{"1200":1,"1350":1,"1354":1,"1593":1,"2329":1,"2418":1,"2425":1,"2432":1,"2436":1}}],["modernize",{"2":{"222":1,"236":2}}],["modernise",{"2":{"222":2}}],["modemmanager",{"2":{"1316":4}}],["mode=guest",{"2":{"684":1}}],["modelled",{"2":{"2277":1}}],["models",{"2":{"1413":1}}],["modelh",{"2":{"217":2,"308":1}}],["modelm101",{"2":{"207":2}}],["modelm",{"0":{"204":1},"2":{"149":1,"207":3}}],["model",{"2":{"125":1,"143":2,"149":1,"185":1,"204":2,"207":12,"217":1,"222":2,"1970":1,"2746":1,"2947":1}}],["model01",{"2":{"37":2}}],["modes",{"0":{"124":1,"2331":1,"2913":1},"1":{"2914":1,"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1},"2":{"114":1,"124":2,"134":1,"186":2,"235":1,"1205":1,"1490":2,"1495":1,"1849":1,"1934":2,"1974":1,"2037":1,"2085":2,"2181":2,"2183":1,"2184":2,"2187":2,"2278":1,"2327":5,"2331":6,"2332":2,"2512":1,"2532":2,"2540":2,"2792":1,"2913":2,"2914":1}}],["mode",{"0":{"186":1,"488":1,"1251":1,"1317":1,"1490":1,"1688":1,"1869":2,"1871":2,"1877":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1975":1,"1976":1,"1977":1,"2111":2,"2113":2,"2119":1,"2199":1,"2200":1,"2334":1,"2336":2,"2338":1,"2339":1,"2340":2,"2342":2,"2612":1,"2918":1},"1":{"1252":1,"1253":1,"1491":1,"1492":1,"1870":2,"1872":2,"1878":1,"2112":2,"2114":2,"2120":1,"2335":1,"2337":2,"2341":2,"2343":2},"2":{"49":3,"93":1,"118":2,"134":1,"160":2,"175":1,"176":8,"183":4,"190":1,"191":2,"211":3,"230":1,"231":1,"240":2,"266":1,"317":1,"488":1,"641":3,"693":1,"710":4,"711":1,"713":1,"721":1,"726":2,"764":4,"768":2,"797":2,"1197":1,"1198":1,"1200":2,"1201":2,"1211":1,"1212":1,"1213":1,"1248":8,"1252":3,"1265":1,"1269":8,"1297":2,"1299":2,"1303":1,"1316":1,"1322":2,"1327":2,"1348":2,"1361":1,"1375":1,"1376":2,"1377":2,"1417":10,"1483":1,"1484":1,"1485":7,"1486":8,"1488":1,"1490":13,"1491":1,"1492":2,"1493":3,"1495":7,"1550":1,"1556":1,"1635":1,"1636":1,"1680":3,"1681":2,"1687":3,"1688":1,"1697":1,"1848":2,"1850":2,"1851":5,"1852":4,"1870":1,"1872":1,"1905":1,"1935":2,"1936":3,"1937":3,"1938":5,"1939":6,"1940":2,"1948":1,"1951":2,"1953":1,"1967":2,"1974":10,"1976":2,"1977":2,"1995":1,"1996":7,"2046":5,"2084":2,"2087":3,"2088":2,"2090":5,"2091":4,"2097":1,"2112":1,"2114":1,"2165":1,"2181":22,"2182":3,"2183":15,"2184":10,"2185":1,"2199":9,"2204":2,"2273":1,"2276":1,"2293":1,"2294":1,"2297":4,"2300":8,"2327":4,"2328":6,"2331":22,"2332":8,"2334":1,"2335":1,"2336":1,"2337":2,"2338":1,"2339":1,"2340":1,"2341":2,"2342":1,"2343":2,"2344":1,"2345":1,"2346":1,"2347":1,"2383":1,"2388":1,"2390":1,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2410":1,"2418":1,"2499":1,"2511":3,"2512":7,"2525":2,"2532":22,"2533":2,"2540":8,"2567":21,"2612":3,"2617":1,"2667":1,"2685":2,"2691":1,"2746":1,"2752":3,"2763":11,"2852":1,"2891":2,"2913":10,"2914":1,"2919":4,"2920":6}}],["mods",{"0":{"320":1,"1459":1,"1460":1,"1772":1,"1773":1,"2072":1,"2074":1,"2279":1},"1":{"2073":1,"2074":1,"2075":1,"2280":1},"2":{"38":5,"63":2,"149":1,"191":1,"199":2,"222":3,"266":1,"289":1,"294":1,"328":1,"339":1,"379":1,"561":1,"564":1,"570":2,"1362":4,"1364":40,"1366":1,"1367":3,"1451":1,"1458":1,"1459":1,"1460":1,"1472":5,"1490":1,"1517":2,"1532":1,"1533":5,"1595":1,"1600":2,"1610":2,"1617":5,"1618":2,"1625":1,"1772":1,"1774":1,"1779":2,"1781":5,"1782":2,"1784":2,"1785":2,"1788":5,"1789":1,"1849":3,"2065":3,"2068":1,"2069":6,"2070":1,"2071":1,"2072":1,"2073":1,"2074":7,"2075":4,"2077":1,"2078":5,"2079":5,"2085":3,"2259":1,"2276":1,"2318":2,"2381":6,"2523":2,"2561":2,"2576":2,"2651":3,"2652":30,"2746":1,"2871":1,"2878":1,"2894":1,"2911":5,"2919":1,"2922":1,"2923":1,"2925":1,"2928":4,"2930":4,"2931":1}}],["mod",{"0":{"194":1,"206":1,"320":1,"1370":1,"1690":1,"1795":1,"2318":1,"2530":1,"2575":1,"2577":1},"1":{"2576":1,"2577":1,"2578":2,"2579":2,"2580":2,"2581":1},"2":{"22":2,"38":11,"98":1,"112":2,"134":1,"176":1,"191":1,"194":17,"199":3,"203":2,"206":2,"211":4,"289":1,"294":1,"297":1,"317":2,"320":2,"328":2,"379":1,"561":1,"564":5,"1364":29,"1366":1,"1367":7,"1370":1,"1422":5,"1423":8,"1448":1,"1451":1,"1457":1,"1472":6,"1517":1,"1518":1,"1519":1,"1532":1,"1533":10,"1594":3,"1595":1,"1597":1,"1600":2,"1603":1,"1612":5,"1617":2,"1618":2,"1625":1,"1690":4,"1743":2,"1765":1,"1774":2,"1776":9,"1777":2,"1779":7,"1781":4,"1782":3,"1788":18,"1789":2,"1795":2,"1803":1,"1925":1,"1999":6,"2000":1,"2068":11,"2069":2,"2074":2,"2075":1,"2259":13,"2260":2,"2280":1,"2318":2,"2381":5,"2523":4,"2527":1,"2530":3,"2535":2,"2554":1,"2561":1,"2575":17,"2576":1,"2578":1,"2581":1,"2650":1,"2651":7,"2652":9,"2746":1,"2834":2,"2870":1,"2890":1,"2911":22,"2912":2,"2914":1,"2918":1,"2919":2,"2922":3,"2923":2,"2925":2,"2928":19,"2930":7,"2948":1}}],["mo",{"0":{"3":1},"2":{"294":1,"375":5,"589":2,"591":2,"632":1,"1343":1,"1422":4,"1605":1,"1612":1,"1663":1,"1690":1,"1789":2,"1791":1,"2000":1,"2319":3,"2320":1,"2523":3,"2563":2,"2564":2,"2651":1,"2746":2}}],["mail",{"2":{"2510":2,"2549":2}}],["mainstream",{"2":{"1786":1,"2626":1}}],["mainly",{"2":{"198":1,"201":1,"213":1,"224":1,"238":2,"340":1,"1291":1,"1364":1}}],["maintains",{"2":{"308":1,"618":1,"668":1,"1343":1,"1525":1,"2384":1,"2391":1,"2477":1,"2593":1,"2620":1,"2741":1}}],["maintained",{"2":{"262":1,"293":1,"305":1,"314":1,"618":2,"669":1,"1343":2,"2717":1,"2852":1}}],["maintainers",{"0":{"382":1},"2":{"124":1,"173":1,"204":1,"265":1,"344":3,"380":1,"403":3,"588":1,"609":1,"1630":1,"1850":1,"2088":1,"2566":1,"2567":1,"2569":1,"2627":1,"2713":1,"2902":1}}],["maintainer",{"2":{"70":1,"111":1,"613":3,"618":1,"668":1,"684":1,"1403":1,"1407":1,"1630":2,"2714":2,"2717":1,"2746":1,"2795":1,"2851":1,"2852":2}}],["maintainability",{"2":{"262":1,"516":1,"527":1}}],["maintain",{"2":{"70":1,"114":1,"228":1,"488":1,"521":1,"620":1,"665":1,"1472":1,"1485":1,"1839":1,"2418":2,"2603":2,"2707":1,"2902":1}}],["maintaining",{"2":{"70":1,"2085":1,"2447":1,"2908":1}}],["maintenance",{"2":{"24":1,"198":1,"213":1,"236":1,"238":1,"251":1,"268":1,"285":1,"665":2,"2707":1,"2746":1}}],["main",{"0":{"2935":1},"1":{"2936":1,"2937":1,"2938":1,"2939":1,"2940":1},"2":{"22":1,"49":1,"50":1,"65":1,"112":1,"113":1,"114":1,"191":1,"199":1,"228":2,"236":1,"294":1,"368":1,"369":1,"385":1,"398":1,"487":1,"491":1,"555":1,"619":1,"633":1,"1296":1,"1367":1,"1382":2,"1493":1,"1551":1,"1954":1,"2059":1,"2276":2,"2290":1,"2310":1,"2406":1,"2462":2,"2471":1,"2501":1,"2560":1,"2562":1,"2573":1,"2600":2,"2603":1,"2607":2,"2612":1,"2746":1,"2880":1,"2902":1,"2922":1,"2934":6,"2935":2}}],["male",{"2":{"2430":1}}],["malicious",{"2":{"312":1}}],["ma",{"2":{"561":1,"2882":1}}],["magnet",{"2":{"1685":1,"2425":1}}],["magenta",{"2":{"494":1,"1417":1,"2089":2,"2205":2}}],["magically",{"2":{"2567":1}}],["magic+n",{"2":{"2418":1}}],["magic+d",{"2":{"1333":1,"2418":1}}],["magic",{"0":{"2460":1,"2526":1,"2552":1},"2":{"114":1,"149":1,"199":4,"226":2,"231":3,"236":2,"328":2,"536":1,"561":1,"564":2,"574":2,"710":1,"1333":1,"1349":1,"1377":1,"1486":4,"1592":4,"1622":2,"1623":2,"1625":31,"2418":3,"2460":1,"2526":36,"2552":37,"2683":5,"2746":1,"2779":1,"2787":1,"2889":3,"2940":1}}],["making",{"0":{"1437":1,"2640":1},"1":{"1438":1,"1439":1},"2":{"130":1,"194":2,"288":1,"328":1,"344":3,"403":1,"429":1,"615":1,"618":1,"1376":1,"1410":1,"1414":1,"1472":1,"1517":1,"1626":1,"2265":1,"2384":2,"2391":2,"2429":1,"2561":1,"2567":1,"2572":1,"2652":2,"2764":2,"2895":1,"2935":1,"2937":2}}],["makemusic",{"2":{"2891":1}}],["makemidi",{"2":{"1919":1}}],["makequantum",{"2":{"2754":1,"2760":1,"2763":11}}],["makeucis",{"2":{"2330":1}}],["makeunicodemap",{"2":{"2329":1}}],["makeunicode",{"2":{"2326":1,"2329":1}}],["makeuart",{"2":{"1267":1}}],["maketri",{"2":{"2320":1}}],["makeps2",{"2":{"2040":1,"2041":1,"2043":1}}],["makeprogrammable",{"2":{"2017":1}}],["makepointing",{"2":{"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":2,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1984":1}}],["makepin",{"2":{"306":1,"315":1}}],["makeos",{"2":{"1957":1}}],["makeoled",{"2":{"1944":1,"1945":2}}],["makelto",{"2":{"2889":1}}],["makeled",{"2":{"1845":1}}],["makeleader",{"2":{"1797":1}}],["makelayer",{"2":{"1790":1}}],["makejoystick",{"2":{"1739":2}}],["makehd44780",{"2":{"1698":1}}],["makehaptic",{"2":{"1678":1}}],["makeencoder",{"2":{"1665":1,"1667":1}}],["makedigitizer",{"2":{"1646":1}}],["makedip",{"2":{"1640":1}}],["makeboard",{"2":{"2703":1}}],["makebootmagic",{"2":{"1589":1}}],["makebluetooth",{"2":{"2376":1}}],["makebacklight",{"2":{"1542":1,"1548":1,"1549":1,"1550":1,"1551":1}}],["makebattery",{"2":{"742":1,"744":1,"1578":1}}],["makeifdef",{"2":{"1464":1}}],["makeifeq",{"2":{"1464":1,"1471":1,"1472":1}}],["makei2c",{"2":{"761":1}}],["makews2812",{"2":{"1284":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1}}],["makeconsole",{"2":{"1962":1,"2889":1}}],["makecommand",{"2":{"1595":1,"1623":1,"2258":1}}],["makecommon",{"2":{"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1}}],["makecaps",{"2":{"1594":1}}],["makecustom",{"2":{"624":1,"625":1}}],["makeavr",{"2":{"2889":1}}],["makeautocorrect",{"2":{"1526":1}}],["makeaudio",{"2":{"715":1}}],["makeapa102",{"2":{"698":1}}],["makeanalog",{"2":{"686":1}}],["makergblight",{"2":{"2179":2}}],["makergb",{"2":{"2081":1}}],["makeraw",{"2":{"2055":1}}],["makers",{"2":{"555":1,"2926":1}}],["makerepeat",{"2":{"202":1,"2066":1}}],["maker",{"0":{"1311":1},"1":{"1312":1},"2":{"114":1,"1311":2,"1312":1,"1313":2,"2450":1,"2452":1}}],["makefileaudio",{"2":{"1405":1}}],["makefileconvert",{"2":{"1390":1}}],["makefileifeq",{"2":{"354":1}}],["makefiles",{"2":{"222":2,"618":1}}],["makefile",{"0":{"2419":1},"2":{"49":1,"133":2,"134":2,"149":3,"198":1,"199":2,"333":1,"353":1,"393":1,"571":1,"1332":1,"1376":1,"1377":1,"1387":1,"1632":1,"2417":1,"2662":1,"2683":1}}],["makesteno",{"2":{"2294":1,"2295":1,"2296":1,"2297":1}}],["makest7565",{"2":{"2284":1}}],["makespace",{"2":{"2889":1}}],["makesplit",{"2":{"2268":2}}],["makespi",{"2":{"1246":1}}],["makesequencer",{"2":{"2250":1}}],["makesend",{"2":{"2220":1}}],["makesecure",{"2":{"2215":1}}],["makeserial",{"2":{"1195":1,"1198":2,"1201":2}}],["makesrc",{"2":{"623":1,"2764":2}}],["makes",{"2":{"17":1,"123":1,"320":1,"425":1,"512":1,"540":1,"555":1,"564":1,"572":1,"1343":1,"1366":1,"1519":1,"1593":1,"1610":1,"1935":2,"1936":1,"1939":1,"1956":1,"1968":1,"2008":1,"2011":1,"2068":1,"2072":1,"2091":1,"2275":1,"2378":1,"2405":1,"2455":1,"2466":1,"2564":1,"2567":1,"2573":1,"2678":1,"2680":1,"2745":1,"2764":1,"2844":1,"2919":2,"2920":1,"2930":1}}],["make",{"0":{"467":1,"613":1,"1347":1,"1770":1,"1771":1,"1772":1,"1773":1,"2385":1,"2387":1,"2392":1,"2394":1,"2399":1,"2401":1,"2403":1,"2417":1,"2479":1,"2765":1,"2827":1},"1":{"2418":1,"2419":1,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1},"2":{"2":1,"10":1,"18":4,"21":1,"24":1,"31":1,"36":2,"49":2,"55":1,"65":2,"70":1,"76":1,"94":2,"107":1,"114":7,"119":1,"131":1,"133":2,"134":4,"149":2,"160":1,"175":1,"176":8,"189":1,"191":2,"199":3,"211":5,"236":2,"249":2,"265":1,"279":1,"294":1,"339":1,"367":1,"384":1,"393":1,"396":1,"417":1,"422":2,"429":6,"455":2,"465":1,"469":3,"491":1,"494":3,"514":2,"525":1,"528":1,"529":1,"533":1,"537":1,"538":1,"563":1,"567":1,"571":1,"588":4,"589":1,"596":2,"607":1,"609":1,"613":2,"615":9,"619":3,"620":1,"640":1,"647":1,"665":1,"668":1,"675":1,"681":1,"684":5,"710":1,"711":1,"717":1,"718":1,"721":1,"1314":1,"1315":2,"1317":2,"1319":1,"1320":1,"1338":1,"1340":1,"1359":1,"1363":1,"1367":1,"1375":1,"1376":2,"1405":1,"1409":1,"1417":2,"1422":1,"1423":1,"1435":1,"1436":2,"1462":1,"1463":2,"1468":2,"1472":5,"1473":2,"1493":2,"1517":2,"1528":1,"1609":1,"1615":1,"1618":1,"1625":11,"1662":1,"1766":1,"1770":1,"1774":2,"1776":6,"1777":2,"1781":1,"1782":1,"1791":2,"1802":1,"1855":1,"1935":3,"1939":2,"1995":1,"1999":1,"2037":1,"2075":1,"2094":1,"2188":1,"2206":1,"2208":1,"2258":1,"2265":1,"2278":1,"2293":2,"2317":1,"2326":1,"2330":1,"2383":3,"2384":2,"2386":2,"2388":2,"2389":2,"2390":2,"2391":4,"2393":2,"2395":2,"2398":2,"2400":2,"2402":2,"2404":2,"2407":1,"2410":1,"2411":1,"2414":1,"2417":23,"2418":1,"2419":1,"2428":2,"2429":1,"2430":1,"2431":1,"2434":2,"2447":1,"2449":1,"2450":4,"2461":2,"2501":1,"2503":1,"2508":1,"2511":1,"2561":1,"2569":1,"2575":1,"2583":1,"2585":1,"2586":2,"2591":1,"2598":1,"2617":1,"2619":1,"2620":1,"2632":1,"2634":2,"2635":1,"2637":1,"2640":6,"2663":2,"2674":1,"2680":1,"2691":1,"2748":1,"2752":2,"2756":1,"2762":3,"2763":27,"2764":1,"2794":1,"2795":1,"2827":1,"2886":1,"2889":1,"2907":1,"2912":2,"2938":1,"2944":1,"2945":4,"2946":1,"2949":2}}],["majority",{"2":{"156":1,"166":1,"245":1,"248":1,"1203":1,"1336":1,"1589":1,"1591":1,"2910":1}}],["major",{"2":{"116":1,"199":1,"609":1,"1351":1,"1485":2,"1486":3,"1490":2,"2405":1,"2730":2,"2731":1}}],["macs",{"2":{"1961":1}}],["macca",{"2":{"675":1}}],["mac",{"0":{"1357":1,"1358":1,"1361":1,"1385":1},"1":{"1386":1},"2":{"266":1,"1359":1,"1361":1,"2327":1,"2328":1,"2332":1,"2344":1,"2345":1,"2346":1,"2540":1,"2887":18}}],["machines",{"2":{"1205":1,"1961":1,"2294":1}}],["machine",{"2":{"263":1,"384":1,"385":1,"613":1,"1292":1,"2249":1,"2292":1,"2294":1,"2298":2,"2331":1,"2407":1,"2409":1,"2410":1,"2604":1,"2605":1,"2607":1,"2811":1}}],["mach80",{"2":{"134":1}}],["macos",{"0":{"1356":1,"1777":1,"2409":1},"2":{"114":1,"149":1,"158":1,"176":1,"199":1,"236":1,"266":1,"294":1,"339":1,"564":2,"1326":1,"1351":2,"1455":1,"1675":1,"1676":1,"1777":3,"1784":1,"1957":1,"1958":1,"1961":1,"2016":1,"2057":1,"2327":1,"2328":1,"2331":3,"2332":2,"2344":1,"2345":1,"2346":1,"2400":1,"2402":1,"2404":1,"2407":1,"2409":1,"2502":1,"2506":1,"2510":3,"2540":2,"2545":1,"2548":1,"2549":1,"2591":1,"2613":1,"2614":1,"2619":1,"2627":1,"2682":2,"2683":2,"2717":1,"2887":11}}],["macro2",{"2":{"1471":1}}],["macro30",{"2":{"2016":1}}],["macro3",{"2":{"241":2,"249":1}}],["macro1",{"2":{"241":2,"1471":1}}],["macro0",{"2":{"199":1}}],["macropad",{"2":{"120":1,"176":3,"211":1,"236":1,"328":1,"339":2,"1441":1,"2885":1}}],["macros=",{"2":{"2417":2}}],["macros",{"0":{"17":1,"120":1,"797":1,"1440":1,"1441":1,"1445":1,"1447":1,"1472":1,"1661":2,"2518":1,"2721":1},"1":{"1441":1,"1442":2,"1443":2,"1444":2,"1445":1,"1446":2,"1447":2,"1448":2,"1449":2,"1450":2,"1451":2,"1452":2,"1453":2,"1454":2,"1455":2,"1456":2,"1457":2,"1458":2,"1459":2,"1460":2,"1461":2,"1462":2,"1662":2,"1663":2,"1664":2},"2":{"16":1,"17":1,"38":1,"50":1,"89":1,"114":1,"120":5,"134":2,"140":1,"176":2,"191":3,"196":1,"201":1,"211":2,"236":2,"249":1,"266":3,"277":1,"328":1,"375":1,"447":1,"513":1,"626":1,"797":1,"1365":1,"1428":1,"1431":2,"1440":3,"1441":4,"1442":1,"1446":1,"1448":1,"1451":1,"1471":7,"1472":3,"1605":1,"1620":2,"1622":2,"1661":5,"1662":2,"1663":1,"1742":1,"1781":1,"1795":1,"2071":1,"2076":1,"2077":1,"2079":1,"2222":1,"2417":2,"2518":1,"2746":4,"2794":3,"2856":1,"2889":1,"2907":3,"2937":1}}],["macro",{"0":{"27":1,"140":1,"1443":1,"1451":1,"1663":1,"2269":1,"2813":1,"2829":1},"1":{"1444":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1},"2":{"3":1,"7":1,"15":1,"27":1,"50":1,"75":1,"89":1,"114":3,"120":8,"134":1,"140":2,"149":2,"160":2,"188":2,"191":4,"199":3,"211":75,"222":3,"231":3,"236":1,"249":1,"255":2,"257":1,"258":1,"259":1,"277":2,"294":1,"333":1,"375":2,"588":2,"589":1,"629":1,"797":1,"799":1,"1365":1,"1410":1,"1427":1,"1439":1,"1441":4,"1443":2,"1444":1,"1446":9,"1451":3,"1462":1,"1471":2,"1472":1,"1492":1,"1624":1,"1661":22,"1662":14,"1663":6,"1664":14,"1686":1,"1786":1,"1850":2,"1855":1,"2016":1,"2071":3,"2076":7,"2077":6,"2088":2,"2094":1,"2189":2,"2194":1,"2206":1,"2219":1,"2222":1,"2247":1,"2248":1,"2297":1,"2309":3,"2317":1,"2331":1,"2453":1,"2454":1,"2518":10,"2556":1,"2563":3,"2575":1,"2651":1,"2721":3,"2746":2,"2772":2,"2774":2,"2794":1,"2795":1,"2796":2,"2813":2,"2829":1,"2856":1,"2912":3,"2926":1,"2937":6,"2938":2,"2940":1}}],["max660",{"2":{"1697":1}}],["maxfitlerouput",{"2":{"1528":1}}],["maxing",{"2":{"564":1}}],["maximus",{"2":{"222":1}}],["maximum",{"2":{"28":1,"166":2,"429":2,"561":2,"565":1,"570":2,"660":1,"724":1,"826":1,"855":1,"887":1,"919":1,"926":1,"954":1,"960":1,"988":1,"994":1,"1022":1,"1028":1,"1056":1,"1062":1,"1090":1,"1096":1,"1124":1,"1130":1,"1158":1,"1164":1,"1214":1,"1376":1,"1410":1,"1544":3,"1550":1,"1594":1,"1740":1,"1742":1,"1749":1,"1846":2,"1852":3,"1934":3,"1935":5,"1936":2,"1938":2,"1939":2,"1954":2,"1968":1,"1971":5,"1975":2,"2082":2,"2091":4,"2182":1,"2185":1,"2189":1,"2201":6,"2275":2,"2277":1,"2278":2,"2290":2,"2309":1,"2318":1,"2761":3,"2763":11,"2764":1,"2778":1,"2779":1,"2787":1,"2857":1,"2871":1,"2877":2,"2878":1,"2882":1,"2921":1}}],["max",{"0":{"1912":1,"1915":1,"2172":1,"2175":1},"2":{"112":4,"134":1,"160":1,"166":1,"176":1,"191":1,"194":1,"211":2,"231":1,"308":1,"462":1,"561":1,"565":1,"566":2,"660":2,"719":4,"720":4,"726":2,"727":1,"1488":3,"1493":2,"1527":1,"1533":8,"1543":1,"1612":4,"1681":1,"1740":3,"1749":1,"1845":1,"1849":1,"1850":6,"1855":1,"1913":1,"1916":1,"1935":7,"1939":4,"1954":6,"1968":3,"2003":1,"2081":1,"2085":1,"2088":6,"2094":1,"2095":6,"2096":3,"2173":1,"2176":1,"2182":1,"2185":1,"2189":2,"2275":2,"2290":6,"2300":2,"2309":2,"2319":1,"2330":1,"2381":6,"2382":1,"2454":3,"2515":1,"2857":2,"2871":2,"2873":2,"2877":3,"2878":2,"2882":1,"2911":3,"2949":1}}],["maps",{"2":{"344":1,"666":1,"1357":1,"1490":1,"1492":1,"1952":1,"2884":1,"2937":1}}],["mapped",{"2":{"182":1,"209":2,"561":1,"684":1,"685":1,"729":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1392":2,"1396":2,"1407":1,"1408":1,"1522":3,"1546":1,"1675":1,"2222":1,"2471":1,"2474":1,"2764":3,"2782":3,"2823":1,"2918":2,"2919":2,"2920":1}}],["mappings",{"2":{"191":1,"211":1,"236":2,"669":2,"1956":1,"2746":1}}],["mapping",{"0":{"154":1,"247":1,"669":1,"729":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1933":1,"2305":1},"1":{"670":1,"671":1,"2306":1},"2":{"49":1,"114":1,"149":1,"154":1,"160":2,"191":6,"209":1,"211":1,"231":1,"236":1,"247":2,"266":1,"307":1,"344":1,"666":1,"669":5,"671":1,"672":1,"1361":1,"1407":1,"1640":2,"1667":3,"1952":2,"2305":1,"2329":2,"2330":4,"2418":2,"2471":1,"2474":1,"2563":1,"2869":1,"2886":1,"2919":1,"2920":1}}],["maple",{"2":{"143":9,"149":1,"181":2,"270":2,"277":1,"317":1,"713":1,"2505":1}}],["map",{"0":{"1492":1,"1640":1,"1667":1,"2937":1},"2":{"76":1,"134":1,"160":1,"176":2,"191":1,"199":2,"201":3,"209":1,"211":6,"218":1,"222":2,"247":2,"249":1,"277":1,"307":5,"328":1,"339":1,"1376":1,"1492":4,"1521":1,"1640":3,"1647":1,"1667":5,"1668":1,"1931":1,"1933":1,"1952":2,"1953":1,"1968":1,"2206":3,"2207":2,"2301":2,"2303":1,"2305":1,"2329":4,"2330":3,"2332":1,"2351":1,"2352":1,"2353":1,"2354":1,"2355":1,"2357":1,"2358":1,"2418":1,"2540":1,"2746":2,"2794":1,"2877":1,"2937":2,"2938":2,"2940":2}}],["manjaro",{"2":{"2593":1,"2626":1}}],["manipulating",{"0":{"1990":1},"1":{"1991":1,"1992":1,"1993":1,"1994":1,"1995":1,"1996":1,"1997":1},"2":{"1450":1,"2604":1}}],["manipulation",{"2":{"243":1,"331":1,"396":1,"639":1,"1205":1}}],["manipulations",{"2":{"64":1}}],["manipulate",{"2":{"1428":1,"1536":1,"1592":1,"1599":1,"1793":1,"1990":1,"1995":1,"2306":1}}],["man",{"2":{"1315":1,"2502":1}}],["manner",{"2":{"561":2,"570":1,"1622":1,"1851":1,"2090":1}}],["mango",{"2":{"226":1,"236":1}}],["mandatory",{"2":{"201":2,"2746":1}}],["managed",{"2":{"1343":1}}],["management",{"0":{"1622":1},"2":{"1343":1,"1381":1,"1954":1,"2290":1}}],["manager",{"0":{"386":1},"2":{"386":1,"420":1,"711":1,"712":1,"713":2,"1381":1,"2057":1,"2502":1,"2506":1,"2582":1,"2612":1,"2626":1,"2676":1}}],["manageable",{"2":{"251":1,"540":1}}],["manage",{"2":{"182":1,"613":1,"655":1,"1367":1}}],["manual",{"0":{"2691":1},"2":{"149":1,"160":1,"234":1,"249":2,"1300":1,"1315":1}}],["manually",{"2":{"134":1,"234":1,"244":1,"396":1,"513":1,"580":1,"655":1,"1318":1,"1535":1,"1627":1,"1769":1,"1841":1,"1952":1,"1954":2,"1965":1,"1990":1,"2273":1,"2290":2,"2327":1,"2407":2,"2578":1,"2607":1,"2621":1,"2626":1,"2634":1,"2659":1,"2746":1,"2760":1,"2764":2,"2911":1,"2919":1,"2949":1}}],["manufacture",{"2":{"2414":1}}],["manufacturers",{"2":{"749":1,"1203":1,"1204":1}}],["manufacturer",{"2":{"70":3,"76":1,"111":1,"169":2,"184":2,"191":4,"213":1,"389":1,"561":1,"596":1,"746":1,"2059":3,"2384":1,"2391":1,"2567":1,"2569":1,"2717":3,"2745":1,"2746":1,"2851":1,"2852":3}}],["manuform",{"2":{"114":3,"149":2,"211":1,"217":2,"222":8,"226":1,"236":1,"308":1,"2425":1}}],["manyboard",{"2":{"114":1}}],["many",{"2":{"30":1,"198":1,"265":1,"435":1,"489":1,"504":1,"538":1,"564":2,"637":1,"657":1,"661":1,"719":2,"1283":1,"1332":1,"1368":1,"1409":2,"1455":1,"1492":1,"1497":1,"1503":1,"1517":1,"1541":1,"1595":1,"1665":1,"1769":1,"1774":1,"1923":1,"1939":1,"1949":1,"1986":1,"2054":1,"2189":1,"2261":1,"2278":1,"2279":1,"2288":1,"2292":1,"2296":1,"2309":2,"2318":1,"2319":1,"2329":1,"2379":3,"2382":1,"2383":1,"2417":2,"2422":1,"2435":1,"2455":1,"2503":2,"2564":1,"2569":1,"2573":1,"2589":1,"2591":1,"2618":1,"2619":1,"2626":1,"2639":1,"2640":1,"2653":2,"2673":3,"2716":1,"2746":1,"2764":1,"2814":1,"2843":1,"2869":1,"2884":1,"2886":1,"2901":1,"2932":1,"2936":2,"2941":3,"2948":1,"2949":1}}],["maarten",{"0":{"57":1}}],["maartenwut",{"0":{"57":1},"2":{"57":23}}],["mario",{"2":{"1804":1}}],["mary",{"2":{"1673":2}}],["mar",{"2":{"55":1}}],["marketing",{"2":{"2567":4}}],["marked",{"2":{"716":1,"1213":1,"1553":1,"1652":1,"1750":1,"1849":1,"2499":1,"2634":1,"2852":1}}],["marker",{"2":{"352":1,"2504":1,"2792":8}}],["markers",{"2":{"266":22}}],["markdown",{"2":{"340":2,"403":1,"521":1,"676":2,"681":1,"1433":1,"2680":2}}],["mark",{"2":{"48":1,"176":1,"191":1,"234":1,"236":1,"561":1,"2369":1,"2634":1,"2932":1}}],["marksard",{"2":{"143":3,"149":2}}],["marks",{"2":{"0":1,"2634":2}}],["matias",{"2":{"2421":1}}],["materials",{"2":{"2425":1,"2429":1}}],["material",{"2":{"2422":1,"2567":1}}],["mate",{"2":{"2374":1}}],["math",{"2":{"528":1,"1968":1}}],["matt",{"2":{"2944":1}}],["matte",{"2":{"2428":1}}],["matters",{"2":{"2189":1,"2564":1}}],["matter",{"2":{"194":1,"615":1,"1470":1,"1643":1,"2429":1,"2564":1,"2618":1,"2734":1,"2794":1}}],["matt3o",{"2":{"2425":2,"2436":1}}],["matthewdias",{"2":{"143":4,"149":2}}],["matrices",{"2":{"176":1,"1589":1,"1844":1,"2080":1,"2278":1,"2444":1,"2466":2}}],["matrix=true",{"2":{"1322":1}}],["matrix==true",{"2":{"433":1}}],["matrix",{"0":{"80":1,"84":1,"124":1,"214":1,"218":1,"327":1,"622":1,"637":1,"638":1,"639":1,"643":1,"644":1,"645":1,"1329":1,"1379":1,"1635":1,"1636":1,"1644":1,"1844":1,"1849":1,"1850":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1865":1,"1867":1,"1869":1,"1871":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1891":1,"1893":1,"1895":1,"1897":1,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1905":1,"1906":1,"1908":1,"1910":1,"1912":1,"1915":1,"2080":1,"2085":1,"2086":1,"2087":1,"2088":1,"2097":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2107":1,"2109":1,"2111":1,"2113":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2145":1,"2147":1,"2149":1,"2151":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2159":1,"2161":1,"2163":1,"2165":1,"2166":1,"2168":1,"2170":1,"2172":1,"2175":1,"2272":1,"2423":1,"2425":1,"2438":1,"2466":1,"2525":1,"2533":1,"2718":1,"2719":1,"2720":1,"2828":1,"2871":1,"2872":1,"2878":1,"2936":1,"2937":1},"1":{"623":1,"624":1,"625":1,"638":1,"639":1,"644":1,"645":1,"1845":1,"1846":1,"1847":1,"1848":1,"1849":1,"1850":1,"1851":1,"1852":1,"1853":1,"1854":1,"1855":1,"1856":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":2,"1865":1,"1866":2,"1867":1,"1868":2,"1869":1,"1870":2,"1871":1,"1872":2,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":2,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":2,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":2,"1891":1,"1892":2,"1893":1,"1894":2,"1895":1,"1896":2,"1897":1,"1898":2,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":2,"1905":1,"1906":1,"1907":2,"1908":1,"1909":2,"1910":1,"1911":2,"1912":1,"1913":1,"1914":1,"1915":1,"1916":1,"1917":1,"2081":1,"2082":1,"2083":1,"2084":1,"2085":1,"2086":2,"2087":2,"2088":1,"2089":1,"2090":1,"2091":1,"2092":1,"2093":1,"2094":1,"2095":1,"2096":1,"2097":1,"2098":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":2,"2107":1,"2108":2,"2109":1,"2110":2,"2111":1,"2112":2,"2113":1,"2114":2,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":2,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":2,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":2,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":2,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":2,"2145":1,"2146":2,"2147":1,"2148":2,"2149":1,"2150":2,"2151":1,"2152":2,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":2,"2159":1,"2160":1,"2161":1,"2162":2,"2163":1,"2164":2,"2165":1,"2166":1,"2167":2,"2168":1,"2169":2,"2170":1,"2171":2,"2172":1,"2173":1,"2174":1,"2175":1,"2176":1,"2177":1,"2424":1,"2426":1,"2427":1,"2428":1,"2429":1,"2719":1,"2720":1,"2937":1,"2938":1,"2939":1,"2940":1},"2":{"17":1,"31":8,"49":3,"63":2,"64":1,"65":4,"70":1,"74":4,"76":1,"80":2,"84":1,"92":4,"93":14,"94":5,"102":3,"111":2,"112":7,"113":1,"114":36,"124":2,"133":1,"134":11,"149":13,"160":4,"176":4,"183":22,"185":9,"191":16,"196":1,"199":7,"201":1,"211":14,"214":1,"218":1,"221":6,"222":18,"236":12,"238":1,"249":33,"266":10,"277":11,"283":3,"285":6,"294":3,"298":1,"308":7,"312":3,"316":1,"317":6,"328":8,"333":4,"339":1,"396":1,"433":1,"437":2,"561":18,"569":4,"570":9,"574":2,"589":2,"622":2,"623":4,"624":10,"625":19,"633":1,"634":1,"637":1,"638":2,"639":18,"643":1,"645":4,"646":2,"647":2,"652":3,"653":3,"668":1,"684":1,"698":1,"719":1,"720":1,"724":1,"725":1,"729":1,"801":2,"827":2,"855":1,"856":2,"887":1,"888":2,"919":1,"920":2,"954":1,"955":2,"988":1,"989":2,"1022":1,"1023":2,"1056":1,"1057":2,"1090":1,"1091":2,"1124":1,"1125":2,"1158":1,"1159":2,"1214":1,"1215":2,"1284":1,"1285":1,"1329":1,"1331":8,"1379":1,"1383":1,"1410":3,"1413":1,"1414":2,"1417":1,"1423":1,"1446":4,"1462":1,"1492":5,"1541":1,"1590":2,"1591":3,"1625":2,"1635":5,"1636":5,"1638":12,"1639":2,"1668":4,"1681":1,"1844":1,"1845":3,"1846":5,"1848":14,"1849":64,"1850":23,"1851":5,"1852":20,"1853":1,"1855":8,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":1,"1866":1,"1906":1,"1907":1,"1924":2,"1949":1,"1952":3,"1955":8,"1958":4,"2080":1,"2081":3,"2082":5,"2084":18,"2085":151,"2086":7,"2087":1,"2088":23,"2090":5,"2091":24,"2092":1,"2094":8,"2095":10,"2096":7,"2097":4,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":1,"2108":1,"2166":1,"2167":1,"2181":3,"2188":2,"2217":1,"2264":1,"2269":3,"2272":11,"2276":2,"2278":4,"2288":1,"2289":2,"2303":3,"2312":2,"2384":1,"2391":1,"2414":1,"2418":3,"2422":1,"2423":4,"2430":1,"2431":1,"2432":2,"2438":1,"2439":1,"2444":1,"2445":1,"2453":1,"2456":2,"2466":6,"2525":15,"2533":19,"2557":3,"2562":6,"2563":1,"2576":1,"2585":2,"2599":3,"2602":1,"2669":1,"2718":1,"2719":6,"2720":7,"2721":21,"2746":12,"2747":1,"2759":1,"2764":3,"2794":5,"2828":1,"2854":1,"2860":3,"2863":4,"2869":4,"2871":7,"2872":8,"2878":7,"2879":2,"2880":7,"2891":1,"2894":46,"2907":2,"2908":2,"2926":11,"2931":1,"2935":2,"2936":8,"2937":6,"2938":4,"2939":4,"2949":1}}],["matched",{"2":{"433":2,"1518":1,"1533":1,"1804":1}}],["matches",{"2":{"403":1,"411":1,"712":1,"1203":1,"1204":1,"1492":1,"1528":9,"1539":2,"1630":1,"1633":1,"1667":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1974":1,"2503":1,"2607":2,"2683":1,"2762":1,"2764":2,"2937":1}}],["matchstickworks",{"2":{"226":2,"236":1}}],["match",{"2":{"65":1,"77":1,"105":1,"134":1,"149":1,"182":1,"191":1,"195":1,"333":1,"411":1,"416":1,"433":11,"512":1,"599":1,"712":1,"764":1,"1248":1,"1269":1,"1356":1,"1364":2,"1417":1,"1423":1,"1434":2,"1438":1,"1442":1,"1525":1,"1532":1,"1620":1,"1952":1,"2305":1,"2369":1,"2472":1,"2503":1,"2576":1,"2694":2,"2714":1,"2759":1,"2762":1,"2787":1,"2794":1,"2795":1,"2938":1}}],["matchingsubstring",{"2":{"2945":2}}],["matching",{"2":{"50":1,"149":1,"243":1,"331":1,"433":1,"469":1,"763":1,"1203":1,"1204":1,"1247":1,"1292":1,"1364":1,"1428":6,"1528":2,"2472":1,"2507":1,"2571":1,"2703":1,"2746":1,"2884":1,"2945":1}}],["masquerade",{"2":{"2711":1}}],["masking",{"2":{"328":1}}],["masked",{"2":{"317":1,"1532":1,"2272":2,"2578":1,"2872":1}}],["mask",{"0":{"1491":1},"2":{"105":6,"114":1,"339":1,"561":1,"1364":21,"1367":2,"1423":2,"1428":12,"1451":1,"1472":2,"1491":6,"1533":4,"1595":1,"1617":2,"1625":1,"1641":4,"1774":2,"1776":11,"1777":2,"1779":1,"1781":3,"1788":3,"1947":1,"2046":2,"2048":5,"2069":2,"2074":2,"2075":1,"2272":1,"2286":1,"2381":1,"2652":8,"2788":2,"2923":1,"2928":3}}],["masks",{"2":{"49":1,"1364":1,"1788":1,"1947":2,"2286":2,"2788":1,"2928":1}}],["massive",{"2":{"163":1}}],["massively",{"2":{"70":1}}],["mass",{"2":{"93":1,"199":1,"422":1,"1684":1,"2407":1,"2504":1,"2700":1}}],["massdrop",{"2":{"73":1,"114":1,"131":1,"134":1,"207":2,"279":2,"684":3}}],["masterzen",{"2":{"2436":1}}],["master",{"0":{"760":1,"1245":1,"2636":1,"2638":1,"2639":1},"1":{"761":1,"762":1,"763":1,"764":1,"765":1,"766":1,"767":1,"768":1,"769":1,"770":1,"771":1,"772":1,"773":1,"774":1,"775":1,"776":1,"777":1,"778":1,"779":1,"780":1,"781":1,"782":1,"783":1,"784":1,"785":1,"786":1,"787":1,"788":1,"789":1,"790":1,"791":1,"792":1,"793":1,"794":1,"795":1,"1246":1,"1247":1,"1248":1,"1249":1,"1250":1,"1251":1,"1252":1,"1253":1,"1254":1,"1255":1,"1256":1,"1257":1,"1258":1,"1259":1,"1260":1,"1261":1,"1262":1,"1263":1,"1264":1,"1265":1,"2639":1,"2640":1,"2641":1},"2":{"31":3,"34":1,"45":1,"51":1,"74":1,"114":1,"134":2,"149":1,"169":1,"176":4,"191":1,"234":4,"236":1,"277":1,"294":3,"379":2,"399":1,"402":4,"407":1,"408":3,"409":2,"411":8,"412":5,"423":4,"459":2,"568":4,"569":4,"570":7,"574":1,"579":1,"588":1,"589":2,"594":1,"749":3,"750":1,"759":1,"760":1,"761":2,"763":1,"923":3,"1094":3,"1128":3,"1200":2,"1201":1,"1245":1,"1246":2,"1353":1,"1948":3,"1976":1,"2014":1,"2198":4,"2274":3,"2275":4,"2276":3,"2277":18,"2278":6,"2279":1,"2287":3,"2378":1,"2410":3,"2526":2,"2552":2,"2632":1,"2633":1,"2634":8,"2635":4,"2636":6,"2637":4,"2638":2,"2639":7,"2640":1,"2744":3,"2746":2,"2747":1,"2748":4,"2763":3,"2904":1}}],["made",{"2":{"10":1,"73":1,"116":1,"124":1,"134":1,"172":1,"201":1,"243":1,"246":1,"263":1,"271":1,"272":1,"273":1,"312":1,"320":1,"331":1,"377":1,"389":1,"487":1,"512":1,"514":1,"578":1,"613":5,"665":1,"684":1,"793":1,"1405":1,"1490":1,"1622":1,"1628":1,"2279":1,"2452":1,"2464":1,"2565":1,"2568":1,"2616":1,"2633":2,"2634":3,"2636":1,"2645":1,"2683":1,"2902":1,"2912":1,"2930":2}}],["maybe",{"0":{"2475":1}}],["may",{"0":{"19":1,"78":1,"150":1,"200":1,"250":1,"295":1,"334":1},"1":{"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"29":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"211":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"335":1,"336":1,"337":1,"338":1,"339":1},"2":{"10":1,"14":1,"24":1,"31":2,"34":1,"73":1,"88":1,"104":1,"124":2,"127":1,"157":1,"166":1,"182":1,"194":1,"240":1,"248":1,"251":1,"259":1,"284":1,"288":1,"289":1,"312":1,"344":3,"400":1,"402":1,"403":1,"405":1,"406":1,"407":1,"413":7,"414":7,"417":2,"418":1,"433":5,"439":1,"455":1,"469":2,"511":2,"520":1,"525":1,"539":1,"540":1,"545":3,"561":2,"563":1,"564":4,"570":1,"598":2,"610":1,"615":1,"633":1,"637":1,"648":1,"684":1,"690":1,"710":3,"711":2,"712":1,"713":1,"719":4,"723":1,"728":1,"752":1,"753":1,"754":2,"755":2,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1218":1,"1247":1,"1248":2,"1266":1,"1272":1,"1287":3,"1290":1,"1294":2,"1298":1,"1299":1,"1300":1,"1303":1,"1317":1,"1318":2,"1320":2,"1330":1,"1332":1,"1348":2,"1356":1,"1382":1,"1383":1,"1405":1,"1408":1,"1413":1,"1415":1,"1422":1,"1442":2,"1448":1,"1451":2,"1464":3,"1471":1,"1472":2,"1485":1,"1493":1,"1499":1,"1518":1,"1527":1,"1534":1,"1554":1,"1556":1,"1557":1,"1589":1,"1593":1,"1594":2,"1609":2,"1626":1,"1628":1,"1630":1,"1634":2,"1638":1,"1640":1,"1647":1,"1661":1,"1667":1,"1670":2,"1681":5,"1713":1,"1762":1,"1772":1,"1773":1,"1777":1,"1781":1,"1784":1,"1787":1,"1788":1,"1789":1,"1792":1,"1802":2,"1803":1,"1835":1,"1920":1,"1935":1,"1943":1,"1947":1,"1949":1,"1951":1,"1956":1,"1957":1,"1960":2,"1961":2,"1962":2,"1984":1,"1994":1,"1999":1,"2013":1,"2016":1,"2040":1,"2044":1,"2057":2,"2068":1,"2069":1,"2070":1,"2074":1,"2077":1,"2086":1,"2091":1,"2208":2,"2260":1,"2267":1,"2272":1,"2276":1,"2278":1,"2280":1,"2286":1,"2293":2,"2298":1,"2309":2,"2317":1,"2325":1,"2329":1,"2330":1,"2331":2,"2383":1,"2386":1,"2388":1,"2390":1,"2391":1,"2393":3,"2395":1,"2396":1,"2397":1,"2398":2,"2400":1,"2402":1,"2407":1,"2410":1,"2412":2,"2415":1,"2417":1,"2418":1,"2422":1,"2424":1,"2427":2,"2428":3,"2431":1,"2434":3,"2449":2,"2460":1,"2461":1,"2465":1,"2474":1,"2482":1,"2496":1,"2497":1,"2501":1,"2503":4,"2506":1,"2508":1,"2549":1,"2554":2,"2557":1,"2561":2,"2567":1,"2568":3,"2569":4,"2570":3,"2574":1,"2576":1,"2584":1,"2585":2,"2603":1,"2612":1,"2614":1,"2652":1,"2656":1,"2664":1,"2666":1,"2667":1,"2668":1,"2671":1,"2676":1,"2680":2,"2683":1,"2685":2,"2690":3,"2744":5,"2747":1,"2751":1,"2759":2,"2763":4,"2764":2,"2765":1,"2769":1,"2777":1,"2778":1,"2886":1,"2888":1,"2889":2,"2901":1,"2902":1,"2903":3,"2906":1,"2909":1,"2912":1,"2913":2,"2924":1,"2925":3,"2926":6,"2927":2,"2928":1,"2930":1,"2931":3,"2948":3}}],["aabb",{"0":{"2915":1}}],["aa",{"2":{"2762":1}}],["aaron",{"2":{"2074":2}}],["ajazz",{"2":{"2567":2}}],["ajisai74",{"2":{"143":2}}],["azerty",{"0":{"2804":1},"2":{"2887":2}}],["azure",{"2":{"2089":2,"2205":2}}],["azoteq",{"0":{"1969":1},"1":{"1970":1,"1971":1,"1972":1},"2":{"236":1,"249":1,"294":1,"1969":2,"1970":10,"1971":17,"1972":3}}],["ao",{"2":{"2301":1}}],["aoff",{"2":{"1925":1,"2527":1}}],["aozora",{"2":{"122":2}}],["a♯",{"2":{"1925":6,"2527":6}}],["a♭",{"2":{"1925":6,"2527":6}}],["a\`",{"2":{"1613":1}}],["a9",{"2":{"1269":1,"2042":2,"2667":1,"2691":1}}],["a8",{"2":{"716":2,"721":2,"1483":1,"2042":2,"2691":1}}],["a7²",{"2":{"690":1}}],["a7¹",{"2":{"690":1}}],["a7",{"2":{"688":1,"690":4,"2668":2,"2691":1}}],["a6²",{"2":{"690":1}}],["a6¹",{"2":{"690":1}}],["a6",{"2":{"688":1,"690":4,"2668":2,"2691":1}}],["a54",{"2":{"2691":1}}],["a5+dacd2",{"2":{"716":6}}],["a5²",{"2":{"690":1}}],["a5¹",{"2":{"690":1}}],["a5",{"2":{"688":1,"690":4,"716":1,"717":1,"1477":3,"1478":3,"1479":1,"1480":1,"1925":1,"2527":1,"2668":2,"2691":1}}],["a43",{"2":{"2691":1}}],["a4+a5",{"2":{"1479":1}}],["a4+dacd1",{"2":{"716":6}}],["a4²",{"2":{"690":1}}],["a4¹",{"2":{"690":1}}],["a4",{"2":{"688":1,"690":4,"716":1,"717":1,"1477":3,"1478":3,"1479":1,"1480":1,"1742":2,"1925":1,"2527":1,"2668":2,"2691":1}}],["a3²",{"2":{"690":2}}],["a3¹",{"2":{"690":2}}],["a3",{"2":{"688":1,"690":4,"1313":1,"1925":1,"2527":1}}],["a2²",{"2":{"690":2}}],["a2¹",{"2":{"690":2}}],["a2",{"2":{"688":1,"690":4,"1925":1,"2527":1,"2691":1,"2872":2}}],["a14",{"2":{"2691":1}}],["a145",{"2":{"2691":1}}],["a135",{"2":{"2691":1}}],["a13",{"2":{"1681":1,"2691":1}}],["a15",{"2":{"1639":1,"2691":1}}],["a12",{"2":{"1269":1,"2666":1}}],["a11",{"2":{"1269":1,"2666":1}}],["a10",{"2":{"1269":1,"1639":1,"2667":1,"2671":1,"2691":1}}],["a1²",{"2":{"690":2}}],["a1¹",{"2":{"690":2}}],["a1",{"2":{"688":1,"690":4,"1925":1,"2527":1,"2691":1,"2872":2,"2880":1}}],["a0²",{"2":{"690":2}}],["a0¹",{"2":{"690":2}}],["a0",{"2":{"688":1,"690":4,"694":1,"2288":2,"2390":1,"2668":1,"2669":1,"2691":1,"2872":2}}],["akko",{"2":{"2397":1}}],["akp846",{"2":{"294":1}}],["akc084",{"2":{"294":1}}],["akemipad",{"2":{"211":1}}],["akis",{"2":{"211":1}}],["akira",{"2":{"211":1}}],["akb",{"2":{"211":2}}],["aka",{"2":{"149":1,"194":1,"297":1,"308":1,"1488":1,"1489":1,"1593":2,"1774":1,"1788":1,"2266":1,"2267":1,"2300":1,"2928":1}}],["air",{"2":{"2280":1}}],["aim",{"2":{"2382":1}}],["aims",{"2":{"1964":1,"2212":1,"2632":1}}],["aiming",{"2":{"1923":1}}],["aimed",{"2":{"251":1,"664":1,"1855":1,"2094":1,"2642":1}}],["ain",{"2":{"513":1}}],["aids",{"2":{"2427":1}}],["aid",{"2":{"340":1,"527":1}}],["aide",{"2":{"249":1,"1975":1}}],["aidansmithdotdev",{"2":{"211":1}}],["ai03",{"2":{"149":1,"211":2,"447":1,"2422":1}}],["ae",{"2":{"2330":2}}],["aegis",{"2":{"211":1}}],["aeroboard",{"2":{"222":1}}],["aero",{"2":{"211":1}}],["aella",{"2":{"211":1}}],["aelith",{"2":{"197":2}}],["aeboards",{"0":{"60":1},"2":{"102":3,"114":1,"191":1,"211":3}}],["axis",{"0":{"1755":2,"1758":2},"1":{"1756":2,"1757":2,"1759":2},"2":{"183":2,"236":1,"1409":1,"1679":1,"1685":1,"1740":3,"1742":12,"1743":9,"1747":1,"1748":1,"1749":1,"1755":1,"1756":2,"1758":1,"1759":2,"1968":10,"1985":2,"1986":2,"1987":2,"1990":2,"2795":2,"2869":4,"2871":2,"2878":2}}],["axes",{"0":{"1742":1,"1743":1,"2050":1,"2051":1},"1":{"1743":1},"2":{"49":1,"183":2,"1738":3,"1740":1,"1742":4,"1743":2,"1747":1,"2014":1,"2050":2}}],["awkward",{"2":{"1791":1}}],["awinic",{"2":{"724":1}}],["awesome",{"2":{"196":1,"375":1,"522":1,"523":1,"524":1,"1341":1,"1462":1,"1469":1,"1798":1,"2717":1}}],["awake",{"2":{"1990":1}}],["awaiting",{"2":{"1948":1,"2571":1}}],["awaited",{"2":{"131":1}}],["aware",{"2":{"429":1,"430":1,"437":1,"440":1,"442":1,"445":1,"511":1,"1609":1,"2510":1}}],["away",{"2":{"3":1,"15":1,"134":3,"176":1,"266":1,"447":1,"1526":1,"1802":1,"1849":4,"1947":1,"2085":6,"2286":1,"2319":1,"2423":1,"2428":1,"2466":1,"2845":1}}],["aw20216s",{"0":{"724":1,"731":1,"733":1,"735":1,"737":1,"739":1},"1":{"725":1,"726":1,"727":1,"728":1,"729":1,"730":1,"731":1,"732":2,"733":1,"734":2,"735":1,"736":2,"737":1,"738":2,"739":1,"740":2},"2":{"236":1,"249":1,"724":1,"725":3,"726":7,"727":1,"729":3,"735":1,"736":1,"2081":1,"2878":1}}],["aw20216",{"2":{"114":3,"176":1,"211":1,"221":2,"236":1}}],["amtel",{"2":{"2273":1}}],["amt",{"2":{"1983":4}}],["among",{"2":{"1676":1,"2503":1,"2922":1}}],["amounts",{"2":{"1421":1,"2761":1,"2763":1,"2764":1}}],["amount",{"2":{"107":1,"753":1,"754":1,"1322":1,"1423":1,"1455":1,"1609":2,"1662":1,"1667":1,"1800":1,"1802":1,"1851":1,"1959":2,"2003":1,"2051":1,"2085":3,"2090":1,"2191":1,"2231":1,"2235":1,"2275":1,"2297":1,"2308":1,"2327":1,"2427":3,"2434":1,"2459":1,"2576":1,"2652":1,"2664":1,"2744":1,"2761":3,"2763":1,"2861":1,"2862":1,"2870":1,"2872":1,"2874":1,"2880":2,"2882":1,"2901":1}}],["amazing",{"2":{"1342":1}}],["amag23",{"2":{"211":1}}],["am",{"2":{"422":1,"1523":3,"2013":2,"2634":1}}],["america",{"2":{"1346":1,"2887":3}}],["amet",{"2":{"363":1}}],["amended",{"2":{"2744":1}}],["amending",{"2":{"229":1}}],["amend",{"2":{"222":2}}],["amendment",{"2":{"222":1}}],["ambiguous",{"2":{"516":1,"519":1,"2567":1}}],["ambiguity",{"2":{"273":1,"2567":3,"2569":1,"2744":1}}],["amber80",{"2":{"211":1}}],["amux",{"2":{"249":1}}],["amj84",{"2":{"222":1}}],["amj",{"2":{"160":1}}],["amjpad",{"2":{"159":2}}],["amj96",{"2":{"159":2}}],["amj60",{"2":{"159":2}}],["amjkeyboard",{"2":{"159":4,"160":1,"222":1}}],["amj40",{"2":{"159":2}}],["ampr",{"2":{"2534":1,"2555":1}}],["amptrics",{"2":{"308":1}}],["ampersand",{"2":{"277":1,"2534":1,"2555":1}}],["amp",{"0":{"25":1,"530":1,"1387":1,"1446":1,"1776":1,"1952":1,"2902":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"1953":1,"2903":1,"2904":1},"2":{"63":1,"72":1,"93":1,"114":5,"134":1,"149":1,"160":1,"190":1,"191":1,"199":2,"211":2,"249":1,"266":1,"308":1,"317":3,"691":1,"1319":4,"1364":2,"1451":1,"1486":1,"1534":2,"1554":2,"1665":1,"1781":1,"1846":2,"1952":1,"2049":1,"2082":2,"2085":1,"2422":1,"2502":1,"2510":1,"2511":1,"2534":1,"2542":1,"2555":1,"2628":2,"2752":1,"2944":1}}],["ahead",{"2":{"76":1,"512":1,"514":1,"762":1,"2605":1,"2635":1}}],["apos",{"2":{"2567":1}}],["apt",{"2":{"513":1,"2593":1}}],["apart",{"2":{"2264":1,"2427":1,"2434":1}}],["apache",{"2":{"1630":1,"2740":1}}],["apa",{"2":{"222":1}}],["apa102",{"0":{"697":1,"701":1,"702":1,"704":1,"706":1,"707":1,"2855":1},"1":{"698":1,"699":1,"700":1,"701":1,"702":1,"703":2,"704":1,"705":2,"706":1,"707":1,"708":2},"2":{"75":1,"201":2,"211":1,"221":2,"234":2,"236":2,"249":2,"277":1,"294":1,"333":1,"697":1,"698":4,"699":3,"702":1,"703":1,"2081":1,"2178":1,"2179":7,"2855":2,"2877":1}}],["apm32",{"0":{"2393":1},"1":{"2394":1},"2":{"211":1,"222":1,"713":2,"2393":2}}],["apm32f103",{"2":{"134":1}}],["ap2",{"2":{"176":1}}],["aplyard",{"2":{"67":2,"72":1}}],["aplx6",{"2":{"67":3,"72":1}}],["apis",{"0":{"1638":1},"2":{"153":1,"236":1,"244":1,"698":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1284":1,"1633":1,"1638":1,"2684":2,"2733":1,"2744":1,"2763":3,"2764":3}}],["api",{"0":{"220":1,"244":1,"368":1,"373":1,"380":1,"581":1,"700":1,"730":1,"767":1,"806":1,"832":1,"864":1,"894":1,"929":1,"963":1,"997":1,"1031":1,"1065":1,"1099":1,"1133":1,"1167":1,"1220":1,"1249":1,"1270":1,"1304":1,"1418":1,"1559":1,"1649":1,"1703":1,"1745":1,"1806":1,"1856":1,"1954":1,"2019":1,"2060":1,"2098":1,"2227":1,"2290":1,"2333":1,"2755":1,"2764":1},"1":{"369":1,"370":1,"371":1,"372":1,"374":1,"375":1,"376":1,"377":1,"378":1,"379":1,"381":1,"382":1,"383":1,"582":1,"583":1,"584":1,"701":1,"702":1,"703":1,"704":1,"705":1,"706":1,"707":1,"708":1,"731":1,"732":1,"733":1,"734":1,"735":1,"736":1,"737":1,"738":1,"739":1,"740":1,"768":1,"769":1,"770":1,"771":1,"772":1,"773":1,"774":1,"775":1,"776":1,"777":1,"778":1,"779":1,"780":1,"781":1,"782":1,"783":1,"784":1,"785":1,"786":1,"787":1,"788":1,"789":1,"790":1,"791":1,"792":1,"793":1,"794":1,"795":1,"807":1,"808":1,"809":1,"810":1,"811":1,"812":1,"813":1,"814":1,"815":1,"816":1,"817":1,"818":1,"819":1,"820":1,"821":1,"822":1,"823":1,"824":1,"825":1,"833":1,"834":1,"835":1,"836":1,"837":1,"838":1,"839":1,"840":1,"841":1,"842":1,"843":1,"844":1,"845":1,"846":1,"847":1,"848":1,"849":1,"850":1,"851":1,"852":1,"853":1,"854":1,"865":1,"866":1,"867":1,"868":1,"869":1,"870":1,"871":1,"872":1,"873":1,"874":1,"875":1,"876":1,"877":1,"878":1,"879":1,"880":1,"881":1,"882":1,"883":1,"884":1,"885":1,"886":1,"895":1,"896":1,"897":1,"898":1,"899":1,"900":1,"901":1,"902":1,"903":1,"904":1,"905":1,"906":1,"907":1,"908":1,"909":1,"910":1,"911":1,"912":1,"913":1,"914":1,"915":1,"916":1,"917":1,"918":1,"930":1,"931":1,"932":1,"933":1,"934":1,"935":1,"936":1,"937":1,"938":1,"939":1,"940":1,"941":1,"942":1,"943":1,"944":1,"945":1,"946":1,"947":1,"948":1,"949":1,"950":1,"951":1,"952":1,"953":1,"964":1,"965":1,"966":1,"967":1,"968":1,"969":1,"970":1,"971":1,"972":1,"973":1,"974":1,"975":1,"976":1,"977":1,"978":1,"979":1,"980":1,"981":1,"982":1,"983":1,"984":1,"985":1,"986":1,"987":1,"998":1,"999":1,"1000":1,"1001":1,"1002":1,"1003":1,"1004":1,"1005":1,"1006":1,"1007":1,"1008":1,"1009":1,"1010":1,"1011":1,"1012":1,"1013":1,"1014":1,"1015":1,"1016":1,"1017":1,"1018":1,"1019":1,"1020":1,"1021":1,"1032":1,"1033":1,"1034":1,"1035":1,"1036":1,"1037":1,"1038":1,"1039":1,"1040":1,"1041":1,"1042":1,"1043":1,"1044":1,"1045":1,"1046":1,"1047":1,"1048":1,"1049":1,"1050":1,"1051":1,"1052":1,"1053":1,"1054":1,"1055":1,"1066":1,"1067":1,"1068":1,"1069":1,"1070":1,"1071":1,"1072":1,"1073":1,"1074":1,"1075":1,"1076":1,"1077":1,"1078":1,"1079":1,"1080":1,"1081":1,"1082":1,"1083":1,"1084":1,"1085":1,"1086":1,"1087":1,"1088":1,"1089":1,"1100":1,"1101":1,"1102":1,"1103":1,"1104":1,"1105":1,"1106":1,"1107":1,"1108":1,"1109":1,"1110":1,"1111":1,"1112":1,"1113":1,"1114":1,"1115":1,"1116":1,"1117":1,"1118":1,"1119":1,"1120":1,"1121":1,"1122":1,"1123":1,"1134":1,"1135":1,"1136":1,"1137":1,"1138":1,"1139":1,"1140":1,"1141":1,"1142":1,"1143":1,"1144":1,"1145":1,"1146":1,"1147":1,"1148":1,"1149":1,"1150":1,"1151":1,"1152":1,"1153":1,"1154":1,"1155":1,"1156":1,"1157":1,"1168":1,"1169":1,"1170":1,"1171":1,"1172":1,"1173":1,"1174":1,"1175":1,"1176":1,"1177":1,"1178":1,"1179":1,"1180":1,"1181":1,"1182":1,"1183":1,"1184":1,"1185":1,"1186":1,"1187":1,"1188":1,"1189":1,"1190":1,"1191":1,"1221":1,"1222":1,"1223":1,"1224":1,"1225":1,"1226":1,"1227":1,"1228":1,"1229":1,"1230":1,"1231":1,"1232":1,"1233":1,"1234":1,"1235":1,"1236":1,"1237":1,"1238":1,"1239":1,"1240":1,"1241":1,"1242":1,"1243":1,"1244":1,"1250":1,"1251":1,"1252":1,"1253":1,"1254":1,"1255":1,"1256":1,"1257":1,"1258":1,"1259":1,"1260":1,"1261":1,"1262":1,"1263":1,"1264":1,"1265":1,"1271":1,"1272":1,"1273":1,"1274":1,"1275":1,"1276":1,"1277":1,"1278":1,"1279":1,"1280":1,"1281":1,"1282":1,"1305":1,"1306":1,"1307":1,"1308":1,"1309":1,"1310":1,"1560":1,"1561":1,"1562":1,"1563":1,"1564":1,"1565":1,"1566":1,"1567":1,"1568":1,"1569":1,"1570":1,"1571":1,"1572":1,"1573":1,"1574":1,"1575":1,"1576":1,"1650":1,"1651":1,"1652":1,"1653":1,"1654":1,"1655":1,"1656":1,"1657":1,"1658":1,"1659":1,"1660":1,"1704":1,"1705":1,"1706":1,"1707":1,"1708":1,"1709":1,"1710":1,"1711":1,"1712":1,"1713":1,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1719":1,"1720":1,"1721":1,"1722":1,"1723":1,"1724":1,"1725":1,"1726":1,"1727":1,"1728":1,"1729":1,"1730":1,"1731":1,"1732":1,"1733":1,"1734":1,"1735":1,"1736":1,"1737":1,"1746":1,"1747":1,"1748":1,"1749":1,"1750":1,"1751":1,"1752":1,"1753":1,"1754":1,"1755":1,"1756":1,"1757":1,"1758":1,"1759":1,"1760":1,"1761":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":1,"1865":1,"1866":1,"1867":1,"1868":1,"1869":1,"1870":1,"1871":1,"1872":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":1,"1891":1,"1892":1,"1893":1,"1894":1,"1895":1,"1896":1,"1897":1,"1898":1,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":1,"1905":1,"1906":1,"1907":1,"1908":1,"1909":1,"1910":1,"1911":1,"1912":1,"1913":1,"1914":1,"1915":1,"1916":1,"1917":1,"2020":1,"2021":1,"2022":1,"2023":1,"2024":1,"2025":1,"2026":1,"2027":1,"2028":1,"2029":1,"2030":1,"2031":1,"2032":1,"2033":1,"2034":1,"2035":1,"2036":1,"2061":1,"2062":1,"2063":1,"2064":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":1,"2107":1,"2108":1,"2109":1,"2110":1,"2111":1,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":1,"2145":1,"2146":1,"2147":1,"2148":1,"2149":1,"2150":1,"2151":1,"2152":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2164":1,"2165":1,"2166":1,"2167":1,"2168":1,"2169":1,"2170":1,"2171":1,"2172":1,"2173":1,"2174":1,"2175":1,"2176":1,"2177":1,"2228":1,"2229":1,"2230":1,"2231":1,"2232":1,"2233":1,"2234":1,"2235":1,"2236":1,"2237":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":1,"2245":1,"2246":1,"2247":1,"2248":1,"2334":1,"2335":1,"2336":1,"2337":1,"2338":1,"2339":1,"2340":1,"2341":1,"2342":1,"2343":1,"2344":1,"2345":1,"2346":1,"2347":1,"2348":1,"2349":1,"2350":1,"2351":1,"2352":1,"2353":1,"2354":1,"2355":1,"2356":1,"2357":1,"2358":1,"2359":1,"2360":1,"2361":1,"2362":1,"2363":1,"2364":1,"2365":1,"2366":1,"2367":1,"2368":1,"2369":1,"2370":1,"2371":1,"2372":1,"2756":1,"2757":1},"2":{"51":1,"95":2,"113":1,"114":3,"133":3,"134":4,"149":2,"160":2,"176":1,"182":1,"188":1,"191":5,"196":1,"199":3,"211":2,"218":1,"222":2,"230":1,"236":1,"244":2,"248":1,"249":2,"266":3,"277":2,"285":1,"294":2,"328":1,"339":1,"366":4,"368":1,"369":2,"373":2,"374":2,"376":1,"377":1,"379":1,"380":2,"381":2,"382":1,"383":2,"578":1,"581":4,"585":1,"586":1,"588":1,"592":1,"657":1,"665":1,"691":1,"698":1,"761":1,"762":1,"1246":1,"1267":1,"1284":1,"1411":1,"1419":3,"1551":1,"1633":2,"1638":5,"1845":1,"1954":1,"1955":2,"2081":1,"2219":2,"2326":1,"2453":1,"2685":1,"2686":1,"2753":1,"2760":1,"2763":9,"2764":1,"2794":1,"2796":1,"2851":1,"2877":1,"2908":2}}],["apps",{"2":{"2331":2}}],["approvals",{"2":{"2749":1}}],["approximately",{"2":{"1939":1,"2379":1}}],["approaching",{"2":{"2712":1,"2713":1,"2888":1}}],["approaches",{"2":{"1343":1}}],["approach",{"2":{"720":1,"1367":1}}],["approachable",{"2":{"514":1,"538":1}}],["appropriately",{"2":{"621":1,"677":1,"749":1,"2008":1,"2011":1}}],["appropriate",{"2":{"36":2,"49":1,"191":1,"232":1,"393":1,"493":1,"536":1,"540":1,"613":1,"627":2,"666":1,"668":1,"681":1,"762":1,"1198":1,"1201":1,"1213":1,"1317":1,"1413":1,"1549":1,"1628":1,"1952":1,"2008":2,"2015":1,"2208":1,"2280":1,"2300":1,"2309":1,"2501":1,"2614":1,"2683":1,"2744":1,"2746":1,"2760":1,"2884":1,"2912":1}}],["appreciated",{"2":{"417":1}}],["app",{"0":{"369":1,"370":1,"371":1,"372":1,"381":1},"2":{"381":1,"1348":1,"1350":1,"2510":1,"2548":1,"2612":1,"2628":2}}],["apparently",{"2":{"355":2,"2374":1}}],["appearance",{"2":{"2425":1}}],["appear",{"2":{"379":1,"394":1,"709":1,"1514":1,"1962":1,"2567":1,"2795":1}}],["appears",{"2":{"50":1,"709":1,"710":1,"711":1,"713":1,"1351":1,"2499":1,"2502":1,"2682":2,"2690":1,"2717":1,"2734":1,"2746":1}}],["appended",{"2":{"1634":1,"2384":1,"2391":1}}],["appendix",{"0":{"1537":1},"1":{"1538":1,"1539":1}}],["appending",{"2":{"1388":1,"2464":1}}],["append",{"2":{"211":1,"2746":1,"2943":1}}],["apple",{"2":{"1356":3,"1357":2,"1361":2}}],["applies",{"2":{"320":1,"513":1,"564":1,"1519":1,"1645":1,"1781":1,"1786":1,"1934":2,"1974":1,"1983":2,"1988":1,"1989":1,"2046":1,"2650":1,"2664":1,"2713":1,"2733":1,"2742":1,"2745":1,"2833":1,"2930":2}}],["applied",{"2":{"233":1,"403":2,"656":1,"1367":1,"1457":1,"1518":1,"1600":1,"1666":1,"1685":1,"1940":1,"2427":1,"2634":1,"2763":2,"2764":1,"2800":1,"2912":1}}],["applicable",{"2":{"199":1,"712":1,"1414":1,"1788":1,"2452":1,"2746":3,"2853":2,"2919":1,"2928":1}}],["application",{"2":{"182":1,"368":1,"373":1,"376":1,"381":1,"473":1,"474":1,"476":1,"482":1,"483":1,"578":1,"891":1,"1350":1,"1627":1,"1934":1,"2383":1,"2384":1,"2388":1,"2390":1,"2391":2,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":1,"2402":1,"2404":1,"2482":1,"2506":1,"2510":2,"2548":2,"2614":1,"2656":1,"2730":2,"2731":2,"2930":1}}],["applications",{"2":{"182":1,"1366":2,"1788":1,"2466":1,"2683":1,"2928":1,"2930":1}}],["apply",{"0":{"1534":1,"1535":1,"2729":1},"1":{"1535":1,"2730":1,"2731":1},"2":{"92":1,"199":1,"222":1,"347":1,"393":2,"397":1,"557":1,"723":1,"744":1,"1291":1,"1295":1,"1299":1,"1302":1,"1303":1,"1366":1,"1410":2,"1423":1,"1433":1,"1499":1,"1518":1,"1534":1,"1535":3,"1551":1,"1554":1,"1556":1,"1557":1,"1600":1,"1612":1,"2078":2,"2193":1,"2259":1,"2260":2,"2427":2,"2576":1,"2686":1,"2746":1,"2930":2}}],["applying",{"2":{"21":1,"320":1,"2260":1,"2427":1,"2634":3,"2930":1}}],["adequate",{"2":{"2421":1}}],["adelie",{"2":{"211":1}}],["adelais",{"2":{"134":6,"191":1}}],["adj",{"2":{"1945":3,"2284":3}}],["adjusting",{"2":{"1493":1,"1738":1,"1936":1}}],["adjusts",{"2":{"1488":1,"1743":1,"2185":2,"2293":1}}],["adjusted",{"2":{"859":1,"924":1,"958":1,"992":1,"1026":1,"1060":1,"1162":1,"2797":1}}],["adjustments",{"2":{"2912":1}}],["adjustment",{"0":{"1286":1},"2":{"236":1,"1852":2,"2011":1,"2091":4,"2182":3,"2185":1,"2283":1}}],["adjustable",{"2":{"134":1}}],["adjust",{"2":{"105":4,"149":2,"191":3,"198":1,"211":1,"266":1,"509":1,"615":1,"727":1,"860":1,"861":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1299":1,"1300":1,"1417":1,"1430":1,"1488":1,"1641":2,"1935":1,"1936":1,"1937":1,"1988":1,"1989":1,"1994":1,"2011":1,"2013":1,"2086":1,"2190":1,"2211":2,"2293":1,"2320":2,"2321":2,"2322":4,"2323":6,"2702":1,"2768":4,"2770":2,"2912":1}}],["adherence",{"2":{"2902":1}}],["adheres",{"2":{"2427":1}}],["adhere",{"2":{"1407":1,"2602":1}}],["adhlns",{"2":{"134":1}}],["ad",{"2":{"829":1,"858":1,"890":1}}],["administrator",{"2":{"712":1,"2331":1}}],["adm42",{"2":{"226":2,"236":1}}],["advice",{"2":{"2744":1}}],["advised",{"2":{"1196":1,"1199":1,"1485":1,"2658":1}}],["adventurous",{"2":{"1612":1}}],["advertised",{"2":{"596":1,"2569":1}}],["advantageous",{"2":{"2759":1}}],["advantages",{"2":{"1196":1,"1199":1,"2653":1,"2673":1,"2678":1}}],["advantage",{"2":{"93":1,"665":1,"1783":1,"2292":1,"2479":1}}],["advances",{"2":{"1954":8,"2290":8}}],["advanced",{"0":{"661":1,"798":1,"1206":1,"1368":1,"1402":1,"1427":1,"1447":1,"1451":1,"1461":1,"1591":1,"1603":1,"1607":1,"1778":1,"1783":1,"1912":1,"1915":1,"1922":1,"1994":1,"2007":1,"2010":1,"2172":1,"2175":1,"2318":1,"2908":1},"1":{"662":1,"663":1,"1207":1,"1208":1,"1369":1,"1370":1,"1371":1,"1372":1,"1373":1,"1403":1,"1404":1,"1405":1,"1406":1,"1407":1,"1408":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1462":1,"1608":1,"1609":1,"1610":1,"1611":1,"1612":1,"1613":1,"1614":1,"1615":1,"1616":1,"1617":1,"1618":1,"1619":1,"1620":1,"1779":1,"1784":1,"1785":1,"1786":1,"1923":1,"1924":1,"2008":1,"2009":1,"2010":1,"2011":2,"2012":2,"2013":1},"2":{"49":1,"63":1,"93":1,"149":1,"249":1,"285":1,"563":1,"564":1,"599":1,"606":1,"798":2,"1206":1,"1303":1,"1343":1,"1365":1,"1367":1,"1427":1,"1451":1,"1491":1,"1603":2,"1634":1,"1638":6,"1781":1,"1855":2,"1919":2,"1922":2,"1974":1,"1994":1,"2007":1,"2094":2,"2095":3,"2096":2,"2309":3,"2310":1,"2315":1,"2317":3,"2318":2,"2319":1,"2432":1,"2478":1,"2503":1,"2621":1,"2684":1,"2704":1,"2746":1,"2751":1,"2906":1,"2907":1,"2908":2,"2944":1}}],["advance",{"0":{"2903":1},"2":{"30":1,"33":1,"384":1,"396":1,"1954":3,"2290":3,"2903":1}}],["adopted",{"2":{"529":1}}],["adoption",{"2":{"128":1}}],["adkb96",{"2":{"253":2}}],["adpenrose",{"2":{"211":2}}],["ad65",{"2":{"211":1}}],["adns9800",{"0":{"273":1,"276":1,"284":1},"2":{"118":1,"149":1,"273":3,"276":1,"277":1,"1967":6}}],["adns",{"0":{"1966":1,"1967":1},"2":{"118":2,"1966":2,"1967":2}}],["adns5050",{"2":{"118":1,"285":1,"1966":4}}],["adcconfig",{"2":{"1974":5}}],["adc6",{"2":{"693":1}}],["adcrpenablets",{"2":{"691":1}}],["adcd1",{"2":{"691":2}}],["adc3",{"2":{"690":3}}],["adc2",{"2":{"690":2}}],["adc1",{"2":{"690":1,"694":1}}],["adcv3",{"2":{"690":1}}],["adcv1",{"2":{"690":1}}],["adcs",{"2":{"690":2,"694":2}}],["adc",{"0":{"685":1,"744":1},"1":{"686":1,"687":1,"688":1,"689":1,"690":1,"691":1,"692":1,"693":1,"694":1,"695":1,"696":1},"2":{"93":1,"191":2,"234":2,"249":1,"685":1,"688":2,"690":7,"691":3,"693":5,"694":11,"696":12,"743":1,"744":11,"1738":2,"1739":1,"1740":1,"1742":2,"1968":1,"1974":5,"2692":1,"2858":5}}],["adb",{"2":{"75":1,"1357":2}}],["adalyn",{"2":{"143":2}}],["adafruitble",{"0":{"142":1},"2":{"142":1,"149":1}}],["adafruit",{"0":{"1393":1,"2375":1},"2":{"50":2,"133":1,"134":2,"142":1,"163":1,"176":3,"546":1,"713":3,"749":1,"750":1,"1391":1,"1394":1,"1397":1,"1681":1,"2374":1,"2375":4,"2490":1,"2494":1,"2499":3,"2702":1,"2746":1,"2895":1}}],["adaptation",{"2":{"2568":1}}],["adapting",{"2":{"2464":1}}],["adapter",{"2":{"384":1,"2454":1}}],["adapted",{"2":{"179":1}}],["adapt",{"2":{"32":1,"191":1,"2926":1}}],["addenda",{"0":{"1592":1}}],["added",{"2":{"14":1,"49":8,"63":1,"67":1,"72":2,"74":1,"81":1,"82":1,"86":1,"93":1,"112":1,"114":2,"132":1,"134":1,"149":4,"153":1,"154":1,"158":1,"160":1,"173":1,"175":2,"176":8,"189":1,"191":2,"196":1,"201":1,"202":1,"203":1,"211":1,"222":2,"230":1,"231":1,"234":3,"236":3,"243":1,"249":2,"266":2,"277":1,"285":1,"317":1,"331":1,"339":1,"403":1,"452":1,"494":1,"509":1,"572":1,"613":1,"681":1,"1204":1,"1434":1,"1448":1,"1463":1,"1464":3,"1466":1,"1485":1,"1518":1,"1533":1,"1542":1,"1631":1,"1633":2,"1640":1,"1662":1,"1667":1,"1785":2,"1803":2,"1809":1,"1810":1,"1817":1,"1952":1,"1984":1,"2004":1,"2182":1,"2281":1,"2366":1,"2425":1,"2439":1,"2570":1,"2609":2,"2639":1,"2678":1,"2744":1,"2747":2,"2850":1}}],["addr2",{"2":{"922":1,"957":1,"1093":1,"1127":1,"1161":1}}],["addr1",{"2":{"922":1,"957":1,"1093":1,"1127":1,"1161":1}}],["addr",{"2":{"236":1,"749":1,"991":1,"1025":1,"1059":1,"1217":1,"1974":1,"2508":8}}],["addressed",{"2":{"750":1,"759":1,"1986":1}}],["addresses",{"2":{"236":1,"249":1,"731":1,"762":1,"807":1,"829":1,"833":1,"858":1,"865":1,"890":1,"895":1,"922":1,"930":1,"957":1,"964":1,"991":1,"998":1,"1025":1,"1032":1,"1059":1,"1066":1,"1093":1,"1100":1,"1127":1,"1134":1,"1161":1,"1168":1,"1217":1,"1221":1,"2070":1,"2725":1}}],["addressable",{"2":{"697":1,"1283":2,"2178":2}}],["addressing",{"0":{"762":1,"803":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1217":1},"2":{"198":1,"201":1,"213":1,"224":1,"238":1,"613":1,"762":1,"1953":1,"2206":1,"2441":1}}],["address",{"0":{"769":1,"772":1,"775":1,"778":1,"793":2,"1734":2,"1736":2},"1":{"770":1,"771":1,"773":1,"774":1,"776":1,"777":1,"779":1,"780":1,"794":2,"795":2,"1735":2,"1737":2},"2":{"50":1,"73":1,"114":2,"191":1,"236":1,"579":1,"580":1,"581":1,"613":1,"670":2,"732":3,"749":9,"750":1,"753":1,"759":2,"762":6,"770":2,"772":1,"773":2,"776":2,"779":2,"781":1,"782":2,"784":1,"785":2,"787":1,"788":2,"790":1,"791":2,"793":2,"794":2,"803":2,"808":4,"811":1,"828":8,"829":5,"834":4,"838":1,"857":8,"858":5,"866":4,"870":1,"889":8,"890":5,"896":4,"900":1,"921":8,"922":17,"931":4,"935":1,"956":8,"957":17,"965":4,"969":1,"990":8,"991":5,"999":4,"1003":1,"1024":8,"1025":5,"1033":4,"1037":1,"1058":8,"1059":5,"1067":4,"1071":1,"1092":8,"1093":17,"1101":4,"1105":1,"1126":8,"1127":17,"1135":4,"1139":1,"1160":8,"1161":17,"1169":4,"1173":1,"1216":8,"1217":5,"1222":4,"1226":1,"1291":2,"1442":1,"1729":2,"1734":1,"1735":2,"1736":1,"1737":2,"1950":2,"1953":1,"1970":2,"1974":1,"1980":2,"2444":1,"2506":1,"2508":1,"2694":1,"2763":3,"2883":2}}],["additive",{"0":{"718":1,"1480":1},"2":{"222":3,"236":2,"249":1,"716":1,"720":2,"723":1,"1477":1,"1480":2,"1484":1,"2856":1}}],["addition",{"2":{"114":1,"176":1,"194":1,"211":34,"249":1,"328":1,"1364":1,"1428":1,"1447":1,"1621":1,"1777":1,"1843":1,"1855":1,"2094":1,"2207":1,"2259":1,"2294":1,"2309":1,"2431":1,"2551":1,"2904":1,"2913":2}}],["additionally",{"2":{"67":1,"86":1,"175":1,"209":1,"262":1,"588":1,"651":1,"717":1,"718":1,"1340":1,"1416":1,"1417":1,"1466":1,"1467":1,"1485":1,"1499":1,"1526":1,"1529":1,"1534":1,"1589":1,"1641":1,"1664":1,"1665":1,"1666":1,"1675":1,"1771":1,"1772":1,"1773":1,"1789":1,"1923":1,"1976":1,"1990":1,"1999":1,"2181":1,"2319":1,"2381":1,"2384":1,"2391":1,"2453":1,"2506":1,"2554":1,"2576":1,"2603":1,"2650":1,"2749":1,"2797":1}}],["additional",{"0":{"594":1,"1404":1,"1405":1,"1852":1,"2005":1,"2045":1,"2079":1,"2091":1,"2281":1,"2574":1,"2670":1,"2722":1},"1":{"2006":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1,"2671":1,"2672":1,"2723":1,"2724":1},"2":{"50":1,"86":2,"94":1,"114":1,"134":1,"176":1,"189":1,"191":3,"198":1,"201":1,"210":1,"211":1,"213":1,"236":1,"308":1,"433":1,"555":1,"623":1,"696":1,"1209":1,"1213":1,"1298":1,"1328":1,"1340":1,"1388":1,"1390":1,"1395":1,"1400":1,"1401":1,"1405":1,"1409":1,"1422":1,"1428":1,"1451":1,"1464":2,"1534":1,"1536":1,"1540":1,"1591":3,"1662":1,"1664":1,"1697":1,"1770":1,"1773":1,"1849":1,"1940":1,"1952":1,"1966":1,"1978":1,"1981":1,"1988":2,"1998":1,"1999":1,"2004":1,"2009":1,"2012":1,"2065":1,"2069":1,"2072":1,"2079":1,"2085":2,"2179":1,"2183":1,"2184":1,"2261":1,"2275":1,"2276":1,"2318":1,"2325":1,"2326":1,"2383":1,"2388":1,"2391":1,"2417":1,"2435":1,"2439":1,"2453":1,"2454":1,"2455":1,"2581":1,"2725":1,"2727":1,"2740":1,"2741":1,"2744":1,"2770":1,"2889":1,"2890":1,"2940":1,"2944":2,"2948":1}}],["additions",{"0":{"49":1,"63":1,"74":1,"93":1},"2":{"149":1,"211":147,"222":1,"236":1,"249":1,"285":1,"2412":1}}],["adding",{"0":{"14":1,"587":1,"667":1,"1627":1,"1628":1,"1931":1,"2004":1,"2607":1,"2608":1,"2711":1,"2712":1,"2713":1,"2714":1,"2944":1},"1":{"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"1932":1,"1933":1,"2005":1,"2006":1,"2715":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2722":1,"2723":1,"2724":1},"2":{"74":1,"86":1,"99":1,"114":1,"173":1,"201":1,"213":1,"236":1,"249":1,"266":1,"277":1,"339":1,"429":1,"500":1,"592":1,"596":1,"629":1,"667":1,"668":1,"672":1,"729":1,"753":1,"805":1,"831":1,"859":1,"863":1,"893":1,"924":1,"928":1,"958":1,"962":1,"992":1,"996":1,"1026":1,"1030":1,"1060":1,"1064":1,"1098":1,"1132":1,"1162":1,"1166":1,"1219":1,"1287":1,"1342":1,"1343":1,"1354":1,"1390":1,"1396":1,"1405":1,"1413":1,"1422":1,"1446":2,"1480":1,"1501":1,"1517":1,"1533":1,"1595":1,"1597":1,"1602":1,"1622":1,"1639":1,"1662":1,"1665":1,"1686":1,"1800":1,"1919":1,"1945":1,"1984":1,"1986":1,"2004":1,"2005":2,"2009":1,"2053":1,"2056":1,"2068":1,"2178":1,"2271":1,"2272":1,"2276":1,"2284":1,"2309":2,"2330":1,"2378":1,"2410":2,"2435":1,"2605":1,"2640":1,"2652":1,"2683":1,"2705":1,"2707":1,"2711":2,"2746":1,"2747":2,"2763":11,"2890":1,"2891":2,"2910":1,"2919":1,"2920":1,"2925":1,"2926":1,"2944":1,"2949":2}}],["add",{"0":{"35":1,"163":1,"173":1,"452":1,"668":1,"669":1,"672":1,"673":1,"1341":1,"1809":1,"1815":1,"2006":1,"2021":1,"2364":1,"2598":1,"2599":1},"1":{"36":1,"670":1,"671":1,"1342":1,"1810":1,"1811":1,"1816":1,"1817":1,"2022":1,"2365":1,"2366":1},"2":{"28":1,"31":1,"32":2,"34":2,"49":4,"63":5,"65":4,"70":1,"74":5,"76":2,"77":2,"92":1,"93":24,"110":2,"114":38,"119":1,"123":1,"130":2,"133":2,"134":26,"149":21,"160":21,"175":1,"176":33,"189":4,"190":1,"191":27,"199":25,"202":2,"211":25,"221":1,"222":18,"235":1,"236":30,"249":23,"266":15,"273":1,"277":7,"285":17,"294":8,"307":3,"308":15,"317":5,"328":15,"333":3,"339":8,"344":6,"403":1,"411":1,"420":1,"421":1,"452":2,"495":1,"505":1,"509":1,"510":1,"512":1,"540":1,"572":2,"587":1,"589":1,"593":1,"596":1,"613":4,"623":2,"624":2,"625":2,"647":2,"666":6,"668":1,"669":1,"672":1,"673":1,"681":2,"686":1,"698":1,"699":1,"725":1,"726":1,"727":1,"742":1,"761":1,"801":1,"802":1,"827":1,"828":1,"856":1,"857":1,"860":1,"861":1,"888":1,"889":1,"891":1,"920":1,"921":1,"925":1,"926":1,"955":1,"956":1,"959":1,"960":1,"989":1,"990":1,"993":1,"994":1,"1023":1,"1024":1,"1027":1,"1028":1,"1057":1,"1058":1,"1061":1,"1062":1,"1091":1,"1092":1,"1095":1,"1096":1,"1125":1,"1126":1,"1129":1,"1130":1,"1159":1,"1160":1,"1163":1,"1164":1,"1203":3,"1204":3,"1209":1,"1213":1,"1215":1,"1216":1,"1246":1,"1267":1,"1284":1,"1285":1,"1288":1,"1297":1,"1300":1,"1301":1,"1311":1,"1322":1,"1329":1,"1330":1,"1331":1,"1356":1,"1362":1,"1364":3,"1383":1,"1392":1,"1403":1,"1407":1,"1414":1,"1417":4,"1420":3,"1431":1,"1446":1,"1462":1,"1464":4,"1465":1,"1466":1,"1470":3,"1471":2,"1472":7,"1473":1,"1477":1,"1478":1,"1484":1,"1485":1,"1490":2,"1492":2,"1493":1,"1500":1,"1503":3,"1510":1,"1517":1,"1518":1,"1522":1,"1526":1,"1534":1,"1544":1,"1545":1,"1546":1,"1578":1,"1579":1,"1589":1,"1590":1,"1591":1,"1594":3,"1600":2,"1602":1,"1605":1,"1622":1,"1627":1,"1628":2,"1640":1,"1646":1,"1661":1,"1663":1,"1664":1,"1667":2,"1698":1,"1699":1,"1701":1,"1739":1,"1741":1,"1768":1,"1790":1,"1797":2,"1801":1,"1802":1,"1803":1,"1815":1,"1816":1,"1845":1,"1850":2,"1921":1,"1922":1,"1932":1,"1944":1,"1957":1,"1962":3,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1998":1,"2009":1,"2017":1,"2052":1,"2055":1,"2066":1,"2068":1,"2069":1,"2081":1,"2087":1,"2088":2,"2089":1,"2179":1,"2181":1,"2184":1,"2192":1,"2193":1,"2205":1,"2215":1,"2220":1,"2221":1,"2225":1,"2250":1,"2268":2,"2271":1,"2272":2,"2273":1,"2274":2,"2276":1,"2277":1,"2278":1,"2280":1,"2284":1,"2293":2,"2294":1,"2295":1,"2296":1,"2297":1,"2312":3,"2317":3,"2318":2,"2319":1,"2320":1,"2322":1,"2326":1,"2328":1,"2329":4,"2330":1,"2331":3,"2364":1,"2365":1,"2376":1,"2384":1,"2391":1,"2410":3,"2417":2,"2431":1,"2464":1,"2503":1,"2579":1,"2585":1,"2586":1,"2599":1,"2600":2,"2608":4,"2634":2,"2637":2,"2639":3,"2640":5,"2678":1,"2700":1,"2703":1,"2746":1,"2754":1,"2759":1,"2760":1,"2761":1,"2764":4,"2765":1,"2770":2,"2772":1,"2885":1,"2886":1,"2889":1,"2890":2,"2894":1,"2910":2,"2912":1,"2919":2,"2920":2,"2921":3,"2928":3,"2930":3,"2944":2,"2946":1,"2948":3,"2949":7}}],["adds",{"2":{"13":1,"35":1,"49":2,"50":1,"74":1,"107":1,"114":1,"173":1,"222":1,"229":1,"249":1,"277":1,"297":1,"443":1,"452":1,"565":1,"1472":1,"1493":1,"1538":1,"1627":1,"2277":1,"2293":1,"2309":1,"2383":1,"2640":1,"2683":1,"2948":1}}],["agin",{"2":{"2510":1,"2548":1}}],["age",{"2":{"1409":1}}],["ag",{"2":{"1364":1,"1485":4,"1486":8,"2526":7,"2552":7}}],["agaim",{"2":{"651":1}}],["again",{"2":{"114":1,"134":1,"149":1,"402":1,"596":1,"711":2,"1320":1,"1422":2,"1462":1,"1483":1,"1498":1,"1526":1,"1539":1,"1618":1,"1619":1,"1648":1,"1661":2,"1762":2,"1764":1,"1776":1,"1782":1,"1785":1,"1786":1,"1789":1,"1791":1,"2000":1,"2073":1,"2076":2,"2191":1,"2275":1,"2309":1,"2310":1,"2387":1,"2416":1,"2466":1,"2508":1,"2510":4,"2521":1,"2548":4,"2627":1,"2650":1,"2746":1}}],["against",{"2":{"26":1,"49":1,"51":1,"134":1,"176":1,"251":1,"263":1,"265":2,"275":1,"405":1,"411":1,"412":1,"459":2,"494":1,"589":1,"749":1,"1528":1,"2414":1,"2427":1,"2502":1,"2567":1,"2634":1,"2743":1,"2748":1,"2847":1,"2902":1,"2939":1}}],["agreed",{"2":{"204":1,"2707":1}}],["agnostic",{"0":{"1437":1},"1":{"1438":1,"1439":1},"2":{"17":1,"114":1,"796":1,"1404":1,"1439":1}}],["abab",{"0":{"2917":1}}],["abba",{"0":{"2916":1}}],["abbreviate",{"2":{"519":1}}],["abbreviations",{"2":{"519":1,"1593":1}}],["abbreviation",{"2":{"519":1,"2694":1}}],["abuse",{"2":{"2566":1,"2746":1}}],["abuser",{"2":{"621":1}}],["ab5",{"2":{"1925":1,"2527":1}}],["ab4",{"2":{"1925":1,"2527":1}}],["ab3",{"2":{"1925":1,"2527":1}}],["ab375d3",{"2":{"74":1}}],["ab2",{"2":{"1925":1,"2527":1}}],["ab1",{"2":{"1925":1,"2527":1}}],["ab",{"2":{"1605":4,"1617":5,"1622":1,"1925":1,"2527":1,"2915":6,"2916":1,"2917":4}}],["abc",{"2":{"317":1}}],["abcd",{"2":{"266":1,"1332":2}}],["abcminiuser",{"2":{"12":1}}],["abort",{"2":{"2634":2}}],["aborted",{"2":{"764":1}}],["above",{"2":{"228":1,"233":1,"266":1,"276":1,"307":2,"333":1,"379":1,"411":1,"414":1,"491":1,"513":1,"517":1,"589":1,"591":1,"619":1,"647":1,"656":1,"657":1,"672":1,"759":1,"799":2,"1286":1,"1330":1,"1333":1,"1349":1,"1376":1,"1407":1,"1417":5,"1422":1,"1425":1,"1450":1,"1472":1,"1503":2,"1538":4,"1551":1,"1612":1,"1630":2,"1681":1,"1790":1,"1795":1,"1836":1,"1926":1,"1970":1,"1975":1,"1984":1,"1987":1,"1989":1,"2011":1,"2013":1,"2068":1,"2077":1,"2190":1,"2191":1,"2198":1,"2260":2,"2275":1,"2280":1,"2303":1,"2309":1,"2318":1,"2319":4,"2329":1,"2331":1,"2383":1,"2416":1,"2423":2,"2454":1,"2505":1,"2508":1,"2559":1,"2567":1,"2570":1,"2571":1,"2583":1,"2600":1,"2612":1,"2626":1,"2629":1,"2671":1,"2683":2,"2709":1,"2714":1,"2721":1,"2746":1,"2747":1,"2763":2,"2764":4,"2788":1,"2789":1,"2912":1,"2918":3,"2919":3,"2920":1,"2922":1,"2923":1,"2927":1,"2930":1,"2937":1,"2938":1,"2939":1}}],["about",{"2":{"49":1,"50":1,"93":1,"110":1,"114":1,"160":1,"176":1,"240":1,"251":1,"377":1,"409":1,"414":1,"437":2,"540":2,"552":1,"570":6,"571":1,"578":1,"610":2,"613":2,"619":1,"620":1,"626":2,"632":1,"644":1,"665":1,"762":1,"1314":1,"1321":1,"1342":1,"1344":1,"1365":1,"1422":1,"1537":1,"1630":1,"1661":1,"1935":1,"1953":2,"1962":2,"1974":1,"2079":1,"2186":1,"2261":1,"2275":6,"2300":3,"2410":1,"2422":1,"2431":1,"2460":1,"2510":1,"2563":1,"2567":1,"2569":2,"2573":1,"2602":1,"2679":1,"2683":1,"2746":2,"2753":1,"2851":2,"2852":1,"2906":1,"2907":1,"2931":1,"2939":2}}],["abstracted",{"2":{"2684":1}}],["abstracting",{"2":{"2418":2}}],["abstraction",{"2":{"249":1,"277":1,"796":1,"798":1,"1577":1,"1845":1,"2081":1,"2707":1,"2744":1,"2824":1}}],["abstractions",{"2":{"244":1,"1404":1,"2744":2}}],["absence",{"2":{"717":1,"1193":1}}],["absent",{"2":{"433":2,"2871":1,"2877":1,"2878":1}}],["absinthe",{"2":{"159":2}}],["absolutely",{"2":{"2431":1,"2746":1}}],["absolute",{"0":{"1975":1,"1976":1},"2":{"100":1,"114":1,"463":1,"1645":1,"1659":1,"1974":4,"2252":1,"2502":1,"2869":4}}],["abelx",{"2":{"134":1}}],["ability",{"2":{"49":2,"65":1,"93":1,"100":1,"114":1,"131":1,"134":1,"153":1,"160":1,"164":1,"173":1,"174":1,"176":1,"199":1,"285":1,"565":1,"655":1,"764":1,"1201":1,"1366":2,"1421":1,"1662":1,"2178":1,"2277":1,"2278":1,"2683":1,"2727":1,"2901":1,"2902":1,"2921":3}}],["able",{"2":{"23":1,"50":1,"114":1,"153":2,"228":1,"308":1,"412":1,"500":1,"596":1,"601":1,"613":1,"619":1,"626":1,"629":1,"711":1,"1320":1,"1410":1,"1416":1,"1435":1,"1440":1,"1463":1,"1541":1,"1681":2,"1765":1,"1766":1,"1783":1,"1802":1,"1851":1,"1919":1,"1994":1,"2048":1,"2057":1,"2090":1,"2179":1,"2208":1,"2294":1,"2298":1,"2305":1,"2310":1,"2319":1,"2381":1,"2382":1,"2400":1,"2402":1,"2404":1,"2410":1,"2467":1,"2612":1,"2619":1,"2629":1,"2655":1,"2656":1,"2683":1,"2709":2,"2710":1,"2763":1,"2769":1,"2884":1,"2906":1,"2908":1,"2946":1}}],["abnt2",{"2":{"5":1,"2714":1,"2887":2}}],["acl2",{"2":{"1933":1,"1935":1,"1937":7,"1938":2,"2528":1}}],["acl1",{"2":{"1933":1,"1935":1,"1937":8,"1938":2,"2528":1}}],["acl0",{"2":{"1933":1,"1935":1,"1937":7,"1938":2,"2528":1}}],["acm=y",{"2":{"1317":1}}],["acm",{"2":{"1317":1}}],["acknowledge",{"2":{"565":1,"2191":1}}],["acknowledgment",{"2":{"312":1}}],["achievable",{"2":{"2901":1}}],["achieved",{"2":{"1795":1,"1953":1,"2764":1,"2884":1}}],["achieve",{"2":{"1777":1,"2211":1,"2317":1,"2423":1,"2425":1,"2763":1}}],["achordion",{"2":{"294":1}}],["acheron",{"2":{"211":2}}],["acquire",{"2":{"277":1,"2407":1}}],["ac",{"2":{"236":1,"1446":1,"1526":1,"1529":1,"1530":3,"2226":1,"2514":3,"2925":1}}],["acid",{"2":{"211":1}}],["acid3",{"2":{"143":13,"149":2,"308":1}}],["acr60",{"0":{"256":1},"1":{"257":1,"258":1,"259":1,"260":1},"2":{"143":2,"256":1,"266":1}}],["across",{"2":{"31":1,"34":1,"118":1,"128":1,"137":1,"138":1,"167":1,"246":1,"262":1,"283":1,"285":1,"796":1,"1538":1,"1702":1,"2325":1,"2919":1,"2930":1}}],["accident",{"2":{"2912":1}}],["accidental",{"2":{"246":1,"289":1,"1455":1,"1608":1,"1614":1,"2922":1,"2925":1}}],["accidentally",{"2":{"194":1,"198":1,"711":1,"2057":1}}],["accumulates",{"2":{"2191":1}}],["accumulate",{"2":{"1994":1}}],["accumulated",{"2":{"1994":13}}],["accuracy",{"2":{"1938":1,"2291":1}}],["accurately",{"2":{"1846":1,"2082":1,"2717":1}}],["accurate",{"2":{"10":1,"1196":1,"1199":1,"1288":1,"2379":1,"2466":1}}],["accompanying",{"2":{"2568":1,"2747":1}}],["accompanied",{"2":{"118":1,"1501":1,"2904":1}}],["accomplish",{"2":{"1388":1,"1423":1,"2310":1,"2573":1,"2576":1}}],["accomplished",{"2":{"599":1}}],["accommodate",{"2":{"149":1,"1486":1,"1609":1}}],["accounted",{"2":{"1286":1}}],["account",{"2":{"149":1,"211":1,"222":1,"302":1,"470":1,"613":2,"2410":2,"2461":1,"2506":1,"2591":2,"2594":1,"2605":1,"2632":2}}],["according",{"2":{"134":2,"693":1,"694":1,"2016":1,"2086":1,"2455":1,"2598":1,"2616":1,"2926":1,"2927":1}}],["accordingly",{"2":{"126":1,"220":1,"340":1,"923":1,"1094":1,"1128":1,"2319":1,"2454":1,"2702":1,"2711":1}}],["accented",{"2":{"2886":1}}],["accel",{"2":{"1937":3}}],["accelerating",{"2":{"1936":1}}],["acceleration",{"2":{"48":2,"1933":6,"1934":1,"1935":4,"1936":3,"1937":1,"1938":4,"1939":1,"1940":4,"2053":1,"2528":6}}],["accelerate",{"2":{"2428":1,"2940":1}}],["accelerates",{"2":{"1934":4,"1939":1}}],["accelerated",{"0":{"1935":1},"2":{"1934":1,"1935":1,"1936":5,"1938":2,"1939":1}}],["accel2",{"2":{"231":1}}],["accessor",{"2":{"2764":2}}],["accessible",{"2":{"1348":1,"2431":1}}],["accessing",{"2":{"323":1,"379":1,"1364":1,"2626":1,"2764":2}}],["accessed",{"2":{"560":1,"1364":1,"1789":1}}],["accesses",{"2":{"114":1,"1791":1}}],["access",{"2":{"222":1,"240":1,"308":1,"323":1,"390":1,"489":2,"492":1,"495":4,"500":1,"538":1,"656":1,"670":2,"688":1,"796":1,"1332":1,"1416":1,"1440":1,"1634":1,"1663":1,"1779":1,"1789":1,"1923":1,"2417":4,"2552":1,"2594":1,"2600":2,"2676":1,"2680":2,"2746":1,"2769":2,"2912":2}}],["acceptable",{"2":{"2744":1,"2746":1}}],["acceptance",{"2":{"403":1}}],["accepts",{"2":{"402":1,"433":1,"463":1,"581":1,"2762":1,"2764":2}}],["accepted",{"2":{"201":1,"265":1,"403":1,"609":1,"615":1,"1463":1,"2569":1,"2745":1,"2746":3}}],["accepting",{"2":{"199":1,"213":1,"224":1,"608":1,"1343":1,"2712":1,"2713":1}}],["accept",{"2":{"173":1,"512":1,"1422":1,"1723":1,"2222":1,"2410":1,"2418":1,"2458":1,"2462":1,"2502":1,"2746":1}}],["actor",{"2":{"2599":3}}],["acto",{"2":{"2280":1}}],["acts",{"2":{"1795":2,"2523":1,"2575":1,"2834":1,"2924":1}}],["act",{"2":{"283":3,"746":1,"1364":1,"1593":1,"2009":1,"2068":1,"2316":1,"2466":1,"2566":1,"2639":1}}],["actuators",{"2":{"1685":1}}],["actuated",{"2":{"1681":4,"2434":1}}],["actuation",{"2":{"236":1,"1681":1}}],["actual",{"2":{"367":1,"397":1,"630":1,"632":1,"651":1,"1366":1,"1382":1,"1841":1,"1947":1,"1961":1,"1974":1,"2057":1,"2207":1,"2286":1,"2300":1,"2470":1,"2472":1,"2482":1,"2496":1,"2882":1,"2936":1,"2942":1}}],["actually",{"2":{"13":1,"28":1,"51":1,"83":1,"182":1,"455":1,"543":1,"586":1,"615":1,"690":1,"750":1,"754":1,"1338":1,"1345":1,"1350":1,"1356":1,"1361":1,"1409":1,"1423":1,"1470":1,"1471":1,"1529":1,"1953":1,"1990":1,"2219":1,"2222":1,"2265":1,"2266":1,"2300":1,"2317":1,"2434":2,"2470":1,"2473":2,"2503":1,"2711":1,"2766":1,"2794":1,"2884":2,"2912":1,"2931":1,"2949":1}}],["activating",{"2":{"246":1,"328":1,"1422":1,"1782":3,"1791":1,"1999":1,"2053":1,"2696":1,"2921":1}}],["activation",{"0":{"246":1,"1613":1,"1784":1,"2014":1},"2":{"152":1,"246":1,"289":1,"328":1,"1366":1,"1367":1,"1455":1,"1594":1,"1618":1,"1681":2,"1779":1,"1781":1,"1782":3,"1784":1,"2003":2,"2008":2,"2014":6,"2015":1,"2254":2,"2925":1}}],["activates",{"2":{"1422":6,"1427":1,"1446":1,"1601":1,"1770":1,"1779":1,"1985":1,"2320":1,"2563":1,"2700":1}}],["activate",{"0":{"2000":1},"2":{"194":2,"211":1,"615":1,"1195":1,"1198":1,"1201":1,"1203":2,"1204":2,"1312":1,"1422":1,"1427":1,"1473":1,"1593":1,"1594":6,"1595":1,"1604":2,"1611":1,"1612":2,"1613":1,"1615":1,"1617":1,"1625":1,"1690":2,"1766":1,"1772":1,"1776":2,"1781":3,"1782":1,"1784":4,"1999":3,"2014":1,"2254":3,"2294":1,"2331":1,"2564":1,"2575":1,"2651":1,"2700":1,"2769":1,"2825":1,"2861":2,"2912":1,"2921":1}}],["activated",{"2":{"73":1,"236":1,"1422":4,"1427":1,"1446":1,"1485":1,"1486":2,"1546":1,"1595":1,"1609":1,"1616":1,"1617":1,"1681":1,"1781":3,"1784":1,"1937":1,"2014":1,"2193":1,"2466":1,"2700":1,"2702":1}}],["actively",{"2":{"2565":1,"2566":1}}],["active",{"0":{"1814":1,"2012":1,"2360":1},"1":{"2361":1},"2":{"105":8,"149":1,"191":1,"199":1,"249":1,"312":2,"320":1,"339":1,"596":1,"1364":3,"1366":2,"1367":2,"1422":5,"1425":1,"1427":2,"1428":2,"1432":1,"1451":1,"1462":5,"1484":1,"1533":2,"1593":1,"1598":1,"1600":1,"1601":3,"1619":1,"1627":1,"1641":7,"1678":4,"1681":3,"1687":1,"1690":1,"1781":3,"1791":1,"1814":1,"1937":2,"1985":3,"1994":2,"1999":1,"2003":1,"2006":1,"2008":2,"2011":2,"2014":2,"2015":1,"2065":1,"2069":1,"2188":1,"2189":4,"2253":1,"2254":4,"2276":1,"2278":2,"2309":1,"2310":2,"2319":3,"2335":1,"2360":1,"2361":1,"2523":1,"2559":2,"2564":1,"2579":1,"2650":1,"2652":1,"2824":1,"2930":2}}],["activity",{"2":{"74":2,"211":2,"249":1,"647":5,"2214":1,"2218":2,"2276":3,"2668":1,"2871":1,"2878":1,"2880":2}}],["acting",{"2":{"14":1,"2774":1}}],["actioned",{"2":{"16":1}}],["actions",{"0":{"3":1,"7":1,"15":1,"1933":1,"2610":1},"2":{"3":2,"7":3,"15":2,"16":1,"38":1,"114":2,"134":2,"247":1,"320":1,"402":1,"409":1,"417":1,"574":1,"579":1,"580":1,"1353":1,"1409":1,"1417":1,"1444":1,"1551":1,"1602":1,"1605":1,"1766":2,"1781":2,"1788":1,"1931":1,"1933":1,"1958":1,"2213":1,"2309":3,"2312":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":3,"2468":1,"2558":1,"2591":1,"2599":3,"2601":1,"2602":1,"2603":1,"2604":1,"2608":1,"2610":1,"2663":1,"2751":1,"2913":1,"2928":1,"2930":3}}],["action",{"0":{"3":1,"7":1,"15":1,"40":1,"53":1,"67":1,"72":1,"85":1,"101":1,"121":1,"139":1,"140":1,"155":1,"165":1,"180":1,"193":1,"205":1,"216":1,"225":1,"239":1,"252":1,"269":1,"280":1,"290":1,"299":1,"310":1,"321":1,"2302":1,"2599":1},"1":{"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"86":1,"87":1,"88":1,"89":1,"90":1,"102":1,"103":1,"104":1,"105":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"140":1,"141":1,"142":1,"143":1,"156":1,"157":1,"158":1,"159":1,"166":1,"167":1,"168":1,"169":1,"170":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"194":1,"195":1,"196":1,"197":1,"206":1,"207":1,"217":1,"218":1,"219":1,"220":1,"221":1,"226":1,"240":1,"241":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"270":1,"271":1,"272":1,"273":1,"281":1,"291":1,"300":1,"311":1,"312":1,"322":1,"323":1,"324":1,"325":1,"2303":1,"2304":1,"2305":1,"2306":1},"2":{"16":1,"38":9,"49":1,"75":2,"120":7,"140":1,"149":2,"199":6,"203":1,"211":1,"317":1,"323":3,"324":6,"325":4,"353":1,"414":3,"487":1,"562":3,"564":1,"565":1,"579":1,"588":1,"605":1,"711":1,"1427":1,"1441":7,"1444":9,"1472":1,"1518":2,"1533":3,"1602":1,"1605":3,"1622":2,"1765":1,"1779":1,"1781":2,"1787":1,"1788":2,"1852":2,"1934":1,"1935":1,"1937":4,"2065":1,"2068":1,"2070":1,"2091":4,"2182":3,"2191":1,"2302":2,"2309":12,"2310":2,"2312":2,"2314":2,"2315":4,"2316":7,"2317":6,"2318":2,"2319":4,"2557":5,"2562":1,"2590":1,"2678":1,"2831":1,"2889":2,"2890":2,"2892":1,"2913":6,"2919":7,"2920":5,"2928":2,"2940":1}}],["averages",{"2":{"2749":1}}],["average",{"2":{"2378":1,"2379":2,"2910":1}}],["avail",{"2":{"2612":1}}],["availability",{"2":{"684":1,"2746":1}}],["available",{"0":{"1281":1,"1408":1,"2440":1},"1":{"1282":1,"2441":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1},"2":{"10":1,"73":1,"83":1,"124":2,"153":1,"160":1,"164":1,"186":1,"189":1,"202":1,"210":1,"211":1,"213":1,"232":2,"235":1,"283":1,"285":1,"288":2,"298":1,"370":1,"377":1,"379":1,"411":1,"430":1,"434":1,"444":1,"469":3,"488":1,"510":1,"556":1,"570":4,"575":1,"578":1,"585":1,"615":1,"665":1,"668":1,"684":1,"696":1,"714":1,"716":1,"749":1,"750":1,"754":2,"803":1,"1192":1,"1196":1,"1201":1,"1205":1,"1211":1,"1212":1,"1213":1,"1266":1,"1282":1,"1311":1,"1323":1,"1326":1,"1343":1,"1345":2,"1348":1,"1389":1,"1395":1,"1409":1,"1464":1,"1471":1,"1484":1,"1485":2,"1489":1,"1490":2,"1493":1,"1532":1,"1606":1,"1626":1,"1678":2,"1773":1,"1849":1,"1956":1,"1984":1,"1987":1,"1989":1,"2037":1,"2044":1,"2048":1,"2085":1,"2210":1,"2297":1,"2377":2,"2378":2,"2382":1,"2383":1,"2385":1,"2386":1,"2387":1,"2388":1,"2391":1,"2392":1,"2394":1,"2397":1,"2399":1,"2400":2,"2402":2,"2404":2,"2417":2,"2427":1,"2433":1,"2450":1,"2452":1,"2453":3,"2474":1,"2482":1,"2501":1,"2509":1,"2516":2,"2567":1,"2568":2,"2613":1,"2621":1,"2628":1,"2664":1,"2687":1,"2704":1,"2716":1,"2723":1,"2724":1,"2728":1,"2737":1,"2740":1,"2741":1,"2746":1,"2764":6,"2885":1,"2886":1}}],["avalon",{"2":{"211":1}}],["avoids",{"2":{"1431":1,"2590":1}}],["avoided",{"0":{"2667":1},"2":{"531":1,"532":1,"537":1,"677":1,"2569":1,"2667":3,"2671":1,"2764":1}}],["avoiding",{"0":{"1528":1},"2":{"344":3,"403":1,"1427":1}}],["avoid",{"0":{"520":1},"2":{"34":1,"114":2,"176":1,"191":1,"195":1,"271":1,"289":1,"308":1,"494":1,"516":1,"528":1,"536":1,"615":1,"665":1,"675":1,"1332":1,"1415":1,"1424":1,"1428":2,"1485":1,"1558":1,"1593":1,"1668":1,"1702":1,"1954":1,"1990":1,"2008":1,"2012":2,"2057":1,"2379":1,"2431":3,"2590":1,"2658":1,"2922":1,"2925":1,"2936":1}}],["avrisp",{"2":{"2484":1,"2488":1,"2502":1}}],["avr109",{"2":{"2386":3}}],["avr8",{"2":{"573":1}}],["avrdudess",{"2":{"2386":1,"2389":1}}],["avrdude",{"2":{"236":1,"568":2,"1472":1,"2273":3,"2386":3,"2387":6,"2389":2,"2417":1,"2484":2,"2486":2,"2488":2,"2490":3,"2492":2,"2494":2,"2496":2,"2502":19,"2503":2}}],["avrs",{"2":{"160":1,"2383":1,"2889":1}}],["avr",{"0":{"123":1,"546":1,"573":1,"688":1,"693":1,"715":1,"763":1,"1247":1,"1268":1,"1474":1,"1552":1,"2041":1,"2441":1,"2803":1,"2888":1},"1":{"1475":1,"1553":1,"1554":1,"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"2":1,"28":2,"74":1,"111":1,"113":1,"114":5,"123":2,"130":1,"134":3,"149":3,"153":2,"160":4,"166":1,"172":1,"176":5,"191":2,"199":1,"211":1,"215":2,"222":2,"266":2,"308":1,"545":3,"570":2,"611":1,"619":1,"685":2,"715":1,"746":2,"797":2,"798":2,"1192":1,"1248":1,"1290":2,"1379":1,"1392":1,"1393":1,"1740":1,"1943":4,"1953":1,"1954":2,"2261":2,"2262":1,"2273":3,"2275":1,"2374":1,"2375":1,"2382":1,"2389":1,"2390":1,"2418":1,"2441":1,"2465":1,"2482":1,"2490":1,"2496":1,"2502":2,"2503":3,"2653":1,"2657":1,"2662":1,"2700":1,"2760":1,"2803":1,"2818":1,"2835":1,"2844":1,"2888":2,"2901":1,"2907":1,"2934":2}}],["au",{"2":{"1485":3,"1489":2,"1495":5,"2512":5}}],["audience",{"2":{"529":1}}],["audio",{"0":{"28":1,"215":1,"714":1,"1380":1,"1473":1,"1486":1,"1488":1,"1493":1,"1495":1,"2328":1,"2512":1,"2856":1,"2891":1},"1":{"715":1,"716":1,"717":1,"718":1,"719":1,"720":1,"721":1,"722":1,"723":1,"1474":1,"1475":1,"1476":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1,"1484":1,"1485":1,"1486":1,"1487":1,"1488":1,"1489":1,"1490":1,"1491":1,"1492":1,"1493":1,"1494":1,"1495":1,"2330":1},"2":{"28":6,"70":1,"74":1,"75":1,"105":4,"111":1,"112":2,"114":1,"133":1,"134":1,"149":1,"188":1,"191":3,"215":1,"222":6,"231":4,"236":1,"249":2,"266":3,"294":1,"317":1,"333":1,"339":1,"561":2,"574":3,"651":1,"714":2,"716":3,"717":4,"718":1,"719":12,"720":4,"721":5,"722":5,"1380":1,"1392":1,"1405":1,"1444":1,"1465":1,"1473":1,"1474":10,"1475":2,"1476":1,"1477":6,"1478":3,"1479":3,"1480":7,"1481":2,"1482":4,"1483":5,"1484":3,"1485":17,"1486":10,"1487":3,"1488":2,"1489":8,"1493":18,"1495":19,"1535":2,"1554":1,"1641":4,"1804":3,"1839":2,"2221":1,"2328":1,"2418":4,"2510":3,"2512":20,"2549":3,"2692":1,"2771":2,"2774":1,"2856":5,"2890":1,"2891":1,"2907":1,"2940":1}}],["austin",{"2":{"211":1}}],["aurora",{"2":{"191":2}}],["authentication",{"0":{"2594":1}}],["authenticated",{"2":{"586":1,"2594":1}}],["authenticate",{"2":{"312":1}}],["author",{"2":{"1628":1,"2464":1,"2567":3,"2744":1}}],["authored",{"2":{"38":1}}],["authorship",{"2":{"1467":1}}],["authors",{"2":{"32":1,"1628":1,"1629":1}}],["autoload",{"2":{"509":1}}],["auto+retro",{"2":{"236":1}}],["autocorrected",{"2":{"1529":1,"1535":1}}],["autocorrection",{"0":{"1526":1},"2":{"1526":1,"1528":1,"1529":1,"1534":1,"1535":3,"1537":1,"1538":1}}],["autocorrect",{"0":{"179":1,"1524":1,"1527":1,"1529":1,"1532":1,"1533":1,"1534":1,"1535":1,"1536":1,"2514":1},"1":{"1525":1,"1526":1,"1527":1,"1528":2,"1529":1,"1530":2,"1531":1,"1532":1,"1533":2,"1534":1,"1535":2,"1536":1,"1537":1,"1538":1,"1539":1,"1540":1},"2":{"179":2,"188":1,"191":2,"211":1,"222":2,"328":1,"1526":1,"1527":6,"1528":1,"1529":2,"1530":6,"1532":6,"1533":6,"1534":1,"1535":6,"1536":9,"1537":1,"1538":1,"2514":7}}],["automation",{"2":{"2653":1,"2673":1}}],["automatically",{"2":{"173":1,"201":1,"246":1,"409":1,"429":1,"430":1,"435":1,"437":1,"440":1,"442":1,"445":1,"460":1,"494":1,"495":1,"504":2,"513":2,"617":1,"619":1,"656":1,"698":1,"710":1,"715":1,"725":1,"754":2,"761":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1285":1,"1288":1,"1463":3,"1464":1,"1472":1,"1485":2,"1512":1,"1524":1,"1525":1,"1527":1,"1593":1,"1598":1,"1620":2,"1631":1,"1633":2,"1852":1,"1957":1,"1968":1,"1999":1,"2016":1,"2053":1,"2086":1,"2087":1,"2091":1,"2198":1,"2219":1,"2279":1,"2293":2,"2331":1,"2377":1,"2382":1,"2383":2,"2384":1,"2386":1,"2388":1,"2390":1,"2391":2,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2407":1,"2416":1,"2456":1,"2496":1,"2516":1,"2601":1,"2603":1,"2610":1,"2763":1,"2861":1}}],["automatic",{"0":{"246":1,"1999":1,"2214":1},"1":{"2000":1,"2001":1,"2002":1,"2003":1,"2004":1,"2005":1,"2006":1,"2007":1,"2008":1,"2009":1,"2010":1,"2011":1,"2012":1,"2013":1,"2014":1,"2015":1},"2":{"134":1,"190":2,"191":1,"246":1,"754":1,"1392":1,"1393":1,"1499":1,"2015":1}}],["automata02",{"2":{"222":1}}],["automate",{"2":{"199":1}}],["automated",{"2":{"10":1,"198":1,"665":1,"1388":1,"2847":1}}],["autoshifted",{"2":{"1510":1}}],["autoshift",{"2":{"93":1,"191":1,"1503":4,"1517":3}}],["auto",{"0":{"513":1,"1496":1,"1497":1,"1499":1,"1500":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":2,"1513":1,"1514":1,"1515":1,"1516":1,"1520":1,"2008":1,"2011":1,"2013":1,"2015":1,"2513":1},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":2,"1504":2,"1505":2,"1506":2,"1507":2,"1508":2,"1509":2,"1510":2,"1511":2,"1512":2,"1513":2,"1514":2,"1515":2,"1516":2,"1517":1,"1518":1,"1519":1,"1520":1,"1521":2,"1522":2,"1523":2},"2":{"49":1,"63":1,"134":3,"176":1,"188":1,"191":1,"195":3,"211":3,"222":2,"246":1,"249":1,"266":1,"285":1,"754":1,"1497":1,"1498":14,"1499":2,"1500":2,"1501":4,"1502":3,"1503":7,"1504":1,"1505":2,"1506":1,"1507":1,"1508":1,"1509":1,"1510":15,"1512":1,"1516":1,"1517":4,"1518":3,"1520":1,"1521":12,"1522":4,"1523":1,"1535":1,"1968":2,"1994":3,"1999":1,"2000":2,"2001":10,"2002":1,"2003":7,"2007":1,"2008":33,"2009":7,"2011":10,"2012":11,"2013":10,"2014":3,"2015":5,"2377":2,"2513":13,"2516":2,"2634":1,"2683":1,"2921":5,"2929":2,"2940":1}}],["august",{"0":{"96":1,"161":1,"267":1},"1":{"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"176":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1},"2":{"254":1,"268":1,"307":1,"2812":1}}],["aug",{"0":{"0":1,"39":1,"212":1,"309":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"40":1,"41":1,"42":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1},"2":{"88":1,"104":1,"127":1,"170":1,"377":2,"401":1,"402":7,"413":7}}],["afnor",{"2":{"2887":3}}],["af2",{"2":{"1556":1}}],["aforementioned",{"2":{"1423":1,"1786":1}}],["africa",{"2":{"1346":1}}],["afpp",{"2":{"1213":7}}],["afio",{"2":{"1213":1}}],["af4",{"2":{"1212":4}}],["af0",{"2":{"1212":4}}],["af1",{"2":{"1212":10}}],["af7",{"2":{"1211":22}}],["affecting",{"2":{"1364":4,"2180":1,"2434":1,"2460":1,"2747":1,"2930":1}}],["affect",{"2":{"221":1,"233":1,"494":2,"619":1,"2747":2,"2795":1,"2912":1,"2929":1}}],["affects",{"2":{"45":1,"49":1,"244":1,"279":1,"1320":1,"1410":1,"2309":1,"2761":1}}],["affected",{"2":{"3":1,"4":1,"10":1,"14":1,"15":1,"221":1,"254":1,"1666":1,"1681":1,"2277":1,"2690":1,"2919":2,"2920":1,"2925":1}}],["afterwards",{"2":{"202":1,"1348":1,"2428":1,"2628":1}}],["aftermath",{"2":{"176":1}}],["after",{"0":{"25":1,"325":1,"2314":1},"2":{"10":1,"11":1,"23":1,"24":1,"25":4,"49":1,"90":1,"105":1,"114":2,"134":4,"149":1,"157":1,"176":4,"191":3,"195":1,"199":5,"211":2,"222":1,"255":2,"259":1,"263":1,"294":1,"339":1,"377":1,"386":1,"402":1,"403":1,"406":1,"407":1,"411":1,"412":3,"512":1,"544":1,"561":2,"564":2,"569":1,"572":2,"574":1,"613":1,"618":1,"629":1,"634":1,"637":1,"641":1,"647":2,"655":1,"658":1,"684":1,"702":1,"720":1,"735":1,"754":1,"799":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1229":1,"1233":1,"1237":1,"1239":1,"1306":1,"1320":1,"1327":1,"1343":1,"1354":1,"1367":3,"1376":1,"1387":1,"1414":1,"1415":1,"1417":2,"1433":1,"1447":4,"1464":1,"1490":1,"1498":1,"1527":1,"1528":1,"1538":3,"1617":1,"1627":1,"1634":1,"1686":1,"1776":1,"1782":1,"1786":2,"1792":1,"1801":1,"1802":2,"1850":1,"1908":1,"1910":1,"1912":1,"1915":1,"1934":1,"1937":1,"1939":2,"1949":2,"1957":1,"1961":1,"1985":1,"1999":1,"2003":2,"2044":1,"2046":1,"2048":1,"2065":1,"2088":1,"2168":1,"2170":1,"2172":1,"2175":1,"2178":1,"2189":1,"2191":1,"2214":1,"2275":2,"2288":1,"2298":1,"2300":1,"2309":3,"2310":2,"2317":1,"2387":1,"2410":1,"2417":1,"2425":1,"2428":3,"2431":1,"2432":1,"2466":1,"2508":1,"2552":1,"2558":1,"2562":1,"2607":1,"2639":1,"2640":1,"2650":2,"2652":1,"2660":1,"2685":1,"2686":1,"2687":1,"2709":1,"2717":1,"2744":1,"2747":1,"2748":1,"2756":1,"2761":1,"2764":1,"2766":1,"2771":2,"2788":1,"2789":1,"2792":1,"2795":1,"2829":1,"2882":2,"2886":1,"2906":1,"2912":1,"2918":1,"2921":1,"2925":1,"2930":1,"2940":2}}],["arng",{"2":{"2885":1}}],["arpeggiation",{"2":{"2292":1}}],["arbitrary",{"2":{"380":1,"433":1,"1448":1,"1456":1,"1537":1,"1777":1,"1795":1,"2277":1,"2639":1,"2685":1}}],["arises",{"2":{"2466":1}}],["arise",{"2":{"273":1,"2586":1}}],["arrive",{"2":{"2292":1}}],["arrangement",{"2":{"2721":2}}],["arranged",{"2":{"2466":2,"2794":1}}],["arrange",{"2":{"1425":1,"2720":1}}],["arrays",{"2":{"191":1,"433":2,"589":1,"1788":2,"1953":2,"2296":1,"2556":3,"2719":1,"2928":2}}],["array",{"0":{"27":1},"2":{"27":1,"176":1,"249":1,"266":1,"588":2,"671":5,"736":1,"813":1,"817":1,"821":1,"823":1,"840":1,"844":1,"848":1,"850":1,"872":1,"876":1,"880":1,"882":1,"904":1,"908":1,"912":1,"914":1,"939":1,"943":1,"947":1,"949":1,"973":1,"977":1,"981":1,"983":1,"1007":1,"1011":1,"1015":1,"1017":1,"1041":1,"1045":1,"1049":1,"1051":1,"1075":1,"1079":1,"1083":1,"1085":1,"1109":1,"1113":1,"1117":1,"1119":1,"1143":1,"1147":1,"1151":1,"1153":1,"1177":1,"1181":1,"1185":1,"1187":1,"1230":1,"1234":1,"1238":1,"1240":1,"1357":1,"1439":1,"1443":1,"1446":1,"1538":3,"1605":1,"1611":1,"1612":3,"1630":1,"1665":1,"1681":1,"1699":1,"1720":1,"1722":1,"1742":1,"1747":2,"1952":2,"1968":2,"2189":4,"2217":1,"2272":1,"2303":2,"2305":1,"2309":2,"2329":2,"2351":1,"2353":1,"2354":1,"2355":1,"2357":1,"2358":1,"2556":4,"2557":1,"2720":1,"2780":1,"2782":1,"2784":1,"2805":1,"2823":1,"2852":1,"2856":1,"2857":1,"2863":2,"2865":1,"2868":2,"2869":2,"2871":4,"2872":4,"2877":2,"2878":4,"2879":1,"2880":1,"2937":2}}],["arrowmechanics",{"2":{"266":1}}],["arrow",{"2":{"255":2,"259":2,"266":1,"710":2,"1694":4,"1791":1,"2006":1,"2065":1,"2068":5,"2073":2,"2226":1,"2510":8,"2548":4,"2550":4,"2797":1,"2800":2}}],["arg",{"2":{"500":3,"656":2,"657":1,"2074":1}}],["args",{"2":{"176":1,"500":3,"521":1,"524":1,"2069":1,"2678":1}}],["arguments",{"0":{"495":1,"500":1,"524":1,"703":1,"705":1,"708":1,"734":1,"736":1,"738":1,"740":1,"770":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"794":1,"811":1,"813":1,"815":1,"817":1,"819":1,"821":1,"823":1,"836":1,"838":1,"840":1,"842":1,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"868":1,"870":1,"872":1,"874":1,"876":1,"878":1,"880":1,"882":1,"884":1,"886":1,"898":1,"900":1,"902":1,"904":1,"906":1,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"933":1,"935":1,"937":1,"939":1,"941":1,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"967":1,"969":1,"971":1,"973":1,"975":1,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"1001":1,"1003":1,"1005":1,"1007":1,"1009":1,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":1,"1039":1,"1041":1,"1043":1,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1069":1,"1071":1,"1073":1,"1075":1,"1077":1,"1079":1,"1081":1,"1083":1,"1085":1,"1087":1,"1089":1,"1103":1,"1105":1,"1107":1,"1109":1,"1111":1,"1113":1,"1115":1,"1117":1,"1119":1,"1121":1,"1123":1,"1137":1,"1139":1,"1141":1,"1143":1,"1145":1,"1147":1,"1149":1,"1151":1,"1153":1,"1155":1,"1157":1,"1171":1,"1173":1,"1175":1,"1177":1,"1179":1,"1181":1,"1183":1,"1185":1,"1187":1,"1189":1,"1191":1,"1224":1,"1226":1,"1228":1,"1230":1,"1232":1,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1252":1,"1255":1,"1260":1,"1263":1,"1272":1,"1274":1,"1278":1,"1280":1,"1307":1,"1309":1,"1567":1,"1586":1,"1588":1,"1660":1,"1705":1,"1709":1,"1712":1,"1714":1,"1716":1,"1718":1,"1720":1,"1722":1,"1726":1,"1728":1,"1731":1,"1733":1,"1735":1,"1737":1,"1752":1,"1754":1,"1756":1,"1759":1,"1761":1,"1810":1,"1816":1,"1821":1,"1824":1,"1827":1,"1830":1,"1833":1,"1866":1,"1868":1,"1870":1,"1872":1,"1890":1,"1892":1,"1896":1,"1898":1,"1913":1,"1916":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2036":1,"2062":1,"2064":1,"2108":1,"2110":1,"2112":1,"2114":1,"2144":1,"2146":1,"2150":1,"2152":1,"2160":1,"2162":1,"2173":1,"2176":1,"2229":1,"2231":1,"2233":1,"2235":1,"2237":1,"2239":1,"2241":1,"2243":1,"2245":1,"2337":1,"2341":1,"2343":1,"2348":1,"2350":1,"2352":1,"2355":1,"2358":1,"2365":1,"2372":1},"1":{"496":1,"497":1,"498":1,"499":1,"500":1,"1914":1,"1917":1,"2174":1,"2177":1},"2":{"114":1,"285":1,"294":1,"444":1,"452":1,"453":1,"459":1,"472":1,"473":1,"475":1,"491":2,"500":2,"521":1,"532":1,"1434":1,"2058":1,"2297":1,"2310":1,"2503":1,"2640":1,"2762":3,"2938":1}}],["argument",{"0":{"533":1},"2":{"46":1,"194":2,"199":1,"236":1,"266":1,"429":3,"430":1,"472":1,"474":2,"475":1,"489":6,"495":5,"500":3,"533":1,"632":2,"656":3,"657":1,"1248":1,"1364":1,"1391":1,"1399":1,"1423":4,"1436":1,"1794":1,"2300":2,"2502":1,"2575":1,"2576":1,"2640":1,"2652":1,"2762":7}}],["artifact",{"2":{"2599":1}}],["artifacts",{"2":{"114":1,"2601":1,"2756":1}}],["article",{"2":{"2382":1,"2466":2}}],["artery",{"0":{"550":1}}],["arterytek",{"2":{"285":1}}],["art",{"2":{"176":2}}],["architectural",{"0":{"2733":1}}],["architectures",{"2":{"2742":1}}],["architecture",{"0":{"576":1,"2726":1},"2":{"576":2,"798":1,"2733":1}}],["archive",{"2":{"2599":1}}],["arch",{"2":{"143":2,"176":1,"573":1,"2593":1,"2626":1}}],["arabica37",{"2":{"134":1}}],["arya",{"2":{"134":1}}],["arduinoisp",{"2":{"2486":1}}],["arduino",{"0":{"243":1,"1382":1,"2486":1},"1":{"2487":1},"2":{"113":1,"114":1,"133":1,"134":1,"243":2,"331":2,"611":2,"713":4,"1382":8,"2386":1,"2441":1,"2486":2,"2499":4}}],["armtoolchainpath",{"2":{"2683":3}}],["arm",{"0":{"384":1,"387":1,"547":1,"689":1,"694":1,"696":1,"716":1,"728":1,"764":1,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1218":1,"1248":1,"1269":1,"1295":1,"1320":1,"1476":1,"1488":1,"1555":1,"2042":1,"2683":1,"2684":1,"2707":1,"2802":1},"1":{"385":1,"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"393":1,"394":1,"395":1,"396":1,"397":1,"398":1,"548":1,"549":1,"550":1,"551":1,"552":1,"690":1,"691":1,"717":1,"718":1,"719":1,"720":1,"721":1,"722":1,"723":1,"765":1,"766":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1,"1556":1,"1557":1,"2685":1,"2686":1,"2687":1,"2708":1,"2709":1,"2710":1,"2711":1,"2712":1,"2713":1},"2":{"11":1,"24":1,"69":1,"75":1,"92":1,"93":3,"107":2,"114":3,"123":1,"130":1,"134":2,"153":1,"160":2,"174":1,"191":1,"215":2,"248":1,"263":3,"277":1,"279":2,"285":2,"294":3,"339":2,"384":2,"387":2,"393":2,"396":1,"398":1,"545":2,"547":1,"567":1,"568":1,"570":2,"611":1,"615":1,"619":1,"685":3,"696":1,"716":1,"717":1,"746":1,"772":1,"1192":1,"1193":1,"1195":1,"1196":1,"1199":1,"1293":1,"1294":1,"1295":1,"1296":1,"1320":1,"1392":2,"1393":2,"1484":1,"1488":1,"1717":1,"1721":1,"1739":2,"1943":5,"1954":2,"1961":1,"2042":1,"2179":1,"2232":1,"2234":1,"2247":1,"2248":1,"2261":3,"2262":1,"2273":2,"2278":1,"2279":3,"2290":2,"2418":1,"2465":1,"2482":1,"2683":3,"2684":1,"2688":1,"2697":1,"2698":1,"2707":2,"2746":1,"2853":1,"2895":2}}],["around",{"2":{"8":1,"191":2,"198":1,"201":1,"213":1,"222":1,"224":1,"266":1,"293":1,"305":1,"314":1,"420":1,"678":1,"715":1,"1297":1,"1315":1,"1346":1,"1376":2,"1379":1,"1490":1,"1493":1,"1676":1,"1849":1,"1964":1,"2085":4,"2180":1,"2201":4,"2427":1,"2466":1,"2477":1,"2578":1,"2889":1,"2926":3,"2941":1,"2943":1,"2949":1}}],["aref",{"2":{"2431":1}}],["arep",{"2":{"202":1,"2066":1,"2067":1,"2537":1}}],["area",{"2":{"182":1,"644":1,"1954":1,"2086":1,"2640":2,"2763":2,"2764":1,"2807":1,"2902":1,"2922":1}}],["areas",{"2":{"113":1,"213":1,"403":1,"2747":2,"2902":2}}],["aren",{"0":{"1351":1},"2":{"173":1,"188":1,"211":1,"616":1,"619":1,"665":1,"1376":1,"1666":1,"1983":1,"2410":1,"2429":1,"2434":1,"2559":1,"2707":1,"2731":1,"2763":2}}],["are",{"0":{"90":1,"105":1,"605":1,"1340":1,"1343":1,"1346":1,"1349":1,"1362":1,"1499":1,"1600":1,"2467":1,"2932":1},"1":{"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"3":1,"4":1,"11":1,"15":1,"16":2,"27":1,"31":3,"33":1,"34":2,"37":1,"55":1,"69":1,"70":1,"73":1,"75":1,"92":1,"94":1,"110":1,"111":1,"114":1,"119":1,"123":2,"124":1,"132":1,"152":1,"163":1,"176":1,"182":1,"187":1,"191":1,"194":1,"196":2,"201":2,"203":1,"206":1,"209":1,"210":1,"215":2,"221":1,"222":1,"231":1,"234":1,"241":1,"253":1,"254":1,"262":1,"263":2,"264":1,"268":1,"270":1,"274":1,"275":1,"281":1,"282":1,"288":2,"289":1,"292":1,"294":1,"301":1,"307":2,"313":1,"326":1,"336":1,"344":6,"356":1,"367":1,"368":1,"373":1,"377":1,"379":4,"381":1,"383":1,"385":1,"386":1,"388":1,"393":2,"396":2,"399":2,"403":3,"411":2,"412":1,"414":2,"415":1,"416":2,"422":1,"429":1,"430":1,"432":1,"433":2,"437":1,"440":1,"442":1,"444":1,"445":1,"447":1,"458":2,"473":1,"475":3,"488":1,"489":1,"491":1,"492":1,"493":1,"494":2,"507":1,"508":1,"512":2,"513":1,"516":1,"519":1,"524":1,"525":2,"526":2,"528":1,"529":1,"532":2,"539":1,"540":3,"541":1,"542":1,"543":1,"544":1,"547":1,"555":4,"557":1,"558":1,"561":2,"565":2,"568":1,"569":2,"570":1,"574":3,"575":3,"576":1,"579":1,"580":2,"581":2,"589":1,"596":1,"598":1,"607":1,"608":1,"610":1,"611":1,"613":2,"614":1,"615":2,"618":3,"619":7,"620":1,"621":3,"626":1,"627":1,"630":3,"633":2,"646":2,"648":1,"651":1,"657":1,"660":1,"665":3,"668":4,"669":1,"670":1,"672":2,"673":1,"676":1,"683":1,"685":1,"688":2,"690":5,"694":1,"696":1,"697":1,"698":1,"702":1,"709":1,"710":2,"711":1,"712":1,"713":1,"715":1,"716":4,"718":1,"719":2,"721":2,"725":1,"735":1,"742":1,"743":1,"749":1,"750":1,"754":1,"759":1,"761":1,"762":1,"764":2,"797":1,"799":3,"801":1,"812":1,"816":1,"820":1,"822":1,"827":1,"839":1,"843":1,"847":1,"849":1,"856":1,"859":1,"860":2,"871":1,"875":1,"879":1,"881":1,"888":1,"903":1,"907":1,"911":1,"913":1,"920":1,"922":1,"924":1,"925":2,"938":1,"942":1,"946":1,"948":1,"955":1,"957":1,"958":1,"959":2,"972":1,"976":1,"980":1,"982":1,"989":1,"992":1,"993":2,"1006":1,"1010":1,"1014":1,"1016":1,"1023":1,"1026":1,"1027":2,"1040":1,"1044":1,"1048":1,"1050":1,"1057":1,"1060":1,"1061":2,"1074":1,"1078":1,"1082":1,"1084":1,"1091":1,"1093":1,"1095":2,"1108":1,"1112":1,"1116":1,"1118":1,"1125":1,"1127":1,"1129":2,"1142":1,"1146":1,"1150":1,"1152":1,"1159":1,"1161":1,"1162":1,"1163":2,"1176":1,"1180":1,"1184":1,"1186":1,"1192":2,"1196":1,"1197":1,"1199":1,"1200":4,"1205":1,"1206":1,"1213":1,"1215":1,"1229":1,"1233":1,"1237":1,"1239":1,"1246":1,"1253":1,"1267":1,"1272":2,"1283":1,"1284":1,"1287":1,"1289":1,"1296":1,"1297":1,"1300":1,"1303":1,"1306":1,"1311":1,"1313":1,"1315":1,"1318":1,"1320":1,"1323":1,"1326":1,"1330":1,"1343":2,"1345":1,"1346":2,"1351":2,"1357":1,"1358":1,"1362":2,"1364":3,"1367":2,"1376":2,"1377":1,"1389":2,"1391":1,"1392":1,"1393":1,"1395":1,"1396":1,"1398":1,"1399":1,"1407":2,"1409":5,"1410":4,"1413":2,"1415":2,"1416":1,"1417":1,"1422":2,"1423":2,"1425":2,"1426":1,"1428":5,"1431":1,"1433":1,"1438":1,"1443":1,"1444":2,"1446":2,"1451":2,"1455":1,"1463":1,"1470":1,"1472":1,"1481":1,"1483":1,"1484":1,"1485":2,"1487":2,"1488":1,"1491":3,"1493":2,"1498":2,"1499":2,"1503":3,"1510":1,"1514":1,"1517":1,"1518":2,"1522":3,"1523":1,"1524":2,"1525":1,"1527":2,"1528":1,"1529":1,"1532":2,"1533":5,"1534":1,"1538":4,"1544":1,"1545":1,"1547":1,"1551":1,"1553":1,"1556":2,"1558":2,"1589":1,"1590":1,"1591":1,"1593":1,"1594":1,"1597":2,"1598":1,"1600":1,"1602":1,"1603":1,"1605":1,"1606":1,"1608":1,"1611":2,"1612":6,"1615":1,"1616":1,"1617":1,"1619":2,"1621":1,"1626":2,"1627":1,"1628":1,"1629":1,"1634":1,"1635":1,"1636":1,"1639":1,"1647":1,"1661":2,"1662":1,"1664":1,"1665":2,"1666":1,"1668":1,"1670":1,"1672":1,"1674":1,"1676":1,"1678":2,"1681":2,"1702":1,"1740":1,"1742":2,"1766":2,"1770":2,"1774":1,"1776":1,"1781":2,"1784":6,"1785":3,"1786":2,"1787":3,"1788":4,"1798":1,"1802":1,"1803":1,"1835":1,"1836":1,"1838":1,"1846":2,"1849":2,"1852":1,"1855":2,"1919":1,"1923":2,"1926":2,"1934":2,"1936":2,"1937":1,"1938":1,"1939":4,"1943":1,"1944":1,"1946":1,"1948":1,"1949":1,"1952":4,"1953":5,"1954":2,"1960":1,"1962":1,"1964":1,"1965":2,"1968":2,"1970":2,"1973":2,"1974":2,"1977":1,"1983":1,"1984":1,"1986":1,"1987":2,"1989":1,"1990":2,"1998":1,"1999":3,"2002":1,"2004":1,"2006":1,"2007":1,"2011":2,"2014":1,"2016":3,"2037":1,"2039":1,"2043":1,"2044":1,"2048":1,"2054":1,"2056":1,"2057":3,"2059":2,"2065":1,"2068":1,"2069":1,"2072":3,"2074":1,"2076":1,"2082":2,"2085":2,"2086":1,"2089":2,"2091":1,"2094":2,"2178":1,"2179":2,"2181":1,"2184":2,"2185":3,"2187":1,"2189":1,"2191":1,"2192":1,"2198":11,"2199":2,"2201":2,"2205":2,"2206":1,"2210":2,"2219":2,"2222":3,"2223":1,"2258":1,"2260":1,"2261":2,"2262":1,"2263":1,"2265":3,"2269":1,"2270":1,"2274":1,"2275":4,"2277":1,"2278":4,"2284":1,"2285":1,"2287":1,"2289":1,"2290":1,"2291":1,"2292":1,"2294":1,"2295":2,"2297":1,"2298":2,"2300":1,"2303":3,"2305":1,"2309":6,"2310":1,"2313":1,"2317":4,"2319":1,"2320":4,"2323":1,"2325":1,"2326":1,"2329":1,"2330":2,"2331":1,"2382":1,"2384":2,"2391":2,"2407":3,"2411":2,"2415":2,"2416":1,"2417":3,"2418":5,"2422":3,"2423":1,"2424":2,"2426":1,"2427":4,"2428":3,"2429":1,"2430":1,"2431":4,"2435":1,"2439":1,"2441":1,"2449":2,"2450":1,"2451":1,"2453":3,"2454":2,"2455":1,"2456":1,"2460":1,"2461":1,"2464":1,"2465":2,"2466":4,"2470":1,"2474":2,"2479":1,"2481":1,"2482":1,"2483":1,"2497":1,"2498":2,"2499":1,"2501":1,"2502":1,"2503":1,"2508":1,"2509":1,"2511":1,"2519":1,"2541":1,"2549":3,"2551":1,"2552":1,"2553":2,"2554":1,"2556":1,"2557":2,"2560":1,"2561":3,"2562":1,"2563":2,"2565":1,"2566":2,"2567":2,"2568":1,"2572":4,"2573":3,"2574":1,"2575":1,"2576":2,"2579":1,"2582":2,"2586":2,"2587":2,"2591":1,"2592":1,"2601":1,"2607":2,"2614":2,"2616":1,"2617":1,"2619":2,"2626":2,"2630":1,"2633":1,"2634":2,"2635":1,"2637":2,"2640":2,"2642":1,"2650":3,"2651":1,"2652":3,"2659":1,"2660":1,"2663":1,"2665":2,"2666":1,"2668":2,"2669":2,"2677":1,"2678":1,"2679":1,"2680":1,"2683":1,"2685":2,"2686":1,"2691":1,"2693":1,"2694":1,"2695":1,"2704":3,"2706":1,"2709":2,"2710":2,"2711":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":2,"2721":1,"2722":1,"2725":1,"2730":3,"2731":1,"2743":1,"2744":1,"2745":1,"2746":10,"2747":2,"2748":2,"2749":4,"2751":4,"2752":1,"2761":2,"2763":8,"2764":6,"2765":4,"2766":1,"2767":3,"2769":2,"2771":1,"2774":1,"2777":2,"2780":2,"2785":4,"2787":1,"2792":1,"2794":2,"2796":2,"2797":1,"2820":2,"2823":1,"2833":1,"2835":1,"2840":1,"2851":2,"2869":3,"2871":1,"2872":1,"2877":1,"2878":1,"2884":3,"2885":1,"2886":1,"2887":4,"2888":1,"2889":6,"2890":2,"2892":2,"2895":2,"2896":1,"2897":1,"2903":1,"2904":1,"2909":2,"2912":1,"2913":2,"2919":1,"2922":1,"2924":1,"2925":7,"2926":3,"2928":4,"2930":2,"2932":1,"2936":3,"2941":2,"2945":2,"2946":1,"2947":3,"2948":1,"2949":1}}],["al",{"2":{"2919":2,"2920":1}}],["albeit",{"2":{"2329":1}}],["alpaca",{"2":{"2567":1}}],["alps",{"2":{"1354":1}}],["alphabet",{"2":{"2886":1}}],["alphabetical",{"2":{"1522":1}}],["alphanumeric",{"2":{"2095":1,"2799":1}}],["alphas",{"2":{"1849":3,"2085":3,"2871":1,"2878":1,"2894":1,"2922":1}}],["alpha",{"0":{"1508":1,"1513":1,"1691":1},"2":{"143":8,"1503":2,"1508":1,"1510":2,"1528":1,"1691":2}}],["alone",{"2":{"665":1,"1326":1,"1774":1}}],["alongside",{"2":{"113":1,"114":1}}],["along",{"2":{"69":1,"83":1,"113":1,"149":1,"166":1,"196":1,"230":1,"1288":1,"1463":1,"1467":1,"1697":1,"1781":1,"1939":1,"1976":1,"2059":1,"2085":1,"2219":1,"2382":1,"2429":1,"2431":2,"2496":1,"2612":1,"2744":1,"2750":1}}],["alvicstep",{"2":{"211":1}}],["alf",{"2":{"211":2}}],["alcor",{"2":{"191":1}}],["al1",{"2":{"160":1}}],["alu84",{"2":{"143":2}}],["alef",{"2":{"294":1}}],["aleblazer",{"2":{"222":1}}],["alexa",{"2":{"211":1}}],["aleth42",{"2":{"143":2}}],["alerts",{"2":{"435":1,"456":1}}],["alert",{"2":{"28":1,"1686":2}}],["alisaie",{"2":{"222":1}}],["alice",{"2":{"211":1,"2937":1}}],["alicia",{"2":{"143":2,"211":1}}],["aligns",{"2":{"2425":1}}],["aligned",{"2":{"137":1,"2428":1,"2799":2}}],["alignment",{"2":{"114":1,"133":1,"134":1,"191":1,"266":1,"333":1,"2430":1,"2745":1,"2764":1}}],["align",{"2":{"113":1,"114":3,"133":1,"134":3,"149":4,"176":2,"188":3,"191":3,"199":4,"222":1,"249":4,"266":4,"277":1,"308":3,"317":1,"328":1,"339":1}}],["aliasing",{"2":{"2762":1}}],["aliased",{"2":{"1627":1}}],["aliases",{"2":{"92":1,"111":1,"182":1,"188":1,"191":1,"222":4,"266":1,"294":6,"317":4,"1363":1,"1428":1,"1485":1,"1489":1,"1490":1,"1493":1,"1495":1,"1521":1,"1530":1,"1543":1,"1606":1,"1630":2,"1674":1,"1680":1,"1744":1,"1780":1,"1805":1,"1848":1,"1925":1,"1933":1,"2008":1,"2018":1,"2067":1,"2084":1,"2181":1,"2216":1,"2253":1,"2257":1,"2304":1,"2332":1,"2377":1,"2510":1,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2520":1,"2522":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2552":1,"2555":1,"2575":1,"2651":1,"2746":1,"2752":1,"2868":1,"2869":2,"2884":2,"2912":1}}],["alias",{"0":{"8":1},"2":{"8":2,"133":1,"134":1,"188":1,"191":2,"199":3,"211":1,"236":1,"249":1,"308":1,"333":1,"772":1,"797":1,"1594":1,"1661":1,"1717":1,"1721":1,"1790":1,"1954":1,"2066":2,"2232":1,"2234":1,"2321":1,"2559":2,"2578":1,"2640":1}}],["almost",{"2":{"77":1,"83":1,"163":1,"268":1,"276":1,"279":1,"389":1,"758":1,"759":1,"1787":1,"2331":1,"2382":1,"2395":1,"2626":1,"2744":1,"2747":1,"2763":1,"2794":1,"2901":1,"2943":1}}],["already",{"0":{"2708":1},"1":{"2709":1,"2710":1},"2":{"75":1,"105":2,"118":1,"125":1,"169":2,"182":3,"185":1,"199":1,"221":1,"228":1,"232":1,"233":1,"241":1,"253":1,"270":1,"281":1,"294":1,"353":1,"432":1,"463":2,"488":1,"598":1,"611":1,"647":1,"709":1,"742":1,"1200":1,"1213":1,"1253":1,"1350":1,"1366":1,"1407":1,"1431":1,"1470":1,"1533":1,"1627":1,"1681":1,"1784":3,"1962":1,"1983":1,"2012":2,"2014":1,"2290":2,"2310":1,"2319":3,"2422":1,"2432":1,"2482":2,"2505":1,"2567":4,"2573":1,"2593":1,"2607":1,"2628":1,"2636":1,"2658":1,"2674":1,"2678":2,"2679":1,"2682":1,"2709":2,"2746":1,"2747":1,"2756":1,"2763":2,"2839":1,"2902":1,"2930":1,"2944":1}}],["algr",{"2":{"1363":1,"1448":1,"2510":1,"2529":1,"2530":1,"2546":1,"2575":1}}],["algorithm>",{"2":{"1413":1}}],["algorithms",{"0":{"1410":1,"1411":1},"1":{"1412":1,"1413":1,"1414":1},"2":{"114":1,"176":1,"222":1,"1409":1,"1410":6,"1411":1}}],["algorithm",{"2":{"74":1,"174":1,"176":1,"328":1,"752":1,"754":1,"755":3,"756":1,"1410":10,"1413":4,"1414":2,"1935":1,"2792":1,"2854":1,"2864":1}}],["algernon",{"2":{"37":1,"2308":2,"2417":2}}],["altlp",{"2":{"2318":6}}],["altrep",{"2":{"2079":1}}],["altrep3",{"2":{"2079":12}}],["altrep2",{"2":{"2079":12}}],["alttab",{"2":{"1618":6}}],["alt↯tab",{"0":{"1462":1}}],["altered",{"2":{"2277":1}}],["altering",{"2":{"1541":1,"1622":1}}],["alter",{"2":{"1446":1,"1614":1,"1617":1,"1668":1,"2300":1,"2510":1}}],["alternating",{"2":{"2183":2,"2184":2,"2894":1}}],["alternatives",{"2":{"2573":1,"2902":1}}],["alternative",{"0":{"1449":1},"2":{"279":2,"574":1,"1299":2,"1303":1,"1376":1,"1391":1,"1399":1,"1423":1,"1478":1,"1481":1,"1556":1,"1593":1,"1983":1,"2298":1,"2418":1,"2573":1,"2727":1,"2746":1,"2810":1,"2812":1}}],["alternatively",{"2":{"31":1,"513":1,"710":1,"749":1,"750":1,"1207":1,"1318":1,"1367":1,"1405":1,"1464":1,"1485":1,"1597":1,"1741":1,"1794":1,"2057":1,"2264":1,"2607":1,"2658":1,"2685":1,"2770":1,"2885":1,"2926":1,"2946":1}}],["alternate0",{"2":{"721":1}}],["alternate",{"0":{"1210":1,"2068":1,"2069":1,"2077":1,"2079":1,"2695":1},"1":{"1211":1,"1212":1,"1213":1,"2070":1,"2071":1},"2":{"36":1,"114":1,"202":2,"561":3,"570":1,"716":1,"721":5,"764":2,"768":2,"1193":1,"1198":2,"1200":2,"1201":2,"1208":1,"1213":2,"1248":3,"1269":4,"1483":1,"1622":1,"1625":3,"2067":1,"2068":7,"2069":6,"2070":2,"2071":1,"2072":1,"2076":2,"2077":10,"2078":2,"2079":1,"2510":2,"2537":1,"2548":2,"2700":1,"2746":2}}],["although",{"2":{"1423":1,"1739":1,"1786":1,"1974":1,"2293":1,"2298":1,"2558":1}}],["alt+tab",{"2":{"1618":1}}],["alt+escape",{"2":{"1366":1}}],["alt+shift+esc",{"2":{"1366":1}}],["alt+right",{"2":{"353":1,"1423":1}}],["altogether",{"2":{"720":1,"2275":1,"2892":1}}],["altgr+escape",{"2":{"1366":1}}],["altgr",{"2":{"160":1,"2074":1,"2510":1,"2546":1,"2575":1,"2911":1}}],["alt",{"0":{"1366":2},"2":{"73":1,"114":1,"131":2,"134":2,"160":1,"202":2,"231":1,"266":1,"279":1,"683":1,"716":1,"722":2,"1347":2,"1349":1,"1363":14,"1364":8,"1366":5,"1457":1,"1462":10,"1474":3,"1475":1,"1477":2,"1478":2,"1479":2,"1482":2,"1486":2,"1529":1,"1618":1,"1625":3,"1676":2,"1690":1,"1767":1,"1776":7,"1779":1,"1788":6,"1952":2,"2066":1,"2067":1,"2068":3,"2069":3,"2070":2,"2071":3,"2077":3,"2078":1,"2255":1,"2256":4,"2257":4,"2317":1,"2318":3,"2327":2,"2331":2,"2344":1,"2345":1,"2346":1,"2510":4,"2526":10,"2529":16,"2530":15,"2535":14,"2537":1,"2538":4,"2546":4,"2552":10,"2575":19,"2651":14,"2652":4,"2831":1,"2889":1,"2928":6}}],["always",{"2":{"14":1,"50":1,"156":1,"176":1,"191":1,"201":1,"235":1,"249":1,"277":1,"283":1,"294":1,"339":1,"476":1,"489":1,"491":1,"512":1,"519":1,"521":1,"523":1,"524":1,"526":1,"533":1,"534":1,"568":1,"581":1,"608":1,"619":1,"799":1,"1213":2,"1297":1,"1422":1,"1426":2,"1470":1,"1472":2,"1491":1,"1499":1,"1517":2,"1589":1,"1619":1,"1675":1,"1676":4,"1781":1,"1956":1,"2001":1,"2057":1,"2058":1,"2062":2,"2064":2,"2072":1,"2183":1,"2265":1,"2272":1,"2274":3,"2300":1,"2435":1,"2558":1,"2579":1,"2614":1,"2747":1,"2779":1,"2780":1,"2787":1,"2794":1,"2805":1,"2842":1,"2901":2,"2913":1,"2921":1,"2945":1}}],["also",{"0":{"1320":1},"2":{"10":1,"16":1,"28":1,"50":1,"67":1,"86":1,"98":1,"125":1,"130":1,"153":1,"154":1,"156":1,"160":1,"166":1,"167":1,"176":1,"185":1,"194":1,"195":1,"231":1,"244":1,"297":1,"328":1,"399":1,"403":1,"414":1,"430":3,"433":1,"446":1,"461":1,"477":1,"489":2,"494":1,"496":1,"529":1,"547":1,"575":2,"613":1,"616":1,"618":1,"619":2,"625":1,"645":1,"665":1,"690":1,"717":1,"721":2,"722":1,"755":1,"1214":1,"1288":1,"1294":1,"1319":1,"1326":1,"1343":1,"1348":1,"1363":1,"1364":1,"1366":1,"1381":1,"1388":1,"1409":2,"1422":1,"1423":1,"1428":1,"1446":1,"1448":3,"1451":1,"1465":1,"1470":1,"1472":2,"1484":1,"1487":1,"1498":1,"1517":1,"1533":1,"1535":1,"1558":1,"1592":2,"1593":1,"1594":1,"1595":1,"1603":1,"1609":1,"1614":1,"1616":1,"1617":1,"1648":1,"1661":1,"1665":3,"1685":1,"1690":2,"1740":1,"1766":1,"1770":1,"1777":1,"1784":2,"1785":2,"1787":1,"1791":1,"1818":1,"1843":1,"1852":1,"1937":1,"1962":2,"1974":1,"1983":1,"1990":1,"1994":1,"2013":2,"2046":1,"2047":1,"2048":1,"2057":2,"2059":1,"2065":1,"2068":1,"2075":1,"2076":1,"2086":1,"2091":1,"2179":1,"2181":1,"2183":1,"2187":1,"2189":1,"2191":1,"2208":1,"2210":1,"2222":1,"2249":1,"2267":1,"2268":1,"2273":1,"2293":2,"2294":1,"2298":1,"2305":1,"2321":2,"2325":1,"2326":1,"2330":1,"2331":1,"2379":1,"2382":1,"2383":1,"2385":1,"2387":1,"2393":1,"2394":1,"2398":1,"2399":1,"2401":1,"2403":1,"2405":1,"2407":2,"2417":3,"2418":1,"2422":1,"2424":1,"2427":3,"2431":1,"2436":1,"2452":1,"2453":1,"2454":1,"2455":1,"2461":1,"2483":1,"2486":1,"2497":1,"2499":1,"2502":1,"2510":1,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2520":1,"2521":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2561":3,"2576":2,"2579":1,"2583":1,"2612":1,"2620":1,"2650":1,"2652":3,"2658":1,"2659":1,"2671":1,"2678":1,"2683":1,"2691":2,"2707":2,"2717":1,"2721":1,"2746":2,"2753":1,"2760":1,"2762":2,"2763":1,"2764":1,"2777":1,"2785":1,"2795":1,"2834":1,"2851":1,"2876":1,"2887":1,"2889":1,"2892":1,"2911":1,"2918":2,"2919":4,"2920":1,"2921":1,"2922":1,"2924":1,"2929":1,"2941":1,"2942":1,"2944":1,"2945":2,"2949":3}}],["alleviate",{"2":{"1497":1,"1622":1}}],["allocate",{"2":{"1952":1,"2289":1,"2763":1}}],["allocated",{"2":{"754":1,"1419":1,"2763":1}}],["allocation",{"2":{"328":1,"333":1,"2704":1}}],["allowing",{"2":{"64":1,"82":1,"98":1,"103":1,"107":1,"109":1,"125":1,"126":1,"185":1,"229":1,"234":1,"284":1,"555":1,"651":1,"665":1,"746":1,"1407":1,"1422":1,"1462":1,"1629":1,"1630":1,"1632":1,"1802":1,"1846":1,"1999":1,"2007":1,"2082":1,"2178":1,"2276":1,"2292":1,"2418":1,"2603":2,"2764":3,"2778":1,"2921":1}}],["allowed",{"2":{"28":1,"173":1,"189":1,"518":1,"719":1,"1781":1,"1784":1,"2275":1,"2309":1,"2780":1,"2921":1,"2930":2}}],["allows",{"2":{"24":1,"30":1,"33":1,"46":1,"49":3,"50":1,"99":1,"105":2,"107":2,"152":1,"153":1,"154":1,"164":1,"166":2,"172":1,"228":2,"230":2,"231":2,"246":1,"247":1,"262":1,"265":1,"288":1,"312":1,"371":1,"372":1,"390":1,"429":1,"433":1,"463":1,"472":1,"561":1,"564":1,"567":1,"570":1,"574":3,"578":1,"656":2,"670":1,"720":1,"754":1,"1288":1,"1407":1,"1415":1,"1417":1,"1419":1,"1421":1,"1451":1,"1464":1,"1472":1,"1492":1,"1510":1,"1534":1,"1541":1,"1544":1,"1546":1,"1592":2,"1626":1,"1630":1,"1664":1,"1671":1,"1681":1,"1689":1,"1773":1,"1781":1,"1796":1,"1844":1,"1919":1,"1930":1,"1936":2,"1939":1,"1953":1,"1960":1,"1968":1,"1983":1,"1985":2,"1993":1,"2054":1,"2080":1,"2096":1,"2219":1,"2277":1,"2278":3,"2302":1,"2310":1,"2377":1,"2379":1,"2381":1,"2394":2,"2418":8,"2444":1,"2466":1,"2482":1,"2504":1,"2510":1,"2591":1,"2619":1,"2650":1,"2653":1,"2680":1,"2684":1,"2695":1,"2721":1,"2746":1,"2762":1,"2764":2,"2807":1,"2808":1,"2825":1,"2852":1,"2921":1,"2927":1,"2944":1}}],["allow",{"0":{"164":1,"1613":1},"2":{"6":2,"10":1,"45":1,"49":1,"63":4,"65":2,"70":1,"74":5,"90":2,"93":2,"99":1,"110":1,"113":1,"114":7,"118":1,"125":3,"142":1,"149":1,"160":5,"172":1,"176":7,"185":3,"189":1,"191":6,"199":5,"202":1,"203":1,"211":2,"213":1,"222":2,"234":1,"236":6,"249":2,"277":1,"283":1,"285":3,"308":2,"317":1,"333":2,"339":1,"396":1,"488":1,"490":2,"558":1,"564":1,"619":2,"626":1,"627":1,"665":1,"760":1,"796":1,"1200":1,"1245":1,"1266":1,"1347":1,"1349":1,"1363":1,"1376":1,"1381":1,"1403":1,"1422":2,"1427":1,"1440":1,"1443":1,"1457":1,"1472":1,"1532":1,"1535":1,"1546":1,"1613":2,"1634":1,"1641":1,"1645":1,"1662":1,"1668":1,"1766":1,"1769":1,"1782":3,"1837":2,"1839":1,"1988":2,"2007":1,"2293":1,"2317":1,"2318":1,"2379":1,"2381":1,"2405":1,"2460":1,"2466":1,"2552":1,"2554":1,"2559":1,"2576":1,"2651":1,"2652":1,"2741":1,"2744":1,"2747":1,"2751":1,"2764":2,"2824":1,"2828":1,"2841":1,"2922":1,"2926":1,"2927":1,"2937":1}}],["alls",{"2":{"211":2}}],["all|txbolt|geminipr",{"2":{"176":1}}],["allison",{"2":{"143":4,"211":1}}],["all",{"0":{"485":1,"704":1,"737":1,"814":1,"818":1,"841":1,"845":1,"873":1,"877":1,"905":1,"909":1,"940":1,"944":1,"974":1,"978":1,"1008":1,"1012":1,"1042":1,"1046":1,"1076":1,"1080":1,"1110":1,"1114":1,"1144":1,"1148":1,"1178":1,"1182":1,"1231":1,"1235":1,"1308":1,"1468":1,"1867":1,"2109":1,"2744":1},"1":{"705":1,"738":1,"815":1,"819":1,"842":1,"846":1,"874":1,"878":1,"906":1,"910":1,"941":1,"945":1,"975":1,"979":1,"1009":1,"1013":1,"1043":1,"1047":1,"1077":1,"1081":1,"1111":1,"1115":1,"1145":1,"1149":1,"1179":1,"1183":1,"1232":1,"1236":1,"1309":1,"1868":1,"2110":1},"2":{"1":1,"3":1,"4":1,"7":1,"8":1,"14":1,"15":1,"16":1,"22":1,"25":1,"26":1,"32":1,"36":1,"49":3,"57":1,"65":1,"69":1,"77":1,"83":1,"98":1,"111":2,"113":1,"114":4,"120":1,"124":1,"126":1,"134":1,"149":1,"160":1,"163":2,"176":2,"182":1,"191":2,"194":2,"199":2,"204":1,"211":14,"249":1,"255":1,"265":2,"266":1,"268":3,"277":1,"279":1,"307":3,"339":2,"375":2,"379":1,"380":1,"384":1,"393":1,"398":2,"411":2,"413":1,"414":1,"421":1,"422":2,"426":1,"429":3,"433":2,"434":2,"441":1,"442":1,"446":1,"455":1,"459":3,"488":1,"492":6,"494":1,"496":1,"510":1,"514":2,"521":1,"525":1,"541":1,"542":2,"555":2,"559":1,"564":1,"574":1,"589":4,"592":1,"597":1,"599":1,"605":1,"615":2,"616":1,"619":1,"631":2,"639":1,"646":1,"652":2,"653":2,"656":1,"671":1,"690":1,"704":1,"710":1,"711":2,"714":1,"721":1,"737":1,"753":1,"758":1,"759":2,"762":1,"805":1,"814":1,"818":1,"831":1,"841":1,"845":1,"863":1,"873":1,"877":1,"893":1,"905":1,"909":1,"928":1,"940":1,"944":1,"962":1,"974":1,"978":1,"996":1,"1008":1,"1012":1,"1030":1,"1042":1,"1046":1,"1064":1,"1076":1,"1080":1,"1098":1,"1110":1,"1114":1,"1132":1,"1144":1,"1148":1,"1166":1,"1178":1,"1182":1,"1199":1,"1219":1,"1231":1,"1235":1,"1286":1,"1294":1,"1308":1,"1318":1,"1333":1,"1343":2,"1348":1,"1349":1,"1351":1,"1363":1,"1364":2,"1398":1,"1409":1,"1410":3,"1413":1,"1417":2,"1422":1,"1423":1,"1425":1,"1428":5,"1433":3,"1441":1,"1444":1,"1446":2,"1458":1,"1459":1,"1460":1,"1463":1,"1464":1,"1468":3,"1470":1,"1472":5,"1481":1,"1485":3,"1490":1,"1491":1,"1492":1,"1497":1,"1503":1,"1518":1,"1519":1,"1538":2,"1546":1,"1558":1,"1591":1,"1593":1,"1604":1,"1612":4,"1616":1,"1619":1,"1620":2,"1625":1,"1668":1,"1678":1,"1680":1,"1681":1,"1762":1,"1770":1,"1774":2,"1776":2,"1781":2,"1782":1,"1783":1,"1784":2,"1785":1,"1804":2,"1843":2,"1846":2,"1847":3,"1852":2,"1867":1,"1923":2,"1925":2,"1938":1,"1952":1,"1954":3,"1955":2,"1958":4,"1962":1,"1974":1,"1990":1,"1992":1,"1999":1,"2004":1,"2006":1,"2014":1,"2057":1,"2072":1,"2082":2,"2083":3,"2085":4,"2091":2,"2095":1,"2109":1,"2184":1,"2188":1,"2191":3,"2210":1,"2213":1,"2219":1,"2222":1,"2253":4,"2254":7,"2259":2,"2260":1,"2275":1,"2279":1,"2289":1,"2293":1,"2296":1,"2297":3,"2303":1,"2310":4,"2313":2,"2315":1,"2319":1,"2325":1,"2329":1,"2330":1,"2331":4,"2377":1,"2382":1,"2383":1,"2388":1,"2393":1,"2398":1,"2407":2,"2410":1,"2415":1,"2417":13,"2418":4,"2425":1,"2427":1,"2428":1,"2430":1,"2431":1,"2434":2,"2435":1,"2449":2,"2450":1,"2452":1,"2453":4,"2460":1,"2463":1,"2466":3,"2474":1,"2475":1,"2477":1,"2499":1,"2502":1,"2508":2,"2510":1,"2516":1,"2523":1,"2527":2,"2557":1,"2561":1,"2567":1,"2569":3,"2571":1,"2576":1,"2582":1,"2586":1,"2593":1,"2600":1,"2609":2,"2610":1,"2612":1,"2620":1,"2626":1,"2628":5,"2634":1,"2637":1,"2638":1,"2640":1,"2660":1,"2663":3,"2664":1,"2671":1,"2674":1,"2676":1,"2687":1,"2690":1,"2691":1,"2695":1,"2702":1,"2703":1,"2707":1,"2709":2,"2714":1,"2726":2,"2739":1,"2741":1,"2742":1,"2744":2,"2746":7,"2747":1,"2748":1,"2751":1,"2761":1,"2763":12,"2764":5,"2777":2,"2778":1,"2785":2,"2786":1,"2827":1,"2836":1,"2851":1,"2869":1,"2881":2,"2885":1,"2890":1,"2892":2,"2894":1,"2895":1,"2905":1,"2907":1,"2910":1,"2911":2,"2912":1,"2919":3,"2920":3,"2931":1,"2935":1,"2938":1,"2940":1,"2943":1,"2945":3,"2946":1,"2948":1,"2949":2}}],["ast1109mltrq",{"2":{"2689":1}}],["astr",{"2":{"2534":1,"2555":1}}],["astro65",{"2":{"114":1}}],["asterisk",{"2":{"2510":1,"2534":1,"2550":1,"2555":1}}],["asian",{"2":{"2329":1}}],["aside",{"2":{"1364":1,"2474":1}}],["as5",{"2":{"1925":1,"2527":1}}],["as400",{"2":{"2510":1,"2550":1}}],["as4",{"2":{"1925":1,"2527":1}}],["as3",{"2":{"1925":1,"2527":1}}],["as2",{"2":{"1925":1,"2527":1}}],["as1",{"2":{"1925":1,"2527":1}}],["asd",{"2":{"1802":2}}],["asdf2",{"2":{"449":5}}],["asking",{"2":{"2567":1}}],["ask",{"0":{"418":1},"2":{"525":1,"610":3,"618":1,"619":1,"2407":1,"2410":1,"2447":1,"2573":1,"2612":1,"2682":1,"2748":1,"2936":1}}],["asked",{"0":{"1314":1,"1334":1},"1":{"1315":1,"1316":1,"1317":1,"1318":1,"1319":1,"1320":1,"1335":1,"1336":1,"1337":1,"1338":1,"1339":1,"1340":1,"1341":1,"1342":1,"1343":1},"2":{"265":1,"275":1,"307":1,"710":1,"2506":1,"2612":1,"2747":1}}],["aspects",{"2":{"279":1,"375":1,"1433":1,"1592":1}}],["asynchronously",{"2":{"396":1}}],["asynchronous",{"2":{"374":1,"380":1}}],["asyncusb",{"2":{"266":1}}],["async",{"0":{"263":1},"2":{"266":1,"277":1}}],["asymmetric",{"2":{"160":1,"1410":2}}],["asym",{"2":{"114":1,"1410":5,"1413":1,"2854":1}}],["ashpil",{"2":{"207":2}}],["ascii",{"0":{"1355":1,"2236":1,"2788":1},"1":{"2237":1},"2":{"176":2,"1446":1,"1538":1,"2059":2,"2219":1,"2221":1,"2222":1,"2223":1,"2228":1,"2230":1,"2232":1,"2234":1,"2236":1,"2237":1,"2762":8,"2785":2,"2787":3,"2788":6,"2789":3,"2790":2,"2852":2,"2856":1,"2886":3}}],["asst",{"2":{"2510":1,"2549":1}}],["associate",{"2":{"2319":1}}],["associated",{"2":{"175":1,"240":1,"379":1,"562":1,"563":1,"613":2,"627":1,"1538":1,"2295":1,"2296":1,"2319":3,"2466":1,"2696":1,"2721":1,"2747":1,"2784":1,"2792":3,"2871":1,"2878":1}}],["assistance",{"2":{"2612":1}}],["assistant",{"2":{"2510":2,"2549":2}}],["assist",{"2":{"1342":1,"2194":1}}],["assigns",{"2":{"2470":1,"2796":1}}],["assigned",{"2":{"713":1,"1620":1,"1988":1,"1989":1}}],["assigning",{"2":{"629":1,"2432":1,"2685":1}}],["assignment",{"0":{"2938":1},"2":{"133":1,"134":2,"312":1,"532":1,"2744":1,"2869":1}}],["assignments",{"2":{"17":1,"114":1,"1625":2,"2691":1,"2763":2}}],["assign",{"2":{"48":1,"235":1,"713":1,"1312":1,"1313":1,"1665":1,"1763":1,"1790":1,"1845":1,"1994":1,"2066":1,"2081":1,"2189":1,"2474":2,"2552":1,"2843":1,"2930":1}}],["assembled",{"2":{"1959":1,"1961":1}}],["assembler",{"2":{"134":1}}],["assert",{"2":{"396":1,"1633":1,"1653":1,"1655":1,"1657":1,"2778":1,"2779":1,"2781":1,"2783":1,"2787":1,"2788":1}}],["assertions",{"2":{"2727":1}}],["assertion",{"2":{"339":1,"397":1}}],["assessment",{"2":{"312":1}}],["assuming",{"2":{"797":4,"2096":1,"2297":1,"2317":1,"2764":2}}],["assume",{"2":{"396":1,"626":1,"646":1,"2411":1,"2607":1,"2933":1}}],["assumes",{"2":{"384":1,"744":1,"1193":1,"1449":1,"1945":1,"1986":1,"2223":1,"2259":1,"2263":1,"2271":1,"2275":1,"2278":2,"2284":1,"2317":1,"2410":1,"2411":1,"2632":1,"2702":1,"2886":1,"2933":2}}],["assumed",{"2":{"14":1,"141":1,"201":1,"340":1,"475":1,"568":1,"1417":1,"1853":1,"2092":1,"2271":1,"2300":1,"2422":1,"2683":1,"2705":1}}],["assumption",{"2":{"303":1,"317":1,"338":1}}],["assumptions",{"2":{"149":1,"191":1}}],["as",{"0":{"6":1,"347":1,"1779":1,"1924":1,"2005":1,"2463":1,"2484":1,"2486":1,"2488":1},"1":{"1784":1,"1785":1,"1786":1,"2006":1,"2485":1,"2487":1,"2489":1},"2":{"6":1,"8":1,"31":2,"37":1,"49":3,"50":5,"55":1,"56":1,"57":1,"65":1,"67":1,"69":1,"76":1,"86":1,"87":1,"90":1,"99":1,"103":2,"107":2,"114":2,"116":1,"118":1,"120":1,"123":1,"124":2,"125":1,"126":2,"131":1,"132":4,"149":1,"152":2,"153":3,"156":2,"160":2,"163":1,"166":1,"169":1,"170":1,"173":2,"175":1,"176":3,"179":1,"184":2,"185":1,"189":1,"191":2,"194":2,"198":5,"199":2,"201":3,"211":1,"213":4,"215":3,"224":5,"228":1,"229":3,"230":1,"231":1,"232":3,"233":1,"234":3,"235":1,"236":1,"238":1,"240":3,"243":3,"244":1,"246":1,"249":2,"254":1,"262":1,"263":7,"265":2,"266":1,"272":2,"273":1,"275":1,"276":3,"279":1,"283":2,"284":1,"289":1,"293":1,"297":1,"298":2,"302":2,"303":2,"305":1,"307":1,"308":1,"312":1,"314":1,"317":1,"320":1,"323":1,"328":1,"331":3,"338":2,"340":1,"354":1,"365":1,"375":2,"379":1,"393":3,"396":1,"397":1,"403":1,"414":3,"425":1,"430":1,"433":5,"444":1,"460":1,"461":1,"462":1,"470":2,"473":1,"489":2,"491":3,"504":2,"512":4,"513":1,"514":3,"516":1,"520":1,"521":1,"525":2,"527":1,"531":2,"532":1,"538":1,"542":2,"546":1,"564":4,"570":3,"571":2,"572":2,"574":1,"575":1,"582":1,"583":1,"588":5,"592":1,"593":1,"598":1,"610":2,"613":1,"616":1,"619":2,"621":1,"627":3,"630":1,"634":2,"635":2,"640":2,"643":1,"645":4,"646":4,"651":5,"657":1,"665":4,"666":1,"669":1,"671":2,"679":1,"680":1,"685":2,"690":3,"694":1,"696":1,"709":3,"710":2,"712":3,"713":4,"714":1,"716":3,"720":2,"722":1,"729":1,"743":1,"746":1,"749":5,"750":2,"754":1,"755":2,"756":2,"757":1,"759":6,"761":1,"762":2,"764":2,"797":8,"803":1,"863":1,"893":1,"923":4,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1094":4,"1098":1,"1128":4,"1132":1,"1166":1,"1192":1,"1193":2,"1194":2,"1197":4,"1198":1,"1200":3,"1201":1,"1205":1,"1214":1,"1219":1,"1246":1,"1248":4,"1269":2,"1287":1,"1288":1,"1289":2,"1296":1,"1297":1,"1298":1,"1311":1,"1313":1,"1317":1,"1319":1,"1330":2,"1332":1,"1336":1,"1343":1,"1361":1,"1364":2,"1366":1,"1367":2,"1376":2,"1383":2,"1387":1,"1398":1,"1405":2,"1415":1,"1417":4,"1422":5,"1423":2,"1425":3,"1426":1,"1427":2,"1428":1,"1430":1,"1431":1,"1432":1,"1433":1,"1434":1,"1441":1,"1446":3,"1448":1,"1451":1,"1453":1,"1455":1,"1463":1,"1464":2,"1465":2,"1466":2,"1467":2,"1472":3,"1474":1,"1478":2,"1479":1,"1482":1,"1483":2,"1485":1,"1486":2,"1490":1,"1492":2,"1498":1,"1499":1,"1501":2,"1503":1,"1514":1,"1517":1,"1518":3,"1519":1,"1521":6,"1522":6,"1523":3,"1527":2,"1528":2,"1532":2,"1533":1,"1534":2,"1538":8,"1540":2,"1541":2,"1546":2,"1549":1,"1590":1,"1592":2,"1593":4,"1594":3,"1597":1,"1603":1,"1605":2,"1606":1,"1609":1,"1611":1,"1612":4,"1616":1,"1620":1,"1622":3,"1623":1,"1628":2,"1629":1,"1630":3,"1631":1,"1632":1,"1635":1,"1636":1,"1638":1,"1643":1,"1644":1,"1652":1,"1661":1,"1668":1,"1670":2,"1681":3,"1685":1,"1687":1,"1689":1,"1690":1,"1702":1,"1738":2,"1739":1,"1742":1,"1743":1,"1747":1,"1750":1,"1762":1,"1765":2,"1777":2,"1779":1,"1781":5,"1786":2,"1787":1,"1788":1,"1789":1,"1795":2,"1801":1,"1803":1,"1835":1,"1837":2,"1840":1,"1841":1,"1843":2,"1844":1,"1846":3,"1849":1,"1850":1,"1851":1,"1855":1,"1920":2,"1923":1,"1925":1,"1934":2,"1935":2,"1937":1,"1939":3,"1946":1,"1947":1,"1952":1,"1953":1,"1954":1,"1956":1,"1962":2,"1974":2,"1983":3,"1986":4,"1988":2,"1989":1,"1999":6,"2000":7,"2001":1,"2003":1,"2004":1,"2006":1,"2008":1,"2009":1,"2011":2,"2012":1,"2013":1,"2014":2,"2015":1,"2037":1,"2039":2,"2043":1,"2048":1,"2051":1,"2054":2,"2069":3,"2070":1,"2071":1,"2075":2,"2076":2,"2077":4,"2080":1,"2082":3,"2086":4,"2088":1,"2090":1,"2094":2,"2164":1,"2181":1,"2188":1,"2189":2,"2193":1,"2206":1,"2207":1,"2210":2,"2219":1,"2222":1,"2253":1,"2254":1,"2255":4,"2259":1,"2260":2,"2261":3,"2265":1,"2269":1,"2272":1,"2273":1,"2275":4,"2276":1,"2277":1,"2278":3,"2280":2,"2281":1,"2286":1,"2290":1,"2292":3,"2294":3,"2295":1,"2296":1,"2297":3,"2298":4,"2300":2,"2301":1,"2303":1,"2305":2,"2309":1,"2310":1,"2316":3,"2317":2,"2318":4,"2319":4,"2329":2,"2330":3,"2331":4,"2369":1,"2375":1,"2380":1,"2381":1,"2382":2,"2383":1,"2384":4,"2385":1,"2387":2,"2388":1,"2389":1,"2390":1,"2391":4,"2393":1,"2394":1,"2395":1,"2399":1,"2400":1,"2402":1,"2404":1,"2405":1,"2407":4,"2409":1,"2417":5,"2418":5,"2422":4,"2423":2,"2424":1,"2425":1,"2427":1,"2428":1,"2429":1,"2430":2,"2431":6,"2432":1,"2434":1,"2435":1,"2447":1,"2449":2,"2451":1,"2452":1,"2453":2,"2454":3,"2455":1,"2458":2,"2460":1,"2461":2,"2463":1,"2466":6,"2472":1,"2473":1,"2477":1,"2484":1,"2486":1,"2488":1,"2496":1,"2499":1,"2502":1,"2503":3,"2504":1,"2505":1,"2508":1,"2510":2,"2513":6,"2523":1,"2526":6,"2527":1,"2550":1,"2552":7,"2553":1,"2557":2,"2558":1,"2561":1,"2562":2,"2564":2,"2566":3,"2567":4,"2568":4,"2569":9,"2571":1,"2575":1,"2583":1,"2589":1,"2603":1,"2604":1,"2605":1,"2607":3,"2610":2,"2620":2,"2622":1,"2626":4,"2628":1,"2634":1,"2637":2,"2639":2,"2643":1,"2650":2,"2651":1,"2652":1,"2653":3,"2662":2,"2664":1,"2669":2,"2673":3,"2676":3,"2678":1,"2681":1,"2683":1,"2684":2,"2685":2,"2686":1,"2687":1,"2694":1,"2703":1,"2704":1,"2705":1,"2707":5,"2709":2,"2710":1,"2711":3,"2713":1,"2714":2,"2715":1,"2717":1,"2733":1,"2734":3,"2744":2,"2746":14,"2747":4,"2748":1,"2749":2,"2750":1,"2751":2,"2759":1,"2760":6,"2761":1,"2762":6,"2763":1,"2764":10,"2765":1,"2771":1,"2772":1,"2777":1,"2785":1,"2789":1,"2794":3,"2795":2,"2796":2,"2799":2,"2800":3,"2802":1,"2808":1,"2834":2,"2840":1,"2846":1,"2851":1,"2852":2,"2857":2,"2869":3,"2882":2,"2884":1,"2885":1,"2886":4,"2888":2,"2894":1,"2901":2,"2902":2,"2903":1,"2912":6,"2918":2,"2919":9,"2920":3,"2921":3,"2922":2,"2925":7,"2926":2,"2927":2,"2928":1,"2930":3,"2932":1,"2934":2,"2936":2,"2940":1,"2943":1,"2948":4,"2949":2}}],["at25sf128a",{"2":{"2705":2}}],["ation",{"2":{"2079":1}}],["atm32u4dfu",{"2":{"713":1}}],["atm16u4",{"2":{"713":1}}],["atmel",{"0":{"546":1,"2383":1,"2498":1},"1":{"2384":1,"2385":1},"2":{"111":1,"240":3,"573":2,"713":7,"2383":2,"2498":1,"2503":1,"2612":1,"2615":2,"2802":1,"2803":1}}],["atmega16",{"2":{"688":1,"763":2,"1247":1,"1268":2,"1553":2,"1554":2}}],["atmega16u4",{"2":{"546":1,"2498":1}}],["atmega16u2",{"2":{"64":1,"92":1,"546":1,"713":1}}],["atmega32a",{"2":{"235":1,"546":1,"688":1,"763":1,"1247":1,"1268":1,"1553":1,"1554":1,"2500":1,"2501":2}}],["atmega32u4",{"0":{"2041":1},"2":{"70":1,"111":1,"444":1,"546":1,"573":1,"693":1,"715":1,"723":1,"1315":4,"1317":1,"1382":1,"1474":1,"1953":1,"2043":1,"2261":1,"2424":5,"2498":1,"2499":1,"2502":1,"2612":1,"2615":5,"2706":1,"2901":1,"2934":1}}],["atmega32u2",{"2":{"63":1,"64":1,"546":1,"713":1}}],["atmega328p",{"2":{"64":1,"546":1,"2389":1,"2501":2}}],["atmega328",{"2":{"64":1,"546":1,"688":2,"763":1,"1247":1,"1268":1,"1553":1,"1554":1}}],["at32",{"0":{"550":1,"2398":1},"1":{"2399":1},"2":{"317":1,"339":1,"713":2,"2398":3,"2399":1}}],["at32f415",{"2":{"285":1,"294":1,"550":1}}],["atlas",{"2":{"211":1}}],["atsam",{"2":{"75":1,"114":4,"134":1,"160":1,"277":1,"279":2,"285":1}}],["atop",{"2":{"69":1}}],["atomically",{"2":{"799":1}}],["atomic",{"0":{"799":1},"2":{"64":1,"277":1,"799":5}}],["atom47",{"2":{"57":4,"114":1}}],["at90usb1286",{"2":{"2424":1}}],["at90usb128",{"2":{"546":1,"713":1,"2490":2,"2498":2}}],["at90usb162",{"2":{"74":1,"546":1,"1553":1,"1554":1}}],["at90usb64",{"2":{"546":1,"688":1,"713":1,"763":1,"1247":1,"1268":1,"1553":1,"1554":1,"2498":2}}],["at90usb",{"2":{"63":1}}],["attain",{"2":{"2567":1,"2569":1,"2746":1}}],["attacking",{"2":{"1493":1}}],["attack",{"2":{"312":1,"2567":1}}],["attach",{"0":{"2756":1},"2":{"2756":4}}],["attachment",{"2":{"1378":1,"2756":1}}],["attaching",{"2":{"82":1,"2756":1}}],["attached",{"2":{"49":1,"1549":1,"1647":1,"1684":2,"1685":1,"1983":1,"2178":1,"2272":1,"2423":3,"2466":1}}],["attribution",{"2":{"2714":2}}],["attribute",{"2":{"495":1,"497":1,"498":1,"625":4,"1419":4,"1470":2,"1472":1,"1689":1,"2381":1,"2778":1,"2779":1,"2780":1,"2781":1,"2782":1,"2783":1,"2784":1,"2787":1,"2788":1,"2789":2}}],["attributes",{"2":{"110":1,"494":1,"2683":2}}],["attractive",{"2":{"2425":1}}],["attrs",{"2":{"1332":2}}],["attiny85",{"2":{"1291":2}}],["attenuate",{"2":{"1974":5}}],["attenuation",{"2":{"176":1,"191":1,"1974":6}}],["attention",{"2":{"403":1,"678":1,"2272":1,"2510":1,"2548":1}}],["attempted",{"0":{"2732":1},"1":{"2733":1,"2734":1},"2":{"263":1,"1389":1,"1407":1,"2567":6,"2612":1}}],["attempts",{"0":{"2733":1},"2":{"87":1,"312":1,"365":1,"720":1,"2213":1,"2275":2,"2411":1,"2933":1}}],["attempting",{"2":{"51":1,"123":1,"240":1,"1329":1,"1795":1,"2277":1,"2508":1,"2615":1,"2685":1}}],["attempt",{"2":{"51":1,"123":1,"182":1,"793":2,"1472":1,"2275":3,"2369":1,"2387":1,"2425":1,"2567":1,"2616":1}}],["at101",{"2":{"37":2,"159":2,"160":1}}],["at",{"0":{"2315":1},"2":{"4":1,"11":1,"21":1,"25":1,"28":1,"65":2,"73":1,"75":1,"114":1,"124":1,"134":2,"149":2,"152":1,"156":1,"157":1,"191":2,"199":1,"203":1,"211":1,"222":1,"229":2,"231":1,"241":2,"249":3,"251":1,"265":3,"266":2,"277":1,"285":1,"377":2,"398":1,"403":1,"411":1,"412":1,"414":1,"473":1,"489":2,"492":1,"512":5,"521":2,"524":1,"529":1,"541":1,"542":2,"544":1,"555":2,"556":1,"567":1,"574":1,"576":2,"592":2,"593":2,"604":2,"608":1,"616":1,"626":1,"627":5,"633":1,"635":1,"643":1,"645":1,"646":2,"647":1,"656":1,"657":2,"664":1,"673":1,"684":1,"686":1,"690":1,"710":1,"711":2,"720":1,"728":1,"749":1,"754":3,"757":1,"793":1,"799":1,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1192":1,"1198":1,"1201":1,"1218":1,"1252":2,"1272":1,"1296":1,"1299":1,"1303":1,"1318":1,"1319":1,"1327":1,"1331":1,"1348":1,"1364":1,"1389":1,"1413":2,"1422":1,"1423":2,"1467":1,"1470":1,"1472":1,"1477":1,"1481":1,"1484":3,"1485":1,"1487":1,"1492":1,"1503":2,"1527":1,"1528":1,"1533":1,"1538":2,"1539":2,"1546":2,"1556":1,"1557":1,"1558":1,"1593":2,"1595":1,"1602":1,"1608":1,"1616":1,"1625":1,"1630":1,"1633":1,"1640":1,"1645":1,"1647":2,"1661":1,"1663":1,"1667":1,"1670":2,"1685":1,"1689":1,"1697":1,"1728":1,"1729":1,"1740":1,"1786":1,"1787":1,"1818":1,"1853":1,"1855":1,"1930":1,"1931":1,"1934":2,"1935":1,"1936":6,"1937":1,"1938":1,"1939":3,"1946":1,"1947":1,"1953":1,"1954":12,"1956":1,"1961":1,"1965":1,"1967":1,"1974":1,"1983":3,"1985":1,"1986":4,"1999":1,"2043":1,"2057":1,"2085":7,"2092":1,"2094":1,"2096":1,"2179":1,"2183":1,"2187":1,"2191":1,"2198":5,"2201":12,"2205":1,"2252":1,"2258":1,"2259":1,"2264":2,"2267":2,"2272":4,"2277":1,"2286":1,"2290":11,"2293":1,"2294":1,"2298":2,"2299":1,"2300":2,"2309":2,"2310":1,"2317":2,"2319":1,"2329":1,"2332":2,"2379":3,"2396":1,"2400":1,"2402":1,"2404":1,"2410":1,"2417":1,"2418":3,"2425":1,"2427":1,"2428":3,"2429":1,"2434":1,"2450":1,"2462":1,"2464":1,"2466":4,"2471":1,"2475":1,"2481":1,"2504":1,"2508":9,"2534":1,"2540":2,"2555":1,"2557":1,"2560":1,"2561":1,"2567":2,"2568":1,"2572":1,"2576":2,"2584":1,"2585":1,"2594":1,"2600":1,"2605":1,"2609":1,"2612":1,"2616":1,"2627":1,"2628":1,"2634":4,"2637":1,"2640":1,"2642":1,"2650":1,"2658":1,"2659":3,"2671":1,"2683":5,"2684":1,"2685":2,"2686":1,"2687":1,"2690":1,"2715":1,"2717":1,"2726":1,"2744":1,"2746":7,"2747":1,"2750":1,"2753":1,"2760":1,"2761":3,"2762":1,"2763":2,"2764":8,"2779":2,"2787":2,"2816":1,"2833":1,"2842":1,"2851":2,"2882":1,"2885":1,"2892":1,"2903":3,"2912":2,"2914":1,"2927":1,"2930":1,"2934":1,"2936":1,"2937":2,"2938":1,"2939":2,"2940":3,"2944":1,"2947":1,"2948":1,"2949":1}}],["atreus",{"0":{"4":1},"2":{"176":1,"277":1,"328":1}}],["ancient",{"2":{"2710":1}}],["anchors",{"2":{"341":3}}],["anchor",{"2":{"222":1,"341":1}}],["analysis",{"2":{"2653":1}}],["analogue",{"2":{"2430":1}}],["analogreference",{"2":{"693":1}}],["analogreadpinadc",{"2":{"694":1}}],["analogreadpin",{"2":{"50":1,"693":1,"694":1}}],["analogread",{"2":{"50":1,"133":1,"134":1}}],["analog",{"0":{"1968":1},"2":{"49":1,"74":1,"118":2,"149":1,"191":1,"199":2,"234":6,"236":1,"249":1,"685":1,"686":1,"693":1,"1398":2,"1738":2,"1739":2,"1742":1,"1747":1,"1749":4,"1755":1,"1923":1,"1968":22}}],["anatomy",{"0":{"2560":1},"1":{"2561":1,"2562":1,"2563":1,"2564":1}}],["anodes",{"2":{"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1}}],["another",{"2":{"95":1,"149":2,"194":1,"233":1,"251":1,"268":1,"289":1,"403":1,"509":1,"564":2,"683":1,"1396":1,"1427":1,"1446":2,"1462":1,"1478":1,"1480":1,"1483":1,"1498":1,"1518":1,"1533":1,"1538":1,"1595":1,"1609":1,"1613":1,"1619":2,"1662":1,"1681":1,"1782":1,"1785":1,"2065":1,"2066":1,"2069":1,"2265":1,"2292":2,"2298":1,"2300":2,"2310":1,"2317":1,"2325":1,"2388":1,"2400":1,"2402":1,"2404":1,"2464":1,"2482":1,"2503":1,"2560":1,"2568":1,"2634":1,"2658":1,"2659":1,"2678":1,"2746":2,"2763":2,"2831":1,"2834":1,"2913":3,"2919":4,"2920":4,"2925":1,"2928":3,"2942":1}}],["answer",{"2":{"524":1,"610":2,"2628":4}}],["ansi|iso",{"2":{"308":1}}],["ansi",{"0":{"35":1,"2534":1,"2553":1},"1":{"36":1,"2554":1,"2555":1},"2":{"35":1,"36":4,"99":1,"102":1,"114":1,"149":1,"159":2,"168":2,"176":1,"188":1,"191":1,"207":1,"211":4,"217":2,"226":6,"259":2,"260":1,"266":2,"277":1,"308":1,"322":1,"429":3,"444":1,"494":1,"1346":3,"1433":3,"1434":3,"1465":2,"1774":1,"2223":1,"2259":1,"2453":5,"2534":1,"2553":1,"2607":1,"2746":1,"2869":4,"2884":1,"2886":1,"2887":10}}],["anti",{"2":{"440":1,"2727":1,"2740":1,"2762":1,"2872":1}}],["anticipation",{"2":{"86":1}}],["anticipated",{"2":{"2":1,"1499":1}}],["annotation",{"2":{"539":1}}],["annotated",{"0":{"539":1}}],["announce",{"2":{"224":1,"407":1,"408":1,"411":1}}],["annepro2",{"2":{"191":1,"249":1,"266":2}}],["anim",{"2":{"2764":4}}],["animtion",{"2":{"191":1}}],["animate",{"2":{"2187":1,"2764":9}}],["animated",{"2":{"153":1,"2466":1,"2760":1,"2762":1,"2764":1}}],["animation",{"0":{"2184":1,"2185":1,"2187":1},"2":{"49":2,"160":1,"191":5,"222":1,"236":1,"249":1,"285":1,"308":1,"328":1,"462":1,"1848":2,"1849":1,"1852":4,"1865":1,"1867":1,"1908":1,"1910":1,"1912":1,"1915":1,"1949":2,"2084":2,"2085":3,"2091":4,"2107":1,"2109":1,"2168":1,"2170":1,"2172":1,"2175":1,"2181":10,"2183":1,"2184":11,"2185":10,"2187":6,"2199":4,"2202":4,"2525":2,"2532":10,"2533":2,"2759":1,"2764":6,"2780":1,"2871":4,"2877":2,"2878":4}}],["animations",{"0":{"2183":1,"2196":1},"1":{"2184":1,"2185":1,"2186":1,"2187":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1},"2":{"32":1,"124":5,"153":1,"176":1,"191":1,"199":1,"211":1,"222":1,"236":1,"1846":2,"1848":2,"1850":1,"2082":2,"2084":2,"2088":1,"2184":4,"2185":1,"2186":2,"2187":6,"2188":1,"2199":6,"2525":2,"2533":2,"2746":1,"2760":1,"2761":4,"2762":1,"2764":1,"2781":1,"2871":3,"2877":2,"2878":3,"2894":4}}],["angle65",{"2":{"211":1}}],["angle",{"2":{"176":2,"1741":1,"1983":2,"1986":1,"2534":2,"2555":2,"2869":1}}],["angel64",{"2":{"143":4}}],["angel17",{"2":{"143":2}}],["an",{"0":{"423":1,"667":1,"1338":1,"1523":1,"1644":1,"2635":1,"2707":1,"2708":1,"2711":1},"1":{"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"2636":1,"2637":1,"2708":1,"2709":2,"2710":2,"2711":1,"2712":1,"2713":1},"2":{"5":1,"6":1,"14":1,"49":1,"50":1,"73":2,"99":3,"103":1,"126":1,"132":1,"149":1,"158":1,"172":1,"176":1,"182":1,"194":2,"201":1,"203":2,"234":1,"248":1,"249":1,"268":1,"279":1,"288":1,"289":1,"294":1,"320":1,"333":1,"339":1,"352":1,"366":1,"373":1,"374":1,"380":1,"381":1,"384":2,"389":2,"447":1,"463":1,"467":1,"468":1,"472":1,"473":1,"476":1,"477":1,"487":1,"489":2,"491":1,"495":1,"496":1,"512":1,"513":1,"520":1,"523":1,"524":3,"525":1,"538":1,"544":1,"559":1,"561":2,"565":1,"570":1,"574":1,"578":1,"582":1,"591":1,"599":2,"604":1,"612":1,"613":4,"618":1,"619":2,"620":2,"623":1,"627":1,"628":1,"629":1,"630":1,"644":2,"665":1,"668":2,"671":1,"672":1,"675":2,"683":2,"691":1,"693":1,"694":1,"696":2,"711":1,"712":1,"713":1,"714":1,"715":1,"717":1,"723":1,"729":1,"748":1,"749":1,"750":1,"752":1,"753":1,"754":2,"755":1,"762":1,"764":3,"772":1,"781":1,"787":1,"797":4,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1197":1,"1199":1,"1203":1,"1204":1,"1205":2,"1208":1,"1219":1,"1248":1,"1251":1,"1252":2,"1269":1,"1288":1,"1291":1,"1296":1,"1311":1,"1315":1,"1320":1,"1332":1,"1336":1,"1339":1,"1342":1,"1345":1,"1356":1,"1364":1,"1376":1,"1399":1,"1409":2,"1417":2,"1419":1,"1420":1,"1430":1,"1438":1,"1443":1,"1444":1,"1446":3,"1452":1,"1478":1,"1480":1,"1481":1,"1492":1,"1493":1,"1498":1,"1499":1,"1517":2,"1518":1,"1527":1,"1528":2,"1545":1,"1549":1,"1558":1,"1593":2,"1601":1,"1605":1,"1612":1,"1617":1,"1634":1,"1638":2,"1639":1,"1665":1,"1666":1,"1667":1,"1669":1,"1673":1,"1681":1,"1697":1,"1699":1,"1717":1,"1720":1,"1721":1,"1726":1,"1738":3,"1747":1,"1777":1,"1779":2,"1781":1,"1784":1,"1785":2,"1788":1,"1794":2,"1795":1,"1801":1,"1802":1,"1835":1,"1839":1,"1845":2,"1850":1,"1851":1,"1852":2,"1855":1,"1865":1,"1867":1,"1925":2,"1936":2,"1953":1,"1962":1,"1966":1,"1967":1,"1968":2,"1978":1,"1980":1,"1981":1,"1985":1,"1986":1,"1987":1,"1999":1,"2044":1,"2054":1,"2059":1,"2063":1,"2069":1,"2070":1,"2077":1,"2081":2,"2088":1,"2090":1,"2091":2,"2094":1,"2107":1,"2109":1,"2164":1,"2188":2,"2189":2,"2208":2,"2218":2,"2221":1,"2222":1,"2232":1,"2234":1,"2236":1,"2238":1,"2255":1,"2260":2,"2261":1,"2267":1,"2272":1,"2276":2,"2278":1,"2280":1,"2291":2,"2293":1,"2294":1,"2298":1,"2300":1,"2305":2,"2309":1,"2317":4,"2329":2,"2330":1,"2331":1,"2353":1,"2375":2,"2379":1,"2384":1,"2388":1,"2390":1,"2391":1,"2394":3,"2399":1,"2410":1,"2418":1,"2423":1,"2429":2,"2435":1,"2441":1,"2446":1,"2449":1,"2450":1,"2453":3,"2458":1,"2466":2,"2472":1,"2477":1,"2483":1,"2484":1,"2486":2,"2488":1,"2502":1,"2504":1,"2505":1,"2506":1,"2508":1,"2527":2,"2556":1,"2559":1,"2560":1,"2563":1,"2564":1,"2565":1,"2568":1,"2569":2,"2572":1,"2589":2,"2590":3,"2607":1,"2628":1,"2632":1,"2640":2,"2652":1,"2653":3,"2658":1,"2663":1,"2667":1,"2668":2,"2673":1,"2685":1,"2688":1,"2690":1,"2691":1,"2700":1,"2705":2,"2706":1,"2707":2,"2709":1,"2710":1,"2711":4,"2713":1,"2715":2,"2730":1,"2743":1,"2744":3,"2746":8,"2747":2,"2753":2,"2756":1,"2760":1,"2762":3,"2763":2,"2764":5,"2774":2,"2776":1,"2777":1,"2779":1,"2780":1,"2781":1,"2782":1,"2784":1,"2785":1,"2787":2,"2795":2,"2800":1,"2805":1,"2810":1,"2812":1,"2814":1,"2818":1,"2819":1,"2821":1,"2822":1,"2823":1,"2824":1,"2850":1,"2865":1,"2869":1,"2871":2,"2876":1,"2878":2,"2886":1,"2895":1,"2899":1,"2901":1,"2919":1,"2920":1,"2922":1,"2925":5,"2928":1,"2930":1,"2937":1,"2939":1,"2948":1}}],["anding",{"2":{"1364":1}}],["andrebrait",{"2":{"114":2,"191":1}}],["andc",{"2":{"49":1}}],["and",{"0":{"22":1,"35":2,"49":1,"50":1,"51":1,"58":1,"63":1,"64":1,"65":1,"69":1,"70":1,"74":1,"75":1,"76":1,"77":1,"87":1,"93":1,"94":1,"95":1,"113":1,"133":1,"140":1,"190":1,"229":1,"233":1,"273":1,"276":1,"284":1,"316":1,"495":1,"501":2,"502":1,"527":1,"537":1,"608":1,"649":1,"778":1,"1319":1,"1320":1,"1340":1,"1343":1,"1360":1,"1362":1,"1386":1,"1394":1,"1397":1,"1422":1,"1448":1,"1457":1,"1519":1,"1609":1,"1612":1,"1661":1,"1772":1,"1773":1,"1941":1,"1983":1,"1988":1,"1989":1,"2008":1,"2038":1,"2050":1,"2072":1,"2183":1,"2184":1,"2185":1,"2190":1,"2196":1,"2279":1,"2318":1,"2319":1,"2330":1,"2382":1,"2438":1,"2460":1,"2467":1,"2542":1,"2557":1,"2559":1,"2562":1,"2580":1,"2632":1,"2647":1,"2657":1,"2658":1,"2696":1,"2737":1,"2739":1,"2797":1,"2942":1},"1":{"36":2,"88":1,"496":1,"497":1,"498":1,"499":1,"500":1,"502":2,"503":2,"504":2,"505":2,"506":2,"779":1,"780":1,"1320":1,"1423":1,"1662":1,"1663":1,"1664":1,"2073":1,"2074":1,"2075":1,"2184":1,"2185":1,"2186":1,"2187":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2280":1,"2383":1,"2384":1,"2385":1,"2386":1,"2387":1,"2388":1,"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1,"2558":1,"2559":1,"2563":1,"2564":1,"2648":1,"2649":1,"2658":1,"2659":1,"2660":1,"2697":1,"2698":1,"2699":1,"2798":1,"2799":1,"2800":1},"2":{"1":1,"2":2,"3":4,"4":1,"5":2,"6":1,"7":3,"8":1,"10":2,"11":1,"14":2,"15":4,"16":1,"17":1,"18":1,"21":2,"22":1,"24":2,"25":2,"28":2,"30":1,"31":3,"32":5,"33":2,"34":2,"35":1,"36":1,"37":1,"38":1,"43":1,"45":4,"49":12,"50":7,"57":1,"58":1,"63":1,"64":2,"65":3,"67":1,"69":1,"70":19,"72":1,"73":3,"74":2,"75":2,"76":1,"77":1,"84":1,"86":2,"87":2,"90":1,"92":1,"93":5,"94":3,"99":1,"103":1,"107":2,"108":1,"110":2,"113":4,"114":26,"116":1,"118":1,"119":1,"120":2,"124":3,"126":2,"128":1,"130":2,"132":2,"133":1,"134":9,"140":1,"149":10,"152":2,"153":6,"157":2,"160":6,"163":3,"169":1,"172":1,"173":2,"174":2,"175":5,"176":20,"179":1,"182":3,"185":1,"186":1,"187":1,"188":4,"189":1,"190":1,"191":23,"194":6,"195":2,"196":2,"198":6,"199":11,"201":2,"202":2,"203":2,"206":2,"210":2,"211":53,"213":3,"214":1,"218":1,"220":2,"221":1,"222":12,"224":1,"228":6,"229":2,"230":1,"231":3,"232":3,"233":3,"234":1,"235":3,"236":14,"240":2,"244":1,"245":2,"249":14,"251":2,"255":1,"256":1,"257":1,"258":1,"259":4,"262":1,"263":4,"265":2,"266":6,"268":1,"271":1,"273":2,"276":2,"277":6,"283":4,"284":1,"285":4,"288":4,"289":1,"293":1,"294":4,"297":1,"298":2,"304":1,"305":1,"307":2,"308":6,"312":5,"316":1,"317":3,"320":1,"328":3,"339":1,"344":4,"346":1,"347":1,"350":1,"353":1,"366":5,"367":2,"369":1,"374":2,"375":1,"377":4,"378":1,"380":1,"384":3,"386":3,"390":1,"393":11,"394":1,"396":4,"397":3,"398":2,"402":1,"403":7,"411":1,"412":1,"414":2,"416":1,"417":3,"419":2,"425":4,"426":1,"429":2,"430":3,"433":8,"434":2,"435":4,"437":2,"440":4,"442":1,"443":1,"444":1,"445":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"460":3,"461":3,"469":1,"472":3,"473":1,"483":2,"487":2,"488":1,"489":4,"490":4,"491":2,"494":2,"495":3,"500":1,"501":3,"505":2,"506":1,"507":1,"512":5,"513":4,"514":1,"516":5,"519":2,"520":1,"521":2,"524":1,"525":1,"527":1,"529":2,"530":1,"531":1,"533":1,"534":1,"538":5,"539":1,"540":5,"542":3,"543":3,"544":1,"545":1,"546":1,"554":3,"555":2,"557":2,"558":2,"560":2,"561":8,"562":1,"564":11,"565":1,"568":3,"569":2,"570":2,"571":1,"572":1,"574":5,"575":1,"578":2,"580":1,"581":3,"584":1,"586":2,"588":1,"592":1,"593":2,"596":2,"599":2,"605":1,"608":1,"609":5,"610":1,"611":3,"613":3,"615":3,"616":1,"618":2,"619":5,"620":1,"621":2,"622":2,"623":1,"624":1,"625":3,"626":2,"629":2,"630":2,"631":1,"635":1,"637":1,"639":4,"643":1,"646":1,"647":4,"648":2,"650":2,"651":5,"656":2,"657":1,"665":9,"666":1,"668":4,"669":4,"672":3,"673":1,"674":1,"675":4,"676":1,"677":2,"681":4,"682":1,"683":1,"684":4,"685":2,"688":1,"690":4,"691":1,"694":4,"696":1,"697":1,"698":1,"709":4,"710":5,"711":3,"712":5,"713":5,"714":1,"716":4,"717":3,"719":3,"720":1,"721":3,"722":1,"723":3,"725":1,"728":1,"729":1,"745":1,"746":4,"749":1,"750":1,"751":1,"753":2,"754":8,"755":2,"756":2,"757":3,"762":2,"763":2,"778":1,"797":1,"801":1,"804":1,"805":3,"827":1,"830":1,"831":3,"856":1,"860":3,"862":1,"863":3,"888":1,"892":1,"893":3,"920":1,"922":1,"923":1,"925":3,"927":1,"928":3,"955":1,"957":1,"959":3,"961":1,"962":3,"989":1,"993":3,"995":1,"996":3,"1023":1,"1027":3,"1029":1,"1030":3,"1057":1,"1061":3,"1063":1,"1064":3,"1091":1,"1093":1,"1094":1,"1095":3,"1097":1,"1098":3,"1125":1,"1127":1,"1128":1,"1129":3,"1131":1,"1132":3,"1159":1,"1161":1,"1163":3,"1165":1,"1166":3,"1192":4,"1193":2,"1194":1,"1196":2,"1197":1,"1198":1,"1199":1,"1200":6,"1201":2,"1203":1,"1204":1,"1205":4,"1207":1,"1215":1,"1218":1,"1219":3,"1247":2,"1265":2,"1266":1,"1268":1,"1272":2,"1283":3,"1284":1,"1286":2,"1287":1,"1288":1,"1290":1,"1292":3,"1293":2,"1294":4,"1295":2,"1297":2,"1298":2,"1299":2,"1300":2,"1303":1,"1312":1,"1313":1,"1314":1,"1315":1,"1317":1,"1318":2,"1320":2,"1326":1,"1329":1,"1330":1,"1332":2,"1336":1,"1337":1,"1339":1,"1340":2,"1341":1,"1342":2,"1343":9,"1346":3,"1347":1,"1348":5,"1349":1,"1350":2,"1351":2,"1353":1,"1354":3,"1356":1,"1357":1,"1361":1,"1362":1,"1363":48,"1364":8,"1367":4,"1375":1,"1376":2,"1377":2,"1379":1,"1380":1,"1382":2,"1383":1,"1387":2,"1388":1,"1392":2,"1393":1,"1395":1,"1396":3,"1407":1,"1409":3,"1410":11,"1412":1,"1413":2,"1415":2,"1416":6,"1417":18,"1418":3,"1419":2,"1420":2,"1421":1,"1422":7,"1423":7,"1425":2,"1426":1,"1427":4,"1428":16,"1431":2,"1433":4,"1434":2,"1436":1,"1438":1,"1439":2,"1440":2,"1441":1,"1443":1,"1446":4,"1447":3,"1448":6,"1450":1,"1451":2,"1453":2,"1455":2,"1457":1,"1458":1,"1462":1,"1463":1,"1464":2,"1465":4,"1466":2,"1467":3,"1470":3,"1471":6,"1472":10,"1473":1,"1474":2,"1475":2,"1477":1,"1478":6,"1480":2,"1481":1,"1483":3,"1484":2,"1485":4,"1489":2,"1490":2,"1491":3,"1492":5,"1493":4,"1496":2,"1498":2,"1499":2,"1500":1,"1503":3,"1504":1,"1506":1,"1510":1,"1515":1,"1516":1,"1517":2,"1518":4,"1520":1,"1521":1,"1522":5,"1523":1,"1525":3,"1526":1,"1527":6,"1528":3,"1529":1,"1532":3,"1533":3,"1534":4,"1535":5,"1537":1,"1538":8,"1539":1,"1540":1,"1541":2,"1545":1,"1546":3,"1549":1,"1550":1,"1558":1,"1589":3,"1593":4,"1594":3,"1595":1,"1597":4,"1600":3,"1602":7,"1603":1,"1605":4,"1606":2,"1609":1,"1610":1,"1612":5,"1613":2,"1614":1,"1616":1,"1617":2,"1618":3,"1619":2,"1620":1,"1621":1,"1623":1,"1626":1,"1627":3,"1628":2,"1630":3,"1633":1,"1634":2,"1635":1,"1636":1,"1638":2,"1639":2,"1643":1,"1644":1,"1645":2,"1647":3,"1653":1,"1654":1,"1655":1,"1656":1,"1657":1,"1658":1,"1659":2,"1661":6,"1663":1,"1664":2,"1665":1,"1666":1,"1667":2,"1668":3,"1669":1,"1670":1,"1671":1,"1673":1,"1676":1,"1678":1,"1681":6,"1682":2,"1684":1,"1685":3,"1686":1,"1690":4,"1695":1,"1702":1,"1708":1,"1720":1,"1722":1,"1723":1,"1729":1,"1730":2,"1736":1,"1738":1,"1740":2,"1742":6,"1743":1,"1751":1,"1753":1,"1755":1,"1762":2,"1763":1,"1765":1,"1766":2,"1770":2,"1773":1,"1774":2,"1776":6,"1777":2,"1779":3,"1781":7,"1782":1,"1784":4,"1785":2,"1786":4,"1787":4,"1788":5,"1789":1,"1790":1,"1791":1,"1793":3,"1795":2,"1798":1,"1802":1,"1803":1,"1812":1,"1838":4,"1843":1,"1846":4,"1849":4,"1850":5,"1905":1,"1919":4,"1920":1,"1923":1,"1926":1,"1930":1,"1931":1,"1934":3,"1935":6,"1936":3,"1937":4,"1938":4,"1939":6,"1941":2,"1945":2,"1946":2,"1947":2,"1948":1,"1952":2,"1953":8,"1954":9,"1956":2,"1957":1,"1961":3,"1962":10,"1964":3,"1966":1,"1968":1,"1969":2,"1970":1,"1971":2,"1973":2,"1974":2,"1976":1,"1977":1,"1978":2,"1981":1,"1983":4,"1984":1,"1985":6,"1986":7,"1987":4,"1988":5,"1989":6,"1990":5,"1992":2,"1993":2,"1994":7,"1995":1,"1996":2,"1997":1,"1999":4,"2000":2,"2001":1,"2002":1,"2004":1,"2006":2,"2008":2,"2009":1,"2011":1,"2013":1,"2014":2,"2015":1,"2016":1,"2025":1,"2027":1,"2037":2,"2038":2,"2041":2,"2042":2,"2043":1,"2044":1,"2047":1,"2048":1,"2050":1,"2053":1,"2054":1,"2056":2,"2057":7,"2058":1,"2059":7,"2065":1,"2066":1,"2068":1,"2069":5,"2070":1,"2071":2,"2072":3,"2073":1,"2075":2,"2076":1,"2077":2,"2079":3,"2082":4,"2085":11,"2087":1,"2088":5,"2096":1,"2097":1,"2159":1,"2161":1,"2163":1,"2165":1,"2179":2,"2180":2,"2181":1,"2183":1,"2184":1,"2185":1,"2186":1,"2189":5,"2190":1,"2191":2,"2198":19,"2199":1,"2200":2,"2201":2,"2202":2,"2207":2,"2208":1,"2210":1,"2211":1,"2212":1,"2216":1,"2218":1,"2225":1,"2226":1,"2246":1,"2251":1,"2254":1,"2255":3,"2256":3,"2259":6,"2261":6,"2262":1,"2263":1,"2264":4,"2265":5,"2266":1,"2267":5,"2269":2,"2271":1,"2272":2,"2273":5,"2274":2,"2275":4,"2276":3,"2277":3,"2278":7,"2279":1,"2280":4,"2281":1,"2284":1,"2286":2,"2287":1,"2289":1,"2290":7,"2291":5,"2292":4,"2293":1,"2294":5,"2295":1,"2296":3,"2297":2,"2298":4,"2300":3,"2302":1,"2303":2,"2305":1,"2308":3,"2309":11,"2310":8,"2312":1,"2317":11,"2318":4,"2319":6,"2320":3,"2323":2,"2325":1,"2326":1,"2327":1,"2329":4,"2330":10,"2331":11,"2344":1,"2345":1,"2346":1,"2365":2,"2369":1,"2375":1,"2377":3,"2378":2,"2379":3,"2381":2,"2382":4,"2383":1,"2384":5,"2385":2,"2386":3,"2387":2,"2388":2,"2389":1,"2390":2,"2391":6,"2392":1,"2393":2,"2394":2,"2395":2,"2396":2,"2397":1,"2398":1,"2399":2,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2405":2,"2407":4,"2409":2,"2410":11,"2414":2,"2415":2,"2416":2,"2417":6,"2418":18,"2419":1,"2421":2,"2422":3,"2423":5,"2424":2,"2425":5,"2426":1,"2427":8,"2428":12,"2429":6,"2430":2,"2431":3,"2432":3,"2433":3,"2434":9,"2435":1,"2436":1,"2439":4,"2441":2,"2447":3,"2448":1,"2449":3,"2450":4,"2451":1,"2452":1,"2453":5,"2454":2,"2455":3,"2456":2,"2457":1,"2458":3,"2459":1,"2460":3,"2461":2,"2463":2,"2464":1,"2466":12,"2467":1,"2468":1,"2469":2,"2471":1,"2474":1,"2477":2,"2479":2,"2481":2,"2482":3,"2483":2,"2486":1,"2490":3,"2496":1,"2497":1,"2498":2,"2499":3,"2500":1,"2501":3,"2502":1,"2503":4,"2504":2,"2505":2,"2506":2,"2508":5,"2510":61,"2516":2,"2523":1,"2526":25,"2529":50,"2530":20,"2535":20,"2541":1,"2542":36,"2544":13,"2545":1,"2547":2,"2549":2,"2550":10,"2552":26,"2553":1,"2554":1,"2557":2,"2558":2,"2559":1,"2561":7,"2562":4,"2563":2,"2564":1,"2566":4,"2567":5,"2568":2,"2569":5,"2570":1,"2571":2,"2572":3,"2573":3,"2574":1,"2575":25,"2576":7,"2579":2,"2580":1,"2582":2,"2583":1,"2585":3,"2587":2,"2590":2,"2591":4,"2592":1,"2593":2,"2597":1,"2598":2,"2599":1,"2600":1,"2601":1,"2602":4,"2603":3,"2604":1,"2605":2,"2606":1,"2607":1,"2608":1,"2609":1,"2610":2,"2612":10,"2613":1,"2614":1,"2616":5,"2617":2,"2618":1,"2619":4,"2620":1,"2622":1,"2626":1,"2628":10,"2632":3,"2633":1,"2634":16,"2635":1,"2637":2,"2638":2,"2639":4,"2640":6,"2650":8,"2651":25,"2653":2,"2657":1,"2658":3,"2659":2,"2662":2,"2663":3,"2664":2,"2666":3,"2667":1,"2668":6,"2669":5,"2672":1,"2673":1,"2674":1,"2676":2,"2677":1,"2678":4,"2679":3,"2680":3,"2682":4,"2683":10,"2684":3,"2685":2,"2686":6,"2687":1,"2690":2,"2691":2,"2694":1,"2696":2,"2701":1,"2702":3,"2703":2,"2704":4,"2705":1,"2707":1,"2709":1,"2710":3,"2711":1,"2714":1,"2716":1,"2717":5,"2718":1,"2719":2,"2720":4,"2721":3,"2724":1,"2725":2,"2726":1,"2727":1,"2728":1,"2731":1,"2733":1,"2744":10,"2745":1,"2746":23,"2747":3,"2748":1,"2749":4,"2750":1,"2751":4,"2753":3,"2756":1,"2757":1,"2759":1,"2760":1,"2761":2,"2762":6,"2763":11,"2764":20,"2767":2,"2769":4,"2771":2,"2772":1,"2775":3,"2776":1,"2777":6,"2779":1,"2781":1,"2785":4,"2786":1,"2787":2,"2790":1,"2791":1,"2794":4,"2795":8,"2796":3,"2799":1,"2802":1,"2805":1,"2813":1,"2817":1,"2818":1,"2823":1,"2828":1,"2831":1,"2832":1,"2834":1,"2836":1,"2837":1,"2839":1,"2842":3,"2845":1,"2850":1,"2851":4,"2854":2,"2857":1,"2864":2,"2869":4,"2870":1,"2872":2,"2880":2,"2883":1,"2884":1,"2886":2,"2888":1,"2889":6,"2890":1,"2891":1,"2893":1,"2894":1,"2895":1,"2897":1,"2901":3,"2902":4,"2903":2,"2904":1,"2905":1,"2906":1,"2907":1,"2908":1,"2910":3,"2911":3,"2912":14,"2913":5,"2914":1,"2918":1,"2919":12,"2920":4,"2921":3,"2922":2,"2923":3,"2924":3,"2925":6,"2926":3,"2928":7,"2930":3,"2931":1,"2934":3,"2935":3,"2936":2,"2937":1,"2938":1,"2939":2,"2940":1,"2941":2,"2942":1,"2943":4,"2944":3,"2947":2,"2948":3,"2949":5}}],["anymore",{"2":{"1605":1}}],["anything",{"2":{"414":1,"633":1,"719":1,"720":1,"1338":1,"1423":1,"1440":1,"1470":1,"1491":1,"1988":1,"2069":1,"2293":1,"2418":1,"2471":1,"2503":1,"2561":1,"2576":1,"2640":1,"2666":1,"2671":1,"2683":1,"2687":1,"2747":1,"2847":1,"2921":1}}],["anyways",{"2":{"1208":1}}],["anyway",{"2":{"215":1,"564":1,"2567":2,"2568":1}}],["anywhere",{"2":{"201":1,"389":1,"2317":1,"2331":2,"2431":1}}],["anyone",{"2":{"123":1,"1440":1,"1537":1,"2405":1}}],["any",{"0":{"592":1,"630":1},"1":{"631":1,"632":1},"2":{"0":1,"5":1,"9":1,"19":1,"21":1,"22":1,"28":1,"36":1,"39":1,"43":1,"46":1,"49":1,"52":1,"70":1,"73":1,"99":1,"103":1,"124":1,"126":1,"131":1,"142":1,"152":1,"173":1,"175":1,"182":2,"194":1,"215":1,"245":2,"257":1,"258":1,"259":2,"265":2,"268":1,"275":3,"276":2,"307":1,"320":1,"327":1,"352":1,"373":1,"379":2,"380":1,"399":3,"412":1,"429":1,"435":1,"444":1,"446":1,"447":1,"454":1,"474":1,"512":1,"514":1,"520":1,"525":1,"539":1,"544":1,"545":1,"547":1,"574":1,"592":1,"600":1,"613":3,"615":3,"621":1,"626":1,"630":1,"647":1,"651":1,"668":1,"681":2,"683":1,"690":1,"710":1,"712":1,"716":2,"745":1,"768":1,"1205":1,"1213":1,"1248":1,"1250":1,"1271":1,"1292":1,"1313":1,"1317":1,"1319":2,"1320":1,"1342":1,"1364":4,"1381":1,"1407":2,"1410":2,"1413":5,"1417":3,"1425":1,"1430":1,"1434":1,"1446":2,"1466":1,"1467":2,"1470":1,"1472":4,"1481":1,"1485":1,"1488":1,"1501":1,"1517":1,"1518":1,"1522":1,"1527":2,"1533":1,"1544":1,"1546":1,"1553":1,"1554":1,"1589":1,"1593":1,"1594":1,"1610":1,"1612":1,"1620":1,"1671":1,"1681":1,"1704":1,"1742":1,"1765":1,"1770":1,"1782":1,"1784":2,"1787":1,"1795":1,"1847":2,"1850":1,"1960":1,"1962":1,"1985":1,"1999":2,"2008":1,"2009":1,"2011":2,"2014":2,"2041":2,"2042":1,"2044":1,"2065":1,"2069":2,"2083":2,"2088":1,"2188":1,"2189":1,"2210":1,"2211":1,"2220":1,"2256":1,"2260":1,"2261":1,"2264":1,"2277":2,"2278":1,"2291":1,"2292":2,"2293":1,"2300":1,"2309":1,"2317":2,"2318":1,"2319":2,"2324":1,"2331":1,"2381":1,"2383":1,"2386":2,"2388":1,"2389":1,"2390":2,"2391":1,"2393":1,"2395":1,"2396":1,"2397":1,"2398":1,"2400":3,"2402":3,"2404":3,"2405":1,"2407":1,"2416":1,"2417":1,"2419":1,"2429":1,"2431":1,"2458":1,"2462":1,"2466":1,"2502":1,"2552":1,"2554":1,"2561":1,"2566":1,"2568":5,"2569":1,"2570":3,"2573":1,"2585":1,"2586":1,"2595":1,"2604":1,"2610":1,"2622":1,"2626":1,"2634":1,"2637":1,"2638":1,"2639":1,"2640":2,"2652":4,"2667":1,"2680":1,"2702":1,"2703":1,"2704":1,"2705":1,"2725":1,"2726":1,"2733":1,"2739":1,"2740":1,"2741":1,"2743":1,"2746":4,"2747":2,"2748":1,"2749":1,"2750":2,"2761":2,"2762":5,"2764":8,"2769":1,"2790":1,"2833":1,"2846":1,"2894":1,"2896":1,"2903":1,"2918":1,"2926":1,"2930":2,"2934":2,"2940":1,"2941":1,"2943":2,"2945":1,"2946":1,"2949":1}}],["a",{"0":{"6":1,"21":1,"141":1,"376":1,"423":1,"610":1,"613":1,"627":1,"629":1,"658":1,"659":1,"669":1,"1202":1,"1331":1,"1339":1,"1341":1,"1360":1,"1433":1,"1434":1,"1435":1,"1468":1,"1496":1,"1613":1,"1627":1,"1628":1,"1629":1,"1767":1,"1795":1,"1796":1,"2012":1,"2073":1,"2076":1,"2077":1,"2307":1,"2315":1,"2419":1,"2426":1,"2438":1,"2466":1,"2469":1,"2504":1,"2560":1,"2584":1,"2595":1,"2598":1,"2599":1,"2607":1,"2711":1,"2712":1,"2713":1},"1":{"670":1,"671":1,"1203":1,"1204":1,"1205":1,"1342":1,"1434":1,"1435":1,"1436":2,"1437":1,"1438":1,"1439":1,"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1,"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1,"2561":1,"2562":1,"2563":1,"2564":1},"2":{"0":5,"1":1,"3":1,"6":2,"8":2,"9":4,"10":3,"11":1,"14":1,"15":1,"16":2,"18":2,"19":4,"21":1,"23":1,"24":1,"25":2,"28":3,"39":4,"49":11,"50":2,"52":4,"62":1,"65":3,"70":4,"73":1,"76":1,"80":1,"82":1,"83":1,"84":1,"86":1,"89":1,"90":1,"94":1,"95":1,"98":4,"99":1,"100":4,"107":1,"110":1,"112":2,"114":8,"116":1,"118":1,"120":1,"125":2,"130":2,"131":2,"132":3,"134":3,"138":3,"145":1,"149":9,"152":2,"153":3,"154":1,"156":2,"157":1,"160":2,"163":3,"164":2,"166":2,"169":2,"172":3,"173":4,"174":4,"175":1,"176":3,"179":2,"182":5,"183":1,"185":2,"187":1,"189":3,"190":1,"191":7,"194":10,"195":2,"196":3,"198":3,"199":1,"201":1,"202":1,"203":1,"209":1,"211":11,"213":1,"218":1,"222":7,"224":2,"228":3,"229":1,"230":1,"231":2,"233":1,"234":1,"236":1,"238":2,"246":2,"247":2,"248":1,"249":3,"251":1,"254":1,"255":1,"262":2,"263":2,"265":2,"266":6,"272":1,"273":2,"279":2,"285":1,"288":4,"289":1,"293":2,"294":4,"297":3,"303":1,"305":2,"306":1,"307":1,"312":6,"314":2,"315":1,"317":1,"323":2,"328":2,"332":1,"339":1,"344":7,"351":1,"352":4,"353":1,"354":2,"361":2,"364":1,"365":1,"366":1,"367":6,"368":2,"369":2,"375":5,"376":2,"377":4,"378":4,"379":4,"383":1,"386":3,"393":2,"394":1,"396":1,"399":4,"402":1,"403":12,"409":1,"411":4,"414":9,"415":2,"416":2,"417":3,"419":1,"420":2,"421":1,"422":1,"425":1,"429":7,"430":3,"432":1,"433":4,"436":2,"437":6,"438":2,"439":2,"440":3,"442":2,"444":1,"445":3,"446":1,"447":3,"448":2,"449":2,"450":3,"452":6,"453":6,"455":1,"459":2,"460":1,"462":1,"463":1,"466":1,"467":1,"469":1,"472":4,"474":2,"477":1,"482":1,"483":1,"487":2,"489":5,"491":1,"492":3,"494":1,"495":2,"500":2,"504":1,"505":1,"506":2,"510":1,"511":1,"512":5,"513":2,"514":2,"515":1,"516":5,"518":1,"519":2,"521":3,"524":1,"525":4,"526":3,"527":5,"528":2,"529":1,"530":1,"532":1,"533":1,"537":1,"538":3,"540":4,"542":2,"543":1,"544":1,"552":1,"555":1,"556":1,"559":1,"560":1,"561":3,"563":1,"564":6,"565":3,"567":1,"568":2,"570":2,"571":1,"572":6,"574":4,"575":5,"576":1,"578":2,"579":2,"580":2,"581":1,"582":1,"585":2,"587":2,"588":4,"589":4,"591":2,"593":2,"596":3,"597":1,"599":4,"600":1,"604":1,"611":1,"613":11,"615":4,"616":1,"617":1,"618":7,"619":9,"620":2,"622":1,"623":1,"624":2,"625":1,"626":3,"627":4,"628":2,"629":3,"630":3,"631":3,"632":1,"643":1,"644":1,"645":2,"647":1,"648":2,"651":4,"655":2,"656":3,"657":6,"658":2,"659":2,"660":1,"661":2,"665":11,"666":3,"667":1,"668":3,"669":3,"670":1,"671":6,"672":2,"673":3,"674":1,"675":1,"676":1,"680":2,"681":6,"683":2,"684":1,"685":3,"690":1,"691":2,"693":2,"694":3,"696":3,"702":1,"709":4,"710":4,"711":2,"712":2,"713":2,"714":1,"715":1,"717":1,"718":1,"719":4,"720":3,"721":2,"722":1,"724":1,"731":1,"735":1,"744":2,"745":1,"746":1,"749":2,"750":1,"753":2,"754":4,"755":7,"756":2,"759":1,"760":1,"761":1,"762":4,"764":2,"768":1,"770":2,"773":2,"776":3,"779":4,"781":1,"782":2,"784":2,"785":2,"787":1,"788":3,"790":2,"791":3,"793":5,"794":1,"796":1,"807":1,"812":1,"816":1,"820":1,"822":1,"826":1,"833":1,"839":1,"843":1,"847":1,"849":1,"855":1,"865":1,"871":1,"875":1,"879":1,"881":1,"887":1,"895":1,"903":1,"907":1,"911":1,"913":1,"919":1,"930":1,"938":1,"942":1,"946":1,"948":1,"954":1,"964":1,"972":1,"976":1,"980":1,"982":1,"988":1,"998":1,"1006":1,"1010":1,"1014":1,"1016":1,"1022":1,"1032":1,"1040":1,"1044":1,"1048":1,"1050":1,"1056":1,"1066":1,"1074":1,"1078":1,"1082":1,"1084":1,"1090":1,"1100":1,"1108":1,"1112":1,"1116":1,"1118":1,"1124":1,"1134":1,"1142":1,"1146":1,"1150":1,"1152":1,"1158":1,"1168":1,"1176":1,"1180":1,"1184":1,"1186":1,"1192":1,"1193":2,"1194":1,"1196":1,"1197":2,"1198":1,"1200":3,"1201":1,"1203":1,"1204":1,"1205":2,"1207":1,"1208":1,"1213":1,"1214":2,"1221":1,"1229":1,"1233":1,"1237":1,"1239":1,"1245":1,"1246":1,"1248":4,"1254":1,"1257":1,"1260":1,"1263":2,"1266":1,"1267":1,"1268":6,"1269":1,"1273":1,"1275":1,"1278":1,"1280":2,"1283":5,"1285":3,"1286":6,"1287":1,"1288":2,"1291":1,"1295":2,"1297":4,"1298":2,"1299":1,"1301":1,"1303":2,"1306":1,"1311":10,"1312":1,"1313":4,"1315":3,"1319":2,"1325":1,"1327":5,"1328":1,"1329":1,"1330":2,"1332":1,"1333":2,"1335":2,"1336":2,"1337":2,"1338":1,"1339":1,"1341":1,"1342":1,"1343":8,"1349":1,"1350":2,"1351":1,"1356":2,"1362":1,"1363":6,"1364":9,"1367":2,"1368":2,"1376":3,"1379":1,"1382":1,"1384":2,"1388":1,"1390":1,"1391":2,"1398":2,"1399":1,"1403":1,"1405":1,"1406":1,"1407":3,"1409":4,"1410":6,"1413":9,"1414":1,"1415":1,"1416":2,"1417":7,"1418":1,"1419":2,"1421":3,"1422":4,"1423":5,"1424":1,"1425":3,"1427":7,"1428":3,"1431":4,"1433":5,"1434":3,"1435":1,"1436":2,"1439":2,"1440":4,"1441":2,"1442":3,"1444":5,"1446":8,"1447":5,"1448":11,"1449":2,"1450":1,"1451":3,"1452":1,"1455":1,"1456":1,"1463":2,"1464":1,"1465":1,"1467":5,"1468":2,"1469":1,"1470":5,"1471":3,"1472":6,"1473":2,"1474":2,"1475":1,"1477":3,"1480":2,"1481":2,"1484":6,"1485":7,"1486":2,"1487":1,"1488":2,"1489":1,"1490":6,"1491":1,"1492":6,"1493":8,"1496":2,"1497":1,"1498":7,"1499":4,"1501":2,"1502":1,"1503":10,"1508":1,"1510":2,"1513":2,"1514":1,"1515":1,"1516":1,"1517":1,"1518":7,"1519":1,"1523":6,"1524":1,"1525":12,"1526":3,"1527":4,"1528":7,"1529":3,"1532":6,"1533":3,"1534":2,"1535":3,"1538":23,"1539":2,"1541":4,"1545":2,"1546":2,"1549":1,"1551":3,"1553":1,"1556":1,"1558":4,"1589":3,"1590":1,"1591":2,"1593":7,"1594":3,"1595":1,"1597":2,"1598":1,"1600":2,"1601":1,"1602":7,"1603":1,"1604":2,"1605":4,"1606":1,"1609":3,"1610":2,"1612":4,"1613":2,"1615":1,"1617":5,"1618":1,"1620":4,"1621":1,"1622":2,"1623":2,"1626":1,"1627":5,"1628":5,"1630":8,"1633":3,"1634":1,"1638":2,"1640":1,"1641":3,"1644":1,"1645":2,"1648":2,"1661":3,"1662":4,"1663":1,"1664":4,"1665":5,"1666":6,"1667":1,"1669":1,"1670":5,"1671":2,"1673":2,"1675":1,"1678":3,"1679":1,"1681":7,"1684":2,"1685":9,"1686":1,"1687":1,"1689":1,"1690":5,"1691":2,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1713":1,"1715":1,"1717":1,"1719":1,"1721":1,"1722":1,"1725":1,"1727":1,"1730":1,"1732":1,"1738":4,"1740":1,"1741":1,"1742":2,"1743":1,"1747":1,"1748":1,"1751":1,"1753":1,"1757":1,"1762":3,"1763":1,"1766":5,"1769":1,"1770":2,"1771":1,"1772":1,"1773":2,"1776":1,"1777":1,"1779":3,"1781":11,"1782":3,"1783":1,"1784":5,"1785":3,"1786":21,"1787":1,"1788":7,"1789":2,"1790":2,"1791":4,"1794":3,"1795":5,"1796":3,"1798":3,"1800":1,"1801":1,"1802":1,"1803":5,"1809":1,"1837":1,"1838":1,"1839":1,"1841":1,"1846":7,"1847":3,"1849":5,"1850":6,"1851":1,"1853":1,"1855":1,"1865":1,"1923":4,"1925":19,"1926":1,"1930":2,"1934":2,"1935":2,"1936":3,"1939":8,"1940":1,"1946":1,"1947":3,"1948":2,"1949":1,"1952":1,"1953":4,"1954":13,"1956":1,"1959":2,"1960":1,"1961":2,"1962":1,"1964":2,"1965":2,"1966":1,"1968":1,"1969":1,"1971":1,"1974":3,"1976":4,"1977":1,"1978":1,"1980":1,"1981":1,"1983":1,"1984":2,"1985":8,"1986":9,"1987":3,"1988":6,"1989":5,"1990":6,"1992":2,"1993":1,"1994":1,"1995":1,"1996":1,"1997":2,"1999":9,"2000":3,"2002":1,"2008":1,"2013":2,"2014":1,"2015":1,"2016":1,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2036":1,"2037":5,"2038":1,"2044":1,"2046":2,"2048":3,"2051":1,"2053":1,"2054":1,"2057":3,"2058":2,"2059":5,"2061":1,"2062":1,"2064":1,"2065":2,"2066":1,"2068":1,"2071":3,"2072":1,"2074":1,"2076":4,"2077":1,"2079":6,"2082":7,"2083":3,"2085":14,"2086":2,"2088":6,"2090":1,"2092":1,"2094":1,"2096":3,"2107":1,"2178":6,"2179":1,"2183":3,"2187":1,"2188":1,"2189":2,"2191":2,"2194":2,"2198":4,"2209":1,"2212":2,"2213":1,"2214":1,"2216":3,"2217":1,"2221":2,"2222":3,"2223":1,"2225":1,"2228":1,"2230":2,"2232":1,"2234":2,"2240":1,"2242":1,"2244":1,"2246":3,"2249":2,"2259":3,"2260":2,"2261":4,"2264":1,"2265":2,"2268":1,"2269":2,"2271":1,"2272":6,"2273":4,"2275":5,"2277":12,"2278":9,"2280":4,"2281":1,"2285":1,"2286":3,"2287":1,"2290":11,"2291":2,"2292":1,"2293":1,"2294":9,"2295":5,"2296":4,"2297":2,"2298":5,"2300":6,"2301":5,"2302":2,"2303":1,"2304":1,"2305":2,"2308":3,"2309":8,"2310":13,"2312":3,"2316":1,"2317":18,"2318":5,"2319":4,"2320":3,"2324":1,"2327":5,"2328":5,"2329":2,"2330":6,"2331":6,"2347":2,"2349":1,"2356":1,"2365":1,"2375":3,"2378":1,"2379":3,"2380":1,"2381":1,"2382":1,"2383":1,"2384":5,"2385":1,"2386":4,"2387":2,"2388":2,"2389":3,"2390":2,"2391":7,"2392":1,"2393":6,"2395":4,"2396":2,"2397":1,"2398":5,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2405":3,"2406":1,"2407":2,"2410":6,"2411":1,"2412":1,"2413":2,"2414":4,"2415":2,"2416":2,"2417":3,"2418":8,"2419":2,"2421":2,"2422":3,"2423":8,"2424":4,"2426":4,"2427":14,"2428":5,"2429":5,"2430":2,"2431":5,"2432":5,"2434":9,"2435":3,"2436":1,"2437":2,"2438":1,"2439":3,"2443":1,"2445":1,"2448":1,"2449":2,"2450":11,"2452":1,"2453":7,"2454":5,"2455":6,"2456":1,"2457":1,"2458":1,"2460":3,"2461":1,"2462":3,"2463":1,"2466":21,"2468":1,"2469":2,"2470":5,"2471":2,"2472":5,"2473":2,"2474":8,"2475":4,"2477":1,"2479":1,"2481":3,"2482":4,"2484":3,"2486":1,"2488":3,"2496":1,"2498":1,"2499":3,"2501":5,"2502":2,"2503":4,"2504":4,"2505":2,"2509":3,"2510":10,"2523":1,"2524":1,"2526":2,"2527":19,"2529":1,"2542":3,"2552":2,"2553":2,"2556":4,"2557":1,"2558":2,"2559":5,"2560":1,"2561":4,"2562":2,"2563":2,"2564":2,"2565":1,"2566":3,"2567":2,"2568":7,"2569":8,"2570":3,"2571":1,"2572":7,"2573":3,"2575":4,"2576":4,"2578":1,"2580":1,"2583":1,"2584":7,"2585":3,"2586":4,"2587":2,"2589":3,"2590":3,"2591":3,"2593":2,"2595":1,"2597":2,"2598":2,"2600":1,"2602":1,"2603":1,"2604":3,"2605":2,"2606":1,"2607":3,"2608":4,"2610":1,"2611":1,"2612":4,"2614":1,"2616":2,"2617":1,"2619":4,"2620":2,"2622":1,"2627":2,"2628":1,"2629":6,"2632":3,"2633":4,"2634":6,"2635":2,"2636":3,"2637":4,"2638":3,"2639":2,"2640":4,"2643":2,"2645":1,"2650":8,"2651":2,"2652":7,"2653":2,"2656":1,"2659":2,"2662":2,"2663":1,"2664":5,"2665":3,"2666":3,"2667":2,"2671":2,"2673":3,"2678":4,"2680":2,"2683":6,"2684":5,"2685":4,"2686":2,"2687":1,"2691":5,"2696":1,"2700":2,"2702":1,"2703":1,"2704":1,"2705":2,"2706":3,"2707":2,"2709":3,"2710":1,"2711":1,"2712":1,"2713":2,"2714":9,"2716":2,"2717":2,"2720":2,"2721":1,"2722":2,"2724":1,"2726":1,"2727":1,"2730":1,"2733":1,"2734":2,"2741":1,"2743":2,"2744":12,"2745":1,"2746":26,"2747":7,"2748":2,"2749":3,"2750":2,"2751":2,"2753":3,"2756":1,"2759":3,"2762":8,"2763":21,"2764":26,"2765":2,"2769":3,"2771":3,"2772":2,"2774":1,"2775":6,"2777":3,"2778":3,"2779":1,"2780":1,"2781":7,"2782":1,"2785":4,"2787":1,"2789":1,"2791":1,"2792":2,"2794":3,"2795":6,"2796":4,"2797":1,"2799":2,"2800":1,"2802":2,"2803":1,"2805":2,"2806":2,"2807":2,"2808":1,"2809":1,"2812":1,"2813":1,"2818":1,"2820":2,"2821":2,"2822":1,"2823":1,"2824":1,"2825":2,"2826":1,"2828":2,"2829":2,"2831":1,"2832":1,"2833":1,"2834":3,"2835":1,"2836":1,"2837":1,"2839":2,"2840":3,"2841":1,"2842":3,"2843":1,"2844":3,"2845":1,"2846":1,"2847":1,"2848":1,"2850":1,"2851":1,"2852":5,"2854":1,"2856":2,"2857":2,"2862":1,"2863":2,"2864":1,"2865":3,"2868":3,"2869":8,"2870":1,"2871":3,"2872":6,"2876":2,"2877":1,"2878":3,"2879":1,"2880":1,"2882":4,"2884":2,"2885":2,"2886":5,"2887":2,"2888":2,"2889":1,"2890":1,"2893":2,"2894":1,"2895":1,"2896":1,"2897":1,"2902":2,"2903":1,"2904":1,"2906":1,"2908":3,"2910":4,"2911":3,"2912":13,"2914":4,"2915":8,"2916":8,"2917":5,"2918":11,"2919":15,"2920":6,"2921":11,"2922":7,"2923":1,"2924":1,"2925":8,"2926":6,"2927":1,"2928":8,"2930":7,"2931":2,"2932":2,"2933":2,"2934":2,"2936":7,"2937":6,"2938":1,"2939":3,"2940":5,"2941":2,"2943":1,"2944":12,"2945":1,"2946":1,"2947":3,"2948":4,"2949":9}}]],"serializationVersion":2}`; -export { - _localSearchIndexroot as default -}; diff --git a/assets/chunks/@localSearchIndexroot.DZPLuGID.js b/assets/chunks/@localSearchIndexroot.DZPLuGID.js new file mode 100644 index 00000000000..9cdfc300b7a --- /dev/null +++ b/assets/chunks/@localSearchIndexroot.DZPLuGID.js @@ -0,0 +1,4 @@ +const _localSearchIndexroot = `{"documentCount":2951,"nextId":2951,"documentIds":{"0":"/ChangeLog/20190830#qmk-breaking-change-2019-aug-30","1":"/ChangeLog/20190830#core-code-formatting-with-clang-format","2":"/ChangeLog/20190830#lufa-usb-descriptor-cleanup","3":"/ChangeLog/20190830#migrating-action-layer-momentary-entries-in-fn-actions-to-mo-keycodes","4":"/ChangeLog/20190830#update-atreus-to-current-code-conventions","5":"/ChangeLog/20190830#backport-changes-to-keymap-language-files-from-zsa-fork","6":"/ChangeLog/20190830#update-repo-to-use-lufa-as-a-git-submodule","7":"/ChangeLog/20190830#migrating-action-backlight-entries-in-fn-actions-to-bl-keycodes","8":"/ChangeLog/20190830#remove-kc-delt-alias-in-favor-of-kc-del","9":"/ChangeLog/20200530#qmk-breaking-change-2020-may-30-changelog","10":"/ChangeLog/20200530#core-changes","11":"/ChangeLog/20200530#converting-v-usb-usbdrv-to-a-submodule","12":"/ChangeLog/20200530#unify-tap-hold-functions-and-documentation","13":"/ChangeLog/20200530#python-required-in-the-build-process","14":"/ChangeLog/20200530#upgrade-from-tinyprintf-to-mpaland-printf","15":"/ChangeLog/20200530#fixed-rgb-disable-after-timeout-to-be-seconds-based-small-internals-cleanup","16":"/ChangeLog/20200530#switch-to-qmk-forks-for-everything","17":"/ChangeLog/20200530#code-cleanup-regarding-deprecated-macro-play-note-array-by-replacing-it-with-play-song","18":"/ChangeLog/20200530#fixing-wrong-configuration-of-audio-feature","19":"/ChangeLog/20200530#keyboard-refactors","20":"/ChangeLog/20200530#migrating-lily58-to-use-split-common","21":"/ChangeLog/20200530#to-migrate-existing-lily58-firmware","22":"/ChangeLog/20200530#refactor-zinc-to-use-split-common","23":"/ChangeLog/20200530#refactor-of-tkc1800-to-use-common-oled-code","24":"/ChangeLog/20200530#to-migrate-existing-tkc1800-firmware","25":"/ChangeLog/20200530#split-hhkb-to-ansi-and-jp-layouts-and-add-via-support-for-each","26":"/ChangeLog/20200530#migrating-existing-hhkb-keymaps","27":"/ChangeLog/20200530#keyboard-moves","28":"/ChangeLog/20200530#keycode-migration-prs","29":"/ChangeLog/20200829#qmk-breaking-change-2020-aug-29-changelog","30":"/ChangeLog/20200829#changes-requiring-user-action","31":"/ChangeLog/20200829#relocated-keyboards","32":"/ChangeLog/20200829#the-key-company-project-consolidation-9547","33":"/ChangeLog/20200829#relocating-boards-by-flehrad-to-flehrad-folder-9635","34":"/ChangeLog/20200829#keyboard-updates","35":"/ChangeLog/20200829#keebio-rgb-wiring-update-7754","36":"/ChangeLog/20200829#core-updates","37":"/ChangeLog/20200829#core-changes","38":"/ChangeLog/20200829#core-fixes","39":"/ChangeLog/20200829#core-additions","40":"/ChangeLog/20200829#core-optimizations","41":"/ChangeLog/20200829#qmk-internals","42":"/ChangeLog/20200229#qmk-breaking-change-2020-feb-29-changelog","43":"/ChangeLog/20200229#update-chibios-chibios-contrib-ugfx-submodules","44":"/ChangeLog/20200229#fix-chibios-timer-overflow-for-16-bit-systick-devices","45":"/ChangeLog/20200229#update-lufa-submodule","46":"/ChangeLog/20200229#encoder-flip","47":"/ChangeLog/20200229#adding-support-for-backlight-on-state-for-hardware-pwm-backlight","48":"/ChangeLog/20200229#migrating-action-layer-tap-key-entries-in-fn-actions-to-lt-keycodes","49":"/ChangeLog/20200229#moving-backlight-keycode-handling-to-process-keycode","50":"/ChangeLog/20200229#refactor-planck-keymaps-to-use-layout-macros","51":"/ChangeLog/20200229#gon-nerd-codebase-refactor","52":"/ChangeLog/20201128#qmk-breaking-change-2020-nov-28-changelog","53":"/ChangeLog/20201128#changes-requiring-user-action","54":"/ChangeLog/20201128#relocated-keyboards","55":"/ChangeLog/20201128#reduce-helix-keyboard-build-variation-8669","56":"/ChangeLog/20201128#update-the-speedo-firmware-for-v3-0-10657","57":"/ChangeLog/20201128#maartenwut-maarten-name-change-to-evyd13-evy-10274","58":"/ChangeLog/20201128#xelus-valor-and-dawn60-refactors-10512-10584","59":"/ChangeLog/20201128#keyboard-updates","60":"/ChangeLog/20201128#aeboards-ext65-refactor-10820","61":"/ChangeLog/20201128#core-changes","62":"/ChangeLog/20201128#core-fixes","63":"/ChangeLog/20201128#core-additions","64":"/ChangeLog/20201128#core-optimizations","65":"/ChangeLog/20201128#qmk-internals","66":"/ChangeLog/20210227#qmk-breaking-changes-2021-february-27-changelog","67":"/ChangeLog/20210227#changes-requiring-user-action","68":"/ChangeLog/20210227#core-changes","69":"/ChangeLog/20210227#chibios-update-and-config-migration","70":"/ChangeLog/20210227#qmk-infrastructure-and-internals","71":"/ChangeLog/20210227#detailed-change-list","72":"/ChangeLog/20210227#changes-requiring-user-action-1","73":"/ChangeLog/20210227#fixes","74":"/ChangeLog/20210227#additions-and-enhancements","75":"/ChangeLog/20210227#clean-ups-and-optimizations","76":"/ChangeLog/20210227#qmk-infrastructure-and-internals-1","77":"/ChangeLog/20210227#chibios-update-and-config-migration-1","78":"/ChangeLog/20210529#qmk-breaking-changes-2021-may-29-changelog","79":"/ChangeLog/20210529#notable-changes","80":"/ChangeLog/20210529#rgb-matrix-split-common","81":"/ChangeLog/20210529#teensy-3-6-support","82":"/ChangeLog/20210529#new-command-qmk-console","83":"/ChangeLog/20210529#improve-command-qmk-config","84":"/ChangeLog/20210529#led-matrix-improvements","85":"/ChangeLog/20210529#changes-requiring-user-action","86":"/ChangeLog/20210529#updated-keyboard-codebases","87":"/ChangeLog/20210529#bootmagic-deprecation-and-refactor","88":"/ChangeLog/20210529#tentative-deprecation-schedule","89":"/ChangeLog/20210529#removal-of-layout-kc","90":"/ChangeLog/20210529#encoder-callback-boolean","91":"/ChangeLog/20210529#core-changes","92":"/ChangeLog/20210529#core-fixes","93":"/ChangeLog/20210529#core-additions","94":"/ChangeLog/20210529#core-optimizations","95":"/ChangeLog/20210529#qmk-internals","96":"/ChangeLog/20210828#qmk-breaking-changes-2021-august-28-changelog","97":"/ChangeLog/20210828#notable-features","98":"/ChangeLog/20210828#combo-processing-improvements","99":"/ChangeLog/20210828#key-overrides","100":"/ChangeLog/20210828#digitizer-support-12851","101":"/ChangeLog/20210828#changes-requiring-user-action","102":"/ChangeLog/20210828#updated-keyboard-codebases","103":"/ChangeLog/20210828#bootmagic-full-removal","104":"/ChangeLog/20210828#bootmagic-full-deprecation-schedule","105":"/ChangeLog/20210828#dip-switch-boolean","106":"/ChangeLog/20210828#notable-core","107":"/ChangeLog/20210828#split-transport-improvements","108":"/ChangeLog/20210828#teensy-4-x-support","109":"/ChangeLog/20210828#data-driven-improvements-13366","110":"/ChangeLog/20210828#tags","111":"/ChangeLog/20210828#dot-notation","112":"/ChangeLog/20210828#new-configuration-keys","113":"/ChangeLog/20210828#codebase-restructure","114":"/ChangeLog/20210828#full-changelist","115":"/ChangeLog/20211127#qmk-breaking-changes-2021-november-27-changelog","116":"/ChangeLog/20211127#qmk-2000th-keyboard","117":"/ChangeLog/20211127#notable-features","118":"/ChangeLog/20211127#expanded-pointing-device","119":"/ChangeLog/20211127#dynamic-tapping-term","120":"/ChangeLog/20211127#macros-in-keymap-json","121":"/ChangeLog/20211127#changes-requiring-user-action","122":"/ChangeLog/20211127#updated-keyboard-codebases","123":"/ChangeLog/20211127#squeezing-space-from-avr","124":"/ChangeLog/20211127#explicit-rgb-modes","125":"/ChangeLog/20211127#oled-task-refactor","126":"/ChangeLog/20211127#bootmagic-full-removal","127":"/ChangeLog/20211127#bootmagic-full-deprecation-schedule-complete","128":"/ChangeLog/20211127#remove-qwiic","129":"/ChangeLog/20211127#notable-core","130":"/ChangeLog/20211127#new-mcu-support","131":"/ChangeLog/20211127#eeprom-changes","132":"/ChangeLog/20211127#compile-commands","133":"/ChangeLog/20211127#codebase-restructure","134":"/ChangeLog/20211127#full-changelist","135":"/ChangeLog/20220226#qmk-breaking-changes-2022-february-26-changelog","136":"/ChangeLog/20220226#notable-features","137":"/ChangeLog/20220226#default-usb-polling-rate-now-1khz-15352","138":"/ChangeLog/20220226#split-support-for-pointing-devices-15304","139":"/ChangeLog/20220226#changes-requiring-user-action","140":"/ChangeLog/20220226#legacy-macro-and-action-function-system-removed-16025","141":"/ChangeLog/20220226#create-a-build-error-if-no-bootloader-is-specified-16181","142":"/ChangeLog/20220226#rename-adafruitble-to-bluefruitle-16127","143":"/ChangeLog/20220226#updated-keyboard-codebases","144":"/ChangeLog/20220226#notable-core","145":"/ChangeLog/20220226#new-mcu-support","146":"/ChangeLog/20220226#new-drivers","147":"/ChangeLog/20220226#led","148":"/ChangeLog/20220226#gpio","149":"/ChangeLog/20220226#full-changelist","150":"/ChangeLog/20220528#qmk-breaking-changes-2022-may-28-changelog","151":"/ChangeLog/20220528#notable-features","152":"/ChangeLog/20220528#caps-word","153":"/ChangeLog/20220528#quantum-painter","154":"/ChangeLog/20220528#encoder-mapping","155":"/ChangeLog/20220528#changes-requiring-user-action","156":"/ChangeLog/20220528#reset-2-qk_boot","157":"/ChangeLog/20220528#sendstring-keycodes","158":"/ChangeLog/20220528#pillow-install","159":"/ChangeLog/20220528#updated-keyboard-codebases","160":"/ChangeLog/20220528#full-changelist","161":"/ChangeLog/20221126#qmk-breaking-changes-2022-november-26-changelog","162":"/ChangeLog/20221126#notable-features","163":"/ChangeLog/20221126#autocorrect","164":"/ChangeLog/20221126#changes-requiring-user-action","165":"/ChangeLog/20221126#updated-keyboard-codebases","166":"/ChangeLog/20221126#keycodes-overhaul-user-action","167":"/ChangeLog/20221126#config-refactoring","168":"/ChangeLog/20221126#usb-ids-Refactoring","169":"/ChangeLog/20221126#led-callback-refactor","170":"/ChangeLog/20221126#unicode-mode-renaming","171":"/ChangeLog/20221126#notable-core","172":"/ChangeLog/20221126#keycodes-overhaul-core-changes","173":"/ChangeLog/20221126#board-converters","174":"/ChangeLog/20221126#pointing-and-digitizer","175":"/ChangeLog/20221126#full-changelist","176":"/ChangeLog/20220827#qmk-breaking-changes-2022-august-27-changelog","177":"/ChangeLog/20220827#notable-features","178":"/ChangeLog/20220827#rp2040-support","179":"/ChangeLog/20220827#cli-flash-binaries","180":"/ChangeLog/20220827#changes-requiring-user-action","181":"/ChangeLog/20220827#default-layers-dropped-from-32-to-16-15286","182":"/ChangeLog/20220827#reset-2-qk_boot","183":"/ChangeLog/20220827#updated-keyboard-codebases","184":"/ChangeLog/20220827#usb-ids-Refactoring","185":"/ChangeLog/20220827#deprecation-schedule","186":"/ChangeLog/20220827#notable-core","187":"/ChangeLog/20220827#board-converters","188":"/ChangeLog/20220827#cli-import","189":"/ChangeLog/20220827#wear-leveling","190":"/ChangeLog/20220827#pointing-device-improvements","191":"/ChangeLog/20220827#full-changelist","192":"/ChangeLog/20230226#qmk-breaking-changes-2023-february-26-changelog","193":"/ChangeLog/20230226#changes-requiring-user-action","194":"/ChangeLog/20230226#i-m-t-i","195":"/ChangeLog/20230226#quick-tap-term","196":"/ChangeLog/20230226#leader-key-rework-leader-key-rework-19632","197":"/ChangeLog/20230226#updated-keyboard-codebases","198":"/ChangeLog/20230226#notable-core","199":"/ChangeLog/20230226#full-changelist","200":"/ChangeLog/20230827#qmk-breaking-changes-2023-aug-27-changelog","201":"/ChangeLog/20230827#notable-changes","202":"/ChangeLog/20230827#rgb-matrix-optimizations","203":"/ChangeLog/20230827#audio-optimizations-21496-21498","204":"/ChangeLog/20230827#changes-requiring-user-action","205":"/ChangeLog/20230827#updated-keyboard-codebases","206":"/ChangeLog/20230827#remove-encoder-in-matrix-workaround-code","207":"/ChangeLog/20230827#unicodemap-keycodes-rename","208":"/ChangeLog/20230827#remove-old-oled-api-code","209":"/ChangeLog/20230827#driver-naming-consolidation","210":"/ChangeLog/20230827#full-changelist","211":"/ChangeLog/20230528#qmk-breaking-changes-2023-may-28-changelog","212":"/ChangeLog/20230528#notable-changes","213":"/ChangeLog/20230528#repeat-last-key","214":"/ChangeLog/20230528#user-callback-for-pre-process-record","215":"/ChangeLog/20230528#consolidate-modelm","216":"/ChangeLog/20230528#changes-requiring-user-action","217":"/ChangeLog/20230528#i-m-t-i","218":"/ChangeLog/20230528#updated-keyboard-codebases","219":"/ChangeLog/20230528#notable-core","220":"/ChangeLog/20230528#encoder-functionality-fallback","221":"/ChangeLog/20230528#oled-driver-improvements","222":"/ChangeLog/20230528#full-changelist","223":"/ChangeLog/20231126#qmk-breaking-changes-2023-november-26-changelog","224":"/ChangeLog/20231126#notable-features","225":"/ChangeLog/20231126#changes-requiring-user-action","226":"/ChangeLog/20231126#updated-keyboard-codebases","227":"/ChangeLog/20231126#notable-core","228":"/ChangeLog/20231126#external-userspace-22222","229":"/ChangeLog/20231126#improve-and-cleanup-shutdown-callbacks","230":"/ChangeLog/20231126#oled-force-flush","231":"/ChangeLog/20231126#switch-statement-helpers-for-keycode-ranges","232":"/ChangeLog/20231126#quantum-painter-oled-support","233":"/ChangeLog/20231126#rgb-led-lighting-driver-naming-and-cleanup-21890-21891-21892-21903-21904-21905-21918-21929-21938-22004-22008-22009-22071-22090-22099-22126-22133-22163-22200-22308-22309-22311-22325-22365-22379-22380-22381-22383-22436","234":"/ChangeLog/20231126#peripheral-subsystem-enabling","235":"/ChangeLog/20231126#vusb-nkro","236":"/ChangeLog/20231126#full-changelist","237":"/ChangeLog/20240225#qmk-breaking-changes-2024-february-25-changelog","238":"/ChangeLog/20240225#notable-features","239":"/ChangeLog/20240225#changes-requiring-user-action","240":"/ChangeLog/20240225#windows-driver-changes-qmk-toolbox-0-3-0-release","241":"/ChangeLog/20240225#updated-keyboard-codebases","242":"/ChangeLog/20240225#notable-core","243":"/ChangeLog/20240225#gpio-rename","244":"/ChangeLog/20240225#i2c-driver-api-changes-22905","245":"/ChangeLog/20240225#bootmagic-rename","246":"/ChangeLog/20240225#auto-mouse-layer","247":"/ChangeLog/20240225#dip-switch-map","248":"/ChangeLog/20240225#qp-updates","249":"/ChangeLog/20240225#full-changelist","250":"/ChangeLog/20240526#qmk-breaking-changes-2024-may-26-changelog","251":"/ChangeLog/20240526#notable-features","252":"/ChangeLog/20240526#changes-requiring-user-action","253":"/ChangeLog/20240526#updated-keyboard-codebases","254":"/ChangeLog/20240526#remove-deprecated-quantum-keycodes-23407","255":"/ChangeLog/20240526#spacey-layout-updates","256":"/ChangeLog/20240526#acr60-layout-updates","257":"/ChangeLog/20240526#acr60-layout-hhkb","258":"/ChangeLog/20240526#acr60-layout-true-hhkb","259":"/ChangeLog/20240526#acr60-layout-directional","260":"/ChangeLog/20240526#acr60-layout-mitchsplit","261":"/ChangeLog/20240526#notable-core","262":"/ChangeLog/20240526#keyboard-json","263":"/ChangeLog/20240526#refactor-chibios-usb-endpoints-to-be-fully-async-21656","264":"/ChangeLog/20240526#deprecation-notices","265":"/ChangeLog/20240526#migration-of-via-keymaps-to-via-team-control","266":"/ChangeLog/20240526#full-changelist","267":"/ChangeLog/20240825#qmk-breaking-changes-2024-august-25-changelog","268":"/ChangeLog/20240825#notable-features","269":"/ChangeLog/20240825#changes-requiring-user-action","270":"/ChangeLog/20240825#updated-keyboard-codebases","271":"/ChangeLog/20240825#sparkfun-pro-micro-rp2040-converter-renamed-24192","272":"/ChangeLog/20240825#key-override-keymap-c-signature-change-24120","273":"/ChangeLog/20240825#adns9800-and-pmw33xx-firmware-upload-now-opt-in-24001","274":"/ChangeLog/20240825#deprecation-notices","275":"/ChangeLog/20240825#migration-of-via-keymaps-to-via-team-control","276":"/ChangeLog/20240825#adns9800-and-pmw33xx-sensor-firmware-rom-removal","277":"/ChangeLog/20240825#full-changelist","278":"/ChangeLog/20241124#qmk-breaking-changes-2024-november-24-changelog","279":"/ChangeLog/20241124#notable-features","280":"/ChangeLog/20241124#changes-requiring-user-action","281":"/ChangeLog/20241124#updated-keyboard-codebases","282":"/ChangeLog/20241124#deprecation-notices","283":"/ChangeLog/20241124#rgb-keycode-overhaul-23679-24484-24490","284":"/ChangeLog/20241124#adns9800-and-pmw33xx-sensor-firmware-rom-removal-24428","285":"/ChangeLog/20241124#full-changelist","286":"/ChangeLog/20250223#qmk-breaking-changes-2025-february-23-changelog","287":"/ChangeLog/20250223#notable-features","288":"/ChangeLog/20250223#community-modules-24848","289":"/ChangeLog/20250223#chordal-hold-24560","290":"/ChangeLog/20250223#changes-requiring-user-action","291":"/ChangeLog/20250223#updated-keyboard-codebases","292":"/ChangeLog/20250223#deprecation-notices","293":"/ChangeLog/20250223#default-folder-removal-24836","294":"/ChangeLog/20250223#full-changelist","295":"/ChangeLog/20250525#qmk-breaking-changes-2025-may-25-changelog","296":"/ChangeLog/20250525#notable-features","297":"/ChangeLog/20250525#flow-tap-25125","298":"/ChangeLog/20250525#community-modules-1-1-1-25050-25187","299":"/ChangeLog/20250525#changes-requiring-user-action","300":"/ChangeLog/20250525#updated-keyboard-codebases","301":"/ChangeLog/20250525#deprecation-notices","302":"/ChangeLog/20250525#deprecation-of-qmk-generate-compilation-database-25237","303":"/ChangeLog/20250525#deprecation-of-usb-force-nkro-force-nkro-25262","304":"/ChangeLog/20250525#ctpc-convert-to-proton-c-removal-25111","305":"/ChangeLog/20250525#default-folder-removal-23281","306":"/ChangeLog/20250525#converter-pin-compatible-updates-20330","307":"/ChangeLog/20250525#deprecation-of-encoder-update-kb-user","308":"/ChangeLog/20250525#full-changelist","309":"/ChangeLog/20250831#qmk-breaking-changes-2025-aug-31-changelog","310":"/ChangeLog/20250831#changes-requiring-user-action","311":"/ChangeLog/20250831#updated-keyboard-codebases","312":"/ChangeLog/20250831#mitigate-via-keylogger-security-issues-25414","313":"/ChangeLog/20250831#deprecation-notices","314":"/ChangeLog/20250831#default-folder-removal-23281","315":"/ChangeLog/20250831#converter-pin-compatible-updates-20330","316":"/ChangeLog/20250831#removal-of-deprecated-rgb-and-mouse-keycodes-25444","317":"/ChangeLog/20250831#full-changelist","318":"/ChangeLog/20251130#qmk-breaking-changes-2025-nov-30-changelog","319":"/ChangeLog/20251130#notable-features","320":"/ChangeLog/20251130#speculative-hold-option-for-mod-taps-hold-mods-instantly-while-unsettled-25572","321":"/ChangeLog/20251130#changes-requiring-user-action","322":"/ChangeLog/20251130#updated-keyboard-codebases","323":"/ChangeLog/20251130#reduce-tap-dance-memory-usage-move-state-out-of-data-25415","324":"/ChangeLog/20251130#before","325":"/ChangeLog/20251130#after","326":"/ChangeLog/20251130#deprecation-notices","327":"/ChangeLog/20251130#remove-override-of-qk-led-rgb-matrix-toggle-keycode-25672","328":"/ChangeLog/20251130#full-changelist","329":"/ChangeLog/20260222#qmk-breaking-changes-2026-feb-22-changelog","330":"/ChangeLog/20260222#deprecation-notices","331":"/ChangeLog/20260222#removal-of-deprecated-gpio-defines-26028","332":"/ChangeLog/20260222#removal-of-deprecated-islefthand-25897","333":"/ChangeLog/20260222#full-changelist","334":"/ChangeLog/20260531#qmk-breaking-changes-2026-may-31-changelog","335":"/ChangeLog/20260531#notable-changes","336":"/ChangeLog/20260531#deprecation-notices","337":"/ChangeLog/20260531#removal-of-deprecated-islefthand-25897","338":"/ChangeLog/20260531#removal-of-usb-force-nkro-force-nkro-25262","339":"/ChangeLog/20260531#full-changelist","340":"/__capabilities#documentation-capabilities","341":"/__capabilities#overall-capabilities","342":"/__capabilities#dividing-lines","343":"/__capabilities#images","344":"/__capabilities#lists","345":"/__capabilities#emoji","346":"/__capabilities#direct","347":"/__capabilities#as-colon-name-colon","348":"/__capabilities#xml-entities","349":"/__capabilities#styling","350":"/__capabilities#css-ish","351":"/__capabilities#tables","352":"/__capabilities#indented-sections","353":"/__capabilities#keyboard-keys","354":"/__capabilities#code-blocks","355":"/__capabilities#sub-superscript","356":"/__capabilities#tabs","357":"/__capabilities#tab-one","358":"/__capabilities#nested-one","359":"/__capabilities#nested-two","360":"/__capabilities#tab-two","361":"/__capabilities#tab-three","362":"/__capabilities#details-sections","363":"/__capabilities#embed","364":"/api_development_environment#development-environment-setup","365":"/api_development_overview#qmk-compiler-development-guide","366":"/api_development_overview#overview","367":"/api_development_overview#workers","368":"/api_development_overview#api-service","369":"/api_development_overview#app-route-v1-compile-methods-post","370":"/api_development_overview#app-route-v1-compile-lt-string-job-id-gt-methods-get","371":"/api_development_overview#app-route-v1-compile-lt-string-job-id-gt-download-methods-get","372":"/api_development_overview#app-route-v1-compile-lt-string-job-id-gt-source-methods-get","373":"/api_overview#qmk-api","374":"/api_overview#app-developers","375":"/api_overview#keyboard-maintainers","376":"/api_overview#backend-developers","377":"/api_docs#qmk-api","378":"/api_docs#overview","379":"/api_docs#example-json-payload","380":"/api_docs#submitting-a-compile-job","381":"/api_docs#checking-the-status","382":"/api_docs#examining-finished-results","383":"/api_docs#qmk-constants","384":"/arm_debugging#arm-debugging-using-eclipse","385":"/arm_debugging#installing-the-software","386":"/arm_debugging#the-xpack-manager","387":"/arm_debugging#the-arm-toolchain","388":"/arm_debugging#windows-build-tools","389":"/arm_debugging#programmer-debugger-drivers","390":"/arm_debugging#openocd","391":"/arm_debugging#java","392":"/arm_debugging#gnu-mcu-eclipse-ide","393":"/arm_debugging#configuring-eclipse","394":"/arm_debugging#building","395":"/arm_debugging#debugging","396":"/arm_debugging#connecting-the-debugger","397":"/arm_debugging#configuring-the-debugger","398":"/arm_debugging#running-the-debugger","399":"/breaking_changes#breaking-changes","400":"/breaking_changes#what-has-been-included-in-past-breaking-changes","401":"/breaking_changes#when-is-the-next-breaking-change","402":"/breaking_changes#important-dates","403":"/breaking_changes#what-changes-will-be-included","404":"/breaking_changes#checklists","405":"/breaking_changes#_4-weeks-before-merge","406":"/breaking_changes#_2-weeks-before-merge","407":"/breaking_changes#_1-week-before-merge","408":"/breaking_changes#_2-days-before-merge","409":"/breaking_changes#day-of-merge","410":"/breaking_changes#post-merge-operations","411":"/breaking_changes#updating-the-develop-branch","412":"/breaking_changes#set-up-discord-events-for-the-next-cycle","413":"/breaking_changes_history#past-breaking-changes","414":"/breaking_changes_instructions#breaking-changes-my-pull-request-was-flagged","415":"/breaking_changes_instructions#what-do-i-do","416":"/breaking_changes_instructions#consider-splitting-up-your-pr","417":"/breaking_changes_instructions#document-your-changes","418":"/breaking_changes_instructions#ask-for-help","419":"/chibios_upgrade_instructions#chibios-upgrade-procedure","420":"/chibios_upgrade_instructions#getting-chibios","421":"/chibios_upgrade_instructions#getting-chibios-contrib","422":"/chibios_upgrade_instructions#updating-submodules","423":"/chibios_upgrade_instructions#when-merging-a-pr-containing-an-upgrade-of-chibios-chibios-contrib","424":"/cli#qmk-cli","425":"/cli#overview","426":"/cli#installation","427":"/cli_commands#qmk-cli-commands","428":"/cli_commands#user-commands","429":"/cli_commands#qmk-compile","430":"/cli_commands#qmk-flash","431":"/cli_commands#qmk-config","432":"/cli_commands#qmk-cd","433":"/cli_commands#qmk-find","434":"/cli_commands#qmk-console","435":"/cli_commands#qmk-doctor","436":"/cli_commands#qmk-format-json","437":"/cli_commands#qmk-info","438":"/cli_commands#qmk-json2c","439":"/cli_commands#qmk-c2json","440":"/cli_commands#qmk-lint","441":"/cli_commands#qmk-list-keyboards","442":"/cli_commands#qmk-list-keymaps","443":"/cli_commands#qmk-migrate","444":"/cli_commands#qmk-new-keyboard","445":"/cli_commands#qmk-new-keymap","446":"/cli_commands#qmk-clean","447":"/cli_commands#qmk-via2json","448":"/cli_commands#qmk-import-keyboard","449":"/cli_commands#qmk-import-keymap","450":"/cli_commands#qmk-import-kbfirmware","451":"/cli_commands#external-userspace-commands","452":"/cli_commands#qmk-userspace-add","453":"/cli_commands#qmk-userspace-remove","454":"/cli_commands#qmk-userspace-list","455":"/cli_commands#qmk-userspace-compile","456":"/cli_commands#qmk-userspace-doctor","457":"/cli_commands#developer-commands","458":"/cli_commands#qmk-format-text","459":"/cli_commands#qmk-format-c","460":"/cli_commands#qmk-docs","461":"/cli_commands#qmk-generate-docs","462":"/cli_commands#qmk-generate-rgb-breathe-table","463":"/cli_commands#qmk-kle2json","464":"/cli_commands#qmk-format-python","465":"/cli_commands#qmk-pytest","466":"/cli_commands#qmk-painter-convert-graphics","467":"/cli_commands#qmk-painter-make-font-image","468":"/cli_commands#qmk-painter-convert-font-image","469":"/cli_commands#qmk-test-c","470":"/cli_commands#qmk-generate-compilation-database","471":"/cli_configuration#qmk-cli-configuration","472":"/cli_configuration#introduction","473":"/cli_configuration#simple-example","474":"/cli_configuration#setting-user-defaults","475":"/cli_configuration#cli-documentation-qmk-config","476":"/cli_configuration#setting-configuration-values","477":"/cli_configuration#reading-configuration-values","478":"/cli_configuration#entire-configuration-example","479":"/cli_configuration#whole-section-example","480":"/cli_configuration#single-key-example","481":"/cli_configuration#multiple-keys-example","482":"/cli_configuration#deleting-configuration-values","483":"/cli_configuration#multiple-operations","484":"/cli_configuration#user-configuration-options","485":"/cli_configuration#all-configuration-options","486":"/cli_development#qmk-cli-development","487":"/cli_development#overview","488":"/cli_development#developer-mode","489":"/cli_development#subcommands","490":"/cli_development#user-interaction","491":"/cli_development#printing-text","492":"/cli_development#logging-cli-log","493":"/cli_development#printing-cli-echo","494":"/cli_development#colorizing-text","495":"/cli_development#arguments-and-configuration","496":"/cli_development#reading-configuration-values","497":"/cli_development#setting-configuration-values","498":"/cli_development#deleting-configuration-values","499":"/cli_development#writing-the-configuration-file","500":"/cli_development#excluding-arguments-from-configuration","501":"/cli_development#testing-and-linting-and-formatting-oh-my","502":"/cli_development#testing-and-linting","503":"/cli_development#formatting","504":"/cli_development#formatting-details","505":"/cli_development#testing-details","506":"/cli_development#linting-details","507":"/cli_tab_complete#tab-completion-for-qmk","508":"/cli_tab_complete#setup","509":"/cli_tab_complete#for-your-user-only","510":"/cli_tab_complete#system-wide-symlink","511":"/cli_tab_complete#system-wide-copy","512":"/coding_conventions_c#coding-conventions-c","513":"/coding_conventions_c#auto-formatting-with-clang-format","514":"/coding_conventions_python#coding-conventions-python","515":"/coding_conventions_python#yapf","516":"/coding_conventions_python#imports","517":"/coding_conventions_python#import-examples","518":"/coding_conventions_python#statements","519":"/coding_conventions_python#naming","520":"/coding_conventions_python#names-to-avoid","521":"/coding_conventions_python#docstrings","522":"/coding_conventions_python#simple-docstring-example","523":"/coding_conventions_python#complex-docstring-example","524":"/coding_conventions_python#function-arguments-docstring-example","525":"/coding_conventions_python#exceptions","526":"/coding_conventions_python#tuples","527":"/coding_conventions_python#lists-and-dictionaries","528":"/coding_conventions_python#parentheses","529":"/coding_conventions_python#format-strings","530":"/coding_conventions_python#comprehensions-generator-expressions","531":"/coding_conventions_python#lambdas","532":"/coding_conventions_python#conditional-expressions","533":"/coding_conventions_python#default-argument-values","534":"/coding_conventions_python#properties","535":"/coding_conventions_python#true-false-evaluations","536":"/coding_conventions_python#decorators","537":"/coding_conventions_python#threading-and-multiprocessing","538":"/coding_conventions_python#power-features","539":"/coding_conventions_python#type-annotated-code","540":"/coding_conventions_python#function-length","541":"/coding_conventions_python#fixmes","542":"/coding_conventions_python#testing","543":"/coding_conventions_python#integration-tests","544":"/coding_conventions_python#unit-tests","545":"/compatible_microcontrollers#compatible-microcontrollers","546":"/compatible_microcontrollers#atmel-avr","547":"/compatible_microcontrollers#arm","548":"/compatible_microcontrollers#stmicroelectronics-stm32","549":"/compatible_microcontrollers#westberrytech-wb32","550":"/compatible_microcontrollers#artery-at32","551":"/compatible_microcontrollers#nxp-kinetis","552":"/compatible_microcontrollers#raspberry-pi","553":"/compatible_microcontrollers#risc-v","554":"/compatible_microcontrollers#gigadevice","555":"/config_options#configuring-qmk","556":"/config_options#qmk-default","557":"/config_options#keyboard","558":"/config_options#folders","559":"/config_options#keymap","560":"/config_options#the-config-h-file","561":"/config_options#hardware-options","562":"/config_options#features-that-can-be-disabled","563":"/config_options#features-that-can-be-enabled","564":"/config_options#behaviors-that-can-be-configured","565":"/config_options#rgb-light-configuration","566":"/config_options#mouse-key-options","567":"/config_options#split-keyboard-options","568":"/config_options#setting-handedness","569":"/config_options#defines-for-handedness","570":"/config_options#other-options","571":"/config_options#the-rules-mk-file","572":"/config_options#build-options","573":"/config_options#avr-mcu-options","574":"/config_options#feature-options","575":"/config_options#usb-endpoint-limitations","576":"/configurator_architecture#qmk-configurator-architecture","577":"/configurator_architecture#overview","578":"/configurator_architecture#detailed-description","579":"/configurator_architecture#configurator-frontend","580":"/configurator_architecture#keyboard-metadata","581":"/configurator_architecture#qmk-api","582":"/configurator_architecture#compile-job-queued","583":"/configurator_architecture#compile-job-running","584":"/configurator_architecture#compile-job-finished","585":"/configurator_architecture#redis-rq","586":"/configurator_architecture#qmk-compiler","587":"/configurator_default_keymaps#adding-default-keymaps","588":"/configurator_default_keymaps#technical-information","589":"/configurator_default_keymaps#example","590":"/configurator_default_keymaps#caveats","591":"/configurator_default_keymaps#layer-references","592":"/configurator_default_keymaps#custom-code","593":"/configurator_default_keymaps#custom-keycodes","594":"/configurator_default_keymaps#additional-reading","595":"/configurator_step_by_step#qmk-configurator-step-by-step","596":"/configurator_step_by_step#step-1-select-your-keyboard","597":"/configurator_step_by_step#step-2-select-your-keyboard-layout","598":"/configurator_step_by_step#step-3-name-your-keymap","599":"/configurator_step_by_step#step-4-define-your-keymap","600":"/configurator_step_by_step#step-5-save-your-keymap-for-future-changes","601":"/configurator_step_by_step#step-6-compile-your-firmware-file","602":"/configurator_step_by_step#next-steps-flashing-your-keyboard","603":"/contributing#how-to-contribute","604":"/contributing#i-don-t-want-to-read-this-whole-thing-i-just-have-a-question","605":"/contributing#project-overview","606":"/contributing#where-can-i-go-for-help","607":"/contributing#how-do-i-make-a-contribution","608":"/contributing#coding-conventions","609":"/contributing#general-guidelines","610":"/contributing#documentation","611":"/contributing#previewing-the-documentation","612":"/contributing#keyboards","613":"/contributing#quantum-tmk-core","614":"/contributing#refactoring","615":"/contributing#what-does-the-code-of-conduct-mean-for-me","616":"/configurator_troubleshooting#configurator-troubleshooting","617":"/configurator_troubleshooting#my-json-file-is-not-working","618":"/configurator_troubleshooting#there-are-extra-spaces-in-my-layout-what-do-i-do","619":"/configurator_troubleshooting#what-is-the-keycode-for","620":"/configurator_troubleshooting#it-won-t-compile","621":"/configurator_troubleshooting#problems-and-bugs","622":"/custom_matrix#custom-matrix","623":"/custom_matrix#prerequisites","624":"/custom_matrix#lite","625":"/custom_matrix#full-replacement","626":"/custom_quantum_functions#how-to-customize-your-keyboard-s-behavior","627":"/custom_quantum_functions#a-word-on-core-vs-keyboards-vs-keymap","628":"/custom_quantum_functions#custom-keycodes","629":"/custom_quantum_functions#defining-a-new-keycode","630":"/custom_quantum_functions#programming-the-behavior-of-any-keycode","631":"/custom_quantum_functions#example-process-record-user-implementation","632":"/custom_quantum_functions#process-record-function-documentation","633":"/custom_quantum_functions#keyboard-initialization-code","634":"/custom_quantum_functions#keyboard-pre-initialization-code","635":"/custom_quantum_functions#example-keyboard-pre-init-user-implementation","636":"/custom_quantum_functions#keyboard-pre-init-function-documentation","637":"/custom_quantum_functions#matrix-initialization-code","638":"/custom_quantum_functions#matrix-init-function-documentation","639":"/custom_quantum_functions#low-level-matrix-overrides","640":"/custom_quantum_functions#keyboard-post-initialization-code","641":"/custom_quantum_functions#example-keyboard-post-init-user-implementation","642":"/custom_quantum_functions#keyboard-post-init-function-documentation","643":"/custom_quantum_functions#matrix-scanning-code","644":"/custom_quantum_functions#example-matrix-scan-implementation","645":"/custom_quantum_functions#matrix-scan-function-documentation","646":"/custom_quantum_functions#keyboard-housekeeping","647":"/custom_quantum_functions#example-void-housekeeping-task-user-void-implementation","648":"/custom_quantum_functions#keyboard-idling-wake-code","649":"/custom_quantum_functions#example-suspend-power-down-user-and-suspend-wakeup-init-user-implementation","650":"/custom_quantum_functions#keyboard-suspend-wake-function-documentation","651":"/custom_quantum_functions#keyboard-shutdown-reboot-code","652":"/custom_quantum_functions#example-shutdown-kb-implementation","653":"/custom_quantum_functions#example-shutdown-user-implementation","654":"/custom_quantum_functions#keyboard-shutdown-reboot-function-documentation","655":"/custom_quantum_functions#deferred-execution","656":"/custom_quantum_functions#deferred-executor-callbacks","657":"/custom_quantum_functions#deferred-executor-registration","658":"/custom_quantum_functions#extending-a-deferred-execution","659":"/custom_quantum_functions#cancelling-a-deferred-execution","660":"/custom_quantum_functions#deferred-callback-limits","661":"/custom_quantum_functions#advanced-topics","662":"/custom_quantum_functions#layer-change-code","663":"/custom_quantum_functions#persistent-configuration-eeprom","664":"/data_driven_config#data-driven-configuration","665":"/data_driven_config#history","666":"/data_driven_config#overview","667":"/data_driven_config#adding-an-option-to-info-json","668":"/data_driven_config#add-it-to-the-schema","669":"/data_driven_config#add-a-mapping","670":"/data_driven_config#info-key","671":"/data_driven_config#value-types","672":"/data_driven_config#add-code-to-extract-it","673":"/data_driven_config#add-code-to-generate-it","674":"/documentation_best_practices#documentation-best-practices","675":"/documentation_best_practices#page-opening","676":"/documentation_best_practices#paragraphs","677":"/documentation_best_practices#headings","678":"/documentation_best_practices#styled-hint-blocks","679":"/documentation_best_practices#important","680":"/documentation_best_practices#general-tips","681":"/documentation_best_practices#documenting-features","682":"/documentation_templates#documentation-templates","683":"/documentation_templates#keyboard-readmemd-template","684":"/documentation_templates#keyboard-readme-md-template","685":"/driver_installation_zadig#bootloader-driver-installation-with-zadig","686":"/driver_installation_zadig#installation","687":"/driver_installation_zadig#recovering-from-installation-to-wrong-device","688":"/driver_installation_zadig#uninstallation","689":"/driver_installation_zadig#list-of-known-bootloaders","690":"/drivers/adc#adc-driver","691":"/drivers/adc#usage","692":"/drivers/adc#channels","693":"/drivers/adc#avr","694":"/drivers/adc#arm","695":"/drivers/adc#stm32","696":"/drivers/adc#rp2040","697":"/drivers/adc#functions","698":"/drivers/adc#avr-1","699":"/drivers/adc#arm-1","700":"/drivers/adc#configuration","701":"/drivers/adc#arm-2","702":"/drivers/apa102#apa102-driver","703":"/drivers/apa102#usage","704":"/drivers/apa102#basic-configuration","705":"/drivers/apa102#api","706":"/drivers/apa102#api-apa102-init","707":"/drivers/apa102#api-apa102-set-color","708":"/drivers/apa102#api-apa102-set-color-arguments","709":"/drivers/apa102#api-apa102-set-color-all","710":"/drivers/apa102#api-apa102-set-color-all-arguments","711":"/drivers/apa102#api-apa102-flush","712":"/drivers/apa102#api-apa102-set-brightness","713":"/drivers/apa102#api-apa102-set-brightness-arguments","714":"/drivers/audio#audio-driver","715":"/drivers/audio#avr","716":"/drivers/audio#arm","717":"/drivers/audio#dac-basic","718":"/drivers/audio#dac-additive","719":"/drivers/audio#dac-config","720":"/drivers/audio#buffer-size","721":"/drivers/audio#pwm-hardware","722":"/drivers/audio#pwm-software","723":"/drivers/audio#testing-notes","724":"/drivers/aw20216s#aw20216s-driver","725":"/drivers/aw20216s#usage","726":"/drivers/aw20216s#basic-configuration","727":"/drivers/aw20216s#global-current-control","728":"/drivers/aw20216s#arm-configuration","729":"/drivers/aw20216s#led-mapping","730":"/drivers/aw20216s#api","731":"/drivers/aw20216s#api-aw20216s-led-t","732":"/drivers/aw20216s#api-aw20216s-led-t-members","733":"/drivers/aw20216s#api-aw20216s-init","734":"/drivers/aw20216s#api-aw20216s-init-arguments","735":"/drivers/aw20216s#api-aw20216s-set-color","736":"/drivers/aw20216s#api-aw20216s-set-color-arguments","737":"/drivers/aw20216s#api-aw20216s-set-color-all","738":"/drivers/aw20216s#api-aw20216s-set-color-all-arguments","739":"/drivers/aw20216s#api-aw20216s-update-pwm-buffers","740":"/drivers/aw20216s#api-aw20216s-update-pwm-buffers-arguments","741":"/drivers/battery#battery-driver","742":"/drivers/battery#usage","743":"/drivers/battery#driver-configuration","744":"/drivers/battery#adc-driver","745":"/drivers/battery#custom-driver","746":"/drivers/eeprom#eeprom-driver-configuration","747":"/drivers/eeprom#vendor-eeprom-driver-configuration","748":"/drivers/eeprom#stm32l0l1-eeprom-driver-configuration","749":"/drivers/eeprom#i2c-eeprom-driver-configuration","750":"/drivers/eeprom#spi-eeprom-driver-configuration","751":"/drivers/eeprom#transient-eeprom-driver-configuration","752":"/drivers/eeprom#wear_leveling-eeprom-driver-configuration","753":"/drivers/eeprom#wear_leveling-configuration","754":"/drivers/eeprom#wear_leveling-efl-driver-configuration","755":"/drivers/eeprom#wear_leveling-flash_spi-driver-configuration","756":"/drivers/eeprom#wear_leveling-rp2040-driver-configuration","757":"/drivers/eeprom#wear_leveling-legacy-driver-configuration","758":"/drivers/flash#flash-driver-configuration","759":"/drivers/flash#spi-flash-driver-configuration","760":"/drivers/gpio#gpio-control","761":"/drivers/gpio#macros","762":"/drivers/gpio#advanced-settings","763":"/drivers/gpio#atomic-operation","764":"/drivers/i2c#i2c-master-driver","765":"/drivers/i2c#usage","766":"/drivers/i2c#note-on-i2c-addresses","767":"/drivers/i2c#avr-configuration","768":"/drivers/i2c#arm-configuration","769":"/drivers/i2c#arm-configuration-i2cv1","770":"/drivers/i2c#arm-configuration-i2cv2","771":"/drivers/i2c#api","772":"/drivers/i2c#api-i2c-init","773":"/drivers/i2c#api-i2c-transmit","774":"/drivers/i2c#api-i2c-transmit-arguments","775":"/drivers/i2c#api-i2c-transmit-return","776":"/drivers/i2c#api-i2c-transmit-p","777":"/drivers/i2c#api-i2c-transmit-p-arguments","778":"/drivers/i2c#api-i2c-transmit-p-return","779":"/drivers/i2c#api-i2c-receive","780":"/drivers/i2c#api-i2c-receive-arguments","781":"/drivers/i2c#api-i2c-receive-return","782":"/drivers/i2c#api-i2c-transmit-and-receive","783":"/drivers/i2c#api-i2c-transmit-and-receive-arguments","784":"/drivers/i2c#api-i2c-transmit-and-receive-return","785":"/drivers/i2c#api-i2c-write-register","786":"/drivers/i2c#api-i2c-write-register-arguments","787":"/drivers/i2c#api-i2c-write-register-return","788":"/drivers/i2c#api-i2c-write-register16","789":"/drivers/i2c#api-i2c-write-register16-arguments","790":"/drivers/i2c#api-i2c-write-register16-return","791":"/drivers/i2c#api-i2c-read-register","792":"/drivers/i2c#api-i2c-read-register-arguments","793":"/drivers/i2c#api-i2c-read-register-return","794":"/drivers/i2c#api-i2c-read-register16","795":"/drivers/i2c#api-i2c-read-register16-arguments","796":"/drivers/i2c#api-i2c-read-register16-return","797":"/drivers/i2c#api-i2c-ping-address","798":"/drivers/i2c#api-i2c-ping-address-arguments","799":"/drivers/i2c#api-i2c-ping-address-return","800":"/drivers/is31fl3218#is31fl3218-driver","801":"/drivers/is31fl3218#usage","802":"/drivers/is31fl3218#basic-configuration","803":"/drivers/is31fl3218#i2c-addressing","804":"/drivers/is31fl3218#arm-configuration","805":"/drivers/is31fl3218#led-mapping","806":"/drivers/is31fl3218#api","807":"/drivers/is31fl3218#api-is31fl3218-led-t","808":"/drivers/is31fl3218#api-is31fl3218-led-t-members","809":"/drivers/is31fl3218#api-is31fl3218-init","810":"/drivers/is31fl3218#api-is31fl3218-write-register","811":"/drivers/is31fl3218#api-is31fl3218-write-register-arguments","812":"/drivers/is31fl3218#api-is31fl3218-set-color","813":"/drivers/is31fl3218#api-is31fl3218-set-color-arguments","814":"/drivers/is31fl3218#api-is31fl3218-set-color-all","815":"/drivers/is31fl3218#api-is31fl3218-set-color-all-arguments","816":"/drivers/is31fl3218#api-is31fl3218-set-value","817":"/drivers/is31fl3218#api-is31fl3218-set-value-arguments","818":"/drivers/is31fl3218#api-is31fl3218-set-value-all","819":"/drivers/is31fl3218#api-is31fl3218-set-value-all-arguments","820":"/drivers/is31fl3218#api-is31fl3218-set-led-control-register-rgb","821":"/drivers/is31fl3218#api-is31fl3218-set-led-control-register-rgb-arguments","822":"/drivers/is31fl3218#api-is31fl3218-set-led-control-register-mono","823":"/drivers/is31fl3218#api-is31fl3218-set-led-control-register-mono-arguments","824":"/drivers/is31fl3218#api-is31fl3218-update-pwm-buffers","825":"/drivers/is31fl3218#api-is31fl3218-update-led-control-registers","826":"/drivers/is31fl3236#is31fl3236-driver","827":"/drivers/is31fl3236#usage","828":"/drivers/is31fl3236#basic-configuration","829":"/drivers/is31fl3236#i2c-addressing","830":"/drivers/is31fl3236#arm-configuration","831":"/drivers/is31fl3236#led-mapping","832":"/drivers/is31fl3236#api","833":"/drivers/is31fl3236#api-is31fl3236-led-t","834":"/drivers/is31fl3236#api-is31fl3236-led-t-members","835":"/drivers/is31fl3236#api-is31fl3236-init","836":"/drivers/is31fl3236#api-is31fl3236-init-arguments","837":"/drivers/is31fl3236#api-is31fl3236-write-register","838":"/drivers/is31fl3236#api-is31fl3236-write-register-arguments","839":"/drivers/is31fl3236#api-is31fl3236-set-color","840":"/drivers/is31fl3236#api-is31fl3236-set-color-arguments","841":"/drivers/is31fl3236#api-is31fl3236-set-color-all","842":"/drivers/is31fl3236#api-is31fl3236-set-color-all-arguments","843":"/drivers/is31fl3236#api-is31fl3236-set-value","844":"/drivers/is31fl3236#api-is31fl3236-set-value-arguments","845":"/drivers/is31fl3236#api-is31fl3236-set-value-all","846":"/drivers/is31fl3236#api-is31fl3236-set-value-all-arguments","847":"/drivers/is31fl3236#api-is31fl3236-set-led-control-register-rgb","848":"/drivers/is31fl3236#api-is31fl3236-set-led-control-register-rgb-arguments","849":"/drivers/is31fl3236#api-is31fl3236-set-led-control-register-mono","850":"/drivers/is31fl3236#api-is31fl3236-set-led-control-register-mono-arguments","851":"/drivers/is31fl3236#api-is31fl3236-update-pwm-buffers","852":"/drivers/is31fl3236#api-is31fl3236-update-pwm-buffers-arguments","853":"/drivers/is31fl3236#api-is31fl3236-update-led-control-registers","854":"/drivers/is31fl3236#api-is31fl3236-update-led-control-registers-arguments","855":"/drivers/is31fl3729#is31fl3729-driver","856":"/drivers/is31fl3729#usage","857":"/drivers/is31fl3729#basic-configuration","858":"/drivers/is31fl3729#i2c-addressing","859":"/drivers/is31fl3729#pwm-frequency","860":"/drivers/is31fl3729#de-ghosting","861":"/drivers/is31fl3729#global-current-control","862":"/drivers/is31fl3729#arm-configuration","863":"/drivers/is31fl3729#led-mapping","864":"/drivers/is31fl3729#api","865":"/drivers/is31fl3729#api-is31fl3729-led-t","866":"/drivers/is31fl3729#api-is31fl3729-led-t-members","867":"/drivers/is31fl3729#api-is31fl3729-init","868":"/drivers/is31fl3729#api-is31fl3729-init-arguments","869":"/drivers/is31fl3729#api-is31fl3729-write-register","870":"/drivers/is31fl3729#api-is31fl3729-write-register-arguments","871":"/drivers/is31fl3729#api-is31fl3729-set-color","872":"/drivers/is31fl3729#api-is31fl3729-set-color-arguments","873":"/drivers/is31fl3729#api-is31fl3729-set-color-all","874":"/drivers/is31fl3729#api-is31fl3729-set-color-all-arguments","875":"/drivers/is31fl3729#api-is31fl3729-set-value","876":"/drivers/is31fl3729#api-is31fl3729-set-value-arguments","877":"/drivers/is31fl3729#api-is31fl3729-set-value-all","878":"/drivers/is31fl3729#api-is31fl3729-set-value-all-arguments","879":"/drivers/is31fl3729#api-is31fl3729-set-scaling-register-rgb","880":"/drivers/is31fl3729#api-is31fl3729-set-scaling-register-rgb-arguments","881":"/drivers/is31fl3729#api-is31fl3729-set-scaling-register-mono","882":"/drivers/is31fl3729#api-is31fl3729-set-scaling-register-mono-arguments","883":"/drivers/is31fl3729#api-is31fl3729-update-pwm-buffers","884":"/drivers/is31fl3729#api-is31fl3729-update-pwm-buffers-arguments","885":"/drivers/is31fl3729#api-is31fl3729-update-scaling-registers","886":"/drivers/is31fl3729#api-is31fl3729-update-scaling-registers-arguments","887":"/drivers/is31fl3731#is31fl3731-driver","888":"/drivers/is31fl3731#usage","889":"/drivers/is31fl3731#basic-configuration","890":"/drivers/is31fl3731#i2c-addressing","891":"/drivers/is31fl3731#de-ghosting","892":"/drivers/is31fl3731#arm-configuration","893":"/drivers/is31fl3731#led-mapping","894":"/drivers/is31fl3731#api","895":"/drivers/is31fl3731#api-is31fl3731-led-t","896":"/drivers/is31fl3731#api-is31fl3731-led-t-members","897":"/drivers/is31fl3731#api-is31fl3731-init","898":"/drivers/is31fl3731#api-is31fl3731-init-arguments","899":"/drivers/is31fl3731#api-is31fl3731-write-register","900":"/drivers/is31fl3731#api-is31fl3731-write-register-arguments","901":"/drivers/is31fl3731#api-is31fl3731-select-page","902":"/drivers/is31fl3731#api-is31fl3731-select-page-arguments","903":"/drivers/is31fl3731#api-is31fl3731-set-color","904":"/drivers/is31fl3731#api-is31fl3731-set-color-arguments","905":"/drivers/is31fl3731#api-is31fl3731-set-color-all","906":"/drivers/is31fl3731#api-is31fl3731-set-color-all-arguments","907":"/drivers/is31fl3731#api-is31fl3731-set-value","908":"/drivers/is31fl3731#api-is31fl3731-set-value-arguments","909":"/drivers/is31fl3731#api-is31fl3731-set-value-all","910":"/drivers/is31fl3731#api-is31fl3731-set-value-all-arguments","911":"/drivers/is31fl3731#api-is31fl3731-set-led-control-register-rgb","912":"/drivers/is31fl3731#api-is31fl3731-set-led-control-register-rgb-arguments","913":"/drivers/is31fl3731#api-is31fl3731-set-led-control-register-mono","914":"/drivers/is31fl3731#api-is31fl3731-set-led-control-register-mono-arguments","915":"/drivers/is31fl3731#api-is31fl3731-update-pwm-buffers","916":"/drivers/is31fl3731#api-is31fl3731-update-pwm-buffers-arguments","917":"/drivers/is31fl3731#api-is31fl3731-update-led-control-registers","918":"/drivers/is31fl3731#api-is31fl3731-update-led-control-registers-arguments","919":"/drivers/is31fl3733#is31fl3733-driver","920":"/drivers/is31fl3733#usage","921":"/drivers/is31fl3733#basic-configuration","922":"/drivers/is31fl3733#i2c-addressing","923":"/drivers/is31fl3733#multi-driver-synchronization","924":"/drivers/is31fl3733#pwm-frequency","925":"/drivers/is31fl3733#de-ghosting","926":"/drivers/is31fl3733#global-current-control","927":"/drivers/is31fl3733#arm-configuration","928":"/drivers/is31fl3733#led-mapping","929":"/drivers/is31fl3733#api","930":"/drivers/is31fl3733#api-is31fl3733-led-t","931":"/drivers/is31fl3733#api-is31fl3733-led-t-members","932":"/drivers/is31fl3733#api-is31fl3733-init","933":"/drivers/is31fl3733#api-is31fl3733-init-arguments","934":"/drivers/is31fl3733#api-is31fl3733-write-register","935":"/drivers/is31fl3733#api-is31fl3733-write-register-arguments","936":"/drivers/is31fl3733#api-is31fl3733-select-page","937":"/drivers/is31fl3733#api-is31fl3733-select-page-arguments","938":"/drivers/is31fl3733#api-is31fl3733-set-color","939":"/drivers/is31fl3733#api-is31fl3733-set-color-arguments","940":"/drivers/is31fl3733#api-is31fl3733-set-color-all","941":"/drivers/is31fl3733#api-is31fl3733-set-color-all-arguments","942":"/drivers/is31fl3733#api-is31fl3733-set-value","943":"/drivers/is31fl3733#api-is31fl3733-set-value-arguments","944":"/drivers/is31fl3733#api-is31fl3733-set-value-all","945":"/drivers/is31fl3733#api-is31fl3733-set-value-all-arguments","946":"/drivers/is31fl3733#api-is31fl3733-set-led-control-register-rgb","947":"/drivers/is31fl3733#api-is31fl3733-set-led-control-register-rgb-arguments","948":"/drivers/is31fl3733#api-is31fl3733-set-led-control-register-mono","949":"/drivers/is31fl3733#api-is31fl3733-set-led-control-register-mono-arguments","950":"/drivers/is31fl3733#api-is31fl3733-update-pwm-buffers","951":"/drivers/is31fl3733#api-is31fl3733-update-pwm-buffers-arguments","952":"/drivers/is31fl3733#api-is31fl3733-update-led-control-registers","953":"/drivers/is31fl3733#api-is31fl3733-update-led-control-registers-arguments","954":"/drivers/is31fl3736#is31fl3736-driver","955":"/drivers/is31fl3736#usage","956":"/drivers/is31fl3736#basic-configuration","957":"/drivers/is31fl3736#i2c-addressing","958":"/drivers/is31fl3736#pwm-frequency","959":"/drivers/is31fl3736#de-ghosting","960":"/drivers/is31fl3736#global-current-control","961":"/drivers/is31fl3736#arm-configuration","962":"/drivers/is31fl3736#led-mapping","963":"/drivers/is31fl3736#api","964":"/drivers/is31fl3736#api-is31fl3736-led-t","965":"/drivers/is31fl3736#api-is31fl3736-led-t-members","966":"/drivers/is31fl3736#api-is31fl3736-init","967":"/drivers/is31fl3736#api-is31fl3736-init-arguments","968":"/drivers/is31fl3736#api-is31fl3736-write-register","969":"/drivers/is31fl3736#api-is31fl3736-write-register-arguments","970":"/drivers/is31fl3736#api-is31fl3736-select-page","971":"/drivers/is31fl3736#api-is31fl3736-select-page-arguments","972":"/drivers/is31fl3736#api-is31fl3736-set-color","973":"/drivers/is31fl3736#api-is31fl3736-set-color-arguments","974":"/drivers/is31fl3736#api-is31fl3736-set-color-all","975":"/drivers/is31fl3736#api-is31fl3736-set-color-all-arguments","976":"/drivers/is31fl3736#api-is31fl3736-set-value","977":"/drivers/is31fl3736#api-is31fl3736-set-value-arguments","978":"/drivers/is31fl3736#api-is31fl3736-set-value-all","979":"/drivers/is31fl3736#api-is31fl3736-set-value-all-arguments","980":"/drivers/is31fl3736#api-is31fl3736-set-led-control-register-rgb","981":"/drivers/is31fl3736#api-is31fl3736-set-led-control-register-rgb-arguments","982":"/drivers/is31fl3736#api-is31fl3736-set-led-control-register-mono","983":"/drivers/is31fl3736#api-is31fl3736-set-led-control-register-mono-arguments","984":"/drivers/is31fl3736#api-is31fl3736-update-pwm-buffers","985":"/drivers/is31fl3736#api-is31fl3736-update-pwm-buffers-arguments","986":"/drivers/is31fl3736#api-is31fl3736-update-led-control-registers","987":"/drivers/is31fl3736#api-is31fl3736-update-led-control-registers-arguments","988":"/drivers/is31fl3737#is31fl3737-driver","989":"/drivers/is31fl3737#usage","990":"/drivers/is31fl3737#basic-configuration","991":"/drivers/is31fl3737#i2c-addressing","992":"/drivers/is31fl3737#pwm-frequency","993":"/drivers/is31fl3737#de-ghosting","994":"/drivers/is31fl3737#global-current-control","995":"/drivers/is31fl3737#arm-configuration","996":"/drivers/is31fl3737#led-mapping","997":"/drivers/is31fl3737#api","998":"/drivers/is31fl3737#api-is31fl3737-led-t","999":"/drivers/is31fl3737#api-is31fl3737-led-t-members","1000":"/drivers/is31fl3737#api-is31fl3737-init","1001":"/drivers/is31fl3737#api-is31fl3737-init-arguments","1002":"/drivers/is31fl3737#api-is31fl3737-write-register","1003":"/drivers/is31fl3737#api-is31fl3737-write-register-arguments","1004":"/drivers/is31fl3737#api-is31fl3737-select-page","1005":"/drivers/is31fl3737#api-is31fl3737-select-page-arguments","1006":"/drivers/is31fl3737#api-is31fl3737-set-color","1007":"/drivers/is31fl3737#api-is31fl3737-set-color-arguments","1008":"/drivers/is31fl3737#api-is31fl3737-set-color-all","1009":"/drivers/is31fl3737#api-is31fl3737-set-color-all-arguments","1010":"/drivers/is31fl3737#api-is31fl3737-set-value","1011":"/drivers/is31fl3737#api-is31fl3737-set-value-arguments","1012":"/drivers/is31fl3737#api-is31fl3737-set-value-all","1013":"/drivers/is31fl3737#api-is31fl3737-set-value-all-arguments","1014":"/drivers/is31fl3737#api-is31fl3737-set-led-control-register-rgb","1015":"/drivers/is31fl3737#api-is31fl3737-set-led-control-register-rgb-arguments","1016":"/drivers/is31fl3737#api-is31fl3737-set-led-control-register-mono","1017":"/drivers/is31fl3737#api-is31fl3737-set-led-control-register-mono-arguments","1018":"/drivers/is31fl3737#api-is31fl3737-update-pwm-buffers","1019":"/drivers/is31fl3737#api-is31fl3737-update-pwm-buffers-arguments","1020":"/drivers/is31fl3737#api-is31fl3737-update-led-control-registers","1021":"/drivers/is31fl3737#api-is31fl3737-update-led-control-registers-arguments","1022":"/drivers/is31fl3741#is31fl3741-driver","1023":"/drivers/is31fl3741#usage","1024":"/drivers/is31fl3741#basic-configuration","1025":"/drivers/is31fl3741#i2c-addressing","1026":"/drivers/is31fl3741#pwm-frequency","1027":"/drivers/is31fl3741#de-ghosting","1028":"/drivers/is31fl3741#global-current-control","1029":"/drivers/is31fl3741#arm-configuration","1030":"/drivers/is31fl3741#led-mapping","1031":"/drivers/is31fl3741#api","1032":"/drivers/is31fl3741#api-is31fl3741-led-t","1033":"/drivers/is31fl3741#api-is31fl3741-led-t-members","1034":"/drivers/is31fl3741#api-is31fl3741-init","1035":"/drivers/is31fl3741#api-is31fl3741-init-arguments","1036":"/drivers/is31fl3741#api-is31fl3741-write-register","1037":"/drivers/is31fl3741#api-is31fl3741-write-register-arguments","1038":"/drivers/is31fl3741#api-is31fl3741-select-page","1039":"/drivers/is31fl3741#api-is31fl3741-select-page-arguments","1040":"/drivers/is31fl3741#api-is31fl3741-set-color","1041":"/drivers/is31fl3741#api-is31fl3741-set-color-arguments","1042":"/drivers/is31fl3741#api-is31fl3741-set-color-all","1043":"/drivers/is31fl3741#api-is31fl3741-set-color-all-arguments","1044":"/drivers/is31fl3741#api-is31fl3741-set-value","1045":"/drivers/is31fl3741#api-is31fl3741-set-value-arguments","1046":"/drivers/is31fl3741#api-is31fl3741-set-value-all","1047":"/drivers/is31fl3741#api-is31fl3741-set-value-all-arguments","1048":"/drivers/is31fl3741#api-is31fl3741-set-led-control-register-rgb","1049":"/drivers/is31fl3741#api-is31fl3741-set-led-control-register-rgb-arguments","1050":"/drivers/is31fl3741#api-is31fl3741-set-led-control-register-mono","1051":"/drivers/is31fl3741#api-is31fl3741-set-led-control-register-mono-arguments","1052":"/drivers/is31fl3741#api-is31fl3741-update-pwm-buffers","1053":"/drivers/is31fl3741#api-is31fl3741-update-pwm-buffers-arguments","1054":"/drivers/is31fl3741#api-is31fl3741-update-led-control-registers","1055":"/drivers/is31fl3741#api-is31fl3741-update-led-control-registers-arguments","1056":"/drivers/is31fl3742a#is31fl3742a-driver","1057":"/drivers/is31fl3742a#usage","1058":"/drivers/is31fl3742a#basic-configuration","1059":"/drivers/is31fl3742a#i2c-addressing","1060":"/drivers/is31fl3742a#pwm-frequency","1061":"/drivers/is31fl3742a#de-ghosting","1062":"/drivers/is31fl3742a#global-current-control","1063":"/drivers/is31fl3742a#arm-configuration","1064":"/drivers/is31fl3742a#led-mapping","1065":"/drivers/is31fl3742a#api","1066":"/drivers/is31fl3742a#api-is31fl3742a-led-t","1067":"/drivers/is31fl3742a#api-is31fl3742a-led-t-members","1068":"/drivers/is31fl3742a#api-is31fl3742a-init","1069":"/drivers/is31fl3742a#api-is31fl3742a-init-arguments","1070":"/drivers/is31fl3742a#api-is31fl3742a-write-register","1071":"/drivers/is31fl3742a#api-is31fl3742a-write-register-arguments","1072":"/drivers/is31fl3742a#api-is31fl3742a-select-page","1073":"/drivers/is31fl3742a#api-is31fl3742a-select-page-arguments","1074":"/drivers/is31fl3742a#api-is31fl3742a-set-color","1075":"/drivers/is31fl3742a#api-is31fl3742a-set-color-arguments","1076":"/drivers/is31fl3742a#api-is31fl3742a-set-color-all","1077":"/drivers/is31fl3742a#api-is31fl3742a-set-color-all-arguments","1078":"/drivers/is31fl3742a#api-is31fl3742a-set-value","1079":"/drivers/is31fl3742a#api-is31fl3742a-set-value-arguments","1080":"/drivers/is31fl3742a#api-is31fl3742a-set-value-all","1081":"/drivers/is31fl3742a#api-is31fl3742a-set-value-all-arguments","1082":"/drivers/is31fl3742a#api-is31fl3742a-set-scaling-register-rgb","1083":"/drivers/is31fl3742a#api-is31fl3742a-set-scaling-register-rgb-arguments","1084":"/drivers/is31fl3742a#api-is31fl3742a-set-scaling-register-mono","1085":"/drivers/is31fl3742a#api-is31fl3742a-set-scaling-register-mono-arguments","1086":"/drivers/is31fl3742a#api-is31fl3742a-update-pwm-buffers","1087":"/drivers/is31fl3742a#api-is31fl3742a-update-pwm-buffers-arguments","1088":"/drivers/is31fl3742a#api-is31fl3742a-update-scaling-registers","1089":"/drivers/is31fl3742a#api-is31fl3742a-update-scaling-registers-arguments","1090":"/drivers/is31fl3743a#is31fl3743a-driver","1091":"/drivers/is31fl3743a#usage","1092":"/drivers/is31fl3743a#basic-configuration","1093":"/drivers/is31fl3743a#i2c-addressing","1094":"/drivers/is31fl3743a#multi-driver-synchronization","1095":"/drivers/is31fl3743a#de-ghosting","1096":"/drivers/is31fl3743a#global-current-control","1097":"/drivers/is31fl3743a#arm-configuration","1098":"/drivers/is31fl3743a#led-mapping","1099":"/drivers/is31fl3743a#api","1100":"/drivers/is31fl3743a#api-is31fl3743a-led-t","1101":"/drivers/is31fl3743a#api-is31fl3743a-led-t-members","1102":"/drivers/is31fl3743a#api-is31fl3743a-init","1103":"/drivers/is31fl3743a#api-is31fl3743a-init-arguments","1104":"/drivers/is31fl3743a#api-is31fl3743a-write-register","1105":"/drivers/is31fl3743a#api-is31fl3743a-write-register-arguments","1106":"/drivers/is31fl3743a#api-is31fl3743a-select-page","1107":"/drivers/is31fl3743a#api-is31fl3743a-select-page-arguments","1108":"/drivers/is31fl3743a#api-is31fl3743a-set-color","1109":"/drivers/is31fl3743a#api-is31fl3743a-set-color-arguments","1110":"/drivers/is31fl3743a#api-is31fl3743a-set-color-all","1111":"/drivers/is31fl3743a#api-is31fl3743a-set-color-all-arguments","1112":"/drivers/is31fl3743a#api-is31fl3743a-set-value","1113":"/drivers/is31fl3743a#api-is31fl3743a-set-value-arguments","1114":"/drivers/is31fl3743a#api-is31fl3743a-set-value-all","1115":"/drivers/is31fl3743a#api-is31fl3743a-set-value-all-arguments","1116":"/drivers/is31fl3743a#api-is31fl3743a-set-scaling-register-rgb","1117":"/drivers/is31fl3743a#api-is31fl3743a-set-scaling-register-rgb-arguments","1118":"/drivers/is31fl3743a#api-is31fl3743a-set-scaling-register-mono","1119":"/drivers/is31fl3743a#api-is31fl3743a-set-scaling-register-mono-arguments","1120":"/drivers/is31fl3743a#api-is31fl3743a-update-pwm-buffers","1121":"/drivers/is31fl3743a#api-is31fl3743a-update-pwm-buffers-arguments","1122":"/drivers/is31fl3743a#api-is31fl3743a-update-scaling-registers","1123":"/drivers/is31fl3743a#api-is31fl3743a-update-scaling-registers-arguments","1124":"/drivers/is31fl3745#is31fl3745-driver","1125":"/drivers/is31fl3745#usage","1126":"/drivers/is31fl3745#basic-configuration","1127":"/drivers/is31fl3745#i2c-addressing","1128":"/drivers/is31fl3745#multi-driver-synchronization","1129":"/drivers/is31fl3745#de-ghosting","1130":"/drivers/is31fl3745#global-current-control","1131":"/drivers/is31fl3745#arm-configuration","1132":"/drivers/is31fl3745#led-mapping","1133":"/drivers/is31fl3745#api","1134":"/drivers/is31fl3745#api-is31fl3745-led-t","1135":"/drivers/is31fl3745#api-is31fl3745-led-t-members","1136":"/drivers/is31fl3745#api-is31fl3745-init","1137":"/drivers/is31fl3745#api-is31fl3745-init-arguments","1138":"/drivers/is31fl3745#api-is31fl3745-write-register","1139":"/drivers/is31fl3745#api-is31fl3745-write-register-arguments","1140":"/drivers/is31fl3745#api-is31fl3745-select-page","1141":"/drivers/is31fl3745#api-is31fl3745-select-page-arguments","1142":"/drivers/is31fl3745#api-is31fl3745-set-color","1143":"/drivers/is31fl3745#api-is31fl3745-set-color-arguments","1144":"/drivers/is31fl3745#api-is31fl3745-set-color-all","1145":"/drivers/is31fl3745#api-is31fl3745-set-color-all-arguments","1146":"/drivers/is31fl3745#api-is31fl3745-set-value","1147":"/drivers/is31fl3745#api-is31fl3745-set-value-arguments","1148":"/drivers/is31fl3745#api-is31fl3745-set-value-all","1149":"/drivers/is31fl3745#api-is31fl3745-set-value-all-arguments","1150":"/drivers/is31fl3745#api-is31fl3745-set-scaling-register-rgb","1151":"/drivers/is31fl3745#api-is31fl3745-set-scaling-register-rgb-arguments","1152":"/drivers/is31fl3745#api-is31fl3745-set-scaling-register-mono","1153":"/drivers/is31fl3745#api-is31fl3745-set-scaling-register-mono-arguments","1154":"/drivers/is31fl3745#api-is31fl3745-update-pwm-buffers","1155":"/drivers/is31fl3745#api-is31fl3745-update-pwm-buffers-arguments","1156":"/drivers/is31fl3745#api-is31fl3745-update-scaling-registers","1157":"/drivers/is31fl3745#api-is31fl3745-update-scaling-registers-arguments","1158":"/drivers/is31fl3746a#is31fl3746a-driver","1159":"/drivers/is31fl3746a#usage","1160":"/drivers/is31fl3746a#basic-configuration","1161":"/drivers/is31fl3746a#i2c-addressing","1162":"/drivers/is31fl3746a#pwm-frequency","1163":"/drivers/is31fl3746a#de-ghosting","1164":"/drivers/is31fl3746a#global-current-control","1165":"/drivers/is31fl3746a#arm-configuration","1166":"/drivers/is31fl3746a#led-mapping","1167":"/drivers/is31fl3746a#api","1168":"/drivers/is31fl3746a#api-is31fl3746a-led-t","1169":"/drivers/is31fl3746a#api-is31fl3746a-led-t-members","1170":"/drivers/is31fl3746a#api-is31fl3746a-init","1171":"/drivers/is31fl3746a#api-is31fl3746a-init-arguments","1172":"/drivers/is31fl3746a#api-is31fl3746a-write-register","1173":"/drivers/is31fl3746a#api-is31fl3746a-write-register-arguments","1174":"/drivers/is31fl3746a#api-is31fl3746a-select-page","1175":"/drivers/is31fl3746a#api-is31fl3746a-select-page-arguments","1176":"/drivers/is31fl3746a#api-is31fl3746a-set-color","1177":"/drivers/is31fl3746a#api-is31fl3746a-set-color-arguments","1178":"/drivers/is31fl3746a#api-is31fl3746a-set-color-all","1179":"/drivers/is31fl3746a#api-is31fl3746a-set-color-all-arguments","1180":"/drivers/is31fl3746a#api-is31fl3746a-set-value","1181":"/drivers/is31fl3746a#api-is31fl3746a-set-value-arguments","1182":"/drivers/is31fl3746a#api-is31fl3746a-set-value-all","1183":"/drivers/is31fl3746a#api-is31fl3746a-set-value-all-arguments","1184":"/drivers/is31fl3746a#api-is31fl3746a-set-scaling-register-rgb","1185":"/drivers/is31fl3746a#api-is31fl3746a-set-scaling-register-rgb-arguments","1186":"/drivers/is31fl3746a#api-is31fl3746a-set-scaling-register-mono","1187":"/drivers/is31fl3746a#api-is31fl3746a-set-scaling-register-mono-arguments","1188":"/drivers/is31fl3746a#api-is31fl3746a-update-pwm-buffers","1189":"/drivers/is31fl3746a#api-is31fl3746a-update-pwm-buffers-arguments","1190":"/drivers/is31fl3746a#api-is31fl3746a-update-scaling-registers","1191":"/drivers/is31fl3746a#api-is31fl3746a-update-scaling-registers-arguments","1192":"/drivers/serial#serial-driver","1193":"/drivers/serial#bitbang","1194":"/drivers/serial#pin-configuration","1195":"/drivers/serial#setup","1196":"/drivers/serial#usart-half-duplex","1197":"/drivers/serial#pin-configuration-1","1198":"/drivers/serial#setup-1","1199":"/drivers/serial#usart-full-duplex","1200":"/drivers/serial#pin-configuration-2","1201":"/drivers/serial#setup-2","1202":"/drivers/serial#choosing-a-driver-subsystem","1203":"/drivers/serial#the-serial-driver","1204":"/drivers/serial#the-sio-driver","1205":"/drivers/serial#the-pio-driver","1206":"/drivers/serial#advanced-configuration","1207":"/drivers/serial#baudrate","1208":"/drivers/serial#timeout","1209":"/drivers/serial#troubleshooting","1210":"/drivers/serial#alternate-functions-for-selected-stm32-mcus","1211":"/drivers/serial#stm32f303-proton-c-datasheet","1212":"/drivers/serial#stm32f072-datasheet","1213":"/drivers/serial#stm32f103-medium-density-c8-cb-datasheet","1214":"/drivers/snled27351#snled27351-driver","1215":"/drivers/snled27351#usage","1216":"/drivers/snled27351#basic-configuration","1217":"/drivers/snled27351#i2c-addressing","1218":"/drivers/snled27351#arm-configuration","1219":"/drivers/snled27351#led-mapping","1220":"/drivers/snled27351#api","1221":"/drivers/snled27351#api-snled27351-led-t","1222":"/drivers/snled27351#api-snled27351-led-t-members","1223":"/drivers/snled27351#api-snled27351-init","1224":"/drivers/snled27351#api-snled27351-init-arguments","1225":"/drivers/snled27351#api-snled27351-write-register","1226":"/drivers/snled27351#api-snled27351-write-register-arguments","1227":"/drivers/snled27351#api-snled27351-select-page","1228":"/drivers/snled27351#api-snled27351-select-page-arguments","1229":"/drivers/snled27351#api-snled27351-set-color","1230":"/drivers/snled27351#api-snled27351-set-color-arguments","1231":"/drivers/snled27351#api-snled27351-set-color-all","1232":"/drivers/snled27351#api-snled27351-set-color-all-arguments","1233":"/drivers/snled27351#api-snled27351-set-value","1234":"/drivers/snled27351#api-snled27351-set-value-arguments","1235":"/drivers/snled27351#api-snled27351-set-value-all","1236":"/drivers/snled27351#api-snled27351-set-value-all-arguments","1237":"/drivers/snled27351#api-snled27351-set-led-control-register-rgb","1238":"/drivers/snled27351#api-snled27351-set-led-control-register-rgb-arguments","1239":"/drivers/snled27351#api-snled27351-set-led-control-register-mono","1240":"/drivers/snled27351#api-snled27351-set-led-control-register-mono-arguments","1241":"/drivers/snled27351#api-snled27351-update-pwm-buffers","1242":"/drivers/snled27351#api-snled27351-update-pwm-buffers-arguments","1243":"/drivers/snled27351#api-snled27351-update-led-control-registers","1244":"/drivers/snled27351#api-snled27351-update-led-control-registers-arguments","1245":"/drivers/spi#spi-master-driver","1246":"/drivers/spi#usage","1247":"/drivers/spi#avr-configuration","1248":"/drivers/spi#arm-configuration","1249":"/drivers/spi#api","1250":"/drivers/spi#api-spi-init","1251":"/drivers/spi#api-spi-start","1252":"/drivers/spi#api-spi-start-arguments","1253":"/drivers/spi#api-spi-start-return","1254":"/drivers/spi#api-spi-write","1255":"/drivers/spi#api-spi-write-arguments","1256":"/drivers/spi#api-spi-write-return","1257":"/drivers/spi#api-spi-read","1258":"/drivers/spi#api-spi-read-return","1259":"/drivers/spi#api-spi-transmit","1260":"/drivers/spi#api-spi-transmit-arguments","1261":"/drivers/spi#api-spi-transmit-return","1262":"/drivers/spi#api-spi-receive","1263":"/drivers/spi#api-spi-receive-arguments","1264":"/drivers/spi#api-spi-receive-return","1265":"/drivers/spi#api-spi-stop","1266":"/drivers/uart#uart-driver","1267":"/drivers/uart#usage","1268":"/drivers/uart#avr-configuration","1269":"/drivers/uart#arm-configuration","1270":"/drivers/uart#api","1271":"/drivers/uart#api-uart-init","1272":"/drivers/uart#api-uart-init-arguments","1273":"/drivers/uart#api-uart-write","1274":"/drivers/uart#api-uart-write-arguments","1275":"/drivers/uart#api-uart-read","1276":"/drivers/uart#api-uart-read-return","1277":"/drivers/uart#api-uart-transmit","1278":"/drivers/uart#api-uart-transmit-arguments","1279":"/drivers/uart#api-uart-receive","1280":"/drivers/uart#api-uart-receive-arguments","1281":"/drivers/uart#api-uart-available","1282":"/drivers/uart#api-uart-available-return","1283":"/drivers/ws2812#ws2812-driver","1284":"/drivers/ws2812#usage","1285":"/drivers/ws2812#basic-configuration","1286":"/drivers/ws2812#timing-adjustment","1287":"/drivers/ws2812#byte-order","1288":"/drivers/ws2812#rgbw-support","1289":"/drivers/ws2812#driver-configuration","1290":"/drivers/ws2812#bitbang-driver","1291":"/drivers/ws2812#i2c-driver","1292":"/drivers/ws2812#pio-driver","1293":"/drivers/ws2812#pwm-driver","1294":"/drivers/ws2812#spi-driver","1295":"/drivers/ws2812#arm-configuration","1296":"/drivers/ws2812#logic-levels","1297":"/drivers/ws2812#open-drain-circuit","1298":"/drivers/ws2812#level-shifter","1299":"/drivers/ws2812#arm-spi-driver","1300":"/drivers/ws2812#arm-spi-baudrate","1301":"/drivers/ws2812#arm-spi-circular-buffer","1302":"/drivers/ws2812#arm-pio-driver","1303":"/drivers/ws2812#arm-pwm-driver","1304":"/drivers/ws2812#api","1305":"/drivers/ws2812#api-ws2812-init","1306":"/drivers/ws2812#api-ws2812-set-color","1307":"/drivers/ws2812#api-ws2812-set-color-arguments","1308":"/drivers/ws2812#api-ws2812-set-color-all","1309":"/drivers/ws2812#api-ws2812-set-color-all-arguments","1310":"/drivers/ws2812#api-ws2812-flush","1311":"/easy_maker#easy-maker-build-one-off-projects-in-configurator","1312":"/easy_maker#quickstart","1313":"/easy_maker#direct-pin","1314":"/faq_build#frequently-asked-build-questions","1315":"/faq_build#can-t-program-on-linux","1316":"/faq_build#linux-udev-rules","1317":"/faq_build#serial-device-is-not-detected-in-bootloader-mode-on-linux","1318":"/faq_build#unknown-device-for-dfu-bootloader","1319":"/faq_build#usb-vid-and-pid","1320":"/faq_build#i-just-flashed-my-keyboard-and-it-does-nothing-keypresses-don-t-register-it-s-also-arm-rev6-planck-clueboard-60-hs60v2-etc-feb-2019","1321":"/faq_debug#debugging-faq","1322":"/faq_debug#debugging","1323":"/faq_debug#debugging-tools","1324":"/faq_debug#debugging-with-qmk-toolbox","1325":"/faq_debug#debugging-with-qmk-cli","1326":"/faq_debug#debugging-with-hid-listen","1327":"/faq_debug#debug-api","1328":"/faq_debug#debug-examples","1329":"/faq_debug#which-matrix-position-is-this-keypress","1330":"/faq_debug#which-keycode-is-this-keypress","1331":"/faq_debug#how-long-did-it-take-to-scan-for-a-keypress","1332":"/faq_debug#hid-listen-can-t-recognize-device","1333":"/faq_debug#can-t-get-message-on-console","1334":"/faq_general#frequently-asked-questions","1335":"/faq_general#what-is-qmk","1336":"/faq_general#i-don-t-know-where-to-start","1337":"/faq_general#how-can-i-flash-the-firmware-i-built","1338":"/faq_general#what-if-i-have-an-issue-that-isn-t-covered-here","1339":"/faq_general#what-if-i-found-a-bug","1340":"/faq_general#but-git-and-github-are-intimidating","1341":"/faq_general#i-have-a-keyboard-that-i-want-to-add-support-for","1342":"/faq_general#what-if-i-want-to-brand-it-with-qmk","1343":"/faq_general#what-differences-are-there-between-qmk-and-tmk","1344":"/faq_keymap#keymap-faq","1345":"/faq_keymap#what-keycodes-can-i-use","1346":"/faq_keymap#what-are-the-default-keycodes","1347":"/faq_keymap#how-can-i-make-custom-names-for-complex-keycodes","1348":"/faq_keymap#my-keymap-doesn-t-update-when-i-flash-it","1349":"/faq_keymap#some-of-my-keys-are-swapped-or-not-working","1350":"/faq_keymap#the-menu-key-isn-t-working","1351":"/faq_keymap#power-keys-aren-t-working","1352":"/faq_keymap#one-shot-modifier","1353":"/faq_keymap#modifier-layer-stuck","1354":"/faq_keymap#mechanical-lock-switch-support","1355":"/faq_keymap#input-special-characters-other-than-ascii-like-cedille-c","1356":"/faq_keymap#fn-key-on-macos","1357":"/faq_keymap#keys-supported-in-mac-osx","1358":"/faq_keymap#jis-keys-in-mac-osx","1359":"/faq_keymap#rn-42-bluetooth-doesn-t-work-with-karabiner","1360":"/faq_keymap#esc-and-on-a-single-key","1361":"/faq_keymap#eject-on-mac-osx","1362":"/faq_keymap#what-are-real-and-weak-modifiers","1363":"/faq_misc#miscellaneous-faq","1364":"/faq_misc#testing","1365":"/faq_misc#safety-considerations","1366":"/faq_misc#nkro-doesn-t-work","1367":"/faq_misc#trackpoint-needs-reset-circuit-ps-2-mouse-support","1368":"/faq_misc#can-t-read-column-of-matrix-beyond-16","1369":"/faq_misc#special-extra-key-doesn-t-work-system-audio-control-keys","1370":"/faq_misc#wake-from-sleep-doesn-t-work","1371":"/faq_misc#using-arduino","1372":"/faq_misc#enabling-jtag","1373":"/faq_misc#usb-3-compatibility","1374":"/faq_misc#mac-compatibility","1375":"/faq_misc#os-x-10-11-and-hub","1376":"/faq_misc#problem-in-bios-uefi-setup-resume-sleep-wake-power-cycles","1377":"/feature_advanced_keycodes#modifier-keys","1378":"/feature_advanced_keycodes#checking-modifier-state","1379":"/feature_advanced_keycodes#examples","1380":"/feature_advanced_keycodes#alt-escape-for-alt-tab","1381":"/feature_advanced_keycodes#shift-backspace-for-delete","1382":"/feature_advanced_keycodes#advanced-topics","1383":"/feature_advanced_keycodes#switching-and-toggling-layers","1384":"/feature_advanced_keycodes#mod-tap","1385":"/feature_advanced_keycodes#one-shot-keys","1386":"/feature_advanced_keycodes#tap-hold-configuration-options","1387":"/feature_advanced_keycodes#key-overrides","1388":"/feature_converters#converters","1389":"/feature_converters#supported-converters","1390":"/feature_converters#configuration","1391":"/feature_converters#pro-micro-converters","1392":"/feature_converters#proton_c","1393":"/feature_converters#kb2040","1394":"/feature_converters#sparkfun_pm2040","1395":"/feature_converters#stemcell","1396":"/feature_converters#bonsai_c4","1397":"/feature_converters#rp2040_ce","1398":"/feature_converters#svlinky","1399":"/feature_converters#elite-c-converters","1400":"/feature_converters#stemcell_elite","1401":"/feature_converters#rp2040_ce_elite","1402":"/feature_converters#advanced-topics","1403":"/feature_converters#keyboard-configuration","1404":"/feature_converters#keyboard-req","1405":"/feature_converters#keymap-add","1406":"/feature_converters#conditional-configuration","1407":"/feature_converters#pin_compatible","1408":"/feature_converters#available-pin-compatibility","1409":"/feature_debounce_type#contact-bounce-contact-chatter","1410":"/feature_debounce_type#types-of-debounce-algorithms","1411":"/feature_debounce_type#supported-debounce-algorithms","1412":"/feature_debounce_type#debounce-time","1413":"/feature_debounce_type#debounce-method","1414":"/feature_debounce_type#implementing-your-own-debouncing-code","1415":"/feature_eeprom#persistent-configuration-eeprom","1416":"/feature_eeprom#basic","1417":"/feature_eeprom#example-implementation","1418":"/feature_eeprom#basic-api","1419":"/feature_eeprom#datablock","1420":"/feature_eeprom#example","1421":"/feature_layers#layers","1422":"/feature_layers#switching-and-toggling-layers","1423":"/feature_layers#caveats","1424":"/feature_layers#working-with-layers","1425":"/feature_layers#beginners","1426":"/feature_layers#intermediate-users","1427":"/feature_layers#advanced-users","1428":"/feature_layers#functions","1429":"/feature_layers#layer-change-code","1430":"/feature_layers#example-layer-state-set-implementation","1431":"/feature_layers#example-keycode-to-cycle-through-layers","1432":"/feature_layers#layer-state-set-function-documentation","1433":"/feature_layouts#layouts-using-a-keymap-with-multiple-keyboards","1434":"/feature_layouts#supporting-a-layout","1435":"/feature_layouts#building-a-keymap","1436":"/feature_layouts#conflicting-layouts","1437":"/feature_layouts#tips-for-making-layouts-keyboard-agnostic","1438":"/feature_layouts#includes","1439":"/feature_layouts#keymaps","1440":"/feature_macros#macros","1441":"/feature_macros#using-macros-in-json-keymaps","1442":"/feature_macros#selecting-your-host-keyboard-layout","1443":"/feature_macros#macro-basics","1444":"/feature_macros#object-format","1445":"/feature_macros#using-macros-in-c-keymaps","1446":"/feature_macros#send-string-process-record-user","1447":"/feature_macros#advanced-macros","1448":"/feature_macros#tap-down-and-up","1449":"/feature_macros#alternative-keymaps","1450":"/feature_macros#strings-in-memory","1451":"/feature_macros#advanced-macro-functions","1452":"/feature_macros#record-event-pressed","1453":"/feature_macros#register-code-kc","1454":"/feature_macros#unregister-code-kc","1455":"/feature_macros#tap-code-kc","1456":"/feature_macros#tap-code-delay-kc-delay","1457":"/feature_macros#register-code16-kc-unregister-code16-kc-tap-code16-kc-and-tap-code16-delay-kc-delay","1458":"/feature_macros#clear-keyboard","1459":"/feature_macros#clear-mods","1460":"/feature_macros#clear-keyboard-but-mods","1461":"/feature_macros#advanced-example","1462":"/feature_macros#super-alt↯tab","1463":"/feature_userspace#userspace-sharing-code-between-keymaps","1464":"/feature_userspace#rules-mk","1465":"/feature_userspace#override-default-userspace","1466":"/feature_userspace#configuration-options-config-h","1467":"/feature_userspace#readme-readme-md","1468":"/feature_userspace#build-all-keyboards-that-support-a-specific-keymap","1469":"/feature_userspace#examples","1470":"/feature_userspace#customized-functions","1471":"/feature_userspace#custom-features","1472":"/feature_userspace#consolidated-macros","1473":"/features/audio#audio","1474":"/features/audio#avr-based-boards","1475":"/features/audio#wiring","1476":"/features/audio#arm-based-boards","1477":"/features/audio#dac-basic","1478":"/features/audio#wiring-1","1479":"/features/audio#proton-c-example","1480":"/features/audio#dac-additive","1481":"/features/audio#pwm-software","1482":"/features/audio#wiring-2","1483":"/features/audio#pwm-hardware","1484":"/features/audio#tone-multiplexing","1485":"/features/audio#songs","1486":"/features/audio#audio-config","1487":"/features/audio#tempo","1488":"/features/audio#arm-audio-volume","1489":"/features/audio#voices","1490":"/features/audio#music-mode","1491":"/features/audio#music-mask","1492":"/features/audio#music-map","1493":"/features/audio#audio-click","1494":"/features/audio#midi-functionality","1495":"/features/audio#audio-keycodes","1496":"/features/auto_shift#auto-shift-why-do-we-need-a-shift-key","1497":"/features/auto_shift#why-auto-shift","1498":"/features/auto_shift#how-does-it-work","1499":"/features/auto_shift#are-there-limitations-to-auto-shift","1500":"/features/auto_shift#how-do-i-enable-auto-shift","1501":"/features/auto_shift#modifiers","1502":"/features/auto_shift#configuring-auto-shift","1503":"/features/auto_shift#auto-shift-timeout-value-in-ms","1504":"/features/auto_shift#no-auto-shift-special-simple-define","1505":"/features/auto_shift#no-auto-shift-tab-simple-define","1506":"/features/auto_shift#no-auto-shift-symbols-simple-define","1507":"/features/auto_shift#no-auto-shift-numeric-simple-define","1508":"/features/auto_shift#no-auto-shift-alpha-simple-define","1509":"/features/auto_shift#auto-shift-enter-simple-define","1510":"/features/auto_shift#auto-shift-per-key","1511":"/features/auto_shift#auto-shift-repeat-simple-define","1512":"/features/auto_shift#auto-shift-no-auto-repeat-simple-define","1513":"/features/auto_shift#auto-shift-alpha-predefined-key-group","1514":"/features/auto_shift#auto-shift-numeric-predefined-key-group","1515":"/features/auto_shift#auto-shift-symbols-predefined-key-group","1516":"/features/auto_shift#auto-shift-special-predefined-key-group","1517":"/features/auto_shift#custom-shifted-values","1518":"/features/auto_shift#retro-shift","1519":"/features/auto_shift#retro-shift-and-tap-hold-configurations","1520":"/features/auto_shift#using-auto-shift-setup","1521":"/features/auto_shift#setup","1522":"/features/auto_shift#use","1523":"/features/auto_shift#an-example-run","1524":"/features/autocorrect#autocorrect","1525":"/features/autocorrect#how-does-it-work","1526":"/features/autocorrect#how-do-i-enable-autocorrection","1527":"/features/autocorrect#customizing-autocorrect-library","1528":"/features/autocorrect#avoiding-false-triggers","1529":"/features/autocorrect#overriding-autocorrect","1530":"/features/autocorrect#keycodes","1531":"/features/autocorrect#user-callback-functions","1532":"/features/autocorrect#process-autocorrect","1533":"/features/autocorrect#process-autocorrect-example","1534":"/features/autocorrect#apply-autocorrect","1535":"/features/autocorrect#apply-autocorrect-example","1536":"/features/autocorrect#autocorrect-status","1537":"/features/autocorrect#appendix","1538":"/features/autocorrect#encoding","1539":"/features/autocorrect#decoding","1540":"/features/autocorrect#credits","1541":"/features/backlight#backlighting","1542":"/features/backlight#usage","1543":"/features/backlight#keycodes","1544":"/features/backlight#basic-configuration","1545":"/features/backlight#on-state","1546":"/features/backlight#multiple-backlight-pins","1547":"/features/backlight#driver-configuration","1548":"/features/backlight#pwm-driver","1549":"/features/backlight#timer-driver","1550":"/features/backlight#software-driver","1551":"/features/backlight#custom-driver","1552":"/features/backlight#avr-configuration","1553":"/features/backlight#avr-pwm-driver","1554":"/features/backlight#avr-timer-driver","1555":"/features/backlight#arm-configuration","1556":"/features/backlight#arm-pwm-driver","1557":"/features/backlight#arm-timer-driver","1558":"/features/backlight#example-schematic","1559":"/features/backlight#api","1560":"/features/backlight#api-backlight-toggle","1561":"/features/backlight#api-backlight-enable","1562":"/features/backlight#api-backlight-disable","1563":"/features/backlight#api-backlight-step","1564":"/features/backlight#api-backlight-increase","1565":"/features/backlight#api-backlight-decrease","1566":"/features/backlight#api-backlight-level","1567":"/features/backlight#api-backlight-level-arguments","1568":"/features/backlight#api-get-backlight-level","1569":"/features/backlight#api-get-backlight-level-return","1570":"/features/backlight#api-is-backlight-enabled","1571":"/features/backlight#api-is-backlight-enabled-return","1572":"/features/backlight#api-backlight-toggle-breathing","1573":"/features/backlight#api-backlight-enable-breathing","1574":"/features/backlight#api-backlight-disable-breathing","1575":"/features/backlight#api-is-backlight-breathing","1576":"/features/backlight#api-is-backlight-breathing-return","1577":"/features/battery#battery","1578":"/features/battery#usage","1579":"/features/battery#basic-configuration","1580":"/features/battery#driver-configuration","1581":"/features/battery#functions","1582":"/features/battery#api-battery-get-percent","1583":"/features/battery#api-battery-get-percent-return","1584":"/features/battery#callbacks","1585":"/features/battery#api-battery-percent-changed-user","1586":"/features/battery#api-battery-percent-changed-user-arguments","1587":"/features/battery#api-battery-percent-changed-kb","1588":"/features/battery#api-battery-percent-changed-kb-arguments","1589":"/features/bootmagic#bootmagic","1590":"/features/bootmagic#split-keyboards","1591":"/features/bootmagic#advanced-bootmagic","1592":"/features/bootmagic#addenda","1593":"/features/caps_word#caps-word","1594":"/features/caps_word#how-do-i-enable-caps-word","1595":"/features/caps_word#troubleshooting-command","1596":"/features/caps_word#customizing-caps-word","1597":"/features/caps_word#invert-on-shift","1598":"/features/caps_word#idle-timeout","1599":"/features/caps_word#functions","1600":"/features/caps_word#configure-which-keys-are-word-breaking","1601":"/features/caps_word#representing-caps-word-state","1602":"/features/combo#combos","1603":"/features/combo#advanced-keycodes-support","1604":"/features/combo#overlapping-combos","1605":"/features/combo#examples","1606":"/features/combo#keycodes","1607":"/features/combo#advanced-configuration","1608":"/features/combo#combo-term","1609":"/features/combo#buffer-and-state-sizes","1610":"/features/combo#modifier-combos","1611":"/features/combo#strict-key-press-order","1612":"/features/combo#per-combo-timing-holding-tapping-and-key-press-order","1613":"/features/combo#generic-hook-to-dis-allow-a-combo-activation","1614":"/features/combo#combo-timer","1615":"/features/combo#define-combo-strict-timer","1616":"/features/combo#define-combo-no-timer","1617":"/features/combo#customizable-key-releases","1618":"/features/combo#customizable-key-repress","1619":"/features/combo#layer-independent-combos","1620":"/features/combo#combo-reference-layers-by-layer","1621":"/features/combo#user-callbacks","1622":"/features/combo#dictionary-management","1623":"/features/command#command","1624":"/features/command#usage","1625":"/features/command#configuration","1626":"/features/community_modules#community-modules","1627":"/features/community_modules#adding-a-community-module-to-your-build","1628":"/features/community_modules#adding-a-community-module-to-your-external-userspace","1629":"/features/community_modules#writing-a-qmk-community-module","1630":"/features/community_modules#qmk-module-json","1631":"/features/community_modules#config-h","1632":"/features/community_modules#rules-mk-post-rules-mk","1633":"/features/community_modules#module-c","1634":"/features/community_modules#introspection-c-introspection-h","1635":"/features/community_modules#led-matrix-module-inc","1636":"/features/community_modules#rgb-matrix-module-inc","1637":"/features/community_modules#custom-split-keyboard-data-sync","1638":"/features/community_modules#compatible-apis","1639":"/features/digitizer#digitizer","1640":"/features/digitizer#usage","1641":"/features/digitizer#positioning","1642":"/features/digitizer#examples","1643":"/features/digitizer#api","1644":"/features/digitizer#api-digitizer-t","1645":"/features/digitizer#api-digitizer-t-members","1646":"/features/digitizer#api-digitizer-flush","1647":"/features/digitizer#api-digitizer-in-range-on","1648":"/features/digitizer#api-digitizer-in-range-off","1649":"/features/digitizer#api-digitizer-tip-switch-on","1650":"/features/digitizer#api-digitizer-tip-switch-off","1651":"/features/digitizer#api-digitizer-barrel-switch-on","1652":"/features/digitizer#api-digitizer-barrel-switch-off","1653":"/features/digitizer#api-digitizer-set-position","1654":"/features/digitizer#api-digitizer-set-position-arguments","1655":"/features/dip_switch#dip-switches","1656":"/features/dip_switch#dip-switch-map","1657":"/features/dip_switch#callbacks","1658":"/features/dip_switch#hardware","1659":"/features/dip_switch#connects-each-switch-in-the-dip-switch-to-the-gpio-pin-of-the-mcu","1660":"/features/dip_switch#connect-each-switch-in-the-dip-switch-to-an-unused-intersections-in-the-key-matrix","1661":"/features/dynamic_macros#dynamic-macros-record-and-replay-macros-in-runtime","1662":"/features/dynamic_macros#customization","1663":"/features/dynamic_macros#dynamic-macro-user-call","1664":"/features/dynamic_macros#user-hooks","1665":"/features/encoders#encoders","1666":"/features/encoders#split-keyboards","1667":"/features/encoders#encoder-map","1668":"/features/encoders#callbacks","1669":"/features/encoders#hardware","1670":"/features/encoders#multiple-encoders","1671":"/features/grave_esc#grave-escape","1672":"/features/grave_esc#usage","1673":"/features/grave_esc#what-your-os-sees","1674":"/features/grave_esc#keycodes","1675":"/features/grave_esc#caveats","1676":"/features/grave_esc#configuration","1677":"/features/haptic_feedback#haptic-feedback","1678":"/features/haptic_feedback#haptic-feedback-rules-mk-options","1679":"/features/haptic_feedback#known-supported-hardware","1680":"/features/haptic_feedback#haptic-keycodes","1681":"/features/haptic_feedback#solenoids","1682":"/features/haptic_feedback#drv2605l","1683":"/features/haptic_feedback#feedback-motor-setup","1684":"/features/haptic_feedback#erm","1685":"/features/haptic_feedback#lra","1686":"/features/haptic_feedback#drv2605l-waveform-library","1687":"/features/haptic_feedback#optional-drv2605l-defines","1688":"/features/haptic_feedback#drv2605l-continuous-haptic-mode","1689":"/features/haptic_feedback#haptic-key-exclusion","1690":"/features/haptic_feedback#no-haptic-mod","1691":"/features/haptic_feedback#no-haptic-alpha","1692":"/features/haptic_feedback#no-haptic-punctuation","1693":"/features/haptic_feedback#no-haptic-lockkeys","1694":"/features/haptic_feedback#no-haptic-nav","1695":"/features/haptic_feedback#no-haptic-numeric","1696":"/features/hd44780#hd44780-lcd-driver","1697":"/features/hd44780#supported-hardware","1698":"/features/hd44780#usage","1699":"/features/hd44780#basic-configuration","1700":"/features/hd44780#examples","1701":"/features/hd44780#example-hello-world","1702":"/features/hd44780#example-custom-character","1703":"/features/hd44780#api","1704":"/features/hd44780#api-hd44780-init","1705":"/features/hd44780#api-hd44780-init-arguments","1706":"/features/hd44780#api-hd44780-clear","1707":"/features/hd44780#api-hd44780-home","1708":"/features/hd44780#api-hd44780-on","1709":"/features/hd44780#api-hd44780-on-arguments","1710":"/features/hd44780#api-hd44780-off","1711":"/features/hd44780#api-hd44780-set-cursor","1712":"/features/hd44780#api-hd44780-set-cursor-arguments","1713":"/features/hd44780#api-hd44780-putc","1714":"/features/hd44780#api-hd44780-putc-arguments","1715":"/features/hd44780#api-hd44780-puts","1716":"/features/hd44780#api-hd44780-puts-arguments","1717":"/features/hd44780#api-hd44780-puts-p","1718":"/features/hd44780#api-hd44780-puts-p-arguments","1719":"/features/hd44780#api-hd44780-define-char","1720":"/features/hd44780#api-hd44780-define-char-arguments","1721":"/features/hd44780#api-hd44780-define-char-p","1722":"/features/hd44780#api-hd44780-define-char-p-arguments","1723":"/features/hd44780#api-hd44780-busy","1724":"/features/hd44780#api-hd44780-busy-arguments","1725":"/features/hd44780#api-hd44780-write","1726":"/features/hd44780#api-hd44780-write-arguments","1727":"/features/hd44780#api-hd44780-read","1728":"/features/hd44780#api-hd44780-read-arguments","1729":"/features/hd44780#api-hd44780-read-return","1730":"/features/hd44780#api-hd44780-command","1731":"/features/hd44780#api-hd44780-command-arguments","1732":"/features/hd44780#api-hd44780-data","1733":"/features/hd44780#api-hd44780-data-arguments","1734":"/features/hd44780#api-hd44780-set-cgram-address","1735":"/features/hd44780#api-hd44780-set-cgram-address-arguments","1736":"/features/hd44780#api-hd44780-set-ddram-address","1737":"/features/hd44780#api-hd44780-set-ddram-address-arguments","1738":"/features/joystick#joystick","1739":"/features/joystick#usage","1740":"/features/joystick#configuration","1741":"/features/joystick#hat-switch","1742":"/features/joystick#axes","1743":"/features/joystick#virtual-axes","1744":"/features/joystick#keycodes","1745":"/features/joystick#api","1746":"/features/joystick#api-joystick-t","1747":"/features/joystick#api-joystick-t-members","1748":"/features/joystick#api-joystick-config-t","1749":"/features/joystick#api-joystick-config-t-members","1750":"/features/joystick#api-joystick-flush","1751":"/features/joystick#api-register-joystick-button","1752":"/features/joystick#api-register-joystick-button-arguments","1753":"/features/joystick#api-unregister-joystick-button","1754":"/features/joystick#api-unregister-joystick-button-arguments","1755":"/features/joystick#api-joystick-read-axis","1756":"/features/joystick#api-joystick-read-axis-arguments","1757":"/features/joystick#api-joystick-read-axis-return","1758":"/features/joystick#api-joystick-set-axis","1759":"/features/joystick#api-joystick-set-axis-arguments","1760":"/features/joystick#api-joystick-set-hat","1761":"/features/joystick#api-joystick-set-hat-arguments","1762":"/features/key_lock#key-lock","1763":"/features/key_lock#usage","1764":"/features/key_lock#keycodes","1765":"/features/key_lock#caveats","1766":"/features/key_overrides#key-overrides","1767":"/features/key_overrides#a-few-more-examples-to-get-started-you-could-use-key-overrides-to","1768":"/features/key_overrides#setup","1769":"/features/key_overrides#creating-key-overrides","1770":"/features/key_overrides#ko-make-basic-modifiers-key-replacement","1771":"/features/key_overrides#ko-make-with-layers-modifiers-key-replacement-layers","1772":"/features/key_overrides#ko-make-with-layers-and-negmods-modifiers-key-replacement-layers-negative-mods","1773":"/features/key_overrides#ko-make-with-layers-negmods-and-options-modifiers-key-replacement-layers-negative-mods-options","1774":"/features/key_overrides#simple-example","1775":"/features/key_overrides#intermediate-difficulty-examples","1776":"/features/key_overrides#media-controls-amp-screen-brightness","1777":"/features/key_overrides#flexible-macos-friendly-grave-escape","1778":"/features/key_overrides#advanced-examples","1779":"/features/key_overrides#modifiers-as-layer-keys","1780":"/features/key_overrides#keycodes","1781":"/features/key_overrides#reference-for-key_override_t","1782":"/features/key_overrides#reference-for-ko_option_t","1783":"/features/key_overrides#for-advanced-users-inner-workings","1784":"/features/key_overrides#activation","1785":"/features/key_overrides#deactivation","1786":"/features/key_overrides#key-repeat-delay","1787":"/features/key_overrides#difference-to-combos","1788":"/features/key_overrides#neutralize-flashing-modifiers","1789":"/features/layer_lock#layer-lock","1790":"/features/layer_lock#how-do-i-enable-layer-lock","1791":"/features/layer_lock#example-use","1792":"/features/layer_lock#idle-timeout","1793":"/features/layer_lock#functions","1794":"/features/layer_lock#representing-the-current-layer-lock-state","1795":"/features/layer_lock#combine-layer-lock-with-a-mod-tap","1796":"/features/leader_key#the-leader-key","1797":"/features/leader_key#usage","1798":"/features/leader_key#callbacks","1799":"/features/leader_key#basic-configuration","1800":"/features/leader_key#timeout","1801":"/features/leader_key#per-key-timeout","1802":"/features/leader_key#disabling-initial-timeout","1803":"/features/leader_key#strict-key-processing","1804":"/features/leader_key#example","1805":"/features/leader_key#keycodes","1806":"/features/leader_key#api","1807":"/features/leader_key#api-leader-start-user","1808":"/features/leader_key#api-leader-end-user","1809":"/features/leader_key#api-leader-add-user","1810":"/features/leader_key#api-leader-add-user-arguments","1811":"/features/leader_key#api-leader-add-user-return","1812":"/features/leader_key#api-leader-start","1813":"/features/leader_key#api-leader-end","1814":"/features/leader_key#api-leader-sequence-active","1815":"/features/leader_key#api-leader-sequence-add","1816":"/features/leader_key#api-leader-sequence-add-arguments","1817":"/features/leader_key#api-leader-sequence-add-return","1818":"/features/leader_key#api-leader-sequence-timed-out","1819":"/features/leader_key#api-leader-reset-timer","1820":"/features/leader_key#api-leader-sequence-one-key","1821":"/features/leader_key#api-leader-sequence-one-key-arguments","1822":"/features/leader_key#api-leader-sequence-one-key-return","1823":"/features/leader_key#api-leader-sequence-two-keys","1824":"/features/leader_key#api-leader-sequence-two-keys-arguments","1825":"/features/leader_key#api-leader-sequence-two-keys-return","1826":"/features/leader_key#api-leader-sequence-three-keys","1827":"/features/leader_key#api-leader-sequence-three-keys-arguments","1828":"/features/leader_key#api-leader-sequence-three-keys-return","1829":"/features/leader_key#api-leader-sequence-four-keys","1830":"/features/leader_key#api-leader-sequence-four-keys-arguments","1831":"/features/leader_key#api-leader-sequence-four-keys-return","1832":"/features/leader_key#api-leader-sequence-five-keys","1833":"/features/leader_key#api-leader-sequence-five-keys-arguments","1834":"/features/leader_key#api-leader-sequence-five-keys-return","1835":"/features/led_indicators#led-indicators","1836":"/features/led_indicators#configuration-options","1837":"/features/led_indicators#led-update-function","1838":"/features/led_indicators#example-of-keyboard-led-update-implementation","1839":"/features/led_indicators#example-of-user-led-update-implementation","1840":"/features/led_indicators#host-keyboard-led-state","1841":"/features/led_indicators#led-update-ports","1842":"/features/led_indicators#setting-physical-led-state","1843":"/features/led_indicators#ergodox-boards","1844":"/features/led_matrix#led-matrix-lighting","1845":"/features/led_matrix#driver-configuration","1846":"/features/led_matrix#common-configuration","1847":"/features/led_matrix#flags","1848":"/features/led_matrix#keycodes","1849":"/features/led_matrix#led-matrix-effects","1850":"/features/led_matrix#custom-led-matrix-effects","1851":"/features/led_matrix#naming","1852":"/features/led_matrix#additional-configh-options","1853":"/features/led_matrix#eeprom-storage","1854":"/features/led_matrix#callbacks","1855":"/features/led_matrix#indicators","1856":"/features/led_matrix#api","1857":"/features/led_matrix#api-led-matrix-toggle","1858":"/features/led_matrix#api-led-matrix-toggle-noeeprom","1859":"/features/led_matrix#api-led-matrix-enable","1860":"/features/led_matrix#api-led-matrix-enable-noeeprom","1861":"/features/led_matrix#api-led-matrix-disable","1862":"/features/led_matrix#api-led-matrix-disable-noeeprom","1863":"/features/led_matrix#api-led-matrix-is-enabled","1864":"/features/led_matrix#api-led-matrix-is-enabled-return","1865":"/features/led_matrix#led-matrix-set-value","1866":"/features/led_matrix#api-led-matrix-set-value-arguments","1867":"/features/led_matrix#api-led-matrix-set-value-all","1868":"/features/led_matrix#api-led-matrix-set-value-all-arguments","1869":"/features/led_matrix#api-led-matrix-mode","1870":"/features/led_matrix#api-led-matrix-mode-arguments","1871":"/features/led_matrix#api-led-matrix-mode-noeeprom","1872":"/features/led_matrix#api-led-matrix-mode-noeeprom-arguments","1873":"/features/led_matrix#api-led-matrix-step","1874":"/features/led_matrix#api-led-matrix-step-noeeprom","1875":"/features/led_matrix#api-led-matrix-step-reverse","1876":"/features/led_matrix#api-led-matrix-step-reverse-noeeprom","1877":"/features/led_matrix#api-led-matrix-get-mode","1878":"/features/led_matrix#api-led-matrix-get-mode-return","1879":"/features/led_matrix#api-led-matrix-increase-val","1880":"/features/led_matrix#api-led-matrix-increase-val-noeeprom","1881":"/features/led_matrix#api-led-matrix-decrease-val","1882":"/features/led_matrix#api-led-matrix-decrease-val-noeeprom","1883":"/features/led_matrix#api-led-matrix-get-val","1884":"/features/led_matrix#api-led-matrix-get-val-return","1885":"/features/led_matrix#api-led-matrix-increase-speed","1886":"/features/led_matrix#api-led-matrix-increase-speed-noeeprom","1887":"/features/led_matrix#api-led-matrix-decrease-speed","1888":"/features/led_matrix#api-led-matrix-decrease-speed-noeeprom","1889":"/features/led_matrix#api-led-matrix-set-speed","1890":"/features/led_matrix#api-led-matrix-set-speed-arguments","1891":"/features/led_matrix#api-led-matrix-set-speed-noeeprom","1892":"/features/led_matrix#api-led-matrix-set-speed-noeeprom-arguments","1893":"/features/led_matrix#api-led-matrix-get-speed","1894":"/features/led_matrix#api-led-matrix-get-speed-return","1895":"/features/led_matrix#api-led-matrix-set-flags","1896":"/features/led_matrix#api-led-matrix-set-flags-arguments","1897":"/features/led_matrix#api-led-matrix-set-flags-noeeprom","1898":"/features/led_matrix#api-led-matrix-set-flags-noeeprom-arguments","1899":"/features/led_matrix#api-led-matrix-flags-step","1900":"/features/led_matrix#api-led-matrix-flags-step-noeeprom","1901":"/features/led_matrix#api-led-matrix-flags-step-reverse","1902":"/features/led_matrix#api-led-matrix-flags-step-reverse-noeeprom","1903":"/features/led_matrix#api-led-matrix-get-flags","1904":"/features/led_matrix#api-led-matrix-get-flags-return","1905":"/features/led_matrix#api-led-matrix-reload-from-eeprom","1906":"/features/led_matrix#api-led-matrix-get-suspend-state","1907":"/features/led_matrix#api-led-matrix-get-suspend-state-return","1908":"/features/led_matrix#api-led-matrix-indicators-kb","1909":"/features/led_matrix#api-led-matrix-indicators-kb-return","1910":"/features/led_matrix#api-led-matrix-indicators-user","1911":"/features/led_matrix#api-led-matrix-indicators-user-return","1912":"/features/led_matrix#api-led-matrix-indicators-advanced-kb","1913":"/features/led_matrix#api-led-matrix-indicators-advanced-kb-arguments","1914":"/features/led_matrix#api-led-matrix-indicators-advanced-kb-return","1915":"/features/led_matrix#api-led-matrix-indicators-advanced-user","1916":"/features/led_matrix#api-led-matrix-indicators-advanced-user-arguments","1917":"/features/led_matrix#api-led-matrix-indicators-advanced-user-return","1918":"/features/midi#midi","1919":"/features/midi#usage","1920":"/features/midi#caveats","1921":"/features/midi#basic-midi","1922":"/features/midi#advanced-midi","1923":"/features/midi#sending-control-change-cc-messages","1924":"/features/midi#example-code-for-using-generic-on-off-switches-as-per-midi-specification","1925":"/features/midi#keycodes","1926":"/features/midi#configuration","1927":"/features/midi#references","1928":"/features/midi#midi-specification","1929":"/features/midi#qmk-c-files","1930":"/features/mouse_keys#mouse-keys","1931":"/features/mouse_keys#adding-mouse-keys-to-your-keyboard","1932":"/features/mouse_keys#enabling-mouse-keys","1933":"/features/mouse_keys#mapping-mouse-actions","1934":"/features/mouse_keys#configuring-mouse-keys","1935":"/features/mouse_keys#accelerated-mode","1936":"/features/mouse_keys#kinetic-mode","1937":"/features/mouse_keys#constant-mode","1938":"/features/mouse_keys#combined-mode","1939":"/features/mouse_keys#inertia-mode","1940":"/features/mouse_keys#overlapping-mouse-key-control","1941":"/features/mouse_keys#use-with-ps-2-mouse-and-pointing-device","1942":"/features/oled_driver#oled-driver","1943":"/features/oled_driver#supported-hardware","1944":"/features/oled_driver#usage","1945":"/features/oled_driver#oled-type","1946":"/features/oled_driver#logo-example","1947":"/features/oled_driver#buffer-read-example","1948":"/features/oled_driver#other-examples","1949":"/features/oled_driver#basic-configuration","1950":"/features/oled_driver#i2c-configuration","1951":"/features/oled_driver#spi-configuration","1952":"/features/oled_driver#_128x64-custom-sized-oled-displays","1953":"/features/oled_driver#_90-degree-rotation-technical-mumbo-jumbo","1954":"/features/oled_driver#oled-api","1955":"/features/oled_driver#ssd1306-h-driver-conversion-guide","1956":"/features/os_detection#os-detection","1957":"/features/os_detection#usage","1958":"/features/os_detection#callbacks","1959":"/features/os_detection#os-detection-stability","1960":"/features/os_detection#configuration-options","1961":"/features/os_detection#troubleshooting","1962":"/features/os_detection#debug","1963":"/features/os_detection#credits","1964":"/features/pointing_device#pointing-device","1965":"/features/pointing_device#sensor-drivers","1966":"/features/pointing_device#adns-5050-sensor","1967":"/features/pointing_device#adns-9800-sensor","1968":"/features/pointing_device#analog-joystick","1969":"/features/pointing_device#azoteq-iqs5xx-trackpad","1970":"/features/pointing_device#device-settings","1971":"/features/pointing_device#gesture-settings","1972":"/features/pointing_device#rotation-settings","1973":"/features/pointing_device#cirque-trackpad","1974":"/features/pointing_device#common-settings","1975":"/features/pointing_device#absolute-mode-settings","1976":"/features/pointing_device#absolute-mode-gestures","1977":"/features/pointing_device#relative-mode-gestures","1978":"/features/pointing_device#paw-3204-sensor","1979":"/features/pointing_device#paw-3222-sensor","1980":"/features/pointing_device#pimoroni-trackball","1981":"/features/pointing_device#pmw3320-sensor","1982":"/features/pointing_device#pmw-3325-sensor","1983":"/features/pointing_device#pmw-3360-and-pmw-3389-sensor","1984":"/features/pointing_device#custom-driver","1985":"/features/pointing_device#common-configuration","1986":"/features/pointing_device#high-resolution-scrolling","1987":"/features/pointing_device#split-keyboard-configuration","1988":"/features/pointing_device#callbacks-and-functions","1989":"/features/pointing_device#split-keyboard-callbacks-and-functions","1990":"/features/pointing_device#manipulating-mouse-reports","1991":"/features/pointing_device#examples","1992":"/features/pointing_device#custom-mouse-keycode","1993":"/features/pointing_device#drag-scroll-or-mouse-scroll","1994":"/features/pointing_device#advanced-drag-scroll","1995":"/features/pointing_device#split-examples","1996":"/features/pointing_device#single-pointing-device","1997":"/features/pointing_device#combined-pointing-devices","1998":"/features/pointing_device#troubleshooting","1999":"/features/pointing_device#pointing-device-auto-mouse","2000":"/features/pointing_device#behaviour-of-layer-keys-that-activate-the-target-layer","2001":"/features/pointing_device#how-to-enable","2002":"/features/pointing_device#how-to-customize","2003":"/features/pointing_device#config-h-options","2004":"/features/pointing_device#adding-mouse-keys","2005":"/features/pointing_device#callbacks-for-setting-up-additional-key-codes-as-mouse-keys","2006":"/features/pointing_device#to-use-the-callback-function-to-add-mouse-keys","2007":"/features/pointing_device#advanced-control","2008":"/features/pointing_device#functions-to-control-auto-mouse-enable-and-target-layer","2009":"/features/pointing_device#functions-for-handling-custom-key-events","2010":"/features/pointing_device#advanced-control-examples","2011":"/features/pointing_device#disable-auto-mouse-on-certain-layers","2012":"/features/pointing_device#set-different-target-layer-when-a-particular-layer-is-active","2013":"/features/pointing_device#use-custom-keys-to-control-auto-mouse","2014":"/features/pointing_device#customize-target-layer-activation","2015":"/features/pointing_device#auto-mouse-for-custom-pointing-device-task","2016":"/features/programmable_button#programmable-button","2017":"/features/programmable_button#usage","2018":"/features/programmable_button#keycodes","2019":"/features/programmable_button#api","2020":"/features/programmable_button#api-programmable-button-clear","2021":"/features/programmable_button#api-programmable-button-add","2022":"/features/programmable_button#api-programmable-button-add-arguments","2023":"/features/programmable_button#api-programmable-button-remove","2024":"/features/programmable_button#api-programmable-button-remove-arguments","2025":"/features/programmable_button#api-programmable-button-register","2026":"/features/programmable_button#api-programmable-button-register-arguments","2027":"/features/programmable_button#api-programmable-button-unregister","2028":"/features/programmable_button#api-programmable-button-unregister-arguments","2029":"/features/programmable_button#api-programmable-button-is-on","2030":"/features/programmable_button#api-programmable-button-is-on-arguments","2031":"/features/programmable_button#api-programmable-button-is-on-return","2032":"/features/programmable_button#api-programmable-button-flush","2033":"/features/programmable_button#api-programmable-button-get-report","2034":"/features/programmable_button#api-programmable-button-get-report-return","2035":"/features/programmable_button#api-programmable-button-set-report","2036":"/features/programmable_button#api-programmable-button-set-report-arguments","2037":"/features/ps2_mouse#ps2-mouse-support","2038":"/features/ps2_mouse#the-circuitry-between-trackpoint-and-controller","2039":"/features/ps2_mouse#driver-configuration","2040":"/features/ps2_mouse#busywait-driver","2041":"/features/ps2_mouse#interrupt-driver-avr","2042":"/features/ps2_mouse#interrupt-driver-chibios","2043":"/features/ps2_mouse#usart-driver","2044":"/features/ps2_mouse#rp2040-pio-driver","2045":"/features/ps2_mouse#additional-settings","2046":"/features/ps2_mouse#ps2-mouse-features","2047":"/features/ps2_mouse#fine-control","2048":"/features/ps2_mouse#scroll-button","2049":"/features/ps2_mouse#invert-buttons","2050":"/features/ps2_mouse#invert-mouse-and-scroll-axes","2051":"/features/ps2_mouse#rotate-mouse-axes","2052":"/features/ps2_mouse#debug-settings","2053":"/features/ps2_mouse#movement-hook","2054":"/features/rawhid#raw-hid","2055":"/features/rawhid#usage","2056":"/features/rawhid#basic-configuration","2057":"/features/rawhid#sending-data-to-the-keyboard","2058":"/features/rawhid#receiving-data-from-the-keyboard","2059":"/features/rawhid#simple-example","2060":"/features/rawhid#api","2061":"/features/rawhid#api-raw-hid-receive","2062":"/features/rawhid#api-raw-hid-receive-arguments","2063":"/features/rawhid#api-raw-hid-send","2064":"/features/rawhid#api-raw-hid-send-arguments","2065":"/features/repeat_key#repeat-key","2066":"/features/repeat_key#how-do-i-enable-repeat-key","2067":"/features/repeat_key#keycodes","2068":"/features/repeat_key#alternate-repeating","2069":"/features/repeat_key#defining-alternate-keys","2070":"/features/repeat_key#eliminating-sfbs","2071":"/features/repeat_key#typing-shortcuts","2072":"/features/repeat_key#ignoring-certain-keys-and-mods","2073":"/features/repeat_key#ignoring-a-key","2074":"/features/repeat_key#filtering-remembered-mods","2075":"/features/repeat_key#further-conditions","2076":"/features/repeat_key#handle-how-a-key-is-repeated","2077":"/features/repeat_key#handle-how-a-key-is-alternate-repeated","2078":"/features/repeat_key#functions","2079":"/features/repeat_key#additional-alternate-keys","2080":"/features/rgb_matrix#rgb-matrix-lighting","2081":"/features/rgb_matrix#driver-configuration","2082":"/features/rgb_matrix#common-configuration","2083":"/features/rgb_matrix#flags","2084":"/features/rgb_matrix#keycodes","2085":"/features/rgb_matrix#rgb-matrix-effects","2086":"/features/rgb_matrix#rgb-matrix-effect-typing-heatmap","2087":"/features/rgb_matrix#rgb-matrix-effect-solid-reactive","2088":"/features/rgb_matrix#custom-rgb-matrix-effects","2089":"/features/rgb_matrix#colors","2090":"/features/rgb_matrix#naming","2091":"/features/rgb_matrix#additional-configh-options","2092":"/features/rgb_matrix#eeprom-storage","2093":"/features/rgb_matrix#callbacks","2094":"/features/rgb_matrix#indicators","2095":"/features/rgb_matrix#indicator-examples","2096":"/features/rgb_matrix#indicator-examples-2","2097":"/features/rgb_matrix#indicators-without-rgb-matrix-effect","2098":"/features/rgb_matrix#api","2099":"/features/rgb_matrix#api-rgb-matrix-toggle","2100":"/features/rgb_matrix#api-rgb-matrix-toggle-noeeprom","2101":"/features/rgb_matrix#api-rgb-matrix-enable","2102":"/features/rgb_matrix#api-rgb-matrix-enable-noeeprom","2103":"/features/rgb_matrix#api-rgb-matrix-disable","2104":"/features/rgb_matrix#api-rgb-matrix-disable-noeeprom","2105":"/features/rgb_matrix#api-rgb-matrix-is-enabled","2106":"/features/rgb_matrix#api-rgb-matrix-is-enabled-return","2107":"/features/rgb_matrix#api-rgb-matrix-set-color","2108":"/features/rgb_matrix#api-rgb-matrix-set-color-arguments","2109":"/features/rgb_matrix#api-rgb-matrix-set-color-all","2110":"/features/rgb_matrix#api-rgb-matrix-set-color-all-arguments","2111":"/features/rgb_matrix#api-rgb-matrix-mode","2112":"/features/rgb_matrix#api-rgb-matrix-mode-arguments","2113":"/features/rgb_matrix#api-rgb-matrix-mode-noeeprom","2114":"/features/rgb_matrix#api-rgb-matrix-mode-noeeprom-arguments","2115":"/features/rgb_matrix#api-rgb-matrix-step","2116":"/features/rgb_matrix#api-rgb-matrix-step-noeeprom","2117":"/features/rgb_matrix#api-rgb-matrix-step-reverse","2118":"/features/rgb_matrix#api-rgb-matrix-step-reverse-noeeprom","2119":"/features/rgb_matrix#api-rgb-matrix-get-mode","2120":"/features/rgb_matrix#api-rgb-matrix-get-mode-return","2121":"/features/rgb_matrix#api-rgb-matrix-increase-hue","2122":"/features/rgb_matrix#api-rgb-matrix-increase-hue-noeeprom","2123":"/features/rgb_matrix#api-rgb-matrix-decrease-hue","2124":"/features/rgb_matrix#api-rgb-matrix-decrease-hue-noeeprom","2125":"/features/rgb_matrix#api-rgb-matrix-get-hue","2126":"/features/rgb_matrix#api-rgb-matrix-get-hue-return","2127":"/features/rgb_matrix#api-rgb-matrix-increase-sat","2128":"/features/rgb_matrix#api-rgb-matrix-increase-sat-noeeprom","2129":"/features/rgb_matrix#api-rgb-matrix-decrease-sat","2130":"/features/rgb_matrix#api-rgb-matrix-decrease-sat-noeeprom","2131":"/features/rgb_matrix#api-rgb-matrix-get-sat","2132":"/features/rgb_matrix#api-rgb-matrix-get-sat-return","2133":"/features/rgb_matrix#api-rgb-matrix-increase-val","2134":"/features/rgb_matrix#api-rgb-matrix-increase-val-noeeprom","2135":"/features/rgb_matrix#api-rgb-matrix-decrease-val","2136":"/features/rgb_matrix#api-rgb-matrix-decrease-val-noeeprom","2137":"/features/rgb_matrix#api-rgb-matrix-get-val","2138":"/features/rgb_matrix#api-rgb-matrix-get-val-return","2139":"/features/rgb_matrix#api-rgb-matrix-increase-speed","2140":"/features/rgb_matrix#api-rgb-matrix-increase-speed-noeeprom","2141":"/features/rgb_matrix#api-rgb-matrix-decrease-speed","2142":"/features/rgb_matrix#api-rgb-matrix-decrease-speed-noeeprom","2143":"/features/rgb_matrix#api-rgb-matrix-set-speed","2144":"/features/rgb_matrix#api-rgb-matrix-set-speed-arguments","2145":"/features/rgb_matrix#api-rgb-matrix-set-speed-noeeprom","2146":"/features/rgb_matrix#api-rgb-matrix-set-speed-noeeprom-arguments","2147":"/features/rgb_matrix#api-rgb-matrix-get-speed","2148":"/features/rgb_matrix#api-rgb-matrix-get-speed-return","2149":"/features/rgb_matrix#api-rgb-matrix-set-flags","2150":"/features/rgb_matrix#api-rgb-matrix-set-flags-arguments","2151":"/features/rgb_matrix#api-rgb-matrix-set-flags-noeeprom","2152":"/features/rgb_matrix#api-rgb-matrix-set-flags-noeeprom-arguments","2153":"/features/rgb_matrix#api-rgb-matrix-flags-step","2154":"/features/rgb_matrix#api-rgb-matrix-flags-step-noeeprom","2155":"/features/rgb_matrix#api-rgb-matrix-flags-step-reverse","2156":"/features/rgb_matrix#api-rgb-matrix-flags-step-reverse-noeeprom","2157":"/features/rgb_matrix#api-rgb-matrix-get-flags","2158":"/features/rgb_matrix#api-rgb-matrix-get-flags-return","2159":"/features/rgb_matrix#api-rgb-matrix-sethsv","2160":"/features/rgb_matrix#api-rgb-matrix-sethsv-arguments","2161":"/features/rgb_matrix#api-rgb-matrix-sethsv-noeeprom","2162":"/features/rgb_matrix#api-rgb-matrix-sethsv-noeeprom-arguments","2163":"/features/rgb_matrix#api-rgb-matrix-get-hsv","2164":"/features/rgb_matrix#api-rgb-matrix-get-hsv-return","2165":"/features/rgb_matrix#api-rgb-matrix-reload-from-eeprom","2166":"/features/rgb_matrix#api-rgb-matrix-get-suspend-state","2167":"/features/rgb_matrix#api-rgb-matrix-get-suspend-state-return","2168":"/features/rgb_matrix#api-rgb-matrix-indicators-kb","2169":"/features/rgb_matrix#api-rgb-matrix-indicators-kb-return","2170":"/features/rgb_matrix#api-rgb-matrix-indicators-user","2171":"/features/rgb_matrix#api-rgb-matrix-indicators-user-return","2172":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-kb","2173":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-kb-arguments","2174":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-kb-return","2175":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-user","2176":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-user-arguments","2177":"/features/rgb_matrix#api-rgb-matrix-indicators-advanced-user-return","2178":"/features/rgblight#rgb-lighting","2179":"/features/rgblight#usage","2180":"/features/rgblight#color-selection","2181":"/features/rgblight#keycodes","2182":"/features/rgblight#configuration","2183":"/features/rgblight#effects-and-animations","2184":"/features/rgblight#effect-and-animation-toggles","2185":"/features/rgblight#effect-and-animation-settings","2186":"/features/rgblight#example-usage-to-reduce-memory-footprint","2187":"/features/rgblight#animation-speed","2188":"/features/rgblight#lighting-layers","2189":"/features/rgblight#defining-lighting-layers","2190":"/features/rgblight#enabling-lighting-layers","2191":"/features/rgblight#lighting-layer-blink","2192":"/features/rgblight#overriding-rgb-lighting-on-off-status","2193":"/features/rgblight#retain-brightness","2194":"/features/rgblight#functions","2195":"/features/rgblight#low-level-functions","2196":"/features/rgblight#effects-and-animations-functions","2197":"/features/rgblight#effect-range-setting","2198":"/features/rgblight#direct-operation","2199":"/features/rgblight#effect-mode-change","2200":"/features/rgblight#effects-mode-disable-enable","2201":"/features/rgblight#hue-sat-val-change","2202":"/features/rgblight#speed-functions","2203":"/features/rgblight#layer-functions","2204":"/features/rgblight#query","2205":"/features/rgblight#colors","2206":"/features/rgblight#changing-the-order-of-the-leds","2207":"/features/rgblight#clipping-range","2208":"/features/rgblight#hardware-modification","2209":"/features/rgblight#velocikey","2210":"/features/rgblight#usage-1","2211":"/features/rgblight#configuration-1","2212":"/features/secure#secure","2213":"/features/secure#unlock-sequence","2214":"/features/secure#automatic-locking","2215":"/features/secure#usage","2216":"/features/secure#keycodes","2217":"/features/secure#configuration","2218":"/features/secure#functions","2219":"/features/send_string#send-string","2220":"/features/send_string#usage","2221":"/features/send_string#basic-configuration","2222":"/features/send_string#keycodes","2223":"/features/send_string#language-support","2224":"/features/send_string#examples","2225":"/features/send_string#example-hello-world","2226":"/features/send_string#example-keycode-injection","2227":"/features/send_string#api","2228":"/features/send_string#api-send-string","2229":"/features/send_string#api-send-string-arguments","2230":"/features/send_string#api-send-string-with-delay","2231":"/features/send_string#api-send-string-with-delay-arguments","2232":"/features/send_string#api-send-string-p","2233":"/features/send_string#api-send-string-p-arguments","2234":"/features/send_string#api-send-string-with-delay-p","2235":"/features/send_string#api-send-string-with-delay-p-arguments","2236":"/features/send_string#api-send-char","2237":"/features/send_string#api-send-char-arguments","2238":"/features/send_string#api-send-dword","2239":"/features/send_string#api-send-dword-arguments","2240":"/features/send_string#api-send-word","2241":"/features/send_string#api-send-word-arguments","2242":"/features/send_string#api-send-bytes","2243":"/features/send_string#api-send-byte-arguments","2244":"/features/send_string#api-send-nibble","2245":"/features/send_string#api-send-nibble-arguments","2246":"/features/send_string#api-tap-random-base64","2247":"/features/send_string#api-send-string-macro","2248":"/features/send_string#api-send-string-delay-macro","2249":"/features/sequencer#sequencer","2250":"/features/sequencer#enable-the-step-sequencer","2251":"/features/sequencer#tracks","2252":"/features/sequencer#resolutions","2253":"/features/sequencer#keycodes","2254":"/features/sequencer#functions","2255":"/features/space_cadet#space-cadet-the-future-built-in","2256":"/features/space_cadet#usage","2257":"/features/space_cadet#keycodes","2258":"/features/space_cadet#caveats","2259":"/features/space_cadet#configuration","2260":"/features/space_cadet#obsolete-configuration","2261":"/features/split_keyboard#split-keyboard","2262":"/features/split_keyboard#compatibility-overview","2263":"/features/split_keyboard#hardware-configuration","2264":"/features/split_keyboard#required-hardware","2265":"/features/split_keyboard#considerations","2266":"/features/split_keyboard#serial-wiring","2267":"/features/split_keyboard#i2c-wiring","2268":"/features/split_keyboard#firmware-configuration","2269":"/features/split_keyboard#layout-macro","2270":"/features/split_keyboard#setting-handedness","2271":"/features/split_keyboard#handedness-by-pin","2272":"/features/split_keyboard#handedness-by-matrix-pin","2273":"/features/split_keyboard#handedness-by-eeprom","2274":"/features/split_keyboard#handedness-by-define","2275":"/features/split_keyboard#communication-options","2276":"/features/split_keyboard#data-sync-options","2277":"/features/split_keyboard#custom-data-sync","2278":"/features/split_keyboard#hardware-configuration-options","2279":"/features/split_keyboard#hardware-considerations-and-mods","2280":"/features/split_keyboard#teensy-boards","2281":"/features/split_keyboard#additional-resources","2282":"/features/st7565#st7565-lcd-driver","2283":"/features/st7565#supported-hardware","2284":"/features/st7565#usage","2285":"/features/st7565#logo-example","2286":"/features/st7565#buffer-read-example","2287":"/features/st7565#other-examples","2288":"/features/st7565#basic-configuration","2289":"/features/st7565#custom-sized-displays","2290":"/features/st7565#api","2291":"/features/stenography#stenography-in-qmk","2292":"/features/stenography#steno-support-in-qmk","2293":"/features/stenography#plover-with-qwerty-keyboard","2294":"/features/stenography#plover-with-steno-protocol","2295":"/features/stenography#tx-bolt","2296":"/features/stenography#geminipr","2297":"/features/stenography#switching-protocols-on-the-fly","2298":"/features/stenography#configuring-qmk-for-steno","2299":"/features/stenography#learning-stenography","2300":"/features/stenography#interfacing-with-the-code","2301":"/features/stenography#keycode-reference","2302":"/features/swap_hands#swap-hands-action","2303":"/features/swap_hands#configuration","2304":"/features/swap_hands#swap-keycodes","2305":"/features/swap_hands#encoder-mapping","2306":"/features/swap_hands#functions","2307":"/features/tap_dance#tap-dance-a-single-key-can-do-3-5-or-100-different-things","2308":"/features/tap_dance#introduction","2309":"/features/tap_dance#how-to-use","2310":"/features/tap_dance#implementation","2311":"/features/tap_dance#examples","2312":"/features/tap_dance#simple-example","2313":"/features/tap_dance#complex-examples","2314":"/features/tap_dance#example-1","2315":"/features/tap_dance#example-2","2316":"/features/tap_dance#example-3","2317":"/features/tap_dance#example-4","2318":"/features/tap_dance#example-5","2319":"/features/tap_dance#example-6","2320":"/features/tri_layer#tri-layers","2321":"/features/tri_layer#keycodes","2322":"/features/tri_layer#configuration","2323":"/features/tri_layer#functions","2324":"/features/unicode#unicode","2325":"/features/unicode#caveats","2326":"/features/unicode#usage","2327":"/features/unicode#basic-configuration","2328":"/features/unicode#audio-feedback","2329":"/features/unicode#input-subsystems","2330":"/features/unicode#unicodemap-pairs","2331":"/features/unicode#input-modes","2332":"/features/unicode#keycodes","2333":"/features/unicode#api","2334":"/features/unicode#api-get-unicode-input-mode","2335":"/features/unicode#api-get-unicode-input-mode-return-value","2336":"/features/unicode#api-set-unicode-input-mode","2337":"/features/unicode#api-set-unicode-input-mode-arguments","2338":"/features/unicode#api-unicode-input-mode-step","2339":"/features/unicode#api-unicode-input-mode-step-reverse","2340":"/features/unicode#api-unicode-input-mode-set-user","2341":"/features/unicode#api-unicode-input-mode-set-user-arguments","2342":"/features/unicode#api-unicode-input-mode-set-kb","2343":"/features/unicode#api-unicode-input-mode-set-kb-arguments","2344":"/features/unicode#api-unicode-input-start","2345":"/features/unicode#api-unicode-input-finish","2346":"/features/unicode#api-unicode-input-cancel","2347":"/features/unicode#api-register-unicode","2348":"/features/unicode#api-register-unicode-arguments","2349":"/features/unicode#api-send-unicode-string","2350":"/features/unicode#api-send-unicode-string-arguments","2351":"/features/unicode#api-unicodemap-index","2352":"/features/unicode#api-unicodemap-index-arguments","2353":"/features/unicode#api-unicodemap-index-return-value","2354":"/features/unicode#api-unicodemap-get-code-point","2355":"/features/unicode#unicodemap-get-code-point-arguments","2356":"/features/unicode#unicodemap-get-code-point-return-value","2357":"/features/unicode#api-register-unicodemap","2358":"/features/unicode#api-register-unicodemap-arguments","2359":"/features/unicode#api-ucis-start","2360":"/features/unicode#api-ucis-active","2361":"/features/unicode#api-ucis-active-return-value","2362":"/features/unicode#api-ucis-count","2363":"/features/unicode#api-ucis-count-return-value","2364":"/features/unicode#api-ucis-add","2365":"/features/unicode#api-ucis-add-arguments","2366":"/features/unicode#api-ucis-add-return-value","2367":"/features/unicode#api-ucis-remove-last","2368":"/features/unicode#api-ucis-remove-last-return-value","2369":"/features/unicode#api-ucis-finish","2370":"/features/unicode#api-ucis-cancel","2371":"/features/unicode#api-register-ucis","2372":"/features/unicode#api-register-ucis-arguments","2373":"/features/wireless#wireless-bluetooth","2374":"/features/wireless#bluetooth-known-supported-hardware","2375":"/features/wireless#adafruit-ble-spi-friend","2376":"/features/wireless#bluetooth-rules-mk-options","2377":"/features/wireless#bluetooth-keycodes","2378":"/features/wpm#word-per-minute-wpm-calculation","2379":"/features/wpm#configuration","2380":"/features/wpm#public-functions","2381":"/features/wpm#callbacks","2382":"/getting_started_docker#docker-quick-start","2383":"/getting_started_docker#requirements","2384":"/getting_started_docker#usage","2385":"/getting_started_docker#faq","2386":"/getting_started_docker#why-can-t-i-flash-on-windows-macos","2387":"/getting_started_github#how-to-use-github-with-qmk","2388":"/flashing#flashing-instructions-and-bootloader-information","2389":"/flashing#atmel-dfu","2390":"/flashing#qmk-dfu","2391":"/flashing#make-targets","2392":"/flashing#caterina","2393":"/flashing#make-targets-1","2394":"/flashing#halfkay","2395":"/flashing#usbasploader","2396":"/flashing#bootloadhid","2397":"/flashing#qmk-hid","2398":"/flashing#make-targets-2","2399":"/flashing#stm32-apm32-dfu","2400":"/flashing#make-targets-3","2401":"/flashing#stm32duino","2402":"/flashing#kiibohd-dfu","2403":"/flashing#wb32-dfu","2404":"/flashing#at32-dfu","2405":"/flashing#make-targets-4","2406":"/flashing#tinyuf2","2407":"/flashing#make-targets-5","2408":"/flashing#uf2boot","2409":"/flashing#make-targets-6","2410":"/flashing#raspberry-pi-rp2040-uf2","2411":"/getting_started_introduction#introduction","2412":"/getting_started_introduction#basic-qmk-structure","2413":"/getting_started_introduction#userspace-structure","2414":"/getting_started_introduction#keyboard-project-structure","2415":"/getting_started_introduction#keymap-structure","2416":"/getting_started_introduction#the-config-h-file","2417":"/getting_started_make_guide#more-detailed-make-instructions","2418":"/getting_started_make_guide#rules-mk-options","2419":"/getting_started_make_guide#customizing-makefile-options-on-a-per-keymap-basis","2420":"/hand_wire#hand-wiring-guide","2421":"/hand_wire#parts-list","2422":"/hand_wire#starting-the-build","2423":"/hand_wire#planning-the-matrix","2424":"/hand_wire#common-microcontroller-boards","2425":"/hand_wire#wiring-the-matrix","2426":"/hand_wire#a-note-on-split-keyboards","2427":"/hand_wire#soldering","2428":"/hand_wire#soldering-the-diodes","2429":"/hand_wire#soldering-the-columns","2430":"/hand_wire#wiring-up-the-controller","2431":"/hand_wire#specific-instructions-for-the-teensy-2-0","2432":"/hand_wire#getting-some-basic-firmware-set-up","2433":"/hand_wire#flashing-the-firmware","2434":"/hand_wire#testing-your-firmware","2435":"/hand_wire#finishing-up","2436":"/hand_wire#links-to-other-guides","2437":"/hand_wire#legacy-content","2438":"/hand_wire#preamble-how-a-keyboard-matrix-works-and-why-we-need-diodes","2439":"/hardware_drivers#qmk-hardware-drivers","2440":"/hardware_drivers#available-drivers","2441":"/hardware_drivers#promicro-avr-only","2442":"/hardware_drivers#ssd1306-oled-driver","2443":"/hardware_drivers#ws2812","2444":"/hardware_drivers#is31fl3731","2445":"/hardware_drivers#is31fl3733","2446":"/hardware_drivers#_24xx-series-external-i2c-eeprom","2447":"/hardware_keyboard_guidelines#qmk-keyboard-guidelines","2448":"/hardware_keyboard_guidelines#use-qmk-lint","2449":"/hardware_keyboard_guidelines#naming-your-keyboard-project","2450":"/hardware_keyboard_guidelines#sub-folders","2451":"/hardware_keyboard_guidelines#keyboard-folder-structure","2452":"/hardware_keyboard_guidelines#readme-md","2453":"/hardware_keyboard_guidelines#keyboard-json-info-json","2454":"/hardware_keyboard_guidelines#config-h","2455":"/hardware_keyboard_guidelines#rules-mk","2456":"/hardware_keyboard_guidelines#keyboard-c","2457":"/hardware_keyboard_guidelines#keyboard-h","2458":"/hardware_keyboard_guidelines#image-hardware-files","2459":"/hardware_keyboard_guidelines#keyboard-defaults","2460":"/hardware_keyboard_guidelines#magic-keycodes-and-command","2461":"/hardware_keyboard_guidelines#custom-keyboard-programming","2462":"/hardware_keyboard_guidelines#non-production-handwired-projects","2463":"/hardware_keyboard_guidelines#warnings-as-errors","2464":"/hardware_keyboard_guidelines#copyright-blurb","2465":"/hardware_keyboard_guidelines#license","2466":"/how_a_matrix_works#how-a-keyboard-matrix-works","2467":"/how_keyboards_work#how-keys-are-registered-and-interpreted-by-computers","2468":"/how_keyboards_work#schematic-view","2469":"/how_keyboards_work#_1-you-press-a-key","2470":"/how_keyboards_work#_2-what-the-firmware-sends","2471":"/how_keyboards_work#_3-what-the-event-input-kernel-does","2472":"/how_keyboards_work#_4-what-the-operating-system-does","2473":"/how_keyboards_work#back-to-the-firmware","2474":"/how_keyboards_work#list-of-characters-you-can-send","2475":"/how_keyboards_work#how-to-maybe-enter-unicode-characters","2476":"/#quantum-mechanical-keyboard-firmware","2477":"/#what-is-qmk-firmware","2478":"/#get-started","2479":"/#make-it-yours","2480":"/#need-help","2481":"/#give-back","2482":"/isp_flashing_guide#isp-flashing-guide","2483":"/isp_flashing_guide#hardware","2484":"/isp_flashing_guide#pro-micro-as-isp","2485":"/isp_flashing_guide#wiring","2486":"/isp_flashing_guide#arduino-uno-micro-as-isp","2487":"/isp_flashing_guide#wiring-1","2488":"/isp_flashing_guide#teensy-2-0-as-isp","2489":"/isp_flashing_guide#wiring-2","2490":"/isp_flashing_guide#sparkfun-pocketavr-usbtinyisp","2491":"/isp_flashing_guide#wiring-3","2492":"/isp_flashing_guide#usbasp","2493":"/isp_flashing_guide#wiring-4","2494":"/isp_flashing_guide#bus-pirate","2495":"/isp_flashing_guide#wiring-5","2496":"/isp_flashing_guide#software","2497":"/isp_flashing_guide#bootloader-firmware","2498":"/isp_flashing_guide#atmel-dfu","2499":"/isp_flashing_guide#caterina","2500":"/isp_flashing_guide#bootloadhid-ps2avrgb","2501":"/isp_flashing_guide#usbasploader","2502":"/isp_flashing_guide#flashing-the-bootloader","2503":"/isp_flashing_guide#setting-the-fuses","2504":"/isp_flashing_guide#creating-a-production-firmware","2505":"/isp_flashing_guide#flashing-stm32duino-bootloader","2506":"/isp_flashing_guide#software-1","2507":"/isp_flashing_guide#wiring-6","2508":"/isp_flashing_guide#flashing","2509":"/keycodes_basic#basic-keycodes","2510":"/keycodes_basic#letters-and-numbers","2511":"/keycodes_basic#f-keys","2512":"/keycodes_basic#punctuation","2513":"/keycodes_basic#lock-keys","2514":"/keycodes_basic#modifiers","2515":"/keycodes_basic#international","2516":"/keycodes_basic#commands","2517":"/keycodes_basic#media-keys","2518":"/keycodes_basic#number-pad","2519":"/keycodes_basic#special-keys","2520":"/keycodes_magic#magic-keycodes","2521":"/keycodes#keycodes-overview","2522":"/keycodes#basic-keycodes","2523":"/keycodes#quantum-keycodes","2524":"/keycodes#audio-keys","2525":"/keycodes#auto-shift","2526":"/keycodes#autocorrect","2527":"/keycodes#backlighting","2528":"/keycodes#bluetooth","2529":"/keycodes#caps-word","2530":"/keycodes#dynamic-macros","2531":"/keycodes#grave-escape","2532":"/keycodes#joystick","2533":"/keycodes#key-lock","2534":"/keycodes#layer-lock","2535":"/keycodes#layer-switching","2536":"/keycodes#leader-key","2537":"/keycodes#led-matrix","2538":"/keycodes#magic-keycodes","2539":"/keycodes#midi","2540":"/keycodes#mouse-keys","2541":"/keycodes#modifiers","2542":"/keycodes#mod-tap-keys","2543":"/keycodes#tapping-term-keys","2544":"/keycodes#rgb-lighting","2545":"/keycodes#rgb-matrix","2546":"/keycodes#us-ansi-shifted-symbols","2547":"/keycodes#one-shot-keys","2548":"/keycodes#programmable-button","2549":"/keycodes#repeat-key","2550":"/keycodes#space-cadet","2551":"/keycodes#swap-hands","2552":"/keycodes#unicode-support","2553":"/keycodes_us_ansi_shifted#us-ansi-shifted-symbols","2554":"/keycodes_us_ansi_shifted#caveats","2555":"/keycodes_us_ansi_shifted#keycodes","2556":"/keymap#keymap-overview","2557":"/keymap#keymap-and-layers","2558":"/keymap#keymap-layer-status","2559":"/keymap#layer-precedence-and-transparency","2560":"/keymap#anatomy-of-a-keymap-c","2561":"/keymap#definitions","2562":"/keymap#layers-and-keymaps","2563":"/keymap#base-layer","2564":"/keymap#function-overlay-layer","2565":"/keymap#nitty-gritty-details","2566":"/license_violations#license-violations","2567":"/license_violations#offending-vendors","2568":"/license_violations#licensing","2569":"/license_violations#qmk-pr-considerations","2570":"/license_violations#detection","2571":"/license_violations#remediation","2572":"/mod_tap#mod-tap","2573":"/mod_tap#caveats","2574":"/mod_tap#intercepting-mod-taps","2575":"/mod_tap#changing-tap-function","2576":"/mod_tap#changing-hold-function","2577":"/mod_tap#changing-both-tap-and-hold","2578":"/mod_tap#other-resources","2579":"/newbs#the-qmk-tutorial","2580":"/newbs#overview","2581":"/newbs#additional-resources","2582":"/newbs_building_firmware#building-your-first-firmware","2583":"/newbs_building_firmware#configure-your-build-environment-defaults-optional","2584":"/newbs_building_firmware#create-a-new-keymap","2585":"/newbs_building_firmware#open-keymap-c-in-your-favorite-text-editor","2586":"/newbs_building_firmware#customize-the-layout-to-your-liking","2587":"/newbs_building_firmware#build-your-firmware","2588":"/newbs_building_firmware#flash-your-firmware","2589":"/newbs_building_firmware_configurator#qmk-configurator","2590":"/newbs_external_userspace#external-qmk-userspace","2591":"/newbs_external_userspace#setting-up-qmk-locally","2592":"/newbs_external_userspace#external-userspace-repository-setup-forked-on-github","2593":"/newbs_external_userspace#external-userspace-setup-locally-stored-only","2594":"/newbs_external_userspace#adding-a-keymap","2595":"/newbs_external_userspace#adding-the-keymap-to-external-userspace-build-targets","2596":"/newbs_external_userspace#compiling-external-userspace-build-targets","2597":"/newbs_external_userspace#using-github-actions","2598":"/newbs_building_firmware_workflow#building-qmk-with-github-userspace","2599":"/newbs_building_firmware_workflow#prerequisites","2600":"/newbs_building_firmware_workflow#environment-setup","2601":"/newbs_building_firmware_workflow#_1-install-git","2602":"/newbs_building_firmware_workflow#_2-github-authentication","2603":"/newbs_building_firmware_workflow#_3-create-a-repository","2604":"/newbs_building_firmware_workflow#initial-code-commit","2605":"/newbs_building_firmware_workflow#create-template-files","2606":"/newbs_building_firmware_workflow#add-a-json-keymap","2607":"/newbs_building_firmware_workflow#add-a-github-action-workflow","2608":"/newbs_building_firmware_workflow#commit-files-to-github","2609":"/newbs_building_firmware_workflow#review-workflow-output","2610":"/newbs_building_firmware_workflow#customising-your-keymap","2611":"/newbs_flashing#flashing-your-keyboard","2612":"/newbs_flashing#put-your-keyboard-into-dfu-bootloader-mode","2613":"/newbs_flashing#flashing-your-keyboard-with-qmk-toolbox","2614":"/newbs_flashing#load-the-file-into-qmk-toolbox","2615":"/newbs_flashing#flash-your-keyboard","2616":"/newbs_flashing#flash-your-keyboard-from-the-command-line","2617":"/newbs_flashing#test-it-out","2618":"/newbs_getting_started#setting-up-your-qmk-environment","2619":"/newbs_getting_started#_1-prerequisites","2620":"/newbs_getting_started#set-up-your-environment","2621":"/newbs_getting_started#prerequisites","2622":"/newbs_getting_started#prerequisites-1","2623":"/newbs_getting_started#installation","2624":"/newbs_getting_started#prerequisites-2","2625":"/newbs_getting_started#installation-1","2626":"/newbs_getting_started#installation-2","2627":"/newbs_getting_started#installation-3","2628":"/newbs_getting_started#set-up-qmk","2629":"/newbs_getting_started#_4-test-your-build-environment","2630":"/newbs_getting_started#creating-your-keymap","2631":"/newbs_git_best_practices#best-git-practices-for-working-with-qmk","2632":"/newbs_git_best_practices#or-how-i-learned-to-stop-worrying-and-love-git","2633":"/newbs_git_resolving_merge_conflicts#resolving-merge-conflicts","2634":"/newbs_git_resolving_merge_conflicts#rebasing-your-changes","2635":"/newbs_git_resynchronize_a_branch#resynchronizing-an-out-of-sync-git-branch","2636":"/newbs_git_resynchronize_a_branch#backing-up-the-changes-on-your-own-master-branch-optional","2637":"/newbs_git_resynchronize_a_branch#resynchronizing-your-branch","2638":"/newbs_git_using_your_master_branch#your-fork-s-master-update-often-commit-never","2639":"/newbs_git_using_your_master_branch#updating-your-master-branch","2640":"/newbs_git_using_your_master_branch#making-changes","2641":"/newbs_git_using_your_master_branch#publishing-your-changes","2642":"/newbs_learn_more_resources#learning-resources","2643":"/newbs_learn_more_resources#qmk-resources","2644":"/newbs_learn_more_resources#command-line-resources","2645":"/newbs_learn_more_resources#text-editor-resources","2646":"/newbs_learn_more_resources#git-resources","2647":"/newbs_testing_debugging#testing-and-debugging","2648":"/newbs_testing_debugging#testing","2649":"/newbs_testing_debugging#debugging","2650":"/one_shot_keys#one-shot-keys","2651":"/one_shot_keys#keycodes","2652":"/one_shot_keys#callbacks","2653":"/other_eclipse#setting-up-eclipse-for-qmk-development","2654":"/other_eclipse#prerequisites","2655":"/other_eclipse#build-environment","2656":"/other_eclipse#java","2657":"/other_eclipse#install-eclipse-and-its-plugins","2658":"/other_eclipse#download-and-install-eclipse-cdt","2659":"/other_eclipse#first-launch","2660":"/other_eclipse#install-the-necessary-plugins","2661":"/other_eclipse#configure-eclipse-for-qmk","2662":"/other_eclipse#importing-the-project","2663":"/other_eclipse#build-your-keyboard","2664":"/other_vscode#setting-up-visual-studio-code-for-qmk-development","2665":"/other_vscode#set-up-vs-code","2666":"/other_vscode#windows","2667":"/other_vscode#prerequisites","2668":"/other_vscode#installing-vs-code","2669":"/other_vscode#msys2-setup","2670":"/other_vscode#every-other-operating-system","2671":"/other_vscode#extensions","2672":"/other_vscode#configure-vs-code-for-qmk","2673":"/other_vscode#configuring-vs-code","2674":"/other_vscode#debugging-arm-mcus-with-visual-studio-code","2675":"/platformdev_blackpill_f4x1#weact-blackpill-stm32f4x1","2676":"/platformdev_blackpill_f4x1#pin-usage-limitations","2677":"/platformdev_blackpill_f4x1#unusable-pins","2678":"/platformdev_blackpill_f4x1#pins-to-be-avoided","2679":"/platformdev_blackpill_f4x1#shared-usage","2680":"/platformdev_blackpill_f4x1#limited-usage","2681":"/platformdev_blackpill_f4x1#additional-information","2682":"/platformdev_blackpill_f4x1#bootloader-issues","2683":"/platformdev_blackpill_f4x1#tiny-uf2-support","2684":"/platformdev_chibios_earlyinit#chibios-early-init","2685":"/platformdev_chibios_earlyinit#early-hardware-init-pre","2686":"/platformdev_chibios_earlyinit#early-hardware-init-post","2687":"/platformdev_chibios_earlyinit#board-init","2688":"/platformdev_proton_c#proton-c","2689":"/platformdev_proton_c#features","2690":"/platformdev_proton_c#warnings","2691":"/platformdev_proton_c#manual-conversion","2692":"/platformdev_rp2040#raspberry-pi-rp2040","2693":"/platformdev_rp2040#gpio","2694":"/platformdev_rp2040#pin-nomenclature","2695":"/platformdev_rp2040#alternate-functions","2696":"/platformdev_rp2040#selecting-hardware-peripherals-and-drivers","2697":"/platformdev_rp2040#i2c-driver","2698":"/platformdev_rp2040#spi-driver","2699":"/platformdev_rp2040#uart-driver","2700":"/platformdev_rp2040#double-tap","2701":"/platformdev_rp2040#pre-defined-rp2040-boards","2702":"/platformdev_rp2040#generic-pro-micro-rp2040","2703":"/platformdev_rp2040#generic-rp2040-board","2704":"/platformdev_rp2040#split-keyboard-support","2705":"/platformdev_rp2040#rp2040-second-stage-bootloader-selection","2706":"/platformdev_rp2040#rp2040_ce","2707":"/platformdev_selecting_arm_mcu#choose-arm-mcu","2708":"/platformdev_selecting_arm_mcu#selecting-already-supported-mcu","2709":"/platformdev_selecting_arm_mcu#stm32-families","2710":"/platformdev_selecting_arm_mcu#non-stm32-families","2711":"/platformdev_selecting_arm_mcu#add-new-stm32-mcu","2712":"/platformdev_selecting_arm_mcu#add-new-stm32-family","2713":"/platformdev_selecting_arm_mcu#add-new-mcu-family","2714":"/porting_your_keyboard_to_qmk#adding-your-keyboard-to-qmk","2715":"/porting_your_keyboard_to_qmk#readme-md","2716":"/porting_your_keyboard_to_qmk#keyboard-json","2717":"/porting_your_keyboard_to_qmk#hardware-configuration","2718":"/porting_your_keyboard_to_qmk#matrix-configuration","2719":"/porting_your_keyboard_to_qmk#diode-matrix","2720":"/porting_your_keyboard_to_qmk#direct-pin-matrix","2721":"/porting_your_keyboard_to_qmk#layout-macros","2722":"/porting_your_keyboard_to_qmk#additional-configuration","2723":"/porting_your_keyboard_to_qmk#configuration-options","2724":"/porting_your_keyboard_to_qmk#build-options","2725":"/pr_checklist#pr-checklists","2726":"/pr_checklist#requirements-for-all-prs","2727":"/pr_checklist#keymap-prs","2728":"/pr_checklist#keyboard-prs","2729":"/pr_checklist#core-pr","2730":"/pr_checklist#notes","2731":"/pr_checklist#review-process","2732":"/pr_checklist#example-gplv2-header","2733":"/proprietary_libs#proprietary-vendor-libraries","2734":"/proprietary_libs#architecture-constraints","2735":"/proprietary_libs#common-vendor-library-restrictions","2736":"/proprietary_libs#bluetooth-stack-licensing-examples","2737":"/proprietary_libs#why-the-system-library-exception-doesn-t-apply","2738":"/proprietary_libs#system-library-requirements","2739":"/proprietary_libs#why-vendor-libraries-fail-these-requirements","2740":"/proprietary_libs#attempted-workarounds","2741":"/proprietary_libs#architectural-separation-attempts","2742":"/proprietary_libs#loader-based-separation","2743":"/proprietary_libs#real-world-examples","2744":"/proprietary_libs#bluetooth-wireless-stacks","2745":"/proprietary_libs#hal-and-driver-libraries","2746":"/proprietary_libs#mixed-proprietary-open","2747":"/proprietary_libs#legal-and-practical-consequences","2748":"/proprietary_libs#evaluation-criteria-for-libraries","2749":"/proprietary_libs#policy-implementation","2750":"/proprietary_libs#summary","2751":"/quantum_keycodes#quantum-keycodes","2752":"/quantum_keycodes#qmk-keycodes","2753":"/quantum_painter#quantum-painter","2754":"/quantum_painter#quantum-painter-config","2755":"/quantum_painter#quantum-painter-cli","2756":"/quantum_painter#quantum-painter-drivers","2757":"/quantum_painter#quantum-painter-api","2758":"/quantum_painter_lvgl#lvgl","2759":"/quantum_painter_lvgl#lvgl-enabling","2760":"/quantum_painter_lvgl#lvgl-api","2761":"/quantum_painter_lvgl#lvgl-api-init","2762":"/quantum_painter_lvgl#lvgl-api-detach","2763":"/quantum_painter_lvgl#lvgl-configuring","2764":"/quantum_painter_lvgl#changing-the-lvgl-task-frequency","2765":"/quantum_painter_qff#qmk-font-format","2766":"/quantum_painter_qff#qff-block-header","2767":"/quantum_painter_qff#qff-font-descriptor","2768":"/quantum_painter_qff#qff-ascii-table","2769":"/quantum_painter_qff#qff-unicode-table","2770":"/quantum_painter_qff#qff-palette-descriptor","2771":"/quantum_painter_qff#qff-data-descriptor","2772":"/quantum_painter_qgf#qmk-graphics-format","2773":"/quantum_painter_qgf#qgf-block-header","2774":"/quantum_painter_qgf#qgf-graphics-descriptor","2775":"/quantum_painter_qgf#qgf-frame-offset-descriptor","2776":"/quantum_painter_qgf#qgf-frame-descriptor","2777":"/quantum_painter_qgf#qgf-frame-palette-descriptor","2778":"/quantum_painter_qgf#qgf-frame-delta-descriptor","2779":"/quantum_painter_qgf#qgf-frame-data-descriptor","2780":"/ref_functions#list-of-useful-core-functions-to-make-your-keyboard-better","2781":"/ref_functions#olkb-tri-layers","2782":"/ref_functions#update-tri-layer-x-y-z","2783":"/ref_functions#example","2784":"/ref_functions#update-tri-layer-state-state-x-y-z","2785":"/ref_functions#example-1","2786":"/ref_functions#setting-the-persistent-default-layer","2787":"/ref_functions#resetting-the-keyboard","2788":"/ref_functions#reset-to-bootloader","2789":"/ref_functions#wiping-the-eeprom-persistent-storage","2790":"/ref_functions#tap-random-key","2791":"/ref_functions#software-timers","2792":"/quantum_painter_rle#qmk-qp-rle-schema","2793":"/reference_configurator_support#supporting-your-keyboard-in-qmk-configurator","2794":"/reference_configurator_support#how-the-configurator-understands-keyboards","2795":"/reference_configurator_support#building-the-json-file","2796":"/reference_configurator_support#how-the-configurator-programs-keys","2797":"/reference_configurator_support#issues-and-hazards","2798":"/reference_configurator_support#workarounds","2799":"/reference_configurator_support#non-rectangular-keys","2800":"/reference_configurator_support#vertically-offset-keys","2801":"/reference_glossary#glossary-of-qmk-terms","2802":"/reference_glossary#arm","2803":"/reference_glossary#avr","2804":"/reference_glossary#azerty","2805":"/reference_glossary#backlight","2806":"/reference_glossary#bluetooth","2807":"/reference_glossary#bootloader","2808":"/reference_glossary#bootmagic","2809":"/reference_glossary#c","2810":"/reference_glossary#colemak","2811":"/reference_glossary#compile","2812":"/reference_glossary#dvorak","2813":"/reference_glossary#dynamic-macro","2814":"/reference_glossary#eclipse","2815":"/reference_glossary#firmware","2816":"/reference_glossary#git","2817":"/reference_glossary#github","2818":"/reference_glossary#isp","2819":"/reference_glossary#hid-listen","2820":"/reference_glossary#keycode","2821":"/reference_glossary#key-down","2822":"/reference_glossary#key-up","2823":"/reference_glossary#keymap","2824":"/reference_glossary#layer","2825":"/reference_glossary#leader-key","2826":"/reference_glossary#led","2827":"/reference_glossary#make","2828":"/reference_glossary#matrix","2829":"/reference_glossary#macro","2830":"/reference_glossary#mcu","2831":"/reference_glossary#modifier","2832":"/reference_glossary#mousekeys","2833":"/reference_glossary#n-key-rollover-nkro","2834":"/reference_glossary#oneshot-modifier","2835":"/reference_glossary#promicro","2836":"/reference_glossary#pull-request","2837":"/reference_glossary#qwerty","2838":"/reference_glossary#qwertz","2839":"/reference_glossary#rollover","2840":"/reference_glossary#scancode","2841":"/reference_glossary#space-cadet-shift","2842":"/reference_glossary#tap","2843":"/reference_glossary#tap-dance","2844":"/reference_glossary#teensy","2845":"/reference_glossary#underlight","2846":"/reference_glossary#unicode","2847":"/reference_glossary#unit-testing","2848":"/reference_glossary#usb","2849":"/reference_glossary#usb-host-or-simply-host","2850":"/reference_glossary#couldn-t-find-the-term-you-re-looking-for","2851":"/reference_info_json#info-json-reference","2852":"/reference_info_json#general-metadata","2853":"/reference_info_json#hardware-configuration","2854":"/reference_info_json#firmware-configuration","2855":"/reference_info_json#apa102","2856":"/reference_info_json#audio","2857":"/reference_info_json#backlight","2858":"/reference_info_json#battery","2859":"/reference_info_json#bluetooth","2860":"/reference_info_json#bootmagic","2861":"/reference_info_json#caps-word","2862":"/reference_info_json#combo","2863":"/reference_info_json#dip-switch","2864":"/reference_info_json#eeprom","2865":"/reference_info_json#encoder","2866":"/reference_info_json#host","2867":"/reference_info_json#indicators","2868":"/reference_info_json#keycodes","2869":"/reference_info_json#layouts","2870":"/reference_info_json#leader-key","2871":"/reference_info_json#led-matrix","2872":"/reference_info_json#matrix","2873":"/reference_info_json#mouse-keys","2874":"/reference_info_json#one-shot","2875":"/reference_info_json#ps2","2876":"/reference_info_json#qmk-lufa-bootloader","2877":"/reference_info_json#rgblight","2878":"/reference_info_json#rgb-matrix","2879":"/reference_info_json#secure","2880":"/reference_info_json#split-keyboard","2881":"/reference_info_json#stenography","2882":"/reference_info_json#usb","2883":"/reference_info_json#ws2812","2884":"/reference_keymap_extras#language-specific-keycodes","2885":"/reference_keymap_extras#selecting-your-host-keyboard-layout","2886":"/reference_keymap_extras#sendstring-support","2887":"/reference_keymap_extras#header-files","2888":"/squeezing_avr#squeezing-the-most-out-of-avr","2889":"/squeezing_avr#rules-mk-settings","2890":"/squeezing_avr#config-h-settings","2891":"/squeezing_avr#audio-settings","2892":"/squeezing_avr#layers","2893":"/squeezing_avr#oled-tweaks","2894":"/squeezing_avr#rgb-settings","2895":"/squeezing_avr#final-thoughts","2896":"/support#getting-help","2897":"/support#realtime-chat","2898":"/support#olkb-subreddit","2899":"/support#github-issues","2900":"/support_deprecation_policy#feature-support-policies","2901":"/support_deprecation_policy#system-constraints","2902":"/support_deprecation_policy#deprecation-removal-policy","2903":"/support_deprecation_policy#how-much-advance-notice-will-be-given","2904":"/support_deprecation_policy#how-will-deprecation-be-communicated","2905":"/syllabus#qmk-syllabus","2906":"/syllabus#beginning-topics","2907":"/syllabus#intermediate-topics","2908":"/syllabus#advanced-topics","2909":"/tap_hold#tap-hold-configuration-options","2910":"/tap_hold#tapping-term","2911":"/tap_hold#example","2912":"/tap_hold#dynamic-tapping-term","2913":"/tap_hold#configuring-home-row-mods","2914":"/tap_hold#tap-or-hold-decision-modes","2915":"/tap_hold#comparison","2916":"/tap_hold#distinct-taps","2917":"/tap_hold#nested-tap","2918":"/tap_hold#rolling-keys","2919":"/tap_hold#default-mode","2920":"/tap_hold#permissive-hold","2921":"/tap_hold#hold-on-other-key-press","2922":"/tap_hold#quick-tap-term","2923":"/tap_hold#flow-tap","2924":"/tap_hold#is-flow-tap-key","2925":"/tap_hold#get-flow-tap-term","2926":"/tap_hold#chordal-hold","2927":"/tap_hold#chordal-hold-handedness","2928":"/tap_hold#per-chord-customization","2929":"/tap_hold#retro-tapping","2930":"/tap_hold#retro-shift","2931":"/tap_hold#speculative-hold","2932":"/tap_hold#why-do-we-include-the-key-record-for-the-per-key-functions","2933":"/tap_hold#why-are-there-no-kb-or-user-functions","2934":"/understanding_qmk#understanding-qmk-s-code","2935":"/understanding_qmk#startup","2936":"/understanding_qmk#the-main-loop","2937":"/understanding_qmk#matrix-scanning","2938":"/understanding_qmk#matrix-to-physical-layout-map","2939":"/understanding_qmk#keycode-assignment","2940":"/understanding_qmk#state-change-detection","2941":"/understanding_qmk#process-record","2942":"/unit_testing#unit-testing","2943":"/unit_testing#google-test-and-google-mock","2944":"/unit_testing#use-of-c","2945":"/unit_testing#adding-tests-for-new-or-existing-features","2946":"/unit_testing#running-the-tests","2947":"/unit_testing#debugging-the-tests","2948":"/unit_testing#full-integration-tests","2949":"/unit_testing#keycode-string","2950":"/unit_testing#tracing-variables"},"fieldIds":{"title":0,"titles":1,"text":2},"fieldLength":{"0":[6,1,56],"1":[6,6,41],"2":[4,6,36],"3":[11,6,49],"4":[6,6,33],"5":[9,6,41],"6":[9,6,47],"7":[10,6,44],"8":[8,6,34],"9":[7,1,51],"10":[2,7,1],"11":[7,9,50],"12":[6,9,46],"13":[6,9,47],"14":[6,9,43],"15":[13,9,69],"16":[6,9,12],"17":[13,9,20],"18":[6,9,77],"19":[2,7,1],"20":[6,9,44],"21":[6,15,119],"22":[6,9,45],"23":[8,9,42],"24":[6,17,98],"25":[12,9,22],"26":[4,21,57],"27":[2,7,60],"28":[3,7,58],"29":[7,1,47],"30":[4,7,1],"31":[2,11,1],"32":[6,13,1],"33":[7,13,48],"34":[3,11,1],"35":[5,14,91],"36":[4,11,35],"37":[2,7,1],"38":[1,9,22],"39":[3,9,349],"40":[4,9,260],"41":[4,7,31],"42":[7,1,47],"43":[5,7,90],"44":[9,7,46],"45":[3,7,19],"46":[2,7,29],"47":[9,7,69],"48":[12,7,49],"49":[7,7,44],"50":[7,7,25],"51":[4,7,30],"52":[7,1,47],"53":[4,7,1],"54":[2,11,1],"55":[6,13,47],"56":[8,13,21],"57":[8,13,39],"58":[6,13,25],"59":[3,11,1],"60":[4,14,15],"61":[2,7,1],"62":[1,9,26],"63":[3,9,83],"64":[4,9,45],"65":[4,7,121],"66":[7,1,1],"67":[4,7,48],"68":[2,7,1],"69":[5,8,51],"70":[4,8,171],"71":[3,7,1],"72":[4,10,35],"73":[1,10,113],"74":[3,10,149],"75":[4,10,117],"76":[4,10,90],"77":[5,10,68],"78":[7,1,1],"79":[2,7,1],"80":[7,8,13],"81":[5,8,9],"82":[5,8,31],"83":[4,8,33],"84":[4,8,14],"85":[4,7,1],"86":[3,10,86],"87":[5,10,50],"88":[3,15,39],"89":[5,10,24],"90":[6,10,75],"91":[2,7,1],"92":[1,8,112],"93":[3,8,234],"94":[4,8,145],"95":[4,8,35],"96":[7,1,1],"97":[2,7,1],"98":[4,9,54],"99":[3,9,74],"100":[3,9,29],"101":[4,7,1],"102":[3,10,85],"103":[4,10,63],"104":[4,14,41],"105":[7,10,65],"106":[3,7,1],"107":[3,10,84],"108":[5,10,19],"109":[4,10,21],"110":[1,14,42],"111":[2,14,107],"112":[3,14,117],"113":[4,10,105],"114":[2,7,1145],"115":[7,1,1],"116":[3,7,42],"117":[2,7,1],"118":[5,9,106],"119":[4,9,104],"120":[5,9,78],"121":[4,7,1],"122":[3,10,44],"123":[6,10,62],"124":[8,10,95],"125":[4,10,86],"126":[4,10,69],"127":[6,14,40],"128":[4,10,28],"129":[3,7,1],"130":[3,10,50],"131":[2,10,78],"132":[2,10,87],"133":[4,10,179],"134":[2,7,847],"135":[7,1,1],"136":[2,7,1],"137":[7,9,22],"138":[6,9,28],"139":[4,7,1],"140":[8,10,23],"141":[10,10,19],"142":[5,10,22],"143":[3,10,291],"144":[3,7,1],"145":[3,10,18],"146":[2,10,12],"147":[1,12,5],"148":[1,12,3],"149":[2,7,866],"150":[7,1,1],"151":[2,7,1],"152":[3,9,80],"153":[3,9,111],"154":[3,9,54],"155":[4,7,1],"156":[6,10,65],"157":[4,10,50],"158":[3,10,73],"159":[3,10,51],"160":[2,7,516],"161":[7,1,1],"162":[2,7,1],"163":[2,9,38],"164":[4,7,1],"165":[3,10,38],"166":[2,10,137],"167":[3,10,34],"168":[6,10,66],"169":[5,10,93],"170":[3,10,31],"171":[3,7,21],"172":[2,10,171],"173":[2,10,67],"174":[5,10,79],"175":[2,7,1144],"176":[7,1,1],"177":[2,7,1],"178":[6,9,73],"179":[9,9,57],"180":[4,7,1],"181":[8,10,71],"182":[6,10,38],"183":[3,10,29],"184":[6,10,75],"185":[2,16,27],"186":[3,7,1],"187":[3,10,67],"188":[7,10,87],"189":[7,10,75],"190":[4,10,100],"191":[2,7,977],"192":[7,1,1],"193":[4,7,1],"194":[7,10,182],"195":[9,10,106],"196":[7,10,89],"197":[3,10,37],"198":[3,7,105],"199":[2,7,907],"200":[7,1,1],"201":[2,7,110],"202":[4,8,35],"203":[3,8,54],"204":[4,7,1],"205":[3,10,46],"206":[7,10,49],"207":[4,10,15],"208":[6,10,29],"209":[4,10,105],"210":[2,7,740],"211":[7,1,1],"212":[2,7,147],"213":[4,8,71],"214":[7,8,74],"215":[3,8,37],"216":[4,7,1],"217":[7,10,60],"218":[3,10,49],"219":[3,7,1],"220":[4,10,60],"221":[4,10,31],"222":[2,7,1441],"223":[7,1,1],"224":[2,7,75],"225":[4,7,1],"226":[3,10,47],"227":[3,7,1],"228":[3,10,94],"229":[6,10,45],"230":[4,10,55],"231":[7,10,127],"232":[5,10,68],"233":[8,10,78],"234":[4,10,112],"235":[6,10,44],"236":[2,7,816],"237":[7,1,1],"238":[2,7,45],"239":[4,7,1],"240":[4,10,94],"241":[3,10,110],"242":[3,7,1],"243":[7,10,76],"244":[5,10,50],"245":[6,10,40],"246":[7,10,44],"247":[4,10,50],"248":[4,10,50],"249":[2,7,827],"250":[7,1,1],"251":[2,7,62],"252":[4,7,1],"253":[3,10,75],"254":[5,10,45],"255":[5,10,59],"256":[5,10,31],"257":[2,15,21],"258":[3,15,22],"259":[2,15,44],"260":[2,15,8],"261":[3,7,1],"262":[5,10,85],"263":[9,10,104],"264":[2,7,15],"265":[7,9,81],"266":[2,7,686],"267":[7,1,1],"268":[2,7,64],"269":[4,7,1],"270":[3,10,47],"271":[7,10,34],"272":[7,10,52],"273":[9,10,104],"274":[2,7,15],"275":[7,9,45],"276":[7,9,73],"277":[2,7,446],"278":[7,1,1],"279":[2,7,81],"280":[4,7,1],"281":[3,10,39],"282":[2,7,15],"283":[4,9,66],"284":[8,9,69],"285":[2,7,382],"286":[7,1,1],"287":[2,7,1],"288":[3,9,98],"289":[3,9,61],"290":[4,7,1],"291":[3,10,20],"292":[2,7,15],"293":[4,9,53],"294":[2,7,365],"295":[7,1,1],"296":[2,7,1],"297":[3,9,65],"298":[4,9,32],"299":[4,7,1],"300":[3,10,23],"301":[2,7,15],"302":[7,9,31],"303":[8,9,66],"304":[7,9,29],"305":[4,9,53],"306":[5,9,38],"307":[6,9,146],"308":[2,7,481],"309":[7,1,1],"310":[4,7,1],"311":[3,10,47],"312":[5,10,126],"313":[2,7,15],"314":[4,9,52],"315":[5,9,40],"316":[8,9,23],"317":[2,7,320],"318":[7,1,1],"319":[2,7,1],"320":[11,9,84],"321":[4,7,1],"322":[3,10,21],"323":[10,10,53],"324":[2,10,38],"325":[2,10,39],"326":[2,7,15],"327":[9,9,25],"328":[2,7,414],"329":[7,1,1],"330":[2,7,1],"331":[6,9,58],"332":[5,9,40],"333":[2,7,207],"334":[7,1,1],"335":[2,7,1],"336":[2,7,15],"337":[5,9,29],"338":[8,9,58],"339":[2,7,272],"340":[2,1,37],"341":[2,2,47],"342":[2,4,1],"343":[1,4,1],"344":[1,4,93],"345":[1,4,1],"346":[2,5,15],"347":[4,5,14],"348":[2,4,18],"349":[1,2,1],"350":[2,3,9],"351":[1,3,6],"352":[2,3,28],"353":[2,3,60],"354":[2,3,89],"355":[2,3,9],"356":[1,3,12],"357":[3,4,3],"358":[3,7,4],"359":[3,7,4],"360":[3,4,3],"361":[3,4,8],"362":[2,2,18],"363":[1,2,8],"364":[3,1,12],"365":[4,1,36],"366":[1,1,53],"367":[1,1,50],"368":[2,1,18],"369":[7,2,34],"370":[12,2,24],"371":[13,2,11],"372":[13,2,12],"373":[2,1,45],"374":[2,2,20],"375":[2,2,21],"376":[2,2,25],"377":[2,1,23],"378":[1,2,35],"379":[4,3,143],"380":[4,2,48],"381":[3,2,98],"382":[3,2,46],"383":[1,2,130],"384":[4,1,56],"385":[3,4,25],"386":[3,7,55],"387":[3,7,23],"388":[3,7,17],"389":[3,7,37],"390":[1,7,22],"391":[1,7,12],"392":[4,7,16],"393":[2,4,168],"394":[1,4,20],"395":[1,4,1],"396":[3,4,86],"397":[3,4,85],"398":[4,4,51],"399":[2,1,82],"400":[9,2,12],"401":[7,2,11],"402":[2,8,53],"403":[6,2,187],"404":[1,2,14],"405":[4,3,39],"406":[4,3,46],"407":[4,3,54],"408":[4,3,35],"409":[3,3,67],"410":[3,2,1],"411":[4,5,139],"412":[8,5,95],"413":[3,1,55],"414":[7,1,159],"415":[4,7,22],"416":[5,11,42],"417":[3,11,50],"418":[3,11,31],"419":[3,1,24],"420":[2,3,67],"421":[3,3,35],"422":[2,3,63],"423":[11,3,33],"424":[2,1,1],"425":[1,2,34],"426":[1,3,45],"427":[3,1,1],"428":[2,1,1],"429":[2,2,176],"430":[2,2,113],"431":[2,2,23],"432":[2,2,39],"433":[2,2,144],"434":[2,2,67],"435":[2,2,38],"436":[3,2,35],"437":[2,2,63],"438":[2,2,15],"439":[2,2,51],"440":[2,2,42],"441":[3,2,14],"442":[3,2,31],"443":[2,2,31],"444":[3,2,52],"445":[3,2,32],"446":[2,2,29],"447":[2,2,58],"448":[3,2,51],"449":[3,2,51],"450":[3,2,61],"451":[3,1,1],"452":[3,3,63],"453":[3,3,64],"454":[3,3,44],"455":[3,3,83],"456":[3,3,30],"457":[2,1,1],"458":[3,2,37],"459":[3,2,54],"460":[2,2,62],"461":[3,2,59],"462":[5,2,45],"463":[2,2,60],"464":[3,2,11],"465":[2,2,33],"466":[4,2,26],"467":[5,2,27],"468":[5,2,22],"469":[3,2,75],"470":[4,2,39],"471":[3,1,8],"472":[1,1,33],"473":[2,1,58],"474":[3,1,56],"475":[5,1,38],"476":[3,5,43],"477":[3,5,25],"478":[3,7,3],"479":[3,7,4],"480":[3,7,5],"481":[3,7,7],"482":[3,5,31],"483":[2,5,46],"484":[3,1,20],"485":[3,1,23],"486":[3,1,14],"487":[1,1,45],"488":[3,1,45],"489":[1,1,142],"490":[2,1,34],"491":[2,2,81],"492":[4,4,88],"493":[4,4,37],"494":[2,4,115],"495":[3,1,71],"496":[3,3,51],"497":[3,3,20],"498":[3,3,19],"499":[4,3,33],"500":[4,3,58],"501":[7,1,21],"502":[3,7,3],"503":[1,7,4],"504":[2,7,26],"505":[2,7,72],"506":[2,7,28],"507":[4,1,34],"508":[1,4,10],"509":[4,5,43],"510":[3,5,29],"511":[3,5,40],"512":[4,1,221],"513":[5,1,104],"514":[4,1,104],"515":[1,1,16],"516":[1,1,84],"517":[2,1,22],"518":[1,1,21],"519":[1,1,55],"520":[3,1,33],"521":[1,1,79],"522":[3,1,19],"523":[3,1,24],"524":[4,1,61],"525":[1,1,61],"526":[1,1,43],"527":[3,1,47],"528":[1,1,32],"529":[2,1,72],"530":[4,1,32],"531":[1,1,24],"532":[2,1,46],"533":[3,1,63],"534":[1,1,21],"535":[3,1,24],"536":[1,1,15],"537":[3,1,20],"538":[2,1,102],"539":[3,1,25],"540":[2,1,104],"541":[1,1,46],"542":[1,1,60],"543":[2,1,45],"544":[2,1,66],"545":[2,1,37],"546":[2,2,42],"547":[1,2,22],"548":[3,3,28],"549":[3,3,3],"550":[3,3,2],"551":[3,3,13],"552":[2,3,14],"553":[2,2,1],"554":[1,4,32],"555":[2,1,108],"556":[2,2,25],"557":[1,2,35],"558":[1,2,41],"559":[1,2,34],"560":[4,1,37],"561":[2,4,273],"562":[5,4,39],"563":[5,4,48],"564":[5,4,249],"565":[3,4,126],"566":[3,4,14],"567":[3,4,37],"568":[2,7,90],"569":[3,9,97],"570":[2,7,209],"571":[4,1,33],"572":[2,4,81],"573":[3,4,31],"574":[2,4,196],"575":[3,4,103],"576":[3,1,27],"577":[1,1,1],"578":[2,1,60],"579":[2,2,44],"580":[2,2,55],"581":[2,2,72],"582":[3,4,27],"583":[3,4,16],"584":[3,4,20],"585":[2,2,31],"586":[2,2,44],"587":[6,1,14],"588":[2,6,127],"589":[1,6,204],"590":[1,6,1],"591":[7,7,45],"592":[8,7,56],"593":[5,7,88],"594":[2,6,27],"595":[4,1,13],"596":[5,4,87],"597":[6,4,44],"598":[5,4,29],"599":[5,4,80],"600":[8,4,65],"601":[6,4,18],"602":[5,4,6],"603":[3,1,62],"604":[14,3,83],"605":[2,1,48],"606":[7,1,13],"607":[7,1,166],"608":[2,1,31],"609":[2,1,171],"610":[1,2,106],"611":[3,3,39],"612":[1,2,109],"613":[3,2,215],"614":[1,2,43],"615":[10,1,47],"616":[2,1,1],"617":[6,2,36],"618":[11,2,33],"619":[6,2,7],"620":[4,2,19],"621":[3,2,16],"622":[2,1,44],"623":[1,2,39],"624":[2,2,55],"625":[2,2,85],"626":[7,1,66],"627":[7,7,80],"628":[2,1,27],"629":[4,2,65],"630":[6,2,71],"631":[5,8,70],"632":[4,8,54],"633":[3,1,87],"634":[4,3,48],"635":[6,5,31],"636":[5,5,10],"637":[3,3,41],"638":[4,4,9],"639":[6,4,89],"640":[4,3,29],"641":[6,5,46],"642":[5,5,10],"643":[3,1,57],"644":[4,3,40],"645":[4,3,68],"646":[2,1,82],"647":[6,2,138],"648":[4,1,51],"649":[9,4,19],"650":[5,4,13],"651":[4,1,111],"652":[4,4,36],"653":[4,4,38],"654":[5,4,11],"655":[2,1,33],"656":[3,2,126],"657":[3,2,104],"658":[4,2,39],"659":[4,2,39],"660":[3,2,44],"661":[2,1,43],"662":[3,2,4],"663":[4,2,4],"664":[3,1,24],"665":[1,3,147],"666":[1,3,72],"667":[6,3,16],"668":[5,9,95],"669":[3,9,72],"670":[2,12,49],"671":[2,12,52],"672":[5,9,83],"673":[5,9,74],"674":[3,1,32],"675":[2,1,72],"676":[1,1,39],"677":[1,1,35],"678":[3,1,14],"679":[1,3,8],"680":[2,3,9],"681":[2,1,88],"682":[2,1,17],"683":[4,2,91],"684":[4,2,129],"685":[5,1,80],"686":[1,5,175],"687":[6,5,114],"688":[1,5,127],"689":[4,5,164],"690":[2,1,82],"691":[1,2,27],"692":[1,2,1],"693":[1,3,81],"694":[1,3,1],"695":[1,4,203],"696":[1,4,55],"697":[1,2,1],"698":[1,3,57],"699":[1,3,74],"700":[1,2,1],"701":[1,2,130],"702":[2,1,23],"703":[1,2,53],"704":[2,2,36],"705":[1,2,1],"706":[4,3,11],"707":[12,3,22],"708":[1,15,17],"709":[11,3,7],"710":[1,14,10],"711":[4,3,8],"712":[7,3,5],"713":[1,10,11],"714":[2,1,61],"715":[1,2,53],"716":[1,2,104],"717":[2,3,93],"718":[2,3,59],"719":[2,3,148],"720":[4,5,124],"721":[2,3,145],"722":[2,3,58],"723":[2,3,59],"724":[2,1,27],"725":[1,2,47],"726":[2,2,50],"727":[3,4,29],"728":[3,2,18],"729":[2,2,67],"730":[1,2,1],"731":[4,3,11],"732":[1,7,26],"733":[7,3,11],"734":[1,10,15],"735":[12,3,23],"736":[1,15,20],"737":[11,3,7],"738":[1,14,10],"739":[11,3,8],"740":[1,14,15],"741":[2,1,10],"742":[1,2,29],"743":[2,2,26],"744":[2,3,56],"745":[2,3,29],"746":[3,1,101],"747":[3,3,1],"748":[4,4,61],"749":[3,3,179],"750":[3,3,128],"751":[3,3,37],"752":[4,3,37],"753":[3,1,100],"754":[6,3,175],"755":[6,3,119],"756":[5,3,83],"757":[7,3,72],"758":[3,1,36],"759":[4,3,93],"760":[2,1,22],"761":[1,2,57],"762":[2,2,44],"763":[2,2,69],"764":[3,1,19],"765":[1,3,51],"766":[2,3,97],"767":[2,3,64],"768":[3,3,151],"769":[1,6,27],"770":[1,6,28],"771":[1,3,1],"772":[4,4,70],"773":[12,4,9],"774":[1,16,36],"775":[2,16,16],"776":[13,4,27],"777":[1,17,36],"778":[2,17,16],"779":[11,4,9],"780":[1,15,36],"781":[2,15,16],"782":[16,4,11],"783":[1,20,41],"784":[2,20,16],"785":[14,4,14],"786":[1,18,39],"787":[2,18,16],"788":[14,4,15],"789":[1,18,39],"790":[2,18,16],"791":[13,4,14],"792":[1,17,39],"793":[2,17,16],"794":[13,4,15],"795":[1,17,39],"796":[2,17,16],"797":[9,4,62],"798":[1,13,23],"799":[2,13,16],"800":[2,1,18],"801":[1,2,54],"802":[2,2,37],"803":[2,4,14],"804":[3,2,18],"805":[2,2,71],"806":[1,2,1],"807":[4,3,11],"808":[1,7,25],"809":[4,3,11],"810":[9,3,7],"811":[1,12,11],"812":[12,3,26],"813":[1,15,20],"814":[11,3,10],"815":[1,14,10],"816":[9,3,26],"817":[1,12,18],"818":[8,3,11],"819":[1,11,8],"820":[14,3,26],"821":[1,17,21],"822":[12,3,26],"823":[1,15,18],"824":[6,3,8],"825":[7,3,9],"826":[2,1,25],"827":[1,2,54],"828":[2,2,44],"829":[2,4,48],"830":[3,2,18],"831":[2,2,74],"832":[1,2,1],"833":[4,3,11],"834":[1,7,31],"835":[7,3,11],"836":[1,10,6],"837":[10,3,7],"838":[1,13,13],"839":[12,3,26],"840":[1,15,20],"841":[11,3,10],"842":[1,14,10],"843":[9,3,26],"844":[1,12,18],"845":[8,3,11],"846":[1,11,8],"847":[14,3,26],"848":[1,17,21],"849":[12,3,26],"850":[1,15,18],"851":[9,3,8],"852":[1,12,6],"853":[10,3,9],"854":[1,13,6],"855":[2,1,28],"856":[1,2,54],"857":[2,2,69],"858":[2,4,48],"859":[2,4,42],"860":[2,4,68],"861":[3,4,36],"862":[3,2,18],"863":[2,2,88],"864":[1,2,1],"865":[4,3,11],"866":[1,7,31],"867":[7,3,11],"868":[1,10,6],"869":[10,3,7],"870":[1,13,13],"871":[12,3,26],"872":[1,15,20],"873":[11,3,10],"874":[1,14,10],"875":[9,3,26],"876":[1,12,18],"877":[8,3,11],"878":[1,11,8],"879":[12,3,25],"880":[1,15,20],"881":[10,3,25],"882":[1,13,16],"883":[9,3,8],"884":[1,12,6],"885":[9,3,9],"886":[1,12,6],"887":[2,1,28],"888":[1,2,54],"889":[2,2,49],"890":[2,4,48],"891":[2,4,30],"892":[3,2,18],"893":[2,2,92],"894":[1,2,1],"895":[4,3,11],"896":[1,7,31],"897":[7,3,11],"898":[1,10,6],"899":[10,3,7],"900":[1,13,13],"901":[8,3,9],"902":[1,11,10],"903":[12,3,26],"904":[1,15,20],"905":[11,3,10],"906":[1,14,10],"907":[9,3,26],"908":[1,12,18],"909":[8,3,11],"910":[1,11,8],"911":[14,3,26],"912":[1,17,21],"913":[12,3,26],"914":[1,15,18],"915":[9,3,8],"916":[1,12,6],"917":[10,3,9],"918":[1,13,6],"919":[2,1,27],"920":[1,2,54],"921":[2,2,76],"922":[2,4,62],"923":[3,4,46],"924":[2,4,42],"925":[2,4,70],"926":[3,4,36],"927":[3,2,18],"928":[2,2,88],"929":[1,2,1],"930":[4,3,11],"931":[1,7,31],"932":[7,3,11],"933":[1,10,6],"934":[10,3,7],"935":[1,13,13],"936":[8,3,9],"937":[1,11,10],"938":[12,3,26],"939":[1,15,20],"940":[11,3,10],"941":[1,14,10],"942":[9,3,26],"943":[1,12,18],"944":[8,3,11],"945":[1,11,8],"946":[14,3,26],"947":[1,17,21],"948":[12,3,26],"949":[1,15,18],"950":[9,3,8],"951":[1,12,6],"952":[10,3,9],"953":[1,13,6],"954":[2,1,27],"955":[1,2,54],"956":[2,2,71],"957":[2,4,62],"958":[2,4,42],"959":[2,4,70],"960":[3,4,36],"961":[3,2,18],"962":[2,2,88],"963":[1,2,1],"964":[4,3,11],"965":[1,7,31],"966":[7,3,11],"967":[1,10,6],"968":[10,3,7],"969":[1,13,13],"970":[8,3,9],"971":[1,11,10],"972":[12,3,26],"973":[1,15,20],"974":[11,3,10],"975":[1,14,10],"976":[9,3,26],"977":[1,12,18],"978":[8,3,11],"979":[1,11,8],"980":[14,3,26],"981":[1,17,21],"982":[12,3,26],"983":[1,15,18],"984":[9,3,8],"985":[1,12,6],"986":[10,3,9],"987":[1,13,6],"988":[2,1,27],"989":[1,2,54],"990":[2,2,71],"991":[2,4,48],"992":[2,4,42],"993":[2,4,70],"994":[3,4,36],"995":[3,2,18],"996":[2,2,88],"997":[1,2,1],"998":[4,3,11],"999":[1,7,31],"1000":[7,3,11],"1001":[1,10,6],"1002":[10,3,7],"1003":[1,13,13],"1004":[8,3,9],"1005":[1,11,10],"1006":[12,3,26],"1007":[1,15,20],"1008":[11,3,10],"1009":[1,14,10],"1010":[9,3,26],"1011":[1,12,18],"1012":[8,3,11],"1013":[1,11,8],"1014":[14,3,26],"1015":[1,17,21],"1016":[12,3,26],"1017":[1,15,18],"1018":[9,3,8],"1019":[1,12,6],"1020":[10,3,9],"1021":[1,13,6],"1022":[2,1,27],"1023":[1,2,54],"1024":[2,2,75],"1025":[2,4,48],"1026":[2,4,40],"1027":[2,4,70],"1028":[3,4,36],"1029":[3,2,18],"1030":[2,2,88],"1031":[1,2,1],"1032":[4,3,11],"1033":[1,7,31],"1034":[7,3,11],"1035":[1,10,6],"1036":[10,3,7],"1037":[1,13,13],"1038":[8,3,9],"1039":[1,11,10],"1040":[12,3,26],"1041":[1,15,20],"1042":[11,3,10],"1043":[1,14,10],"1044":[9,3,26],"1045":[1,12,18],"1046":[8,3,11],"1047":[1,11,8],"1048":[14,3,26],"1049":[1,17,21],"1050":[12,3,26],"1051":[1,15,18],"1052":[9,3,8],"1053":[1,12,6],"1054":[10,3,9],"1055":[1,13,6],"1056":[2,1,27],"1057":[1,2,54],"1058":[2,2,74],"1059":[2,4,48],"1060":[2,4,37],"1061":[2,4,70],"1062":[3,4,36],"1063":[3,2,18],"1064":[2,2,88],"1065":[1,2,1],"1066":[4,3,11],"1067":[1,7,31],"1068":[7,3,11],"1069":[1,10,6],"1070":[10,3,7],"1071":[1,13,13],"1072":[8,3,9],"1073":[1,11,10],"1074":[12,3,26],"1075":[1,15,20],"1076":[11,3,10],"1077":[1,14,10],"1078":[9,3,26],"1079":[1,12,18],"1080":[8,3,11],"1081":[1,11,8],"1082":[12,3,25],"1083":[1,15,20],"1084":[10,3,26],"1085":[1,13,16],"1086":[9,3,8],"1087":[1,12,6],"1088":[9,3,9],"1089":[1,12,6],"1090":[2,1,27],"1091":[1,2,54],"1092":[2,2,73],"1093":[2,4,62],"1094":[3,4,46],"1095":[2,4,72],"1096":[3,4,36],"1097":[3,2,18],"1098":[2,2,88],"1099":[1,2,1],"1100":[4,3,11],"1101":[1,7,31],"1102":[7,3,11],"1103":[1,10,6],"1104":[10,3,7],"1105":[1,13,13],"1106":[8,3,9],"1107":[1,11,10],"1108":[12,3,26],"1109":[1,15,20],"1110":[11,3,10],"1111":[1,14,10],"1112":[9,3,26],"1113":[1,12,18],"1114":[8,3,11],"1115":[1,11,8],"1116":[12,3,25],"1117":[1,15,20],"1118":[10,3,26],"1119":[1,13,16],"1120":[9,3,8],"1121":[1,12,6],"1122":[9,3,9],"1123":[1,12,6],"1124":[2,1,27],"1125":[1,2,54],"1126":[2,2,73],"1127":[2,4,62],"1128":[3,4,46],"1129":[2,4,72],"1130":[3,4,36],"1131":[3,2,18],"1132":[2,2,88],"1133":[1,2,1],"1134":[4,3,11],"1135":[1,7,31],"1136":[7,3,11],"1137":[1,10,6],"1138":[10,3,7],"1139":[1,13,13],"1140":[8,3,9],"1141":[1,11,10],"1142":[12,3,26],"1143":[1,15,20],"1144":[11,3,10],"1145":[1,14,10],"1146":[9,3,26],"1147":[1,12,18],"1148":[8,3,11],"1149":[1,11,8],"1150":[12,3,25],"1151":[1,15,20],"1152":[10,3,26],"1153":[1,13,16],"1154":[9,3,8],"1155":[1,12,6],"1156":[9,3,9],"1157":[1,12,6],"1158":[2,1,27],"1159":[1,2,54],"1160":[2,2,75],"1161":[2,4,62],"1162":[2,4,44],"1163":[2,4,72],"1164":[3,4,36],"1165":[3,2,18],"1166":[2,2,88],"1167":[1,2,1],"1168":[4,3,11],"1169":[1,7,31],"1170":[7,3,11],"1171":[1,10,12],"1172":[10,3,7],"1173":[1,13,13],"1174":[8,3,9],"1175":[1,11,10],"1176":[12,3,26],"1177":[1,15,20],"1178":[11,3,10],"1179":[1,14,10],"1180":[9,3,26],"1181":[1,12,18],"1182":[8,3,11],"1183":[1,11,8],"1184":[12,3,25],"1185":[1,15,20],"1186":[10,3,26],"1187":[1,13,16],"1188":[9,3,8],"1189":[1,12,6],"1190":[9,3,9],"1191":[1,12,6],"1192":[3,1,79],"1193":[1,3,56],"1194":[2,4,44],"1195":[1,4,61],"1196":[3,3,59],"1197":[2,6,90],"1198":[1,6,111],"1199":[3,3,62],"1200":[2,6,121],"1201":[1,6,124],"1202":[4,3,1],"1203":[3,7,99],"1204":[3,7,107],"1205":[3,7,95],"1206":[2,3,17],"1207":[1,5,75],"1208":[1,5,47],"1209":[1,3,48],"1210":[6,3,6],"1211":[3,9,35],"1212":[1,9,34],"1213":[6,9,82],"1214":[2,1,39],"1215":[1,2,53],"1216":[2,2,44],"1217":[2,4,48],"1218":[3,2,18],"1219":[2,2,86],"1220":[1,2,1],"1221":[4,3,11],"1222":[1,7,31],"1223":[7,3,11],"1224":[1,10,6],"1225":[10,3,7],"1226":[1,13,13],"1227":[8,3,9],"1228":[1,11,10],"1229":[12,3,26],"1230":[1,15,20],"1231":[11,3,10],"1232":[1,14,10],"1233":[9,3,26],"1234":[1,12,18],"1235":[8,3,11],"1236":[1,11,8],"1237":[14,3,26],"1238":[1,17,21],"1239":[12,3,26],"1240":[1,15,18],"1241":[9,3,8],"1242":[1,12,6],"1243":[10,3,9],"1244":[1,13,6],"1245":[3,1,19],"1246":[1,3,51],"1247":[2,3,69],"1248":[3,3,135],"1249":[1,3,1],"1250":[4,4,18],"1251":[12,4,5],"1252":[1,16,80],"1253":[2,16,20],"1254":[7,4,9],"1255":[1,11,8],"1256":[2,11,11],"1257":[6,4,9],"1258":[2,10,14],"1259":[10,4,9],"1260":[1,14,21],"1261":[2,14,16],"1262":[9,4,9],"1263":[1,13,22],"1264":[2,13,16],"1265":[4,4,21],"1266":[2,1,40],"1267":[1,2,46],"1268":[2,2,41],"1269":[3,2,94],"1270":[1,2,1],"1271":[7,3,18],"1272":[1,10,31],"1273":[7,3,5],"1274":[1,10,8],"1275":[6,3,5],"1276":[2,9,19],"1277":[10,3,4],"1278":[1,13,21],"1279":[9,3,4],"1280":[1,12,22],"1281":[5,3,19],"1282":[2,8,9],"1283":[2,1,68],"1284":[1,2,53],"1285":[2,2,72],"1286":[2,4,63],"1287":[2,4,78],"1288":[2,4,80],"1289":[2,2,34],"1290":[2,3,49],"1291":[2,3,43],"1292":[2,3,56],"1293":[2,3,22],"1294":[2,3,49],"1295":[3,2,34],"1296":[2,5,47],"1297":[4,7,97],"1298":[3,7,45],"1299":[2,5,84],"1300":[3,6,57],"1301":[2,6,27],"1302":[2,5,23],"1303":[2,5,109],"1304":[1,2,1],"1305":[4,3,11],"1306":[12,3,22],"1307":[1,15,17],"1308":[11,3,7],"1309":[1,14,10],"1310":[4,3,8],"1311":[8,1,74],"1312":[1,8,48],"1313":[2,1,89],"1314":[4,1,25],"1315":[5,4,77],"1316":[3,9,76],"1317":[10,9,35],"1318":[5,4,68],"1319":[4,4,88],"1320":[25,8,78],"1321":[2,1,13],"1322":[1,2,60],"1323":[2,2,9],"1324":[4,3,16],"1325":[4,3,21],"1326":[4,3,26],"1327":[5,2,52],"1328":[2,2,18],"1329":[7,4,96],"1330":[6,4,63],"1331":[11,4,46],"1332":[6,2,100],"1333":[6,2,50],"1334":[3,1,1],"1335":[4,3,25],"1336":[8,3,41],"1337":[8,3,25],"1338":[12,3,40],"1339":[7,3,22],"1340":[7,3,30],"1341":[10,3,16],"1342":[10,13,47],"1343":[9,3,132],"1344":[2,1,19],"1345":[6,2,24],"1346":[6,2,36],"1347":[10,2,40],"1348":[9,2,99],"1349":[9,2,58],"1350":[6,2,46],"1351":[5,2,67],"1352":[3,2,29],"1353":[3,2,57],"1354":[4,2,58],"1355":[10,2,5],"1356":[4,2,78],"1357":[6,2,46],"1358":[5,2,41],"1359":[8,2,43],"1360":[7,2,6],"1361":[4,2,52],"1362":[8,2,58],"1363":[2,1,1],"1364":[7,2,36],"1365":[2,2,173],"1366":[4,2,46],"1367":[9,2,33],"1368":[8,2,70],"1369":[11,2,19],"1370":[6,2,31],"1371":[3,2,47],"1372":[2,2,58],"1373":[3,2,17],"1374":[2,2,1],"1375":[6,4,10],"1376":[11,2,58],"1377":[2,1,105],"1378":[3,1,226],"1379":[1,3,20],"1380":[5,4,98],"1381":[5,4,176],"1382":[2,1,43],"1383":[1,2,2],"1384":[2,2,3],"1385":[3,2,4],"1386":[4,2,5],"1387":[2,2,3],"1388":[1,1,81],"1389":[2,1,50],"1390":[1,1,54],"1391":[3,1,100],"1392":[2,3,86],"1393":[2,3,56],"1394":[10,3,8],"1395":[1,3,72],"1396":[2,3,58],"1397":[8,3,27],"1398":[1,3,56],"1399":[3,1,53],"1400":[1,3,15],"1401":[3,3,17],"1402":[2,1,1],"1403":[2,3,31],"1404":[2,5,17],"1405":[3,3,89],"1406":[2,3,36],"1407":[2,3,89],"1408":[3,5,18],"1409":[4,1,148],"1410":[4,4,199],"1411":[3,4,9],"1412":[2,7,30],"1413":[2,7,136],"1414":[5,7,61],"1415":[4,1,69],"1416":[1,4,65],"1417":[2,4,271],"1418":[2,4,35],"1419":[1,4,80],"1420":[1,4,82],"1421":[1,1,49],"1422":[4,1,220],"1423":[1,4,150],"1424":[3,1,38],"1425":[1,3,109],"1426":[2,3,48],"1427":[2,3,130],"1428":[1,1,146],"1429":[3,1,20],"1430":[5,4,43],"1431":[6,4,130],"1432":[5,4,21],"1433":[7,1,105],"1434":[3,7,54],"1435":[3,7,20],"1436":[2,8,37],"1437":[6,7,1],"1438":[1,12,64],"1439":[1,12,47],"1440":[1,1,73],"1441":[5,1,58],"1442":[5,5,47],"1443":[2,5,24],"1444":[2,7,79],"1445":[5,1,1],"1446":[6,5,193],"1447":[2,11,91],"1448":[4,11,129],"1449":[2,11,32],"1450":[3,11,58],"1451":[3,5,73],"1452":[4,8,30],"1453":[6,8,26],"1454":[6,8,29],"1455":[6,8,77],"1456":[7,8,21],"1457":[10,8,38],"1458":[3,8,10],"1459":[3,8,8],"1460":[5,8,11],"1461":[3,5,1],"1462":[2,8,98],"1463":[5,1,98],"1464":[2,5,115],"1465":[3,7,77],"1466":[5,5,61],"1467":[4,5,114],"1468":[8,5,36],"1469":[1,5,14],"1470":[2,6,130],"1471":[2,6,124],"1472":[2,6,252],"1473":[1,1,50],"1474":[3,1,59],"1475":[1,4,25],"1476":[3,1,11],"1477":[3,4,76],"1478":[2,7,49],"1479":[4,8,33],"1480":[3,4,98],"1481":[3,4,63],"1482":[1,7,39],"1483":[3,4,75],"1484":[2,1,88],"1485":[1,1,180],"1486":[2,1,129],"1487":[1,1,58],"1488":[3,1,67],"1489":[1,1,51],"1490":[2,1,165],"1491":[2,3,86],"1492":[2,3,166],"1493":[2,1,175],"1494":[2,1,3],"1495":[2,1,52],"1496":[9,1,20],"1497":[4,9,41],"1498":[5,9,101],"1499":[7,9,92],"1500":[7,9,35],"1501":[1,9,54],"1502":[3,9,48],"1503":[7,9,173],"1504":[7,9,17],"1505":[7,9,15],"1506":[7,9,14],"1507":[7,9,10],"1508":[7,9,12],"1509":[6,9,6],"1510":[4,9,79],"1511":[6,9,3],"1512":[7,9,10],"1513":[7,9,9],"1514":[7,9,25],"1515":[7,9,16],"1516":[7,9,14],"1517":[3,9,139],"1518":[2,9,139],"1519":[6,9,47],"1520":[4,9,18],"1521":[1,10,48],"1522":[1,10,94],"1523":[3,11,75],"1524":[1,1,32],"1525":[5,1,92],"1526":[5,1,60],"1527":[3,1,160],"1528":[3,4,121],"1529":[2,1,74],"1530":[1,2,20],"1531":[3,1,1],"1532":[2,4,112],"1533":[3,5,159],"1534":[2,4,73],"1535":[3,5,111],"1536":[2,4,24],"1537":[5,1,50],"1538":[1,6,213],"1539":[1,6,84],"1540":[1,1,22],"1541":[1,1,76],"1542":[1,1,32],"1543":[1,1,34],"1544":[2,1,100],"1545":[4,3,62],"1546":[3,3,91],"1547":[2,1,24],"1548":[2,3,19],"1549":[2,3,31],"1550":[2,3,37],"1551":[2,3,69],"1552":[2,1,1],"1553":[2,3,51],"1554":[2,3,51],"1555":[3,1,1],"1556":[2,4,103],"1557":[2,4,56],"1558":[2,1,84],"1559":[1,1,1],"1560":[4,2,7],"1561":[4,2,5],"1562":[4,2,5],"1563":[4,2,5],"1564":[4,2,5],"1565":[4,2,5],"1566":[6,2,5],"1567":[1,8,11],"1568":[7,2,6],"1569":[2,9,10],"1570":[6,2,6],"1571":[2,8,7],"1572":[5,2,7],"1573":[5,2,5],"1574":[5,2,5],"1575":[6,2,7],"1576":[2,8,7],"1577":[1,1,11],"1578":[1,1,16],"1579":[2,1,22],"1580":[2,1,9],"1581":[1,1,1],"1582":[7,2,4],"1583":[2,9,9],"1584":[1,1,1],"1585":[9,2,8],"1586":[1,2,12],"1587":[9,2,8],"1588":[1,2,12],"1589":[1,1,110],"1590":[2,1,119],"1591":[2,1,81],"1592":[1,1,48],"1593":[2,1,174],"1594":[6,2,137],"1595":[2,6,80],"1596":[3,2,1],"1597":[3,3,85],"1598":[2,3,51],"1599":[1,3,20],"1600":[8,3,78],"1601":[4,3,45],"1602":[1,1,104],"1603":[3,1,56],"1604":[2,1,47],"1605":[1,1,148],"1606":[1,1,49],"1607":[2,1,12],"1608":[2,3,42],"1609":[4,3,108],"1610":[2,3,48],"1611":[4,3,24],"1612":[9,3,193],"1613":[8,3,69],"1614":[2,3,38],"1615":[5,5,47],"1616":[5,5,34],"1617":[3,3,92],"1618":[3,3,98],"1619":[3,3,61],"1620":[6,6,85],"1621":[2,1,40],"1622":[2,1,157],"1623":[1,1,60],"1624":[1,1,37],"1625":[1,1,149],"1626":[2,1,50],"1627":[7,2,103],"1628":[8,2,85],"1629":[5,2,22],"1630":[3,6,105],"1631":[2,6,19],"1632":[3,6,25],"1633":[5,6,79],"1634":[3,6,64],"1635":[4,6,31],"1636":[4,6,31],"1637":[5,6,15],"1638":[2,6,75],"1639":[1,1,42],"1640":[1,1,12],"1641":[1,1,53],"1642":[1,1,63],"1643":[1,1,1],"1644":[3,2,6],"1645":[1,5,36],"1646":[4,2,13],"1647":[6,2,10],"1648":[6,2,10],"1649":[6,2,8],"1650":[6,2,8],"1651":[6,2,8],"1652":[6,2,8],"1653":[8,2,13],"1654":[1,10,16],"1655":[2,1,63],"1656":[3,2,66],"1657":[1,2,76],"1658":[1,2,1],"1659":[11,3,28],"1660":[13,3,15],"1661":[7,1,156],"1662":[1,7,123],"1663":[4,8,67],"1664":[2,8,69],"1665":[1,1,104],"1666":[2,1,84],"1667":[2,1,128],"1668":[1,1,112],"1669":[1,1,19],"1670":[2,1,96],"1671":[2,1,35],"1672":[1,2,34],"1673":[4,2,36],"1674":[1,2,17],"1675":[1,3,37],"1676":[1,2,48],"1677":[2,1,1],"1678":[5,2,77],"1679":[3,2,17],"1680":[2,2,71],"1681":[1,3,197],"1682":[1,3,23],"1683":[3,4,22],"1684":[1,6,71],"1685":[1,6,107],"1686":[3,4,210],"1687":[3,3,44],"1688":[4,3,15],"1689":[3,2,34],"1690":[3,4,73],"1691":[3,4,21],"1692":[3,4,38],"1693":[3,4,23],"1694":[3,4,32],"1695":[3,4,25],"1696":[3,1,1],"1697":[2,3,52],"1698":[1,3,12],"1699":[2,3,58],"1700":[1,3,1],"1701":[2,4,25],"1702":[3,4,90],"1703":[1,3,1],"1704":[7,4,17],"1705":[1,11,10],"1706":[4,4,10],"1707":[4,4,13],"1708":[7,4,15],"1709":[1,11,10],"1710":[4,4,5],"1711":[9,4,9],"1712":[1,13,20],"1713":[6,4,31],"1714":[1,10,7],"1715":[7,4,9],"1716":[1,11,8],"1717":[8,4,22],"1718":[1,12,13],"1719":[9,4,5],"1720":[1,13,34],"1721":[11,4,20],"1722":[1,15,36],"1723":[5,4,12],"1724":[2,9,7],"1725":[9,4,7],"1726":[1,13,18],"1727":[7,4,7],"1728":[1,11,13],"1729":[2,11,20],"1730":[6,4,24],"1731":[1,10,7],"1732":[6,4,18],"1733":[1,10,9],"1734":[8,4,13],"1735":[1,12,11],"1736":[8,4,17],"1737":[1,12,11],"1738":[1,1,62],"1739":[1,1,48],"1740":[1,1,73],"1741":[2,2,86],"1742":[1,2,103],"1743":[2,3,62],"1744":[1,1,41],"1745":[1,1,1],"1746":[3,2,6],"1747":[1,5,48],"1748":[4,2,5],"1749":[1,6,24],"1750":[4,2,14],"1751":[7,2,10],"1752":[1,9,13],"1753":[7,2,10],"1754":[1,9,13],"1755":[7,2,10],"1756":[1,9,7],"1757":[2,9,14],"1758":[9,2,7],"1759":[1,11,11],"1760":[8,2,7],"1761":[1,10,10],"1762":[2,1,58],"1763":[1,2,27],"1764":[1,2,14],"1765":[1,2,66],"1766":[2,1,99],"1767":[13,2,30],"1768":[1,2,33],"1769":[3,2,34],"1770":[7,3,40],"1771":[8,3,14],"1772":[12,3,20],"1773":[13,3,37],"1774":[2,2,73],"1775":[3,2,1],"1776":[5,5,109],"1777":[5,5,80],"1778":[2,2,1],"1779":[4,4,107],"1780":[1,2,18],"1781":[5,2,192],"1782":[5,2,76],"1783":[5,2,36],"1784":[1,11,92],"1785":[1,11,87],"1786":[3,11,135],"1787":[3,2,95],"1788":[7,2,165],"1789":[2,1,64],"1790":[6,2,46],"1791":[2,2,77],"1792":[2,2,36],"1793":[1,2,25],"1794":[6,2,61],"1795":[7,2,106],"1796":[8,1,33],"1797":[1,8,18],"1798":[1,8,72],"1799":[2,8,1],"1800":[1,10,39],"1801":[3,10,94],"1802":[3,10,101],"1803":[3,10,62],"1804":[1,8,82],"1805":[1,8,11],"1806":[1,8,1],"1807":[5,9,9],"1808":[5,9,9],"1809":[8,9,13],"1810":[1,17,10],"1811":[2,17,9],"1812":[4,9,9],"1813":[4,9,5],"1814":[6,9,7],"1815":[8,9,18],"1816":[1,17,7],"1817":[2,17,11],"1818":[7,9,22],"1819":[6,9,6],"1820":[9,9,8],"1821":[1,18,8],"1822":[2,18,7],"1823":[10,9,8],"1824":[1,19,11],"1825":[2,19,7],"1826":[11,9,8],"1827":[1,20,13],"1828":[2,20,7],"1829":[12,9,8],"1830":[1,21,15],"1831":[2,21,7],"1832":[13,9,8],"1833":[1,22,17],"1834":[2,22,7],"1835":[2,1,80],"1836":[2,2,63],"1837":[3,2,63],"1838":[6,4,67],"1839":[6,4,54],"1840":[4,2,37],"1841":[4,2,32],"1842":[4,2,14],"1843":[2,5,53],"1844":[3,1,35],"1845":[2,3,66],"1846":[2,3,173],"1847":[1,3,44],"1848":[1,3,46],"1849":[3,3,132],"1850":[4,3,157],"1851":[1,3,75],"1852":[4,3,132],"1853":[2,3,25],"1854":[1,3,1],"1855":[1,4,85],"1856":[1,3,1],"1857":[5,4,7],"1858":[6,4,14],"1859":[5,4,5],"1860":[6,4,12],"1861":[5,4,5],"1862":[6,4,12],"1863":[7,4,9],"1864":[2,11,7],"1865":[10,4,32],"1866":[1,14,16],"1867":[10,4,31],"1868":[1,14,9],"1869":[7,4,6],"1870":[1,11,8],"1871":[8,4,13],"1872":[1,12,8],"1873":[5,4,7],"1874":[6,4,13],"1875":[6,4,7],"1876":[7,4,13],"1877":[8,4,6],"1878":[2,12,8],"1879":[5,4,6],"1880":[7,4,13],"1881":[6,4,6],"1882":[7,4,13],"1883":[8,4,7],"1884":[2,12,9],"1885":[6,4,5],"1886":[7,4,12],"1887":[6,4,5],"1888":[7,4,12],"1889":[8,4,5],"1890":[1,12,11],"1891":[9,4,12],"1892":[1,13,11],"1893":[8,4,6],"1894":[2,12,9],"1895":[7,4,6],"1896":[1,11,8],"1897":[8,4,13],"1898":[1,12,8],"1899":[6,4,7],"1900":[7,4,13],"1901":[7,4,7],"1902":[8,4,13],"1903":[8,4,7],"1904":[2,12,5],"1905":[7,4,11],"1906":[8,4,9],"1907":[2,12,11],"1908":[7,4,18],"1909":[2,11,3],"1910":[7,4,18],"1911":[2,11,9],"1912":[11,4,18],"1913":[1,4,16],"1914":[2,5,3],"1915":[11,4,18],"1916":[1,4,16],"1917":[2,5,9],"1918":[1,1,1],"1919":[1,1,58],"1920":[1,2,17],"1921":[2,2,15],"1922":[2,2,15],"1923":[5,3,80],"1924":[13,3,66],"1925":[1,2,282],"1926":[1,2,50],"1927":[1,2,1],"1928":[2,3,7],"1929":[3,3,10],"1930":[2,1,31],"1931":[6,2,18],"1932":[3,7,19],"1933":[3,7,65],"1934":[3,2,97],"1935":[2,4,146],"1936":[2,4,154],"1937":[2,4,131],"1938":[2,4,78],"1939":[2,4,173],"1940":[4,4,66],"1941":[8,2,22],"1942":[2,1,1],"1943":[2,2,45],"1944":[1,2,27],"1945":[2,2,97],"1946":[2,2,135],"1947":[3,2,127],"1948":[2,2,112],"1949":[2,2,158],"1950":[2,4,14],"1951":[2,4,40],"1952":[6,2,151],"1953":[6,7,203],"1954":[2,2,280],"1955":[5,2,29],"1956":[2,1,54],"1957":[1,2,80],"1958":[1,2,56],"1959":[3,2,52],"1960":[2,2,64],"1961":[1,2,81],"1962":[1,2,166],"1963":[1,2,8],"1964":[2,1,72],"1965":[2,2,38],"1966":[3,4,60],"1967":[3,4,80],"1968":[2,4,210],"1969":[3,4,36],"1970":[2,7,82],"1971":[2,7,88],"1972":[2,7,18],"1973":[2,4,45],"1974":[2,6,194],"1975":[3,6,36],"1976":[3,6,68],"1977":[3,6,73],"1978":[3,4,62],"1979":[3,4,57],"1980":[2,4,79],"1981":[2,4,68],"1982":[3,4,57],"1983":[5,4,210],"1984":[2,4,76],"1985":[2,2,168],"1986":[3,2,172],"1987":[3,2,93],"1988":[3,2,99],"1989":[5,2,84],"1990":[3,1,133],"1991":[1,3,1],"1992":[3,4,73],"1993":[4,4,71],"1994":[3,4,147],"1995":[2,3,22],"1996":[3,5,64],"1997":[3,5,55],"1998":[1,1,51],"1999":[3,1,131],"2000":[9,3,70],"2001":[4,3,70],"2002":[4,3,24],"2003":[4,7,73],"2004":[3,7,26],"2005":[11,9,20],"2006":[10,18,52],"2007":[2,3,19],"2008":[10,5,118],"2009":[7,5,69],"2010":[3,5,1],"2011":[7,6,93],"2012":[10,6,69],"2013":[8,5,89],"2014":[4,3,104],"2015":[7,3,64],"2016":[2,1,81],"2017":[1,2,13],"2018":[1,2,42],"2019":[1,2,1],"2020":[5,3,6],"2021":[8,3,7],"2022":[1,11,13],"2023":[8,3,7],"2024":[1,11,13],"2025":[8,3,10],"2026":[1,11,13],"2027":[8,3,10],"2028":[1,11,13],"2029":[9,3,7],"2030":[1,12,13],"2031":[2,12,7],"2032":[5,3,8],"2033":[8,3,6],"2034":[2,11,7],"2035":[8,3,6],"2036":[1,11,10],"2037":[4,1,67],"2038":[6,4,26],"2039":[2,4,32],"2040":[2,6,46],"2041":[5,6,61],"2042":[5,6,59],"2043":[2,6,104],"2044":[3,6,82],"2045":[2,4,1],"2046":[4,6,88],"2047":[2,6,38],"2048":[2,6,104],"2049":[3,6,20],"2050":[5,6,23],"2051":[3,6,47],"2052":[2,6,20],"2053":[2,6,37],"2054":[2,1,67],"2055":[1,2,12],"2056":[2,2,39],"2057":[5,2,186],"2058":[5,2,48],"2059":[2,2,134],"2060":[1,2,1],"2061":[9,3,14],"2062":[1,12,17],"2063":[9,3,5],"2064":[1,12,19],"2065":[2,1,73],"2066":[6,2,33],"2067":[1,2,18],"2068":[2,2,176],"2069":[3,2,108],"2070":[2,5,86],"2071":[2,5,87],"2072":[5,2,56],"2073":[3,7,62],"2074":[3,7,74],"2075":[2,7,70],"2076":[6,2,102],"2077":[7,2,90],"2078":[1,2,34],"2079":[4,2,116],"2080":[3,1,36],"2081":[2,3,71],"2082":[2,3,174],"2083":[1,3,47],"2084":[1,3,54],"2085":[3,3,241],"2086":[5,4,119],"2087":[5,4,51],"2088":[4,3,160],"2089":[1,3,48],"2090":[1,3,75],"2091":[4,3,163],"2092":[2,3,25],"2093":[1,3,1],"2094":[1,4,97],"2095":[2,4,100],"2096":[1,6,130],"2097":[5,6,49],"2098":[1,3,1],"2099":[5,4,7],"2100":[6,4,14],"2101":[5,4,5],"2102":[6,4,12],"2103":[5,4,5],"2104":[6,4,12],"2105":[7,4,9],"2106":[2,11,7],"2107":[12,4,32],"2108":[1,16,21],"2109":[12,4,31],"2110":[1,16,13],"2111":[7,4,6],"2112":[1,11,8],"2113":[8,4,13],"2114":[1,12,8],"2115":[5,4,7],"2116":[6,4,13],"2117":[6,4,7],"2118":[7,4,13],"2119":[8,4,6],"2120":[2,12,8],"2121":[6,4,6],"2122":[7,4,13],"2123":[6,4,6],"2124":[7,4,13],"2125":[8,4,7],"2126":[2,12,9],"2127":[6,4,6],"2128":[7,4,13],"2129":[6,4,6],"2130":[7,4,13],"2131":[8,4,7],"2132":[2,12,9],"2133":[6,4,7],"2134":[7,4,14],"2135":[6,4,7],"2136":[7,4,14],"2137":[8,4,8],"2138":[2,12,9],"2139":[6,4,5],"2140":[7,4,12],"2141":[6,4,5],"2142":[7,4,12],"2143":[8,4,5],"2144":[1,12,11],"2145":[9,4,12],"2146":[1,13,11],"2147":[8,4,6],"2148":[2,12,9],"2149":[8,4,6],"2150":[1,12,8],"2151":[9,4,13],"2152":[1,13,8],"2153":[6,4,7],"2154":[7,4,13],"2155":[7,4,7],"2156":[8,4,13],"2157":[8,4,7],"2158":[2,12,5],"2159":[10,4,10],"2160":[1,4,16],"2161":[11,4,17],"2162":[1,15,16],"2163":[7,4,11],"2164":[2,11,10],"2165":[7,4,11],"2166":[8,4,9],"2167":[2,12,11],"2168":[7,4,18],"2169":[2,11,3],"2170":[7,4,18],"2171":[2,11,9],"2172":[12,4,18],"2173":[1,4,16],"2174":[2,5,3],"2175":[12,4,18],"2176":[1,4,16],"2177":[2,5,9],"2178":[2,1,104],"2179":[1,2,109],"2180":[2,3,37],"2181":[1,2,164],"2182":[1,2,79],"2183":[3,2,99],"2184":[4,5,73],"2185":[4,5,106],"2186":[6,5,31],"2187":[2,5,91],"2188":[2,2,72],"2189":[3,3,167],"2190":[5,3,42],"2191":[3,3,162],"2192":[6,3,37],"2193":[2,3,34],"2194":[1,2,36],"2195":[3,3,19],"2196":[4,3,1],"2197":[3,6,12],"2198":[2,6,75],"2199":[3,6,35],"2200":[4,6,25],"2201":[4,6,43],"2202":[2,6,24],"2203":[2,6,23],"2204":[1,6,17],"2205":[1,2,56],"2206":[5,2,50],"2207":[2,2,65],"2208":[2,2,52],"2209":[1,2,27],"2210":[1,3,90],"2211":[1,3,37],"2212":[1,1,34],"2213":[2,1,34],"2214":[2,1,32],"2215":[1,1,12],"2216":[1,1,34],"2217":[1,1,35],"2218":[1,1,37],"2219":[2,1,52],"2220":[1,2,32],"2221":[2,2,42],"2222":[1,2,89],"2223":[2,3,31],"2224":[1,2,1],"2225":[2,3,42],"2226":[2,3,34],"2227":[1,2,1],"2228":[6,3,16],"2229":[1,9,8],"2230":[11,3,13],"2231":[1,14,22],"2232":[7,3,23],"2233":[1,10,8],"2234":[12,3,26],"2235":[1,15,22],"2236":[6,3,6],"2237":[1,9,8],"2238":[7,3,22],"2239":[1,10,14],"2240":[7,3,22],"2241":[1,10,12],"2242":[7,3,21],"2243":[1,10,11],"2244":[7,3,16],"2245":[1,10,11],"2246":[5,3,15],"2247":[4,3,18],"2248":[6,3,18],"2249":[1,1,45],"2250":[4,1,33],"2251":[1,1,25],"2252":[1,1,47],"2253":[1,1,54],"2254":[1,1,58],"2255":[6,1,43],"2256":[1,6,32],"2257":[1,6,33],"2258":[1,6,43],"2259":[1,6,124],"2260":[2,6,104],"2261":[2,1,115],"2262":[2,2,21],"2263":[2,2,19],"2264":[2,4,49],"2265":[1,5,107],"2266":[2,4,42],"2267":[2,4,70],"2268":[2,2,31],"2269":[2,4,54],"2270":[2,4,29],"2271":[3,6,58],"2272":[4,6,128],"2273":[3,6,169],"2274":[3,6,46],"2275":[2,4,178],"2276":[3,4,144],"2277":[5,4,193],"2278":[3,4,207],"2279":[4,2,54],"2280":[2,6,87],"2281":[2,2,51],"2282":[3,1,1],"2283":[2,3,35],"2284":[1,3,89],"2285":[2,3,100],"2286":[3,3,125],"2287":[2,3,77],"2288":[2,3,101],"2289":[3,3,60],"2290":[1,3,191],"2291":[3,1,79],"2292":[4,3,77],"2293":[4,3,106],"2294":[4,3,124],"2295":[2,7,123],"2296":[1,7,131],"2297":[5,7,118],"2298":[4,3,169],"2299":[2,3,12],"2300":[4,3,196],"2301":[2,3,152],"2302":[3,1,60],"2303":[1,3,70],"2304":[2,3,63],"2305":[2,3,72],"2306":[1,5,22],"2307":[13,1,1],"2308":[1,13,67],"2309":[5,13,269],"2310":[2,13,198],"2311":[1,13,1],"2312":[10,14,62],"2313":[2,14,33],"2314":[9,15,27],"2315":[12,15,75],"2316":[6,15,101],"2317":[7,15,335],"2318":[11,15,198],"2319":[12,15,233],"2320":[2,1,89],"2321":[1,2,25],"2322":[1,2,47],"2323":[1,2,38],"2324":[1,1,17],"2325":[1,1,55],"2326":[1,1,49],"2327":[2,1,104],"2328":[2,3,50],"2329":[2,1,148],"2330":[5,5,197],"2331":[2,1,246],"2332":[1,1,64],"2333":[1,1,1],"2334":[8,2,7],"2335":[2,10,7],"2336":[8,2,6],"2337":[1,10,8],"2338":[6,2,8],"2339":[7,2,8],"2340":[9,2,11],"2341":[1,11,7],"2342":[9,2,11],"2343":[1,11,7],"2344":[5,2,48],"2345":[5,2,40],"2346":[5,2,40],"2347":[8,2,18],"2348":[1,10,11],"2349":[8,2,7],"2350":[1,10,8],"2351":[7,2,16],"2352":[1,9,12],"2353":[2,9,8],"2354":[9,2,12],"2355":[1,11,10],"2356":[2,11,6],"2357":[7,2,12],"2358":[1,9,10],"2359":[4,2,5],"2360":[5,2,6],"2361":[2,7,6],"2362":[6,2,10],"2363":[2,8,7],"2364":[7,2,9],"2365":[1,9,17],"2366":[2,9,7],"2367":[6,2,9],"2368":[2,8,8],"2369":[4,2,11],"2370":[4,2,5],"2371":[4,2,10],"2372":[1,6,10],"2373":[2,1,1],"2374":[4,2,94],"2375":[4,5,89],"2376":[4,2,34],"2377":[2,2,88],"2378":[5,1,49],"2379":[1,5,137],"2380":[2,5,20],"2381":[1,5,115],"2382":[3,1,52],"2383":[1,3,14],"2384":[1,3,141],"2385":[1,3,1],"2386":[8,4,47],"2387":[6,1,232],"2388":[5,1,89],"2389":[2,5,129],"2390":[2,7,108],"2391":[2,7,37],"2392":[1,5,120],"2393":[2,6,57],"2394":[1,5,132],"2395":[1,5,101],"2396":[1,5,110],"2397":[2,6,172],"2398":[2,6,18],"2399":[3,5,135],"2400":[2,8,55],"2401":[1,5,115],"2402":[2,5,101],"2403":[2,5,98],"2404":[2,5,114],"2405":[2,7,29],"2406":[1,5,107],"2407":[2,6,21],"2408":[1,5,104],"2409":[2,6,21],"2410":[4,5,116],"2411":[1,1,34],"2412":[3,1,32],"2413":[2,4,28],"2414":[3,4,94],"2415":[2,4,54],"2416":[4,1,70],"2417":[4,1,263],"2418":[3,4,336],"2419":[8,4,45],"2420":[3,1,1],"2421":[2,3,64],"2422":[3,3,72],"2423":[3,3,129],"2424":[3,6,69],"2425":[3,3,142],"2426":[5,5,36],"2427":[1,5,183],"2428":[3,6,184],"2429":[3,6,150],"2430":[4,3,75],"2431":[7,6,127],"2432":[6,3,132],"2433":[3,3,46],"2434":[3,3,180],"2435":[2,3,96],"2436":[4,3,37],"2437":[2,1,40],"2438":[12,2,6],"2439":[3,1,51],"2440":[2,1,1],"2441":[4,2,41],"2442":[3,2,15],"2443":[1,2,18],"2444":[1,2,35],"2445":[1,2,30],"2446":[5,2,24],"2447":[3,1,43],"2448":[3,3,47],"2449":[4,3,55],"2450":[2,3,101],"2451":[3,3,41],"2452":[2,5,39],"2453":[3,5,115],"2454":[2,5,127],"2455":[2,5,128],"2456":[5,5,67],"2457":[5,5,28],"2458":[3,3,54],"2459":[2,3,40],"2460":[4,4,86],"2461":[3,3,64],"2462":[4,3,43],"2463":[3,3,34],"2464":[2,3,82],"2465":[1,3,37],"2466":[5,1,267],"2467":[8,1,30],"2468":[2,8,41],"2469":[5,8,47],"2470":[5,8,57],"2471":[7,8,35],"2472":[6,8,48],"2473":[4,8,44],"2474":[6,8,77],"2475":[6,8,54],"2476":[4,1,1],"2477":[5,4,45],"2478":[2,4,22],"2479":[3,4,27],"2480":[3,4,15],"2481":[2,4,54],"2482":[3,1,92],"2483":[1,3,76],"2484":[4,4,33],"2485":[1,7,34],"2486":[5,4,37],"2487":[1,8,40],"2488":[5,4,32],"2489":[1,8,29],"2490":[3,4,62],"2491":[1,7,10],"2492":[1,4,10],"2493":[1,5,10],"2494":[2,4,34],"2495":[1,6,13],"2496":[1,3,49],"2497":[2,3,48],"2498":[2,5,53],"2499":[1,5,111],"2500":[3,5,32],"2501":[1,5,94],"2502":[3,3,195],"2503":[3,5,142],"2504":[5,3,79],"2505":[3,3,63],"2506":[1,5,73],"2507":[1,5,32],"2508":[1,5,212],"2509":[2,1,31],"2510":[3,2,70],"2511":[2,2,28],"2512":[1,2,58],"2513":[2,2,26],"2514":[1,2,37],"2515":[1,2,50],"2516":[1,2,118],"2517":[2,2,148],"2518":[2,2,62],"2519":[2,2,34],"2520":[2,1,120],"2521":[2,1,37],"2522":[2,2,508],"2523":[2,2,56],"2524":[2,2,54],"2525":[2,2,39],"2526":[1,2,22],"2527":[1,2,37],"2528":[2,2,71],"2529":[2,2,15],"2530":[2,2,35],"2531":[2,2,20],"2532":[1,2,44],"2533":[2,2,17],"2534":[2,2,18],"2535":[2,2,80],"2536":[2,2,12],"2537":[2,2,48],"2538":[2,2,97],"2539":[1,2,284],"2540":[2,2,55],"2541":[1,2,58],"2542":[3,2,63],"2543":[3,2,31],"2544":[2,2,97],"2545":[2,2,56],"2546":[4,2,63],"2547":[3,2,69],"2548":[3,2,45],"2549":[2,2,21],"2550":[2,2,37],"2551":[2,2,43],"2552":[2,2,67],"2553":[4,1,41],"2554":[1,4,68],"2555":[1,4,57],"2556":[2,1,35],"2557":[3,2,99],"2558":[3,4,104],"2559":[4,4,79],"2560":[5,2,53],"2561":[1,7,121],"2562":[3,7,100],"2563":[2,10,154],"2564":[3,10,101],"2565":[3,1,44],"2566":[2,1,100],"2567":[2,2,290],"2568":[1,2,159],"2569":[3,2,181],"2570":[1,2,66],"2571":[1,2,56],"2572":[2,1,145],"2573":[1,2,162],"2574":[3,2,13],"2575":[3,4,79],"2576":[3,4,75],"2577":[5,4,49],"2578":[2,2,14],"2579":[3,1,113],"2580":[1,3,81],"2581":[2,3,26],"2582":[4,1,44],"2583":[7,4,83],"2584":[4,4,82],"2585":[8,4,92],"2586":[6,4,85],"2587":[3,4,91],"2588":[3,4,13],"2589":[2,1,95],"2590":[3,1,126],"2591":[4,3,56],"2592":[8,3,59],"2593":[7,3,39],"2594":[3,3,99],"2595":[8,3,69],"2596":[5,3,39],"2597":[3,3,59],"2598":[5,1,72],"2599":[1,5,61],"2600":[2,5,29],"2601":[3,7,89],"2602":[3,7,29],"2603":[4,7,29],"2604":[3,5,1],"2605":[3,8,59],"2606":[4,8,64],"2607":[5,8,111],"2608":[4,8,77],"2609":[3,8,64],"2610":[3,5,84],"2611":[3,1,16],"2612":[7,3,173],"2613":[6,3,47],"2614":[6,6,87],"2615":[3,6,69],"2616":[7,3,124],"2617":[4,3,80],"2618":[5,1,31],"2619":[2,5,79],"2620":[5,5,48],"2621":[1,8,35],"2622":[1,8,58],"2623":[1,8,15],"2624":[1,8,14],"2625":[1,8,15],"2626":[1,8,112],"2627":[1,8,57],"2628":[4,5,132],"2629":[5,5,92],"2630":[3,1,19],"2631":[7,1,1],"2632":[12,7,79],"2633":[3,1,66],"2634":[3,3,227],"2635":[7,1,70],"2636":[11,7,42],"2637":[3,7,128],"2638":[8,1,67],"2639":[4,8,124],"2640":[2,8,153],"2641":[3,8,25],"2642":[2,1,20],"2643":[2,2,25],"2644":[3,2,14],"2645":[3,2,22],"2646":[2,2,13],"2647":[3,1,1],"2648":[1,3,3],"2649":[1,3,3],"2650":[3,1,117],"2651":[1,3,160],"2652":[1,3,139],"2653":[6,1,90],"2654":[1,1,1],"2655":[2,1,24],"2656":[1,1,34],"2657":[5,1,37],"2658":[5,5,82],"2659":[2,5,77],"2660":[4,5,19],"2661":[4,1,1],"2662":[3,4,80],"2663":[3,4,82],"2664":[8,1,79],"2665":[4,1,33],"2666":[1,4,1],"2667":[1,5,104],"2668":[3,5,28],"2669":[2,6,141],"2670":[4,4,37],"2671":[1,4,86],"2672":[5,1,18],"2673":[3,5,80],"2674":[7,1,293],"2675":[4,1,56],"2676":[3,4,39],"2677":[2,6,47],"2678":[4,6,56],"2679":[2,6,65],"2680":[2,6,66],"2681":[2,4,1],"2682":[2,5,40],"2683":[3,5,37],"2684":[4,1,96],"2685":[5,4,162],"2686":[5,4,93],"2687":[3,4,67],"2688":[2,1,16],"2689":[1,2,43],"2690":[1,2,65],"2691":[2,2,165],"2692":[3,1,33],"2693":[1,3,12],"2694":[2,4,73],"2695":[2,4,57],"2696":[5,3,39],"2697":[2,8,23],"2698":[2,8,23],"2699":[2,8,15],"2700":[6,3,89],"2701":[4,3,25],"2702":[4,6,110],"2703":[3,6,54],"2704":[3,3,78],"2705":[5,3,79],"2706":[3,3,57],"2707":[4,1,115],"2708":[5,4,1],"2709":[2,7,121],"2710":[3,7,66],"2711":[11,4,84],"2712":[7,4,34],"2713":[7,4,53],"2714":[5,1,164],"2715":[2,5,38],"2716":[2,5,42],"2717":[2,7,97],"2718":[2,7,36],"2719":[2,9,48],"2720":[3,9,91],"2721":[2,7,67],"2722":[2,5,39],"2723":[2,7,16],"2724":[2,7,17],"2725":[2,1,44],"2726":[4,2,253],"2727":[2,2,101],"2728":[2,2,601],"2729":[2,2,194],"2730":[1,2,108],"2731":[2,2,102],"2732":[3,2,93],"2733":[3,1,43],"2734":[2,3,59],"2735":[4,3,81],"2736":[4,3,66],"2737":[8,3,12],"2738":[3,11,32],"2739":[6,11,54],"2740":[2,3,1],"2741":[3,5,99],"2742":[3,5,42],"2743":[3,3,1],"2744":[3,6,19],"2745":[4,6,21],"2746":[3,6,19],"2747":[4,3,42],"2748":[4,3,30],"2749":[2,3,35],"2750":[1,3,56],"2751":[2,1,91],"2752":[2,2,65],"2753":[2,1,157],"2754":[3,2,166],"2755":[4,2,240],"2756":[4,2,338],"2757":[4,2,518],"2758":[4,1,76],"2759":[2,4,31],"2760":[4,4,1],"2761":[4,5,71],"2762":[4,5,19],"2763":[4,4,13],"2764":[5,4,90],"2765":[3,1,98],"2766":[2,3,18],"2767":[3,3,130],"2768":[3,3,67],"2769":[3,3,58],"2770":[3,3,37],"2771":[3,3,27],"2772":[3,1,108],"2773":[2,3,68],"2774":[3,3,86],"2775":[3,3,70],"2776":[3,3,146],"2777":[3,3,72],"2778":[3,3,51],"2779":[3,3,42],"2780":[10,1,39],"2781":[4,10,16],"2782":[7,13,51],"2783":[1,20,26],"2784":[8,13,76],"2785":[1,21,36],"2786":[5,10,82],"2787":[3,10,38],"2788":[3,10,14],"2789":[6,10,53],"2790":[3,10,60],"2791":[2,10,37],"2792":[6,1,57],"2793":[6,1,13],"2794":[5,6,188],"2795":[4,6,190],"2796":[5,6,100],"2797":[3,6,50],"2798":[1,9,1],"2799":[3,10,40],"2800":[3,10,56],"2801":[4,1,1],"2802":[1,4,21],"2803":[1,4,18],"2804":[1,4,14],"2805":[1,4,27],"2806":[1,4,13],"2807":[1,4,23],"2808":[1,4,22],"2809":[1,4,16],"2810":[1,4,10],"2811":[1,4,14],"2812":[1,4,20],"2813":[2,4,23],"2814":[1,4,13],"2815":[1,4,7],"2816":[1,4,8],"2817":[1,4,23],"2818":[1,4,17],"2819":[2,4,22],"2820":[1,4,21],"2821":[2,4,15],"2822":[2,4,10],"2823":[1,4,19],"2824":[1,4,17],"2825":[2,4,29],"2826":[1,4,14],"2827":[1,4,21],"2828":[1,4,28],"2829":[1,4,21],"2830":[1,4,9],"2831":[1,4,21],"2832":[1,4,16],"2833":[5,4,17],"2834":[2,4,34],"2835":[1,4,28],"2836":[2,4,18],"2837":[1,4,21],"2838":[1,4,14],"2839":[1,4,18],"2840":[1,4,30],"2841":[3,4,28],"2842":[1,4,24],"2843":[2,4,23],"2844":[1,4,34],"2845":[1,4,25],"2846":[1,4,34],"2847":[2,4,24],"2848":[1,4,12],"2849":[5,4,13],"2850":[10,1,23],"2851":[3,1,101],"2852":[2,3,81],"2853":[2,3,43],"2854":[2,3,96],"2855":[1,3,35],"2856":[1,3,64],"2857":[1,3,83],"2858":[1,3,55],"2859":[2,3,19],"2860":[1,3,30],"2861":[2,3,50],"2862":[1,3,20],"2863":[2,3,34],"2864":[1,3,50],"2865":[1,3,38],"2866":[1,3,9],"2867":[1,3,36],"2868":[3,3,36],"2869":[1,3,176],"2870":[2,3,43],"2871":[2,3,165],"2872":[1,3,101],"2873":[2,3,21],"2874":[2,3,27],"2875":[2,3,38],"2876":[3,3,37],"2877":[1,3,113],"2878":[2,3,178],"2879":[1,3,50],"2880":[2,3,132],"2881":[1,3,25],"2882":[1,3,96],"2883":[1,3,51],"2884":[3,1,109],"2885":[5,3,59],"2886":[2,3,122],"2887":[2,3,160],"2888":[6,1,52],"2889":[3,6,174],"2890":[3,6,75],"2891":[2,6,51],"2892":[1,6,54],"2893":[2,6,62],"2894":[2,6,131],"2895":[2,1,71],"2896":[2,1,23],"2897":[2,2,34],"2898":[2,2,11],"2899":[2,2,21],"2900":[3,1,1],"2901":[2,3,77],"2902":[4,3,129],"2903":[8,7,80],"2904":[6,7,39],"2905":[2,1,26],"2906":[2,1,70],"2907":[2,1,67],"2908":[2,1,71],"2909":[4,1,87],"2910":[2,4,106],"2911":[1,6,87],"2912":[3,6,280],"2913":[4,4,140],"2914":[5,4,107],"2915":[1,7,58],"2916":[4,8,31],"2917":[4,8,30],"2918":[4,8,28],"2919":[2,7,66],"2920":[2,7,198],"2921":[5,7,137],"2922":[3,4,142],"2923":[2,4,120],"2924":[5,5,76],"2925":[5,5,101],"2926":[2,4,171],"2927":[3,5,170],"2928":[3,5,89],"2929":[2,4,218],"2930":[2,6,42],"2931":[2,4,246],"2932":[11,4,84],"2933":[9,4,33],"2934":[4,1,45],"2935":[1,4,108],"2936":[3,4,76],"2937":[2,7,98],"2938":[5,9,138],"2939":[2,9,74],"2940":[3,9,85],"2941":[2,9,146],"2942":[2,1,95],"2943":[4,2,39],"2944":[3,2,78],"2945":[7,2,145],"2946":[3,2,58],"2947":[3,2,45],"2948":[3,2,53],"2949":[2,1,132],"2950":[2,1,181]},"averageFieldLength":[3.637411047102677,5.010843781768887,53.31684174855976],"storedFields":{"0":{"title":"QMK Breaking Change - 2019 Aug 30","titles":[]},"1":{"title":"Core code formatting with clang-format","titles":["QMK Breaking Change - 2019 Aug 30"]},"2":{"title":"LUFA USB descriptor cleanup","titles":["QMK Breaking Change - 2019 Aug 30"]},"3":{"title":"Migrating ACTION_LAYER_MOMENTARY() entries in fn_actions to MO() keycodes","titles":["QMK Breaking Change - 2019 Aug 30"]},"4":{"title":"Update Atreus to current code conventions","titles":["QMK Breaking Change - 2019 Aug 30"]},"5":{"title":"Backport changes to keymap language files from ZSA fork","titles":["QMK Breaking Change - 2019 Aug 30"]},"6":{"title":"Update repo to use LUFA as a git submodule","titles":["QMK Breaking Change - 2019 Aug 30"]},"7":{"title":"Migrating ACTION_BACKLIGHT_*() entries in fn_actions to BL_ keycodes","titles":["QMK Breaking Change - 2019 Aug 30"]},"8":{"title":"Remove KC_DELT alias in favor of KC_DEL","titles":["QMK Breaking Change - 2019 Aug 30"]},"9":{"title":"QMK Breaking Change - 2020 May 30 Changelog","titles":[]},"10":{"title":"Core Changes","titles":["QMK Breaking Change - 2020 May 30 Changelog"]},"11":{"title":"Converting V-USB usbdrv to a submodule","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"12":{"title":"Unify Tap Hold functions and documentation","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"13":{"title":"Python Required In The Build Process","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"14":{"title":"Upgrade from tinyprintf to mpaland/printf","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"15":{"title":"Fixed RGB_DISABLE_AFTER_TIMEOUT to be seconds based & small internals cleanup","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"16":{"title":"Switch to qmk forks for everything","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"17":{"title":"code cleanup regarding deprecated macro PLAY_NOTE_ARRAY by replacing it with PLAY_SONG","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"18":{"title":"fixing wrong configuration of AUDIO feature","titles":["QMK Breaking Change - 2020 May 30 Changelog","Core Changes"]},"19":{"title":"Keyboard Refactors","titles":["QMK Breaking Change - 2020 May 30 Changelog"]},"20":{"title":"Migrating Lily58 to use split_common","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors"]},"21":{"title":"To migrate existing Lily58 firmware:","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors","Migrating Lily58 to use split_common"]},"22":{"title":"Refactor zinc to use split_common","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors"]},"23":{"title":"Refactor of TKC1800 to use common OLED code","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors"]},"24":{"title":"To migrate existing TKC1800 firmware:","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors","Refactor of TKC1800 to use common OLED code"]},"25":{"title":"Split HHKB to ANSI and JP layouts and Add VIA support for each","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors"]},"26":{"title":"Migrating existing HHKB keymaps","titles":["QMK Breaking Change - 2020 May 30 Changelog","Keyboard Refactors","Split HHKB to ANSI and JP layouts and Add VIA support for each"]},"27":{"title":"Keyboard Moves","titles":["QMK Breaking Change - 2020 May 30 Changelog"]},"28":{"title":"Keycode Migration PRs","titles":["QMK Breaking Change - 2020 May 30 Changelog"]},"29":{"title":"QMK Breaking Change - 2020 Aug 29 Changelog","titles":[]},"30":{"title":"Changes Requiring User Action","titles":["QMK Breaking Change - 2020 Aug 29 Changelog"]},"31":{"title":"Relocated Keyboards","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action"]},"32":{"title":"The Key Company project consolidation (","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"33":{"title":"relocating boards by flehrad to flehrad/ folder (","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"34":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action"]},"35":{"title":"Keebio RGB wiring update (","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action","Updated Keyboard Codebases"]},"36":{"title":"Changes to Core Functionality","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Changes Requiring User Action"]},"37":{"title":"Core Changes","titles":["QMK Breaking Change - 2020 Aug 29 Changelog"]},"38":{"title":"Fixes","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Core Changes"]},"39":{"title":"Additions and Enhancements","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Core Changes"]},"40":{"title":"Clean-ups and Optimizations","titles":["QMK Breaking Change - 2020 Aug 29 Changelog","Core Changes"]},"41":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Change - 2020 Aug 29 Changelog"]},"42":{"title":"QMK Breaking Change - 2020 Feb 29 Changelog","titles":[]},"43":{"title":"Update ChibiOS/ChibiOS-Contrib/uGFX submodules","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"44":{"title":"Fix ChibiOS timer overflow for 16-bit SysTick devices","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"45":{"title":"Update LUFA submodule","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"46":{"title":"Encoder flip","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"47":{"title":"Adding support for BACKLIGHT_ON_STATE for hardware PWM backlight","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"48":{"title":"Migrating ACTION_LAYER_TAP_KEY() entries in fn_actions to LT() keycodes","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"49":{"title":"Moving backlight keycode handling to process_keycode/","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"50":{"title":"Refactor Planck keymaps to use Layout Macros","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"51":{"title":"GON NerD codebase refactor","titles":["QMK Breaking Change - 2020 Feb 29 Changelog"]},"52":{"title":"QMK Breaking Change - 2020 Nov 28 Changelog","titles":[]},"53":{"title":"Changes Requiring User Action","titles":["QMK Breaking Change - 2020 Nov 28 Changelog"]},"54":{"title":"Relocated Keyboards","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action"]},"55":{"title":"Reduce Helix keyboard build variation (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"56":{"title":"Update the Speedo firmware for v3.0 (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"57":{"title":"Maartenwut/Maarten name change to evyd13/Evy (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"58":{"title":"Xelus Valor and Dawn60 Refactors (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Relocated Keyboards"]},"59":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action"]},"60":{"title":"AEboards EXT65 Refactor (","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Changes Requiring User Action","Updated Keyboard Codebases"]},"61":{"title":"Core Changes","titles":["QMK Breaking Change - 2020 Nov 28 Changelog"]},"62":{"title":"Fixes","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Core Changes"]},"63":{"title":"Additions and Enhancements","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Core Changes"]},"64":{"title":"Clean-ups and Optimizations","titles":["QMK Breaking Change - 2020 Nov 28 Changelog","Core Changes"]},"65":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Change - 2020 Nov 28 Changelog"]},"66":{"title":"QMK Breaking Changes - 2021 February 27 Changelog","titles":[]},"67":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 February 27 Changelog"]},"68":{"title":"Core Changes","titles":["QMK Breaking Changes - 2021 February 27 Changelog"]},"69":{"title":"ChibiOS Update and Config Migration","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Core Changes"]},"70":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Core Changes"]},"71":{"title":"Detailed Change List","titles":["QMK Breaking Changes - 2021 February 27 Changelog"]},"72":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"73":{"title":"Fixes","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"74":{"title":"Additions and Enhancements","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"75":{"title":"Clean-ups and Optimizations","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"76":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"77":{"title":"ChibiOS Update and Config Migration","titles":["QMK Breaking Changes - 2021 February 27 Changelog","Detailed Change List"]},"78":{"title":"QMK Breaking Changes - 2021 May 29 Changelog","titles":[]},"79":{"title":"Notable Changes","titles":["QMK Breaking Changes - 2021 May 29 Changelog"]},"80":{"title":"RGB Matrix support for split common (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"81":{"title":"Teensy 3.6 support (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"82":{"title":"New command: qmk console (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"83":{"title":"Improved command: qmk config","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"84":{"title":"LED Matrix Improvements (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Notable Changes"]},"85":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 May 29 Changelog"]},"86":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action"]},"87":{"title":"Bootmagic Deprecation and Refactor (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action"]},"88":{"title":"Tentative Deprecation Schedule","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action","Bootmagic Deprecation and Refactor ("]},"89":{"title":"Removal of LAYOUT_kc (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action"]},"90":{"title":"Encoder callbacks are now boolean (","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Changes Requiring User Action"]},"91":{"title":"Core Changes","titles":["QMK Breaking Changes - 2021 May 29 Changelog"]},"92":{"title":"Fixes","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Core Changes"]},"93":{"title":"Additions and Enhancements","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Core Changes"]},"94":{"title":"Clean-ups and Optimizations","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Core Changes"]},"95":{"title":"QMK Infrastructure and Internals","titles":["QMK Breaking Changes - 2021 May 29 Changelog","Core Changes"]},"96":{"title":"QMK Breaking Changes - 2021 August 28 Changelog","titles":[]},"97":{"title":"Notable Features","titles":["QMK Breaking Changes - 2021 August 28 Changelog"]},"98":{"title":"Combo processing improvements (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable Features"]},"99":{"title":"Key Overrides (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable Features"]},"100":{"title":"Digitizer support (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable Features"]},"101":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 August 28 Changelog"]},"102":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Changes Requiring User Action"]},"103":{"title":"Bootmagic Full Removal (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Changes Requiring User Action"]},"104":{"title":"Bootmagic Full Deprecation Schedule","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Changes Requiring User Action","Bootmagic Full Removal ("]},"105":{"title":"DIP switch callbacks are now boolean (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Changes Requiring User Action"]},"106":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2021 August 28 Changelog"]},"107":{"title":"Split transport improvements","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes"]},"108":{"title":"Teensy 4.x support (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes"]},"109":{"title":"Data Driven Improvements (","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes"]},"110":{"title":"Tags","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes","Data Driven Improvements ("]},"111":{"title":"Dot Notation","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes","Data Driven Improvements ("]},"112":{"title":"New configuration keys","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes","Data Driven Improvements ("]},"113":{"title":"Codebase restructure and cleanup","titles":["QMK Breaking Changes - 2021 August 28 Changelog","Notable core changes"]},"114":{"title":"Full changelist","titles":["QMK Breaking Changes - 2021 August 28 Changelog"]},"115":{"title":"QMK Breaking Changes - 2021 November 27 Changelog","titles":[]},"116":{"title":"2000 keyboards!","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"117":{"title":"Notable Features","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"118":{"title":"Expanded Pointing Device support (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable Features"]},"119":{"title":"Dynamic Tapping Term (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable Features"]},"120":{"title":"Macros in JSON keymaps (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable Features"]},"121":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"122":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"123":{"title":"Squeezing space out of AVR (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"124":{"title":"Require explicit enabling of RGB Matrix modes (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"125":{"title":"OLED task refactoring (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"126":{"title":"Bootmagic Full Removal (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"127":{"title":"Bootmagic Full Deprecation Schedule: Complete!","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action","Bootmagic Full Removal ("]},"128":{"title":"Remove QWIIC_DRIVERS (","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Changes Requiring User Action"]},"129":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"130":{"title":"New MCU Support","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable core changes"]},"131":{"title":"EEPROM Changes","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable core changes"]},"132":{"title":"Compilation Database","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable core changes"]},"133":{"title":"Codebase restructure and cleanup","titles":["QMK Breaking Changes - 2021 November 27 Changelog","Notable core changes"]},"134":{"title":"Full changelist","titles":["QMK Breaking Changes - 2021 November 27 Changelog"]},"135":{"title":"QMK Breaking Changes - 2022 February 26 Changelog","titles":[]},"136":{"title":"Notable Features","titles":["QMK Breaking Changes - 2022 February 26 Changelog"]},"137":{"title":"Default USB Polling rate now 1kHz (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable Features"]},"138":{"title":"Split support for pointing devices (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable Features"]},"139":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2022 February 26 Changelog"]},"140":{"title":"Legacy macro and action_function system removed (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Changes Requiring User Action"]},"141":{"title":"Create a build error if no bootloader is specified (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Changes Requiring User Action"]},"142":{"title":"Rename AdafruitBLE to BluefruitLE (","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Changes Requiring User Action"]},"143":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Changes Requiring User Action"]},"144":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2022 February 26 Changelog"]},"145":{"title":"New MCU Support","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable core changes"]},"146":{"title":"New Drivers","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable core changes"]},"147":{"title":"LED","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable core changes","New Drivers"]},"148":{"title":"GPIO","titles":["QMK Breaking Changes - 2022 February 26 Changelog","Notable core changes","New Drivers"]},"149":{"title":"Full changelist","titles":["QMK Breaking Changes - 2022 February 26 Changelog"]},"150":{"title":"QMK Breaking Changes - 2022 May 28 Changelog","titles":[]},"151":{"title":"Notable Features","titles":["QMK Breaking Changes - 2022 May 28 Changelog"]},"152":{"title":"Caps Word (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Notable Features"]},"153":{"title":"Quantum Painter (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Notable Features"]},"154":{"title":"Encoder Mapping (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Notable Features"]},"155":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2022 May 28 Changelog"]},"156":{"title":"RESET => QK_BOOT (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Changes Requiring User Action"]},"157":{"title":"Sendstring keycode overhaul (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Changes Requiring User Action"]},"158":{"title":"Pillow Installation (","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Changes Requiring User Action"]},"159":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2022 May 28 Changelog","Changes Requiring User Action"]},"160":{"title":"Full changelist","titles":["QMK Breaking Changes - 2022 May 28 Changelog"]},"161":{"title":"QMK Breaking Changes - 2022 November 26 Changelog","titles":[]},"162":{"title":"Notable Features","titles":["QMK Breaking Changes - 2022 November 26 Changelog"]},"163":{"title":"Autocorrect (","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Notable Features"]},"164":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2022 November 26 Changelog"]},"165":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"166":{"title":"Keycodes refactoring","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"167":{"title":"Configuration Item Refactoring","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"168":{"title":"Data-driven USB IDs Refactoring (","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"169":{"title":"LED Indicator callback refactoring (","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"170":{"title":"Unicode mode refactoring","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Changes Requiring User Action"]},"171":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2022 November 26 Changelog"]},"172":{"title":"Keycodes refactoring","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Notable core changes"]},"173":{"title":"Board Converters","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Notable core changes"]},"174":{"title":"Pointing and Digitizer device updates","titles":["QMK Breaking Changes - 2022 November 26 Changelog","Notable core changes"]},"175":{"title":"Full changelist","titles":["QMK Breaking Changes - 2022 November 26 Changelog"]},"176":{"title":"QMK Breaking Changes - 2022 August 27 Changelog","titles":[]},"177":{"title":"Notable Features","titles":["QMK Breaking Changes - 2022 August 27 Changelog"]},"178":{"title":"Add Raspberry Pi RP2040 support (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable Features"]},"179":{"title":"Allow qmk flash to use prebuilt firmware binaries (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable Features"]},"180":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2022 August 27 Changelog"]},"181":{"title":"Default layers dropped from 32 to 16 (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action"]},"182":{"title":"RESET => QK_BOOT (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action"]},"183":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action"]},"184":{"title":"Data-driven USB IDs Refactoring (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action"]},"185":{"title":"Deprecation Schedule","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Changes Requiring User Action","Data-driven USB IDs Refactoring ("]},"186":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2022 August 27 Changelog"]},"187":{"title":"Board converters (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable core changes"]},"188":{"title":"Add cli command to import keyboard|keymap|kbfirmware (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable core changes"]},"189":{"title":"Generic wear-leveling for EEPROM emulation (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable core changes"]},"190":{"title":"Pointing Device Improvements (","titles":["QMK Breaking Changes - 2022 August 27 Changelog","Notable core changes"]},"191":{"title":"Full changelist","titles":["QMK Breaking Changes - 2022 August 27 Changelog"]},"192":{"title":"QMK Breaking Changes - 2023 February 26 Changelog","titles":[]},"193":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2023 February 26 Changelog"]},"194":{"title":"IGNORE_MOD_TAP_INTERRUPT behaviour changes (","titles":["QMK Breaking Changes - 2023 February 26 Changelog","Changes Requiring User Action"]},"195":{"title":"TAPPING_FORCE_HOLD => QUICK_TAP_TERM (","titles":["QMK Breaking Changes - 2023 February 26 Changelog","Changes Requiring User Action"]},"196":{"title":"Leader Key Rework {#leader-key-rework (","titles":["QMK Breaking Changes - 2023 February 26 Changelog","Changes Requiring User Action"]},"197":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2023 February 26 Changelog","Changes Requiring User Action"]},"198":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2023 February 26 Changelog"]},"199":{"title":"Full changelist","titles":["QMK Breaking Changes - 2023 February 26 Changelog"]},"200":{"title":"QMK Breaking Changes - 2023 Aug 27 Changelog","titles":[]},"201":{"title":"Notable Changes","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog"]},"202":{"title":"RGB Matrix optimizations (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Notable Changes"]},"203":{"title":"Audio optimizations (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Notable Changes"]},"204":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog"]},"205":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"206":{"title":"Remove encoder in-matrix workaround code (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"207":{"title":"Unicodemap keycodes rename (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"208":{"title":"Remove old OLED API code (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"209":{"title":"Driver naming consolidation (","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog","Changes Requiring User Action"]},"210":{"title":"Full changelist","titles":["QMK Breaking Changes - 2023 Aug 27 Changelog"]},"211":{"title":"QMK Breaking Changes - 2023 May 28 Changelog","titles":[]},"212":{"title":"Notable Changes","titles":["QMK Breaking Changes - 2023 May 28 Changelog"]},"213":{"title":"Repeat last key (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable Changes"]},"214":{"title":"User callback for pre process record (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable Changes"]},"215":{"title":"Consolidate modelm (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable Changes"]},"216":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2023 May 28 Changelog"]},"217":{"title":"IGNORE_MOD_TAP_INTERRUPT behaviour changes (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Changes Requiring User Action"]},"218":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Changes Requiring User Action"]},"219":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2023 May 28 Changelog"]},"220":{"title":"Encoder functionality fallback (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable core changes"]},"221":{"title":"OLED Driver Improvements (","titles":["QMK Breaking Changes - 2023 May 28 Changelog","Notable core changes"]},"222":{"title":"Full changelist","titles":["QMK Breaking Changes - 2023 May 28 Changelog"]},"223":{"title":"QMK Breaking Changes - 2023 November 26 Changelog","titles":[]},"224":{"title":"Notable Features","titles":["QMK Breaking Changes - 2023 November 26 Changelog"]},"225":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2023 November 26 Changelog"]},"226":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Changes Requiring User Action"]},"227":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2023 November 26 Changelog"]},"228":{"title":"External Userspace (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"229":{"title":"Improve and Cleanup Shutdown callbacks (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"230":{"title":"OLED Force Flush (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"231":{"title":"Switch statement helpers for keycode ranges (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"232":{"title":"Quantum Painter OLED support (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"233":{"title":"RGB/LED lighting driver naming and cleanup (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"234":{"title":"Peripheral subsystem enabling (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"235":{"title":"NKRO on V-USB boards (","titles":["QMK Breaking Changes - 2023 November 26 Changelog","Notable core changes"]},"236":{"title":"Full changelist","titles":["QMK Breaking Changes - 2023 November 26 Changelog"]},"237":{"title":"QMK Breaking Changes - 2024 February 25 Changelog","titles":[]},"238":{"title":"Notable Features","titles":["QMK Breaking Changes - 2024 February 25 Changelog"]},"239":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2024 February 25 Changelog"]},"240":{"title":"Windows Driver Changes (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Changes Requiring User Action"]},"241":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Changes Requiring User Action"]},"242":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2024 February 25 Changelog"]},"243":{"title":"Renaming Arduino-style GPIO pin functions (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"244":{"title":"I2C driver API Changes (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"245":{"title":"Renaming Bootmagic Lite => Bootmagic (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"246":{"title":"Threshold for automatic mouse layer activation (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"247":{"title":"DIP Switch Mapping (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"248":{"title":"Quantum Painter updates (","titles":["QMK Breaking Changes - 2024 February 25 Changelog","Notable core changes"]},"249":{"title":"Full changelist","titles":["QMK Breaking Changes - 2024 February 25 Changelog"]},"250":{"title":"QMK Breaking Changes - 2024 May 26 Changelog","titles":[]},"251":{"title":"Notable Features","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"252":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"253":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action"]},"254":{"title":"Remove deprecated quantum keycodes (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action"]},"255":{"title":"P3D Spacey Layout Updates (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action"]},"256":{"title":"MechKeys ACR60 Layout Updates (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action"]},"257":{"title":"LAYOUT_hhkb","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action","MechKeys ACR60 Layout Updates ("]},"258":{"title":"LAYOUT_true_hhkb","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action","MechKeys ACR60 Layout Updates ("]},"259":{"title":"LAYOUT_directional","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action","MechKeys ACR60 Layout Updates ("]},"260":{"title":"LAYOUT_mitchsplit","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Changes Requiring User Action","MechKeys ACR60 Layout Updates ("]},"261":{"title":"Notable core changes","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"262":{"title":"Introduction of keyboard.json (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Notable core changes"]},"263":{"title":"Refactor ChibiOS USB endpoints to be fully async (","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Notable core changes"]},"264":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"265":{"title":"Migration of VIA keymaps to VIA team control","titles":["QMK Breaking Changes - 2024 May 26 Changelog","Deprecation Notices"]},"266":{"title":"Full changelist","titles":["QMK Breaking Changes - 2024 May 26 Changelog"]},"267":{"title":"QMK Breaking Changes - 2024 August 25 Changelog","titles":[]},"268":{"title":"Notable Features","titles":["QMK Breaking Changes - 2024 August 25 Changelog"]},"269":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2024 August 25 Changelog"]},"270":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Changes Requiring User Action"]},"271":{"title":"SparkFun Pro Micro RP2040 converter renamed (","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Changes Requiring User Action"]},"272":{"title":"Key Override keymap.c signature change (","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Changes Requiring User Action"]},"273":{"title":"ADNS9800 and PMW33xx firmware upload now opt-in (","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Changes Requiring User Action"]},"274":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2024 August 25 Changelog"]},"275":{"title":"Migration of VIA keymaps to VIA team control","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Deprecation Notices"]},"276":{"title":"ADNS9800 and PMW33xx sensor firmware ROM removal","titles":["QMK Breaking Changes - 2024 August 25 Changelog","Deprecation Notices"]},"277":{"title":"Full changelist","titles":["QMK Breaking Changes - 2024 August 25 Changelog"]},"278":{"title":"QMK Breaking Changes - 2024 November 24 Changelog","titles":[]},"279":{"title":"Notable Features","titles":["QMK Breaking Changes - 2024 November 24 Changelog"]},"280":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2024 November 24 Changelog"]},"281":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2024 November 24 Changelog","Changes Requiring User Action"]},"282":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2024 November 24 Changelog"]},"283":{"title":"RGB Keycode Overhaul (","titles":["QMK Breaking Changes - 2024 November 24 Changelog","Deprecation Notices"]},"284":{"title":"ADNS9800 and PMW33xx sensor firmware ROM removal (","titles":["QMK Breaking Changes - 2024 November 24 Changelog","Deprecation Notices"]},"285":{"title":"Full changelist","titles":["QMK Breaking Changes - 2024 November 24 Changelog"]},"286":{"title":"QMK Breaking Changes - 2025 February 23 Changelog","titles":[]},"287":{"title":"Notable Features","titles":["QMK Breaking Changes - 2025 February 23 Changelog"]},"288":{"title":"Community Modules (","titles":["QMK Breaking Changes - 2025 February 23 Changelog","Notable Features"]},"289":{"title":"Chordal Hold (","titles":["QMK Breaking Changes - 2025 February 23 Changelog","Notable Features"]},"290":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2025 February 23 Changelog"]},"291":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2025 February 23 Changelog","Changes Requiring User Action"]},"292":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2025 February 23 Changelog"]},"293":{"title":"DEFAULT_FOLDER removal (","titles":["QMK Breaking Changes - 2025 February 23 Changelog","Deprecation Notices"]},"294":{"title":"Full changelist","titles":["QMK Breaking Changes - 2025 February 23 Changelog"]},"295":{"title":"QMK Breaking Changes - 2025 May 25 Changelog","titles":[]},"296":{"title":"Notable Features","titles":["QMK Breaking Changes - 2025 May 25 Changelog"]},"297":{"title":"Flow Tap (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Notable Features"]},"298":{"title":"Community Modules 1.1.1 (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Notable Features"]},"299":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2025 May 25 Changelog"]},"300":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Changes Requiring User Action"]},"301":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2025 May 25 Changelog"]},"302":{"title":"Deprecation of qmk generate-compilation-database (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"303":{"title":"Deprecation of usb.force_nkro/FORCE_NKRO (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"304":{"title":"CTPC/CONVERT_TO_PROTON_C removal (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"305":{"title":"DEFAULT_FOLDER removal (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"306":{"title":"Converter Pin Compatible updates (","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"307":{"title":"Deprecation of encoder_update_{kb|user}","titles":["QMK Breaking Changes - 2025 May 25 Changelog","Deprecation Notices"]},"308":{"title":"Full changelist","titles":["QMK Breaking Changes - 2025 May 25 Changelog"]},"309":{"title":"QMK Breaking Changes - 2025 Aug 31 Changelog","titles":[]},"310":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog"]},"311":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Changes Requiring User Action"]},"312":{"title":"Mitigate VIA keylogger security issues","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Changes Requiring User Action"]},"313":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog"]},"314":{"title":"DEFAULT_FOLDER removal (","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Deprecation Notices"]},"315":{"title":"Converter Pin Compatible updates (","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Deprecation Notices"]},"316":{"title":"Removal of deprecated RGB and Mouse keycodes (","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog","Deprecation Notices"]},"317":{"title":"Full changelist","titles":["QMK Breaking Changes - 2025 Aug 31 Changelog"]},"318":{"title":"QMK Breaking Changes - 2025 Nov 30 Changelog","titles":[]},"319":{"title":"Notable Features","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog"]},"320":{"title":"Speculative Hold option for mod-taps: hold mods instantly while unsettled","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Notable Features"]},"321":{"title":"Changes Requiring User Action","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog"]},"322":{"title":"Updated Keyboard Codebases","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Changes Requiring User Action"]},"323":{"title":"Reduce tap dance memory usage, move state out of data","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Changes Requiring User Action"]},"324":{"title":"Before:","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Changes Requiring User Action"]},"325":{"title":"After:","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Changes Requiring User Action"]},"326":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog"]},"327":{"title":"Remove override of QK_{LED,RGB}_MATRIX_TOGGLE keycode","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog","Deprecation Notices"]},"328":{"title":"Full changelist","titles":["QMK Breaking Changes - 2025 Nov 30 Changelog"]},"329":{"title":"QMK Breaking Changes - 2026 Feb 22 Changelog","titles":[]},"330":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2026 Feb 22 Changelog"]},"331":{"title":"Removal of deprecated GPIO defines (","titles":["QMK Breaking Changes - 2026 Feb 22 Changelog","Deprecation Notices"]},"332":{"title":"Removal of deprecated isLeftHand (","titles":["QMK Breaking Changes - 2026 Feb 22 Changelog","Deprecation Notices"]},"333":{"title":"Full changelist","titles":["QMK Breaking Changes - 2026 Feb 22 Changelog"]},"334":{"title":"QMK Breaking Changes - 2026 May 31 Changelog","titles":[]},"335":{"title":"Notable Changes","titles":["QMK Breaking Changes - 2026 May 31 Changelog"]},"336":{"title":"Deprecation Notices","titles":["QMK Breaking Changes - 2026 May 31 Changelog"]},"337":{"title":"Removal of deprecated isLeftHand (","titles":["QMK Breaking Changes - 2026 May 31 Changelog","Deprecation Notices"]},"338":{"title":"Removal of usb.force_nkro/FORCE_NKRO (","titles":["QMK Breaking Changes - 2026 May 31 Changelog","Deprecation Notices"]},"339":{"title":"Full changelist","titles":["QMK Breaking Changes - 2026 May 31 Changelog"]},"340":{"title":"Documentation Capabilities","titles":[]},"341":{"title":"Overall capabilities","titles":["Documentation Capabilities"]},"342":{"title":"Dividing lines","titles":["Documentation Capabilities","Overall capabilities"]},"343":{"title":"Images","titles":["Documentation Capabilities","Overall capabilities"]},"344":{"title":"Lists","titles":["Documentation Capabilities","Overall capabilities"]},"345":{"title":"Emoji","titles":["Documentation Capabilities","Overall capabilities"]},"346":{"title":"Direct:","titles":["Documentation Capabilities","Overall capabilities","Emoji"]},"347":{"title":"As colon-name-colon:","titles":["Documentation Capabilities","Overall capabilities","Emoji"]},"348":{"title":"XML Entities","titles":["Documentation Capabilities","Overall capabilities"]},"349":{"title":"Styling","titles":["Documentation Capabilities"]},"350":{"title":"CSS-ish","titles":["Documentation Capabilities","Styling"]},"351":{"title":"Tables","titles":["Documentation Capabilities","Styling"]},"352":{"title":"Indented sections","titles":["Documentation Capabilities","Styling"]},"353":{"title":"Keyboard keys","titles":["Documentation Capabilities","Styling"]},"354":{"title":"Code Blocks","titles":["Documentation Capabilities","Styling"]},"355":{"title":"Sub/Superscript","titles":["Documentation Capabilities","Styling"]},"356":{"title":"Tabs","titles":["Documentation Capabilities","Styling"]},"357":{"title":"** Tab one **","titles":["Documentation Capabilities","Styling","Tabs"]},"358":{"title":"** Nested one **","titles":["Documentation Capabilities","Styling","Tabs","** Tab one **"]},"359":{"title":"** Nested two **","titles":["Documentation Capabilities","Styling","Tabs","** Tab one **"]},"360":{"title":"** Tab two **","titles":["Documentation Capabilities","Styling","Tabs"]},"361":{"title":"** Tab three **","titles":["Documentation Capabilities","Styling","Tabs"]},"362":{"title":"Details sections","titles":["Documentation Capabilities"]},"363":{"title":"Embed","titles":["Documentation Capabilities"]},"364":{"title":"Development Environment Setup","titles":[]},"365":{"title":"QMK Compiler Development Guide","titles":[]},"366":{"title":"Overview","titles":[]},"367":{"title":"Workers","titles":[]},"368":{"title":"API Service","titles":[]},"369":{"title":"@app.route('/v1/compile', methods=['POST'])","titles":["API Service"]},"370":{"title":"@app.route('/v1/compile/<string:job_id>', methods=['GET'])","titles":["API Service"]},"371":{"title":"@app.route('/v1/compile/<string:job_id>/download', methods=['GET'])","titles":["API Service"]},"372":{"title":"@app.route('/v1/compile/<string:job_id>/source', methods=['GET'])","titles":["API Service"]},"373":{"title":"QMK API","titles":[]},"374":{"title":"App Developers","titles":["QMK API"]},"375":{"title":"Keyboard Maintainers","titles":["QMK API"]},"376":{"title":"Backend Developers","titles":["QMK API"]},"377":{"title":"QMK API","titles":[]},"378":{"title":"Overview","titles":["QMK API"]},"379":{"title":"Example JSON Payload:","titles":["QMK API","Overview"]},"380":{"title":"Submitting a Compile Job","titles":["QMK API"]},"381":{"title":"Checking The Status","titles":["QMK API"]},"382":{"title":"Examining Finished Results","titles":["QMK API"]},"383":{"title":"Constants","titles":["QMK API"]},"384":{"title":"ARM Debugging using Eclipse","titles":[]},"385":{"title":"Installing the software","titles":["ARM Debugging using Eclipse"]},"386":{"title":"The xPack Manager","titles":["ARM Debugging using Eclipse","Installing the software"]},"387":{"title":"The ARM Toolchain","titles":["ARM Debugging using Eclipse","Installing the software"]},"388":{"title":"Windows build tools","titles":["ARM Debugging using Eclipse","Installing the software"]},"389":{"title":"Programmer/Debugger Drivers","titles":["ARM Debugging using Eclipse","Installing the software"]},"390":{"title":"OpenOCD","titles":["ARM Debugging using Eclipse","Installing the software"]},"391":{"title":"Java","titles":["ARM Debugging using Eclipse","Installing the software"]},"392":{"title":"GNU MCU Eclipse IDE","titles":["ARM Debugging using Eclipse","Installing the software"]},"393":{"title":"Configuring Eclipse","titles":["ARM Debugging using Eclipse"]},"394":{"title":"Building","titles":["ARM Debugging using Eclipse"]},"395":{"title":"Debugging","titles":["ARM Debugging using Eclipse"]},"396":{"title":"Connecting the Debugger","titles":["ARM Debugging using Eclipse","Debugging"]},"397":{"title":"Configuring the Debugger","titles":["ARM Debugging using Eclipse","Debugging"]},"398":{"title":"Running the Debugger.","titles":["ARM Debugging using Eclipse","Debugging"]},"399":{"title":"Breaking Changes","titles":[]},"400":{"title":"What has been included in past Breaking Changes?","titles":["Breaking Changes"]},"401":{"title":"When is the next Breaking Change?","titles":["Breaking Changes"]},"402":{"title":"Important Dates","titles":["Breaking Changes","When is the next Breaking Change?"]},"403":{"title":"What changes will be included?","titles":["Breaking Changes"]},"404":{"title":"Checklists","titles":["Breaking Changes"]},"405":{"title":"4 Weeks Before Merge","titles":["Breaking Changes","Checklists"]},"406":{"title":"2 Weeks Before Merge","titles":["Breaking Changes","Checklists"]},"407":{"title":"1 Week Before Merge","titles":["Breaking Changes","Checklists"]},"408":{"title":"2 Days Before Merge","titles":["Breaking Changes","Checklists"]},"409":{"title":"Day Of Merge","titles":["Breaking Changes","Checklists"]},"410":{"title":"Post-merge operations","titles":["Breaking Changes"]},"411":{"title":"Updating the develop branch","titles":["Breaking Changes","Post-merge operations"]},"412":{"title":"Set up Discord events for the next cycle","titles":["Breaking Changes","Post-merge operations"]},"413":{"title":"Past Breaking Changes","titles":[]},"414":{"title":"Breaking Changes: My Pull Request Was Flagged","titles":[]},"415":{"title":"What Do I Do?","titles":["Breaking Changes: My Pull Request Was Flagged"]},"416":{"title":"Consider Splitting Up Your PR","titles":["Breaking Changes: My Pull Request Was Flagged","What Do I Do?"]},"417":{"title":"Document Your Changes","titles":["Breaking Changes: My Pull Request Was Flagged","What Do I Do?"]},"418":{"title":"Ask for Help","titles":["Breaking Changes: My Pull Request Was Flagged","What Do I Do?"]},"419":{"title":"ChibiOS Upgrade Procedure","titles":[]},"420":{"title":"Getting ChibiOS","titles":["ChibiOS Upgrade Procedure"]},"421":{"title":"Getting ChibiOS-Contrib","titles":["ChibiOS Upgrade Procedure"]},"422":{"title":"Updating submodules","titles":["ChibiOS Upgrade Procedure"]},"423":{"title":"When merging a PR containing an upgrade of ChibiOS/ChibiOS-Contrib:","titles":["ChibiOS Upgrade Procedure"]},"424":{"title":"QMK CLI","titles":[]},"425":{"title":"Overview","titles":["QMK CLI"]},"426":{"title":"Installation","titles":["QMK CLI","Overview"]},"427":{"title":"QMK CLI Commands","titles":[]},"428":{"title":"User Commands","titles":[]},"429":{"title":"qmk compile","titles":["User Commands"]},"430":{"title":"qmk flash","titles":["User Commands"]},"431":{"title":"qmk config","titles":["User Commands"]},"432":{"title":"qmk cd","titles":["User Commands"]},"433":{"title":"qmk find","titles":["User Commands"]},"434":{"title":"qmk console","titles":["User Commands"]},"435":{"title":"qmk doctor","titles":["User Commands"]},"436":{"title":"qmk format-json","titles":["User Commands"]},"437":{"title":"qmk info","titles":["User Commands"]},"438":{"title":"qmk json2c","titles":["User Commands"]},"439":{"title":"qmk c2json","titles":["User Commands"]},"440":{"title":"qmk lint","titles":["User Commands"]},"441":{"title":"qmk list-keyboards","titles":["User Commands"]},"442":{"title":"qmk list-keymaps","titles":["User Commands"]},"443":{"title":"qmk migrate","titles":["User Commands"]},"444":{"title":"qmk new-keyboard","titles":["User Commands"]},"445":{"title":"qmk new-keymap","titles":["User Commands"]},"446":{"title":"qmk clean","titles":["User Commands"]},"447":{"title":"qmk via2json","titles":["User Commands"]},"448":{"title":"qmk import-keyboard","titles":["User Commands"]},"449":{"title":"qmk import-keymap","titles":["User Commands"]},"450":{"title":"qmk import-kbfirmware","titles":["User Commands"]},"451":{"title":"External Userspace Commands","titles":[]},"452":{"title":"qmk userspace-add","titles":["External Userspace Commands"]},"453":{"title":"qmk userspace-remove","titles":["External Userspace Commands"]},"454":{"title":"qmk userspace-list","titles":["External Userspace Commands"]},"455":{"title":"qmk userspace-compile","titles":["External Userspace Commands"]},"456":{"title":"qmk userspace-doctor","titles":["External Userspace Commands"]},"457":{"title":"Developer Commands","titles":[]},"458":{"title":"qmk format-text","titles":["Developer Commands"]},"459":{"title":"qmk format-c","titles":["Developer Commands"]},"460":{"title":"qmk docs","titles":["Developer Commands"]},"461":{"title":"qmk generate-docs","titles":["Developer Commands"]},"462":{"title":"qmk generate-rgb-breathe-table","titles":["Developer Commands"]},"463":{"title":"qmk kle2json","titles":["Developer Commands"]},"464":{"title":"qmk format-python","titles":["Developer Commands"]},"465":{"title":"qmk pytest","titles":["Developer Commands"]},"466":{"title":"qmk painter-convert-graphics","titles":["Developer Commands"]},"467":{"title":"qmk painter-make-font-image","titles":["Developer Commands"]},"468":{"title":"qmk painter-convert-font-image","titles":["Developer Commands"]},"469":{"title":"qmk test-c","titles":["Developer Commands"]},"470":{"title":"qmk generate-compilation-database","titles":["Developer Commands"]},"471":{"title":"QMK CLI Configuration","titles":[]},"472":{"title":"Introduction","titles":[]},"473":{"title":"Simple Example","titles":["Introduction"]},"474":{"title":"Setting User Defaults","titles":["Introduction"]},"475":{"title":"CLI Documentation (qmk config)","titles":[]},"476":{"title":"Setting Configuration Values","titles":["CLI Documentation (qmk config)"]},"477":{"title":"Reading Configuration Values","titles":["CLI Documentation (qmk config)"]},"478":{"title":"Entire Configuration Example","titles":["CLI Documentation (qmk config)","Reading Configuration Values"]},"479":{"title":"Whole Section Example","titles":["CLI Documentation (qmk config)","Reading Configuration Values"]},"480":{"title":"Single Key Example","titles":["CLI Documentation (qmk config)","Reading Configuration Values"]},"481":{"title":"Multiple Keys Example","titles":["CLI Documentation (qmk config)","Reading Configuration Values"]},"482":{"title":"Deleting Configuration Values","titles":["CLI Documentation (qmk config)"]},"483":{"title":"Multiple Operations","titles":["CLI Documentation (qmk config)"]},"484":{"title":"User Configuration Options","titles":[]},"485":{"title":"All Configuration Options","titles":[]},"486":{"title":"QMK CLI Development","titles":[]},"487":{"title":"Overview","titles":[]},"488":{"title":"Developer mode:","titles":["Overview"]},"489":{"title":"Subcommands","titles":[]},"490":{"title":"User Interaction","titles":[]},"491":{"title":"Printing Text","titles":["User Interaction"]},"492":{"title":"Logging (cli.log)","titles":["User Interaction","Printing Text"]},"493":{"title":"Printing (cli.echo)","titles":["User Interaction","Printing Text"]},"494":{"title":"Colorizing Text","titles":["User Interaction","Printing Text"]},"495":{"title":"Arguments and Configuration","titles":[]},"496":{"title":"Reading Configuration Values","titles":["Arguments and Configuration"]},"497":{"title":"Setting Configuration Values","titles":["Arguments and Configuration"]},"498":{"title":"Deleting Configuration Values","titles":["Arguments and Configuration"]},"499":{"title":"Writing The Configuration File","titles":["Arguments and Configuration"]},"500":{"title":"Excluding Arguments From Configuration","titles":["Arguments and Configuration"]},"501":{"title":"Testing, and Linting, and Formatting (oh my!)","titles":[]},"502":{"title":"Testing and Linting","titles":["Testing, and Linting, and Formatting (oh my!)"]},"503":{"title":"Formatting","titles":["Testing, and Linting, and Formatting (oh my!)"]},"504":{"title":"Formatting Details","titles":["Testing, and Linting, and Formatting (oh my!)"]},"505":{"title":"Testing Details","titles":["Testing, and Linting, and Formatting (oh my!)"]},"506":{"title":"Linting Details","titles":["Testing, and Linting, and Formatting (oh my!)"]},"507":{"title":"Tab Completion for QMK","titles":[]},"508":{"title":"Setup","titles":["Tab Completion for QMK"]},"509":{"title":"For Your User Only","titles":["Tab Completion for QMK","Setup"]},"510":{"title":"System Wide Symlink","titles":["Tab Completion for QMK","Setup"]},"511":{"title":"System Wide Copy","titles":["Tab Completion for QMK","Setup"]},"512":{"title":"Coding Conventions (C)","titles":[]},"513":{"title":"Auto-formatting with clang-format","titles":[]},"514":{"title":"Coding Conventions (Python)","titles":[]},"515":{"title":"YAPF","titles":[]},"516":{"title":"Imports","titles":[]},"517":{"title":"Import Examples","titles":["Imports"]},"518":{"title":"Statements","titles":[]},"519":{"title":"Naming","titles":[]},"520":{"title":"Names to Avoid","titles":["Naming"]},"521":{"title":"Docstrings","titles":[]},"522":{"title":"Simple docstring example","titles":["Docstrings"]},"523":{"title":"Complex docstring example","titles":["Docstrings"]},"524":{"title":"Function arguments docstring example","titles":["Docstrings"]},"525":{"title":"Exceptions","titles":[]},"526":{"title":"Tuples","titles":[]},"527":{"title":"Lists and Dictionaries","titles":[]},"528":{"title":"Parentheses","titles":[]},"529":{"title":"Format Strings","titles":[]},"530":{"title":"Comprehensions & Generator Expressions","titles":[]},"531":{"title":"Lambdas","titles":[]},"532":{"title":"Conditional Expressions","titles":[]},"533":{"title":"Default Argument Values","titles":[]},"534":{"title":"Properties","titles":[]},"535":{"title":"True/False Evaluations","titles":[]},"536":{"title":"Decorators","titles":[]},"537":{"title":"Threading and Multiprocessing","titles":[]},"538":{"title":"Power Features","titles":[]},"539":{"title":"Type Annotated Code","titles":[]},"540":{"title":"Function length","titles":[]},"541":{"title":"FIXMEs","titles":[]},"542":{"title":"Testing","titles":[]},"543":{"title":"Integration Tests","titles":["Testing"]},"544":{"title":"Unit Tests","titles":["Testing"]},"545":{"title":"Compatible Microcontrollers","titles":[]},"546":{"title":"Atmel AVR","titles":["Compatible Microcontrollers"]},"547":{"title":"ARM","titles":["Compatible Microcontrollers"]},"548":{"title":"STMicroelectronics (STM32)","titles":["Compatible Microcontrollers","ARM"]},"549":{"title":"WestBerryTech (WB32)","titles":["Compatible Microcontrollers","ARM"]},"550":{"title":"Artery (AT32)","titles":["Compatible Microcontrollers","ARM"]},"551":{"title":"NXP (Kinetis)","titles":["Compatible Microcontrollers","ARM"]},"552":{"title":"Raspberry Pi","titles":["Compatible Microcontrollers","ARM"]},"553":{"title":"RISC-V","titles":["Compatible Microcontrollers"]},"554":{"title":"GigaDevice","titles":["Compatible Microcontrollers","RISC-V"]},"555":{"title":"Configuring QMK","titles":[]},"556":{"title":"QMK Default","titles":["Configuring QMK"]},"557":{"title":"Keyboard","titles":["Configuring QMK"]},"558":{"title":"Folders","titles":["Configuring QMK"]},"559":{"title":"Keymap","titles":["Configuring QMK"]},"560":{"title":"The config.h File","titles":[]},"561":{"title":"Hardware Options","titles":["The config.h File"]},"562":{"title":"Features That Can Be Disabled","titles":["The config.h File"]},"563":{"title":"Features That Can Be Enabled","titles":["The config.h File"]},"564":{"title":"Behaviors That Can Be Configured","titles":["The config.h File"]},"565":{"title":"RGB Light Configuration","titles":["The config.h File"]},"566":{"title":"Mouse Key Options","titles":["The config.h File"]},"567":{"title":"Split Keyboard Options","titles":["The config.h File"]},"568":{"title":"Setting Handedness","titles":["The config.h File","Split Keyboard Options"]},"569":{"title":"Defines for handedness","titles":["The config.h File","Split Keyboard Options","Setting Handedness"]},"570":{"title":"Other Options","titles":["The config.h File","Split Keyboard Options"]},"571":{"title":"The rules.mk File","titles":[]},"572":{"title":"Build Options","titles":["The rules.mk File"]},"573":{"title":"AVR MCU Options","titles":["The rules.mk File"]},"574":{"title":"Feature Options","titles":["The rules.mk File"]},"575":{"title":"USB Endpoint Limitations","titles":["The rules.mk File"]},"576":{"title":"QMK Configurator Architecture","titles":[]},"577":{"title":"Overview","titles":[]},"578":{"title":"Detailed Description","titles":[]},"579":{"title":"Configurator Frontend","titles":["Detailed Description"]},"580":{"title":"Keyboard Metadata","titles":["Detailed Description"]},"581":{"title":"QMK API","titles":["Detailed Description"]},"582":{"title":"Compile Job Queued","titles":["Detailed Description","QMK API"]},"583":{"title":"Compile Job Running","titles":["Detailed Description","QMK API"]},"584":{"title":"Compile Job Finished","titles":["Detailed Description","QMK API"]},"585":{"title":"Redis/RQ","titles":["Detailed Description"]},"586":{"title":"QMK Compiler","titles":["Detailed Description"]},"587":{"title":"Adding Default Keymaps to QMK Configurator","titles":[]},"588":{"title":"Technical Information","titles":["Adding Default Keymaps to QMK Configurator"]},"589":{"title":"Example","titles":["Adding Default Keymaps to QMK Configurator"]},"590":{"title":"Caveats","titles":["Adding Default Keymaps to QMK Configurator"]},"591":{"title":"Layers can only be referenced by number","titles":["Adding Default Keymaps to QMK Configurator","Caveats"]},"592":{"title":"No support for custom code of any kind","titles":["Adding Default Keymaps to QMK Configurator","Caveats"]},"593":{"title":"Limited Support for Custom keycodes","titles":["Adding Default Keymaps to QMK Configurator","Caveats"]},"594":{"title":"Additional Reading","titles":["Adding Default Keymaps to QMK Configurator"]},"595":{"title":"QMK Configurator: Step by Step","titles":[]},"596":{"title":"Step 1: Select Your Keyboard","titles":["QMK Configurator: Step by Step"]},"597":{"title":"Step 2: Select Your Keyboard Layout","titles":["QMK Configurator: Step by Step"]},"598":{"title":"Step 3: Name Your Keymap","titles":["QMK Configurator: Step by Step"]},"599":{"title":"Step 4: Define Your Keymap","titles":["QMK Configurator: Step by Step"]},"600":{"title":"Step 5: Save Your Keymap for Future Changes","titles":["QMK Configurator: Step by Step"]},"601":{"title":"Step 6: Compile Your Firmware File","titles":["QMK Configurator: Step by Step"]},"602":{"title":"Next steps: Flashing Your Keyboard","titles":["QMK Configurator: Step by Step"]},"603":{"title":"How to Contribute","titles":[]},"604":{"title":"I Don't Want to Read This Whole Thing! I Just Have a Question!","titles":["How to Contribute"]},"605":{"title":"Project Overview","titles":[]},"606":{"title":"Where Can I Go for Help?","titles":[]},"607":{"title":"How Do I Make a Contribution?","titles":[]},"608":{"title":"Coding Conventions","titles":[]},"609":{"title":"General Guidelines","titles":[]},"610":{"title":"Documentation","titles":["General Guidelines"]},"611":{"title":"Previewing the Documentation","titles":["General Guidelines","Documentation"]},"612":{"title":"Keyboards","titles":["General Guidelines"]},"613":{"title":"Quantum/TMK Core","titles":["General Guidelines"]},"614":{"title":"Refactoring","titles":["General Guidelines"]},"615":{"title":"What Does the Code of Conduct Mean for Me?","titles":[]},"616":{"title":"Configurator Troubleshooting","titles":[]},"617":{"title":"My .json file is not working","titles":["Configurator Troubleshooting"]},"618":{"title":"There are extra spaces in my layout? What do I do?","titles":["Configurator Troubleshooting"]},"619":{"title":"What is the keycode for...","titles":["Configurator Troubleshooting"]},"620":{"title":"It won't compile","titles":["Configurator Troubleshooting"]},"621":{"title":"Problems and Bugs","titles":["Configurator Troubleshooting"]},"622":{"title":"Custom Matrix","titles":[]},"623":{"title":"Prerequisites","titles":["Custom Matrix"]},"624":{"title":"'lite'","titles":["Custom Matrix"]},"625":{"title":"Full Replacement","titles":["Custom Matrix"]},"626":{"title":"How to Customize Your Keyboard's Behavior","titles":[]},"627":{"title":"A Word on Core vs Keyboards vs Keymap","titles":["How to Customize Your Keyboard's Behavior"]},"628":{"title":"Custom Keycodes","titles":[]},"629":{"title":"Defining a New Keycode","titles":["Custom Keycodes"]},"630":{"title":"Programming the Behavior of Any Keycode","titles":["Custom Keycodes"]},"631":{"title":"Example process_record_user() Implementation","titles":["Custom Keycodes","Programming the Behavior of Any Keycode"]},"632":{"title":"process_record_* Function Documentation","titles":["Custom Keycodes","Programming the Behavior of Any Keycode"]},"633":{"title":"Keyboard Initialization Code","titles":[]},"634":{"title":"Keyboard Pre Initialization code","titles":["Keyboard Initialization Code"]},"635":{"title":"Example keyboard_pre_init_user() Implementation","titles":["Keyboard Initialization Code","Keyboard Pre Initialization code"]},"636":{"title":"keyboard_pre_init_* Function Documentation","titles":["Keyboard Initialization Code","Keyboard Pre Initialization code"]},"637":{"title":"Matrix Initialization Code","titles":["Keyboard Initialization Code"]},"638":{"title":"matrix_init_* Function Documentation","titles":["Keyboard Initialization Code","Matrix Initialization Code"]},"639":{"title":"Low-level Matrix Overrides Function Documentation","titles":["Keyboard Initialization Code","Matrix Initialization Code"]},"640":{"title":"Keyboard Post Initialization code","titles":["Keyboard Initialization Code"]},"641":{"title":"Example keyboard_post_init_user() Implementation","titles":["Keyboard Initialization Code","Keyboard Post Initialization code"]},"642":{"title":"keyboard_post_init_* Function Documentation","titles":["Keyboard Initialization Code","Keyboard Post Initialization code"]},"643":{"title":"Matrix Scanning Code","titles":[]},"644":{"title":"Example matrix_scan_* Implementation","titles":["Matrix Scanning Code"]},"645":{"title":"matrix_scan_* Function Documentation","titles":["Matrix Scanning Code"]},"646":{"title":"Keyboard housekeeping","titles":[]},"647":{"title":"Example void housekeeping_task_user(void) implementation","titles":["Keyboard housekeeping"]},"648":{"title":"Keyboard Idling/Wake Code","titles":[]},"649":{"title":"Example suspend_power_down_user() and suspend_wakeup_init_user() Implementation","titles":["Keyboard Idling/Wake Code"]},"650":{"title":"Keyboard suspend/wake Function Documentation","titles":["Keyboard Idling/Wake Code"]},"651":{"title":"Keyboard Shutdown/Reboot Code","titles":[]},"652":{"title":"Example shutdown_kb() Implementation","titles":["Keyboard Shutdown/Reboot Code"]},"653":{"title":"Example shutdown_user() Implementation","titles":["Keyboard Shutdown/Reboot Code"]},"654":{"title":"Keyboard shutdown/reboot Function Documentation","titles":["Keyboard Shutdown/Reboot Code"]},"655":{"title":"Deferred Execution","titles":[]},"656":{"title":"Deferred executor callbacks","titles":["Deferred Execution"]},"657":{"title":"Deferred executor registration","titles":["Deferred Execution"]},"658":{"title":"Extending a deferred execution","titles":["Deferred Execution"]},"659":{"title":"Cancelling a deferred execution","titles":["Deferred Execution"]},"660":{"title":"Deferred callback limits","titles":["Deferred Execution"]},"661":{"title":"Advanced topics","titles":[]},"662":{"title":"Layer Change Code","titles":["Advanced topics"]},"663":{"title":"Persistent Configuration (EEPROM)","titles":["Advanced topics"]},"664":{"title":"Data Driven Configuration","titles":[]},"665":{"title":"History","titles":["Data Driven Configuration"]},"666":{"title":"Overview","titles":["Data Driven Configuration"]},"667":{"title":"Adding an option to info.json","titles":["Data Driven Configuration"]},"668":{"title":"Add it to the schema","titles":["Data Driven Configuration","Adding an option to info.json"]},"669":{"title":"Add a mapping","titles":["Data Driven Configuration","Adding an option to info.json"]},"670":{"title":"Info Key","titles":["Data Driven Configuration","Adding an option to info.json","Add a mapping"]},"671":{"title":"Value Types","titles":["Data Driven Configuration","Adding an option to info.json","Add a mapping"]},"672":{"title":"Add code to extract it","titles":["Data Driven Configuration","Adding an option to info.json"]},"673":{"title":"Add code to generate it","titles":["Data Driven Configuration","Adding an option to info.json"]},"674":{"title":"Documentation Best Practices","titles":[]},"675":{"title":"Page Opening","titles":[]},"676":{"title":"Paragraphs","titles":[]},"677":{"title":"Headings","titles":[]},"678":{"title":"Styled Hint Blocks","titles":[]},"679":{"title":"Important","titles":["Styled Hint Blocks"]},"680":{"title":"General Tips","titles":["Styled Hint Blocks"]},"681":{"title":"Documenting Features","titles":[]},"682":{"title":"Documentation Templates","titles":[]},"683":{"title":"Keymap readme.md Template","titles":["Documentation Templates"]},"684":{"title":"Keyboard readme.md Template","titles":["Documentation Templates"]},"685":{"title":"Bootloader Driver Installation with Zadig","titles":[]},"686":{"title":"Installation","titles":["Bootloader Driver Installation with Zadig"]},"687":{"title":"Recovering from Installation to Wrong Device","titles":["Bootloader Driver Installation with Zadig"]},"688":{"title":"Uninstallation","titles":["Bootloader Driver Installation with Zadig"]},"689":{"title":"List of Known Bootloaders","titles":["Bootloader Driver Installation with Zadig"]},"690":{"title":"ADC Driver","titles":[]},"691":{"title":"Usage","titles":["ADC Driver"]},"692":{"title":"Channels","titles":["ADC Driver"]},"693":{"title":"AVR","titles":["ADC Driver","Channels"]},"694":{"title":"ARM","titles":["ADC Driver","Channels"]},"695":{"title":"STM32","titles":["ADC Driver","Channels","ARM"]},"696":{"title":"RP2040","titles":["ADC Driver","Channels","ARM"]},"697":{"title":"Functions","titles":["ADC Driver"]},"698":{"title":"AVR","titles":["ADC Driver","Functions"]},"699":{"title":"ARM","titles":["ADC Driver","Functions"]},"700":{"title":"Configuration","titles":["ADC Driver"]},"701":{"title":"ARM","titles":["ADC Driver"]},"702":{"title":"APA102 Driver","titles":[]},"703":{"title":"Usage","titles":["APA102 Driver"]},"704":{"title":"Basic Configuration","titles":["APA102 Driver"]},"705":{"title":"API","titles":["APA102 Driver"]},"706":{"title":"void apa102_init(void)","titles":["APA102 Driver","API"]},"707":{"title":"void apa102_set_color(uint16_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["APA102 Driver","API"]},"708":{"title":"Arguments","titles":["APA102 Driver","API","void apa102_set_color(uint16_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"709":{"title":"void apa102_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["APA102 Driver","API"]},"710":{"title":"Arguments","titles":["APA102 Driver","API","void apa102_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"711":{"title":"void apa102_flush(void)","titles":["APA102 Driver","API"]},"712":{"title":"void apa102_set_brightness(uint8_t brightness)","titles":["APA102 Driver","API"]},"713":{"title":"Arguments","titles":["APA102 Driver","API","void apa102_set_brightness(uint8_t brightness)"]},"714":{"title":"Audio Driver","titles":[]},"715":{"title":"AVR","titles":["Audio Driver"]},"716":{"title":"ARM","titles":["Audio Driver"]},"717":{"title":"DAC basic","titles":["Audio Driver","ARM"]},"718":{"title":"DAC additive","titles":["Audio Driver","ARM"]},"719":{"title":"DAC Config","titles":["Audio Driver","ARM"]},"720":{"title":"Notes on buffer size","titles":["Audio Driver","ARM","DAC Config"]},"721":{"title":"PWM hardware","titles":["Audio Driver","ARM"]},"722":{"title":"PWM software","titles":["Audio Driver","ARM"]},"723":{"title":"Testing Notes","titles":["Audio Driver","ARM"]},"724":{"title":"AW20216S Driver","titles":[]},"725":{"title":"Usage","titles":["AW20216S Driver"]},"726":{"title":"Basic Configuration","titles":["AW20216S Driver"]},"727":{"title":"Global Current Control","titles":["AW20216S Driver","Basic Configuration"]},"728":{"title":"ARM/ChibiOS Configuration","titles":["AW20216S Driver"]},"729":{"title":"LED Mapping","titles":["AW20216S Driver"]},"730":{"title":"API","titles":["AW20216S Driver"]},"731":{"title":"struct aw20216s_led_t","titles":["AW20216S Driver","API"]},"732":{"title":"Members","titles":["AW20216S Driver","API","struct aw20216s_led_t"]},"733":{"title":"void aw20216s_init(pin_t cs_pin)","titles":["AW20216S Driver","API"]},"734":{"title":"Arguments","titles":["AW20216S Driver","API","void aw20216s_init(pin_t cs_pin)"]},"735":{"title":"void aw20216s_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["AW20216S Driver","API"]},"736":{"title":"Arguments","titles":["AW20216S Driver","API","void aw20216s_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"737":{"title":"void aw20216s_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["AW20216S Driver","API"]},"738":{"title":"Arguments","titles":["AW20216S Driver","API","void aw20216s_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"739":{"title":"void aw20216s_update_pwm_buffers(pin_t cs_pin, uint8_t index)","titles":["AW20216S Driver","API"]},"740":{"title":"Arguments","titles":["AW20216S Driver","API","void aw20216s_update_pwm_buffers(pin_t cs_pin, uint8_t index)"]},"741":{"title":"Battery Driver","titles":[]},"742":{"title":"Usage","titles":["Battery Driver"]},"743":{"title":"Driver Configuration","titles":["Battery Driver"]},"744":{"title":"ADC Driver","titles":["Battery Driver","Driver Configuration"]},"745":{"title":"Custom Driver","titles":["Battery Driver","Driver Configuration"]},"746":{"title":"EEPROM Driver Configuration","titles":[]},"747":{"title":"Vendor Driver Configuration","titles":["EEPROM Driver Configuration"]},"748":{"title":"STM32 L0/L1 Configuration","titles":["EEPROM Driver Configuration","Vendor Driver Configuration"]},"749":{"title":"I2C Driver Configuration","titles":["EEPROM Driver Configuration"]},"750":{"title":"SPI Driver Configuration","titles":["EEPROM Driver Configuration"]},"751":{"title":"Transient Driver configuration","titles":["EEPROM Driver Configuration"]},"752":{"title":"Wear-leveling Driver Configuration","titles":["EEPROM Driver Configuration"]},"753":{"title":"Wear-leveling Configuration","titles":[]},"754":{"title":"Wear-leveling Embedded Flash Driver Configuration","titles":["Wear-leveling Configuration"]},"755":{"title":"Wear-leveling SPI Flash Driver Configuration","titles":["Wear-leveling Configuration"]},"756":{"title":"Wear-leveling RP2040 Driver Configuration","titles":["Wear-leveling Configuration"]},"757":{"title":"Wear-leveling Legacy EEPROM Emulation Driver Configuration","titles":["Wear-leveling Configuration"]},"758":{"title":"FLASH Driver Configuration","titles":[]},"759":{"title":"SPI FLASH Driver Configuration","titles":["FLASH Driver Configuration"]},"760":{"title":"GPIO Control","titles":[]},"761":{"title":"Macros","titles":["GPIO Control"]},"762":{"title":"Advanced Settings","titles":["GPIO Control"]},"763":{"title":"Atomic Operation","titles":["GPIO Control"]},"764":{"title":"I2C Master Driver","titles":[]},"765":{"title":"Usage","titles":["I2C Master Driver"]},"766":{"title":"I2C Addressing","titles":["I2C Master Driver"]},"767":{"title":"AVR Configuration","titles":["I2C Master Driver"]},"768":{"title":"ChibiOS/ARM Configuration","titles":["I2C Master Driver"]},"769":{"title":"I2Cv1","titles":["I2C Master Driver","ChibiOS/ARM Configuration"]},"770":{"title":"I2Cv2","titles":["I2C Master Driver","ChibiOS/ARM Configuration"]},"771":{"title":"API","titles":["I2C Master Driver"]},"772":{"title":"void i2c_init(void)","titles":["I2C Master Driver","API"]},"773":{"title":"i2c_status_t i2c_transmit(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"774":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"775":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"776":{"title":"i2c_status_t i2c_transmit_P(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"777":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit_P(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"778":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit_P(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"779":{"title":"i2c_status_t i2c_receive(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"780":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_receive(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout)"]},"781":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_receive(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout)"]},"782":{"title":"i2c_status_t i2c_transmit_and_receive(uint8_t address, const uint8_t* tx_data, uint16_t tx_length, uint8_t* rx_data, uint16_t rx_length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"783":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit_and_receive(uint8_t address, const uint8_t* tx_data, uint16_t tx_length, uint8_t* rx_data, uint16_t rx_length, uint16_t timeout)"]},"784":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_transmit_and_receive(uint8_t address, const uint8_t* tx_data, uint16_t tx_length, uint8_t* rx_data, uint16_t rx_length, uint16_t timeout)"]},"785":{"title":"i2c_status_t i2c_write_register(uint8_t devaddr, uint8_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"786":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_write_register(uint8_t devaddr, uint8_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"787":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_write_register(uint8_t devaddr, uint8_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"788":{"title":"i2c_status_t i2c_write_register16(uint8_t devaddr, uint16_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"789":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_write_register16(uint8_t devaddr, uint16_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"790":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_write_register16(uint8_t devaddr, uint16_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)"]},"791":{"title":"i2c_status_t i2c_read_register(uint8_t devaddr, uint8_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"792":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_read_register(uint8_t devaddr, uint8_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)"]},"793":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_read_register(uint8_t devaddr, uint8_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)"]},"794":{"title":"i2c_status_t i2c_read_register16(uint8_t devaddr, uint16_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)","titles":["I2C Master Driver","API"]},"795":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_read_register16(uint8_t devaddr, uint16_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)"]},"796":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_read_register16(uint8_t devaddr, uint16_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)"]},"797":{"title":"i2c_status_t i2c_ping_address(uint8_t address, uint16_t timeout)","titles":["I2C Master Driver","API"]},"798":{"title":"Arguments","titles":["I2C Master Driver","API","i2c_status_t i2c_ping_address(uint8_t address, uint16_t timeout)"]},"799":{"title":"Return Value","titles":["I2C Master Driver","API","i2c_status_t i2c_ping_address(uint8_t address, uint16_t timeout)"]},"800":{"title":"IS31FL3218 Driver","titles":[]},"801":{"title":"Usage","titles":["IS31FL3218 Driver"]},"802":{"title":"Basic Configuration","titles":["IS31FL3218 Driver"]},"803":{"title":"I²C Addressing","titles":["IS31FL3218 Driver","Basic Configuration"]},"804":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3218 Driver"]},"805":{"title":"LED Mapping","titles":["IS31FL3218 Driver"]},"806":{"title":"API","titles":["IS31FL3218 Driver"]},"807":{"title":"struct is31fl3218_led_t","titles":["IS31FL3218 Driver","API"]},"808":{"title":"Members","titles":["IS31FL3218 Driver","API","struct is31fl3218_led_t"]},"809":{"title":"void is31fl3218_init(void)","titles":["IS31FL3218 Driver","API"]},"810":{"title":"void is31fl3218_write_register(uint8_t reg, uint8_t data)","titles":["IS31FL3218 Driver","API"]},"811":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_write_register(uint8_t reg, uint8_t data)"]},"812":{"title":"void is31fl3218_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3218 Driver","API"]},"813":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"814":{"title":"void is31fl3218_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3218 Driver","API"]},"815":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"816":{"title":"void is31fl3218_set_value(int index, uint8_t value)","titles":["IS31FL3218 Driver","API"]},"817":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_value(int index, uint8_t value)"]},"818":{"title":"void is31fl3218_set_value_all(uint8_t value)","titles":["IS31FL3218 Driver","API"]},"819":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_value_all(uint8_t value)"]},"820":{"title":"void is31fl3218_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3218 Driver","API"]},"821":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"822":{"title":"void is31fl3218_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3218 Driver","API"]},"823":{"title":"Arguments","titles":["IS31FL3218 Driver","API","void is31fl3218_set_led_control_register(uint8_t index, bool value)"]},"824":{"title":"void is31fl3218_update_pwm_buffers(void)","titles":["IS31FL3218 Driver","API"]},"825":{"title":"void is31fl3218_update_led_control_registers(void)","titles":["IS31FL3218 Driver","API"]},"826":{"title":"IS31FL3236 Driver","titles":[]},"827":{"title":"Usage","titles":["IS31FL3236 Driver"]},"828":{"title":"Basic Configuration","titles":["IS31FL3236 Driver"]},"829":{"title":"I²C Addressing","titles":["IS31FL3236 Driver","Basic Configuration"]},"830":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3236 Driver"]},"831":{"title":"LED Mapping","titles":["IS31FL3236 Driver"]},"832":{"title":"API","titles":["IS31FL3236 Driver"]},"833":{"title":"struct is31fl3236_led_t","titles":["IS31FL3236 Driver","API"]},"834":{"title":"Members","titles":["IS31FL3236 Driver","API","struct is31fl3236_led_t"]},"835":{"title":"void is31fl3236_init(uint8_t index)","titles":["IS31FL3236 Driver","API"]},"836":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_init(uint8_t index)"]},"837":{"title":"void is31fl3236_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3236 Driver","API"]},"838":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"839":{"title":"void is31fl3236_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3236 Driver","API"]},"840":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"841":{"title":"void is31fl3236_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3236 Driver","API"]},"842":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"843":{"title":"void is31fl3236_set_value(int index, uint8_t value)","titles":["IS31FL3236 Driver","API"]},"844":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_value(int index, uint8_t value)"]},"845":{"title":"void is31fl3236_set_value_all(uint8_t value)","titles":["IS31FL3236 Driver","API"]},"846":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_value_all(uint8_t value)"]},"847":{"title":"void is31fl3236_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3236 Driver","API"]},"848":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"849":{"title":"void is31fl3236_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3236 Driver","API"]},"850":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_set_led_control_register(uint8_t index, bool value)"]},"851":{"title":"void is31fl3236_update_pwm_buffers(uint8_t index)","titles":["IS31FL3236 Driver","API"]},"852":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_update_pwm_buffers(uint8_t index)"]},"853":{"title":"void is31fl3236_update_led_control_registers(uint8_t index)","titles":["IS31FL3236 Driver","API"]},"854":{"title":"Arguments","titles":["IS31FL3236 Driver","API","void is31fl3236_update_led_control_registers(uint8_t index)"]},"855":{"title":"IS31FL3729 Driver","titles":[]},"856":{"title":"Usage","titles":["IS31FL3729 Driver"]},"857":{"title":"Basic Configuration","titles":["IS31FL3729 Driver"]},"858":{"title":"I²C Addressing","titles":["IS31FL3729 Driver","Basic Configuration"]},"859":{"title":"PWM Frequency","titles":["IS31FL3729 Driver","Basic Configuration"]},"860":{"title":"De-Ghosting","titles":["IS31FL3729 Driver","Basic Configuration"]},"861":{"title":"Global Current Control","titles":["IS31FL3729 Driver","Basic Configuration"]},"862":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3729 Driver"]},"863":{"title":"LED Mapping","titles":["IS31FL3729 Driver"]},"864":{"title":"API","titles":["IS31FL3729 Driver"]},"865":{"title":"struct is31fl3729_led_t","titles":["IS31FL3729 Driver","API"]},"866":{"title":"Members","titles":["IS31FL3729 Driver","API","struct is31fl3729_led_t"]},"867":{"title":"void is31fl3729_init(uint8_t index)","titles":["IS31FL3729 Driver","API"]},"868":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_init(uint8_t index)"]},"869":{"title":"void is31fl3729_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3729 Driver","API"]},"870":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"871":{"title":"void is31fl3729_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3729 Driver","API"]},"872":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"873":{"title":"void is31fl3729_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3729 Driver","API"]},"874":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"875":{"title":"void is31fl3729_set_value(int index, uint8_t value)","titles":["IS31FL3729 Driver","API"]},"876":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_value(int index, uint8_t value)"]},"877":{"title":"void is31fl3729_set_value_all(uint8_t value)","titles":["IS31FL3729 Driver","API"]},"878":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_value_all(uint8_t value)"]},"879":{"title":"void is31fl3729_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3729 Driver","API"]},"880":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"881":{"title":"void is31fl3729_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3729 Driver","API"]},"882":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_set_scaling_register(uint8_t index, uint8_t value)"]},"883":{"title":"void is31fl3729_update_pwm_buffers(uint8_t index)","titles":["IS31FL3729 Driver","API"]},"884":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_update_pwm_buffers(uint8_t index)"]},"885":{"title":"void is31fl3729_update_scaling_registers(uint8_t index)","titles":["IS31FL3729 Driver","API"]},"886":{"title":"Arguments","titles":["IS31FL3729 Driver","API","void is31fl3729_update_scaling_registers(uint8_t index)"]},"887":{"title":"IS31FL3731 Driver","titles":[]},"888":{"title":"Usage","titles":["IS31FL3731 Driver"]},"889":{"title":"Basic Configuration","titles":["IS31FL3731 Driver"]},"890":{"title":"I²C Addressing","titles":["IS31FL3731 Driver","Basic Configuration"]},"891":{"title":"De-Ghosting","titles":["IS31FL3731 Driver","Basic Configuration"]},"892":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3731 Driver"]},"893":{"title":"LED Mapping","titles":["IS31FL3731 Driver"]},"894":{"title":"API","titles":["IS31FL3731 Driver"]},"895":{"title":"struct is31fl3731_led_t","titles":["IS31FL3731 Driver","API"]},"896":{"title":"Members","titles":["IS31FL3731 Driver","API","struct is31fl3731_led_t"]},"897":{"title":"void is31fl3731_init(uint8_t index)","titles":["IS31FL3731 Driver","API"]},"898":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_init(uint8_t index)"]},"899":{"title":"void is31fl3731_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3731 Driver","API"]},"900":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"901":{"title":"void is31fl3731_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3731 Driver","API"]},"902":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_select_page(uint8_t index, uint8_t page)"]},"903":{"title":"void is31fl3731_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3731 Driver","API"]},"904":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"905":{"title":"void is31fl3731_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3731 Driver","API"]},"906":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"907":{"title":"void is31fl3731_set_value(int index, uint8_t value)","titles":["IS31FL3731 Driver","API"]},"908":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_value(int index, uint8_t value)"]},"909":{"title":"void is31fl3731_set_value_all(uint8_t value)","titles":["IS31FL3731 Driver","API"]},"910":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_value_all(uint8_t value)"]},"911":{"title":"void is31fl3731_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3731 Driver","API"]},"912":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"913":{"title":"void is31fl3731_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3731 Driver","API"]},"914":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_set_led_control_register(uint8_t index, bool value)"]},"915":{"title":"void is31fl3731_update_pwm_buffers(uint8_t index)","titles":["IS31FL3731 Driver","API"]},"916":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_update_pwm_buffers(uint8_t index)"]},"917":{"title":"void is31fl3731_update_led_control_registers(uint8_t index)","titles":["IS31FL3731 Driver","API"]},"918":{"title":"Arguments","titles":["IS31FL3731 Driver","API","void is31fl3731_update_led_control_registers(uint8_t index)"]},"919":{"title":"IS31FL3733 Driver","titles":[]},"920":{"title":"Usage","titles":["IS31FL3733 Driver"]},"921":{"title":"Basic Configuration","titles":["IS31FL3733 Driver"]},"922":{"title":"I²C Addressing","titles":["IS31FL3733 Driver","Basic Configuration"]},"923":{"title":"Multi-Driver Synchronization","titles":["IS31FL3733 Driver","Basic Configuration"]},"924":{"title":"PWM Frequency","titles":["IS31FL3733 Driver","Basic Configuration"]},"925":{"title":"De-Ghosting","titles":["IS31FL3733 Driver","Basic Configuration"]},"926":{"title":"Global Current Control","titles":["IS31FL3733 Driver","Basic Configuration"]},"927":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3733 Driver"]},"928":{"title":"LED Mapping","titles":["IS31FL3733 Driver"]},"929":{"title":"API","titles":["IS31FL3733 Driver"]},"930":{"title":"struct is31fl3733_led_t","titles":["IS31FL3733 Driver","API"]},"931":{"title":"Members","titles":["IS31FL3733 Driver","API","struct is31fl3733_led_t"]},"932":{"title":"void is31fl3733_init(uint8_t index)","titles":["IS31FL3733 Driver","API"]},"933":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_init(uint8_t index)"]},"934":{"title":"void is31fl3733_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3733 Driver","API"]},"935":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"936":{"title":"void is31fl3733_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3733 Driver","API"]},"937":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_select_page(uint8_t index, uint8_t page)"]},"938":{"title":"void is31fl3733_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3733 Driver","API"]},"939":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"940":{"title":"void is31fl3733_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3733 Driver","API"]},"941":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"942":{"title":"void is31fl3733_set_value(int index, uint8_t value)","titles":["IS31FL3733 Driver","API"]},"943":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_value(int index, uint8_t value)"]},"944":{"title":"void is31fl3733_set_value_all(uint8_t value)","titles":["IS31FL3733 Driver","API"]},"945":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_value_all(uint8_t value)"]},"946":{"title":"void is31fl3733_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3733 Driver","API"]},"947":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"948":{"title":"void is31fl3733_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3733 Driver","API"]},"949":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_set_led_control_register(uint8_t index, bool value)"]},"950":{"title":"void is31fl3733_update_pwm_buffers(uint8_t index)","titles":["IS31FL3733 Driver","API"]},"951":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_update_pwm_buffers(uint8_t index)"]},"952":{"title":"void is31fl3733_update_led_control_registers(uint8_t index)","titles":["IS31FL3733 Driver","API"]},"953":{"title":"Arguments","titles":["IS31FL3733 Driver","API","void is31fl3733_update_led_control_registers(uint8_t index)"]},"954":{"title":"IS31FL3736 Driver","titles":[]},"955":{"title":"Usage","titles":["IS31FL3736 Driver"]},"956":{"title":"Basic Configuration","titles":["IS31FL3736 Driver"]},"957":{"title":"I²C Addressing","titles":["IS31FL3736 Driver","Basic Configuration"]},"958":{"title":"PWM Frequency","titles":["IS31FL3736 Driver","Basic Configuration"]},"959":{"title":"De-Ghosting","titles":["IS31FL3736 Driver","Basic Configuration"]},"960":{"title":"Global Current Control","titles":["IS31FL3736 Driver","Basic Configuration"]},"961":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3736 Driver"]},"962":{"title":"LED Mapping","titles":["IS31FL3736 Driver"]},"963":{"title":"API","titles":["IS31FL3736 Driver"]},"964":{"title":"struct is31fl3736_led_t","titles":["IS31FL3736 Driver","API"]},"965":{"title":"Members","titles":["IS31FL3736 Driver","API","struct is31fl3736_led_t"]},"966":{"title":"void is31fl3736_init(uint8_t index)","titles":["IS31FL3736 Driver","API"]},"967":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_init(uint8_t index)"]},"968":{"title":"void is31fl3736_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3736 Driver","API"]},"969":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"970":{"title":"void is31fl3736_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3736 Driver","API"]},"971":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_select_page(uint8_t index, uint8_t page)"]},"972":{"title":"void is31fl3736_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3736 Driver","API"]},"973":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"974":{"title":"void is31fl3736_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3736 Driver","API"]},"975":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"976":{"title":"void is31fl3736_set_value(int index, uint8_t value)","titles":["IS31FL3736 Driver","API"]},"977":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_value(int index, uint8_t value)"]},"978":{"title":"void is31fl3736_set_value_all(uint8_t value)","titles":["IS31FL3736 Driver","API"]},"979":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_value_all(uint8_t value)"]},"980":{"title":"void is31fl3736_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3736 Driver","API"]},"981":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"982":{"title":"void is31fl3736_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3736 Driver","API"]},"983":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_set_led_control_register(uint8_t index, bool value)"]},"984":{"title":"void is31fl3736_update_pwm_buffers(uint8_t index)","titles":["IS31FL3736 Driver","API"]},"985":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_update_pwm_buffers(uint8_t index)"]},"986":{"title":"void is31fl3736_update_led_control_registers(uint8_t index)","titles":["IS31FL3736 Driver","API"]},"987":{"title":"Arguments","titles":["IS31FL3736 Driver","API","void is31fl3736_update_led_control_registers(uint8_t index)"]},"988":{"title":"IS31FL3737 Driver","titles":[]},"989":{"title":"Usage","titles":["IS31FL3737 Driver"]},"990":{"title":"Basic Configuration","titles":["IS31FL3737 Driver"]},"991":{"title":"I²C Addressing","titles":["IS31FL3737 Driver","Basic Configuration"]},"992":{"title":"PWM Frequency","titles":["IS31FL3737 Driver","Basic Configuration"]},"993":{"title":"De-Ghosting","titles":["IS31FL3737 Driver","Basic Configuration"]},"994":{"title":"Global Current Control","titles":["IS31FL3737 Driver","Basic Configuration"]},"995":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3737 Driver"]},"996":{"title":"LED Mapping","titles":["IS31FL3737 Driver"]},"997":{"title":"API","titles":["IS31FL3737 Driver"]},"998":{"title":"struct is31fl3737_led_t","titles":["IS31FL3737 Driver","API"]},"999":{"title":"Members","titles":["IS31FL3737 Driver","API","struct is31fl3737_led_t"]},"1000":{"title":"void is31fl3737_init(uint8_t index)","titles":["IS31FL3737 Driver","API"]},"1001":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_init(uint8_t index)"]},"1002":{"title":"void is31fl3737_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3737 Driver","API"]},"1003":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1004":{"title":"void is31fl3737_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3737 Driver","API"]},"1005":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_select_page(uint8_t index, uint8_t page)"]},"1006":{"title":"void is31fl3737_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3737 Driver","API"]},"1007":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1008":{"title":"void is31fl3737_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3737 Driver","API"]},"1009":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1010":{"title":"void is31fl3737_set_value(int index, uint8_t value)","titles":["IS31FL3737 Driver","API"]},"1011":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_value(int index, uint8_t value)"]},"1012":{"title":"void is31fl3737_set_value_all(uint8_t value)","titles":["IS31FL3737 Driver","API"]},"1013":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_value_all(uint8_t value)"]},"1014":{"title":"void is31fl3737_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3737 Driver","API"]},"1015":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"1016":{"title":"void is31fl3737_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3737 Driver","API"]},"1017":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_set_led_control_register(uint8_t index, bool value)"]},"1018":{"title":"void is31fl3737_update_pwm_buffers(uint8_t index)","titles":["IS31FL3737 Driver","API"]},"1019":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_update_pwm_buffers(uint8_t index)"]},"1020":{"title":"void is31fl3737_update_led_control_registers(uint8_t index)","titles":["IS31FL3737 Driver","API"]},"1021":{"title":"Arguments","titles":["IS31FL3737 Driver","API","void is31fl3737_update_led_control_registers(uint8_t index)"]},"1022":{"title":"IS31FL3741 Driver","titles":[]},"1023":{"title":"Usage","titles":["IS31FL3741 Driver"]},"1024":{"title":"Basic Configuration","titles":["IS31FL3741 Driver"]},"1025":{"title":"I²C Addressing","titles":["IS31FL3741 Driver","Basic Configuration"]},"1026":{"title":"PWM Frequency","titles":["IS31FL3741 Driver","Basic Configuration"]},"1027":{"title":"De-Ghosting","titles":["IS31FL3741 Driver","Basic Configuration"]},"1028":{"title":"Global Current Control","titles":["IS31FL3741 Driver","Basic Configuration"]},"1029":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3741 Driver"]},"1030":{"title":"LED Mapping","titles":["IS31FL3741 Driver"]},"1031":{"title":"API","titles":["IS31FL3741 Driver"]},"1032":{"title":"struct is31fl3741_led_t","titles":["IS31FL3741 Driver","API"]},"1033":{"title":"Members","titles":["IS31FL3741 Driver","API","struct is31fl3741_led_t"]},"1034":{"title":"void is31fl3741_init(uint8_t index)","titles":["IS31FL3741 Driver","API"]},"1035":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_init(uint8_t index)"]},"1036":{"title":"void is31fl3741_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3741 Driver","API"]},"1037":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1038":{"title":"void is31fl3741_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3741 Driver","API"]},"1039":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_select_page(uint8_t index, uint8_t page)"]},"1040":{"title":"void is31fl3741_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3741 Driver","API"]},"1041":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1042":{"title":"void is31fl3741_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3741 Driver","API"]},"1043":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1044":{"title":"void is31fl3741_set_value(int index, uint8_t value)","titles":["IS31FL3741 Driver","API"]},"1045":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_value(int index, uint8_t value)"]},"1046":{"title":"void is31fl3741_set_value_all(uint8_t value)","titles":["IS31FL3741 Driver","API"]},"1047":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_value_all(uint8_t value)"]},"1048":{"title":"void is31fl3741_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["IS31FL3741 Driver","API"]},"1049":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"1050":{"title":"void is31fl3741_set_led_control_register(uint8_t index, bool value)","titles":["IS31FL3741 Driver","API"]},"1051":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_set_led_control_register(uint8_t index, bool value)"]},"1052":{"title":"void is31fl3741_update_pwm_buffers(uint8_t index)","titles":["IS31FL3741 Driver","API"]},"1053":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_update_pwm_buffers(uint8_t index)"]},"1054":{"title":"void is31fl3741_update_led_control_registers(uint8_t index)","titles":["IS31FL3741 Driver","API"]},"1055":{"title":"Arguments","titles":["IS31FL3741 Driver","API","void is31fl3741_update_led_control_registers(uint8_t index)"]},"1056":{"title":"IS31FL3742A Driver","titles":[]},"1057":{"title":"Usage","titles":["IS31FL3742A Driver"]},"1058":{"title":"Basic Configuration","titles":["IS31FL3742A Driver"]},"1059":{"title":"I²C Addressing","titles":["IS31FL3742A Driver","Basic Configuration"]},"1060":{"title":"PWM Frequency","titles":["IS31FL3742A Driver","Basic Configuration"]},"1061":{"title":"De-Ghosting","titles":["IS31FL3742A Driver","Basic Configuration"]},"1062":{"title":"Global Current Control","titles":["IS31FL3742A Driver","Basic Configuration"]},"1063":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3742A Driver"]},"1064":{"title":"LED Mapping","titles":["IS31FL3742A Driver"]},"1065":{"title":"API","titles":["IS31FL3742A Driver"]},"1066":{"title":"struct is31fl3742a_led_t","titles":["IS31FL3742A Driver","API"]},"1067":{"title":"Members","titles":["IS31FL3742A Driver","API","struct is31fl3742a_led_t"]},"1068":{"title":"void is31fl3742a_init(uint8_t index)","titles":["IS31FL3742A Driver","API"]},"1069":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_init(uint8_t index)"]},"1070":{"title":"void is31fl3742a_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3742A Driver","API"]},"1071":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1072":{"title":"void is31fl3742a_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3742A Driver","API"]},"1073":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_select_page(uint8_t index, uint8_t page)"]},"1074":{"title":"void is31fl3742a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3742A Driver","API"]},"1075":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1076":{"title":"void is31fl3742a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3742A Driver","API"]},"1077":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1078":{"title":"void is31fl3742a_set_value(int index, uint8_t value)","titles":["IS31FL3742A Driver","API"]},"1079":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_value(int index, uint8_t value)"]},"1080":{"title":"void is31fl3742a_set_value_all(uint8_t value)","titles":["IS31FL3742A Driver","API"]},"1081":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_value_all(uint8_t value)"]},"1082":{"title":"void is31fl3742a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3742A Driver","API"]},"1083":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"1084":{"title":"void is31fl3742a_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3742A Driver","API"]},"1085":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_set_scaling_register(uint8_t index, uint8_t value)"]},"1086":{"title":"void is31fl3742a_update_pwm_buffers(uint8_t index)","titles":["IS31FL3742A Driver","API"]},"1087":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_update_pwm_buffers(uint8_t index)"]},"1088":{"title":"void is31fl3742a_update_scaling_registers(uint8_t index)","titles":["IS31FL3742A Driver","API"]},"1089":{"title":"Arguments","titles":["IS31FL3742A Driver","API","void is31fl3742a_update_scaling_registers(uint8_t index)"]},"1090":{"title":"IS31FL3743A Driver","titles":[]},"1091":{"title":"Usage","titles":["IS31FL3743A Driver"]},"1092":{"title":"Basic Configuration","titles":["IS31FL3743A Driver"]},"1093":{"title":"I²C Addressing","titles":["IS31FL3743A Driver","Basic Configuration"]},"1094":{"title":"Multi-Driver Synchronization","titles":["IS31FL3743A Driver","Basic Configuration"]},"1095":{"title":"De-Ghosting","titles":["IS31FL3743A Driver","Basic Configuration"]},"1096":{"title":"Global Current Control","titles":["IS31FL3743A Driver","Basic Configuration"]},"1097":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3743A Driver"]},"1098":{"title":"LED Mapping","titles":["IS31FL3743A Driver"]},"1099":{"title":"API","titles":["IS31FL3743A Driver"]},"1100":{"title":"struct is31fl3743a_led_t","titles":["IS31FL3743A Driver","API"]},"1101":{"title":"Members","titles":["IS31FL3743A Driver","API","struct is31fl3743a_led_t"]},"1102":{"title":"void is31fl3743a_init(uint8_t index)","titles":["IS31FL3743A Driver","API"]},"1103":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_init(uint8_t index)"]},"1104":{"title":"void is31fl3743a_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3743A Driver","API"]},"1105":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1106":{"title":"void is31fl3743a_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3743A Driver","API"]},"1107":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_select_page(uint8_t index, uint8_t page)"]},"1108":{"title":"void is31fl3743a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3743A Driver","API"]},"1109":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1110":{"title":"void is31fl3743a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3743A Driver","API"]},"1111":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1112":{"title":"void is31fl3743a_set_value(int index, uint8_t value)","titles":["IS31FL3743A Driver","API"]},"1113":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_value(int index, uint8_t value)"]},"1114":{"title":"void is31fl3743a_set_value_all(uint8_t value)","titles":["IS31FL3743A Driver","API"]},"1115":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_value_all(uint8_t value)"]},"1116":{"title":"void is31fl3743a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3743A Driver","API"]},"1117":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"1118":{"title":"void is31fl3743a_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3743A Driver","API"]},"1119":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_set_scaling_register(uint8_t index, uint8_t value)"]},"1120":{"title":"void is31fl3743a_update_pwm_buffers(uint8_t index)","titles":["IS31FL3743A Driver","API"]},"1121":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_update_pwm_buffers(uint8_t index)"]},"1122":{"title":"void is31fl3743a_update_scaling_registers(uint8_t index)","titles":["IS31FL3743A Driver","API"]},"1123":{"title":"Arguments","titles":["IS31FL3743A Driver","API","void is31fl3743a_update_scaling_registers(uint8_t index)"]},"1124":{"title":"IS31FL3745 Driver","titles":[]},"1125":{"title":"Usage","titles":["IS31FL3745 Driver"]},"1126":{"title":"Basic Configuration","titles":["IS31FL3745 Driver"]},"1127":{"title":"I²C Addressing","titles":["IS31FL3745 Driver","Basic Configuration"]},"1128":{"title":"Multi-Driver Synchronization","titles":["IS31FL3745 Driver","Basic Configuration"]},"1129":{"title":"De-Ghosting","titles":["IS31FL3745 Driver","Basic Configuration"]},"1130":{"title":"Global Current Control","titles":["IS31FL3745 Driver","Basic Configuration"]},"1131":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3745 Driver"]},"1132":{"title":"LED Mapping","titles":["IS31FL3745 Driver"]},"1133":{"title":"API","titles":["IS31FL3745 Driver"]},"1134":{"title":"struct is31fl3745_led_t","titles":["IS31FL3745 Driver","API"]},"1135":{"title":"Members","titles":["IS31FL3745 Driver","API","struct is31fl3745_led_t"]},"1136":{"title":"void is31fl3745_init(uint8_t index)","titles":["IS31FL3745 Driver","API"]},"1137":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_init(uint8_t index)"]},"1138":{"title":"void is31fl3745_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3745 Driver","API"]},"1139":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1140":{"title":"void is31fl3745_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3745 Driver","API"]},"1141":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_select_page(uint8_t index, uint8_t page)"]},"1142":{"title":"void is31fl3745_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3745 Driver","API"]},"1143":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1144":{"title":"void is31fl3745_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3745 Driver","API"]},"1145":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1146":{"title":"void is31fl3745_set_value(int index, uint8_t value)","titles":["IS31FL3745 Driver","API"]},"1147":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_value(int index, uint8_t value)"]},"1148":{"title":"void is31fl3745_set_value_all(uint8_t value)","titles":["IS31FL3745 Driver","API"]},"1149":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_value_all(uint8_t value)"]},"1150":{"title":"void is31fl3745_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3745 Driver","API"]},"1151":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"1152":{"title":"void is31fl3745_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3745 Driver","API"]},"1153":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_set_scaling_register(uint8_t index, uint8_t value)"]},"1154":{"title":"void is31fl3745_update_pwm_buffers(uint8_t index)","titles":["IS31FL3745 Driver","API"]},"1155":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_update_pwm_buffers(uint8_t index)"]},"1156":{"title":"void is31fl3745_update_scaling_registers(uint8_t index)","titles":["IS31FL3745 Driver","API"]},"1157":{"title":"Arguments","titles":["IS31FL3745 Driver","API","void is31fl3745_update_scaling_registers(uint8_t index)"]},"1158":{"title":"IS31FL3746A Driver","titles":[]},"1159":{"title":"Usage","titles":["IS31FL3746A Driver"]},"1160":{"title":"Basic Configuration","titles":["IS31FL3746A Driver"]},"1161":{"title":"I²C Addressing","titles":["IS31FL3746A Driver","Basic Configuration"]},"1162":{"title":"PWM Frequency","titles":["IS31FL3746A Driver","Basic Configuration"]},"1163":{"title":"De-Ghosting","titles":["IS31FL3746A Driver","Basic Configuration"]},"1164":{"title":"Global Current Control","titles":["IS31FL3746A Driver","Basic Configuration"]},"1165":{"title":"ARM/ChibiOS Configuration","titles":["IS31FL3746A Driver"]},"1166":{"title":"LED Mapping","titles":["IS31FL3746A Driver"]},"1167":{"title":"API","titles":["IS31FL3746A Driver"]},"1168":{"title":"struct is31fl3746a_led_t","titles":["IS31FL3746A Driver","API"]},"1169":{"title":"Members","titles":["IS31FL3746A Driver","API","struct is31fl3746a_led_t"]},"1170":{"title":"void is31fl3746a_init(uint8_t index)","titles":["IS31FL3746A Driver","API"]},"1171":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_init(uint8_t index)"]},"1172":{"title":"void is31fl3746a_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["IS31FL3746A Driver","API"]},"1173":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1174":{"title":"void is31fl3746a_select_page(uint8_t index, uint8_t page)","titles":["IS31FL3746A Driver","API"]},"1175":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_select_page(uint8_t index, uint8_t page)"]},"1176":{"title":"void is31fl3746a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3746A Driver","API"]},"1177":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1178":{"title":"void is31fl3746a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3746A Driver","API"]},"1179":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1180":{"title":"void is31fl3746a_set_value(int index, uint8_t value)","titles":["IS31FL3746A Driver","API"]},"1181":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_value(int index, uint8_t value)"]},"1182":{"title":"void is31fl3746a_set_value_all(uint8_t value)","titles":["IS31FL3746A Driver","API"]},"1183":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_value_all(uint8_t value)"]},"1184":{"title":"void is31fl3746a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)","titles":["IS31FL3746A Driver","API"]},"1185":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)"]},"1186":{"title":"void is31fl3746a_set_scaling_register(uint8_t index, uint8_t value)","titles":["IS31FL3746A Driver","API"]},"1187":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_set_scaling_register(uint8_t index, uint8_t value)"]},"1188":{"title":"void is31fl3746a_update_pwm_buffers(uint8_t index)","titles":["IS31FL3746A Driver","API"]},"1189":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_update_pwm_buffers(uint8_t index)"]},"1190":{"title":"void is31fl3746a_update_scaling_registers(uint8_t index)","titles":["IS31FL3746A Driver","API"]},"1191":{"title":"Arguments","titles":["IS31FL3746A Driver","API","void is31fl3746a_update_scaling_registers(uint8_t index)"]},"1192":{"title":"'serial' Driver","titles":[]},"1193":{"title":"Bitbang","titles":["'serial' Driver"]},"1194":{"title":"Pin configuration","titles":["'serial' Driver","Bitbang"]},"1195":{"title":"Setup","titles":["'serial' Driver","Bitbang"]},"1196":{"title":"USART Half-duplex","titles":["'serial' Driver"]},"1197":{"title":"Pin configuration","titles":["'serial' Driver","USART Half-duplex"]},"1198":{"title":"Setup","titles":["'serial' Driver","USART Half-duplex"]},"1199":{"title":"USART Full-duplex","titles":["'serial' Driver"]},"1200":{"title":"Pin configuration","titles":["'serial' Driver","USART Full-duplex"]},"1201":{"title":"Setup","titles":["'serial' Driver","USART Full-duplex"]},"1202":{"title":"Choosing a driver subsystem","titles":["'serial' Driver"]},"1203":{"title":"The SERIAL driver","titles":["'serial' Driver","Choosing a driver subsystem"]},"1204":{"title":"The SIO driver","titles":["'serial' Driver","Choosing a driver subsystem"]},"1205":{"title":"The PIO driver","titles":["'serial' Driver","Choosing a driver subsystem"]},"1206":{"title":"Advanced Configuration","titles":["'serial' Driver"]},"1207":{"title":"Baudrate","titles":["'serial' Driver","Advanced Configuration"]},"1208":{"title":"Timeout","titles":["'serial' Driver","Advanced Configuration"]},"1209":{"title":"Troubleshooting","titles":["'serial' Driver"]},"1210":{"title":"Alternate Functions for selected STM32 MCUs","titles":["'serial' Driver"]},"1211":{"title":"STM32F303 / Proton-C","titles":["'serial' Driver","Alternate Functions for selected STM32 MCUs"]},"1212":{"title":"STM32F072","titles":["'serial' Driver","Alternate Functions for selected STM32 MCUs"]},"1213":{"title":"STM32F103 Medium Density (C8-CB)","titles":["'serial' Driver","Alternate Functions for selected STM32 MCUs"]},"1214":{"title":"SNLED27351 Driver","titles":[]},"1215":{"title":"Usage","titles":["SNLED27351 Driver"]},"1216":{"title":"Basic Configuration","titles":["SNLED27351 Driver"]},"1217":{"title":"I²C Addressing","titles":["SNLED27351 Driver","Basic Configuration"]},"1218":{"title":"ARM/ChibiOS Configuration","titles":["SNLED27351 Driver"]},"1219":{"title":"LED Mapping","titles":["SNLED27351 Driver"]},"1220":{"title":"API","titles":["SNLED27351 Driver"]},"1221":{"title":"struct snled27351_led_t","titles":["SNLED27351 Driver","API"]},"1222":{"title":"Members","titles":["SNLED27351 Driver","API","struct snled27351_led_t"]},"1223":{"title":"void snled27351_init(uint8_t index)","titles":["SNLED27351 Driver","API"]},"1224":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_init(uint8_t index)"]},"1225":{"title":"void snled27351_write_register(uint8_t index, uint8_t reg, uint8_t data)","titles":["SNLED27351 Driver","API"]},"1226":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_write_register(uint8_t index, uint8_t reg, uint8_t data)"]},"1227":{"title":"void snled27351_select_page(uint8_t index, uint8_t page)","titles":["SNLED27351 Driver","API"]},"1228":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_select_page(uint8_t index, uint8_t page)"]},"1229":{"title":"void snled27351_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["SNLED27351 Driver","API"]},"1230":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1231":{"title":"void snled27351_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["SNLED27351 Driver","API"]},"1232":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1233":{"title":"void snled27351_set_value(int index, uint8_t value)","titles":["SNLED27351 Driver","API"]},"1234":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_value(int index, uint8_t value)"]},"1235":{"title":"void snled27351_set_value_all(uint8_t value)","titles":["SNLED27351 Driver","API"]},"1236":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_value_all(uint8_t value)"]},"1237":{"title":"void snled27351_set_led_control_register(uint8_t index, bool red, bool green, bool blue)","titles":["SNLED27351 Driver","API"]},"1238":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_led_control_register(uint8_t index, bool red, bool green, bool blue)"]},"1239":{"title":"void snled27351_set_led_control_register(uint8_t index, bool value)","titles":["SNLED27351 Driver","API"]},"1240":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_set_led_control_register(uint8_t index, bool value)"]},"1241":{"title":"void snled27351_update_pwm_buffers(uint8_t index)","titles":["SNLED27351 Driver","API"]},"1242":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_update_pwm_buffers(uint8_t index)"]},"1243":{"title":"void snled27351_update_led_control_registers(uint8_t index)","titles":["SNLED27351 Driver","API"]},"1244":{"title":"Arguments","titles":["SNLED27351 Driver","API","void snled27351_update_led_control_registers(uint8_t index)"]},"1245":{"title":"SPI Master Driver","titles":[]},"1246":{"title":"Usage","titles":["SPI Master Driver"]},"1247":{"title":"AVR Configuration","titles":["SPI Master Driver"]},"1248":{"title":"ChibiOS/ARM Configuration","titles":["SPI Master Driver"]},"1249":{"title":"API","titles":["SPI Master Driver"]},"1250":{"title":"void spi_init(void)","titles":["SPI Master Driver","API"]},"1251":{"title":"bool spi_start(pin_t slavePin, bool lsbFirst, uint8_t mode, uint16_t divisor)","titles":["SPI Master Driver","API"]},"1252":{"title":"Arguments","titles":["SPI Master Driver","API","bool spi_start(pin_t slavePin, bool lsbFirst, uint8_t mode, uint16_t divisor)"]},"1253":{"title":"Return Value","titles":["SPI Master Driver","API","bool spi_start(pin_t slavePin, bool lsbFirst, uint8_t mode, uint16_t divisor)"]},"1254":{"title":"spi_status_t spi_write(uint8_t data)","titles":["SPI Master Driver","API"]},"1255":{"title":"Arguments","titles":["SPI Master Driver","API","spi_status_t spi_write(uint8_t data)"]},"1256":{"title":"Return Value","titles":["SPI Master Driver","API","spi_status_t spi_write(uint8_t data)"]},"1257":{"title":"spi_status_t spi_read(void)","titles":["SPI Master Driver","API"]},"1258":{"title":"Return Value","titles":["SPI Master Driver","API","spi_status_t spi_read(void)"]},"1259":{"title":"spi_status_t spi_transmit(const uint8_t *data, uint16_t length)","titles":["SPI Master Driver","API"]},"1260":{"title":"Arguments","titles":["SPI Master Driver","API","spi_status_t spi_transmit(const uint8_t *data, uint16_t length)"]},"1261":{"title":"Return Value","titles":["SPI Master Driver","API","spi_status_t spi_transmit(const uint8_t *data, uint16_t length)"]},"1262":{"title":"spi_status_t spi_receive(uint8_t *data, uint16_t length)","titles":["SPI Master Driver","API"]},"1263":{"title":"Arguments","titles":["SPI Master Driver","API","spi_status_t spi_receive(uint8_t *data, uint16_t length)"]},"1264":{"title":"Return Value","titles":["SPI Master Driver","API","spi_status_t spi_receive(uint8_t *data, uint16_t length)"]},"1265":{"title":"void spi_stop(void)","titles":["SPI Master Driver","API"]},"1266":{"title":"UART Driver","titles":[]},"1267":{"title":"Usage","titles":["UART Driver"]},"1268":{"title":"AVR Configuration","titles":["UART Driver"]},"1269":{"title":"ChibiOS/ARM Configuration","titles":["UART Driver"]},"1270":{"title":"API","titles":["UART Driver"]},"1271":{"title":"void uart_init(uint32_t baud)","titles":["UART Driver","API"]},"1272":{"title":"Arguments","titles":["UART Driver","API","void uart_init(uint32_t baud)"]},"1273":{"title":"void uart_write(uint8_t data)","titles":["UART Driver","API"]},"1274":{"title":"Arguments","titles":["UART Driver","API","void uart_write(uint8_t data)"]},"1275":{"title":"uint8_t uart_read(void)","titles":["UART Driver","API"]},"1276":{"title":"Return Value","titles":["UART Driver","API","uint8_t uart_read(void)"]},"1277":{"title":"void uart_transmit(const uint8_t *data, uint16_t length)","titles":["UART Driver","API"]},"1278":{"title":"Arguments","titles":["UART Driver","API","void uart_transmit(const uint8_t *data, uint16_t length)"]},"1279":{"title":"void uart_receive(char *data, uint16_t length)","titles":["UART Driver","API"]},"1280":{"title":"Arguments","titles":["UART Driver","API","void uart_receive(char *data, uint16_t length)"]},"1281":{"title":"bool uart_available(void)","titles":["UART Driver","API"]},"1282":{"title":"Return Value","titles":["UART Driver","API","bool uart_available(void)"]},"1283":{"title":"WS2812 Driver","titles":[]},"1284":{"title":"Usage","titles":["WS2812 Driver"]},"1285":{"title":"Basic Configuration","titles":["WS2812 Driver"]},"1286":{"title":"Timing Adjustment","titles":["WS2812 Driver","Basic Configuration"]},"1287":{"title":"Byte Order","titles":["WS2812 Driver","Basic Configuration"]},"1288":{"title":"RGBW Support","titles":["WS2812 Driver","Basic Configuration"]},"1289":{"title":"Driver Configuration","titles":["WS2812 Driver"]},"1290":{"title":"Bitbang Driver","titles":["WS2812 Driver","Driver Configuration"]},"1291":{"title":"I2C Driver","titles":["WS2812 Driver","Driver Configuration"]},"1292":{"title":"PIO Driver","titles":["WS2812 Driver","Driver Configuration"]},"1293":{"title":"PWM Driver","titles":["WS2812 Driver","Driver Configuration"]},"1294":{"title":"SPI Driver","titles":["WS2812 Driver","Driver Configuration"]},"1295":{"title":"ChibiOS/ARM Configuration","titles":["WS2812 Driver"]},"1296":{"title":"Logic Levels","titles":["WS2812 Driver","ChibiOS/ARM Configuration"]},"1297":{"title":"1. Open Drain Circuit","titles":["WS2812 Driver","ChibiOS/ARM Configuration","Logic Levels"]},"1298":{"title":"2. Level Shifter","titles":["WS2812 Driver","ChibiOS/ARM Configuration","Logic Levels"]},"1299":{"title":"SPI Driver","titles":["WS2812 Driver","ChibiOS/ARM Configuration"]},"1300":{"title":"Setting the Baudrate","titles":["WS2812 Driver","ChibiOS/ARM Configuration","SPI Driver"]},"1301":{"title":"Circular Buffer","titles":["WS2812 Driver","ChibiOS/ARM Configuration","SPI Driver"]},"1302":{"title":"PIO Driver","titles":["WS2812 Driver","ChibiOS/ARM Configuration"]},"1303":{"title":"PWM Driver","titles":["WS2812 Driver","ChibiOS/ARM Configuration"]},"1304":{"title":"API","titles":["WS2812 Driver"]},"1305":{"title":"void ws2812_init(void)","titles":["WS2812 Driver","API"]},"1306":{"title":"void ws2812_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)","titles":["WS2812 Driver","API"]},"1307":{"title":"Arguments","titles":["WS2812 Driver","API","void ws2812_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)"]},"1308":{"title":"void ws2812_set_color_all(uint8_t red, uint8_t green, uint8_t blue)","titles":["WS2812 Driver","API"]},"1309":{"title":"Arguments","titles":["WS2812 Driver","API","void ws2812_set_color_all(uint8_t red, uint8_t green, uint8_t blue)"]},"1310":{"title":"void ws2812_flush(void)","titles":["WS2812 Driver","API"]},"1311":{"title":"Easy Maker - Build One-Off Projects In Configurator","titles":[]},"1312":{"title":"Quickstart","titles":["Easy Maker - Build One-Off Projects In Configurator"]},"1313":{"title":"Direct Pin","titles":[]},"1314":{"title":"Frequently Asked Build Questions","titles":[]},"1315":{"title":"Can't Program on Linux","titles":["Frequently Asked Build Questions"]},"1316":{"title":"Linux udev Rules","titles":["Frequently Asked Build Questions","Can't Program on Linux"]},"1317":{"title":"Serial device is not detected in bootloader mode on Linux","titles":["Frequently Asked Build Questions","Can't Program on Linux"]},"1318":{"title":"Unknown Device for DFU Bootloader","titles":["Frequently Asked Build Questions"]},"1319":{"title":"USB VID and PID","titles":["Frequently Asked Build Questions"]},"1320":{"title":"I just flashed my keyboard and it does nothing/keypresses don't register - it's also ARM (rev6 planck, clueboard 60, hs60v2, etc...) (Feb 2019)","titles":["Frequently Asked Build Questions","USB VID and PID"]},"1321":{"title":"Debugging FAQ","titles":[]},"1322":{"title":"Debugging","titles":["Debugging FAQ"]},"1323":{"title":"Debugging Tools","titles":["Debugging FAQ"]},"1324":{"title":"Debugging With QMK Toolbox","titles":["Debugging FAQ","Debugging Tools"]},"1325":{"title":"Debugging with QMK CLI","titles":["Debugging FAQ","Debugging Tools"]},"1326":{"title":"Debugging With hid_listen","titles":["Debugging FAQ","Debugging Tools"]},"1327":{"title":"Sending Your Own Debug Messages","titles":["Debugging FAQ"]},"1328":{"title":"Debug Examples","titles":["Debugging FAQ"]},"1329":{"title":"Which matrix position is this keypress?","titles":["Debugging FAQ","Debug Examples"]},"1330":{"title":"Which keycode is this keypress?","titles":["Debugging FAQ","Debug Examples"]},"1331":{"title":"How long did it take to scan for a keypress?","titles":["Debugging FAQ","Debug Examples"]},"1332":{"title":"hid_listen Can't Recognize Device","titles":["Debugging FAQ"]},"1333":{"title":"Can't Get Message on Console","titles":["Debugging FAQ"]},"1334":{"title":"Frequently Asked Questions","titles":[]},"1335":{"title":"What is QMK?","titles":["Frequently Asked Questions"]},"1336":{"title":"I don't know where to start!","titles":["Frequently Asked Questions"]},"1337":{"title":"How can I flash the firmware I built?","titles":["Frequently Asked Questions"]},"1338":{"title":"What if I have an issue that isn't covered here?","titles":["Frequently Asked Questions"]},"1339":{"title":"What if I found a bug?","titles":["Frequently Asked Questions"]},"1340":{"title":"But git and GitHub are intimidating!","titles":["Frequently Asked Questions"]},"1341":{"title":"I have a Keyboard that I want to add support for","titles":["Frequently Asked Questions"]},"1342":{"title":"What if I want to brand it with QMK?","titles":["Frequently Asked Questions","I have a Keyboard that I want to add support for"]},"1343":{"title":"What Differences Are There Between QMK and TMK?","titles":["Frequently Asked Questions"]},"1344":{"title":"Keymap FAQ","titles":[]},"1345":{"title":"What Keycodes Can I Use?","titles":["Keymap FAQ"]},"1346":{"title":"What Are the Default Keycodes?","titles":["Keymap FAQ"]},"1347":{"title":"How Can I Make Custom Names For Complex Keycodes?","titles":["Keymap FAQ"]},"1348":{"title":"My Keymap Doesn't Update When I Flash It","titles":["Keymap FAQ"]},"1349":{"title":"Some Of My Keys Are Swapped Or Not Working","titles":["Keymap FAQ"]},"1350":{"title":"The Menu Key Isn't Working","titles":["Keymap FAQ"]},"1351":{"title":"Power Keys Aren't Working","titles":["Keymap FAQ"]},"1352":{"title":"One Shot Modifier","titles":["Keymap FAQ"]},"1353":{"title":"Modifier/Layer Stuck","titles":["Keymap FAQ"]},"1354":{"title":"Mechanical Lock Switch Support","titles":["Keymap FAQ"]},"1355":{"title":"Input Special Characters Other Than ASCII like Cédille 'Ç'","titles":["Keymap FAQ"]},"1356":{"title":"Fn Key on macOS","titles":["Keymap FAQ"]},"1357":{"title":"Keys Supported in Mac OSX?","titles":["Keymap FAQ"]},"1358":{"title":"JIS Keys in Mac OSX","titles":["Keymap FAQ"]},"1359":{"title":"RN-42 Bluetooth Doesn't Work with Karabiner","titles":["Keymap FAQ"]},"1360":{"title":"Esc and \` on a Single Key","titles":["Keymap FAQ"]},"1361":{"title":"Eject on Mac OSX","titles":["Keymap FAQ"]},"1362":{"title":"What are "Real" and "Weak" modifiers?","titles":["Keymap FAQ"]},"1363":{"title":"Miscellaneous FAQ","titles":[]},"1364":{"title":"How do I test my keyboard?","titles":["Miscellaneous FAQ"]},"1365":{"title":"Safety Considerations","titles":["Miscellaneous FAQ"]},"1366":{"title":"NKRO Doesn't work","titles":["Miscellaneous FAQ"]},"1367":{"title":"TrackPoint Needs Reset Circuit (PS/2 Mouse Support)","titles":["Miscellaneous FAQ"]},"1368":{"title":"Can't Read Column of Matrix Beyond 16","titles":["Miscellaneous FAQ"]},"1369":{"title":"Special Extra Key Doesn't Work (System, Audio Control Keys)","titles":["Miscellaneous FAQ"]},"1370":{"title":"Wake from Sleep Doesn't Work","titles":["Miscellaneous FAQ"]},"1371":{"title":"Using Arduino?","titles":["Miscellaneous FAQ"]},"1372":{"title":"Enabling JTAG","titles":["Miscellaneous FAQ"]},"1373":{"title":"USB 3 Compatibility","titles":["Miscellaneous FAQ"]},"1374":{"title":"Mac Compatibility","titles":["Miscellaneous FAQ"]},"1375":{"title":"OS X 10.11 and Hub","titles":["Miscellaneous FAQ","Mac Compatibility"]},"1376":{"title":"Problem in BIOS (UEFI) Setup/Resume (Sleep & Wake)/Power Cycles","titles":["Miscellaneous FAQ"]},"1377":{"title":"Modifier Keys","titles":[]},"1378":{"title":"Checking Modifier State","titles":[]},"1379":{"title":"Examples","titles":["Checking Modifier State"]},"1380":{"title":"Alt + Escape for Alt + Tab","titles":["Checking Modifier State","Examples"]},"1381":{"title":"Shift + Backspace for Delete","titles":["Checking Modifier State","Examples"]},"1382":{"title":"Advanced topics","titles":[]},"1383":{"title":"Layers","titles":["Advanced topics"]},"1384":{"title":"Mod-Tap","titles":["Advanced topics"]},"1385":{"title":"One Shot Keys","titles":["Advanced topics"]},"1386":{"title":"Tap-Hold Configuration Options","titles":["Advanced topics"]},"1387":{"title":"Key Overrides","titles":["Advanced topics"]},"1388":{"title":"Converters","titles":[]},"1389":{"title":"Supported Converters","titles":["Converters"]},"1390":{"title":"Configuration","titles":["Converters"]},"1391":{"title":"Pro Micro Converters","titles":["Converters"]},"1392":{"title":"Proton C","titles":["Converters","Pro Micro Converters"]},"1393":{"title":"Adafruit KB2040","titles":["Converters","Pro Micro Converters"]},"1394":{"title":"SparkFun Pro Micro - RP2040, Blok, Bit-C PRO and Michi","titles":["Converters","Pro Micro Converters"]},"1395":{"title":"STeMCell","titles":["Converters","Pro Micro Converters"]},"1396":{"title":"Bonsai C4","titles":["Converters","Pro Micro Converters"]},"1397":{"title":"RP2040 Community Edition - Elite-Pi, Helios, and Liatris","titles":["Converters","Pro Micro Converters"]},"1398":{"title":"Svlinky","titles":["Converters","Pro Micro Converters"]},"1399":{"title":"Elite-C Converters","titles":["Converters"]},"1400":{"title":"STeMCell","titles":["Converters","Elite-C Converters"]},"1401":{"title":"RP2040 Community Edition","titles":["Converters","Elite-C Converters"]},"1402":{"title":"Advanced Topics","titles":["Converters"]},"1403":{"title":"Keyboard Configuration","titles":["Converters","Advanced Topics"]},"1404":{"title":"Additional Requirements","titles":["Converters","Advanced Topics","Keyboard Configuration"]},"1405":{"title":"Additional Keymap Configuration","titles":["Converters","Advanced Topics"]},"1406":{"title":"Conditional Configuration","titles":["Converters","Advanced Topics"]},"1407":{"title":"Pin Compatibility","titles":["Converters","Advanced Topics"]},"1408":{"title":"Available Pin Compatibility","titles":["Converters","Advanced Topics","Pin Compatibility"]},"1409":{"title":"Contact bounce / contact chatter","titles":[]},"1410":{"title":"Types of debounce algorithms","titles":["Contact bounce / contact chatter"]},"1411":{"title":"Supported Debounce Algorithms","titles":["Contact bounce / contact chatter"]},"1412":{"title":"Debounce Time","titles":["Contact bounce / contact chatter","Supported Debounce Algorithms"]},"1413":{"title":"Debounce Method","titles":["Contact bounce / contact chatter","Supported Debounce Algorithms"]},"1414":{"title":"Implementing your own debouncing code","titles":["Contact bounce / contact chatter","Supported Debounce Algorithms"]},"1415":{"title":"Persistent Configuration (EEPROM)","titles":[]},"1416":{"title":"Basic","titles":["Persistent Configuration (EEPROM)"]},"1417":{"title":"Example Implementation","titles":["Persistent Configuration (EEPROM)","Basic"]},"1418":{"title":"Basic API","titles":["Persistent Configuration (EEPROM)","Basic"]},"1419":{"title":"Datablock","titles":["Persistent Configuration (EEPROM)"]},"1420":{"title":"Example","titles":["Persistent Configuration (EEPROM)","Datablock"]},"1421":{"title":"Layers","titles":[]},"1422":{"title":"Switching and Toggling Layers","titles":["Layers"]},"1423":{"title":"Caveats","titles":["Layers","Switching and Toggling Layers"]},"1424":{"title":"Working with Layers","titles":["Layers"]},"1425":{"title":"Beginners","titles":["Layers","Working with Layers"]},"1426":{"title":"Intermediate Users","titles":["Layers","Working with Layers"]},"1427":{"title":"Advanced Users","titles":["Layers","Working with Layers"]},"1428":{"title":"Functions","titles":["Layers"]},"1429":{"title":"Layer Change Code","titles":["Layers"]},"1430":{"title":"Example layer_state_set_* Implementation","titles":["Layers","Layer Change Code"]},"1431":{"title":"Example: Keycode to cycle through layers","titles":["Layers","Layer Change Code"]},"1432":{"title":"layer_state_set_* Function Documentation","titles":["Layers","Layer Change Code"]},"1433":{"title":"Layouts: Using a Keymap with Multiple Keyboards","titles":[]},"1434":{"title":"Supporting a Layout","titles":["Layouts: Using a Keymap with Multiple Keyboards"]},"1435":{"title":"Building a Keymap","titles":["Layouts: Using a Keymap with Multiple Keyboards"]},"1436":{"title":"Conflicting layouts","titles":["Layouts: Using a Keymap with Multiple Keyboards","Building a Keymap"]},"1437":{"title":"Tips for Making Layouts Keyboard-Agnostic","titles":["Layouts: Using a Keymap with Multiple Keyboards"]},"1438":{"title":"Includes","titles":["Layouts: Using a Keymap with Multiple Keyboards","Tips for Making Layouts Keyboard-Agnostic"]},"1439":{"title":"Keymaps","titles":["Layouts: Using a Keymap with Multiple Keyboards","Tips for Making Layouts Keyboard-Agnostic"]},"1440":{"title":"Macros","titles":[]},"1441":{"title":"Using Macros In JSON Keymaps","titles":["Macros"]},"1442":{"title":"Selecting Your Host Keyboard Layout","titles":["Macros","Using Macros In JSON Keymaps"]},"1443":{"title":"Macro Basics","titles":["Macros","Using Macros In JSON Keymaps"]},"1444":{"title":"Object Format","titles":["Macros","Using Macros In JSON Keymaps","Macro Basics"]},"1445":{"title":"Using Macros in C Keymaps","titles":["Macros"]},"1446":{"title":"SEND_STRING() & process_record_user","titles":["Macros","Using Macros in C Keymaps"]},"1447":{"title":"Advanced Macros","titles":["Macros","Using Macros in C Keymaps","SEND_STRING() & process_record_user"]},"1448":{"title":"TAP, DOWN and UP","titles":["Macros","Using Macros in C Keymaps","SEND_STRING() & process_record_user"]},"1449":{"title":"Alternative Keymaps","titles":["Macros","Using Macros in C Keymaps","SEND_STRING() & process_record_user"]},"1450":{"title":"Strings in Memory","titles":["Macros","Using Macros in C Keymaps","SEND_STRING() & process_record_user"]},"1451":{"title":"Advanced Macro Functions","titles":["Macros","Using Macros in C Keymaps"]},"1452":{"title":"record->event.pressed","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1453":{"title":"register_code(<kc>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1454":{"title":"unregister_code(<kc>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1455":{"title":"tap_code(<kc>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1456":{"title":"tap_code_delay(<kc>, <delay>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1457":{"title":"register_code16(<kc>);, unregister_code16(<kc>);, tap_code16(<kc>); and tap_code16_delay(<kc>, <delay>);","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1458":{"title":"clear_keyboard();","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1459":{"title":"clear_mods();","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1460":{"title":"clear_keyboard_but_mods();","titles":["Macros","Using Macros in C Keymaps","Advanced Macro Functions"]},"1461":{"title":"Advanced Example:","titles":["Macros","Using Macros in C Keymaps"]},"1462":{"title":"Super ALT↯TAB","titles":["Macros","Using Macros in C Keymaps","Advanced Example:"]},"1463":{"title":"Userspace: Sharing Code Between Keymaps","titles":[]},"1464":{"title":"Rules.mk","titles":["Userspace: Sharing Code Between Keymaps"]},"1465":{"title":"Override default userspace","titles":["Userspace: Sharing Code Between Keymaps","Rules.mk"]},"1466":{"title":"Configuration Options (config.h)","titles":["Userspace: Sharing Code Between Keymaps"]},"1467":{"title":"Readme (readme.md)","titles":["Userspace: Sharing Code Between Keymaps"]},"1468":{"title":"Build All Keyboards That Support a Specific Keymap","titles":["Userspace: Sharing Code Between Keymaps"]},"1469":{"title":"Examples","titles":["Userspace: Sharing Code Between Keymaps"]},"1470":{"title":"Customized Functions","titles":["Userspace: Sharing Code Between Keymaps","Examples"]},"1471":{"title":"Custom Features","titles":["Userspace: Sharing Code Between Keymaps","Examples"]},"1472":{"title":"Consolidated Macros","titles":["Userspace: Sharing Code Between Keymaps","Examples"]},"1473":{"title":"Audio","titles":[]},"1474":{"title":"AVR based boards","titles":["Audio"]},"1475":{"title":"Wiring","titles":["Audio","AVR based boards"]},"1476":{"title":"ARM based boards","titles":["Audio"]},"1477":{"title":"DAC (basic)","titles":["Audio","ARM based boards"]},"1478":{"title":"Wiring:","titles":["Audio","ARM based boards","DAC (basic)"]},"1479":{"title":"Proton-C Example:","titles":["Audio","ARM based boards","DAC (basic)","Wiring:"]},"1480":{"title":"DAC (additive)","titles":["Audio","ARM based boards"]},"1481":{"title":"PWM (software)","titles":["Audio","ARM based boards"]},"1482":{"title":"Wiring","titles":["Audio","ARM based boards","PWM (software)"]},"1483":{"title":"PWM (hardware)","titles":["Audio","ARM based boards"]},"1484":{"title":"Tone Multiplexing","titles":["Audio"]},"1485":{"title":"Songs","titles":["Audio"]},"1486":{"title":"Audio Config","titles":["Audio"]},"1487":{"title":"Tempo","titles":["Audio"]},"1488":{"title":"ARM Audio Volume","titles":["Audio"]},"1489":{"title":"Voices","titles":["Audio"]},"1490":{"title":"Music Mode","titles":["Audio"]},"1491":{"title":"Music Mask","titles":["Audio","Music Mode"]},"1492":{"title":"Music Map","titles":["Audio","Music Mode"]},"1493":{"title":"Audio Click","titles":["Audio"]},"1494":{"title":"MIDI Functionality","titles":["Audio"]},"1495":{"title":"Audio Keycodes","titles":["Audio"]},"1496":{"title":"Auto Shift: Why Do We Need a Shift Key?","titles":[]},"1497":{"title":"Why Auto Shift?","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1498":{"title":"How Does It Work?","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1499":{"title":"Are There Limitations to Auto Shift?","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1500":{"title":"How Do I Enable Auto Shift?","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1501":{"title":"Modifiers","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1502":{"title":"Configuring Auto Shift","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1503":{"title":"AUTO_SHIFT_TIMEOUT (Value in ms)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1504":{"title":"NO_AUTO_SHIFT_SPECIAL (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1505":{"title":"NO_AUTO_SHIFT_TAB (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1506":{"title":"NO_AUTO_SHIFT_SYMBOLS (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1507":{"title":"NO_AUTO_SHIFT_NUMERIC (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1508":{"title":"NO_AUTO_SHIFT_ALPHA (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1509":{"title":"AUTO_SHIFT_ENTER (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1510":{"title":"Auto Shift Per Key","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1511":{"title":"AUTO_SHIFT_REPEAT (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1512":{"title":"AUTO_SHIFT_NO_AUTO_REPEAT (simple define)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1513":{"title":"AUTO_SHIFT_ALPHA (predefined key group)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1514":{"title":"AUTO_SHIFT_NUMERIC (predefined key group)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1515":{"title":"AUTO_SHIFT_SYMBOLS (predefined key group)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1516":{"title":"AUTO_SHIFT_SPECIAL (predefined key group)","titles":["Auto Shift: Why Do We Need a Shift Key?","Configuring Auto Shift"]},"1517":{"title":"Custom Shifted Values","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1518":{"title":"Retro Shift","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1519":{"title":"Retro Shift and Tap Hold Configurations","titles":["Auto Shift: Why Do We Need a Shift Key?","Retro Shift"]},"1520":{"title":"Using Auto Shift Setup","titles":["Auto Shift: Why Do We Need a Shift Key?"]},"1521":{"title":"Setup","titles":["Auto Shift: Why Do We Need a Shift Key?","Using Auto Shift Setup"]},"1522":{"title":"Use","titles":["Auto Shift: Why Do We Need a Shift Key?","Using Auto Shift Setup"]},"1523":{"title":"An Example Run","titles":["Auto Shift: Why Do We Need a Shift Key?","Using Auto Shift Setup","Use"]},"1524":{"title":"Autocorrect","titles":[]},"1525":{"title":"How does it work?","titles":["Autocorrect"]},"1526":{"title":"How do I enable Autocorrection","titles":["Autocorrect"]},"1527":{"title":"Customizing autocorrect library","titles":["Autocorrect"]},"1528":{"title":"Avoiding false triggers","titles":["Autocorrect","Customizing autocorrect library"]},"1529":{"title":"Overriding Autocorrect","titles":["Autocorrect"]},"1530":{"title":"Keycodes","titles":["Autocorrect","Overriding Autocorrect"]},"1531":{"title":"User Callback Functions","titles":["Autocorrect"]},"1532":{"title":"Process Autocorrect","titles":["Autocorrect","User Callback Functions"]},"1533":{"title":"Process Autocorrect Example","titles":["Autocorrect","User Callback Functions","Process Autocorrect"]},"1534":{"title":"Apply Autocorrect","titles":["Autocorrect","User Callback Functions"]},"1535":{"title":"Apply Autocorrect Example","titles":["Autocorrect","User Callback Functions","Apply Autocorrect"]},"1536":{"title":"Autocorrect Status","titles":["Autocorrect","User Callback Functions"]},"1537":{"title":"Appendix: Trie binary data format","titles":["Autocorrect"]},"1538":{"title":"Encoding","titles":["Autocorrect","Appendix: Trie binary data format"]},"1539":{"title":"Decoding","titles":["Autocorrect","Appendix: Trie binary data format"]},"1540":{"title":"Credits","titles":["Autocorrect"]},"1541":{"title":"Backlighting","titles":[]},"1542":{"title":"Usage","titles":["Backlighting"]},"1543":{"title":"Keycodes","titles":["Backlighting"]},"1544":{"title":"Basic Configuration","titles":["Backlighting"]},"1545":{"title":""On" State","titles":["Backlighting","Basic Configuration"]},"1546":{"title":"Multiple Backlight Pins","titles":["Backlighting","Basic Configuration"]},"1547":{"title":"Driver Configuration","titles":["Backlighting"]},"1548":{"title":"PWM Driver","titles":["Backlighting","Driver Configuration"]},"1549":{"title":"Timer Driver","titles":["Backlighting","Driver Configuration"]},"1550":{"title":"Software Driver","titles":["Backlighting","Driver Configuration"]},"1551":{"title":"Custom Driver","titles":["Backlighting","Driver Configuration"]},"1552":{"title":"AVR Configuration","titles":["Backlighting"]},"1553":{"title":"PWM Driver","titles":["Backlighting","AVR Configuration"]},"1554":{"title":"Timer Driver","titles":["Backlighting","AVR Configuration"]},"1555":{"title":"ChibiOS/ARM Configuration","titles":["Backlighting"]},"1556":{"title":"PWM Driver","titles":["Backlighting","ChibiOS/ARM Configuration"]},"1557":{"title":"Timer Driver","titles":["Backlighting","ChibiOS/ARM Configuration"]},"1558":{"title":"Example Schematic","titles":["Backlighting"]},"1559":{"title":"API","titles":["Backlighting"]},"1560":{"title":"void backlight_toggle(void)","titles":["Backlighting","API"]},"1561":{"title":"void backlight_enable(void)","titles":["Backlighting","API"]},"1562":{"title":"void backlight_disable(void)","titles":["Backlighting","API"]},"1563":{"title":"void backlight_step(void)","titles":["Backlighting","API"]},"1564":{"title":"void backlight_increase(void)","titles":["Backlighting","API"]},"1565":{"title":"void backlight_decrease(void)","titles":["Backlighting","API"]},"1566":{"title":"void backlight_level(uint8_t level)","titles":["Backlighting","API"]},"1567":{"title":"Arguments","titles":["Backlighting","API","void backlight_level(uint8_t level)"]},"1568":{"title":"uint8_t get_backlight_level(void)","titles":["Backlighting","API"]},"1569":{"title":"Return Value","titles":["Backlighting","API","uint8_t get_backlight_level(void)"]},"1570":{"title":"bool is_backlight_enabled(void)","titles":["Backlighting","API"]},"1571":{"title":"Return Value","titles":["Backlighting","API","bool is_backlight_enabled(void)"]},"1572":{"title":"void backlight_toggle_breathing(void)","titles":["Backlighting","API"]},"1573":{"title":"void backlight_enable_breathing(void)","titles":["Backlighting","API"]},"1574":{"title":"void backlight_disable_breathing(void)","titles":["Backlighting","API"]},"1575":{"title":"bool is_backlight_breathing(void)","titles":["Backlighting","API"]},"1576":{"title":"Return Value","titles":["Backlighting","API","bool is_backlight_breathing(void)"]},"1577":{"title":"Battery","titles":[]},"1578":{"title":"Usage","titles":["Battery"]},"1579":{"title":"Basic Configuration","titles":["Battery"]},"1580":{"title":"Driver Configuration","titles":["Battery"]},"1581":{"title":"Functions","titles":["Battery"]},"1582":{"title":"uint8_t battery_get_percent(void)","titles":["Battery","Functions"]},"1583":{"title":"Return Value","titles":["Battery","Functions","uint8_t battery_get_percent(void)"]},"1584":{"title":"Callbacks","titles":["Battery"]},"1585":{"title":"void battery_percent_changed_user(uint8_t level)","titles":["Battery","Callbacks"]},"1586":{"title":"Arguments","titles":["Battery","Callbacks"]},"1587":{"title":"void battery_percent_changed_kb(uint8_t level)","titles":["Battery","Callbacks"]},"1588":{"title":"Arguments","titles":["Battery","Callbacks"]},"1589":{"title":"Bootmagic","titles":[]},"1590":{"title":"Split Keyboards","titles":["Bootmagic"]},"1591":{"title":"Advanced Bootmagic","titles":["Bootmagic"]},"1592":{"title":"Addenda","titles":["Bootmagic"]},"1593":{"title":"Caps Word","titles":[]},"1594":{"title":"How do I enable Caps Word","titles":["Caps Word"]},"1595":{"title":"Troubleshooting: Command","titles":["Caps Word","How do I enable Caps Word"]},"1596":{"title":"Customizing Caps Word","titles":["Caps Word"]},"1597":{"title":"Invert on shift","titles":["Caps Word","Customizing Caps Word"]},"1598":{"title":"Idle timeout","titles":["Caps Word","Customizing Caps Word"]},"1599":{"title":"Functions","titles":["Caps Word","Customizing Caps Word"]},"1600":{"title":"Configure which keys are "word breaking"","titles":["Caps Word","Customizing Caps Word"]},"1601":{"title":"Representing Caps Word state","titles":["Caps Word","Customizing Caps Word"]},"1602":{"title":"Combos","titles":[]},"1603":{"title":"Advanced Keycodes Support","titles":["Combos"]},"1604":{"title":"Overlapping Combos","titles":["Combos"]},"1605":{"title":"Examples","titles":["Combos"]},"1606":{"title":"Keycodes","titles":["Combos"]},"1607":{"title":"Advanced Configuration","titles":["Combos"]},"1608":{"title":"Combo Term","titles":["Combos","Advanced Configuration"]},"1609":{"title":"Buffer and state sizes","titles":["Combos","Advanced Configuration"]},"1610":{"title":"Modifier Combos","titles":["Combos","Advanced Configuration"]},"1611":{"title":"Strict key press order","titles":["Combos","Advanced Configuration"]},"1612":{"title":"Per Combo Timing, Holding, Tapping and Key Press Order","titles":["Combos","Advanced Configuration"]},"1613":{"title":"Generic hook to (dis)allow a combo activation","titles":["Combos","Advanced Configuration"]},"1614":{"title":"Combo timer","titles":["Combos","Advanced Configuration"]},"1615":{"title":"#define COMBO_STRICT_TIMER","titles":["Combos","Advanced Configuration","Combo timer"]},"1616":{"title":"#define COMBO_NO_TIMER","titles":["Combos","Advanced Configuration","Combo timer"]},"1617":{"title":"Customizable key releases","titles":["Combos","Advanced Configuration"]},"1618":{"title":"Customizable key repress","titles":["Combos","Advanced Configuration"]},"1619":{"title":"Layer independent combos","titles":["Combos","Advanced Configuration"]},"1620":{"title":"Combo reference layers by layer.","titles":["Combos","Advanced Configuration","Layer independent combos"]},"1621":{"title":"User callbacks","titles":["Combos"]},"1622":{"title":"Dictionary Management","titles":["Combos"]},"1623":{"title":"Command","titles":[]},"1624":{"title":"Usage","titles":["Command"]},"1625":{"title":"Configuration","titles":["Command"]},"1626":{"title":"Community Modules","titles":[]},"1627":{"title":"Adding a Community Module to your build","titles":["Community Modules"]},"1628":{"title":"Adding a Community Module to your External Userspace","titles":["Community Modules"]},"1629":{"title":"Writing a QMK Community Module","titles":["Community Modules"]},"1630":{"title":"qmk_module.json","titles":["Community Modules","Writing a QMK Community Module"]},"1631":{"title":"config.h","titles":["Community Modules","Writing a QMK Community Module"]},"1632":{"title":"rules.mk / post_rules.mk","titles":["Community Modules","Writing a QMK Community Module"]},"1633":{"title":"<module>.c","titles":["Community Modules","Writing a QMK Community Module"]},"1634":{"title":"introspection.c / introspection.h","titles":["Community Modules","Writing a QMK Community Module"]},"1635":{"title":"led_matrix_module.inc","titles":["Community Modules","Writing a QMK Community Module"]},"1636":{"title":"rgb_matrix_module.inc","titles":["Community Modules","Writing a QMK Community Module"]},"1637":{"title":"Custom split keyboard data sync","titles":["Community Modules","Writing a QMK Community Module"]},"1638":{"title":"Compatible APIs","titles":["Community Modules","Writing a QMK Community Module"]},"1639":{"title":"Digitizer","titles":[]},"1640":{"title":"Usage","titles":["Digitizer"]},"1641":{"title":"Positioning","titles":["Digitizer"]},"1642":{"title":"Examples","titles":["Digitizer"]},"1643":{"title":"API","titles":["Digitizer"]},"1644":{"title":"struct digitizer_t","titles":["Digitizer","API"]},"1645":{"title":"Members","titles":["Digitizer","API","struct digitizer_t"]},"1646":{"title":"void digitizer_flush(void)","titles":["Digitizer","API"]},"1647":{"title":"void digitizer_in_range_on(void)","titles":["Digitizer","API"]},"1648":{"title":"void digitizer_in_range_off(void)","titles":["Digitizer","API"]},"1649":{"title":"void digitizer_tip_switch_on(void)","titles":["Digitizer","API"]},"1650":{"title":"void digitizer_tip_switch_off(void)","titles":["Digitizer","API"]},"1651":{"title":"void digitizer_barrel_switch_on(void)","titles":["Digitizer","API"]},"1652":{"title":"void digitizer_barrel_switch_off(void)","titles":["Digitizer","API"]},"1653":{"title":"void digitizer_set_position(float x, float y)","titles":["Digitizer","API"]},"1654":{"title":"Arguments","titles":["Digitizer","API","void digitizer_set_position(float x, float y)"]},"1655":{"title":"DIP Switches","titles":[]},"1656":{"title":"DIP Switch map","titles":["DIP Switches"]},"1657":{"title":"Callbacks","titles":["DIP Switches"]},"1658":{"title":"Hardware","titles":["DIP Switches"]},"1659":{"title":"Connects each switch in the dip switch to the GPIO pin of the MCU","titles":["DIP Switches","Hardware"]},"1660":{"title":"Connect each switch in the DIP switch to an unused intersections in the key matrix.","titles":["DIP Switches","Hardware"]},"1661":{"title":"Dynamic Macros: Record and Replay Macros in Runtime","titles":[]},"1662":{"title":"Customization","titles":["Dynamic Macros: Record and Replay Macros in Runtime"]},"1663":{"title":"DYNAMIC_MACRO_USER_CALL","titles":["Dynamic Macros: Record and Replay Macros in Runtime","Customization"]},"1664":{"title":"User Hooks","titles":["Dynamic Macros: Record and Replay Macros in Runtime","Customization"]},"1665":{"title":"Encoders","titles":[]},"1666":{"title":"Split Keyboards","titles":["Encoders"]},"1667":{"title":"Encoder map","titles":["Encoders"]},"1668":{"title":"Callbacks","titles":["Encoders"]},"1669":{"title":"Hardware","titles":["Encoders"]},"1670":{"title":"Multiple Encoders","titles":["Encoders"]},"1671":{"title":"Grave Escape","titles":[]},"1672":{"title":"Usage","titles":["Grave Escape"]},"1673":{"title":"What Your OS Sees","titles":["Grave Escape"]},"1674":{"title":"Keycodes","titles":["Grave Escape"]},"1675":{"title":"Caveats","titles":["Grave Escape","Keycodes"]},"1676":{"title":"Configuration","titles":["Grave Escape"]},"1677":{"title":"Haptic Feedback","titles":[]},"1678":{"title":"Haptic feedback rules.mk options","titles":["Haptic Feedback"]},"1679":{"title":"Known Supported Hardware","titles":["Haptic Feedback"]},"1680":{"title":"Haptic Keycodes","titles":["Haptic Feedback"]},"1681":{"title":"Solenoids","titles":["Haptic Feedback","Haptic Keycodes"]},"1682":{"title":"DRV2605L","titles":["Haptic Feedback","Haptic Keycodes"]},"1683":{"title":"Feedback motor setup","titles":["Haptic Feedback","Haptic Keycodes","DRV2605L"]},"1684":{"title":"ERM","titles":["Haptic Feedback","Haptic Keycodes","DRV2605L","Feedback motor setup"]},"1685":{"title":"LRA","titles":["Haptic Feedback","Haptic Keycodes","DRV2605L","Feedback motor setup"]},"1686":{"title":"DRV2605L waveform library","titles":["Haptic Feedback","Haptic Keycodes","DRV2605L"]},"1687":{"title":"Optional DRV2605L defines","titles":["Haptic Feedback","Haptic Keycodes"]},"1688":{"title":"DRV2605L Continuous Haptic Mode","titles":["Haptic Feedback","Haptic Keycodes"]},"1689":{"title":"Haptic Key Exclusion","titles":["Haptic Feedback"]},"1690":{"title":"NO_HAPTIC_MOD","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1691":{"title":"NO_HAPTIC_ALPHA","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1692":{"title":"NO_HAPTIC_PUNCTUATION","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1693":{"title":"NO_HAPTIC_LOCKKEYS","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1694":{"title":"NO_HAPTIC_NAV","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1695":{"title":"NO_HAPTIC_NUMERIC","titles":["Haptic Feedback","Haptic Key Exclusion"]},"1696":{"title":"HD44780 LCD Driver","titles":[]},"1697":{"title":"Supported Hardware","titles":["HD44780 LCD Driver"]},"1698":{"title":"Usage","titles":["HD44780 LCD Driver"]},"1699":{"title":"Basic Configuration","titles":["HD44780 LCD Driver"]},"1700":{"title":"Examples","titles":["HD44780 LCD Driver"]},"1701":{"title":"Hello World","titles":["HD44780 LCD Driver","Examples"]},"1702":{"title":"Custom Character Definition","titles":["HD44780 LCD Driver","Examples"]},"1703":{"title":"API","titles":["HD44780 LCD Driver"]},"1704":{"title":"void hd44780_init(bool cursor, bool blink)","titles":["HD44780 LCD Driver","API"]},"1705":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_init(bool cursor, bool blink)"]},"1706":{"title":"void hd44780_clear(void)","titles":["HD44780 LCD Driver","API"]},"1707":{"title":"void hd44780_home(void)","titles":["HD44780 LCD Driver","API"]},"1708":{"title":"void hd44780_on(bool cursor, bool blink)","titles":["HD44780 LCD Driver","API"]},"1709":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_on(bool cursor, bool blink)"]},"1710":{"title":"void hd44780_off(void)","titles":["HD44780 LCD Driver","API"]},"1711":{"title":"void hd44780_set_cursor(uint8_t col, uint8_t line)","titles":["HD44780 LCD Driver","API"]},"1712":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_set_cursor(uint8_t col, uint8_t line)"]},"1713":{"title":"void hd44780_putc(char c)","titles":["HD44780 LCD Driver","API"]},"1714":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_putc(char c)"]},"1715":{"title":"void hd44780_puts(const char *s)","titles":["HD44780 LCD Driver","API"]},"1716":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_puts(const char *s)"]},"1717":{"title":"void hd44780_puts_P(const char *s)","titles":["HD44780 LCD Driver","API"]},"1718":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_puts_P(const char *s)"]},"1719":{"title":"void hd44780_define_char(uint8_t index, uint8_t *data)","titles":["HD44780 LCD Driver","API"]},"1720":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_define_char(uint8_t index, uint8_t *data)"]},"1721":{"title":"void hd44780_define_char_P(uint8_t index, const uint8_t *data)","titles":["HD44780 LCD Driver","API"]},"1722":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_define_char_P(uint8_t index, const uint8_t *data)"]},"1723":{"title":"bool hd44780_busy(void)","titles":["HD44780 LCD Driver","API"]},"1724":{"title":"Return Value","titles":["HD44780 LCD Driver","API","bool hd44780_busy(void)"]},"1725":{"title":"void hd44780_write(uint8_t data, bool isData)","titles":["HD44780 LCD Driver","API"]},"1726":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_write(uint8_t data, bool isData)"]},"1727":{"title":"uint8_t hd44780_read(bool isData)","titles":["HD44780 LCD Driver","API"]},"1728":{"title":"Arguments","titles":["HD44780 LCD Driver","API","uint8_t hd44780_read(bool isData)"]},"1729":{"title":"Return Value","titles":["HD44780 LCD Driver","API","uint8_t hd44780_read(bool isData)"]},"1730":{"title":"void hd44780_command(uint8_t command)","titles":["HD44780 LCD Driver","API"]},"1731":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_command(uint8_t command)"]},"1732":{"title":"void hd44780_data(uint8_t data)","titles":["HD44780 LCD Driver","API"]},"1733":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_data(uint8_t data)"]},"1734":{"title":"void hd44780_set_cgram_address(uint8_t address)","titles":["HD44780 LCD Driver","API"]},"1735":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_set_cgram_address(uint8_t address)"]},"1736":{"title":"void hd44780_set_ddram_address(uint8_t address)","titles":["HD44780 LCD Driver","API"]},"1737":{"title":"Arguments","titles":["HD44780 LCD Driver","API","void hd44780_set_ddram_address(uint8_t address)"]},"1738":{"title":"Joystick","titles":[]},"1739":{"title":"Usage","titles":["Joystick"]},"1740":{"title":"Configuration","titles":["Joystick"]},"1741":{"title":"Hat Switch","titles":["Joystick","Configuration"]},"1742":{"title":"Axes","titles":["Joystick","Configuration"]},"1743":{"title":"Virtual Axes","titles":["Joystick","Configuration","Axes"]},"1744":{"title":"Keycodes","titles":["Joystick"]},"1745":{"title":"API","titles":["Joystick"]},"1746":{"title":"struct joystick_t","titles":["Joystick","API"]},"1747":{"title":"Members","titles":["Joystick","API","struct joystick_t"]},"1748":{"title":"struct joystick_config_t","titles":["Joystick","API"]},"1749":{"title":"Members","titles":["Joystick","API","struct joystick_config_t"]},"1750":{"title":"void joystick_flush(void)","titles":["Joystick","API"]},"1751":{"title":"void register_joystick_button(uint8_t button)","titles":["Joystick","API"]},"1752":{"title":"Arguments","titles":["Joystick","API","void register_joystick_button(uint8_t button)"]},"1753":{"title":"void unregister_joystick_button(uint8_t button)","titles":["Joystick","API"]},"1754":{"title":"Arguments","titles":["Joystick","API","void unregister_joystick_button(uint8_t button)"]},"1755":{"title":"int16_t joystick_read_axis(uint8_t axis)","titles":["Joystick","API"]},"1756":{"title":"Arguments","titles":["Joystick","API","int16_t joystick_read_axis(uint8_t axis)"]},"1757":{"title":"Return Value","titles":["Joystick","API","int16_t joystick_read_axis(uint8_t axis)"]},"1758":{"title":"void joystick_set_axis(uint8_t axis, int16_t value)","titles":["Joystick","API"]},"1759":{"title":"Arguments","titles":["Joystick","API","void joystick_set_axis(uint8_t axis, int16_t value)"]},"1760":{"title":"void joystick_set_hat(int8_t value)","titles":["Joystick","API"]},"1761":{"title":"Arguments","titles":["Joystick","API","void joystick_set_hat(int8_t value)"]},"1762":{"title":"Key Lock","titles":[]},"1763":{"title":"Usage","titles":["Key Lock"]},"1764":{"title":"Keycodes","titles":["Key Lock"]},"1765":{"title":"Caveats","titles":["Key Lock"]},"1766":{"title":"Key Overrides","titles":[]},"1767":{"title":"A few more examples to get started: You could use key overrides to...","titles":["Key Overrides"]},"1768":{"title":"Setup","titles":["Key Overrides"]},"1769":{"title":"Creating Key Overrides","titles":["Key Overrides"]},"1770":{"title":"ko_make_basic(modifiers, key, replacement)","titles":["Key Overrides","Creating Key Overrides"]},"1771":{"title":"ko_make_with_layers(modifiers, key, replacement, layers)","titles":["Key Overrides","Creating Key Overrides"]},"1772":{"title":"ko_make_with_layers_and_negmods(modifiers, key, replacement, layers, negative_mods)","titles":["Key Overrides","Creating Key Overrides"]},"1773":{"title":"ko_make_with_layers_negmods_and_options(modifiers, key, replacement, layers, negative_mods, options)","titles":["Key Overrides","Creating Key Overrides"]},"1774":{"title":"Simple Example","titles":["Key Overrides"]},"1775":{"title":"Intermediate Difficulty Examples","titles":["Key Overrides"]},"1776":{"title":"Media Controls & Screen Brightness","titles":["Key Overrides","Intermediate Difficulty Examples"]},"1777":{"title":"Flexible macOS-friendly Grave Escape","titles":["Key Overrides","Intermediate Difficulty Examples"]},"1778":{"title":"Advanced Examples","titles":["Key Overrides"]},"1779":{"title":"Modifiers as Layer Keys","titles":["Key Overrides","Advanced Examples"]},"1780":{"title":"Keycodes","titles":["Key Overrides"]},"1781":{"title":"Reference for key_override_t","titles":["Key Overrides"]},"1782":{"title":"Reference for ko_option_t","titles":["Key Overrides"]},"1783":{"title":"For Advanced Users: Inner Workings","titles":["Key Overrides"]},"1784":{"title":"Activation","titles":["Key Overrides","For Advanced Users: Inner Workings","Modifiers as Layer Keys"]},"1785":{"title":"Deactivation","titles":["Key Overrides","For Advanced Users: Inner Workings","Modifiers as Layer Keys"]},"1786":{"title":"Key Repeat Delay","titles":["Key Overrides","For Advanced Users: Inner Workings","Modifiers as Layer Keys"]},"1787":{"title":"Difference to Combos","titles":["Key Overrides"]},"1788":{"title":"Solution to the problem of flashing modifiers","titles":["Key Overrides"]},"1789":{"title":"Layer Lock","titles":[]},"1790":{"title":"How do I enable Layer Lock","titles":["Layer Lock"]},"1791":{"title":"Example use","titles":["Layer Lock"]},"1792":{"title":"Idle timeout","titles":["Layer Lock"]},"1793":{"title":"Functions","titles":["Layer Lock"]},"1794":{"title":"Representing the current Layer Lock state","titles":["Layer Lock"]},"1795":{"title":"Combine Layer Lock with a mod-tap","titles":["Layer Lock"]},"1796":{"title":"The Leader Key: A New Kind of Modifier","titles":[]},"1797":{"title":"Usage","titles":["The Leader Key: A New Kind of Modifier"]},"1798":{"title":"Callbacks","titles":["The Leader Key: A New Kind of Modifier"]},"1799":{"title":"Basic Configuration","titles":["The Leader Key: A New Kind of Modifier"]},"1800":{"title":"Timeout","titles":["The Leader Key: A New Kind of Modifier","Basic Configuration"]},"1801":{"title":"Per-Key Timeout","titles":["The Leader Key: A New Kind of Modifier","Basic Configuration"]},"1802":{"title":"Disabling Initial Timeout","titles":["The Leader Key: A New Kind of Modifier","Basic Configuration"]},"1803":{"title":"Strict Key Processing","titles":["The Leader Key: A New Kind of Modifier","Basic Configuration"]},"1804":{"title":"Example","titles":["The Leader Key: A New Kind of Modifier"]},"1805":{"title":"Keycodes","titles":["The Leader Key: A New Kind of Modifier"]},"1806":{"title":"API","titles":["The Leader Key: A New Kind of Modifier"]},"1807":{"title":"void leader_start_user(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1808":{"title":"void leader_end_user(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1809":{"title":"bool leader_add_user(uint16_t keycode)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1810":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_add_user(uint16_t keycode)"]},"1811":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_add_user(uint16_t keycode)"]},"1812":{"title":"void leader_start(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1813":{"title":"void leader_end(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1814":{"title":"bool leader_sequence_active(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1815":{"title":"bool leader_sequence_add(uint16_t keycode)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1816":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_add(uint16_t keycode)"]},"1817":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_add(uint16_t keycode)"]},"1818":{"title":"bool leader_sequence_timed_out(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1819":{"title":"bool leader_reset_timer(void)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1820":{"title":"bool leader_sequence_one_key(uint16_t kc)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1821":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_one_key(uint16_t kc)"]},"1822":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_one_key(uint16_t kc)"]},"1823":{"title":"bool leader_sequence_two_keys(uint16_t kc1, uint16_t kc2)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1824":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_two_keys(uint16_t kc1, uint16_t kc2)"]},"1825":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_two_keys(uint16_t kc1, uint16_t kc2)"]},"1826":{"title":"bool leader_sequence_three_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1827":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_three_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3)"]},"1828":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_three_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3)"]},"1829":{"title":"bool leader_sequence_four_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1830":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_four_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4)"]},"1831":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_four_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4)"]},"1832":{"title":"bool leader_sequence_five_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4, uint16_t kc5)","titles":["The Leader Key: A New Kind of Modifier","API"]},"1833":{"title":"Arguments","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_five_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4, uint16_t kc5)"]},"1834":{"title":"Return Value","titles":["The Leader Key: A New Kind of Modifier","API","bool leader_sequence_five_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4, uint16_t kc5)"]},"1835":{"title":"LED Indicators","titles":[]},"1836":{"title":"Configuration Options","titles":["LED Indicators"]},"1837":{"title":"LED update function","titles":["LED Indicators"]},"1838":{"title":"Example of keyboard LED update implementation","titles":["LED Indicators","LED update function"]},"1839":{"title":"Example of user LED update implementation","titles":["LED Indicators","LED update function"]},"1840":{"title":"Host keyboard LED state","titles":["LED Indicators"]},"1841":{"title":"led_update_ports()","titles":["LED Indicators"]},"1842":{"title":"Setting Physical LED State","titles":["LED Indicators"]},"1843":{"title":"Ergodox Boards","titles":["LED Indicators","Setting Physical LED State"]},"1844":{"title":"LED Matrix Lighting","titles":[]},"1845":{"title":"Driver Configuration","titles":["LED Matrix Lighting"]},"1846":{"title":"Common Configuration","titles":["LED Matrix Lighting"]},"1847":{"title":"Flags","titles":["LED Matrix Lighting"]},"1848":{"title":"Keycodes","titles":["LED Matrix Lighting"]},"1849":{"title":"LED Matrix Effects","titles":["LED Matrix Lighting"]},"1850":{"title":"Custom LED Matrix Effects","titles":["LED Matrix Lighting"]},"1851":{"title":"Naming","titles":["LED Matrix Lighting"]},"1852":{"title":"Additional config.h Options","titles":["LED Matrix Lighting"]},"1853":{"title":"EEPROM storage","titles":["LED Matrix Lighting"]},"1854":{"title":"Callbacks","titles":["LED Matrix Lighting"]},"1855":{"title":"Indicators","titles":["LED Matrix Lighting","Callbacks"]},"1856":{"title":"API","titles":["LED Matrix Lighting"]},"1857":{"title":"void led_matrix_toggle(void)","titles":["LED Matrix Lighting","API"]},"1858":{"title":"void led_matrix_toggle_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1859":{"title":"void led_matrix_enable(void)","titles":["LED Matrix Lighting","API"]},"1860":{"title":"void led_matrix_enable_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1861":{"title":"void led_matrix_disable(void)","titles":["LED Matrix Lighting","API"]},"1862":{"title":"void led_matrix_disable_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1863":{"title":"bool led_matrix_is_enabled(void)","titles":["LED Matrix Lighting","API"]},"1864":{"title":"Return Value","titles":["LED Matrix Lighting","API","bool led_matrix_is_enabled(void)"]},"1865":{"title":"void led_matrix_set_value(uint8_t index, uint8_t v)","titles":["LED Matrix Lighting","API"]},"1866":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_value(uint8_t index, uint8_t v)"]},"1867":{"title":"void led_matrix_set_value_all(uint8_t v)","titles":["LED Matrix Lighting","API"]},"1868":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_value_all(uint8_t v)"]},"1869":{"title":"void led_matrix_mode(uint8_t mode)","titles":["LED Matrix Lighting","API"]},"1870":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_mode(uint8_t mode)"]},"1871":{"title":"void led_matrix_mode_noeeprom(uint8_t mode)","titles":["LED Matrix Lighting","API"]},"1872":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_mode_noeeprom(uint8_t mode)"]},"1873":{"title":"void led_matrix_step(void)","titles":["LED Matrix Lighting","API"]},"1874":{"title":"void led_matrix_step_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1875":{"title":"void led_matrix_step_reverse(void)","titles":["LED Matrix Lighting","API"]},"1876":{"title":"void led_matrix_step_reverse_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1877":{"title":"uint8_t led_matrix_get_mode(void)","titles":["LED Matrix Lighting","API"]},"1878":{"title":"Return Value","titles":["LED Matrix Lighting","API","uint8_t led_matrix_get_mode(void)"]},"1879":{"title":"void val_matrix_increase_val(void)","titles":["LED Matrix Lighting","API"]},"1880":{"title":"void led_matrix_increase_val_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1881":{"title":"void led_matrix_decrease_val(void)","titles":["LED Matrix Lighting","API"]},"1882":{"title":"void led_matrix_decrease_val_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1883":{"title":"uint8_t led_matrix_get_val(void)","titles":["LED Matrix Lighting","API"]},"1884":{"title":"Return Value","titles":["LED Matrix Lighting","API","uint8_t led_matrix_get_val(void)"]},"1885":{"title":"void led_matrix_increase_speed(void)","titles":["LED Matrix Lighting","API"]},"1886":{"title":"void led_matrix_increase_speed_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1887":{"title":"void led_matrix_decrease_speed(void)","titles":["LED Matrix Lighting","API"]},"1888":{"title":"void led_matrix_decrease_speed_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1889":{"title":"void led_matrix_set_speed(uint8_t speed)","titles":["LED Matrix Lighting","API"]},"1890":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_speed(uint8_t speed)"]},"1891":{"title":"void led_matrix_set_speed_noeeprom(uint8_t speed)","titles":["LED Matrix Lighting","API"]},"1892":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_speed_noeeprom(uint8_t speed)"]},"1893":{"title":"uint8_t led_matrix_get_speed(void)","titles":["LED Matrix Lighting","API"]},"1894":{"title":"Return Value","titles":["LED Matrix Lighting","API","uint8_t led_matrix_get_speed(void)"]},"1895":{"title":"void led_matrix_set_flags(led_flags_t flags)","titles":["LED Matrix Lighting","API"]},"1896":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_flags(led_flags_t flags)"]},"1897":{"title":"void led_matrix_set_flags_noeeprom(led_flags_t flags)","titles":["LED Matrix Lighting","API"]},"1898":{"title":"Arguments","titles":["LED Matrix Lighting","API","void led_matrix_set_flags_noeeprom(led_flags_t flags)"]},"1899":{"title":"void led_matrix_flags_step(void)","titles":["LED Matrix Lighting","API"]},"1900":{"title":"void led_matrix_flags_step_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1901":{"title":"void led_matrix_flags_step_reverse(void)","titles":["LED Matrix Lighting","API"]},"1902":{"title":"void led_matrix_flags_step_reverse_noeeprom(void)","titles":["LED Matrix Lighting","API"]},"1903":{"title":"uint8_t led_matrix_get_flags(void)","titles":["LED Matrix Lighting","API"]},"1904":{"title":"Return Value","titles":["LED Matrix Lighting","API","uint8_t led_matrix_get_flags(void)"]},"1905":{"title":"void led_matrix_reload_from_eeprom(void)","titles":["LED Matrix Lighting","API"]},"1906":{"title":"bool led_matrix_get_suspend_state(void)","titles":["LED Matrix Lighting","API"]},"1907":{"title":"Return Value","titles":["LED Matrix Lighting","API","bool led_matrix_get_suspend_state(void)"]},"1908":{"title":"bool led_matrix_indicators_kb(void)","titles":["LED Matrix Lighting","API"]},"1909":{"title":"Return Value","titles":["LED Matrix Lighting","API","bool led_matrix_indicators_kb(void)"]},"1910":{"title":"bool led_matrix_indicators_user(void)","titles":["LED Matrix Lighting","API"]},"1911":{"title":"Return Value","titles":["LED Matrix Lighting","API","bool led_matrix_indicators_user(void)"]},"1912":{"title":"bool led_matrix_indicators_advanced_kb(uint8_t led_min, uint8_t led_max)","titles":["LED Matrix Lighting","API"]},"1913":{"title":"Arguments","titles":["LED Matrix Lighting","API"]},"1914":{"title":"Return Value","titles":["LED Matrix Lighting","API","Arguments"]},"1915":{"title":"bool led_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max)","titles":["LED Matrix Lighting","API"]},"1916":{"title":"Arguments","titles":["LED Matrix Lighting","API"]},"1917":{"title":"Return Value","titles":["LED Matrix Lighting","API","Arguments"]},"1918":{"title":"MIDI","titles":[]},"1919":{"title":"Usage","titles":["MIDI"]},"1920":{"title":"Caveats","titles":["MIDI","Usage"]},"1921":{"title":"Basic MIDI","titles":["MIDI","Usage"]},"1922":{"title":"Advanced MIDI","titles":["MIDI","Usage"]},"1923":{"title":"Sending Control Change (CC) Messages","titles":["MIDI","Usage","Advanced MIDI"]},"1924":{"title":"Example code for using Generic On Off Switches as per MIDI Specification.","titles":["MIDI","Usage","Advanced MIDI"]},"1925":{"title":"Keycodes","titles":["MIDI","Usage"]},"1926":{"title":"Configuration","titles":["MIDI","Usage"]},"1927":{"title":"References","titles":["MIDI","Usage"]},"1928":{"title":"MIDI Specification","titles":["MIDI","Usage","References"]},"1929":{"title":"QMK C Files","titles":["MIDI","Usage","References"]},"1930":{"title":"Mouse keys","titles":[]},"1931":{"title":"Adding mouse keys to your keyboard","titles":["Mouse keys"]},"1932":{"title":"Enabling mouse keys","titles":["Mouse keys","Adding mouse keys to your keyboard"]},"1933":{"title":"Mapping mouse actions","titles":["Mouse keys","Adding mouse keys to your keyboard"]},"1934":{"title":"Configuring mouse keys","titles":["Mouse keys"]},"1935":{"title":"Accelerated mode","titles":["Mouse keys","Configuring mouse keys"]},"1936":{"title":"Kinetic Mode","titles":["Mouse keys","Configuring mouse keys"]},"1937":{"title":"Constant mode","titles":["Mouse keys","Configuring mouse keys"]},"1938":{"title":"Combined mode","titles":["Mouse keys","Configuring mouse keys"]},"1939":{"title":"Inertia mode","titles":["Mouse keys","Configuring mouse keys"]},"1940":{"title":"Overlapping mouse key control","titles":["Mouse keys","Configuring mouse keys"]},"1941":{"title":"Use with PS/2 Mouse and Pointing Device","titles":["Mouse keys"]},"1942":{"title":"OLED Driver","titles":[]},"1943":{"title":"Supported Hardware","titles":["OLED Driver"]},"1944":{"title":"Usage","titles":["OLED Driver"]},"1945":{"title":"OLED type","titles":["OLED Driver"]},"1946":{"title":"Logo Example","titles":["OLED Driver"]},"1947":{"title":"Buffer Read Example","titles":["OLED Driver"]},"1948":{"title":"Other Examples","titles":["OLED Driver"]},"1949":{"title":"Basic Configuration","titles":["OLED Driver"]},"1950":{"title":"I2C Configuration","titles":["OLED Driver","Basic Configuration"]},"1951":{"title":"SPI Configuration","titles":["OLED Driver","Basic Configuration"]},"1952":{"title":"128x64 & Custom sized OLED Displays","titles":["OLED Driver"]},"1953":{"title":"90 Degree Rotation - Technical Mumbo Jumbo","titles":["OLED Driver","128x64 & Custom sized OLED Displays"]},"1954":{"title":"OLED API","titles":["OLED Driver"]},"1955":{"title":"SSD1306.h Driver Conversion Guide","titles":["OLED Driver"]},"1956":{"title":"OS Detection","titles":[]},"1957":{"title":"Usage","titles":["OS Detection"]},"1958":{"title":"Callbacks","titles":["OS Detection"]},"1959":{"title":"OS detection stability","titles":["OS Detection"]},"1960":{"title":"Configuration Options","titles":["OS Detection"]},"1961":{"title":"Troubleshooting","titles":["OS Detection"]},"1962":{"title":"Debug","titles":["OS Detection"]},"1963":{"title":"Credits","titles":["OS Detection"]},"1964":{"title":"Pointing Device","titles":[]},"1965":{"title":"Sensor Drivers","titles":["Pointing Device"]},"1966":{"title":"ADNS 5050 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1967":{"title":"ADNS 9800 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1968":{"title":"Analog Joystick","titles":["Pointing Device","Sensor Drivers"]},"1969":{"title":"Azoteq IQS5XX Trackpad","titles":["Pointing Device","Sensor Drivers"]},"1970":{"title":"Device settings","titles":["Pointing Device","Sensor Drivers","Azoteq IQS5XX Trackpad"]},"1971":{"title":"Gesture settings","titles":["Pointing Device","Sensor Drivers","Azoteq IQS5XX Trackpad"]},"1972":{"title":"Rotation settings","titles":["Pointing Device","Sensor Drivers","Azoteq IQS5XX Trackpad"]},"1973":{"title":"Cirque Trackpad","titles":["Pointing Device","Sensor Drivers"]},"1974":{"title":"Common settings","titles":["Pointing Device","Sensor Drivers","Cirque Trackpad"]},"1975":{"title":"Absolute mode settings","titles":["Pointing Device","Sensor Drivers","Cirque Trackpad"]},"1976":{"title":"Absolute mode gestures","titles":["Pointing Device","Sensor Drivers","Cirque Trackpad"]},"1977":{"title":"Relative mode gestures","titles":["Pointing Device","Sensor Drivers","Cirque Trackpad"]},"1978":{"title":"PAW 3204 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1979":{"title":"PAW-3222 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1980":{"title":"Pimoroni Trackball","titles":["Pointing Device","Sensor Drivers"]},"1981":{"title":"PMW3320 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1982":{"title":"PMW-3325 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1983":{"title":"PMW 3360 and PMW 3389 Sensor","titles":["Pointing Device","Sensor Drivers"]},"1984":{"title":"Custom Driver","titles":["Pointing Device","Sensor Drivers"]},"1985":{"title":"Common Configuration","titles":["Pointing Device"]},"1986":{"title":"High Resolution Scrolling","titles":["Pointing Device"]},"1987":{"title":"Split Keyboard Configuration","titles":["Pointing Device"]},"1988":{"title":"Callbacks and Functions","titles":["Pointing Device"]},"1989":{"title":"Split Keyboard Callbacks and Functions","titles":["Pointing Device"]},"1990":{"title":"Manipulating Mouse Reports","titles":[]},"1991":{"title":"Examples","titles":["Manipulating Mouse Reports"]},"1992":{"title":"Custom Mouse Keycode","titles":["Manipulating Mouse Reports","Examples"]},"1993":{"title":"Drag Scroll or Mouse Scroll","titles":["Manipulating Mouse Reports","Examples"]},"1994":{"title":"Advanced Drag Scroll","titles":["Manipulating Mouse Reports","Examples"]},"1995":{"title":"Split Examples","titles":["Manipulating Mouse Reports"]},"1996":{"title":"Single Pointing Device","titles":["Manipulating Mouse Reports","Split Examples"]},"1997":{"title":"Combined Pointing Devices","titles":["Manipulating Mouse Reports","Split Examples"]},"1998":{"title":"Troubleshooting","titles":[]},"1999":{"title":"Automatic Mouse Layer","titles":[]},"2000":{"title":"Behaviour of Layer keys that activate the target layer","titles":["Automatic Mouse Layer"]},"2001":{"title":"How to enable:","titles":["Automatic Mouse Layer"]},"2002":{"title":"How to Customize:","titles":["Automatic Mouse Layer"]},"2003":{"title":"config.h Options:","titles":["Automatic Mouse Layer","How to Customize:"]},"2004":{"title":"Adding mouse keys","titles":["Automatic Mouse Layer","How to Customize:"]},"2005":{"title":"Callbacks for setting up additional key codes as mouse keys:","titles":["Automatic Mouse Layer","How to Customize:","Adding mouse keys"]},"2006":{"title":"To use the callback function to add mouse keys:","titles":["Automatic Mouse Layer","How to Customize:","Adding mouse keys","Callbacks for setting up additional key codes as mouse keys:"]},"2007":{"title":"Advanced control","titles":["Automatic Mouse Layer"]},"2008":{"title":"Functions to control auto mouse enable and target layer:","titles":["Automatic Mouse Layer","Advanced control"]},"2009":{"title":"Functions for handling custom key events:","titles":["Automatic Mouse Layer","Advanced control"]},"2010":{"title":"Advanced control examples","titles":["Automatic Mouse Layer","Advanced control"]},"2011":{"title":"Disable auto mouse on certain layers:","titles":["Automatic Mouse Layer","Advanced control","Advanced control examples"]},"2012":{"title":"Set different target layer when a particular layer is active:","titles":["Automatic Mouse Layer","Advanced control","Advanced control examples"]},"2013":{"title":"Use custom keys to control auto mouse:","titles":["Automatic Mouse Layer","Advanced control"]},"2014":{"title":"Customize Target Layer Activation","titles":["Automatic Mouse Layer"]},"2015":{"title":"Auto Mouse for Custom Pointing Device Task","titles":["Automatic Mouse Layer"]},"2016":{"title":"Programmable Button","titles":[]},"2017":{"title":"Usage","titles":["Programmable Button"]},"2018":{"title":"Keycodes","titles":["Programmable Button"]},"2019":{"title":"API","titles":["Programmable Button"]},"2020":{"title":"void programmable_button_clear(void)","titles":["Programmable Button","API"]},"2021":{"title":"void programmable_button_add(uint8_t index)","titles":["Programmable Button","API"]},"2022":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_add(uint8_t index)"]},"2023":{"title":"void programmable_button_remove(uint8_t index)","titles":["Programmable Button","API"]},"2024":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_remove(uint8_t index)"]},"2025":{"title":"void programmable_button_register(uint8_t index)","titles":["Programmable Button","API"]},"2026":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_register(uint8_t index)"]},"2027":{"title":"void programmable_button_unregister(uint8_t index)","titles":["Programmable Button","API"]},"2028":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_unregister(uint8_t index)"]},"2029":{"title":"bool programmable_button_is_on(uint8_t index)","titles":["Programmable Button","API"]},"2030":{"title":"Arguments","titles":["Programmable Button","API","bool programmable_button_is_on(uint8_t index)"]},"2031":{"title":"Return Value","titles":["Programmable Button","API","bool programmable_button_is_on(uint8_t index)"]},"2032":{"title":"void programmable_button_flush(void)","titles":["Programmable Button","API"]},"2033":{"title":"uint32_t programmable_button_get_report(void)","titles":["Programmable Button","API"]},"2034":{"title":"Return Value","titles":["Programmable Button","API","uint32_t programmable_button_get_report(void)"]},"2035":{"title":"void programmable_button_set_report(uint32_t report)","titles":["Programmable Button","API"]},"2036":{"title":"Arguments","titles":["Programmable Button","API","void programmable_button_set_report(uint32_t report)"]},"2037":{"title":"PS/2 Mouse Support","titles":[]},"2038":{"title":"The Circuitry between Trackpoint and Controller","titles":["PS/2 Mouse Support"]},"2039":{"title":"Driver Configuration","titles":["PS/2 Mouse Support"]},"2040":{"title":"Busywait Driver","titles":["PS/2 Mouse Support","Driver Configuration"]},"2041":{"title":"Interrupt Driver (AVR/ATMega32u4)","titles":["PS/2 Mouse Support","Driver Configuration"]},"2042":{"title":"Interrupt Driver (ARM chibios)","titles":["PS/2 Mouse Support","Driver Configuration"]},"2043":{"title":"USART Driver","titles":["PS/2 Mouse Support","Driver Configuration"]},"2044":{"title":"RP2040 PIO Driver","titles":["PS/2 Mouse Support","Driver Configuration"]},"2045":{"title":"Additional Settings","titles":["PS/2 Mouse Support"]},"2046":{"title":"PS/2 Mouse Features","titles":["PS/2 Mouse Support","Additional Settings"]},"2047":{"title":"Fine Control","titles":["PS/2 Mouse Support","Additional Settings"]},"2048":{"title":"Scroll Button","titles":["PS/2 Mouse Support","Additional Settings"]},"2049":{"title":"Invert Mouse buttons","titles":["PS/2 Mouse Support","Additional Settings"]},"2050":{"title":"Invert Mouse and Scroll Axes","titles":["PS/2 Mouse Support","Additional Settings"]},"2051":{"title":"Rotate Mouse Axes","titles":["PS/2 Mouse Support","Additional Settings"]},"2052":{"title":"Debug Settings","titles":["PS/2 Mouse Support","Additional Settings"]},"2053":{"title":"Movement Hook","titles":["PS/2 Mouse Support","Additional Settings"]},"2054":{"title":"Raw HID","titles":[]},"2055":{"title":"Usage","titles":["Raw HID"]},"2056":{"title":"Basic Configuration","titles":["Raw HID"]},"2057":{"title":"Sending Data to the Keyboard","titles":["Raw HID"]},"2058":{"title":"Receiving Data from the Keyboard","titles":["Raw HID"]},"2059":{"title":"Simple Example","titles":["Raw HID"]},"2060":{"title":"API","titles":["Raw HID"]},"2061":{"title":"void raw_hid_receive(uint8_t *data, uint8_t length)","titles":["Raw HID","API"]},"2062":{"title":"Arguments","titles":["Raw HID","API","void raw_hid_receive(uint8_t *data, uint8_t length)"]},"2063":{"title":"void raw_hid_send(uint8_t *data, uint8_t length)","titles":["Raw HID","API"]},"2064":{"title":"Arguments","titles":["Raw HID","API","void raw_hid_send(uint8_t *data, uint8_t length)"]},"2065":{"title":"Repeat Key","titles":[]},"2066":{"title":"How do I enable Repeat Key","titles":["Repeat Key"]},"2067":{"title":"Keycodes","titles":["Repeat Key"]},"2068":{"title":"Alternate Repeating","titles":["Repeat Key"]},"2069":{"title":"Defining alternate keys","titles":["Repeat Key"]},"2070":{"title":"Eliminating SFBs","titles":["Repeat Key","Defining alternate keys"]},"2071":{"title":"Typing shortcuts","titles":["Repeat Key","Defining alternate keys"]},"2072":{"title":"Ignoring certain keys and mods","titles":["Repeat Key"]},"2073":{"title":"Ignoring a key","titles":["Repeat Key","Ignoring certain keys and mods"]},"2074":{"title":"Filtering remembered mods","titles":["Repeat Key","Ignoring certain keys and mods"]},"2075":{"title":"Further conditions","titles":["Repeat Key","Ignoring certain keys and mods"]},"2076":{"title":"Handle how a key is repeated","titles":["Repeat Key"]},"2077":{"title":"Handle how a key is alternate repeated","titles":["Repeat Key"]},"2078":{"title":"Functions","titles":["Repeat Key"]},"2079":{"title":"Additional "Alternate" keys","titles":["Repeat Key"]},"2080":{"title":"RGB Matrix Lighting","titles":[]},"2081":{"title":"Driver Configuration","titles":["RGB Matrix Lighting"]},"2082":{"title":"Common Configuration","titles":["RGB Matrix Lighting"]},"2083":{"title":"Flags","titles":["RGB Matrix Lighting"]},"2084":{"title":"Keycodes","titles":["RGB Matrix Lighting"]},"2085":{"title":"RGB Matrix Effects","titles":["RGB Matrix Lighting"]},"2086":{"title":"RGB Matrix Effect Typing Heatmap","titles":["RGB Matrix Lighting","RGB Matrix Effects"]},"2087":{"title":"RGB Matrix Effect Solid Reactive","titles":["RGB Matrix Lighting","RGB Matrix Effects"]},"2088":{"title":"Custom RGB Matrix Effects","titles":["RGB Matrix Lighting"]},"2089":{"title":"Colors","titles":["RGB Matrix Lighting"]},"2090":{"title":"Naming","titles":["RGB Matrix Lighting"]},"2091":{"title":"Additional config.h Options","titles":["RGB Matrix Lighting"]},"2092":{"title":"EEPROM storage","titles":["RGB Matrix Lighting"]},"2093":{"title":"Callbacks","titles":["RGB Matrix Lighting"]},"2094":{"title":"Indicators","titles":["RGB Matrix Lighting","Callbacks"]},"2095":{"title":"Indicator Examples","titles":["RGB Matrix Lighting","Callbacks"]},"2096":{"title":"Examples","titles":["RGB Matrix Lighting","Callbacks","Indicator Examples"]},"2097":{"title":"Indicators without RGB Matrix Effect","titles":["RGB Matrix Lighting","Callbacks","Indicator Examples"]},"2098":{"title":"API","titles":["RGB Matrix Lighting"]},"2099":{"title":"void rgb_matrix_toggle(void)","titles":["RGB Matrix Lighting","API"]},"2100":{"title":"void rgb_matrix_toggle_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2101":{"title":"void rgb_matrix_enable(void)","titles":["RGB Matrix Lighting","API"]},"2102":{"title":"void rgb_matrix_enable_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2103":{"title":"void rgb_matrix_disable(void)","titles":["RGB Matrix Lighting","API"]},"2104":{"title":"void rgb_matrix_disable_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2105":{"title":"bool rgb_matrix_is_enabled(void)","titles":["RGB Matrix Lighting","API"]},"2106":{"title":"Return Value","titles":["RGB Matrix Lighting","API","bool rgb_matrix_is_enabled(void)"]},"2107":{"title":"void rgb_matrix_set_color(uint8_t index, uint8_t r, uint8_t g, uint8_t b)","titles":["RGB Matrix Lighting","API"]},"2108":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_color(uint8_t index, uint8_t r, uint8_t g, uint8_t b)"]},"2109":{"title":"void rgb_matrix_set_color_all(uint8_t r, uint8_t g, uint8_t b)","titles":["RGB Matrix Lighting","API"]},"2110":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_color_all(uint8_t r, uint8_t g, uint8_t b)"]},"2111":{"title":"void rgb_matrix_mode(uint8_t mode)","titles":["RGB Matrix Lighting","API"]},"2112":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_mode(uint8_t mode)"]},"2113":{"title":"void rgb_matrix_mode_noeeprom(uint8_t mode)","titles":["RGB Matrix Lighting","API"]},"2114":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_mode_noeeprom(uint8_t mode)"]},"2115":{"title":"void rgb_matrix_step(void)","titles":["RGB Matrix Lighting","API"]},"2116":{"title":"void rgb_matrix_step_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2117":{"title":"void rgb_matrix_step_reverse(void)","titles":["RGB Matrix Lighting","API"]},"2118":{"title":"void rgb_matrix_step_reverse_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2119":{"title":"uint8_t rgb_matrix_get_mode(void)","titles":["RGB Matrix Lighting","API"]},"2120":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_mode(void)"]},"2121":{"title":"void rgb_matrix_increase_hue(void)","titles":["RGB Matrix Lighting","API"]},"2122":{"title":"void rgb_matrix_increase_hue_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2123":{"title":"void rgb_matrix_decrease_hue(void)","titles":["RGB Matrix Lighting","API"]},"2124":{"title":"void rgb_matrix_decrease_hue_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2125":{"title":"uint8_t rgb_matrix_get_hue(void)","titles":["RGB Matrix Lighting","API"]},"2126":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_hue(void)"]},"2127":{"title":"void rgb_matrix_increase_sat(void)","titles":["RGB Matrix Lighting","API"]},"2128":{"title":"void rgb_matrix_increase_sat_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2129":{"title":"void rgb_matrix_decrease_sat(void)","titles":["RGB Matrix Lighting","API"]},"2130":{"title":"void rgb_matrix_decrease_sat_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2131":{"title":"uint8_t rgb_matrix_get_sat(void)","titles":["RGB Matrix Lighting","API"]},"2132":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_sat(void)"]},"2133":{"title":"void rgb_matrix_increase_val(void)","titles":["RGB Matrix Lighting","API"]},"2134":{"title":"void rgb_matrix_increase_val_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2135":{"title":"void rgb_matrix_decrease_val(void)","titles":["RGB Matrix Lighting","API"]},"2136":{"title":"void rgb_matrix_decrease_val_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2137":{"title":"uint8_t rgb_matrix_get_val(void)","titles":["RGB Matrix Lighting","API"]},"2138":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_val(void)"]},"2139":{"title":"void rgb_matrix_increase_speed(void)","titles":["RGB Matrix Lighting","API"]},"2140":{"title":"void rgb_matrix_increase_speed_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2141":{"title":"void rgb_matrix_decrease_speed(void)","titles":["RGB Matrix Lighting","API"]},"2142":{"title":"void rgb_matrix_decrease_speed_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2143":{"title":"void rgb_matrix_set_speed(uint8_t speed)","titles":["RGB Matrix Lighting","API"]},"2144":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_speed(uint8_t speed)"]},"2145":{"title":"void rgb_matrix_set_speed_noeeprom(uint8_t speed)","titles":["RGB Matrix Lighting","API"]},"2146":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_speed_noeeprom(uint8_t speed)"]},"2147":{"title":"uint8_t rgb_matrix_get_speed(void)","titles":["RGB Matrix Lighting","API"]},"2148":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_speed(void)"]},"2149":{"title":"void rgb_matrix_set_flags(led_flags_t flags)","titles":["RGB Matrix Lighting","API"]},"2150":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_flags(led_flags_t flags)"]},"2151":{"title":"void rgb_matrix_set_flags_noeeprom(led_flags_t flags)","titles":["RGB Matrix Lighting","API"]},"2152":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_set_flags_noeeprom(led_flags_t flags)"]},"2153":{"title":"void rgb_matrix_flags_step(void)","titles":["RGB Matrix Lighting","API"]},"2154":{"title":"void rgb_matrix_flags_step_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2155":{"title":"void rgb_matrix_flags_step_reverse(void)","titles":["RGB Matrix Lighting","API"]},"2156":{"title":"void rgb_matrix_flags_step_reverse_noeeprom(void)","titles":["RGB Matrix Lighting","API"]},"2157":{"title":"uint8_t rgb_matrix_get_flags(void)","titles":["RGB Matrix Lighting","API"]},"2158":{"title":"Return Value","titles":["RGB Matrix Lighting","API","uint8_t rgb_matrix_get_flags(void)"]},"2159":{"title":"void rgb_matrix_sethsv(uint8_t h, uint8_t s, uint8_t v)","titles":["RGB Matrix Lighting","API"]},"2160":{"title":"Arguments","titles":["RGB Matrix Lighting","API"]},"2161":{"title":"void rgb_matrix_sethsv_noeeprom(uint8_t h, uint8_t s, uint8_t v)","titles":["RGB Matrix Lighting","API"]},"2162":{"title":"Arguments","titles":["RGB Matrix Lighting","API","void rgb_matrix_sethsv_noeeprom(uint8_t h, uint8_t s, uint8_t v)"]},"2163":{"title":"hsv_t rgb_matrix_get_hsv(void)","titles":["RGB Matrix Lighting","API"]},"2164":{"title":"Return Value","titles":["RGB Matrix Lighting","API","hsv_t rgb_matrix_get_hsv(void)"]},"2165":{"title":"void rgb_matrix_reload_from_eeprom(void)","titles":["RGB Matrix Lighting","API"]},"2166":{"title":"bool rgb_matrix_get_suspend_state(void)","titles":["RGB Matrix Lighting","API"]},"2167":{"title":"Return Value","titles":["RGB Matrix Lighting","API","bool rgb_matrix_get_suspend_state(void)"]},"2168":{"title":"bool rgb_matrix_indicators_kb(void)","titles":["RGB Matrix Lighting","API"]},"2169":{"title":"Return Value","titles":["RGB Matrix Lighting","API","bool rgb_matrix_indicators_kb(void)"]},"2170":{"title":"bool rgb_matrix_indicators_user(void)","titles":["RGB Matrix Lighting","API"]},"2171":{"title":"Return Value","titles":["RGB Matrix Lighting","API","bool rgb_matrix_indicators_user(void)"]},"2172":{"title":"bool rgb_matrix_indicators_advanced_kb(uint8_t led_min, uint8_t led_max)","titles":["RGB Matrix Lighting","API"]},"2173":{"title":"Arguments","titles":["RGB Matrix Lighting","API"]},"2174":{"title":"Return Value","titles":["RGB Matrix Lighting","API","Arguments"]},"2175":{"title":"bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max)","titles":["RGB Matrix Lighting","API"]},"2176":{"title":"Arguments","titles":["RGB Matrix Lighting","API"]},"2177":{"title":"Return Value","titles":["RGB Matrix Lighting","API","Arguments"]},"2178":{"title":"RGB Lighting","titles":[]},"2179":{"title":"Usage","titles":["RGB Lighting"]},"2180":{"title":"Color Selection","titles":["RGB Lighting","Usage"]},"2181":{"title":"Keycodes","titles":["RGB Lighting"]},"2182":{"title":"Configuration","titles":["RGB Lighting"]},"2183":{"title":"Effects and Animations","titles":["RGB Lighting"]},"2184":{"title":"Effect and Animation Toggles","titles":["RGB Lighting","Effects and Animations"]},"2185":{"title":"Effect and Animation Settings","titles":["RGB Lighting","Effects and Animations"]},"2186":{"title":"Example Usage to Reduce Memory Footprint","titles":["RGB Lighting","Effects and Animations"]},"2187":{"title":"Animation Speed","titles":["RGB Lighting","Effects and Animations"]},"2188":{"title":"Lighting Layers","titles":["RGB Lighting"]},"2189":{"title":"Defining Lighting Layers","titles":["RGB Lighting","Lighting Layers"]},"2190":{"title":"Enabling and disabling lighting layers","titles":["RGB Lighting","Lighting Layers"]},"2191":{"title":"Lighting layer blink","titles":["RGB Lighting","Lighting Layers"]},"2192":{"title":"Overriding RGB Lighting on/off status","titles":["RGB Lighting","Lighting Layers"]},"2193":{"title":"Retain brightness","titles":["RGB Lighting","Lighting Layers"]},"2194":{"title":"Functions","titles":["RGB Lighting"]},"2195":{"title":"Low level Functions","titles":["RGB Lighting","Functions"]},"2196":{"title":"Effects and Animations Functions","titles":["RGB Lighting","Functions"]},"2197":{"title":"effect range setting","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2198":{"title":"direct operation","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2199":{"title":"effect mode change","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2200":{"title":"effects mode disable/enable","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2201":{"title":"hue, sat, val change","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2202":{"title":"Speed functions","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2203":{"title":"layer functions","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2204":{"title":"query","titles":["RGB Lighting","Functions","Effects and Animations Functions"]},"2205":{"title":"Colors","titles":["RGB Lighting"]},"2206":{"title":"Changing the order of the LEDs","titles":["RGB Lighting"]},"2207":{"title":"Clipping Range","titles":["RGB Lighting"]},"2208":{"title":"Hardware Modification","titles":["RGB Lighting"]},"2209":{"title":"Velocikey","titles":["RGB Lighting"]},"2210":{"title":"Usage","titles":["RGB Lighting","Velocikey"]},"2211":{"title":"Configuration","titles":["RGB Lighting","Velocikey"]},"2212":{"title":"Secure","titles":[]},"2213":{"title":"Unlock sequence","titles":["Secure"]},"2214":{"title":"Automatic Locking","titles":["Secure"]},"2215":{"title":"Usage","titles":["Secure"]},"2216":{"title":"Keycodes","titles":["Secure"]},"2217":{"title":"Configuration","titles":["Secure"]},"2218":{"title":"Functions","titles":["Secure"]},"2219":{"title":"Send String","titles":[]},"2220":{"title":"Usage","titles":["Send String"]},"2221":{"title":"Basic Configuration","titles":["Send String"]},"2222":{"title":"Keycodes","titles":["Send String"]},"2223":{"title":"Language Support","titles":["Send String","Keycodes"]},"2224":{"title":"Examples","titles":["Send String"]},"2225":{"title":"Hello World","titles":["Send String","Examples"]},"2226":{"title":"Keycode Injection","titles":["Send String","Examples"]},"2227":{"title":"API","titles":["Send String"]},"2228":{"title":"void send_string(const char *string)","titles":["Send String","API"]},"2229":{"title":"Arguments","titles":["Send String","API","void send_string(const char *string)"]},"2230":{"title":"void send_string_with_delay(const char *string, uint8_t interval)","titles":["Send String","API"]},"2231":{"title":"Arguments","titles":["Send String","API","void send_string_with_delay(const char *string, uint8_t interval)"]},"2232":{"title":"void send_string_P(const char *string)","titles":["Send String","API"]},"2233":{"title":"Arguments","titles":["Send String","API","void send_string_P(const char *string)"]},"2234":{"title":"void send_string_with_delay_P(const char *string, uint8_t interval)","titles":["Send String","API"]},"2235":{"title":"Arguments","titles":["Send String","API","void send_string_with_delay_P(const char *string, uint8_t interval)"]},"2236":{"title":"void send_char(char ascii_code)","titles":["Send String","API"]},"2237":{"title":"Arguments","titles":["Send String","API","void send_char(char ascii_code)"]},"2238":{"title":"void send_dword(uint32_t number)","titles":["Send String","API"]},"2239":{"title":"Arguments","titles":["Send String","API","void send_dword(uint32_t number)"]},"2240":{"title":"void send_word(uint16_t number)","titles":["Send String","API"]},"2241":{"title":"Arguments","titles":["Send String","API","void send_word(uint16_t number)"]},"2242":{"title":"void send_byte(uint8_t number)","titles":["Send String","API"]},"2243":{"title":"Arguments","titles":["Send String","API","void send_byte(uint8_t number)"]},"2244":{"title":"void send_nibble(uint8_t number)","titles":["Send String","API"]},"2245":{"title":"Arguments","titles":["Send String","API","void send_nibble(uint8_t number)"]},"2246":{"title":"void tap_random_base64(void)","titles":["Send String","API"]},"2247":{"title":"SEND_STRING(string)","titles":["Send String","API"]},"2248":{"title":"SEND_STRING_DELAY(string, interval)","titles":["Send String","API"]},"2249":{"title":"Sequencer","titles":[]},"2250":{"title":"Enable the step sequencer","titles":["Sequencer"]},"2251":{"title":"Tracks","titles":["Sequencer"]},"2252":{"title":"Resolutions","titles":["Sequencer"]},"2253":{"title":"Keycodes","titles":["Sequencer"]},"2254":{"title":"Functions","titles":["Sequencer"]},"2255":{"title":"Space Cadet: The Future, Built In","titles":[]},"2256":{"title":"Usage","titles":["Space Cadet: The Future, Built In"]},"2257":{"title":"Keycodes","titles":["Space Cadet: The Future, Built In"]},"2258":{"title":"Caveats","titles":["Space Cadet: The Future, Built In"]},"2259":{"title":"Configuration","titles":["Space Cadet: The Future, Built In"]},"2260":{"title":"Obsolete Configuration","titles":["Space Cadet: The Future, Built In"]},"2261":{"title":"Split Keyboard","titles":[]},"2262":{"title":"Compatibility Overview","titles":["Split Keyboard"]},"2263":{"title":"Hardware Configuration","titles":["Split Keyboard"]},"2264":{"title":"Required Hardware","titles":["Split Keyboard","Hardware Configuration"]},"2265":{"title":"Considerations","titles":["Split Keyboard","Hardware Configuration","Required Hardware"]},"2266":{"title":"Serial Wiring","titles":["Split Keyboard","Hardware Configuration"]},"2267":{"title":"I2C Wiring","titles":["Split Keyboard","Hardware Configuration"]},"2268":{"title":"Firmware Configuration","titles":["Split Keyboard"]},"2269":{"title":"Layout Macro","titles":["Split Keyboard","Firmware Configuration"]},"2270":{"title":"Setting Handedness","titles":["Split Keyboard","Firmware Configuration"]},"2271":{"title":"Handedness by Pin","titles":["Split Keyboard","Firmware Configuration","Setting Handedness"]},"2272":{"title":"Handedness by Matrix Pin","titles":["Split Keyboard","Firmware Configuration","Setting Handedness"]},"2273":{"title":"Handedness by EEPROM","titles":["Split Keyboard","Firmware Configuration","Setting Handedness"]},"2274":{"title":"Handedness by #define","titles":["Split Keyboard","Firmware Configuration","Setting Handedness"]},"2275":{"title":"Communication Options","titles":["Split Keyboard","Firmware Configuration"]},"2276":{"title":"Data Sync Options","titles":["Split Keyboard","Firmware Configuration"]},"2277":{"title":"Custom data sync between sides","titles":["Split Keyboard","Firmware Configuration"]},"2278":{"title":"Hardware Configuration Options","titles":["Split Keyboard","Firmware Configuration"]},"2279":{"title":"Hardware Considerations and Mods","titles":["Split Keyboard"]},"2280":{"title":"Teensy boards","titles":["Split Keyboard","Hardware Considerations and Mods"]},"2281":{"title":"Additional Resources","titles":["Split Keyboard"]},"2282":{"title":"ST7565 LCD Driver","titles":[]},"2283":{"title":"Supported Hardware","titles":["ST7565 LCD Driver"]},"2284":{"title":"Usage","titles":["ST7565 LCD Driver"]},"2285":{"title":"Logo Example","titles":["ST7565 LCD Driver"]},"2286":{"title":"Buffer Read Example","titles":["ST7565 LCD Driver"]},"2287":{"title":"Other Examples","titles":["ST7565 LCD Driver"]},"2288":{"title":"Basic Configuration","titles":["ST7565 LCD Driver"]},"2289":{"title":"Custom sized displays","titles":["ST7565 LCD Driver"]},"2290":{"title":"API","titles":["ST7565 LCD Driver"]},"2291":{"title":"Stenography in QMK","titles":[]},"2292":{"title":"Steno Support in QMK","titles":["Stenography in QMK"]},"2293":{"title":"Plover with QWERTY Keyboard","titles":["Stenography in QMK"]},"2294":{"title":"Plover with Steno Protocol","titles":["Stenography in QMK"]},"2295":{"title":"TX Bolt","titles":["Stenography in QMK","Plover with Steno Protocol"]},"2296":{"title":"GeminiPR","titles":["Stenography in QMK","Plover with Steno Protocol"]},"2297":{"title":"Switching protocols on the fly","titles":["Stenography in QMK","Plover with Steno Protocol"]},"2298":{"title":"Configuring QMK for Steno","titles":["Stenography in QMK"]},"2299":{"title":"Learning Stenography","titles":["Stenography in QMK"]},"2300":{"title":"Interfacing with the code","titles":["Stenography in QMK"]},"2301":{"title":"Keycode Reference","titles":["Stenography in QMK"]},"2302":{"title":"Swap-Hands Action","titles":[]},"2303":{"title":"Configuration","titles":["Swap-Hands Action"]},"2304":{"title":"Swap Keycodes","titles":["Swap-Hands Action"]},"2305":{"title":"Encoder Mapping","titles":["Swap-Hands Action"]},"2306":{"title":"Functions","titles":["Swap-Hands Action","Encoder Mapping"]},"2307":{"title":"Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","titles":[]},"2308":{"title":"Introduction","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things"]},"2309":{"title":"How to Use Tap Dance","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things"]},"2310":{"title":"Implementation Details","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things"]},"2311":{"title":"Examples","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things"]},"2312":{"title":"Simple Example: Send ESC on Single Tap, CAPS_LOCK on Double Tap","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples"]},"2313":{"title":"Complex Examples","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples"]},"2314":{"title":"Example 1: Send "Safety Dance!" After 100 Taps","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2315":{"title":"Example 2: Turn LED Lights On Then Off, One at a Time","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2316":{"title":"Example 3: Send : on Tap, ; on Hold","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2317":{"title":"Example 4: 'Quad Function Tap-Dance'","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2318":{"title":"Example 5: Using tap dance for advanced mod-tap and layer-tap keys","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2319":{"title":"Example 6: Using tap dance for momentary-layer-switch and layer-toggle keys","titles":["Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things","Examples","Complex Examples"]},"2320":{"title":"Tri Layers","titles":[]},"2321":{"title":"Keycodes","titles":["Tri Layers"]},"2322":{"title":"Configuration","titles":["Tri Layers"]},"2323":{"title":"Functions","titles":["Tri Layers"]},"2324":{"title":"Unicode","titles":[]},"2325":{"title":"Caveats","titles":["Unicode"]},"2326":{"title":"Usage","titles":["Unicode"]},"2327":{"title":"Basic Configuration","titles":["Unicode"]},"2328":{"title":"Audio Feedback","titles":["Unicode","Basic Configuration"]},"2329":{"title":"Input Subsystems","titles":["Unicode"]},"2330":{"title":"Lower and Upper Case Pairs","titles":["Unicode","Input Subsystems","Audio Feedback"]},"2331":{"title":"Input Modes","titles":["Unicode"]},"2332":{"title":"Keycodes","titles":["Unicode"]},"2333":{"title":"API","titles":["Unicode"]},"2334":{"title":"uint8_t get_unicode_input_mode(void)","titles":["Unicode","API"]},"2335":{"title":"Return Value","titles":["Unicode","API","uint8_t get_unicode_input_mode(void)"]},"2336":{"title":"void set_unicode_input_mode(uint8_t mode)","titles":["Unicode","API"]},"2337":{"title":"Arguments","titles":["Unicode","API","void set_unicode_input_mode(uint8_t mode)"]},"2338":{"title":"void unicode_input_mode_step(void)","titles":["Unicode","API"]},"2339":{"title":"void unicode_input_mode_step_reverse(void)","titles":["Unicode","API"]},"2340":{"title":"void unicode_input_mode_set_user(uint8_t input_mode)","titles":["Unicode","API"]},"2341":{"title":"Arguments","titles":["Unicode","API","void unicode_input_mode_set_user(uint8_t input_mode)"]},"2342":{"title":"void unicode_input_mode_set_kb(uint8_t input_mode)","titles":["Unicode","API"]},"2343":{"title":"Arguments","titles":["Unicode","API","void unicode_input_mode_set_kb(uint8_t input_mode)"]},"2344":{"title":"void unicode_input_start(void)","titles":["Unicode","API"]},"2345":{"title":"void unicode_input_finish(void)","titles":["Unicode","API"]},"2346":{"title":"void unicode_input_cancel(void)","titles":["Unicode","API"]},"2347":{"title":"void register_unicode(uint32_t code_point)","titles":["Unicode","API"]},"2348":{"title":"Arguments","titles":["Unicode","API","void register_unicode(uint32_t code_point)"]},"2349":{"title":"void send_unicode_string(const char *str)","titles":["Unicode","API"]},"2350":{"title":"Arguments","titles":["Unicode","API","void send_unicode_string(const char *str)"]},"2351":{"title":"uint8_t unicodemap_index(uint16_t keycode)","titles":["Unicode","API"]},"2352":{"title":"Arguments","titles":["Unicode","API","uint8_t unicodemap_index(uint16_t keycode)"]},"2353":{"title":"Return Value","titles":["Unicode","API","uint8_t unicodemap_index(uint16_t keycode)"]},"2354":{"title":"uint32_t unicodemap_get_code_point(uint8_t index)","titles":["Unicode","API"]},"2355":{"title":"Arguments","titles":["Unicode","API","uint32_t unicodemap_get_code_point(uint8_t index)"]},"2356":{"title":"Return Value","titles":["Unicode","API","uint32_t unicodemap_get_code_point(uint8_t index)"]},"2357":{"title":"void register_unicodemap(uint8_t index)","titles":["Unicode","API"]},"2358":{"title":"Arguments","titles":["Unicode","API","void register_unicodemap(uint8_t index)"]},"2359":{"title":"void ucis_start(void)","titles":["Unicode","API"]},"2360":{"title":"bool ucis_active(void)","titles":["Unicode","API"]},"2361":{"title":"Return Value","titles":["Unicode","API","bool ucis_active(void)"]},"2362":{"title":"uint8_t ucis_count(void)","titles":["Unicode","API"]},"2363":{"title":"Return Value","titles":["Unicode","API","uint8_t ucis_count(void)"]},"2364":{"title":"bool ucis_add(uint16_t keycode)","titles":["Unicode","API"]},"2365":{"title":"Arguments","titles":["Unicode","API","bool ucis_add(uint16_t keycode)"]},"2366":{"title":"Return Value","titles":["Unicode","API","bool ucis_add(uint16_t keycode)"]},"2367":{"title":"bool ucis_remove_last(void)","titles":["Unicode","API"]},"2368":{"title":"Return Value","titles":["Unicode","API","bool ucis_remove_last(void)"]},"2369":{"title":"void ucis_finish(void)","titles":["Unicode","API"]},"2370":{"title":"void ucis_cancel(void)","titles":["Unicode","API"]},"2371":{"title":"void register_ucis(void)","titles":["Unicode","API"]},"2372":{"title":"Arguments","titles":["Unicode","API","void register_ucis(void)"]},"2373":{"title":"Wireless / Bluetooth","titles":[]},"2374":{"title":"Bluetooth Known Supported Hardware","titles":["Wireless / Bluetooth"]},"2375":{"title":"Adafruit BLE SPI Friend","titles":["Wireless / Bluetooth","Bluetooth Known Supported Hardware"]},"2376":{"title":"Bluetooth Rules.mk Options","titles":["Wireless / Bluetooth"]},"2377":{"title":"Bluetooth Keycodes","titles":["Wireless / Bluetooth"]},"2378":{"title":"Word Per Minute (WPM) Calculation","titles":[]},"2379":{"title":"Configuration","titles":["Word Per Minute (WPM) Calculation"]},"2380":{"title":"Public Functions","titles":["Word Per Minute (WPM) Calculation"]},"2381":{"title":"Callbacks","titles":["Word Per Minute (WPM) Calculation"]},"2382":{"title":"Docker Quick Start","titles":[]},"2383":{"title":"Requirements","titles":["Docker Quick Start"]},"2384":{"title":"Usage","titles":["Docker Quick Start"]},"2385":{"title":"FAQ","titles":["Docker Quick Start"]},"2386":{"title":"Why can't I flash on Windows/macOS","titles":["Docker Quick Start","FAQ"]},"2387":{"title":"How to Use GitHub with QMK","titles":[]},"2388":{"title":"Flashing Instructions and Bootloader Information","titles":[]},"2389":{"title":"Atmel DFU","titles":["Flashing Instructions and Bootloader Information"]},"2390":{"title":"QMK DFU","titles":["Flashing Instructions and Bootloader Information","Atmel DFU"]},"2391":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","Atmel DFU"]},"2392":{"title":"Caterina","titles":["Flashing Instructions and Bootloader Information"]},"2393":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","Caterina"]},"2394":{"title":"HalfKay","titles":["Flashing Instructions and Bootloader Information"]},"2395":{"title":"USBasploader","titles":["Flashing Instructions and Bootloader Information"]},"2396":{"title":"BootloadHID","titles":["Flashing Instructions and Bootloader Information"]},"2397":{"title":"QMK HID","titles":["Flashing Instructions and Bootloader Information","BootloadHID"]},"2398":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","BootloadHID"]},"2399":{"title":"STM32/APM32 DFU","titles":["Flashing Instructions and Bootloader Information"]},"2400":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","STM32/APM32 DFU"]},"2401":{"title":"STM32duino","titles":["Flashing Instructions and Bootloader Information"]},"2402":{"title":"Kiibohd DFU","titles":["Flashing Instructions and Bootloader Information"]},"2403":{"title":"WB32 DFU","titles":["Flashing Instructions and Bootloader Information"]},"2404":{"title":"AT32 DFU","titles":["Flashing Instructions and Bootloader Information"]},"2405":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","AT32 DFU"]},"2406":{"title":"tinyuf2","titles":["Flashing Instructions and Bootloader Information"]},"2407":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","tinyuf2"]},"2408":{"title":"uf2boot","titles":["Flashing Instructions and Bootloader Information"]},"2409":{"title":"make Targets","titles":["Flashing Instructions and Bootloader Information","uf2boot"]},"2410":{"title":"Raspberry Pi RP2040 UF2","titles":["Flashing Instructions and Bootloader Information"]},"2411":{"title":"Introduction","titles":[]},"2412":{"title":"Basic QMK Structure","titles":["Introduction"]},"2413":{"title":"Userspace Structure","titles":["Introduction","Basic QMK Structure"]},"2414":{"title":"Keyboard Project Structure","titles":["Introduction","Basic QMK Structure"]},"2415":{"title":"Keymap Structure","titles":["Introduction","Basic QMK Structure"]},"2416":{"title":"The config.h File","titles":[]},"2417":{"title":"More Detailed make Instructions","titles":[]},"2418":{"title":"rules.mk Options","titles":["More Detailed make Instructions"]},"2419":{"title":"Customizing Makefile Options on a Per-Keymap Basis","titles":["More Detailed make Instructions"]},"2420":{"title":"Hand-Wiring Guide","titles":[]},"2421":{"title":"Parts list","titles":["Hand-Wiring Guide"]},"2422":{"title":"Starting the build","titles":["Hand-Wiring Guide"]},"2423":{"title":"Planning the matrix","titles":["Hand-Wiring Guide"]},"2424":{"title":"Common Microcontroller Boards","titles":["Hand-Wiring Guide","Planning the matrix"]},"2425":{"title":"Wiring the matrix","titles":["Hand-Wiring Guide"]},"2426":{"title":"A note on split keyboards","titles":["Hand-Wiring Guide","Wiring the matrix"]},"2427":{"title":"Soldering","titles":["Hand-Wiring Guide","Wiring the matrix"]},"2428":{"title":"Soldering the Diodes","titles":["Hand-Wiring Guide","Wiring the matrix","Soldering"]},"2429":{"title":"Soldering the Columns","titles":["Hand-Wiring Guide","Wiring the matrix","Soldering"]},"2430":{"title":"Wiring up the controller","titles":["Hand-Wiring Guide"]},"2431":{"title":"Specific instructions for the Teensy 2.0","titles":["Hand-Wiring Guide","Wiring up the controller"]},"2432":{"title":"Getting Some Basic Firmware Set Up","titles":["Hand-Wiring Guide"]},"2433":{"title":"Flashing the Firmware","titles":["Hand-Wiring Guide"]},"2434":{"title":"Testing Your Firmware","titles":["Hand-Wiring Guide"]},"2435":{"title":"Finishing up","titles":["Hand-Wiring Guide"]},"2436":{"title":"Links to Other Guides","titles":["Hand-Wiring Guide"]},"2437":{"title":"Legacy Content","titles":[]},"2438":{"title":"Preamble: How a Keyboard Matrix Works (and why we need diodes)","titles":["Legacy Content"]},"2439":{"title":"QMK Hardware Drivers","titles":[]},"2440":{"title":"Available Drivers","titles":[]},"2441":{"title":"ProMicro (AVR Only)","titles":["Available Drivers"]},"2442":{"title":"SSD1306 OLED Driver","titles":["Available Drivers"]},"2443":{"title":"WS2812","titles":["Available Drivers"]},"2444":{"title":"IS31FL3731","titles":["Available Drivers"]},"2445":{"title":"IS31FL3733","titles":["Available Drivers"]},"2446":{"title":"24xx series external I2C EEPROM","titles":["Available Drivers"]},"2447":{"title":"QMK Keyboard Guidelines","titles":[]},"2448":{"title":"Use QMK Lint","titles":["QMK Keyboard Guidelines"]},"2449":{"title":"Naming Your Keyboard/Project","titles":["QMK Keyboard Guidelines"]},"2450":{"title":"Sub-folders","titles":["QMK Keyboard Guidelines"]},"2451":{"title":"Keyboard Folder Structure","titles":["QMK Keyboard Guidelines"]},"2452":{"title":"readme.md","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2453":{"title":"keyboard.json/info.json","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2454":{"title":"config.h","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2455":{"title":"rules.mk","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2456":{"title":"<keyboard>.c","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2457":{"title":"<keyboard>.h","titles":["QMK Keyboard Guidelines","Keyboard Folder Structure"]},"2458":{"title":"Image/Hardware Files","titles":["QMK Keyboard Guidelines"]},"2459":{"title":"Keyboard Defaults","titles":["QMK Keyboard Guidelines"]},"2460":{"title":"Magic Keycodes and Command","titles":["QMK Keyboard Guidelines","Keyboard Defaults"]},"2461":{"title":"Custom Keyboard Programming","titles":["QMK Keyboard Guidelines"]},"2462":{"title":"Non-Production/Handwired Projects","titles":["QMK Keyboard Guidelines"]},"2463":{"title":"Warnings as Errors","titles":["QMK Keyboard Guidelines"]},"2464":{"title":"Copyright Blurb","titles":["QMK Keyboard Guidelines"]},"2465":{"title":"License","titles":["QMK Keyboard Guidelines"]},"2466":{"title":"How a Keyboard Matrix Works","titles":[]},"2467":{"title":"How Keys Are Registered, and Interpreted by Computers","titles":[]},"2468":{"title":"Schematic View","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2469":{"title":"1. You Press a Key","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2470":{"title":"2. What the Firmware Sends","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2471":{"title":"3. What the Event Input/Kernel Does","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2472":{"title":"4. What the Operating System Does","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2473":{"title":"Back to the Firmware","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2474":{"title":"List of Characters You Can Send","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2475":{"title":"How to (Maybe) Enter Unicode Characters","titles":["How Keys Are Registered, and Interpreted by Computers"]},"2476":{"title":"Quantum Mechanical Keyboard Firmware","titles":[]},"2477":{"title":"What is QMK Firmware?","titles":["Quantum Mechanical Keyboard Firmware"]},"2478":{"title":"Get Started","titles":["Quantum Mechanical Keyboard Firmware"]},"2479":{"title":"Make It Yours","titles":["Quantum Mechanical Keyboard Firmware"]},"2480":{"title":"Need help?","titles":["Quantum Mechanical Keyboard Firmware"]},"2481":{"title":"Give Back","titles":["Quantum Mechanical Keyboard Firmware"]},"2482":{"title":"ISP Flashing Guide","titles":[]},"2483":{"title":"Hardware","titles":["ISP Flashing Guide"]},"2484":{"title":"Pro Micro as ISP","titles":["ISP Flashing Guide","Hardware"]},"2485":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","Pro Micro as ISP"]},"2486":{"title":"Arduino Uno / Micro as ISP","titles":["ISP Flashing Guide","Hardware"]},"2487":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","Arduino Uno / Micro as ISP"]},"2488":{"title":"Teensy 2.0 as ISP","titles":["ISP Flashing Guide","Hardware"]},"2489":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","Teensy 2.0 as ISP"]},"2490":{"title":"SparkFun PocketAVR / USBtinyISP","titles":["ISP Flashing Guide","Hardware"]},"2491":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","SparkFun PocketAVR / USBtinyISP"]},"2492":{"title":"USBasp","titles":["ISP Flashing Guide","Hardware"]},"2493":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","USBasp"]},"2494":{"title":"Bus Pirate","titles":["ISP Flashing Guide","Hardware"]},"2495":{"title":"Wiring","titles":["ISP Flashing Guide","Hardware","Bus Pirate"]},"2496":{"title":"Software","titles":["ISP Flashing Guide"]},"2497":{"title":"Bootloader Firmware","titles":["ISP Flashing Guide"]},"2498":{"title":"Atmel DFU","titles":["ISP Flashing Guide","Bootloader Firmware"]},"2499":{"title":"Caterina","titles":["ISP Flashing Guide","Bootloader Firmware"]},"2500":{"title":"BootloadHID (PS2AVRGB)","titles":["ISP Flashing Guide","Bootloader Firmware"]},"2501":{"title":"USBaspLoader","titles":["ISP Flashing Guide","Bootloader Firmware"]},"2502":{"title":"Flashing the Bootloader","titles":["ISP Flashing Guide"]},"2503":{"title":"Setting the Fuses","titles":["ISP Flashing Guide","Flashing the Bootloader"]},"2504":{"title":"Creating a "Production" Firmware","titles":["ISP Flashing Guide"]},"2505":{"title":"Flashing STM32Duino Bootloader","titles":["ISP Flashing Guide"]},"2506":{"title":"Software","titles":["ISP Flashing Guide","Flashing STM32Duino Bootloader"]},"2507":{"title":"Wiring","titles":["ISP Flashing Guide","Flashing STM32Duino Bootloader"]},"2508":{"title":"Flashing","titles":["ISP Flashing Guide","Flashing STM32Duino Bootloader"]},"2509":{"title":"Basic Keycodes","titles":[]},"2510":{"title":"Letters and Numbers","titles":["Basic Keycodes"]},"2511":{"title":"F Keys","titles":["Basic Keycodes"]},"2512":{"title":"Punctuation","titles":["Basic Keycodes"]},"2513":{"title":"Lock Keys","titles":["Basic Keycodes"]},"2514":{"title":"Modifiers","titles":["Basic Keycodes"]},"2515":{"title":"International","titles":["Basic Keycodes"]},"2516":{"title":"Commands","titles":["Basic Keycodes"]},"2517":{"title":"Media Keys","titles":["Basic Keycodes"]},"2518":{"title":"Number Pad","titles":["Basic Keycodes"]},"2519":{"title":"Special Keys","titles":["Basic Keycodes"]},"2520":{"title":"Magic Keycodes","titles":[]},"2521":{"title":"Keycodes Overview","titles":[]},"2522":{"title":"Basic Keycodes","titles":["Keycodes Overview"]},"2523":{"title":"Quantum Keycodes","titles":["Keycodes Overview"]},"2524":{"title":"Audio Keys","titles":["Keycodes Overview"]},"2525":{"title":"Auto Shift","titles":["Keycodes Overview"]},"2526":{"title":"Autocorrect","titles":["Keycodes Overview"]},"2527":{"title":"Backlighting","titles":["Keycodes Overview"]},"2528":{"title":"Wireless/Bluetooth","titles":["Keycodes Overview"]},"2529":{"title":"Caps Word","titles":["Keycodes Overview"]},"2530":{"title":"Dynamic Macros","titles":["Keycodes Overview"]},"2531":{"title":"Grave Escape","titles":["Keycodes Overview"]},"2532":{"title":"Joystick","titles":["Keycodes Overview"]},"2533":{"title":"Key Lock","titles":["Keycodes Overview"]},"2534":{"title":"Layer Lock","titles":["Keycodes Overview"]},"2535":{"title":"Layer Switching","titles":["Keycodes Overview"]},"2536":{"title":"Leader Key","titles":["Keycodes Overview"]},"2537":{"title":"LED Matrix","titles":["Keycodes Overview"]},"2538":{"title":"Magic Keycodes","titles":["Keycodes Overview"]},"2539":{"title":"MIDI","titles":["Keycodes Overview"]},"2540":{"title":"Mouse Keys","titles":["Keycodes Overview"]},"2541":{"title":"Modifiers","titles":["Keycodes Overview"]},"2542":{"title":"Mod-Tap Keys","titles":["Keycodes Overview"]},"2543":{"title":"Tapping Term Keys","titles":["Keycodes Overview"]},"2544":{"title":"RGB Lighting","titles":["Keycodes Overview"]},"2545":{"title":"RGB Matrix","titles":["Keycodes Overview"]},"2546":{"title":"US ANSI Shifted Symbols","titles":["Keycodes Overview"]},"2547":{"title":"One Shot Keys","titles":["Keycodes Overview"]},"2548":{"title":"Programmable Button Support","titles":["Keycodes Overview"]},"2549":{"title":"Repeat Key","titles":["Keycodes Overview"]},"2550":{"title":"Space Cadet","titles":["Keycodes Overview"]},"2551":{"title":"Swap Hands","titles":["Keycodes Overview"]},"2552":{"title":"Unicode Support","titles":["Keycodes Overview"]},"2553":{"title":"US ANSI Shifted Symbols","titles":[]},"2554":{"title":"Caveats","titles":["US ANSI Shifted Symbols"]},"2555":{"title":"Keycodes","titles":["US ANSI Shifted Symbols"]},"2556":{"title":"Keymap Overview","titles":[]},"2557":{"title":"Keymap and Layers","titles":["Keymap Overview"]},"2558":{"title":"Keymap Layer Status","titles":["Keymap Overview","Keymap and Layers"]},"2559":{"title":"Layer Precedence and Transparency","titles":["Keymap Overview","Keymap and Layers"]},"2560":{"title":"Anatomy of a keymap.c","titles":["Keymap Overview"]},"2561":{"title":"Definitions","titles":["Keymap Overview","Anatomy of a keymap.c"]},"2562":{"title":"Layers and Keymaps","titles":["Keymap Overview","Anatomy of a keymap.c"]},"2563":{"title":"Base Layer","titles":["Keymap Overview","Anatomy of a keymap.c","Layers and Keymaps"]},"2564":{"title":"Function Overlay Layer","titles":["Keymap Overview","Anatomy of a keymap.c","Layers and Keymaps"]},"2565":{"title":"Nitty Gritty Details","titles":[]},"2566":{"title":"License Violations","titles":[]},"2567":{"title":"Offending Vendors","titles":["License Violations"]},"2568":{"title":"Licensing","titles":["License Violations"]},"2569":{"title":"QMK PR Considerations","titles":["License Violations"]},"2570":{"title":"Detection","titles":["License Violations"]},"2571":{"title":"Remediation","titles":["License Violations"]},"2572":{"title":"Mod-Tap","titles":[]},"2573":{"title":"Caveats","titles":["Mod-Tap"]},"2574":{"title":"Intercepting Mod-Taps","titles":["Mod-Tap"]},"2575":{"title":"Changing tap function","titles":["Mod-Tap","Intercepting Mod-Taps"]},"2576":{"title":"Changing hold function","titles":["Mod-Tap","Intercepting Mod-Taps"]},"2577":{"title":"Changing both tap and hold","titles":["Mod-Tap","Intercepting Mod-Taps"]},"2578":{"title":"Other Resources","titles":["Mod-Tap"]},"2579":{"title":"The QMK Tutorial","titles":[]},"2580":{"title":"Overview","titles":["The QMK Tutorial"]},"2581":{"title":"Additional Resources","titles":["The QMK Tutorial"]},"2582":{"title":"Building Your First Firmware","titles":[]},"2583":{"title":"Configure Your Build Environment Defaults (Optional)","titles":["Building Your First Firmware"]},"2584":{"title":"Create a New Keymap","titles":["Building Your First Firmware"]},"2585":{"title":"Open keymap.c In Your Favorite Text Editor","titles":["Building Your First Firmware"]},"2586":{"title":"Customize The Layout To Your Liking","titles":["Building Your First Firmware"]},"2587":{"title":"Build Your Firmware","titles":["Building Your First Firmware"]},"2588":{"title":"Flash Your Firmware","titles":["Building Your First Firmware"]},"2589":{"title":"QMK Configurator","titles":[]},"2590":{"title":"External QMK Userspace","titles":[]},"2591":{"title":"Setting up QMK Locally","titles":["External QMK Userspace"]},"2592":{"title":"External Userspace Repository Setup (forked on GitHub)","titles":["External QMK Userspace"]},"2593":{"title":"External Userspace Setup (locally stored only)","titles":["External QMK Userspace"]},"2594":{"title":"Adding a Keymap","titles":["External QMK Userspace"]},"2595":{"title":"Adding the keymap to External Userspace build targets","titles":["External QMK Userspace"]},"2596":{"title":"Compiling External Userspace build targets","titles":["External QMK Userspace"]},"2597":{"title":"Using GitHub Actions","titles":["External QMK Userspace"]},"2598":{"title":"Building QMK with GitHub Userspace","titles":[]},"2599":{"title":"Prerequisites","titles":["Building QMK with GitHub Userspace"]},"2600":{"title":"Environment Setup","titles":["Building QMK with GitHub Userspace"]},"2601":{"title":"1. Install Git","titles":["Building QMK with GitHub Userspace","Environment Setup"]},"2602":{"title":"2. GitHub authentication","titles":["Building QMK with GitHub Userspace","Environment Setup"]},"2603":{"title":"3. Create a repository","titles":["Building QMK with GitHub Userspace","Environment Setup"]},"2604":{"title":"Initial Code Commit","titles":["Building QMK with GitHub Userspace"]},"2605":{"title":"Create template files","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2606":{"title":"Add a JSON keymap","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2607":{"title":"Add a GitHub Action workflow","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2608":{"title":"Commit files to GitHub","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2609":{"title":"Review workflow output","titles":["Building QMK with GitHub Userspace","Initial Code Commit"]},"2610":{"title":"Customising your keymap","titles":["Building QMK with GitHub Userspace"]},"2611":{"title":"Flashing Your Keyboard","titles":[]},"2612":{"title":"Put Your Keyboard into DFU (Bootloader) Mode","titles":["Flashing Your Keyboard"]},"2613":{"title":"Flashing Your Keyboard with QMK Toolbox","titles":["Flashing Your Keyboard"]},"2614":{"title":"Load the File into QMK Toolbox","titles":["Flashing Your Keyboard","Flashing Your Keyboard with QMK Toolbox"]},"2615":{"title":"Flash Your Keyboard","titles":["Flashing Your Keyboard","Flashing Your Keyboard with QMK Toolbox"]},"2616":{"title":"Flash your Keyboard from the Command Line","titles":["Flashing Your Keyboard"]},"2617":{"title":"Test It Out!","titles":["Flashing Your Keyboard"]},"2618":{"title":"Setting Up Your QMK Environment","titles":[]},"2619":{"title":"1. Prerequisites","titles":["Setting Up Your QMK Environment"]},"2620":{"title":"2. Prepare Your Build Environment","titles":["Setting Up Your QMK Environment"]},"2621":{"title":"Prerequisites","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2622":{"title":"Prerequisites","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2623":{"title":"Installation","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2624":{"title":"Prerequisites","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2625":{"title":"Installation","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2626":{"title":"Installation","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2627":{"title":"Installation","titles":["Setting Up Your QMK Environment","2. Prepare Your Build Environment"]},"2628":{"title":"3. Run QMK Setup","titles":["Setting Up Your QMK Environment"]},"2629":{"title":"4. Test Your Build Environment","titles":["Setting Up Your QMK Environment"]},"2630":{"title":"Creating Your Keymap","titles":[]},"2631":{"title":"Best Git Practices for Working with QMK","titles":[]},"2632":{"title":"Or, "How I Learned to Stop Worrying and Love Git."","titles":["Best Git Practices for Working with QMK"]},"2633":{"title":"Resolving Merge Conflicts","titles":[]},"2634":{"title":"Rebasing Your Changes","titles":["Resolving Merge Conflicts"]},"2635":{"title":"Resynchronizing an Out-of-Sync Git Branch","titles":[]},"2636":{"title":"Backing Up the Changes on Your Own Master Branch (Optional)","titles":["Resynchronizing an Out-of-Sync Git Branch"]},"2637":{"title":"Resynchronizing Your Branch","titles":["Resynchronizing an Out-of-Sync Git Branch"]},"2638":{"title":"Your Fork's Master: Update Often, Commit Never","titles":[]},"2639":{"title":"Updating your master branch","titles":["Your Fork's Master: Update Often, Commit Never"]},"2640":{"title":"Making Changes","titles":["Your Fork's Master: Update Often, Commit Never"]},"2641":{"title":"Publishing Your Changes","titles":["Your Fork's Master: Update Often, Commit Never"]},"2642":{"title":"Learning Resources","titles":[]},"2643":{"title":"QMK resources","titles":["Learning Resources"]},"2644":{"title":"Command Line resources","titles":["Learning Resources"]},"2645":{"title":"Text Editor resources","titles":["Learning Resources"]},"2646":{"title":"Git resources","titles":["Learning Resources"]},"2647":{"title":"Testing and Debugging","titles":[]},"2648":{"title":"Testing","titles":["Testing and Debugging"]},"2649":{"title":"Debugging","titles":["Testing and Debugging"]},"2650":{"title":"One Shot Keys","titles":[]},"2651":{"title":"Keycodes","titles":["One Shot Keys"]},"2652":{"title":"Callbacks","titles":["One Shot Keys"]},"2653":{"title":"Setting up Eclipse for QMK Development","titles":[]},"2654":{"title":"Prerequisites","titles":[]},"2655":{"title":"Build Environment","titles":["Prerequisites"]},"2656":{"title":"Java","titles":["Prerequisites"]},"2657":{"title":"Install Eclipse and Its Plugins","titles":[]},"2658":{"title":"Download and Install Eclipse CDT","titles":["Install Eclipse and Its Plugins"]},"2659":{"title":"First Launch","titles":["Install Eclipse and Its Plugins"]},"2660":{"title":"Install the Necessary Plugins","titles":["Install Eclipse and Its Plugins"]},"2661":{"title":"Configure Eclipse for QMK","titles":[]},"2662":{"title":"Importing the Project","titles":["Configure Eclipse for QMK"]},"2663":{"title":"Build Your Keyboard","titles":["Configure Eclipse for QMK"]},"2664":{"title":"Setting up Visual Studio Code for QMK Development","titles":[]},"2665":{"title":"Set up VS Code","titles":[]},"2666":{"title":"Windows","titles":["Set up VS Code"]},"2667":{"title":"Prerequisites","titles":["Set up VS Code","Windows"]},"2668":{"title":"Installing VS Code","titles":["Set up VS Code","Windows"]},"2669":{"title":"MSYS2 Setup","titles":["Set up VS Code","Windows","Installing VS Code"]},"2670":{"title":"Every other Operating System","titles":["Set up VS Code"]},"2671":{"title":"Extensions","titles":["Set up VS Code"]},"2672":{"title":"Configure VS Code for QMK","titles":[]},"2673":{"title":"Configuring VS Code","titles":["Configure VS Code for QMK"]},"2674":{"title":"Debugging ARM MCUs with Visual Studio Code","titles":[]},"2675":{"title":"WeAct Blackpill (STM32F4x1)","titles":[]},"2676":{"title":"Pin Usage Limitations","titles":["WeAct Blackpill (STM32F4x1)"]},"2677":{"title":"Unusable pins","titles":["WeAct Blackpill (STM32F4x1)","Pin Usage Limitations"]},"2678":{"title":"Pins to be avoided","titles":["WeAct Blackpill (STM32F4x1)","Pin Usage Limitations"]},"2679":{"title":"Shared Usage","titles":["WeAct Blackpill (STM32F4x1)","Pin Usage Limitations"]},"2680":{"title":"Limited Usage","titles":["WeAct Blackpill (STM32F4x1)","Pin Usage Limitations"]},"2681":{"title":"Additional Information","titles":["WeAct Blackpill (STM32F4x1)"]},"2682":{"title":"Bootloader issues","titles":["WeAct Blackpill (STM32F4x1)","Additional Information"]},"2683":{"title":"Tiny UF2 Support","titles":["WeAct Blackpill (STM32F4x1)","Additional Information"]},"2684":{"title":"Arm/ChibiOS Early Initialization","titles":[]},"2685":{"title":"early_hardware_init_pre()","titles":["Arm/ChibiOS Early Initialization"]},"2686":{"title":"early_hardware_init_post()","titles":["Arm/ChibiOS Early Initialization"]},"2687":{"title":"board_init()","titles":["Arm/ChibiOS Early Initialization"]},"2688":{"title":"Proton C","titles":[]},"2689":{"title":"Features","titles":["Proton C"]},"2690":{"title":"Warnings","titles":["Proton C"]},"2691":{"title":"Manual Conversion","titles":["Proton C"]},"2692":{"title":"Raspberry Pi RP2040","titles":[]},"2693":{"title":"GPIO","titles":["Raspberry Pi RP2040"]},"2694":{"title":"Pin nomenclature","titles":["Raspberry Pi RP2040","GPIO"]},"2695":{"title":"Alternate functions","titles":["Raspberry Pi RP2040","GPIO"]},"2696":{"title":"Selecting hardware peripherals and drivers","titles":["Raspberry Pi RP2040"]},"2697":{"title":"I2C Driver","titles":["Raspberry Pi RP2040","Selecting hardware peripherals and drivers"]},"2698":{"title":"SPI Driver","titles":["Raspberry Pi RP2040","Selecting hardware peripherals and drivers"]},"2699":{"title":"UART Driver","titles":["Raspberry Pi RP2040","Selecting hardware peripherals and drivers"]},"2700":{"title":"Double-tap reset boot-loader entry","titles":["Raspberry Pi RP2040"]},"2701":{"title":"Pre-defined RP2040 boards","titles":["Raspberry Pi RP2040"]},"2702":{"title":"Generic Pro Micro RP2040","titles":["Raspberry Pi RP2040","Pre-defined RP2040 boards"]},"2703":{"title":"Generic RP2040 board","titles":["Raspberry Pi RP2040","Pre-defined RP2040 boards"]},"2704":{"title":"Split keyboard support","titles":["Raspberry Pi RP2040"]},"2705":{"title":"RP2040 second stage bootloader selection","titles":["Raspberry Pi RP2040"]},"2706":{"title":"RP2040 Community Edition","titles":["Raspberry Pi RP2040"]},"2707":{"title":"Choosing an Arm MCU","titles":[]},"2708":{"title":"Selecting an already-supported MCU","titles":["Choosing an Arm MCU"]},"2709":{"title":"STM32 families","titles":["Choosing an Arm MCU","Selecting an already-supported MCU"]},"2710":{"title":"Non-STM32 families","titles":["Choosing an Arm MCU","Selecting an already-supported MCU"]},"2711":{"title":"Adding support for a new STM32 MCU (for an existing family)","titles":["Choosing an Arm MCU"]},"2712":{"title":"Adding support for a new STM32 Family","titles":["Choosing an Arm MCU"]},"2713":{"title":"Adding support for a new MCU Family","titles":["Choosing an Arm MCU"]},"2714":{"title":"Adding Your Keyboard to QMK","titles":[]},"2715":{"title":"readme.md","titles":["Adding Your Keyboard to QMK"]},"2716":{"title":"keyboard.json","titles":["Adding Your Keyboard to QMK"]},"2717":{"title":"Hardware Configuration","titles":["Adding Your Keyboard to QMK","keyboard.json"]},"2718":{"title":"Matrix Configuration","titles":["Adding Your Keyboard to QMK","keyboard.json"]},"2719":{"title":"Diode Matrix","titles":["Adding Your Keyboard to QMK","keyboard.json","Matrix Configuration"]},"2720":{"title":"Direct Pin Matrix","titles":["Adding Your Keyboard to QMK","keyboard.json","Matrix Configuration"]},"2721":{"title":"Layout Macros","titles":["Adding Your Keyboard to QMK","keyboard.json"]},"2722":{"title":"Additional Configuration","titles":["Adding Your Keyboard to QMK"]},"2723":{"title":"Configuration Options","titles":["Adding Your Keyboard to QMK","Additional Configuration"]},"2724":{"title":"Build Options","titles":["Adding Your Keyboard to QMK","Additional Configuration"]},"2725":{"title":"PR checklists","titles":[]},"2726":{"title":"Requirements for all PRs","titles":["PR checklists"]},"2727":{"title":"Keymap PRs","titles":["PR checklists"]},"2728":{"title":"Keyboard PRs","titles":["PR checklists"]},"2729":{"title":"Core PRs","titles":["PR checklists"]},"2730":{"title":"Notes","titles":["PR checklists"]},"2731":{"title":"Review Process","titles":["PR checklists"]},"2732":{"title":"Example GPLv2 Header","titles":["PR checklists"]},"2733":{"title":"Proprietary Vendor Libraries","titles":[]},"2734":{"title":"Architecture Constraints","titles":["Proprietary Vendor Libraries"]},"2735":{"title":"Common Vendor Library Restrictions","titles":["Proprietary Vendor Libraries"]},"2736":{"title":"Bluetooth Stack Licensing Examples","titles":["Proprietary Vendor Libraries"]},"2737":{"title":"Why the System Library Exception Doesn't Apply","titles":["Proprietary Vendor Libraries"]},"2738":{"title":"System Library Requirements","titles":["Proprietary Vendor Libraries","Why the System Library Exception Doesn't Apply"]},"2739":{"title":"Why Vendor Libraries Fail These Requirements","titles":["Proprietary Vendor Libraries","Why the System Library Exception Doesn't Apply"]},"2740":{"title":"Attempted Workarounds","titles":["Proprietary Vendor Libraries"]},"2741":{"title":"Architectural Separation Attempts","titles":["Proprietary Vendor Libraries","Attempted Workarounds"]},"2742":{"title":"Loader-Based Separation","titles":["Proprietary Vendor Libraries","Attempted Workarounds"]},"2743":{"title":"Real-World Examples","titles":["Proprietary Vendor Libraries"]},"2744":{"title":"Bluetooth/Wireless Stacks","titles":["Proprietary Vendor Libraries","Real-World Examples"]},"2745":{"title":"HAL and Driver Libraries","titles":["Proprietary Vendor Libraries","Real-World Examples"]},"2746":{"title":"Mixed Proprietary/Open","titles":["Proprietary Vendor Libraries","Real-World Examples"]},"2747":{"title":"Legal and Practical Consequences","titles":["Proprietary Vendor Libraries"]},"2748":{"title":"Evaluation Criteria for Libraries","titles":["Proprietary Vendor Libraries"]},"2749":{"title":"Policy Implementation","titles":["Proprietary Vendor Libraries"]},"2750":{"title":"Summary","titles":["Proprietary Vendor Libraries"]},"2751":{"title":"Quantum Keycodes","titles":[]},"2752":{"title":"QMK Keycodes","titles":["Quantum Keycodes"]},"2753":{"title":"Quantum Painter","titles":[]},"2754":{"title":"Quantum Painter Configuration","titles":["Quantum Painter"]},"2755":{"title":"Quantum Painter CLI Commands","titles":["Quantum Painter"]},"2756":{"title":"Quantum Painter Display Drivers","titles":["Quantum Painter"]},"2757":{"title":"Quantum Painter Drawing API","titles":["Quantum Painter"]},"2758":{"title":"Quantum Painter LVGL Integration","titles":[]},"2759":{"title":"Enabling LVGL","titles":["Quantum Painter LVGL Integration"]},"2760":{"title":"Quantum Painter LVGL API","titles":["Quantum Painter LVGL Integration"]},"2761":{"title":"Quantum Painter LVGL Attach","titles":["Quantum Painter LVGL Integration","Quantum Painter LVGL API"]},"2762":{"title":"Quantum Painter LVGL Detach","titles":["Quantum Painter LVGL Integration","Quantum Painter LVGL API"]},"2763":{"title":"Enabling/Disabling LVGL features","titles":["Quantum Painter LVGL Integration"]},"2764":{"title":"Changing the LVGL task frequency","titles":["Quantum Painter LVGL Integration"]},"2765":{"title":"QMK Font Format","titles":[]},"2766":{"title":"Block Header","titles":["QMK Font Format"]},"2767":{"title":"Font descriptor block","titles":["QMK Font Format"]},"2768":{"title":"ASCII glyph table","titles":["QMK Font Format"]},"2769":{"title":"Unicode glyph table","titles":["QMK Font Format"]},"2770":{"title":"Font palette block","titles":["QMK Font Format"]},"2771":{"title":"Font data block","titles":["QMK Font Format"]},"2772":{"title":"QMK Graphics Format","titles":[]},"2773":{"title":"Block Header","titles":["QMK Graphics Format"]},"2774":{"title":"Graphics descriptor block","titles":["QMK Graphics Format"]},"2775":{"title":"Frame offset block","titles":["QMK Graphics Format"]},"2776":{"title":"Frame descriptor block","titles":["QMK Graphics Format"]},"2777":{"title":"Frame palette block","titles":["QMK Graphics Format"]},"2778":{"title":"Frame delta block","titles":["QMK Graphics Format"]},"2779":{"title":"Frame data block","titles":["QMK Graphics Format"]},"2780":{"title":"List of Useful Core Functions To Make Your Keyboard Better","titles":[]},"2781":{"title":"(OLKB) Tri Layers","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2782":{"title":"update_tri_layer(x, y, z)","titles":["List of Useful Core Functions To Make Your Keyboard Better","(OLKB) Tri Layers"]},"2783":{"title":"Example","titles":["List of Useful Core Functions To Make Your Keyboard Better","(OLKB) Tri Layers","update_tri_layer(x, y, z)"]},"2784":{"title":"update_tri_layer_state(state, x, y, z)","titles":["List of Useful Core Functions To Make Your Keyboard Better","(OLKB) Tri Layers"]},"2785":{"title":"Example","titles":["List of Useful Core Functions To Make Your Keyboard Better","(OLKB) Tri Layers","update_tri_layer_state(state, x, y, z)"]},"2786":{"title":"Setting the Persistent Default Layer","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2787":{"title":"Resetting the keyboard","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2788":{"title":"Reset to bootloader","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2789":{"title":"Wiping the EEPROM (Persistent Storage)","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2790":{"title":"Tap random key","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2791":{"title":"Software Timers","titles":["List of Useful Core Functions To Make Your Keyboard Better"]},"2792":{"title":"QMK QGF/QFF RLE data schema","titles":[]},"2793":{"title":"Supporting Your Keyboard in QMK Configurator","titles":[]},"2794":{"title":"How the Configurator Understands Keyboards","titles":["Supporting Your Keyboard in QMK Configurator"]},"2795":{"title":"Building the JSON file","titles":["Supporting Your Keyboard in QMK Configurator"]},"2796":{"title":"How the Configurator Programs Keys","titles":["Supporting Your Keyboard in QMK Configurator"]},"2797":{"title":"Issues and Hazards","titles":["Supporting Your Keyboard in QMK Configurator"]},"2798":{"title":"Workarounds","titles":["Supporting Your Keyboard in QMK Configurator","Issues and Hazards"]},"2799":{"title":"Non-rectangular keys","titles":["Supporting Your Keyboard in QMK Configurator","Issues and Hazards","Workarounds"]},"2800":{"title":"Vertically-offset keys","titles":["Supporting Your Keyboard in QMK Configurator","Issues and Hazards","Workarounds"]},"2801":{"title":"Glossary of QMK Terms","titles":[]},"2802":{"title":"ARM","titles":["Glossary of QMK Terms"]},"2803":{"title":"AVR","titles":["Glossary of QMK Terms"]},"2804":{"title":"AZERTY","titles":["Glossary of QMK Terms"]},"2805":{"title":"Backlight","titles":["Glossary of QMK Terms"]},"2806":{"title":"Bluetooth","titles":["Glossary of QMK Terms"]},"2807":{"title":"Bootloader","titles":["Glossary of QMK Terms"]},"2808":{"title":"Bootmagic","titles":["Glossary of QMK Terms"]},"2809":{"title":"C","titles":["Glossary of QMK Terms"]},"2810":{"title":"Colemak","titles":["Glossary of QMK Terms"]},"2811":{"title":"Compile","titles":["Glossary of QMK Terms"]},"2812":{"title":"Dvorak","titles":["Glossary of QMK Terms"]},"2813":{"title":"Dynamic Macro","titles":["Glossary of QMK Terms"]},"2814":{"title":"Eclipse","titles":["Glossary of QMK Terms"]},"2815":{"title":"Firmware","titles":["Glossary of QMK Terms"]},"2816":{"title":"git","titles":["Glossary of QMK Terms"]},"2817":{"title":"GitHub","titles":["Glossary of QMK Terms"]},"2818":{"title":"ISP","titles":["Glossary of QMK Terms"]},"2819":{"title":"hid_listen","titles":["Glossary of QMK Terms"]},"2820":{"title":"Keycode","titles":["Glossary of QMK Terms"]},"2821":{"title":"Key Down","titles":["Glossary of QMK Terms"]},"2822":{"title":"Key Up","titles":["Glossary of QMK Terms"]},"2823":{"title":"Keymap","titles":["Glossary of QMK Terms"]},"2824":{"title":"Layer","titles":["Glossary of QMK Terms"]},"2825":{"title":"Leader Key","titles":["Glossary of QMK Terms"]},"2826":{"title":"LED","titles":["Glossary of QMK Terms"]},"2827":{"title":"Make","titles":["Glossary of QMK Terms"]},"2828":{"title":"Matrix","titles":["Glossary of QMK Terms"]},"2829":{"title":"Macro","titles":["Glossary of QMK Terms"]},"2830":{"title":"MCU","titles":["Glossary of QMK Terms"]},"2831":{"title":"Modifier","titles":["Glossary of QMK Terms"]},"2832":{"title":"Mousekeys","titles":["Glossary of QMK Terms"]},"2833":{"title":"N-Key Rollover (NKRO)","titles":["Glossary of QMK Terms"]},"2834":{"title":"Oneshot Modifier","titles":["Glossary of QMK Terms"]},"2835":{"title":"ProMicro","titles":["Glossary of QMK Terms"]},"2836":{"title":"Pull Request","titles":["Glossary of QMK Terms"]},"2837":{"title":"QWERTY","titles":["Glossary of QMK Terms"]},"2838":{"title":"QWERTZ","titles":["Glossary of QMK Terms"]},"2839":{"title":"Rollover","titles":["Glossary of QMK Terms"]},"2840":{"title":"Scancode","titles":["Glossary of QMK Terms"]},"2841":{"title":"Space Cadet Shift","titles":["Glossary of QMK Terms"]},"2842":{"title":"Tap","titles":["Glossary of QMK Terms"]},"2843":{"title":"Tap Dance","titles":["Glossary of QMK Terms"]},"2844":{"title":"Teensy","titles":["Glossary of QMK Terms"]},"2845":{"title":"Underlight","titles":["Glossary of QMK Terms"]},"2846":{"title":"Unicode","titles":["Glossary of QMK Terms"]},"2847":{"title":"Unit Testing","titles":["Glossary of QMK Terms"]},"2848":{"title":"USB","titles":["Glossary of QMK Terms"]},"2849":{"title":"USB Host (or simply Host)","titles":["Glossary of QMK Terms"]},"2850":{"title":"Couldn't Find the Term You're Looking For?","titles":[]},"2851":{"title":"info.json Reference","titles":[]},"2852":{"title":"General Metadata","titles":["info.json Reference"]},"2853":{"title":"Hardware Configuration","titles":["info.json Reference"]},"2854":{"title":"Firmware Configuration","titles":["info.json Reference"]},"2855":{"title":"APA102","titles":["info.json Reference"]},"2856":{"title":"Audio","titles":["info.json Reference"]},"2857":{"title":"Backlight","titles":["info.json Reference"]},"2858":{"title":"Battery","titles":["info.json Reference"]},"2859":{"title":"Wireless/Bluetooth","titles":["info.json Reference"]},"2860":{"title":"Bootmagic","titles":["info.json Reference"]},"2861":{"title":"Caps Word","titles":["info.json Reference"]},"2862":{"title":"Combo","titles":["info.json Reference"]},"2863":{"title":"DIP Switches","titles":["info.json Reference"]},"2864":{"title":"EEPROM","titles":["info.json Reference"]},"2865":{"title":"Encoder","titles":["info.json Reference"]},"2866":{"title":"Host","titles":["info.json Reference"]},"2867":{"title":"Indicators","titles":["info.json Reference"]},"2868":{"title":"(Custom) Keycodes","titles":["info.json Reference"]},"2869":{"title":"Layouts","titles":["info.json Reference"]},"2870":{"title":"Leader Key","titles":["info.json Reference"]},"2871":{"title":"LED Matrix","titles":["info.json Reference"]},"2872":{"title":"Matrix","titles":["info.json Reference"]},"2873":{"title":"Mouse Keys","titles":["info.json Reference"]},"2874":{"title":"One Shot","titles":["info.json Reference"]},"2875":{"title":"PS/2","titles":["info.json Reference"]},"2876":{"title":"QMK LUFA Bootloader","titles":["info.json Reference"]},"2877":{"title":"RGBLight","titles":["info.json Reference"]},"2878":{"title":"RGB Matrix","titles":["info.json Reference"]},"2879":{"title":"Secure","titles":["info.json Reference"]},"2880":{"title":"Split Keyboard","titles":["info.json Reference"]},"2881":{"title":"Stenography","titles":["info.json Reference"]},"2882":{"title":"USB","titles":["info.json Reference"]},"2883":{"title":"WS2812","titles":["info.json Reference"]},"2884":{"title":"Language-specific Keycodes","titles":[]},"2885":{"title":"Selecting Your Host Keyboard Layout","titles":["Language-specific Keycodes"]},"2886":{"title":"Sendstring Support","titles":["Language-specific Keycodes"]},"2887":{"title":"Header Files","titles":["Language-specific Keycodes"]},"2888":{"title":"Squeezing the most out of AVR","titles":[]},"2889":{"title":"rules.mk Settings","titles":["Squeezing the most out of AVR"]},"2890":{"title":"config.h Settings","titles":["Squeezing the most out of AVR"]},"2891":{"title":"Audio Settings","titles":["Squeezing the most out of AVR"]},"2892":{"title":"Layers","titles":["Squeezing the most out of AVR"]},"2893":{"title":"OLED tweaks","titles":["Squeezing the most out of AVR"]},"2894":{"title":"RGB Settings","titles":["Squeezing the most out of AVR"]},"2895":{"title":"Final Thoughts","titles":[]},"2896":{"title":"Getting Help","titles":[]},"2897":{"title":"Realtime Chat","titles":["Getting Help"]},"2898":{"title":"OLKB Subreddit","titles":["Getting Help"]},"2899":{"title":"GitHub Issues","titles":["Getting Help"]},"2900":{"title":"Feature support policies","titles":[]},"2901":{"title":"System Constraints","titles":["Feature support policies"]},"2902":{"title":"Deprecation & Removal Policy","titles":["Feature support policies"]},"2903":{"title":"How much advance notice will be given?","titles":["Feature support policies","Deprecation & Removal Policy"]},"2904":{"title":"How will deprecation be communicated?","titles":["Feature support policies","Deprecation & Removal Policy"]},"2905":{"title":"QMK Syllabus","titles":[]},"2906":{"title":"Beginning Topics","titles":[]},"2907":{"title":"Intermediate Topics","titles":[]},"2908":{"title":"Advanced Topics","titles":[]},"2909":{"title":"Tap-Hold Configuration Options","titles":[]},"2910":{"title":"Tapping Term","titles":["Tap-Hold Configuration Options"]},"2911":{"title":"Example","titles":["Tap-Hold Configuration Options","Tapping Term"]},"2912":{"title":"Dynamic Tapping Term","titles":["Tap-Hold Configuration Options","Tapping Term"]},"2913":{"title":"Configuring Home Row Mods","titles":["Tap-Hold Configuration Options"]},"2914":{"title":"Tap-Or-Hold Decision Modes","titles":["Tap-Hold Configuration Options"]},"2915":{"title":"Comparison","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes"]},"2916":{"title":"Distinct taps (AABB)","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes","Comparison"]},"2917":{"title":"Nested tap (ABBA)","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes","Comparison"]},"2918":{"title":"Rolling keys (ABAB)","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes","Comparison"]},"2919":{"title":"Default Mode","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes"]},"2920":{"title":"Permissive Hold","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes"]},"2921":{"title":"Hold On Other Key Press","titles":["Tap-Hold Configuration Options","Tap-Or-Hold Decision Modes"]},"2922":{"title":"Quick Tap Term","titles":["Tap-Hold Configuration Options"]},"2923":{"title":"Flow Tap","titles":["Tap-Hold Configuration Options"]},"2924":{"title":"is_flow_tap_key()","titles":["Tap-Hold Configuration Options","Flow Tap"]},"2925":{"title":"get_flow_tap_term()","titles":["Tap-Hold Configuration Options","Flow Tap"]},"2926":{"title":"Chordal Hold","titles":["Tap-Hold Configuration Options"]},"2927":{"title":"Chordal Hold Handedness","titles":["Tap-Hold Configuration Options","Chordal Hold"]},"2928":{"title":"Per-chord customization","titles":["Tap-Hold Configuration Options","Chordal Hold"]},"2929":{"title":"Retro Tapping","titles":["Tap-Hold Configuration Options"]},"2930":{"title":"Retro Shift","titles":["Tap-Hold Configuration Options","Retro Tapping"]},"2931":{"title":"Speculative Hold","titles":["Tap-Hold Configuration Options"]},"2932":{"title":"Why do we include the key record for the per key functions?","titles":["Tap-Hold Configuration Options"]},"2933":{"title":"Why are there no *_kb or *_user functions?!","titles":["Tap-Hold Configuration Options"]},"2934":{"title":"Understanding QMK's Code","titles":[]},"2935":{"title":"Startup","titles":["Understanding QMK's Code"]},"2936":{"title":"The Main Loop","titles":["Understanding QMK's Code"]},"2937":{"title":"Matrix Scanning","titles":["Understanding QMK's Code","The Main Loop"]},"2938":{"title":"Matrix to Physical Layout Map","titles":["Understanding QMK's Code","The Main Loop","Matrix Scanning"]},"2939":{"title":"Keycode Assignment","titles":["Understanding QMK's Code","The Main Loop","Matrix Scanning"]},"2940":{"title":"State Change Detection","titles":["Understanding QMK's Code","The Main Loop","Matrix Scanning"]},"2941":{"title":"Process Record","titles":["Understanding QMK's Code","The Main Loop","Matrix Scanning"]},"2942":{"title":"Unit Testing","titles":[]},"2943":{"title":"Google Test and Google Mock","titles":["Unit Testing"]},"2944":{"title":"Use of C++","titles":["Unit Testing"]},"2945":{"title":"Adding Tests for New or Existing Features","titles":["Unit Testing"]},"2946":{"title":"Running the Tests","titles":["Unit Testing"]},"2947":{"title":"Debugging the Tests","titles":["Unit Testing"]},"2948":{"title":"Full Integration Tests","titles":["Unit Testing"]},"2949":{"title":"Keycode String","titles":[]},"2950":{"title":"Tracing Variables","titles":[]}},"dirtCount":0,"index":[["ąžerty",{"2":{"2887":1}}],["ąƚɂɻɣɉʣ",{"2":{"2755":2}}],["µs",{"2":{"2872":1}}],["↓",{"2":{"2795":3}}],["└──",{"2":{"2608":3}}],["└row1",{"2":{"2466":3}}],["├──",{"2":{"2608":4}}],["✔6",{"2":{"2522":1}}],["✔5",{"2":{"2522":4}}],["✔4",{"2":{"2522":2}}],["✔3",{"2":{"2522":4}}],["✔2",{"2":{"2522":3}}],["✔",{"2":{"2522":447}}],["✔️",{"2":{"347":1,"723":12,"1192":4,"1211":1,"1212":1,"2262":2,"2692":10,"2704":6}}],["¥",{"2":{"2515":1}}],["€",{"2":{"2474":1}}],["┌─┘3",{"2":{"2466":2}}],["┌─┤1",{"2":{"2466":2}}],["┌─┤0",{"2":{"2466":2}}],["─────┴────────┘",{"2":{"2466":8}}],["│",{"2":{"2466":25,"2608":2}}],["│└row0",{"2":{"2466":3}}],["ಠ",{"2":{"2330":2}}],["🇺🇦",{"2":{"2330":1}}],["🎉👍",{"2":{"346":1,"603":1}}],["🤣",{"2":{"2330":1}}],["≤",{"2":{"2330":4}}],["æ",{"2":{"2330":2}}],["å",{"2":{"2330":2,"2884":1}}],["ツ",{"2":{"2329":1}}],["ћ",{"2":{"2329":1}}],["□",{"2":{"1702":25}}],["■",{"2":{"1702":15}}],["ñ",{"2":{"1593":1}}],["⇒",{"2":{"1538":3,"1539":3}}],["\\tmod",{"2":{"1776":1}}],["\\t~0",{"2":{"1776":1}}],["\\tkc",{"2":{"1776":2}}],["\\tko",{"2":{"1776":2}}],["\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\tkc",{"2":{"1776":4}}],["\\t\\tmod",{"2":{"1776":1}}],["\\t\\treturn",{"2":{"1663":1}}],["\\tif",{"2":{"1663":1}}],["\\t",{"2":{"1492":1,"1663":1,"1774":1,"1776":6,"1777":2}}],["\\t12",{"2":{"1492":1}}],["\\t24",{"2":{"1492":1}}],["\\t36",{"2":{"1492":1}}],["✅",{"2":{"1423":1,"2262":1}}],["^ge^s^s^w^c",{"2":{"2302":1}}],["^3+0",{"2":{"1968":1}}],["^=",{"2":{"1417":1}}],["^",{"2":{"1409":1,"1986":1,"2013":1,"2466":1,"2510":1,"2522":1,"2546":1,"2555":1}}],["ひらがな",{"2":{"1358":1}}],["変換",{"2":{"1358":1}}],["無変換",{"2":{"1358":1}}],["ç",{"0":{"1355":1}}],["²",{"2":{"695":1}}],["¹",{"2":{"695":1,"2662":1}}],["être",{"2":{"612":1}}],["¯",{"2":{"492":2}}],["☐",{"2":{"492":1}}],["¬",{"2":{"492":2}}],["☒",{"2":{"463":1,"492":1,"2448":2}}],["ψ",{"2":{"429":9,"447":1,"448":5,"449":5,"450":5,"452":2,"453":2,"454":3,"455":1,"456":4,"463":1,"473":1,"474":1,"476":1,"482":1,"483":1,"492":1,"2432":5,"2448":1,"2584":1,"2714":17,"2852":2}}],["\`action",{"2":{"2318":1}}],["\`all\`",{"2":{"454":1}}],["\`layer",{"2":{"2318":2}}],["\`lalt\`",{"2":{"2318":1}}],["\`length\`",{"2":{"2057":1}}],["\`led",{"2":{"1850":1}}],["\`tapping",{"2":{"2317":1}}],["\`finished\`",{"2":{"2318":2}}],["\`ff\`",{"2":{"2317":2}}],["\`f\`",{"2":{"2317":1}}],["\`buffer\`",{"2":{"2317":1}}],["\`reset\`",{"2":{"2318":2}}],["\`rgb",{"2":{"2088":1}}],["\`raw",{"2":{"2057":1}}],["\`data\`",{"2":{"2057":1}}],["\`develop\`",{"2":{"383":1}}],["\`oled",{"2":{"1851":1,"2090":1}}],["\`offset\`",{"2":{"524":1}}],["\`esc\`",{"2":{"2317":1}}],["\`effect",{"2":{"1851":1,"2090":1}}],["\`encoder",{"2":{"307":2}}],["\`set",{"2":{"1794":1}}],["\`some",{"2":{"1613":1}}],["\`start\`",{"2":{"524":1}}],["\`kc",{"2":{"1431":1}}],["\`qk",{"2":{"684":1,"1431":1}}],["\`qmk",{"2":{"456":1}}],["\`cd\`",{"2":{"448":1,"449":1,"450":1,"2432":1}}],["\`master\`",{"2":{"383":1,"2730":3}}],["\`",{"0":{"1360":1},"2":{"353":1,"1613":1,"1671":1,"1673":1,"1674":1,"1777":3,"1794":1,"1851":1,"2090":1,"2318":7,"2512":1,"2520":2,"2522":1,"2531":1,"2538":2,"2557":3,"2558":3,"2669":1,"2777":12}}],["❌",{"2":{"347":1,"723":6,"1423":3}}],["⭕",{"2":{"347":1,"723":4}}],["😃",{"2":{"2387":1,"2850":1}}],["💩",{"2":{"2330":1}}],["🐍",{"2":{"2329":1}}],["👍🎉",{"2":{"346":1,"603":1}}],["😉",{"2":{"123":1}}],["→",{"2":{"191":3,"686":1,"687":2,"688":1,"2331":2}}],["麦田",{"2":{"160":1}}],["|0",{"2":{"2794":1}}],["|ent|",{"2":{"2794":1}}],["|3",{"2":{"2794":1}}],["|2",{"2":{"2794":1}}],["|1",{"2":{"2794":1}}],["|6",{"2":{"2794":1}}],["|5",{"2":{"2794":1}}],["|4",{"2":{"2794":1}}],["|9",{"2":{"2794":1}}],["|8",{"2":{"2794":1}}],["|7",{"2":{"2794":1}}],["|nlk|",{"2":{"2794":1}}],["|ing",{"2":{"2048":1}}],["|mod",{"2":{"1788":1,"2561":5,"2929":1}}],["|=",{"2":{"1533":2,"1992":1,"2041":2}}],["||",{"2":{"1431":1,"1533":1,"1612":1,"2075":1,"2317":2,"2318":1,"2381":9,"2709":1,"2911":1,"2927":1,"2928":1}}],["|kc",{"2":{"681":3}}],["|long",{"2":{"681":1}}],["|",{"2":{"116":1,"426":2,"488":1,"681":4,"729":1,"772":4,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1194":20,"1197":32,"1200":32,"1219":2,"1316":1,"1318":1,"1378":2,"1409":18,"1422":1,"1433":26,"1436":13,"1472":2,"1538":19,"1702":9,"1741":2,"1779":3,"1852":1,"1953":1,"1954":1,"2038":4,"2041":1,"2043":8,"2074":1,"2091":1,"2381":1,"2387":2,"2466":28,"2468":6,"2502":6,"2512":2,"2515":1,"2522":2,"2546":1,"2555":1,"2557":8,"2558":14,"2572":1,"2607":1,"2623":1,"2625":1,"2626":1,"2651":1,"2794":24,"2795":11,"2919":72,"2920":48,"2921":24,"2924":1,"2926":24,"2929":22}}],["5+",{"2":{"2038":2}}],["5=64",{"2":{"1954":1}}],["59",{"2":{"1686":1}}],["58s",{"2":{"2502":1}}],["587968d6cbc2b0e1c7147540872f2a67e59ca18b",{"2":{"2387":1}}],["58",{"2":{"1686":1,"1968":1}}],["54",{"2":{"1686":1}}],["536",{"2":{"2755":1}}],["535",{"2":{"2241":1}}],["53",{"2":{"1686":1,"1968":1}}],["51",{"2":{"1686":1,"1925":1,"1968":1,"2539":1,"2790":1}}],["512",{"2":{"759":1,"1952":1,"2289":1}}],["56",{"2":{"1527":1,"1686":1,"1968":1,"2615":1}}],["5625",{"2":{"588":1}}],["575",{"2":{"1742":3}}],["57",{"2":{"1686":1,"2387":1}}],["577ch",{"2":{"1365":1}}],["577c",{"2":{"1365":1}}],["57600",{"2":{"1207":1,"1272":1}}],["5kb",{"2":{"2893":1}}],["5kro",{"2":{"1356":1}}],["5kω",{"2":{"1197":1}}],["5u",{"2":{"1329":1}}],["55",{"2":{"859":1,"1686":1}}],["55k",{"2":{"859":1}}],["5v",{"2":{"689":2,"690":1,"1296":1,"1297":3,"1298":2,"1679":1,"1739":1,"2261":1,"2280":3,"2484":1,"2487":2,"2499":2,"2680":1,"2689":1,"2690":2,"2691":3,"2693":1}}],["5rows",{"2":{"311":1}}],["5",{"0":{"600":1,"2307":1,"2318":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"172":1,"175":1,"191":1,"199":3,"210":2,"222":2,"249":1,"266":1,"308":1,"317":1,"379":1,"381":1,"412":2,"551":1,"555":1,"558":1,"561":3,"570":1,"589":2,"657":1,"693":1,"695":4,"749":1,"860":2,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":2,"1129":2,"1162":1,"1163":2,"1207":1,"1248":3,"1299":2,"1412":1,"1422":1,"1423":1,"1444":1,"1457":1,"1470":1,"1492":1,"1527":1,"1593":1,"1598":1,"1625":2,"1642":2,"1684":2,"1685":1,"1686":1,"1702":1,"1720":1,"1722":1,"1741":2,"1744":3,"1788":1,"1835":1,"1837":1,"1846":1,"1852":1,"1925":31,"1930":1,"1933":2,"1936":1,"1953":2,"1968":1,"1971":1,"1974":1,"1980":1,"2016":1,"2018":3,"2070":1,"2079":1,"2082":1,"2091":1,"2096":3,"2183":3,"2187":1,"2207":1,"2252":1,"2275":1,"2277":3,"2296":1,"2301":1,"2303":4,"2304":1,"2309":1,"2322":2,"2377":1,"2379":2,"2387":3,"2391":1,"2393":1,"2398":1,"2494":1,"2510":2,"2515":2,"2518":2,"2522":9,"2528":1,"2532":3,"2539":31,"2540":2,"2548":3,"2563":1,"2650":1,"2658":1,"2736":1,"2745":1,"2755":2,"2756":2,"2773":2,"2776":3,"2795":2,"2796":1,"2800":2,"2854":1,"2861":1,"2871":2,"2872":2,"2878":2,"2879":1,"2880":1,"2893":1,"2927":3,"2929":1,"2937":1}}],["52583",{"2":{"1367":1}}],["525",{"2":{"749":1}}],["52",{"2":{"165":2,"1686":1,"2790":1}}],["5291",{"2":{"114":1}}],["50",{"2":{"768":1,"1292":1,"1503":1,"1612":1,"1686":26,"1949":1,"1971":2,"1983":2,"2086":1,"2187":3,"2315":4,"2862":2,"2911":1,"2912":6}}],["5000",{"2":{"1598":1,"1936":1,"1982":1,"2217":1,"2650":1,"2861":1,"2879":1}}],["500",{"2":{"561":2,"564":1,"656":2,"859":2,"1444":1,"1518":1,"1966":1,"1978":1,"1981":1,"2191":4,"2275":1,"2277":1,"2882":2}}],["500ms",{"2":{"191":1,"1786":1,"2277":1}}],["50ms",{"2":{"149":1,"1608":1,"2912":1}}],["5050",{"0":{"1966":1},"2":{"118":1,"1966":2}}],["5x7",{"2":{"143":2,"253":2}}],["5x8",{"2":{"143":4,"1697":2}}],["5x6",{"2":{"143":4,"210":1}}],["5x13",{"2":{"114":1,"249":1}}],["5ms",{"2":{"119":2,"1953":1,"2543":2,"2912":3}}],["$5",{"2":{"2835":1}}],["$path",{"2":{"2628":1}}],["$home",{"2":{"2592":1,"2593":1,"2628":4}}],["$qmk",{"2":{"422":3}}],["$id",{"2":{"308":1}}],["$",{"2":{"111":1,"191":1,"354":1,"380":2,"381":1,"383":3,"429":11,"447":1,"448":1,"450":1,"452":1,"453":1,"454":1,"455":1,"463":2,"473":1,"474":1,"476":1,"482":1,"483":1,"573":1,"589":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1315":4,"1464":2,"1471":2,"1472":2,"2388":1,"2432":1,"2448":2,"2455":9,"2510":1,"2522":1,"2546":1,"2555":1,"2592":1,"2593":1,"2607":5,"2634":2,"2637":2,"2639":1,"2674":2,"2714":1,"2727":1,"2755":5}}],["≈10ms",{"2":{"94":1}}],["⚠",{"2":{"70":23,"450":1,"492":1,"2432":1}}],[">line",{"2":{"2757":1}}],[">width",{"2":{"2757":2}}],[">>>>>>>",{"2":{"2634":1}}],[">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",{"2":{"2615":2}}],[">>>",{"2":{"2615":3}}],[">0",{"2":{"2558":1}}],[">1",{"2":{"2558":2}}],[">|",{"2":{"2468":4}}],[">height",{"2":{"2757":2}}],[">held",{"2":{"2316":5}}],[">hold",{"2":{"2316":2}}],[">interrupted",{"2":{"2316":1,"2317":3,"2318":1}}],[">init",{"2":{"1850":1,"2088":1}}],[">pressed",{"2":{"2316":1,"2317":3,"2318":1,"2319":1}}],[">m2s",{"2":{"2277":1}}],[">s2m",{"2":{"2277":1}}],[">state",{"2":{"324":2}}],[">keys",{"2":{"1612":2}}],[">keycode",{"2":{"1612":5}}],[">=",{"2":{"1533":2,"1612":1,"2095":1,"2314":1,"2315":1,"2381":10,"2792":1}}],[">finished",{"2":{"325":1,"2316":1}}],[">count",{"2":{"325":1,"2314":1,"2315":2,"2316":2,"2317":3,"2318":2,"2319":2}}],[">tap",{"2":{"324":1,"325":1,"1329":2,"1533":2,"1795":1,"2316":3,"2575":1,"2576":3,"2577":1}}],[">user",{"2":{"324":1,"325":1,"2316":1}}],[">event",{"2":{"307":2,"324":1,"325":1,"593":6,"631":2,"647":1,"1329":4,"1380":1,"1381":1,"1417":4,"1420":1,"1431":1,"1446":4,"1447":2,"1452":1,"1462":1,"1471":2,"1472":1,"1743":5,"1795":1,"1924":1,"1962":2,"1992":1,"1993":1,"1994":1,"2013":1,"2076":2,"2077":3,"2079":2,"2225":1,"2316":1,"2575":1,"2576":3,"2577":2,"2783":2,"2912":4}}],[">",{"2":{"70":1,"430":1,"473":2,"474":2,"476":1,"482":1,"483":2,"647":1,"1331":6,"1409":1,"1420":1,"1431":2,"1462":1,"1467":1,"1527":10,"1983":1,"2076":1,"2077":1,"2095":2,"2096":1,"2277":1,"2381":2,"2387":1,"2558":3,"2605":2,"2732":1,"2757":6}}],["~1",{"2":{"2893":1}}],["~175ms",{"2":{"2319":1}}],["~400",{"2":{"2889":1}}],["~5",{"2":{"2678":1}}],["~$6",{"2":{"2675":1,"2895":1}}],["~$",{"2":{"2387":4}}],["~mouse",{"2":{"1992":1}}],["~mod",{"2":{"1533":1,"2074":1}}],["~0x05",{"2":{"2779":1}}],["~0x04",{"2":{"2778":1}}],["~0x03",{"2":{"2777":1}}],["~0x02",{"2":{"2769":1,"2776":1}}],["~0x01",{"2":{"2768":1,"2775":1}}],["~0x00",{"2":{"2767":1,"2774":1}}],["~0",{"2":{"1776":4}}],["~",{"2":{"70":3,"429":5,"448":1,"449":1,"450":1,"509":2,"510":1,"589":1,"1671":1,"1673":1,"1777":1,"1779":2,"2041":1,"2043":3,"2074":1,"2432":1,"2512":2,"2522":2,"2546":1,"2555":1,"2605":5,"2606":1,"2607":1,"2608":1,"2637":2}}],["~22k",{"2":{"2678":1}}],["~2",{"2":{"6":1,"43":1}}],["7da94ac5",{"2":{"2387":1}}],["7kohm",{"2":{"2267":1}}],["7kω",{"2":{"2264":1}}],["7k",{"2":{"2038":3}}],["7k25",{"2":{"1162":1}}],["7=256",{"2":{"1954":1}}],["79",{"2":{"1686":1,"1968":1}}],["7949",{"2":{"65":1}}],["78",{"2":{"1686":1}}],["777",{"2":{"2755":1}}],["77",{"2":{"1686":1}}],["73",{"2":{"1686":1,"1968":1}}],["73b4",{"2":{"381":1}}],["7172",{"2":{"2508":1}}],["71",{"2":{"1527":1,"1686":1}}],["7114",{"2":{"22":1}}],["74",{"2":{"1527":1,"1686":1}}],["72mhz",{"2":{"2689":1}}],["72",{"2":{"724":1,"1158":1,"1686":1,"1845":1,"2081":1}}],["7capi8w",{"2":{"683":1}}],["7u",{"2":{"266":1,"770":1}}],["7000h",{"2":{"1365":2}}],["70",{"2":{"521":1,"609":1,"1332":1,"1686":1,"1968":1,"2615":1}}],["70keys",{"2":{"241":2}}],["70ec",{"2":{"114":1,"149":1}}],["76",{"2":{"512":1,"514":1,"1527":1,"1686":1,"1925":1,"1968":1,"2539":1}}],["76k",{"2":{"222":1}}],["7648",{"2":{"39":1}}],["750",{"2":{"2392":1,"2499":1}}],["750ms",{"2":{"1686":1}}],["75000",{"2":{"1207":1}}],["75kbps",{"2":{"570":1,"2275":1}}],["75",{"2":{"222":2,"266":1,"308":1,"444":1,"1527":1,"1686":1}}],["7521",{"2":{"134":1}}],["7splus",{"2":{"143":2}}],["7skb",{"2":{"143":2,"222":1}}],["7",{"2":{"70":1,"76":1,"149":1,"187":1,"188":1,"222":1,"236":1,"379":1,"413":1,"566":1,"589":2,"609":1,"693":1,"695":4,"717":1,"766":2,"772":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"798":1,"803":1,"829":1,"858":1,"890":1,"922":1,"924":1,"957":1,"958":1,"991":1,"992":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1162":1,"1198":2,"1201":2,"1217":1,"1269":4,"1357":2,"1492":1,"1527":1,"1625":2,"1684":1,"1685":1,"1686":1,"1702":1,"1720":1,"1722":1,"1741":2,"1744":3,"1925":5,"1933":2,"1953":2,"1954":3,"1968":1,"1971":1,"1990":1,"2018":3,"2185":1,"2207":1,"2296":1,"2301":1,"2303":5,"2386":1,"2392":1,"2394":1,"2508":1,"2510":2,"2515":4,"2518":2,"2522":8,"2532":3,"2539":5,"2540":2,"2548":3,"2563":1,"2634":1,"2757":3,"2776":1,"2795":2,"2796":1}}],["x=0",{"2":{"2757":1}}],["xbps",{"2":{"2601":1}}],["xvx",{"2":{"2567":1}}],["xl",{"2":{"2508":1}}],["x7f",{"2":{"2222":1}}],["x0",{"2":{"2757":1}}],["x0a",{"2":{"2222":1}}],["x09",{"2":{"2222":1}}],["x08",{"2":{"1702":1,"2222":1}}],["xmas",{"2":{"2181":1,"2544":1}}],["xml",{"0":{"348":1}}],["x+",{"2":{"1971":1}}],["x^2",{"2":{"1968":1}}],["xor",{"2":{"1428":2}}],["xorg",{"2":{"1361":1}}],["xo87",{"2":{"222":1}}],["xfer",{"2":{"1358":1}}],["x1b",{"2":{"2222":1}}],["x1",{"2":{"328":1,"2757":1}}],["xzy",{"2":{"249":1}}],["xtap",{"2":{"2317":5}}],["xtx",{"2":{"222":1}}],["xt",{"2":{"222":4}}],["xt8x",{"2":{"222":1}}],["xt60",{"2":{"222":2}}],["x2",{"2":{"222":1,"2912":4}}],["x26",{"2":{"105":8,"272":4,"324":4,"325":6,"509":2,"647":2,"1381":1,"1419":4,"1420":2,"1472":2,"1517":5,"1533":6,"1591":1,"1612":3,"1657":6,"1774":2,"1776":6,"1777":2,"1924":2,"1947":1,"1983":2,"1992":1,"1993":2,"2041":1,"2043":5,"2069":2,"2074":2,"2075":1,"2085":11,"2095":7,"2189":3,"2277":2,"2286":1,"2305":2,"2316":9,"2381":25,"2575":2,"2576":6,"2577":2,"2652":8,"2911":3,"2924":1,"2925":4,"2950":1}}],["xprintf",{"2":{"2418":3}}],["xpm",{"2":{"386":3,"387":2,"388":1,"390":1}}],["xpack",{"0":{"386":1},"2":{"387":1,"390":1,"393":1}}],["xp",{"2":{"207":1}}],["xs60",{"2":{"197":2,"199":1}}],["xy",{"2":{"191":1}}],["xicolinguada",{"2":{"2425":1}}],["xip",{"2":{"175":1,"189":1}}],["xiudi",{"2":{"102":9,"114":1,"222":1,"253":2,"266":1,"285":1}}],["xap",{"2":{"160":1,"199":1,"222":1}}],["x86",{"2":{"158":1,"2506":2}}],["xealous",{"2":{"294":1}}],["xealousbrown",{"2":{"114":1}}],["xelus22",{"2":{"58":1}}],["xelus",{"0":{"58":1},"2":{"58":4,"197":2,"222":8,"277":1}}],["xd96",{"2":{"102":2}}],["xd87",{"2":{"102":2}}],["xd84pro",{"2":{"102":2}}],["xd84",{"2":{"102":2}}],["xd68",{"2":{"102":2}}],["xd60",{"2":{"93":1,"102":2}}],["xd004",{"2":{"102":2,"222":1,"253":2}}],["xd002",{"2":{"102":2,"114":1,"285":1}}],["xd75",{"2":{"64":1,"102":2,"266":1}}],["x3c",{"2":{"55":2,"105":8,"354":2,"380":1,"383":1,"429":11,"430":13,"434":4,"436":1,"452":2,"453":2,"463":1,"475":3,"497":6,"498":4,"505":2,"524":2,"623":1,"717":2,"718":2,"721":2,"766":2,"768":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1299":2,"1303":2,"1405":1,"1413":1,"1431":1,"1433":3,"1435":2,"1436":6,"1467":5,"1472":1,"1533":1,"1535":1,"1556":2,"1557":2,"1591":2,"1612":1,"1657":8,"1779":2,"1788":2,"1850":2,"1947":1,"1948":1,"1983":1,"2001":3,"2006":1,"2041":8,"2042":1,"2043":32,"2048":2,"2077":1,"2088":2,"2095":5,"2096":1,"2278":2,"2286":1,"2381":10,"2384":2,"2388":2,"2389":4,"2392":3,"2394":2,"2395":2,"2396":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2464":4,"2502":4,"2508":1,"2558":1,"2559":2,"2583":1,"2584":3,"2587":2,"2594":2,"2595":3,"2614":2,"2616":2,"2629":1,"2634":14,"2637":3,"2639":2,"2732":1,"2757":6,"2768":6,"2791":1,"2927":1,"2929":2}}],["x",{"0":{"108":1,"1375":1,"1653":1,"2782":1,"2784":1},"1":{"1654":1,"2783":1,"2785":1},"2":{"39":1,"70":1,"108":1,"113":2,"114":5,"207":1,"210":1,"222":3,"249":2,"266":2,"279":1,"294":1,"308":1,"317":1,"379":1,"380":1,"421":5,"532":1,"589":2,"1373":1,"1409":1,"1428":4,"1448":5,"1450":1,"1605":2,"1612":1,"1625":1,"1641":2,"1645":2,"1653":1,"1654":2,"1702":24,"1740":1,"1742":1,"1743":2,"1766":1,"1846":6,"1852":2,"1934":1,"1935":1,"1953":2,"1954":2,"1968":5,"1970":3,"1971":2,"1974":2,"1975":4,"1983":4,"1985":5,"1987":5,"1990":3,"1993":2,"1994":3,"1996":2,"1997":2,"2014":1,"2047":1,"2050":2,"2082":6,"2091":2,"2181":1,"2199":2,"2222":4,"2226":1,"2280":1,"2290":2,"2313":1,"2317":18,"2318":1,"2332":1,"2380":2,"2417":1,"2421":3,"2455":2,"2466":21,"2510":3,"2522":3,"2544":1,"2552":1,"2563":1,"2576":4,"2694":1,"2721":16,"2756":3,"2757":13,"2782":3,"2784":3,"2794":1,"2795":19,"2796":17,"2800":8,"2869":3,"2871":2,"2878":2,"2919":2,"2927":1,"2950":1}}],["xxxx",{"2":{"2183":1,"2728":4}}],["xxxxxxx",{"2":{"2519":1,"2522":1,"2561":2,"2794":1}}],["xxxxx",{"2":{"1667":1}}],["xxx",{"2":{"212":2,"283":7,"627":1,"768":4,"1423":1,"1781":1,"1782":1,"1788":2,"2794":5,"2929":2}}],["xx",{"2":{"18":1}}],["0|1",{"2":{"2856":1,"2857":1,"2867":1,"2872":1}}],["03d",{"2":{"2889":1,"2893":1}}],["03h",{"2":{"2705":2}}],["03",{"2":{"2508":17}}],["03eb",{"2":{"689":7,"2498":4,"2612":1,"2615":2}}],["064",{"2":{"1968":2}}],["0=2",{"2":{"1954":1}}],["0ms",{"2":{"1949":1}}],["0°",{"2":{"1741":1}}],["0f",{"2":{"1490":2,"1493":5}}],["05f",{"2":{"1493":1}}],["05",{"2":{"924":1,"958":1,"992":1,"1390":1,"1405":1,"2374":1}}],["05dc",{"2":{"689":1,"2501":2}}],["05df",{"2":{"689":1,"2500":1}}],["0k5",{"2":{"860":2,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":2,"1129":2,"1163":2}}],["0u",{"2":{"770":2}}],["0b11",{"2":{"2466":3}}],["0b10100000",{"2":{"749":2}}],["0b00",{"2":{"2466":1}}],["0b01",{"2":{"2466":3}}],["0b01010000",{"2":{"749":1}}],["0b",{"2":{"2466":1}}],["0v",{"2":{"690":1,"698":1,"699":1}}],["04",{"2":{"2653":1,"2664":1}}],["04x",{"2":{"1329":1}}],["0483",{"2":{"689":1,"2399":1}}],["0478",{"2":{"689":1}}],["0422",{"2":{"308":1}}],["005",{"2":{"2893":1}}],["00s",{"2":{"2502":1}}],["00100000",{"2":{"2296":2}}],["00101000",{"2":{"2295":1,"2296":1}}],["00hwpkts",{"2":{"2295":1}}],["0001",{"2":{"2634":1}}],["00010000",{"2":{"2295":1}}],["00000101",{"2":{"2296":1}}],["00000001ff",{"2":{"2504":1}}],["00000001",{"2":{"2296":1}}],["00000000",{"2":{"2238":1,"2296":7}}],["00000010",{"2":{"2296":1}}],["00001100",{"2":{"2296":1}}],["0000",{"2":{"2240":1,"2612":1,"2615":2}}],["000",{"2":{"1979":2}}],["0003",{"2":{"689":1,"2401":1}}],["000e",{"2":{"689":1,"2499":1}}],["000d",{"2":{"689":1,"2499":1}}],["000c",{"2":{"689":1,"2499":1}}],["003",{"2":{"689":1}}],["0037",{"2":{"689":2,"2499":1}}],["0036",{"2":{"689":2,"2499":1}}],["00am",{"2":{"412":9}}],["00",{"2":{"383":5,"522":2,"523":2,"524":4,"1538":1,"1539":1,"2242":1}}],["004",{"2":{"291":1}}],["002",{"2":{"291":1}}],["0ab",{"2":{"266":1}}],["08t12",{"2":{"2508":17}}],["08752684f7f6",{"2":{"380":1,"381":1}}],["08",{"2":{"265":1}}],["02",{"2":{"249":1}}],["01101010",{"2":{"2296":1}}],["01110000",{"2":{"2295":1}}],["01ue",{"2":{"2295":1}}],["0189",{"2":{"689":1}}],["0106",{"2":{"689":1}}],["0101",{"2":{"689":1,"2499":1}}],["01000010",{"2":{"1378":1,"2295":2}}],["0100",{"2":{"253":1}}],["0131",{"2":{"226":1}}],["0130",{"2":{"226":1}}],["01",{"2":{"222":2,"1538":2,"1539":1}}],["0+atmel3",{"2":{"114":1}}],["07",{"2":{"114":2}}],["0xxx",{"2":{"2503":3}}],["0xe7",{"2":{"2470":1}}],["0xe8",{"2":{"1970":1}}],["0xd7",{"2":{"2501":1}}],["0xd8",{"2":{"2499":8}}],["0xdb",{"2":{"2498":1}}],["0xd9",{"2":{"2498":3}}],["0xd4",{"2":{"1946":1,"2285":1}}],["0xd3",{"2":{"1946":1,"2285":1}}],["0xd2",{"2":{"1946":1,"2285":1}}],["0xd1",{"2":{"1946":1,"2285":1}}],["0xd0",{"2":{"1946":1,"2285":1,"2499":1,"2500":1,"2501":1}}],["0xb4",{"2":{"1946":1,"2285":1}}],["0xb3",{"2":{"1946":1,"2285":1}}],["0xb2",{"2":{"1946":1,"2285":1,"2706":1}}],["0xb1",{"2":{"1946":1,"2285":1}}],["0xb0",{"2":{"1291":1,"1946":1,"2285":1,"2883":1}}],["0xaf",{"2":{"1946":1,"2285":1}}],["0xae",{"2":{"1946":1,"2285":1}}],["0xad",{"2":{"1946":1,"2285":1}}],["0xac",{"2":{"1946":1,"2285":1}}],["0xab",{"2":{"1946":1,"2285":1}}],["0xaa",{"2":{"1946":1,"2285":1}}],["0xa9",{"2":{"1946":1,"2285":1}}],["0xa8",{"2":{"1946":1,"2285":1}}],["0xa7",{"2":{"1946":1,"2285":1}}],["0xa6",{"2":{"1946":1,"2285":1}}],["0xa5",{"2":{"1946":1,"2285":1,"2509":1,"2519":1}}],["0xa4f9",{"2":{"2057":1}}],["0xa4",{"2":{"1946":1,"2285":1}}],["0xa3",{"2":{"1946":1,"2285":1}}],["0xa2",{"2":{"1946":1,"2285":1}}],["0xa1",{"2":{"1946":1,"2285":1}}],["0xa0",{"2":{"1946":1,"2285":1}}],["0x9b",{"2":{"2498":1}}],["0x99",{"2":{"2498":3}}],["0x94",{"2":{"1946":1,"2285":1}}],["0x93",{"2":{"1946":1,"2285":1}}],["0x92",{"2":{"1946":1,"2285":1}}],["0x91",{"2":{"1946":1,"2285":1}}],["0x90",{"2":{"1946":1,"2285":1}}],["0x8f",{"2":{"1946":1,"2285":1}}],["0x8e",{"2":{"1946":1,"2285":1}}],["0x8d",{"2":{"1946":1,"2285":1}}],["0x8c",{"2":{"1946":1,"2285":1}}],["0x8b",{"2":{"1946":1,"2285":1}}],["0x8a",{"2":{"1946":1,"2285":1}}],["0x89",{"2":{"1946":1,"2285":1}}],["0x88",{"2":{"1946":1,"2285":1}}],["0x87",{"2":{"1946":1,"2285":1}}],["0x86",{"2":{"1946":1,"2285":1}}],["0x85",{"2":{"1946":1,"2285":1}}],["0x84",{"2":{"1946":1,"2285":1}}],["0x83",{"2":{"1946":1,"2285":1}}],["0x82",{"2":{"1946":1,"2285":1}}],["0x81",{"2":{"1946":1,"2285":1}}],["0x8000000",{"2":{"2399":1,"2403":1,"2404":1,"2508":1}}],["0x80",{"2":{"1946":1,"1949":1,"2285":1}}],["0x464751",{"2":{"2774":1}}],["0x464651",{"2":{"2767":1}}],["0x4335",{"2":{"2059":1}}],["0x41",{"2":{"2059":2}}],["0x4207",{"2":{"1330":1,"2949":1}}],["0x400",{"2":{"2508":1}}],["0x40b",{"2":{"2329":1}}],["0x40",{"2":{"857":1,"861":1}}],["0x",{"2":{"1329":1}}],["0xf8",{"2":{"2499":1}}],["0xfb",{"2":{"2499":6}}],["0xfe",{"2":{"2499":2}}],["0xfeed",{"2":{"1319":1,"2717":2}}],["0xf3",{"2":{"2498":4}}],["0xffff",{"2":{"2751":2,"2820":1}}],["0xff60",{"2":{"2056":2,"2059":1}}],["0xff",{"2":{"921":1,"926":1,"956":1,"960":1,"990":1,"994":1,"1024":1,"1028":1,"1058":1,"1062":1,"1092":1,"1096":1,"1126":1,"1130":1,"1160":1,"1164":1,"1423":1,"1430":6,"1490":1,"1491":2,"1517":5,"1533":3,"1847":1,"1850":1,"2046":1,"2083":1,"2088":4,"2381":4,"2499":9,"2573":1,"2820":1}}],["0x6fff",{"2":{"2615":1}}],["0x6f",{"2":{"1161":1}}],["0x6e",{"2":{"1161":1}}],["0x6d",{"2":{"1161":1}}],["0x6c",{"2":{"1161":1}}],["0x6b",{"2":{"1161":1}}],["0x6a",{"2":{"1161":1}}],["0x69",{"2":{"1161":1}}],["0x68",{"2":{"1161":1}}],["0x67",{"2":{"1161":1}}],["0x66",{"2":{"1161":1}}],["0x65",{"2":{"1161":1}}],["0x64",{"2":{"1161":1}}],["0x63",{"2":{"1161":1}}],["0x62",{"2":{"1161":1}}],["0x61",{"2":{"1161":1,"2056":2,"2059":1}}],["0x60000002",{"2":{"2558":1}}],["0x60",{"2":{"1161":1}}],["0x7e",{"2":{"2755":3,"2767":1,"2768":1}}],["0x7000",{"2":{"2615":2}}],["0x7fff",{"2":{"2332":1,"2418":1,"2552":1}}],["0x7f",{"2":{"1737":1}}],["0x7a",{"2":{"1430":1}}],["0x77",{"2":{"890":1,"1217":1}}],["0x76",{"2":{"890":1,"1217":1}}],["0x75",{"2":{"890":1,"1217":1}}],["0x74",{"2":{"890":1,"1217":1}}],["0x3",{"2":{"1665":1}}],["0x33",{"2":{"1025":1,"1059":1}}],["0x32",{"2":{"1025":1,"1059":1}}],["0x31",{"2":{"1025":1,"1058":1,"1059":1,"1126":1}}],["0x37",{"2":{"858":1}}],["0x36",{"2":{"858":1}}],["0x35",{"2":{"858":1}}],["0x34",{"2":{"858":1}}],["0x3f80",{"2":{"2615":2}}],["0x3f7f",{"2":{"2615":1}}],["0x3f",{"2":{"829":1,"1735":1}}],["0x3e",{"2":{"829":1}}],["0x3d",{"2":{"829":1}}],["0x3c",{"2":{"829":1,"1950":1}}],["0x30c4",{"2":{"2329":1}}],["0x30",{"2":{"766":1,"1025":1,"1059":1}}],["0x5f",{"2":{"922":1,"957":1,"991":1}}],["0x5e",{"2":{"922":1,"957":1,"2498":4}}],["0x5d",{"2":{"922":1,"957":1}}],["0x5c",{"2":{"922":1,"957":1}}],["0x5b",{"2":{"922":1,"957":1}}],["0x5a",{"2":{"922":1,"957":1,"991":1}}],["0x59",{"2":{"922":1,"957":1}}],["0x58",{"2":{"922":1,"957":1}}],["0x57",{"2":{"922":1,"957":1}}],["0x56f0",{"2":{"1533":1}}],["0x56",{"2":{"922":1,"957":1}}],["0x5678",{"2":{"168":2,"184":2,"561":1}}],["0x55",{"2":{"922":1,"957":1,"991":1}}],["0x53",{"2":{"922":1,"957":1}}],["0x52",{"2":{"922":1,"957":1}}],["0x51",{"2":{"922":1,"957":1}}],["0x50",{"2":{"922":1,"957":1,"991":1}}],["0x54",{"2":{"803":1,"922":1,"957":1}}],["0x2f",{"2":{"1093":1,"1127":1}}],["0x2e2e",{"2":{"2329":1}}],["0x2e",{"2":{"1093":1,"1127":1}}],["0x2d",{"2":{"1093":1,"1127":1}}],["0x2c",{"2":{"1093":1,"1127":1}}],["0x2b",{"2":{"1093":1,"1127":1}}],["0x2a",{"2":{"1093":1,"1127":1,"1974":1}}],["0x29",{"2":{"1093":1,"1127":1}}],["0x28",{"2":{"1093":1,"1127":1}}],["0x27",{"2":{"1093":1,"1127":1}}],["0x26",{"2":{"1093":1,"1127":1}}],["0x25",{"2":{"1093":1,"1127":1}}],["0x24",{"2":{"1093":1,"1127":1}}],["0x23b0",{"2":{"2882":1}}],["0x23",{"2":{"1093":1,"1127":1}}],["0x2330",{"2":{"111":1}}],["0x22",{"2":{"1093":1,"1127":1}}],["0x21",{"2":{"1093":1,"1127":1}}],["0x203d",{"2":{"2329":1}}],["0x20",{"2":{"1093":1,"1127":1,"2755":3,"2767":1,"2768":1}}],["0x2000",{"2":{"383":1}}],["0x100",{"2":{"2820":1}}],["0x10ffff",{"2":{"2418":2}}],["0x1e9587",{"2":{"2502":1}}],["0x1eff",{"2":{"383":1}}],["0x1d",{"2":{"2472":1}}],["0x1c04",{"2":{"2508":1}}],["0x1c",{"2":{"2472":1}}],["0x1f",{"2":{"2501":1}}],["0x1f1e6",{"2":{"2330":1}}],["0x1f1fa",{"2":{"2330":1}}],["0x1f923",{"2":{"2330":1}}],["0x1f4a9",{"2":{"2330":1}}],["0x1f40d",{"2":{"2329":1}}],["0x1fff",{"2":{"383":1}}],["0x15",{"2":{"1702":3}}],["0x18",{"2":{"766":2}}],["0x1234",{"2":{"168":2,"184":2,"561":1}}],["0x03",{"2":{"2770":2,"2776":1,"2777":2}}],["0x03a8",{"2":{"2057":1}}],["0x07",{"2":{"2509":1,"2776":1}}],["0x06",{"2":{"2472":1,"2776":1}}],["0x05",{"2":{"2472":1,"2776":1,"2779":2}}],["0x0ca0",{"2":{"2330":2}}],["0x0f",{"2":{"2046":1,"2500":1}}],["0x09",{"2":{"2016":1}}],["0x0b",{"2":{"2016":1}}],["0x02",{"2":{"1983":1,"2083":1,"2769":2,"2776":3}}],["0x0a",{"2":{"1980":1}}],["0x08001c00",{"2":{"2508":1}}],["0x08001800",{"2":{"2508":1}}],["0x08001400",{"2":{"2508":1}}],["0x08001000",{"2":{"2508":1}}],["0x08000c00",{"2":{"2508":1}}],["0x08000800",{"2":{"2508":1}}],["0x08000400",{"2":{"2508":1}}],["0x08000000",{"2":{"2508":2}}],["0x08",{"2":{"1702":1,"1847":1,"2083":1}}],["0x0410",{"2":{"2508":2}}],["0x04",{"2":{"1702":3,"1847":1,"2083":1,"2472":1,"2473":1,"2501":1,"2771":2,"2776":1,"2778":2}}],["0x0e",{"2":{"1702":1}}],["0x01",{"2":{"1092":1,"1160":1,"1847":1,"2083":1,"2096":2,"2767":1,"2768":2,"2774":1,"2775":2,"2776":2}}],["0x0100",{"2":{"383":1,"561":1}}],["0x0",{"2":{"720":1,"2615":2}}],["0x005f",{"2":{"2330":1}}],["0x00c6",{"2":{"2330":1}}],["0x00e6",{"2":{"2330":1}}],["0x00",{"2":{"1430":8,"1702":1,"1735":1,"1737":1,"1847":1,"1946":1,"2059":1,"2083":1,"2088":1,"2285":1,"2470":1,"2767":2,"2774":2,"2776":2,"2820":1}}],["0x00ff",{"2":{"383":1,"2751":2}}],["0x0008e534",{"2":{"2508":1}}],["0x0002",{"2":{"2059":1}}],["0x00000002",{"2":{"2558":1}}],["0x00000001",{"2":{"2558":1}}],["0x0000",{"2":{"383":1,"2508":1,"2717":1,"2751":2}}],["0x0001",{"2":{"111":1,"168":1,"184":1}}],["0xcf",{"2":{"1946":1,"2285":1}}],["0xce",{"2":{"1946":1,"2285":1}}],["0xcd",{"2":{"1946":1,"2285":1}}],["0xcc",{"2":{"1946":1,"2285":1}}],["0xca",{"2":{"1946":1,"2285":1}}],["0xc9",{"2":{"1946":1,"2285":1}}],["0xc8",{"2":{"1946":1,"2285":1}}],["0xc7",{"2":{"1946":1,"2285":1}}],["0xc6",{"2":{"1946":1,"2285":1}}],["0xc5",{"2":{"1946":1,"2285":1}}],["0xc4",{"2":{"1946":1,"2285":1}}],["0xc3",{"2":{"1946":1,"2285":1}}],["0xc2",{"2":{"1946":1,"2285":1}}],["0xc1",{"2":{"1946":1,"2285":1}}],["0xc1ed",{"2":{"111":1,"2882":1}}],["0xc0",{"2":{"1946":1,"2285":1,"2501":1}}],["0xcb",{"2":{"114":1,"266":1,"322":4,"328":1,"1391":1,"1399":1,"1946":1,"2285":1,"2706":1,"2895":1}}],["0$",{"2":{"70":3}}],["0",{"0":{"56":1,"2431":1,"2488":1},"1":{"2489":1},"2":{"28":2,"44":1,"47":1,"56":1,"90":2,"102":1,"105":4,"114":5,"120":2,"122":2,"152":1,"168":2,"175":2,"183":1,"184":2,"191":1,"195":1,"199":2,"210":1,"231":4,"236":1,"238":2,"240":2,"247":1,"249":2,"266":5,"277":2,"279":1,"285":1,"294":2,"307":1,"308":1,"328":1,"332":2,"337":2,"339":1,"354":1,"379":1,"383":8,"413":54,"429":1,"455":1,"469":1,"524":2,"546":2,"561":1,"564":1,"566":2,"570":1,"589":3,"593":1,"656":3,"657":1,"684":3,"689":1,"690":1,"693":1,"695":4,"696":2,"699":2,"704":1,"713":1,"719":1,"720":1,"726":1,"727":1,"729":2,"732":1,"744":2,"754":1,"755":1,"797":2,"802":1,"828":2,"831":3,"834":1,"857":2,"860":4,"861":1,"863":3,"866":1,"889":2,"893":3,"896":1,"921":5,"925":6,"926":1,"928":3,"931":1,"956":4,"959":6,"960":1,"962":3,"965":1,"990":4,"993":6,"994":1,"996":3,"999":1,"1024":2,"1027":4,"1028":1,"1030":3,"1033":1,"1058":2,"1061":4,"1062":1,"1064":3,"1067":1,"1092":3,"1095":4,"1096":1,"1098":3,"1101":1,"1126":3,"1129":4,"1130":1,"1132":3,"1135":1,"1160":2,"1163":4,"1164":1,"1166":3,"1169":1,"1207":1,"1216":2,"1219":3,"1222":1,"1252":1,"1285":1,"1286":1,"1288":3,"1295":1,"1311":1,"1329":23,"1365":2,"1373":1,"1395":8,"1409":4,"1412":1,"1417":1,"1419":2,"1420":3,"1422":3,"1423":2,"1425":2,"1431":1,"1441":1,"1446":2,"1455":1,"1462":1,"1486":1,"1492":1,"1493":1,"1514":2,"1527":23,"1533":4,"1535":1,"1538":4,"1539":1,"1544":1,"1545":1,"1567":1,"1569":1,"1583":1,"1586":1,"1588":1,"1589":3,"1593":1,"1598":1,"1600":1,"1612":2,"1619":2,"1625":3,"1630":3,"1633":2,"1638":28,"1641":3,"1642":2,"1654":2,"1655":1,"1656":1,"1657":3,"1664":1,"1667":1,"1668":2,"1670":1,"1678":1,"1681":1,"1684":3,"1685":3,"1695":2,"1702":1,"1712":2,"1720":1,"1722":1,"1740":2,"1741":2,"1742":2,"1743":6,"1744":3,"1752":1,"1754":1,"1757":1,"1781":1,"1795":2,"1836":1,"1838":2,"1839":1,"1846":5,"1849":1,"1852":1,"1866":1,"1884":1,"1890":1,"1892":1,"1894":1,"1924":2,"1925":29,"1926":2,"1933":2,"1935":1,"1937":4,"1947":5,"1948":2,"1949":9,"1952":2,"1953":5,"1954":5,"1968":6,"1971":1,"1983":3,"1984":1,"1986":2,"1990":2,"1993":2,"1994":6,"1996":2,"1997":2,"2003":2,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2041":4,"2043":10,"2048":3,"2059":5,"2074":1,"2076":2,"2077":2,"2082":5,"2085":1,"2091":2,"2095":3,"2096":4,"2108":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2160":3,"2162":3,"2182":2,"2183":8,"2185":2,"2190":1,"2191":4,"2198":15,"2201":2,"2202":2,"2205":1,"2206":1,"2207":1,"2217":4,"2228":1,"2232":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":2,"2245":1,"2246":1,"2247":2,"2259":4,"2260":1,"2275":3,"2277":2,"2280":2,"2286":5,"2288":5,"2290":2,"2295":1,"2296":6,"2300":1,"2303":16,"2305":1,"2316":2,"2330":2,"2365":1,"2380":2,"2381":3,"2387":3,"2394":1,"2399":1,"2402":1,"2404":1,"2424":2,"2466":10,"2488":2,"2502":1,"2508":3,"2510":2,"2518":2,"2522":4,"2532":3,"2539":29,"2540":2,"2557":4,"2558":9,"2562":1,"2563":4,"2576":5,"2577":2,"2615":2,"2674":2,"2685":2,"2717":2,"2721":18,"2732":1,"2754":1,"2755":2,"2756":1,"2757":27,"2761":1,"2773":1,"2776":6,"2777":6,"2790":3,"2792":2,"2794":1,"2795":13,"2796":10,"2854":1,"2855":1,"2857":1,"2858":2,"2860":2,"2863":1,"2869":4,"2871":6,"2872":1,"2877":4,"2878":7,"2879":5,"2880":1,"2882":3,"2893":2,"2911":3,"2916":2,"2917":3,"2918":2,"2922":2,"2924":1,"2925":4,"2927":2,"2937":21,"2939":1,"2940":39}}],["2d",{"2":{"2889":1}}],["2bpp",{"2":{"2776":2}}],["2c1219002b135937334d4e00",{"2":{"2508":1}}],["2p4g",{"2":{"2377":1,"2528":1}}],["2p4ghz",{"2":{"2377":1,"2528":1}}],["2t",{"2":{"2252":1}}],["2=4",{"2":{"1954":1}}],["2ms",{"2":{"1953":1}}],["2>",{"2":{"1788":1,"2929":1}}],["2x2",{"2":{"2466":1}}],["2x1800",{"2":{"2414":1}}],["2x",{"2":{"1684":1,"1685":1,"1974":2,"2264":2}}],["2x4",{"2":{"114":1,"222":1}}],["2v",{"2":{"1679":1}}],["2u",{"2":{"1329":2,"2799":1}}],["2kro",{"2":{"2839":1}}],["2kω",{"2":{"1197":1}}],["2k1",{"2":{"924":1,"958":1,"992":1}}],["2k",{"2":{"857":2,"859":1,"860":6,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1092":2,"1095":6,"1126":2,"1129":6,"1160":2,"1163":6,"1974":1,"2267":1}}],["2key",{"2":{"143":2}}],["2️⃣",{"2":{"716":3}}],["2e3c",{"2":{"689":1,"2404":1}}],["2a03",{"2":{"689":2}}],["2ffb",{"2":{"689":1,"2498":1}}],["2ff9",{"2":{"689":1,"2498":1}}],["2ff4",{"2":{"689":1,"2498":1,"2612":1,"2615":2}}],["2ff3",{"2":{"689":1,"2498":1}}],["2ff0",{"2":{"689":1}}],["2fef",{"2":{"689":1}}],["23x",{"2":{"2689":1}}],["239",{"2":{"1947":1,"2286":1,"2757":6}}],["239a",{"2":{"689":3,"2499":3}}],["23994",{"2":{"294":1}}],["23999",{"2":{"277":1}}],["23953",{"2":{"285":1}}],["23954",{"2":{"277":1}}],["23945",{"2":{"277":1}}],["23967",{"2":{"277":1}}],["23963",{"2":{"277":1}}],["23987",{"2":{"277":1}}],["23985",{"2":{"277":1}}],["23983",{"2":{"277":1}}],["23981",{"2":{"277":1}}],["23980",{"2":{"277":1}}],["23923",{"2":{"277":1}}],["23925",{"2":{"277":1}}],["23924",{"2":{"277":1}}],["23917",{"2":{"277":1}}],["23911",{"2":{"277":1}}],["23979",{"2":{"277":1}}],["23975",{"2":{"277":1}}],["23901",{"2":{"277":1}}],["23838",{"2":{"285":1}}],["23857",{"2":{"277":1}}],["23818",{"2":{"277":1}}],["23896",{"2":{"277":1}}],["23894",{"2":{"277":1}}],["23884",{"2":{"308":1}}],["23887",{"2":{"285":1}}],["23883",{"2":{"277":1}}],["23885",{"2":{"277":1}}],["23881",{"2":{"277":1}}],["2370",{"2":{"434":2}}],["23709",{"2":{"266":1}}],["23796",{"2":{"277":1}}],["23793",{"2":{"266":1}}],["23792",{"2":{"266":1}}],["23790",{"2":{"266":1}}],["23782",{"2":{"277":1}}],["23789",{"2":{"266":1}}],["23788",{"2":{"266":1}}],["23787",{"2":{"266":1}}],["23786",{"2":{"266":1}}],["23785",{"2":{"266":1}}],["23784",{"2":{"266":1}}],["23783",{"2":{"266":1}}],["23781",{"2":{"266":1}}],["23780",{"2":{"266":1}}],["23779",{"2":{"266":1}}],["23778",{"2":{"266":1}}],["23774",{"2":{"266":1}}],["23773",{"2":{"266":1}}],["23772",{"2":{"266":1}}],["23771",{"2":{"266":1}}],["23770",{"2":{"266":1}}],["23765",{"2":{"277":1}}],["23769",{"2":{"266":1}}],["23768",{"2":{"266":1}}],["23767",{"2":{"266":1}}],["23764",{"2":{"266":1}}],["23763",{"2":{"266":1}}],["23762",{"2":{"266":1}}],["23760",{"2":{"266":1}}],["23759",{"2":{"266":1}}],["23758",{"2":{"266":1}}],["23757",{"2":{"266":1}}],["23754",{"2":{"266":1}}],["23751",{"2":{"266":1}}],["23750",{"2":{"266":1}}],["23749",{"2":{"266":1}}],["23747",{"2":{"266":1}}],["23746",{"2":{"266":1}}],["23745",{"2":{"266":1}}],["23719",{"2":{"266":1}}],["23716",{"2":{"266":1}}],["23714",{"2":{"266":1}}],["23712",{"2":{"266":1}}],["23726",{"2":{"266":1}}],["23266",{"2":{"266":1}}],["23264",{"2":{"266":1}}],["23222",{"2":{"266":1}}],["23221",{"2":{"266":1}}],["23206",{"2":{"266":1}}],["23202",{"2":{"266":1}}],["23292",{"2":{"266":1}}],["23299",{"2":{"266":1}}],["23294",{"2":{"266":1}}],["23293",{"2":{"266":1}}],["23297",{"2":{"266":1}}],["23281",{"2":{"317":1}}],["23289",{"2":{"266":1}}],["23288",{"2":{"266":1}}],["23287",{"2":{"266":1}}],["23286",{"2":{"266":1}}],["23285",{"2":{"266":1}}],["23277",{"2":{"266":1}}],["23276",{"2":{"266":1}}],["23273",{"2":{"266":1}}],["23259",{"2":{"266":1}}],["23246",{"2":{"266":1}}],["23248",{"2":{"266":1}}],["23247",{"2":{"266":1}}],["23236",{"2":{"266":1}}],["23217",{"2":{"266":1}}],["23641",{"2":{"294":1}}],["23642",{"2":{"277":1}}],["23679",{"2":{"285":1}}],["23673",{"2":{"266":1}}],["23699",{"2":{"285":1}}],["23692",{"2":{"277":1}}],["23694",{"2":{"266":1}}],["23697",{"2":{"266":1}}],["23691",{"2":{"266":1}}],["23685",{"2":{"266":1}}],["23668",{"2":{"266":1}}],["23663",{"2":{"266":1}}],["23630",{"2":{"277":1}}],["23635",{"2":{"266":1}}],["23633",{"2":{"266":1}}],["23627",{"2":{"266":1}}],["23624",{"2":{"266":1}}],["23622",{"2":{"266":1}}],["23616",{"2":{"266":1}}],["23614",{"2":{"266":1}}],["23612",{"2":{"266":1}}],["23609",{"2":{"266":1}}],["23607",{"2":{"266":1}}],["23606",{"2":{"266":1}}],["23601",{"2":{"266":1}}],["23650",{"2":{"277":1}}],["23655",{"2":{"266":1}}],["23652",{"2":{"266":1}}],["23658",{"2":{"266":1}}],["23653",{"2":{"266":1}}],["23657",{"2":{"266":1}}],["23656",{"2":{"266":1}}],["23598",{"2":{"266":1}}],["23599",{"2":{"266":1}}],["23593",{"2":{"266":1}}],["23591",{"2":{"266":1}}],["23590",{"2":{"266":1}}],["23589",{"2":{"266":1}}],["23588",{"2":{"266":1}}],["23585",{"2":{"266":1}}],["23576",{"2":{"266":1}}],["23573",{"2":{"266":1}}],["23569",{"2":{"266":1}}],["23567",{"2":{"266":1}}],["23566",{"2":{"266":1}}],["23565",{"2":{"266":1}}],["23564",{"2":{"266":1}}],["23562",{"2":{"266":1}}],["23558",{"2":{"308":1}}],["23557",{"2":{"266":1}}],["23556",{"2":{"266":1}}],["23547",{"2":{"266":1}}],["23542",{"2":{"266":1}}],["23541",{"2":{"266":1}}],["23540",{"2":{"266":1}}],["23534",{"2":{"266":1}}],["23533",{"2":{"266":1}}],["23532",{"2":{"266":1}}],["23530",{"2":{"266":1}}],["23520",{"2":{"277":1}}],["23529",{"2":{"266":1}}],["23525",{"2":{"266":1}}],["23524",{"2":{"266":1}}],["23522",{"2":{"266":1}}],["23516",{"2":{"266":1}}],["23515",{"2":{"266":1}}],["23514",{"2":{"266":1}}],["23512",{"2":{"266":1}}],["23511",{"2":{"266":1}}],["23445",{"2":{"285":1}}],["23448",{"2":{"266":1}}],["23488",{"2":{"266":1}}],["23486",{"2":{"266":1}}],["23462",{"2":{"266":1}}],["23461",{"2":{"266":1}}],["23460",{"2":{"266":1}}],["23463",{"2":{"266":1}}],["23451",{"2":{"285":1}}],["23453",{"2":{"266":1}}],["23452",{"2":{"266":1}}],["23455",{"2":{"266":1}}],["2341",{"2":{"689":2,"2499":2}}],["23419",{"2":{"266":1}}],["23418",{"2":{"266":1}}],["23412",{"2":{"266":1}}],["23406",{"2":{"266":1}}],["23403",{"2":{"266":1}}],["23402",{"2":{"266":1}}],["23405",{"2":{"266":1}}],["23407",{"2":{"266":1}}],["23430",{"2":{"285":1}}],["23437",{"2":{"277":1}}],["23439",{"2":{"277":1}}],["23436",{"2":{"266":1}}],["23434",{"2":{"266":1}}],["23432",{"2":{"266":1}}],["23425",{"2":{"266":1}}],["23424",{"2":{"266":1}}],["23423",{"2":{"266":1}}],["23421",{"2":{"266":1}}],["23426",{"2":{"266":1}}],["23422",{"2":{"266":1}}],["23389",{"2":{"328":1}}],["23384",{"2":{"266":1}}],["23355",{"2":{"277":1}}],["23357",{"2":{"266":1}}],["23341",{"2":{"277":1}}],["23346",{"2":{"266":1}}],["23335",{"2":{"266":1}}],["23330",{"2":{"266":1}}],["23399",{"2":{"266":1}}],["23396",{"2":{"266":1}}],["23395",{"2":{"266":1}}],["23397",{"2":{"266":1}}],["23394",{"2":{"266":1}}],["23393",{"2":{"266":1}}],["23390",{"2":{"266":1}}],["23379",{"2":{"266":1}}],["23378",{"2":{"266":1}}],["23377",{"2":{"266":1}}],["23376",{"2":{"266":1}}],["23373",{"2":{"266":1}}],["23371",{"2":{"266":1}}],["23375",{"2":{"266":1}}],["23367",{"2":{"266":1}}],["23361",{"2":{"266":1}}],["23360",{"2":{"266":1}}],["23311",{"2":{"266":1}}],["23309",{"2":{"266":1}}],["23307",{"2":{"266":1}}],["23305",{"2":{"266":1}}],["23302",{"2":{"266":1}}],["23329",{"2":{"266":1}}],["23324",{"2":{"266":1}}],["23321",{"2":{"266":1}}],["23322",{"2":{"266":1}}],["23188",{"2":{"266":1}}],["23185",{"2":{"266":1}}],["23179",{"2":{"266":1}}],["2316",{"2":{"2629":1}}],["23169",{"2":{"266":1}}],["23162",{"2":{"266":1}}],["23144",{"2":{"266":1}}],["23143",{"2":{"249":1}}],["23111",{"2":{"266":1}}],["23116",{"2":{"249":1}}],["23112",{"2":{"249":1}}],["23110",{"2":{"249":1}}],["23119",{"2":{"249":1}}],["23155",{"2":{"249":1}}],["23129",{"2":{"249":1}}],["23127",{"2":{"249":1}}],["23121",{"2":{"249":1}}],["23128",{"2":{"249":1}}],["23106",{"2":{"249":1}}],["23104",{"2":{"249":1}}],["23102",{"2":{"249":1}}],["23109",{"2":{"249":1}}],["23108",{"2":{"249":1}}],["23",{"0":{"286":1},"1":{"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1},"2":{"249":1,"402":1,"413":2,"609":1,"925":1,"993":1,"1061":1,"1095":1,"1129":1,"1163":1,"1492":1,"1527":3,"1686":1,"1744":3,"1968":22,"2018":3,"2532":3,"2548":3,"2774":1}}],["23038",{"2":{"266":1}}],["23037",{"2":{"249":1}}],["230400",{"2":{"1207":1}}],["23048",{"2":{"249":1}}],["23047",{"2":{"249":1}}],["23049",{"2":{"249":1}}],["23097",{"2":{"277":1}}],["23091",{"2":{"277":1}}],["23096",{"2":{"249":1}}],["23095",{"2":{"249":1}}],["23094",{"2":{"249":1}}],["23092",{"2":{"249":1}}],["23093",{"2":{"249":1}}],["23084",{"2":{"249":1}}],["23083",{"2":{"249":1}}],["23081",{"2":{"249":1}}],["23085",{"2":{"249":1}}],["23076",{"2":{"266":1}}],["23077",{"2":{"249":1}}],["23074",{"2":{"249":1}}],["23073",{"2":{"249":1}}],["23065",{"2":{"294":1}}],["23063",{"2":{"249":1}}],["23067",{"2":{"249":1}}],["23029",{"2":{"249":1}}],["23000",{"2":{"249":1}}],["23002",{"2":{"249":1}}],["23055",{"2":{"266":1}}],["23059",{"2":{"249":1}}],["23056",{"2":{"249":1}}],["23058",{"2":{"249":1}}],["23052",{"2":{"249":1}}],["24bpp",{"2":{"2756":1}}],["24lc256",{"2":{"749":2}}],["24lc128",{"2":{"749":3}}],["24lc64",{"2":{"749":3}}],["24lc32a",{"2":{"191":1,"749":3}}],["24xx",{"0":{"2446":1},"2":{"746":1,"749":1}}],["24989",{"2":{"333":1}}],["24961",{"2":{"328":1}}],["24997",{"2":{"308":1}}],["24990",{"2":{"308":1}}],["24932",{"2":{"308":1}}],["24938",{"2":{"294":1}}],["24952",{"2":{"308":1}}],["24928",{"2":{"294":1}}],["24915",{"2":{"294":1}}],["24912",{"2":{"294":1}}],["24913",{"2":{"294":1}}],["24903",{"2":{"294":1}}],["248",{"2":{"1353":1,"2418":1}}],["24880",{"2":{"294":1}}],["24878",{"2":{"294":1}}],["24877",{"2":{"294":1}}],["24879",{"2":{"294":1}}],["24868",{"2":{"294":1}}],["24807",{"2":{"294":1}}],["24803",{"2":{"294":1}}],["24802",{"2":{"294":1}}],["24800",{"2":{"294":1}}],["24857",{"2":{"294":1}}],["24855",{"2":{"294":1}}],["24850",{"2":{"294":1}}],["24840",{"2":{"294":1}}],["24844",{"2":{"294":1}}],["24842",{"2":{"294":1}}],["24845",{"2":{"294":1}}],["24848",{"2":{"294":1}}],["24846",{"2":{"294":1}}],["24836",{"2":{"294":1}}],["24838",{"2":{"294":1}}],["24835",{"2":{"294":1}}],["24839",{"2":{"294":1}}],["24837",{"2":{"294":1}}],["24834",{"2":{"294":1}}],["24832",{"2":{"294":1}}],["24830",{"2":{"294":1}}],["24817",{"2":{"294":1}}],["247",{"2":{"1947":1,"2286":1}}],["24776",{"2":{"333":1}}],["24772",{"2":{"294":1}}],["24764",{"2":{"308":1}}],["24723",{"2":{"308":1}}],["24724",{"2":{"294":1}}],["24785",{"2":{"308":1}}],["24787",{"2":{"308":1}}],["24786",{"2":{"294":1}}],["24784",{"2":{"294":1}}],["24757",{"2":{"294":1}}],["24749",{"2":{"294":1}}],["24748",{"2":{"294":1}}],["24719",{"2":{"328":1}}],["24714",{"2":{"294":1}}],["24715",{"2":{"294":1}}],["24705",{"2":{"294":1}}],["24701",{"2":{"294":1}}],["24707",{"2":{"294":1}}],["24794",{"2":{"294":1}}],["24649",{"2":{"327":1,"328":1}}],["24640",{"2":{"294":1}}],["24690",{"2":{"308":1}}],["24680",{"2":{"308":1}}],["24666",{"2":{"308":1}}],["24667",{"2":{"294":1}}],["24656",{"2":{"294":1}}],["24655",{"2":{"294":1}}],["24651",{"2":{"294":1}}],["24678",{"2":{"294":1}}],["24611",{"2":{"294":1}}],["24623",{"2":{"294":1}}],["24627",{"2":{"285":1}}],["24622",{"2":{"285":1}}],["24637",{"2":{"294":1}}],["24635",{"2":{"285":1}}],["24633",{"2":{"285":1}}],["24639",{"2":{"285":1}}],["24630",{"2":{"285":1}}],["24553",{"2":{"308":1}}],["24554",{"2":{"285":1}}],["24590",{"2":{"294":1}}],["24593",{"2":{"285":1}}],["24560",{"2":{"294":1}}],["24503",{"2":{"294":1}}],["24502",{"2":{"285":1}}],["24508",{"2":{"285":1}}],["24529",{"2":{"294":1}}],["24525",{"2":{"294":1}}],["24521",{"2":{"294":1}}],["24528",{"2":{"285":1}}],["24520",{"2":{"285":1}}],["24548",{"2":{"285":1}}],["24540",{"2":{"285":1}}],["24573",{"2":{"285":1}}],["24531",{"2":{"294":1}}],["24539",{"2":{"285":1}}],["24535",{"2":{"285":1}}],["24534",{"2":{"285":1}}],["24532",{"2":{"285":1}}],["24515",{"2":{"285":1}}],["24513",{"2":{"285":1}}],["24418",{"2":{"328":1}}],["24413",{"2":{"285":1}}],["24490",{"2":{"285":1}}],["24481",{"2":{"285":1}}],["24484",{"2":{"285":1}}],["24480",{"2":{"285":1}}],["24408",{"2":{"285":1}}],["24456",{"2":{"285":1}}],["24479",{"2":{"285":1}}],["24474",{"2":{"285":1}}],["24473",{"2":{"285":1}}],["24476",{"2":{"285":1}}],["24477",{"2":{"285":1}}],["24471",{"2":{"285":1}}],["24468",{"2":{"285":1}}],["24467",{"2":{"285":1}}],["24449",{"2":{"285":1}}],["24445",{"2":{"285":1}}],["24433",{"2":{"285":1}}],["24432",{"2":{"285":1}}],["24423",{"2":{"308":1}}],["24428",{"2":{"285":1}}],["24422",{"2":{"285":1}}],["24301",{"2":{"308":1}}],["24364",{"2":{"285":1}}],["24398",{"2":{"285":1}}],["24337",{"2":{"285":1}}],["24388",{"2":{"285":1}}],["24379",{"2":{"285":1}}],["24376",{"2":{"285":1}}],["24356",{"2":{"308":1}}],["24355",{"2":{"285":1}}],["24352",{"2":{"285":1}}],["24351",{"2":{"285":1}}],["24348",{"2":{"285":1}}],["24316",{"2":{"277":1}}],["24322",{"2":{"277":1}}],["24266",{"2":{"294":1}}],["24241",{"2":{"294":1}}],["24249",{"2":{"285":1}}],["24240",{"2":{"277":1}}],["24259",{"2":{"294":1}}],["24258",{"2":{"285":1}}],["24251",{"2":{"285":1}}],["24253",{"2":{"277":1}}],["24229",{"2":{"285":1}}],["24223",{"2":{"285":1}}],["24238",{"2":{"277":1}}],["24237",{"2":{"277":1}}],["24236",{"2":{"277":1}}],["24233",{"2":{"277":1}}],["24232",{"2":{"277":1}}],["24231",{"2":{"277":1}}],["24234",{"2":{"277":1}}],["24215",{"2":{"277":1}}],["24201",{"2":{"277":1}}],["24200",{"2":{"277":1}}],["24203",{"2":{"277":1}}],["24202",{"2":{"277":1}}],["24116",{"2":{"277":1}}],["24194",{"2":{"285":1}}],["24191",{"2":{"277":1}}],["24192",{"2":{"277":1}}],["24185",{"2":{"277":1}}],["24180",{"2":{"277":1}}],["24163",{"2":{"277":1}}],["24155",{"2":{"277":1}}],["24146",{"2":{"277":1}}],["24143",{"2":{"277":1}}],["24142",{"2":{"277":1}}],["24136",{"2":{"277":1}}],["24133",{"2":{"277":1}}],["24127",{"2":{"277":1}}],["24122",{"2":{"277":1}}],["24120",{"2":{"277":1}}],["240px",{"2":{"2757":1}}],["240",{"2":{"2756":3,"2757":3}}],["240x80",{"2":{"2756":2}}],["240x320",{"2":{"2753":2,"2756":1,"2757":4}}],["240x240",{"2":{"2753":2,"2756":1,"2757":1}}],["24092",{"2":{"277":1}}],["24094",{"2":{"277":1}}],["24082",{"2":{"328":1}}],["24084",{"2":{"285":1}}],["24086",{"2":{"277":1}}],["24087",{"2":{"277":1}}],["24068",{"2":{"277":1}}],["24064",{"2":{"277":1}}],["24060",{"2":{"277":1}}],["24032",{"2":{"277":1}}],["24017",{"2":{"277":1}}],["24016",{"2":{"277":1}}],["24011",{"2":{"277":1}}],["24010",{"2":{"277":1}}],["24053",{"2":{"285":1}}],["24054",{"2":{"277":1}}],["24055",{"2":{"277":1}}],["24051",{"2":{"277":1}}],["24049",{"2":{"277":1}}],["24020",{"2":{"277":1}}],["2400",{"2":{"1272":1}}],["24009",{"2":{"277":1}}],["24008",{"2":{"277":1}}],["24006",{"2":{"277":1}}],["24003",{"2":{"277":1}}],["24001",{"2":{"277":1}}],["24",{"0":{"278":1},"1":{"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1},"2":{"238":1,"413":2,"1158":1,"1527":2,"1686":1,"1744":3,"1939":1,"1952":1,"1968":6,"2018":3,"2081":1,"2295":1,"2532":3,"2548":3,"2773":1}}],["22947",{"2":{"277":1}}],["22948",{"2":{"249":1}}],["22942",{"2":{"249":1}}],["22934",{"2":{"249":1}}],["22932",{"2":{"249":1}}],["22926",{"2":{"266":1}}],["22922",{"2":{"249":1}}],["22921",{"2":{"249":1}}],["22920",{"2":{"249":1}}],["22997",{"2":{"249":1}}],["22998",{"2":{"249":1}}],["22992",{"2":{"249":1}}],["22991",{"2":{"249":1}}],["22917",{"2":{"249":1}}],["22911",{"2":{"249":1}}],["22910",{"2":{"249":1}}],["22901",{"2":{"249":1}}],["22909",{"2":{"249":1}}],["22908",{"2":{"249":1}}],["22905",{"2":{"249":1}}],["22985",{"2":{"249":1}}],["22971",{"2":{"249":1}}],["22979",{"2":{"249":1}}],["22975",{"2":{"249":1}}],["22970",{"2":{"249":1}}],["22963",{"2":{"285":1}}],["22967",{"2":{"266":1}}],["22962",{"2":{"266":1}}],["22969",{"2":{"249":1}}],["22966",{"2":{"249":1}}],["22961",{"2":{"249":1}}],["22953",{"2":{"249":1}}],["22955",{"2":{"249":1}}],["22951",{"2":{"249":1}}],["22858",{"2":{"285":1}}],["22857",{"2":{"249":1}}],["22851",{"2":{"249":1}}],["22859",{"2":{"249":1}}],["22895",{"2":{"266":1}}],["22891",{"2":{"266":1}}],["22897",{"2":{"249":1}}],["22896",{"2":{"249":1}}],["22899",{"2":{"249":1}}],["22898",{"2":{"249":1}}],["22819",{"2":{"249":1}}],["22811",{"2":{"249":1}}],["22814",{"2":{"249":1}}],["22884",{"2":{"249":1}}],["22873",{"2":{"249":1}}],["22879",{"2":{"249":1}}],["22878",{"2":{"249":1}}],["22872",{"2":{"249":1}}],["22866",{"2":{"249":1}}],["22864",{"2":{"249":1}}],["22863",{"2":{"249":1}}],["22862",{"2":{"249":1}}],["22861",{"2":{"249":1}}],["22860",{"2":{"249":1}}],["22869",{"2":{"249":1}}],["22865",{"2":{"249":1}}],["22832",{"2":{"249":1}}],["22839",{"2":{"249":1}}],["22830",{"2":{"249":1}}],["22829",{"2":{"249":1}}],["22823",{"2":{"249":1}}],["22826",{"2":{"249":1}}],["22825",{"2":{"249":1}}],["22824",{"2":{"249":1}}],["22809",{"2":{"249":1}}],["22802",{"2":{"249":1}}],["22808",{"2":{"249":1}}],["22807",{"2":{"249":1}}],["22806",{"2":{"249":1}}],["22801",{"2":{"249":1}}],["22803",{"2":{"249":1}}],["22800",{"2":{"249":1}}],["22731",{"2":{"266":1}}],["22736",{"2":{"249":1}}],["22799",{"2":{"249":1}}],["22796",{"2":{"249":1}}],["22798",{"2":{"249":1}}],["22797",{"2":{"249":1}}],["22792",{"2":{"249":1}}],["22795",{"2":{"249":1}}],["22771",{"2":{"249":1}}],["22775",{"2":{"249":1}}],["22764",{"2":{"249":1}}],["22763",{"2":{"249":1}}],["22762",{"2":{"249":1}}],["22760",{"2":{"249":1}}],["22759",{"2":{"249":1}}],["22753",{"2":{"249":1}}],["22750",{"2":{"249":1}}],["22741",{"2":{"266":1}}],["22745",{"2":{"249":1}}],["22743",{"2":{"249":1}}],["22740",{"2":{"249":1}}],["22742",{"2":{"249":1}}],["22721",{"2":{"249":1}}],["22726",{"2":{"249":1}}],["22719",{"2":{"249":1}}],["22715",{"2":{"249":1}}],["22714",{"2":{"249":1}}],["22712",{"2":{"249":1}}],["22710",{"2":{"249":1}}],["22709",{"2":{"249":1}}],["22708",{"2":{"249":1}}],["22701",{"2":{"249":1}}],["22695",{"2":{"266":1}}],["22662",{"2":{"266":1}}],["22649",{"2":{"249":1}}],["22652",{"2":{"249":1}}],["22651",{"2":{"249":1}}],["22656",{"2":{"249":1}}],["22603",{"2":{"249":1}}],["22688",{"2":{"249":1}}],["22682",{"2":{"249":1}}],["22681",{"2":{"249":1}}],["22680",{"2":{"249":1}}],["22670",{"2":{"277":1}}],["22675",{"2":{"249":1}}],["22674",{"2":{"249":1}}],["22673",{"2":{"249":1}}],["22638",{"2":{"249":1}}],["22637",{"2":{"249":1}}],["22636",{"2":{"249":1}}],["22635",{"2":{"249":1}}],["22628",{"2":{"249":1}}],["22625",{"2":{"249":1}}],["22620",{"2":{"249":1}}],["22617",{"2":{"249":1}}],["225°",{"2":{"1741":1}}],["22579",{"2":{"249":1}}],["22578",{"2":{"249":1}}],["22577",{"2":{"249":1}}],["22575",{"2":{"249":1}}],["22570",{"2":{"249":1}}],["22558",{"2":{"249":1}}],["22560",{"2":{"249":1}}],["22562",{"2":{"249":1}}],["22530",{"2":{"249":1}}],["22518",{"2":{"249":1}}],["22546",{"2":{"249":1}}],["22543",{"2":{"249":1}}],["22542",{"2":{"249":1}}],["22549",{"2":{"236":1}}],["22548",{"2":{"236":1}}],["22545",{"2":{"236":1}}],["22544",{"2":{"236":1}}],["22526",{"2":{"249":1}}],["22529",{"2":{"249":1}}],["22523",{"2":{"236":1}}],["22528",{"2":{"236":1}}],["22525",{"2":{"236":1}}],["22",{"0":{"329":1},"1":{"330":1,"331":1,"332":1,"333":1},"2":{"236":1,"249":1,"400":1,"413":2,"1492":1,"1686":1,"1744":3,"1968":4,"2018":3,"2532":3,"2548":3}}],["224x64",{"2":{"2086":1}}],["224",{"2":{"1846":4,"2082":4,"2871":1,"2878":1}}],["22459",{"2":{"308":1}}],["22489",{"2":{"277":1}}],["22480",{"2":{"236":1}}],["22474",{"2":{"249":1}}],["22471",{"2":{"236":1}}],["22419",{"2":{"249":1}}],["22497",{"2":{"236":1}}],["22437",{"2":{"236":1}}],["22435",{"2":{"236":1}}],["22434",{"2":{"236":1}}],["22436",{"2":{"236":1}}],["22469",{"2":{"236":1}}],["22446",{"2":{"236":1}}],["22444",{"2":{"236":1}}],["22448",{"2":{"236":1}}],["22445",{"2":{"236":1}}],["22423",{"2":{"236":1}}],["22401",{"2":{"249":1}}],["22403",{"2":{"236":1}}],["22400",{"2":{"236":1}}],["223",{"2":{"1947":1,"1949":1,"2286":1,"2288":1}}],["22396",{"2":{"1365":3}}],["22398",{"2":{"236":1}}],["22374",{"2":{"249":1}}],["22379",{"2":{"236":1}}],["22358",{"2":{"249":1}}],["22357",{"2":{"236":1}}],["22341",{"2":{"249":1}}],["22342",{"2":{"236":1}}],["22332",{"2":{"236":1}}],["22368",{"2":{"249":1}}],["22364",{"2":{"236":1}}],["22366",{"2":{"236":1}}],["22363",{"2":{"236":1}}],["22369",{"2":{"236":1}}],["22365",{"2":{"236":1}}],["22384",{"2":{"249":1}}],["22383",{"2":{"236":1}}],["22381",{"2":{"236":1}}],["22380",{"2":{"236":1}}],["22328",{"2":{"236":1}}],["22325",{"2":{"236":1}}],["22324",{"2":{"236":1}}],["22323",{"2":{"236":1}}],["22321",{"2":{"236":1}}],["22315",{"2":{"249":1}}],["22314",{"2":{"249":1}}],["22312",{"2":{"236":1}}],["22310",{"2":{"236":1}}],["22313",{"2":{"236":1}}],["22311",{"2":{"236":1}}],["22303",{"2":{"249":1}}],["22304",{"2":{"249":1}}],["22305",{"2":{"236":1}}],["22309",{"2":{"236":1}}],["22308",{"2":{"236":1}}],["22201",{"2":{"249":1}}],["22200",{"2":{"236":1}}],["22281",{"2":{"249":1}}],["22280",{"2":{"236":1}}],["22276",{"2":{"249":1}}],["22297",{"2":{"236":1}}],["22239",{"2":{"236":1}}],["22235",{"2":{"236":1}}],["22236",{"2":{"236":1}}],["22242",{"2":{"236":1}}],["22248",{"2":{"236":1}}],["22265",{"2":{"266":1}}],["22263",{"2":{"249":1}}],["22268",{"2":{"236":1}}],["22264",{"2":{"236":1}}],["22267",{"2":{"236":1}}],["22221",{"2":{"236":1}}],["22222",{"2":{"236":1}}],["22251",{"2":{"266":1}}],["22256",{"2":{"236":1}}],["22253",{"2":{"236":1}}],["22212",{"2":{"236":1}}],["22135",{"2":{"266":1}}],["22133",{"2":{"236":1}}],["22114",{"2":{"249":1}}],["22117",{"2":{"236":1}}],["22185",{"2":{"249":1}}],["22188",{"2":{"236":1}}],["22108",{"2":{"236":1}}],["22106",{"2":{"236":1}}],["22105",{"2":{"236":1}}],["22152",{"2":{"236":1}}],["22151",{"2":{"236":1}}],["22149",{"2":{"236":1}}],["22148",{"2":{"236":1}}],["22145",{"2":{"236":1}}],["22144",{"2":{"236":1}}],["22193",{"2":{"236":1}}],["22170",{"2":{"236":1}}],["22163",{"2":{"236":1}}],["22125",{"2":{"236":1}}],["22122",{"2":{"236":1}}],["22121",{"2":{"236":1}}],["22129",{"2":{"236":1}}],["22126",{"2":{"236":1}}],["22123",{"2":{"236":1}}],["220",{"2":{"2916":1,"2917":1}}],["22050u",{"2":{"719":1}}],["22021",{"2":{"236":1}}],["22025",{"2":{"236":1}}],["22082",{"2":{"249":1}}],["22089",{"2":{"236":1}}],["22088",{"2":{"236":1}}],["22087",{"2":{"236":1}}],["22085",{"2":{"236":1}}],["22084",{"2":{"236":1}}],["22068",{"2":{"236":1}}],["22041",{"2":{"236":1}}],["22049",{"2":{"236":1}}],["22034",{"2":{"236":1}}],["22013",{"2":{"236":1}}],["22011",{"2":{"236":1}}],["22010",{"2":{"236":1}}],["22017",{"2":{"236":1}}],["22091",{"2":{"249":1}}],["22099",{"2":{"236":1}}],["22090",{"2":{"236":1}}],["22072",{"2":{"236":1}}],["22073",{"2":{"236":1}}],["22074",{"2":{"236":1}}],["22071",{"2":{"236":1}}],["22009",{"2":{"236":1}}],["22008",{"2":{"236":1}}],["22007",{"2":{"236":1}}],["22006",{"2":{"236":1}}],["22004",{"2":{"236":1}}],["21944",{"2":{"249":1}}],["21948",{"2":{"236":1}}],["21926",{"2":{"236":1}}],["21929",{"2":{"236":1}}],["21939",{"2":{"236":2}}],["21938",{"2":{"236":1}}],["21996",{"2":{"236":1}}],["21995",{"2":{"236":1}}],["21994",{"2":{"236":1}}],["21993",{"2":{"236":1}}],["21991",{"2":{"236":1}}],["21981",{"2":{"236":1}}],["21986",{"2":{"236":1}}],["21975",{"2":{"236":1}}],["21979",{"2":{"236":1}}],["21978",{"2":{"236":1}}],["21977",{"2":{"236":1}}],["21966",{"2":{"236":1}}],["21964",{"2":{"236":1}}],["21960",{"2":{"236":1}}],["21918",{"2":{"236":1}}],["21909",{"2":{"236":1}}],["21906",{"2":{"236":1}}],["21908",{"2":{"236":1}}],["21905",{"2":{"236":1}}],["21904",{"2":{"236":1}}],["21903",{"2":{"236":1}}],["21883",{"2":{"249":1}}],["21825",{"2":{"236":1}}],["21827",{"2":{"210":1}}],["21897",{"2":{"236":1}}],["21898",{"2":{"236":1}}],["21892",{"2":{"236":1}}],["21891",{"2":{"236":1}}],["21890",{"2":{"236":1}}],["21879",{"2":{"236":1}}],["21874",{"2":{"236":1}}],["21878",{"2":{"236":1}}],["21875",{"2":{"236":1}}],["21866",{"2":{"236":1}}],["21865",{"2":{"236":1}}],["21861",{"2":{"236":1}}],["21859",{"2":{"236":1}}],["21804",{"2":{"236":1}}],["21800",{"2":{"210":1}}],["21842",{"2":{"210":1}}],["21830",{"2":{"210":1}}],["21817",{"2":{"210":1}}],["21815",{"2":{"210":1}}],["21775",{"2":{"249":1}}],["21770",{"2":{"249":1}}],["21777",{"2":{"249":1}}],["21773",{"2":{"210":1}}],["21721",{"2":{"249":1}}],["21727",{"2":{"210":1}}],["21767",{"2":{"236":1}}],["21744",{"2":{"236":1}}],["21740",{"2":{"236":1}}],["21792",{"2":{"210":1}}],["21757",{"2":{"210":1}}],["21751",{"2":{"210":1}}],["21717",{"2":{"236":1}}],["21711",{"2":{"236":1}}],["21718",{"2":{"210":1}}],["21714",{"2":{"210":1}}],["21710",{"2":{"210":1}}],["21704",{"2":{"210":1}}],["21709",{"2":{"210":1}}],["21708",{"2":{"210":1}}],["21703",{"2":{"210":1}}],["216",{"2":{"724":1,"2755":1}}],["21695",{"2":{"266":1}}],["21671",{"2":{"236":1}}],["21676",{"2":{"210":1}}],["21687",{"2":{"249":1}}],["21684",{"2":{"236":1}}],["21688",{"2":{"236":1}}],["21682",{"2":{"210":1}}],["21667",{"2":{"236":1}}],["21662",{"2":{"236":1}}],["21664",{"2":{"236":1}}],["21663",{"2":{"210":1}}],["21661",{"2":{"210":1}}],["21656",{"2":{"266":1}}],["21654",{"2":{"236":1}}],["21659",{"2":{"210":1}}],["21653",{"2":{"210":1}}],["21658",{"2":{"210":1}}],["21651",{"2":{"210":1}}],["21642",{"2":{"236":1}}],["21645",{"2":{"210":1}}],["21644",{"2":{"210":1}}],["21640",{"2":{"210":1}}],["21636",{"2":{"210":1}}],["21635",{"2":{"210":1}}],["21630",{"2":{"210":1}}],["21623",{"2":{"249":1}}],["21626",{"2":{"210":1}}],["21625",{"2":{"210":1}}],["21624",{"2":{"210":1}}],["21611",{"2":{"236":1}}],["21614",{"2":{"210":1}}],["21612",{"2":{"210":1}}],["21613",{"2":{"210":1}}],["21576",{"2":{"236":1}}],["21574",{"2":{"236":1}}],["21579",{"2":{"210":1}}],["21572",{"2":{"210":1}}],["21548",{"2":{"249":1}}],["21543",{"2":{"210":1}}],["21540",{"2":{"210":1}}],["21569",{"2":{"210":1}}],["21567",{"2":{"210":1}}],["21526",{"2":{"210":1}}],["21523",{"2":{"210":1}}],["21592",{"2":{"210":1}}],["21596",{"2":{"210":1}}],["21594",{"2":{"210":1}}],["21591",{"2":{"210":1}}],["21583",{"2":{"236":1}}],["21589",{"2":{"210":1}}],["21588",{"2":{"210":1}}],["21580",{"2":{"210":1}}],["21554",{"2":{"210":1}}],["21553",{"2":{"210":1}}],["21558",{"2":{"210":1}}],["21551",{"2":{"210":1}}],["21519",{"2":{"210":1}}],["21517",{"2":{"210":1}}],["21514",{"2":{"210":1}}],["21507",{"2":{"210":1}}],["21410",{"2":{"266":1}}],["21456",{"2":{"249":1}}],["21450",{"2":{"236":1}}],["21454",{"2":{"210":1}}],["21402",{"2":{"236":1}}],["21405",{"2":{"210":1}}],["21448",{"2":{"249":1}}],["21447",{"2":{"210":1}}],["21444",{"2":{"210":1}}],["21467",{"2":{"236":1}}],["21468",{"2":{"210":1}}],["21465",{"2":{"210":1}}],["21494",{"2":{"236":1}}],["21497",{"2":{"210":1}}],["21495",{"2":{"210":1}}],["21498",{"2":{"210":1}}],["21496",{"2":{"210":2}}],["21493",{"2":{"210":1}}],["21489",{"2":{"210":1}}],["21484",{"2":{"210":1}}],["21482",{"2":{"210":1}}],["21486",{"2":{"210":1}}],["21485",{"2":{"210":1}}],["21480",{"2":{"210":1}}],["21476",{"2":{"210":1}}],["21473",{"2":{"210":1}}],["21472",{"2":{"210":1}}],["21435",{"2":{"210":1}}],["21432",{"2":{"210":1}}],["21436",{"2":{"210":1}}],["21434",{"2":{"210":1}}],["21422",{"2":{"210":1}}],["21427",{"2":{"210":1}}],["21424",{"2":{"210":1}}],["213",{"2":{"1359":1}}],["21398",{"2":{"249":1}}],["21391",{"2":{"210":1}}],["21345",{"2":{"210":1}}],["21343",{"2":{"210":1}}],["21307",{"2":{"210":1}}],["21302",{"2":{"210":1}}],["21380",{"2":{"236":1}}],["21389",{"2":{"210":1}}],["21384",{"2":{"210":1}}],["21382",{"2":{"210":1}}],["21370",{"2":{"210":1}}],["21364",{"2":{"236":1}}],["21365",{"2":{"210":1}}],["21363",{"2":{"210":1}}],["21360",{"2":{"210":1}}],["21366",{"2":{"210":1}}],["21339",{"2":{"210":1}}],["21337",{"2":{"210":1}}],["21332",{"2":{"210":1}}],["21324",{"2":{"210":1}}],["21325",{"2":{"210":1}}],["21322",{"2":{"210":1}}],["21320",{"2":{"210":1}}],["21354",{"2":{"210":1}}],["21353",{"2":{"210":1}}],["21352",{"2":{"210":1}}],["21206",{"2":{"210":1}}],["21205",{"2":{"210":1}}],["21298",{"2":{"210":1}}],["21299",{"2":{"210":1}}],["21296",{"2":{"210":1}}],["21292",{"2":{"210":1}}],["21293",{"2":{"210":1}}],["21287",{"2":{"210":1}}],["21284",{"2":{"210":1}}],["21281",{"2":{"210":1}}],["21273",{"2":{"249":1}}],["21272",{"2":{"210":1}}],["21278",{"2":{"210":1}}],["21271",{"2":{"210":1}}],["21260",{"2":{"210":1}}],["21248",{"2":{"210":1}}],["21240",{"2":{"210":1}}],["21247",{"2":{"210":1}}],["21237",{"2":{"210":1}}],["21234",{"2":{"210":1}}],["21217",{"2":{"210":1}}],["21124",{"2":{"249":1}}],["21174",{"2":{"236":1}}],["21171",{"2":{"236":1}}],["21176",{"2":{"210":1}}],["21190",{"2":{"210":1}}],["21144",{"2":{"210":1}}],["21169",{"2":{"210":1}}],["21164",{"2":{"210":1}}],["21157",{"2":{"210":1}}],["21154",{"2":{"210":1}}],["21151",{"2":{"210":1}}],["21139",{"2":{"210":1}}],["21135",{"2":{"210":1}}],["21134",{"2":{"210":1}}],["21113",{"2":{"210":1}}],["21110",{"2":{"210":1}}],["21116",{"2":{"210":1}}],["21115",{"2":{"210":1}}],["21109",{"2":{"210":1}}],["21108",{"2":{"210":1}}],["21107",{"2":{"210":1}}],["210",{"2":{"2916":2,"2917":2,"2918":1}}],["21060",{"2":{"236":1}}],["21033",{"2":{"222":1}}],["21032",{"2":{"222":1}}],["21044",{"2":{"222":1}}],["21046",{"2":{"210":1}}],["21005",{"2":{"222":1}}],["21007",{"2":{"222":1}}],["21002",{"2":{"222":1}}],["21013",{"2":{"222":1}}],["21015",{"2":{"210":1}}],["21029",{"2":{"222":1}}],["21079",{"2":{"210":1}}],["21072",{"2":{"210":1}}],["21096",{"2":{"249":1}}],["21095",{"2":{"210":1}}],["21094",{"2":{"210":1}}],["21092",{"2":{"210":1}}],["21054",{"2":{"210":1}}],["21056",{"2":{"210":1}}],["21086",{"2":{"210":1}}],["21",{"2":{"160":1,"175":1,"191":2,"222":1,"249":1,"294":1,"381":2,"413":1,"1204":1,"1492":1,"1686":1,"1744":3,"1968":3,"2018":3,"2532":3,"2548":3}}],["25mhz",{"2":{"2682":1}}],["25k",{"2":{"1528":1}}],["25keys",{"2":{"143":5,"149":1}}],["25xx",{"2":{"746":1,"750":1}}],["25x1",{"2":{"339":1}}],["25926",{"2":{"339":1}}],["25919",{"2":{"339":1}}],["25963",{"2":{"339":1}}],["25961",{"2":{"339":1}}],["25969",{"2":{"333":1}}],["25958",{"2":{"339":1}}],["25955",{"2":{"333":1}}],["25940",{"2":{"339":1}}],["25946",{"2":{"333":1}}],["25939",{"2":{"333":1}}],["25931",{"2":{"333":1}}],["25902",{"2":{"333":1}}],["25999",{"2":{"333":1}}],["25998",{"2":{"333":1}}],["25970",{"2":{"339":1}}],["25977",{"2":{"333":1}}],["25975",{"2":{"333":1}}],["25897",{"2":{"339":1}}],["25898",{"2":{"333":1}}],["25891",{"2":{"333":1}}],["25899",{"2":{"333":1}}],["25864",{"2":{"333":1}}],["25834",{"2":{"333":1}}],["25882",{"2":{"333":1}}],["25888",{"2":{"333":1}}],["25857",{"2":{"333":1}}],["25856",{"2":{"333":1}}],["25854",{"2":{"333":1}}],["25859",{"2":{"333":1}}],["25808",{"2":{"333":1}}],["25802",{"2":{"328":1}}],["25804",{"2":{"328":1}}],["25818",{"2":{"328":1}}],["25814",{"2":{"328":1}}],["25819",{"2":{"328":1}}],["25707",{"2":{"339":1}}],["25706",{"2":{"328":1}}],["25797",{"2":{"328":1}}],["25730",{"2":{"339":1}}],["25733",{"2":{"328":1}}],["25731",{"2":{"328":1}}],["25774",{"2":{"328":1}}],["25775",{"2":{"328":1}}],["25754",{"2":{"328":1}}],["25751",{"2":{"328":1}}],["25780",{"2":{"328":1}}],["25785",{"2":{"328":1}}],["25786",{"2":{"328":1}}],["25763",{"2":{"328":1}}],["25717",{"2":{"328":1}}],["25716",{"2":{"328":1}}],["255",{"2":{"641":2,"727":1,"861":1,"926":2,"960":2,"994":2,"1028":2,"1062":2,"1096":2,"1130":2,"1164":2,"1288":4,"1533":3,"1544":2,"1846":1,"1852":1,"1884":1,"1890":1,"1892":1,"1894":1,"1939":1,"1949":2,"2082":1,"2091":3,"2096":9,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2160":3,"2162":3,"2182":2,"2185":3,"2187":1,"2198":9,"2201":2,"2202":2,"2243":1,"2254":1,"2288":1,"2380":2,"2757":20,"2776":1,"2777":3,"2857":2,"2871":4,"2877":3,"2878":5}}],["25503",{"2":{"333":1}}],["25502",{"2":{"333":1}}],["25500",{"2":{"317":1}}],["25590",{"2":{"328":1}}],["25599",{"2":{"328":1}}],["25598",{"2":{"328":1}}],["25594",{"2":{"328":1}}],["25595",{"2":{"328":1}}],["25570",{"2":{"333":1}}],["25571",{"2":{"328":1}}],["25572",{"2":{"328":1}}],["25526",{"2":{"328":1}}],["25587",{"2":{"328":1}}],["25580",{"2":{"317":1}}],["25563",{"2":{"328":1}}],["25561",{"2":{"328":1}}],["25560",{"2":{"328":1}}],["25565",{"2":{"328":1}}],["25564",{"2":{"317":1}}],["25537",{"2":{"328":1}}],["25559",{"2":{"328":1}}],["25558",{"2":{"328":1}}],["25556",{"2":{"317":1}}],["25550",{"2":{"317":1}}],["25546",{"2":{"317":1}}],["25547",{"2":{"317":1}}],["25542",{"2":{"317":1}}],["25541",{"2":{"317":1}}],["25516",{"2":{"328":1}}],["25515",{"2":{"328":1}}],["25517",{"2":{"317":1}}],["25513",{"2":{"317":1}}],["254",{"2":{"1947":1,"2286":1}}],["25407",{"2":{"333":1}}],["25408",{"2":{"317":1}}],["25477",{"2":{"317":1}}],["25471",{"2":{"317":1}}],["25475",{"2":{"317":1}}],["25492",{"2":{"328":1}}],["25497",{"2":{"317":1}}],["25498",{"2":{"317":1}}],["25494",{"2":{"317":1}}],["25493",{"2":{"317":1}}],["25491",{"2":{"317":1}}],["25467",{"2":{"328":1}}],["25469",{"2":{"317":1}}],["25468",{"2":{"317":1}}],["25462",{"2":{"317":1}}],["25453",{"2":{"328":1}}],["25458",{"2":{"317":1}}],["25459",{"2":{"317":1}}],["25456",{"2":{"317":1}}],["25452",{"2":{"317":1}}],["25450",{"2":{"317":1}}],["25431",{"2":{"328":1}}],["25436",{"2":{"317":1}}],["25438",{"2":{"317":1}}],["25433",{"2":{"317":1}}],["25430",{"2":{"317":1}}],["25437",{"2":{"317":1}}],["25422",{"2":{"328":1}}],["25423",{"2":{"317":1}}],["25429",{"2":{"317":1}}],["25428",{"2":{"317":1}}],["25421",{"2":{"317":1}}],["25415",{"2":{"328":1}}],["25417",{"2":{"317":1}}],["25414",{"2":{"317":1}}],["25488",{"2":{"317":1}}],["25489",{"2":{"317":1}}],["25487",{"2":{"317":1}}],["25486",{"2":{"317":1}}],["25481",{"2":{"317":1}}],["25444",{"2":{"317":1}}],["25442",{"2":{"317":1}}],["253",{"2":{"1947":1,"2286":1}}],["25322",{"2":{"317":1}}],["25328",{"2":{"317":1}}],["25370",{"2":{"317":1}}],["25369",{"2":{"317":1}}],["25351",{"2":{"317":1}}],["25346",{"2":{"339":1}}],["25342",{"2":{"317":1}}],["25341",{"2":{"317":1}}],["25344",{"2":{"317":1}}],["25334",{"2":{"328":1}}],["25338",{"2":{"317":1}}],["25331",{"2":{"317":1}}],["25317",{"2":{"317":1}}],["25316",{"2":{"317":1}}],["25315",{"2":{"317":1}}],["25383",{"2":{"317":1}}],["25395",{"2":{"317":1}}],["25245",{"2":{"328":1}}],["25247",{"2":{"328":1}}],["25246",{"2":{"308":1}}],["25238",{"2":{"308":1}}],["25237",{"2":{"308":1}}],["25210",{"2":{"308":1}}],["25219",{"2":{"308":1}}],["25291",{"2":{"317":1}}],["25298",{"2":{"308":1}}],["25295",{"2":{"308":1}}],["25294",{"2":{"308":1}}],["25293",{"2":{"308":1}}],["25285",{"2":{"317":1}}],["25288",{"2":{"308":1}}],["25287",{"2":{"308":1}}],["25280",{"2":{"308":1}}],["25263",{"2":{"308":1}}],["25268",{"2":{"308":1}}],["25266",{"2":{"308":1}}],["25262",{"2":{"308":1}}],["25279",{"2":{"317":1}}],["25272",{"2":{"308":1}}],["25274",{"2":{"308":1}}],["25271",{"2":{"308":1}}],["25254",{"2":{"308":1}}],["25250",{"2":{"308":1}}],["25251",{"2":{"308":1}}],["25255",{"2":{"308":1}}],["25204",{"2":{"308":1}}],["25209",{"2":{"308":1}}],["25208",{"2":{"308":1}}],["25207",{"2":{"308":1}}],["25203",{"2":{"308":1}}],["25201",{"2":{"308":1}}],["25200",{"2":{"308":1}}],["251",{"2":{"1947":1,"2286":1}}],["25152",{"2":{"339":1}}],["25157",{"2":{"308":1}}],["25168",{"2":{"328":1}}],["25160",{"2":{"317":1}}],["25166",{"2":{"308":1}}],["25169",{"2":{"308":1}}],["25198",{"2":{"328":1}}],["25194",{"2":{"308":1}}],["25191",{"2":{"308":1}}],["25193",{"2":{"308":1}}],["25190",{"2":{"308":1}}],["25199",{"2":{"308":1}}],["25146",{"2":{"308":1}}],["25142",{"2":{"308":1}}],["25149",{"2":{"308":1}}],["25141",{"2":{"308":1}}],["25116",{"2":{"308":1}}],["25111",{"2":{"308":1}}],["25189",{"2":{"308":1}}],["25181",{"2":{"308":1}}],["25182",{"2":{"308":1}}],["25187",{"2":{"308":1}}],["25184",{"2":{"308":1}}],["25175",{"2":{"308":1}}],["25178",{"2":{"308":1}}],["25176",{"2":{"308":1}}],["25173",{"2":{"308":1}}],["25171",{"2":{"308":1}}],["25135",{"2":{"308":1}}],["25121",{"2":{"308":1}}],["25129",{"2":{"308":1}}],["25125",{"2":{"308":1}}],["250ms",{"2":{"1960":1}}],["250",{"2":{"859":2,"1361":1,"1801":1,"1960":1,"1981":1,"2003":1,"2913":1}}],["25060",{"2":{"308":1}}],["25061",{"2":{"308":1}}],["25015",{"2":{"308":1}}],["25018",{"2":{"308":1}}],["25010",{"2":{"308":1}}],["25088",{"2":{"308":1}}],["25080",{"2":{"308":1}}],["25085",{"2":{"308":1}}],["25070",{"2":{"308":1}}],["25049",{"2":{"317":1}}],["25046",{"2":{"308":1}}],["25042",{"2":{"308":1}}],["25009",{"2":{"317":1}}],["25005",{"2":{"308":1}}],["25001",{"2":{"308":1}}],["25050",{"2":{"308":2}}],["25u×2uh",{"2":{"2869":1}}],["25u",{"2":{"259":1,"2799":1}}],["25",{"0":{"237":1,"267":1,"295":1},"1":{"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1},"2":{"265":1,"266":1,"413":4,"565":1,"959":1,"1162":1,"1492":1,"1527":1,"1686":1,"1744":3,"1925":1,"1968":3,"1971":2,"2003":1,"2018":3,"2086":1,"2187":1,"2379":1,"2424":3,"2532":3,"2539":1,"2548":3,"2767":1,"2790":1,"2800":12,"2869":2,"2925":1,"2927":1}}],["256kb",{"2":{"2689":1}}],["256u",{"2":{"719":2}}],["25672",{"2":{"339":1}}],["25673",{"2":{"328":1}}],["25678",{"2":{"328":1}}],["25671",{"2":{"328":1}}],["25649",{"2":{"328":1}}],["25648",{"2":{"328":1}}],["25644",{"2":{"328":1}}],["25694",{"2":{"328":1}}],["25668",{"2":{"328":1}}],["25665",{"2":{"328":1}}],["25654",{"2":{"328":1}}],["25653",{"2":{"328":1}}],["25650",{"2":{"328":1}}],["25625",{"2":{"328":1}}],["25624",{"2":{"328":1}}],["25623",{"2":{"328":1}}],["25622",{"2":{"328":1}}],["25621",{"2":{"328":1}}],["25620",{"2":{"328":1}}],["25619",{"2":{"328":1}}],["25618",{"2":{"328":1}}],["25617",{"2":{"328":1}}],["25616",{"2":{"328":1}}],["25610",{"2":{"328":1}}],["25609",{"2":{"328":1}}],["25608",{"2":{"328":1}}],["25607",{"2":{"328":1}}],["25606",{"2":{"328":1}}],["25605",{"2":{"328":1}}],["25603",{"2":{"328":1}}],["25602",{"2":{"328":1}}],["25601",{"2":{"328":1}}],["25600",{"2":{"328":1}}],["25638",{"2":{"328":1}}],["25637",{"2":{"328":1}}],["25632",{"2":{"328":1}}],["256",{"2":{"36":1,"759":1,"1300":1,"2754":2,"2755":4,"2757":1,"2758":1,"2776":1}}],["26356",{"2":{"2629":1}}],["266",{"2":{"1376":1}}],["26k7",{"2":{"924":1,"958":1,"992":1}}],["26kbps",{"2":{"570":1,"2275":1}}],["26230",{"2":{"339":1}}],["26237",{"2":{"339":1}}],["26238",{"2":{"339":1}}],["26206",{"2":{"339":1}}],["26186",{"2":{"339":1}}],["26136",{"2":{"339":1}}],["26127",{"2":{"339":1}}],["26115",{"2":{"339":1}}],["26114",{"2":{"339":1}}],["26111",{"2":{"339":1}}],["26195",{"2":{"339":1}}],["26194",{"2":{"339":1}}],["26190",{"2":{"339":1}}],["26167",{"2":{"339":1}}],["26161",{"2":{"339":1}}],["26160",{"2":{"339":1}}],["26156",{"2":{"339":1}}],["26154",{"2":{"339":1}}],["26159",{"2":{"339":1}}],["26153",{"2":{"339":1}}],["26040",{"2":{"339":1}}],["26099",{"2":{"339":1}}],["26075",{"2":{"339":1}}],["26079",{"2":{"339":1}}],["26074",{"2":{"339":1}}],["26073",{"2":{"339":1}}],["26071",{"2":{"339":1}}],["26067",{"2":{"339":1}}],["26066",{"2":{"339":1}}],["26065",{"2":{"339":1}}],["26025",{"2":{"333":1}}],["26024",{"2":{"333":1}}],["26028",{"2":{"333":1}}],["26012",{"2":{"333":1}}],["26011",{"2":{"333":1}}],["26010",{"2":{"333":1}}],["26000",{"2":{"1207":1}}],["26001",{"2":{"339":1}}],["26008",{"2":{"333":1}}],["26007",{"2":{"333":1}}],["26006",{"2":{"333":1}}],["26",{"0":{"135":1,"161":1,"192":1,"223":1,"250":1},"1":{"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1},"2":{"185":1,"279":1,"383":2,"413":6,"924":1,"958":1,"992":1,"1492":1,"1527":1,"1686":1,"1744":3,"1968":3,"2018":3,"2532":3,"2548":3,"2790":1}}],["27312",{"2":{"2587":1}}],["275ms",{"2":{"2319":1}}],["275",{"2":{"2319":1}}],["270",{"2":{"1953":1,"1954":1,"1972":2,"1985":2,"1987":2,"2051":2,"2757":1}}],["270°",{"2":{"1741":1}}],["27749e1",{"2":{"73":1}}],["27",{"0":{"66":1,"115":1,"176":1,"200":1},"1":{"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"177":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1},"2":{"88":1,"104":1,"127":1,"185":1,"413":5,"1492":1,"1686":1,"1744":3,"1968":1,"2018":3,"2532":3,"2548":3}}],["282",{"2":{"1968":2}}],["285",{"2":{"1742":2,"2768":2}}],["28672",{"2":{"1365":2,"2587":1,"2629":1}}],["280",{"2":{"1285":1}}],["28e9",{"2":{"689":1}}],["28",{"0":{"52":1,"96":1,"150":1,"211":1},"1":{"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"212":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1},"2":{"55":1,"88":1,"104":1,"127":1,"402":1,"413":5,"1492":1,"1686":1,"1744":3,"1968":2,"2018":3,"2532":3,"2548":3}}],["290",{"2":{"2768":2}}],["295",{"2":{"2239":1}}],["294",{"2":{"2239":1}}],["29k",{"2":{"1024":1,"1026":2,"1058":1,"1060":2,"1160":1,"1162":2}}],["29",{"0":{"29":1,"42":1,"78":1},"1":{"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1},"2":{"88":1,"104":1,"127":1,"413":4,"1026":1,"1060":1,"1162":1,"1492":1,"1686":1,"1744":3,"1968":2,"2018":3,"2532":3,"2548":3,"2557":1,"2558":4}}],["2",{"0":{"406":1,"408":1,"597":1,"1298":1,"1367":1,"1941":1,"2037":1,"2046":1,"2315":1,"2431":1,"2470":1,"2488":1,"2602":1,"2620":1,"2875":1},"1":{"2038":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2045":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1,"2489":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1},"2":{"27":2,"35":3,"39":1,"69":1,"114":7,"120":2,"133":2,"134":3,"172":1,"175":5,"190":1,"191":4,"210":2,"212":3,"222":7,"236":4,"249":2,"266":12,"272":2,"285":2,"307":1,"311":8,"317":1,"341":1,"354":1,"361":4,"379":3,"383":1,"402":2,"407":1,"408":1,"412":5,"434":1,"507":1,"518":1,"532":1,"546":2,"551":1,"564":2,"570":1,"581":1,"589":2,"591":1,"593":6,"599":1,"629":1,"684":1,"689":1,"693":1,"695":21,"696":1,"699":2,"701":2,"716":2,"719":2,"720":1,"726":1,"749":1,"750":1,"754":1,"755":1,"756":2,"828":2,"857":2,"859":1,"860":4,"889":2,"893":1,"921":4,"924":2,"925":2,"956":2,"958":2,"959":2,"990":2,"992":2,"993":2,"1024":2,"1027":2,"1058":2,"1061":2,"1092":4,"1095":4,"1126":4,"1129":4,"1160":2,"1163":4,"1198":1,"1201":1,"1205":1,"1207":1,"1216":2,"1252":2,"1300":1,"1303":3,"1311":2,"1329":2,"1330":1,"1357":1,"1373":1,"1395":1,"1422":1,"1441":1,"1467":1,"1470":1,"1471":1,"1485":1,"1492":1,"1503":1,"1535":1,"1538":1,"1556":1,"1590":1,"1591":1,"1625":2,"1630":3,"1655":1,"1657":1,"1661":5,"1664":1,"1665":1,"1666":1,"1667":1,"1670":1,"1679":1,"1683":1,"1684":2,"1685":6,"1686":1,"1699":1,"1702":2,"1741":2,"1744":3,"1804":3,"1839":2,"1843":2,"1846":1,"1850":1,"1920":1,"1925":32,"1933":4,"1935":1,"1937":4,"1939":1,"1941":1,"1951":1,"1953":3,"1954":1,"1968":2,"1974":1,"1983":1,"1989":1,"2012":5,"2018":3,"2037":2,"2046":3,"2048":3,"2075":3,"2076":1,"2082":1,"2088":1,"2095":1,"2096":1,"2183":6,"2185":2,"2189":4,"2190":1,"2191":1,"2198":2,"2206":1,"2207":1,"2242":1,"2252":2,"2267":2,"2275":1,"2280":2,"2296":2,"2300":1,"2301":3,"2303":19,"2315":5,"2317":1,"2318":2,"2319":1,"2322":1,"2374":1,"2377":4,"2394":1,"2401":1,"2417":1,"2424":3,"2444":2,"2450":1,"2454":6,"2455":6,"2460":1,"2488":2,"2507":1,"2510":2,"2515":2,"2518":2,"2522":9,"2528":4,"2530":4,"2532":3,"2539":32,"2540":4,"2548":3,"2557":2,"2558":4,"2560":1,"2563":1,"2600":1,"2606":1,"2632":1,"2652":1,"2674":1,"2691":2,"2721":16,"2728":1,"2732":2,"2755":2,"2765":1,"2772":1,"2776":2,"2795":16,"2796":12,"2820":1,"2825":1,"2863":1,"2869":1,"2871":3,"2872":1,"2875":6,"2877":1,"2878":4,"2880":1,"2912":2,"2919":7,"2920":9,"2921":5,"2927":1,"2929":3,"2949":1}}],["20x4",{"2":{"1697":1}}],["20kbps",{"2":{"570":1,"2275":1}}],["20899",{"2":{"222":1}}],["20895",{"2":{"222":1}}],["20893",{"2":{"222":1}}],["20892",{"2":{"222":1}}],["20891",{"2":{"222":1}}],["20897",{"2":{"222":1}}],["20889",{"2":{"222":1}}],["20888",{"2":{"222":1}}],["20887",{"2":{"222":1}}],["20886",{"2":{"222":1}}],["20885",{"2":{"222":1}}],["20884",{"2":{"222":1}}],["20882",{"2":{"222":1}}],["20881",{"2":{"222":1}}],["20880",{"2":{"222":1}}],["20879",{"2":{"222":1}}],["20878",{"2":{"222":1}}],["20877",{"2":{"222":1}}],["20876",{"2":{"222":1}}],["20875",{"2":{"222":1}}],["20874",{"2":{"222":1}}],["20873",{"2":{"222":1}}],["20872",{"2":{"222":1}}],["20871",{"2":{"222":1}}],["20870",{"2":{"222":1}}],["20863",{"2":{"236":1}}],["20869",{"2":{"222":1}}],["20867",{"2":{"222":1}}],["20866",{"2":{"222":1}}],["20865",{"2":{"222":1}}],["20864",{"2":{"222":1}}],["20861",{"2":{"222":1}}],["20860",{"2":{"222":1}}],["20857",{"2":{"236":1}}],["20859",{"2":{"222":1}}],["20858",{"2":{"222":1}}],["20855",{"2":{"222":1}}],["20854",{"2":{"222":1}}],["20853",{"2":{"222":1}}],["20851",{"2":{"222":1}}],["20850",{"2":{"222":1}}],["20849",{"2":{"222":1}}],["20848",{"2":{"222":1}}],["20847",{"2":{"222":1}}],["20845",{"2":{"222":1}}],["20844",{"2":{"222":1}}],["20843",{"2":{"222":1}}],["20842",{"2":{"222":1}}],["20835",{"2":{"222":1}}],["20834",{"2":{"222":1}}],["20833",{"2":{"222":1}}],["20832",{"2":{"222":1}}],["20831",{"2":{"222":1}}],["20830",{"2":{"222":1}}],["20836",{"2":{"222":1}}],["20828",{"2":{"285":1}}],["20829",{"2":{"222":1}}],["20827",{"2":{"222":1}}],["20825",{"2":{"222":1}}],["20824",{"2":{"222":1}}],["20822",{"2":{"222":1}}],["20821",{"2":{"222":1}}],["20820",{"2":{"222":1}}],["20819",{"2":{"222":1}}],["20818",{"2":{"222":1}}],["20816",{"2":{"222":1}}],["20814",{"2":{"222":1}}],["20813",{"2":{"222":1}}],["20812",{"2":{"222":1}}],["20810",{"2":{"222":1}}],["20806",{"2":{"222":1}}],["20808",{"2":{"222":1}}],["20805",{"2":{"222":1}}],["20804",{"2":{"222":1}}],["20809",{"2":{"222":1}}],["20807",{"2":{"222":1}}],["20802",{"2":{"222":1}}],["20801",{"2":{"222":1}}],["20800",{"2":{"222":1}}],["209",{"2":{"251":1}}],["20981",{"2":{"222":1}}],["20949",{"2":{"222":1}}],["20962",{"2":{"222":1}}],["20960",{"2":{"222":1}}],["20969",{"2":{"222":1}}],["20953",{"2":{"236":1}}],["20958",{"2":{"222":1}}],["20957",{"2":{"222":1}}],["20956",{"2":{"222":1}}],["20931",{"2":{"222":1}}],["20932",{"2":{"222":1}}],["20930",{"2":{"222":1}}],["20924",{"2":{"222":1}}],["20923",{"2":{"222":1}}],["20929",{"2":{"222":1}}],["20928",{"2":{"222":1}}],["20927",{"2":{"222":1}}],["20926",{"2":{"222":1}}],["20921",{"2":{"222":1}}],["20920",{"2":{"222":1}}],["20915",{"2":{"222":1}}],["20919",{"2":{"222":1}}],["20918",{"2":{"222":1}}],["20917",{"2":{"222":1}}],["20913",{"2":{"222":1}}],["20912",{"2":{"222":1}}],["20908",{"2":{"222":1}}],["20907",{"2":{"222":1}}],["20906",{"2":{"222":1}}],["20901",{"2":{"222":1}}],["20900",{"2":{"222":1}}],["20998",{"2":{"222":1}}],["20996",{"2":{"210":1}}],["20992",{"2":{"210":1}}],["20799",{"2":{"222":1}}],["20791",{"2":{"222":1}}],["20790",{"2":{"222":1}}],["20789",{"2":{"222":1}}],["20788",{"2":{"222":1}}],["20787",{"2":{"222":1}}],["20786",{"2":{"222":1}}],["20785",{"2":{"222":1}}],["20784",{"2":{"222":1}}],["20783",{"2":{"222":1}}],["20782",{"2":{"222":1}}],["20781",{"2":{"222":1}}],["20779",{"2":{"222":1}}],["20778",{"2":{"222":1}}],["20777",{"2":{"222":1}}],["20776",{"2":{"222":1}}],["20775",{"2":{"222":1}}],["20774",{"2":{"222":1}}],["20773",{"2":{"222":1}}],["20770",{"2":{"222":1}}],["20765",{"2":{"222":1}}],["20764",{"2":{"222":1}}],["20763",{"2":{"222":1}}],["20761",{"2":{"210":1}}],["20756",{"2":{"222":1}}],["20755",{"2":{"222":1}}],["20754",{"2":{"222":1}}],["20753",{"2":{"222":1}}],["20752",{"2":{"222":1}}],["20751",{"2":{"222":1}}],["20750",{"2":{"222":1}}],["20749",{"2":{"222":1}}],["20748",{"2":{"222":1}}],["20747",{"2":{"222":1}}],["20746",{"2":{"222":1}}],["20745",{"2":{"222":1}}],["20744",{"2":{"222":1}}],["20743",{"2":{"222":1}}],["20742",{"2":{"222":1}}],["20741",{"2":{"222":1}}],["20740",{"2":{"222":1}}],["20732",{"2":{"236":1}}],["20733",{"2":{"222":1}}],["20739",{"2":{"222":1}}],["20738",{"2":{"222":1}}],["20737",{"2":{"222":1}}],["20736",{"2":{"222":1}}],["20735",{"2":{"222":1}}],["20731",{"2":{"222":1}}],["20734",{"2":{"222":1}}],["20723",{"2":{"222":1}}],["20728",{"2":{"222":1}}],["20727",{"2":{"222":1}}],["20726",{"2":{"222":1}}],["20725",{"2":{"222":1}}],["20724",{"2":{"222":1}}],["20722",{"2":{"222":1}}],["20720",{"2":{"222":1}}],["20719",{"2":{"222":1}}],["20718",{"2":{"222":1}}],["20717",{"2":{"222":1}}],["20716",{"2":{"222":1}}],["20715",{"2":{"222":1}}],["20714",{"2":{"222":1}}],["20713",{"2":{"222":1}}],["20712",{"2":{"222":1}}],["20711",{"2":{"222":1}}],["20710",{"2":{"222":1}}],["20708",{"2":{"222":1}}],["20706",{"2":{"222":1}}],["20703",{"2":{"222":1}}],["20699",{"2":{"222":1}}],["20698",{"2":{"222":1}}],["20697",{"2":{"222":1}}],["20696",{"2":{"222":1}}],["20695",{"2":{"222":1}}],["20694",{"2":{"222":1}}],["20693",{"2":{"222":1}}],["20692",{"2":{"222":1}}],["20691",{"2":{"222":1}}],["20689",{"2":{"222":1}}],["20688",{"2":{"222":1}}],["20685",{"2":{"222":1}}],["20684",{"2":{"222":1}}],["20682",{"2":{"222":1}}],["20681",{"2":{"222":1}}],["20680",{"2":{"222":1}}],["2067",{"2":{"689":1}}],["20670",{"2":{"222":1}}],["20679",{"2":{"222":1}}],["20678",{"2":{"222":1}}],["20677",{"2":{"222":1}}],["20676",{"2":{"222":1}}],["20675",{"2":{"222":1}}],["20672",{"2":{"222":1}}],["20671",{"2":{"222":1}}],["20669",{"2":{"222":2}}],["20667",{"2":{"222":1}}],["20666",{"2":{"222":1}}],["20665",{"2":{"222":1}}],["20663",{"2":{"222":1}}],["20662",{"2":{"222":1}}],["20661",{"2":{"222":1}}],["20660",{"2":{"222":1}}],["20653",{"2":{"222":1}}],["20659",{"2":{"222":1}}],["20658",{"2":{"222":1}}],["20657",{"2":{"222":1}}],["20651",{"2":{"222":1}}],["20633",{"2":{"222":1}}],["20634",{"2":{"222":1}}],["20639",{"2":{"222":1}}],["20636",{"2":{"222":1}}],["20635",{"2":{"222":1}}],["20638",{"2":{"222":1}}],["20629",{"2":{"222":1}}],["20628",{"2":{"222":1}}],["20622",{"2":{"222":1}}],["20621",{"2":{"222":1}}],["20620",{"2":{"222":1}}],["20623",{"2":{"222":1}}],["20619",{"2":{"222":1}}],["20614",{"2":{"222":1}}],["20613",{"2":{"222":1}}],["20612",{"2":{"222":1}}],["20611",{"2":{"222":1}}],["20610",{"2":{"222":1}}],["20604",{"2":{"222":1}}],["20600",{"2":{"222":1}}],["20645",{"2":{"249":1}}],["20648",{"2":{"222":1}}],["20640",{"2":{"222":1}}],["20642",{"2":{"222":1}}],["20646",{"2":{"210":1}}],["201",{"2":{"2916":1}}],["20101",{"2":{"266":1}}],["20188",{"2":{"222":1}}],["20183",{"2":{"222":1}}],["20148",{"2":{"222":1}}],["20168",{"2":{"222":1}}],["20167",{"2":{"222":1}}],["20113",{"2":{"222":1}}],["20110",{"2":{"222":1}}],["2017",{"2":{"381":2,"2432":1,"2464":3}}],["20177",{"2":{"222":1}}],["20172",{"2":{"222":1}}],["2015",{"2":{"1343":1,"2464":1}}],["20157",{"2":{"222":1}}],["20156",{"2":{"222":1}}],["20155",{"2":{"222":1}}],["20159",{"2":{"222":1}}],["20154",{"2":{"222":1}}],["20150",{"2":{"222":1}}],["20191",{"2":{"222":1}}],["20194",{"2":{"222":1}}],["20192",{"2":{"222":1}}],["2019",{"0":{"0":1,"1320":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1},"2":{"55":2,"134":1,"413":1}}],["20405",{"2":{"266":1}}],["20402",{"2":{"210":1}}],["20456",{"2":{"222":1}}],["20454",{"2":{"222":1}}],["20410",{"2":{"236":1}}],["20411",{"2":{"222":1}}],["20417",{"2":{"222":1}}],["20412",{"2":{"222":1}}],["20499",{"2":{"222":1}}],["20498",{"2":{"222":1}}],["20496",{"2":{"222":1}}],["20495",{"2":{"222":1}}],["20494",{"2":{"222":1}}],["20491",{"2":{"222":1}}],["20490",{"2":{"222":1}}],["20480",{"2":{"2508":1}}],["2048",{"2":{"754":1,"757":3}}],["20489",{"2":{"222":1}}],["20488",{"2":{"222":1}}],["20487",{"2":{"222":1}}],["20481",{"2":{"210":1}}],["20475",{"2":{"222":1}}],["20473",{"2":{"222":1}}],["20478",{"2":{"222":1}}],["20477",{"2":{"222":1}}],["20474",{"2":{"222":1}}],["20470",{"2":{"222":1}}],["20468",{"2":{"222":1}}],["20463",{"2":{"222":1}}],["20443",{"2":{"222":1}}],["20442",{"2":{"222":1}}],["20440",{"2":{"222":1}}],["20433",{"2":{"222":1}}],["20432",{"2":{"222":1}}],["20439",{"2":{"222":1}}],["20438",{"2":{"222":1}}],["20436",{"2":{"222":1}}],["20430",{"2":{"222":1}}],["20427",{"2":{"236":1}}],["20422",{"2":{"222":1}}],["20423",{"2":{"222":1}}],["205",{"2":{"1685":1,"2916":1,"2917":1,"2918":1}}],["20524",{"2":{"222":1}}],["20599",{"2":{"222":1}}],["20598",{"2":{"222":1}}],["20597",{"2":{"222":1}}],["20596",{"2":{"222":1}}],["20595",{"2":{"222":1}}],["20594",{"2":{"222":1}}],["20593",{"2":{"222":1}}],["20592",{"2":{"222":1}}],["20588",{"2":{"222":1}}],["20586",{"2":{"222":1}}],["20585",{"2":{"222":1}}],["20583",{"2":{"222":1}}],["20580",{"2":{"222":1}}],["20584",{"2":{"222":1}}],["20577",{"2":{"222":1}}],["20571",{"2":{"222":1}}],["20570",{"2":{"222":1}}],["20572",{"2":{"222":1}}],["20569",{"2":{"222":1}}],["20568",{"2":{"222":1}}],["20567",{"2":{"222":1}}],["20566",{"2":{"222":1}}],["20565",{"2":{"222":1}}],["20564",{"2":{"222":1}}],["20563",{"2":{"222":1}}],["20562",{"2":{"222":1}}],["20561",{"2":{"222":1}}],["20560",{"2":{"222":1}}],["20558",{"2":{"222":1}}],["20555",{"2":{"222":1}}],["20554",{"2":{"222":1}}],["20553",{"2":{"222":1}}],["20552",{"2":{"222":1}}],["20549",{"2":{"222":1}}],["20548",{"2":{"222":1}}],["20547",{"2":{"222":1}}],["20546",{"2":{"222":1}}],["20541",{"2":{"222":1}}],["20515",{"2":{"222":1}}],["20519",{"2":{"222":1}}],["20518",{"2":{"222":1}}],["20516",{"2":{"222":1}}],["20517",{"2":{"210":1}}],["20508",{"2":{"222":1}}],["20504",{"2":{"222":1}}],["20500",{"2":{"222":1}}],["20534",{"2":{"210":1}}],["20367",{"2":{"222":1}}],["20365",{"2":{"222":1}}],["20356",{"2":{"222":1}}],["20350",{"2":{"222":1}}],["20348",{"2":{"222":1}}],["20349",{"2":{"222":1}}],["20341",{"2":{"222":1}}],["20340",{"2":{"222":1}}],["20347",{"2":{"222":1}}],["20330",{"2":{"317":1}}],["20339",{"2":{"222":1}}],["20337",{"2":{"222":1}}],["20334",{"2":{"222":2}}],["20331",{"2":{"222":1}}],["20325",{"2":{"222":1}}],["20326",{"2":{"222":1}}],["20321",{"2":{"222":1}}],["20328",{"2":{"222":1}}],["20320",{"2":{"222":1}}],["20397",{"2":{"222":1}}],["20398",{"2":{"222":1}}],["20395",{"2":{"210":1}}],["20383",{"2":{"222":1}}],["20381",{"2":{"222":1}}],["20389",{"2":{"210":1}}],["20315",{"2":{"236":1}}],["20311",{"2":{"222":1}}],["20317",{"2":{"222":1}}],["20316",{"2":{"222":1}}],["20310",{"2":{"222":1}}],["20314",{"2":{"222":1}}],["20313",{"2":{"222":1}}],["20312",{"2":{"222":1}}],["20308",{"2":{"222":1}}],["20303",{"2":{"222":1}}],["20300",{"2":{"222":1}}],["200u",{"2":{"2700":1}}],["20043e64",{"2":{"2387":1}}],["2004a",{"2":{"1697":1}}],["200ms",{"2":{"1959":1,"2317":1,"2910":1,"2915":1,"2920":1,"2921":1}}],["200",{"2":{"561":1,"564":4,"1801":1,"1967":1,"1976":2,"2003":1,"2091":2,"2185":1,"2191":1,"2291":1,"2454":1,"2731":2,"2854":2,"2910":1,"2916":1,"2917":2,"2918":1,"2931":1}}],["20059",{"2":{"236":1}}],["20056",{"2":{"222":1}}],["20097",{"2":{"222":1}}],["20092",{"2":{"222":1}}],["20083",{"2":{"222":1}}],["20084",{"2":{"222":1}}],["20078",{"2":{"222":1}}],["20075",{"2":{"222":1}}],["20079",{"2":{"222":1}}],["20020",{"2":{"222":1}}],["20019",{"2":{"222":1}}],["20013",{"2":{"222":1}}],["20061",{"2":{"222":1}}],["20034",{"2":{"222":1}}],["20033",{"2":{"222":1}}],["20030",{"2":{"222":1}}],["2003",{"2":{"116":1}}],["2000000",{"2":{"1967":1,"1983":1}}],["20000",{"2":{"222":1,"1207":1}}],["20003",{"2":{"222":1}}],["20001",{"2":{"222":1}}],["20006",{"2":{"222":1}}],["20004",{"2":{"222":1}}],["2000th",{"2":{"116":1}}],["2000",{"0":{"116":1},"2":{"570":1,"1971":1,"1982":1,"1983":1,"1996":1,"2278":1,"2466":1,"2880":1}}],["2026",{"0":{"329":1,"334":1},"1":{"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1},"2":{"400":2,"401":1,"402":7,"413":2}}],["20262",{"2":{"222":1}}],["20273",{"2":{"277":1}}],["20274",{"2":{"222":1}}],["20292",{"2":{"222":1}}],["20297",{"2":{"222":1}}],["20293",{"2":{"222":1}}],["20290",{"2":{"222":1}}],["20289",{"2":{"222":1}}],["2025",{"0":{"286":1,"295":1,"309":1,"318":1},"1":{"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1},"2":{"307":1,"400":1,"402":1,"413":4,"1390":1,"1405":1}}],["20253",{"2":{"222":1}}],["20255",{"2":{"210":1}}],["2024",{"0":{"237":1,"250":1,"267":1,"278":1},"1":{"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1},"2":{"249":1,"251":1,"265":1,"268":1,"279":1,"413":4,"2567":1,"2732":2}}],["20241124",{"2":{"403":1}}],["20241",{"2":{"222":1}}],["20248",{"2":{"222":1}}],["20243",{"2":{"222":1}}],["20234",{"2":{"222":1}}],["20238",{"2":{"222":1}}],["20237",{"2":{"222":1}}],["20236",{"2":{"222":1}}],["20235",{"2":{"222":1}}],["20230",{"2":{"210":1}}],["2023",{"0":{"192":1,"200":1,"211":1,"223":1},"1":{"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"212":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1},"2":{"254":1,"413":4}}],["20220",{"2":{"236":1}}],["2022",{"0":{"135":1,"150":1,"161":1,"176":1},"1":{"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"177":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1},"2":{"185":2,"312":1,"383":2,"413":4,"2508":17}}],["20218",{"2":{"222":1}}],["20211",{"2":{"222":1}}],["2021",{"0":{"66":1,"78":1,"96":1,"115":1},"1":{"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1},"2":{"88":3,"104":3,"114":2,"127":3,"413":4}}],["20204",{"2":{"222":1}}],["20203",{"2":{"222":1}}],["2020",{"0":{"9":1,"29":1,"42":1,"52":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1},"2":{"55":2,"413":4,"1287":2}}],["20",{"2":{"39":1,"69":1,"111":1,"134":1,"413":1,"421":5,"566":1,"695":1,"1208":2,"1303":1,"1390":1,"1405":1,"1492":1,"1686":5,"1744":3,"1935":1,"1937":1,"1953":1,"1968":3,"1974":1,"1980":1,"2018":3,"2187":3,"2424":2,"2508":1,"2532":3,"2548":3,"2757":1,"2767":3,"2871":1,"2878":1,"2922":1}}],["jdk",{"2":{"2656":1}}],["jre",{"2":{"2656":1}}],["jris75",{"2":{"2567":1}}],["jx",{"2":{"2417":1}}],["jerky",{"2":{"1936":1,"2040":1}}],["jels60v2",{"2":{"210":1}}],["jellybean",{"2":{"114":1,"199":1,"210":1,"285":1,"2085":3,"2894":1}}],["j8",{"2":{"1472":1}}],["jkl",{"2":{"1622":1}}],["jk1",{"2":{"328":1}}],["jk",{"2":{"266":1,"1605":4,"1622":1}}],["jkeys",{"2":{"183":1,"222":2}}],["jm60",{"2":{"241":2}}],["jig",{"2":{"2299":1}}],["jittery",{"2":{"1986":1}}],["jian",{"2":{"236":1}}],["jis",{"0":{"1358":1},"2":{"210":1,"1346":2,"1358":1,"2515":9}}],["jisplit89",{"2":{"143":2}}],["jb",{"2":{"222":1}}],["jf",{"2":{"222":1,"249":1}}],["jsmith",{"2":{"2714":2}}],["jsjson",{"2":{"1968":1}}],["js",{"2":{"386":1,"1744":32,"1749":1,"1968":1,"2057":1,"2532":32}}],["jscotto",{"2":{"199":1,"205":5,"210":1}}],["json\`",{"2":{"456":1}}],["json>",{"2":{"429":1,"430":1,"2595":1}}],["json2c",{"0":{"438":1},"2":{"222":2,"438":1,"2584":1}}],["jsons",{"2":{"114":1}}],["jsonschema",{"2":{"76":1,"114":1,"160":1,"175":2,"210":1,"344":1,"666":1,"668":2,"2851":1}}],["json",{"0":{"120":1,"262":1,"379":1,"436":1,"617":1,"667":1,"1441":1,"1630":1,"2453":2,"2606":1,"2716":1,"2795":1,"2851":1},"1":{"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"1442":1,"1443":1,"1444":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2852":1,"2853":1,"2854":1,"2855":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2861":1,"2862":1,"2863":1,"2864":1,"2865":1,"2866":1,"2867":1,"2868":1,"2869":1,"2870":1,"2871":1,"2872":1,"2873":1,"2874":1,"2875":1,"2876":1,"2877":1,"2878":1,"2879":1,"2880":1,"2881":1,"2882":1,"2883":1},"2":{"70":32,"73":1,"75":1,"76":6,"109":1,"110":1,"111":1,"112":1,"114":5,"120":3,"132":2,"134":3,"141":1,"149":1,"168":4,"173":1,"175":8,"184":3,"191":2,"198":1,"199":5,"201":2,"210":1,"212":5,"222":22,"224":2,"232":1,"236":10,"238":1,"249":27,"262":2,"266":30,"277":3,"285":1,"293":1,"303":2,"305":1,"306":1,"308":1,"314":1,"315":1,"328":1,"333":4,"338":2,"354":1,"369":2,"378":1,"379":1,"380":5,"383":4,"429":3,"433":4,"436":6,"437":2,"439":1,"443":2,"447":4,"448":3,"449":3,"450":2,"452":2,"453":2,"463":4,"500":2,"555":3,"578":1,"580":1,"581":3,"584":1,"585":1,"586":2,"588":3,"589":2,"592":1,"600":5,"617":2,"664":1,"665":3,"666":1,"667":1,"668":1,"669":4,"670":3,"672":1,"673":1,"681":1,"1289":1,"1390":1,"1403":2,"1405":1,"1407":1,"1433":1,"1441":2,"1627":3,"1628":4,"1630":4,"2039":1,"2044":3,"2057":1,"2403":1,"2414":1,"2432":3,"2450":6,"2451":2,"2453":3,"2454":1,"2567":16,"2584":2,"2590":1,"2595":2,"2606":2,"2607":5,"2608":1,"2609":1,"2610":4,"2669":2,"2673":2,"2674":2,"2716":1,"2717":2,"2718":1,"2719":2,"2720":1,"2721":1,"2728":9,"2794":1,"2795":10,"2796":3,"2797":2,"2800":2,"2851":4,"2854":1,"2869":2,"2871":1,"2872":1,"2877":1,"2878":1,"2885":2,"2908":1,"2927":2,"2938":1}}],["jtagen",{"2":{"1372":1}}],["jtag",{"0":{"1372":1},"2":{"160":1,"1372":4,"2498":4,"2503":1,"2818":1}}],["jnao",{"2":{"143":2}}],["jolly",{"2":{"2508":1}}],["jonasfasler",{"2":{"2425":1}}],["jones",{"2":{"210":1}}],["john",{"2":{"1523":3,"1605":2,"2714":1}}],["joint",{"2":{"2427":3,"2428":1}}],["joints",{"2":{"2425":2,"2428":1,"2434":3}}],["join",{"2":{"544":1,"668":1,"672":1,"2427":1,"2504":1}}],["job",{"0":{"370":1,"371":1,"372":1,"380":1,"582":1,"583":1,"584":1},"2":{"367":3,"369":1,"370":2,"380":1,"381":1,"382":2,"580":2,"581":5,"582":1,"583":1,"584":1,"588":1,"1537":1,"2609":1}}],["jobs>",{"2":{"429":2,"430":2}}],["jobs",{"2":{"366":4,"429":3,"455":1,"469":1,"579":1,"585":1,"2607":1}}],["joshajohnson",{"2":{"241":2}}],["jopr",{"2":{"175":1}}],["journey",{"2":{"133":1}}],["joysticks",{"2":{"39":1,"118":2,"277":1,"1968":1}}],["joystick",{"0":{"1738":1,"1746":1,"1748":1,"1750":1,"1751":1,"1753":1,"1755":1,"1758":1,"1760":1,"1968":1,"2532":1},"1":{"1739":1,"1740":1,"1741":1,"1742":1,"1743":1,"1744":1,"1745":1,"1746":1,"1747":2,"1748":1,"1749":2,"1750":1,"1751":1,"1752":2,"1753":1,"1754":2,"1755":1,"1756":2,"1757":2,"1758":1,"1759":2,"1760":1,"1761":2},"2":{"39":7,"63":1,"114":1,"118":1,"149":1,"160":2,"167":5,"172":1,"175":4,"199":1,"231":3,"236":1,"249":3,"285":1,"1738":2,"1739":2,"1740":3,"1741":11,"1742":7,"1743":8,"1744":32,"1746":1,"1747":2,"1750":1,"1968":21,"2532":33,"2941":1}}],["james",{"2":{"2942":1}}],["japan",{"2":{"1346":1}}],["japanese",{"2":{"191":1,"1358":1,"2885":1,"2887":3}}],["jacks",{"2":{"2263":1,"2265":1}}],["jackhumbert",{"2":{"684":1,"1527":1}}],["jack",{"2":{"684":1,"1343":3,"1463":3,"1468":1}}],["jacky",{"2":{"67":3,"72":1,"218":4,"222":2}}],["jan",{"2":{"522":1,"523":1,"524":2}}],["jane",{"2":{"122":2,"134":1}}],["java",{"0":{"391":1,"2656":1},"2":{"391":1,"2057":1,"2653":1,"2656":3}}],["jazz",{"2":{"294":2}}],["jay60",{"2":{"222":1}}],["jaykeeb",{"2":{"205":1,"218":1}}],["ja",{"2":{"199":1}}],["jj50",{"2":{"102":2,"253":2,"266":1}}],["jj4x4",{"2":{"102":2}}],["jj40",{"2":{"102":2,"253":2,"266":1}}],["j",{"2":{"65":1,"207":2,"222":1,"249":2,"266":2,"379":1,"422":1,"429":4,"430":2,"455":2,"469":2,"589":2,"1605":1,"1622":2,"2068":1,"2317":1,"2330":4,"2332":2,"2510":3,"2522":3,"2552":2,"2563":1,"2913":1,"2926":3}}],["jurisdiction",{"2":{"2735":1}}],["judged",{"2":{"2272":2}}],["judgment",{"2":{"414":1}}],["jumbo",{"0":{"1953":1}}],["jumpers",{"2":{"2508":1}}],["jumper",{"2":{"2399":2,"2401":2,"2404":2,"2483":1}}],["jumping",{"2":{"651":1,"1589":1}}],["jump",{"2":{"65":1,"74":1,"149":2,"175":1,"191":1,"610":1,"651":1,"652":3,"653":2,"654":2,"1490":1,"1589":1,"1591":2,"1625":2,"1948":2,"2068":1,"2669":2,"2685":2}}],["jumps",{"2":{"39":1}}],["jun",{"2":{"1343":1,"2412":1}}],["junco",{"2":{"253":2}}],["junk",{"2":{"149":1,"222":1}}],["justifiable",{"2":{"2726":1}}],["justification",{"2":{"2726":3,"2728":1}}],["just60",{"2":{"143":2}}],["just",{"0":{"604":1,"1320":1},"2":{"5":1,"35":1,"116":1,"172":2,"188":1,"233":1,"245":1,"320":1,"393":1,"455":1,"545":1,"600":1,"618":1,"767":1,"1247":2,"1268":1,"1315":1,"1338":1,"1354":1,"1372":1,"1417":1,"1422":2,"1425":1,"1427":1,"1439":1,"1440":1,"1446":2,"1450":1,"1470":1,"1472":1,"1473":1,"1477":1,"1485":1,"1492":1,"1517":1,"1524":1,"1528":1,"1534":1,"1537":1,"1589":1,"1605":1,"1609":1,"1612":1,"1616":1,"1618":1,"1619":1,"1663":1,"1681":1,"1779":1,"1786":2,"1787":1,"1802":2,"1923":1,"1953":1,"1984":1,"1985":2,"2097":1,"2190":1,"2260":1,"2265":2,"2274":1,"2308":1,"2309":2,"2317":1,"2320":1,"2325":1,"2375":1,"2417":1,"2423":1,"2429":2,"2434":1,"2504":1,"2561":1,"2567":14,"2569":1,"2590":1,"2603":1,"2613":1,"2616":1,"2667":1,"2669":1,"2714":1,"2730":1,"2741":1,"2756":1,"2784":1,"2795":1,"2912":1,"2914":1,"2931":1,"2944":1,"2945":1,"2950":1}}],["jpg",{"2":{"684":1,"2728":1}}],["jps",{"2":{"26":1}}],["jp",{"0":{"25":1},"1":{"26":1},"2":{"25":1,"26":4}}],["9a",{"2":{"2238":1,"2240":1,"2242":1,"2244":1}}],["95",{"2":{"1686":1,"2587":1,"2768":2}}],["9501",{"2":{"41":1}}],["9b5c",{"2":{"380":1,"381":1}}],["91",{"2":{"1686":1}}],["910",{"2":{"222":1}}],["9126",{"2":{"199":1}}],["9174",{"2":{"38":1}}],["9171",{"2":{"22":1}}],["9",{"2":{"114":1,"152":1,"222":1,"249":1,"266":3,"308":1,"328":1,"379":1,"413":1,"422":2,"514":1,"589":2,"693":1,"695":4,"863":1,"928":1,"962":1,"996":1,"1132":1,"1396":1,"1433":1,"1434":1,"1492":1,"1514":1,"1527":1,"1593":1,"1625":3,"1686":1,"1695":1,"1744":3,"1925":3,"1968":1,"2018":3,"2183":1,"2189":3,"2191":2,"2246":1,"2259":4,"2260":3,"2291":1,"2296":1,"2301":1,"2303":4,"2387":4,"2510":2,"2515":4,"2518":2,"2522":8,"2532":3,"2539":3,"2548":3,"2563":1,"2790":1,"2795":2,"2796":1,"2882":2}}],["967",{"2":{"2239":1}}],["9600",{"2":{"1272":1,"2298":1}}],["9603",{"2":{"74":1}}],["96",{"2":{"222":1,"954":1,"1686":1,"1845":1,"1968":1}}],["9657",{"2":{"114":1}}],["92",{"2":{"1686":1,"1968":1}}],["9207",{"2":{"689":1,"2499":1}}],["9203",{"2":{"689":1,"2499":1}}],["9205",{"2":{"114":1,"689":1,"2499":1}}],["9284",{"2":{"40":1}}],["97",{"2":{"1333":1,"1686":1}}],["9700",{"2":{"64":1}}],["9703",{"2":{"63":1}}],["9738",{"2":{"39":1}}],["93",{"2":{"1686":1}}],["9335",{"2":{"92":1}}],["9308",{"2":{"41":1}}],["9356",{"2":{"40":1}}],["9355",{"2":{"40":1}}],["9310",{"2":{"40":1}}],["9315",{"2":{"40":1}}],["9318",{"2":{"36":1}}],["98",{"2":{"1686":1}}],["9800",{"0":{"1967":1},"2":{"118":1,"1967":2}}],["9824",{"2":{"114":1}}],["9826",{"2":{"63":1}}],["9842",{"2":{"93":1}}],["9832",{"2":{"40":1}}],["9864",{"2":{"39":1}}],["9856",{"2":{"39":1}}],["94",{"2":{"1686":1}}],["9404",{"2":{"114":1}}],["9485",{"2":{"73":1}}],["9487",{"2":{"39":1}}],["9471",{"2":{"39":1}}],["99",{"2":{"422":1,"1686":1,"2291":1,"2882":1,"2937":1}}],["9973",{"2":{"270":1,"277":1}}],["9952",{"2":{"65":1}}],["9940",{"2":{"63":1}}],["9949",{"2":{"39":1}}],["9905",{"2":{"41":1}}],["9964",{"2":{"39":1}}],["9987",{"2":{"38":1}}],["90°",{"2":{"1413":1,"1741":1}}],["906",{"2":{"1162":2}}],["9054",{"2":{"40":1}}],["9055",{"2":{"40":1}}],["9023",{"2":{"40":1}}],["9020",{"2":{"39":1}}],["9001",{"2":{"1612":1}}],["900",{"2":{"1026":2,"1060":2,"1285":1,"1742":2}}],["900k",{"2":{"647":1}}],["9005",{"2":{"40":1}}],["900000",{"2":{"647":1}}],["9000",{"2":{"13":1,"35":1}}],["9019",{"2":{"16":1}}],["90",{"0":{"1953":1},"2":{"8":1,"1493":1,"1686":1,"1952":2,"1953":3,"1954":2,"1972":2,"1985":2,"1987":2,"2051":2,"2387":1,"2757":1}}],["zxcvm",{"2":{"2887":3}}],["zuoya",{"2":{"2567":1}}],["zr",{"2":{"2301":3}}],["zdst",{"2":{"2295":1}}],["zle12864b",{"2":{"2283":1}}],["zone",{"2":{"2640":1}}],["zolentech",{"2":{"2283":1}}],["zoom",{"2":{"1971":9}}],["zodiark",{"2":{"210":1}}],["z0",{"2":{"1433":1,"1434":1}}],["zshrc",{"2":{"509":1}}],["zsh",{"2":{"507":1,"509":1}}],["zsa",{"0":{"5":1},"2":{"74":1,"241":1,"249":1,"270":1,"277":3}}],["zk3mod",{"2":{"249":1}}],["z34",{"2":{"241":2}}],["z12",{"2":{"241":2}}],["z150",{"2":{"27":2,"159":2,"160":1}}],["zadig",{"0":{"685":1},"1":{"686":1,"687":1,"688":1,"689":1},"2":{"240":3,"685":1,"686":2,"687":3,"688":1,"689":2,"1318":2}}],["zwag75",{"2":{"222":1}}],["z70ultra",{"2":{"222":1,"253":2}}],["ztboards",{"2":{"222":2}}],["zip",{"2":{"367":2}}],["zigotica",{"2":{"241":2,"249":1}}],["zicodia",{"2":{"222":1}}],["zinc",{"0":{"22":1},"2":{"22":1,"143":6}}],["zenkaku",{"2":{"2515":1}}],["zeal60",{"2":{"1591":1}}],["zeus",{"2":{"222":1}}],["zed65",{"2":{"210":1,"249":1}}],["zeroes",{"2":{"222":1,"1990":1}}],["zero",{"2":{"195":1,"210":1,"236":1,"429":1,"720":2,"750":1,"1368":1,"1422":1,"1507":1,"1538":2,"1539":1,"1992":1,"2014":1,"2303":1,"2379":1,"2652":1,"2685":1,"2765":1,"2767":2,"2772":1,"2774":1,"2889":1}}],["zcar",{"2":{"191":1}}],["zvecr",{"2":{"166":1,"188":1,"266":1}}],["z",{"0":{"2782":1,"2784":1},"1":{"2783":1,"2785":1},"2":{"152":1,"175":1,"249":1,"257":1,"258":1,"259":2,"266":1,"277":1,"379":1,"589":2,"761":1,"1428":4,"1508":1,"1513":1,"1527":1,"1538":1,"1593":1,"1600":1,"1602":1,"1622":1,"1625":1,"1679":1,"1691":1,"1740":1,"1766":1,"1787":1,"1974":1,"2065":7,"2069":5,"2074":1,"2246":2,"2296":1,"2301":1,"2317":1,"2365":1,"2472":2,"2510":3,"2522":3,"2563":1,"2782":3,"2784":5,"2790":2,"2923":1,"2924":1,"2928":1,"2931":1}}],["zygomorph",{"2":{"93":1}}],["=+",{"2":{"1504":1,"1506":1,"1515":1}}],["=>",{"2":{"196":4,"1798":4,"1968":1}}],["=helix",{"2":{"55":4}}],["=======",{"2":{"2634":2}}],["==========================",{"2":{"720":1}}],["=================================================",{"2":{"720":1}}],["============================",{"2":{"720":1}}],["=====",{"2":{"720":1}}],["==",{"2":{"46":1,"90":4,"194":1,"433":1,"535":2,"561":1,"720":1,"1332":2,"1378":2,"1380":1,"1595":1,"1612":1,"1625":1,"1663":1,"1668":4,"1781":1,"1947":1,"1993":1,"2000":1,"2012":2,"2059":5,"2074":1,"2096":2,"2286":1,"2316":1,"2317":3,"2318":2,"2319":3,"2381":4,"2652":1,"2757":1,"2767":1,"2768":1,"2773":1,"2774":1,"2776":1,"2778":1,"2927":2,"2928":3,"2932":1}}],["=",{"0":{"156":1,"182":1,"195":1,"245":1},"2":{"18":1,"39":1,"43":1,"87":1,"88":3,"104":3,"118":9,"119":1,"127":3,"134":1,"181":1,"191":4,"199":1,"212":1,"213":1,"232":1,"234":7,"235":1,"247":1,"266":2,"272":2,"285":1,"306":1,"307":6,"315":1,"324":2,"325":4,"328":1,"354":2,"412":1,"433":3,"475":1,"476":1,"497":2,"524":1,"529":1,"532":1,"533":1,"534":2,"567":2,"569":2,"573":5,"575":2,"589":3,"592":1,"593":2,"610":1,"624":2,"625":3,"629":1,"647":4,"655":1,"656":1,"657":1,"691":1,"703":1,"715":1,"716":14,"720":2,"721":4,"725":1,"729":1,"742":1,"744":1,"746":5,"753":4,"755":1,"758":1,"765":1,"801":1,"805":2,"827":1,"831":2,"856":1,"863":2,"888":1,"893":2,"920":1,"928":2,"955":1,"962":2,"989":1,"996":2,"1023":1,"1030":2,"1057":1,"1064":2,"1091":1,"1098":2,"1125":1,"1132":2,"1159":1,"1166":2,"1195":1,"1198":2,"1201":2,"1215":1,"1219":2,"1246":1,"1267":1,"1284":1,"1288":4,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1322":1,"1330":1,"1369":1,"1381":3,"1390":1,"1405":1,"1413":1,"1414":1,"1417":4,"1420":2,"1431":4,"1434":2,"1436":1,"1446":6,"1450":2,"1462":6,"1465":1,"1470":1,"1471":1,"1472":4,"1473":1,"1477":1,"1478":2,"1480":1,"1481":1,"1483":2,"1485":1,"1488":1,"1491":1,"1492":1,"1500":1,"1526":1,"1527":1,"1533":8,"1535":2,"1542":1,"1548":1,"1549":1,"1550":1,"1551":1,"1578":1,"1589":1,"1594":1,"1595":1,"1602":4,"1603":2,"1604":3,"1605":14,"1612":4,"1617":3,"1618":3,"1623":1,"1640":1,"1642":2,"1655":1,"1656":2,"1661":1,"1663":1,"1665":1,"1667":6,"1668":1,"1678":3,"1698":1,"1702":1,"1739":2,"1742":1,"1743":7,"1763":1,"1768":1,"1774":4,"1776":7,"1777":7,"1779":11,"1786":1,"1790":1,"1797":1,"1804":6,"1838":1,"1839":5,"1840":1,"1845":1,"1846":3,"1849":2,"1850":5,"1851":1,"1852":2,"1919":1,"1924":2,"1932":1,"1939":3,"1944":1,"1945":3,"1946":1,"1947":5,"1948":1,"1953":4,"1954":4,"1957":1,"1962":2,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":2,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":5,"1984":1,"1992":6,"1993":7,"1994":14,"1996":7,"1997":4,"2011":1,"2012":1,"2013":3,"2017":1,"2040":3,"2041":4,"2042":3,"2043":13,"2052":1,"2055":1,"2059":14,"2066":1,"2069":1,"2071":1,"2074":1,"2079":1,"2081":1,"2082":3,"2085":2,"2088":5,"2090":1,"2091":2,"2095":7,"2096":6,"2179":3,"2187":7,"2189":6,"2191":4,"2210":4,"2215":1,"2220":1,"2250":1,"2258":1,"2268":2,"2277":7,"2284":2,"2285":1,"2286":5,"2293":2,"2294":1,"2295":5,"2296":5,"2297":2,"2298":1,"2302":1,"2303":1,"2305":1,"2309":1,"2312":4,"2314":2,"2315":4,"2316":13,"2317":11,"2318":3,"2319":7,"2320":1,"2326":1,"2329":6,"2330":5,"2374":2,"2376":3,"2378":1,"2381":13,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2404":1,"2406":1,"2408":1,"2410":1,"2418":1,"2419":2,"2455":3,"2460":1,"2502":1,"2512":1,"2518":2,"2522":3,"2558":6,"2562":1,"2563":1,"2564":1,"2585":1,"2674":3,"2683":1,"2691":2,"2703":1,"2727":1,"2728":3,"2753":1,"2756":12,"2757":31,"2759":3,"2761":1,"2767":6,"2768":6,"2769":6,"2770":2,"2771":2,"2774":6,"2775":6,"2776":14,"2777":6,"2778":6,"2779":6,"2785":2,"2791":1,"2792":9,"2856":1,"2857":1,"2867":1,"2872":1,"2889":9,"2891":1,"2893":1,"2911":4,"2912":6,"2924":1,"2927":1,"2939":2,"2949":2}}],["+size",{"2":{"2728":1}}],["++col",{"2":{"2095":1}}],["++row",{"2":{"2095":1}}],["++i",{"2":{"1535":1,"2757":2}}],["+6",{"2":{"1925":1,"2539":1}}],["+4",{"2":{"1925":1,"2539":1}}],["+3",{"2":{"1925":1,"2539":1,"2679":1}}],["+2",{"2":{"1925":1,"2539":1}}],["+1",{"2":{"1925":1,"2539":1}}],["+127",{"2":{"1740":1}}],["+7",{"2":{"1490":1}}],["+5v",{"2":{"2495":1}}],["+5",{"2":{"1490":1,"1925":1,"2539":1}}],["+=",{"2":{"234":9,"572":4,"573":1,"623":1,"725":2,"801":3,"827":3,"856":3,"888":3,"920":3,"955":3,"989":3,"1023":3,"1057":3,"1091":3,"1125":3,"1159":3,"1215":3,"1332":2,"1414":1,"1420":1,"1464":3,"1471":1,"1472":1,"1612":1,"1622":1,"1633":1,"1994":2,"2455":2,"2605":1,"2753":16,"2756":13,"2757":2,"2912":1}}],["+cleanup",{"2":{"199":1}}],["+",{"0":{"1380":2,"1381":1},"2":{"15":1,"99":2,"134":2,"149":1,"191":3,"199":2,"210":1,"236":1,"332":1,"337":1,"354":2,"411":1,"641":1,"716":9,"1194":8,"1197":8,"1198":1,"1200":8,"1201":1,"1311":4,"1409":18,"1431":1,"1433":15,"1434":1,"1436":8,"1503":1,"1532":1,"1533":3,"1538":42,"1594":1,"1595":4,"1747":1,"1766":4,"1767":4,"1774":2,"1776":11,"1777":4,"1779":2,"1784":1,"1786":1,"1787":1,"1802":1,"1852":1,"1983":3,"1990":4,"2038":4,"2059":2,"2065":6,"2068":16,"2069":9,"2085":2,"2091":1,"2186":2,"2246":1,"2277":1,"2318":1,"2344":1,"2387":2,"2466":8,"2468":20,"2512":1,"2518":1,"2522":2,"2546":1,"2555":1,"2558":2,"2673":8,"2753":22,"2767":1,"2768":1,"2774":1,"2776":1,"2790":1,"2794":10,"2795":2,"2796":1,"2800":4,"2871":1,"2878":1,"2910":1,"2911":2,"2912":1,"2913":1,"2919":36,"2920":24,"2921":12,"2926":16,"2929":8,"2931":1}}],["1bpp",{"2":{"2756":1,"2776":2}}],["1b4f",{"2":{"689":3,"2499":3}}],["1ca027",{"2":{"1973":1}}],["1c11",{"2":{"689":1,"2402":1}}],["1=3",{"2":{"1954":1}}],["1>",{"2":{"1788":1,"2929":1}}],["1x",{"2":{"1684":1,"1685":1,"1974":1,"2264":1,"2689":1}}],["1x4",{"2":{"222":1}}],["1st",{"2":{"1431":1}}],["1️⃣",{"2":{"716":12}}],["1p5",{"2":{"701":1}}],["1eaf",{"2":{"689":1,"2401":1}}],["1ffb",{"2":{"689":1,"2499":1}}],["1u",{"2":{"2869":2}}],["1up60rgb",{"2":{"588":1}}],["1upkeyboards",{"2":{"175":2,"222":2,"236":1,"322":4,"328":1,"588":1}}],["1ul",{"2":{"105":4,"1368":2,"1657":4}}],["19",{"2":{"381":2,"413":1,"1492":1,"1527":1,"1686":1,"1744":3,"1968":2,"2018":3,"2532":3,"2548":3}}],["199",{"2":{"2916":1,"2917":1}}],["19939",{"2":{"236":1}}],["19954",{"2":{"222":1}}],["19997",{"2":{"236":1}}],["19998",{"2":{"222":1}}],["19991",{"2":{"222":1}}],["19993",{"2":{"222":1}}],["19987",{"2":{"222":1}}],["19985",{"2":{"222":1}}],["19980",{"2":{"222":1}}],["19961",{"2":{"222":1}}],["19966",{"2":{"222":1}}],["19925",{"2":{"222":1}}],["19923",{"2":{"199":1}}],["19974",{"2":{"222":1}}],["19948",{"2":{"222":1}}],["19941",{"2":{"199":1}}],["19940",{"2":{"199":1}}],["19912",{"2":{"222":1}}],["19916",{"2":{"199":1}}],["19919",{"2":{"199":1}}],["19918",{"2":{"199":1}}],["19910",{"2":{"199":1}}],["19902",{"2":{"199":1}}],["19901",{"2":{"199":1}}],["19909",{"2":{"199":1}}],["19907",{"2":{"199":1}}],["198",{"2":{"1090":1,"1845":1}}],["19849",{"2":{"222":1}}],["19845",{"2":{"199":1}}],["19842",{"2":{"199":1}}],["19893",{"2":{"199":1}}],["19898",{"2":{"199":1}}],["19891",{"2":{"199":1}}],["19890",{"2":{"199":1}}],["19869",{"2":{"199":1}}],["19867",{"2":{"199":1}}],["19866",{"2":{"199":1}}],["19864",{"2":{"199":1}}],["19863",{"2":{"199":1}}],["19860",{"2":{"199":1}}],["19854",{"2":{"222":1}}],["19857",{"2":{"199":1}}],["19856",{"2":{"199":1}}],["19859",{"2":{"199":1}}],["19851",{"2":{"199":1}}],["19825",{"2":{"222":1}}],["19828",{"2":{"199":1}}],["19821",{"2":{"199":1}}],["19826",{"2":{"199":1}}],["19829",{"2":{"199":1}}],["19808",{"2":{"199":1}}],["19800",{"2":{"199":1}}],["19806",{"2":{"199":1}}],["19889",{"2":{"199":1}}],["19888",{"2":{"199":1}}],["19887",{"2":{"199":1}}],["19885",{"2":{"199":1}}],["19884",{"2":{"199":1}}],["19874",{"2":{"199":1}}],["19879",{"2":{"199":1}}],["19872",{"2":{"199":1}}],["19877",{"2":{"199":1}}],["19875",{"2":{"199":1}}],["19833",{"2":{"199":1}}],["19831",{"2":{"199":1}}],["19830",{"2":{"199":1}}],["19815",{"2":{"199":1}}],["19817",{"2":{"199":1}}],["19813",{"2":{"199":1}}],["19738",{"2":{"222":1}}],["19780",{"2":{"210":2}}],["19784",{"2":{"199":1}}],["19793",{"2":{"199":1}}],["19795",{"2":{"199":1}}],["19778",{"2":{"199":1}}],["19777",{"2":{"199":1}}],["19774",{"2":{"199":1}}],["19767",{"2":{"199":1}}],["19768",{"2":{"199":1}}],["19761",{"2":{"199":1}}],["19749",{"2":{"236":1}}],["19748",{"2":{"199":1}}],["19742",{"2":{"199":1}}],["19752",{"2":{"199":1}}],["19750",{"2":{"199":1}}],["19756",{"2":{"199":1}}],["19755",{"2":{"199":1}}],["19753",{"2":{"199":1}}],["19723",{"2":{"199":1}}],["19721",{"2":{"199":1}}],["19726",{"2":{"199":1}}],["19722",{"2":{"199":1}}],["19720",{"2":{"199":1}}],["19718",{"2":{"199":1}}],["19715",{"2":{"199":1}}],["19714",{"2":{"199":1}}],["19713",{"2":{"199":1}}],["19712",{"2":{"199":1}}],["1970",{"2":{"522":1,"523":1,"524":2}}],["19705",{"2":{"222":1}}],["19700",{"2":{"222":1}}],["19703",{"2":{"199":1}}],["19704",{"2":{"199":1}}],["19701",{"2":{"199":1}}],["19689",{"2":{"222":1}}],["19683",{"2":{"199":1}}],["1967st",{"2":{"222":1}}],["19670",{"2":{"222":1}}],["19675",{"2":{"199":1}}],["19658",{"2":{"199":1}}],["19652",{"2":{"199":1}}],["19656",{"2":{"199":1}}],["19647",{"2":{"199":1}}],["19644",{"2":{"199":1}}],["19649",{"2":{"199":1}}],["19640",{"2":{"199":1}}],["19646",{"2":{"199":1}}],["19699",{"2":{"199":1}}],["19630",{"2":{"199":1}}],["19633",{"2":{"199":1}}],["19632",{"2":{"199":1}}],["19629",{"2":{"199":1}}],["19620",{"2":{"199":1}}],["19602",{"2":{"199":1}}],["19607",{"2":{"199":1}}],["19606",{"2":{"199":1}}],["19603",{"2":{"199":2}}],["19515",{"2":{"210":1}}],["19511",{"2":{"199":1}}],["19537",{"2":{"199":1}}],["19530",{"2":{"199":1}}],["19588",{"2":{"199":1}}],["19581",{"2":{"199":1}}],["19570",{"2":{"199":1}}],["19529",{"2":{"199":1}}],["19599",{"2":{"199":1}}],["19597",{"2":{"199":1}}],["19594",{"2":{"199":1}}],["19562",{"2":{"199":1}}],["19565",{"2":{"199":1}}],["19564",{"2":{"199":1}}],["19563",{"2":{"199":1}}],["19543",{"2":{"222":1}}],["19549",{"2":{"199":1}}],["19548",{"2":{"199":1}}],["19541",{"2":{"199":1}}],["19542",{"2":{"199":1}}],["19545",{"2":{"199":1}}],["19544",{"2":{"199":1}}],["19447",{"2":{"199":1}}],["19468",{"2":{"199":1}}],["19464",{"2":{"199":1}}],["19462",{"2":{"199":1}}],["19463",{"2":{"199":1}}],["19496",{"2":{"199":1}}],["19488",{"2":{"199":1}}],["19487",{"2":{"199":1}}],["19485",{"2":{"199":1}}],["19480",{"2":{"199":1}}],["19474",{"2":{"199":1}}],["19479",{"2":{"199":1}}],["19475",{"2":{"199":1}}],["19453",{"2":{"199":1}}],["19452",{"2":{"199":1}}],["19412",{"2":{"199":1}}],["19411",{"2":{"199":1}}],["19418",{"2":{"199":1}}],["19416",{"2":{"199":1}}],["19415",{"2":{"199":1}}],["19400",{"2":{"199":1}}],["19313",{"2":{"199":1}}],["19341",{"2":{"199":1}}],["19348",{"2":{"199":1}}],["19332",{"2":{"199":1}}],["1930",{"2":{"2812":1}}],["19304",{"2":{"199":1}}],["19302",{"2":{"199":1}}],["19301",{"2":{"199":1}}],["19306",{"2":{"199":1}}],["19303",{"2":{"199":1}}],["19350",{"2":{"199":1}}],["19326",{"2":{"199":1}}],["19325",{"2":{"199":1}}],["19399",{"2":{"199":1}}],["19397",{"2":{"199":1}}],["19394",{"2":{"199":1}}],["19382",{"2":{"199":1}}],["19370",{"2":{"199":1}}],["19366",{"2":{"199":1}}],["192",{"2":{"919":1,"1214":1,"1845":2,"2445":1}}],["19280",{"2":{"249":1}}],["19269",{"2":{"199":1}}],["19267",{"2":{"199":1}}],["19262",{"2":{"199":1}}],["1920",{"2":{"1939":1}}],["19200",{"2":{"1207":1,"1272":1}}],["19201",{"2":{"199":1}}],["19203",{"2":{"199":1}}],["19248",{"2":{"199":1}}],["19243",{"2":{"199":1}}],["19275",{"2":{"199":1}}],["19271",{"2":{"199":1}}],["19277",{"2":{"199":1}}],["19273",{"2":{"199":1}}],["19229",{"2":{"199":1}}],["19226",{"2":{"199":1}}],["19225",{"2":{"199":1}}],["19224",{"2":{"199":1}}],["19216",{"2":{"199":1}}],["19214",{"2":{"199":1}}],["1919",{"2":{"1975":1}}],["19194",{"2":{"199":1}}],["191",{"2":{"1947":1,"2286":1}}],["19172",{"2":{"199":1}}],["19153",{"2":{"199":1}}],["19159",{"2":{"175":1}}],["19160",{"2":{"199":1}}],["19167",{"2":{"199":1}}],["19163",{"2":{"199":1}}],["19135",{"2":{"199":1}}],["19137",{"2":{"175":1}}],["19110",{"2":{"199":1}}],["19119",{"2":{"175":1}}],["19140",{"2":{"175":1}}],["19146",{"2":{"175":1}}],["19144",{"2":{"175":1}}],["19143",{"2":{"172":1,"175":1}}],["19107",{"2":{"175":1}}],["19121",{"2":{"175":1}}],["19120",{"2":{"175":1}}],["19124",{"2":{"175":1}}],["19122",{"2":{"175":1}}],["19049",{"2":{"199":1}}],["19096",{"2":{"175":1}}],["19094",{"2":{"175":1}}],["19053",{"2":{"199":1}}],["19059",{"2":{"175":1}}],["19058",{"2":{"175":1}}],["19056",{"2":{"175":1}}],["19052",{"2":{"175":1}}],["19089",{"2":{"175":1}}],["19086",{"2":{"175":1}}],["19080",{"2":{"175":1}}],["19077",{"2":{"199":1}}],["19075",{"2":{"199":1}}],["19072",{"2":{"175":1}}],["19079",{"2":{"175":1}}],["19031",{"2":{"199":1}}],["19038",{"2":{"175":1}}],["19034",{"2":{"174":1,"175":1}}],["19024",{"2":{"199":1}}],["19028",{"2":{"175":1}}],["19029",{"2":{"175":1}}],["19020",{"2":{"175":1}}],["19015",{"2":{"175":1}}],["19018",{"2":{"175":1}}],["19069",{"2":{"222":1}}],["19066",{"2":{"175":1}}],["19060",{"2":{"175":1}}],["19065",{"2":{"175":1}}],["19063",{"2":{"175":1}}],["19068",{"2":{"175":1}}],["19005",{"2":{"236":1}}],["19006",{"2":{"175":1}}],["19007",{"2":{"175":1}}],["19004",{"2":{"172":1,"175":1}}],["1k81",{"2":{"1162":1}}],["1k8",{"2":{"1026":1,"1060":1}}],["1k05",{"2":{"924":1,"958":1,"992":1}}],["1k",{"2":{"859":1,"860":4,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":4,"1129":4,"1163":4,"2309":1,"2678":1}}],["1kb",{"2":{"748":1}}],["1key",{"2":{"143":2}}],["1khz",{"0":{"137":1},"2":{"137":1,"149":1}}],["1ms",{"2":{"137":1,"191":1,"222":1}}],["15ms",{"2":{"1953":1}}],["15min",{"2":{"647":1}}],["15x9",{"2":{"855":1}}],["15pad",{"2":{"266":1}}],["15",{"2":{"191":1,"413":1,"561":1,"695":4,"891":1,"928":1,"996":1,"1368":1,"1422":2,"1423":2,"1492":1,"1527":2,"1686":1,"1712":1,"1744":3,"1925":2,"1949":1,"1968":2,"2018":3,"2189":1,"2245":1,"2485":1,"2487":1,"2532":3,"2539":2,"2548":3,"2776":1,"2800":2}}],["15674",{"2":{"191":1}}],["15699",{"2":{"175":1}}],["15691",{"2":{"149":1}}],["15657",{"2":{"160":1}}],["15606",{"2":{"149":1}}],["15603",{"2":{"149":1}}],["15609",{"2":{"149":1}}],["15680",{"2":{"160":1}}],["15682",{"2":{"149":1}}],["15687",{"2":{"149":1}}],["15684",{"2":{"149":1}}],["15681",{"2":{"149":1}}],["15668",{"2":{"149":1}}],["15667",{"2":{"149":1}}],["15665",{"2":{"149":1}}],["15662",{"2":{"149":1}}],["15661",{"2":{"149":1}}],["15646",{"2":{"149":1}}],["15647",{"2":{"149":1}}],["15645",{"2":{"149":1}}],["15643",{"2":{"149":1}}],["15641",{"2":{"149":1}}],["15638",{"2":{"149":1}}],["15637",{"2":{"149":1}}],["15636",{"2":{"149":1}}],["15635",{"2":{"149":1}}],["15988",{"2":{"149":1}}],["15985",{"2":{"149":1}}],["15984",{"2":{"149":1}}],["15987",{"2":{"149":1}}],["15976",{"2":{"149":1}}],["15938",{"2":{"149":1}}],["15935",{"2":{"149":1}}],["15919",{"2":{"149":1}}],["15907",{"2":{"191":1}}],["15906",{"2":{"149":1}}],["15904",{"2":{"149":1}}],["15996",{"2":{"160":1}}],["15990",{"2":{"160":1}}],["15999",{"2":{"149":1}}],["15997",{"2":{"149":1}}],["15993",{"2":{"149":1}}],["15992",{"2":{"149":1}}],["15991",{"2":{"149":1}}],["15968",{"2":{"149":1}}],["15959",{"2":{"160":1}}],["15954",{"2":{"149":1}}],["15953",{"2":{"149":1}}],["15944",{"2":{"149":1}}],["15924",{"2":{"149":1}}],["15925",{"2":{"149":1}}],["15923",{"2":{"149":1}}],["15843",{"2":{"1329":1}}],["15847",{"2":{"222":1}}],["15814",{"2":{"149":1}}],["15815",{"2":{"149":1}}],["15801",{"2":{"149":1}}],["15805",{"2":{"149":1}}],["15889",{"2":{"236":1}}],["15880",{"2":{"149":1}}],["15883",{"2":{"149":1}}],["15882",{"2":{"149":1}}],["15866",{"2":{"149":1}}],["15859",{"2":{"149":1}}],["15828",{"2":{"149":1}}],["15827",{"2":{"149":1}}],["15829",{"2":{"149":1}}],["15821",{"2":{"149":1}}],["15703",{"2":{"1329":1}}],["15741",{"2":{"199":1}}],["15740",{"2":{"149":1}}],["15733",{"2":{"160":1}}],["15730",{"2":{"149":1}}],["15799",{"2":{"149":1}}],["15798",{"2":{"149":1}}],["15797",{"2":{"149":1}}],["15791",{"2":{"149":1}}],["15789",{"2":{"149":1}}],["15788",{"2":{"149":1}}],["15786",{"2":{"149":1}}],["15785",{"2":{"149":1}}],["15783",{"2":{"149":1}}],["15781",{"2":{"149":1}}],["15780",{"2":{"149":1}}],["15787",{"2":{"149":1}}],["15767",{"2":{"149":1}}],["15760",{"2":{"149":1}}],["15758",{"2":{"149":1}}],["15725",{"2":{"149":1}}],["15510",{"2":{"1329":1}}],["15519",{"2":{"149":1}}],["15505",{"2":{"1329":1}}],["15592",{"2":{"149":1}}],["15589",{"2":{"149":1}}],["15557",{"2":{"149":1}}],["15559",{"2":{"149":1}}],["15538",{"2":{"149":1}}],["15537",{"2":{"149":1}}],["15579",{"2":{"149":1}}],["15416",{"2":{"149":1}}],["15419",{"2":{"149":1}}],["15483",{"2":{"149":1}}],["15489",{"2":{"149":1}}],["15481",{"2":{"149":1}}],["15492",{"2":{"149":1}}],["15479",{"2":{"149":1}}],["15457",{"2":{"149":1}}],["15450",{"2":{"149":1}}],["15435",{"2":{"149":1}}],["15431",{"2":{"149":1}}],["15420",{"2":{"149":1}}],["15409",{"2":{"149":1}}],["15320",{"2":{"160":1}}],["15321",{"2":{"149":1}}],["15378",{"2":{"149":1}}],["15376",{"2":{"149":1}}],["15340",{"2":{"149":1}}],["15349",{"2":{"149":1}}],["15336",{"2":{"149":1}}],["15368",{"2":{"149":1}}],["15352",{"2":{"149":1}}],["15316",{"2":{"134":1}}],["15313",{"2":{"134":1}}],["15312",{"2":{"134":1}}],["15306",{"2":{"149":1}}],["15305",{"2":{"149":1}}],["15304",{"2":{"149":1}}],["15307",{"2":{"134":1}}],["15302",{"2":{"134":1}}],["15301",{"2":{"134":1}}],["15309",{"2":{"134":1}}],["15303",{"2":{"134":1}}],["15277",{"2":{"149":1}}],["15207",{"2":{"149":1}}],["15205",{"2":{"134":1}}],["15286",{"2":{"191":1}}],["15285",{"2":{"149":1}}],["15282",{"2":{"149":1}}],["15292",{"2":{"191":1}}],["15298",{"2":{"134":1}}],["15299",{"2":{"134":1}}],["15239",{"2":{"134":1}}],["15221",{"2":{"134":1}}],["15223",{"2":{"134":1}}],["15240",{"2":{"134":1}}],["15243",{"2":{"134":1}}],["15244",{"2":{"134":1}}],["15268",{"2":{"134":1}}],["15263",{"2":{"134":1}}],["15262",{"2":{"134":1}}],["15261",{"2":{"134":1}}],["15260",{"2":{"134":1}}],["15269",{"2":{"134":1}}],["15132",{"2":{"149":1}}],["15130",{"2":{"134":1}}],["15167",{"2":{"134":1}}],["15162",{"2":{"133":1,"134":1}}],["15115",{"2":{"134":1}}],["15116",{"2":{"134":1}}],["15109",{"2":{"134":1}}],["15185",{"2":{"134":1}}],["15184",{"2":{"134":1}}],["15171",{"2":{"134":1}}],["15170",{"2":{"134":1}}],["15174",{"2":{"134":1}}],["15199",{"2":{"134":1}}],["15196",{"2":{"134":1}}],["15195",{"2":{"134":1}}],["150",{"2":{"350":1,"726":2,"727":1,"1319":1,"1502":1,"1503":1,"1610":1,"1612":1,"1939":1,"1971":2,"2913":1,"2923":2}}],["15088",{"2":{"149":1}}],["15083",{"2":{"149":1}}],["15029",{"2":{"134":2}}],["15020",{"2":{"134":1}}],["15021",{"2":{"134":1}}],["15073",{"2":{"134":1}}],["15068",{"2":{"134":1}}],["15055",{"2":{"134":1}}],["15019",{"2":{"134":1}}],["15014",{"2":{"134":1}}],["15017",{"2":{"134":1}}],["15012",{"2":{"134":1}}],["15011",{"2":{"134":1}}],["15010",{"2":{"134":1}}],["15018",{"2":{"134":1}}],["15047",{"2":{"134":1}}],["15040",{"2":{"134":2}}],["15031",{"2":{"134":1}}],["15034",{"2":{"134":1}}],["15037",{"2":{"133":1,"134":1}}],["1500",{"2":{"657":2,"1493":1}}],["15006",{"2":{"149":1}}],["15004",{"2":{"134":1}}],["15003",{"2":{"134":1}}],["15002",{"2":{"134":1}}],["18x4",{"2":{"1158":1}}],["18x8",{"2":{"1124":1}}],["18x11",{"2":{"1090":1}}],["18x12",{"2":{"724":1}}],["18175",{"2":{"191":1}}],["18178",{"2":{"175":1}}],["18116",{"2":{"191":1}}],["18117",{"2":{"191":1}}],["18168",{"2":{"191":1}}],["18131",{"2":{"191":1}}],["18152",{"2":{"184":1,"191":1}}],["18196",{"2":{"175":1}}],["18194",{"2":{"175":1}}],["18195",{"2":{"175":1}}],["18102",{"2":{"191":1}}],["18100",{"2":{"191":1}}],["18108",{"2":{"175":1}}],["18101",{"2":{"175":1}}],["18183",{"2":{"175":1}}],["18499",{"2":{"199":1}}],["18455",{"2":{"175":1}}],["18450",{"2":{"175":1}}],["18459",{"2":{"175":1}}],["18449",{"2":{"175":1}}],["18441",{"2":{"175":1}}],["18477",{"2":{"175":1}}],["18475",{"2":{"175":1}}],["18472",{"2":{"175":1}}],["1840",{"2":{"222":1}}],["18408",{"2":{"175":1}}],["18403",{"2":{"175":1}}],["18402",{"2":{"175":1}}],["18404",{"2":{"174":1,"175":1}}],["18463",{"2":{"199":1}}],["18467",{"2":{"175":1}}],["18464",{"2":{"175":1}}],["18431",{"2":{"175":1}}],["18432",{"2":{"175":1}}],["18439",{"2":{"175":1}}],["18437",{"2":{"175":1}}],["18438880",{"2":{"149":1}}],["18428",{"2":{"175":1}}],["18426",{"2":{"175":1}}],["18423",{"2":{"175":1}}],["18424",{"2":{"175":1}}],["18421",{"2":{"175":1}}],["18414",{"2":{"175":1}}],["18419",{"2":{"175":1}}],["18418",{"2":{"175":1}}],["18417",{"2":{"175":1}}],["18415",{"2":{"175":1}}],["18521",{"2":{"249":1}}],["18527",{"2":{"175":1}}],["18581",{"2":{"175":1}}],["18588",{"2":{"172":1,"175":1}}],["18574",{"2":{"175":1}}],["18577",{"2":{"175":1}}],["18557",{"2":{"175":1}}],["18553",{"2":{"175":1}}],["18566",{"2":{"175":1}}],["18560",{"2":{"175":1}}],["18565",{"2":{"174":1,"175":1}}],["18545",{"2":{"175":1}}],["18544",{"2":{"175":1}}],["18593",{"2":{"175":1}}],["18594",{"2":{"175":1}}],["18599",{"2":{"175":1}}],["18592",{"2":{"175":1}}],["18513",{"2":{"174":1,"175":1}}],["183874",{"2":{"2387":1}}],["183883",{"2":{"2387":3}}],["18314",{"2":{"328":1}}],["18310",{"2":{"175":1}}],["18371",{"2":{"199":1}}],["18370",{"2":{"175":1}}],["18351",{"2":{"175":1}}],["18352",{"2":{"175":1}}],["18332",{"2":{"277":1}}],["18338",{"2":{"175":1}}],["18333",{"2":{"175":1}}],["18345",{"2":{"175":1}}],["18394",{"2":{"175":1}}],["18399",{"2":{"175":1}}],["18396",{"2":{"175":1}}],["18366",{"2":{"175":1}}],["18363",{"2":{"174":1,"175":1}}],["18323",{"2":{"175":1}}],["18309",{"2":{"173":1,"175":1}}],["187",{"2":{"1846":1,"2082":1}}],["18734",{"2":{"175":1}}],["18730",{"2":{"175":1}}],["18725",{"2":{"175":1}}],["18729",{"2":{"175":2}}],["18728",{"2":{"175":1}}],["18727",{"2":{"175":1}}],["18726",{"2":{"175":2}}],["18720",{"2":{"175":1}}],["18721",{"2":{"175":1}}],["18701",{"2":{"175":1}}],["18700",{"2":{"175":1}}],["18709",{"2":{"175":1}}],["18766",{"2":{"175":1}}],["18767",{"2":{"175":1}}],["18769",{"2":{"172":1,"175":1}}],["18751",{"2":{"175":1}}],["18753",{"2":{"175":2}}],["18750",{"2":{"175":1}}],["18716",{"2":{"175":1}}],["18715",{"2":{"175":1}}],["18714",{"2":{"175":1}}],["18717",{"2":{"175":1}}],["18710",{"2":{"172":1,"175":1}}],["18775",{"2":{"175":1}}],["18774",{"2":{"174":1,"175":1}}],["18776",{"2":{"173":1,"175":1}}],["18745",{"2":{"199":1}}],["18749",{"2":{"172":1,"175":1}}],["18740",{"2":{"172":1,"175":1}}],["18789",{"2":{"175":1}}],["18781",{"2":{"175":1}}],["18787",{"2":{"172":1,"175":1}}],["18782",{"2":{"172":1,"175":1}}],["18791",{"2":{"175":1}}],["18796",{"2":{"172":1,"175":1}}],["18792",{"2":{"172":1,"175":1}}],["18249",{"2":{"175":1}}],["18244",{"2":{"175":1}}],["18205",{"2":{"175":1}}],["18299",{"2":{"175":1}}],["18298",{"2":{"175":1}}],["18297",{"2":{"175":1}}],["18292",{"2":{"175":1}}],["18290",{"2":{"172":1,"175":1}}],["18268",{"2":{"175":1}}],["18262",{"2":{"175":1}}],["18260",{"2":{"175":1}}],["18259",{"2":{"175":1}}],["18215",{"2":{"175":2}}],["18212",{"2":{"175":1}}],["18289",{"2":{"175":1}}],["18279",{"2":{"175":1}}],["18274",{"2":{"175":1}}],["18271",{"2":{"172":1,"175":1}}],["18234",{"2":{"175":1}}],["18235",{"2":{"175":1}}],["18230",{"2":{"175":1}}],["18236",{"2":{"173":1,"175":1}}],["18224",{"2":{"175":1}}],["18228",{"2":{"175":1}}],["18222",{"2":{"175":1}}],["18654",{"2":{"175":1}}],["18650",{"2":{"175":1}}],["18651",{"2":{"175":1}}],["18659",{"2":{"174":1,"175":1}}],["18617",{"2":{"175":1}}],["18613",{"2":{"175":1}}],["18618",{"2":{"175":1}}],["18615",{"2":{"175":1}}],["18692",{"2":{"175":1}}],["18693",{"2":{"175":1}}],["18690",{"2":{"175":1}}],["18687",{"2":{"175":1}}],["18689",{"2":{"175":1}}],["18683",{"2":{"172":1,"175":1}}],["18649",{"2":{"175":1}}],["18640",{"2":{"175":1}}],["18641",{"2":{"175":1}}],["18643",{"2":{"172":1,"175":1}}],["18629",{"2":{"175":1}}],["18609",{"2":{"175":1}}],["18608",{"2":{"175":1}}],["18606",{"2":{"175":1}}],["18601",{"2":{"172":1,"175":1}}],["18638",{"2":{"222":1}}],["18635",{"2":{"175":1}}],["18631",{"2":{"175":1}}],["18637",{"2":{"173":1,"175":1}}],["18634",{"2":{"172":1,"175":1}}],["18668",{"2":{"175":1}}],["18667",{"2":{"175":1}}],["18662",{"2":{"175":1}}],["18669",{"2":{"172":1,"175":1}}],["18660",{"2":{"172":1,"175":1}}],["189kbps",{"2":{"570":1,"2275":1}}],["18915",{"2":{"199":1}}],["18910",{"2":{"175":1}}],["18921f",{"2":{"1493":1}}],["18921",{"2":{"175":1}}],["18924",{"2":{"175":1}}],["18984",{"2":{"175":1}}],["18982",{"2":{"175":1}}],["1897",{"2":{"750":1}}],["18977",{"2":{"175":1}}],["18979",{"2":{"175":1}}],["18978",{"2":{"175":1}}],["18974",{"2":{"175":1}}],["18973",{"2":{"175":1}}],["18972",{"2":{"172":1,"175":1}}],["18933",{"2":{"175":1}}],["18939",{"2":{"172":1,"175":1}}],["189000",{"2":{"1207":1}}],["18908",{"2":{"175":1}}],["18901",{"2":{"173":1,"175":1}}],["18992",{"2":{"175":1}}],["18999",{"2":{"175":1}}],["18997",{"2":{"175":1}}],["18991",{"2":{"175":1}}],["18998",{"2":{"175":1}}],["18996",{"2":{"175":1}}],["1895",{"2":{"749":1}}],["18954",{"2":{"175":1}}],["18956",{"2":{"175":1}}],["18959",{"2":{"175":1}}],["18952",{"2":{"175":1}}],["18951",{"2":{"175":1}}],["18958",{"2":{"172":1,"175":1}}],["18943",{"2":{"199":1}}],["18944",{"2":{"175":1}}],["18942",{"2":{"175":1}}],["18940",{"2":{"175":1,"199":1}}],["18949",{"2":{"175":1}}],["18948",{"2":{"175":1}}],["18947",{"2":{"175":1}}],["18946",{"2":{"175":1}}],["18965",{"2":{"175":1}}],["18969",{"2":{"175":1}}],["18961",{"2":{"172":1,"175":1}}],["18964",{"2":{"172":1,"175":1}}],["18963",{"2":{"172":1,"175":1}}],["18962",{"2":{"172":1,"175":1}}],["188",{"2":{"1846":1,"2082":1}}],["18822",{"2":{"175":1}}],["18852",{"2":{"199":1}}],["18855",{"2":{"175":1}}],["18859",{"2":{"175":1}}],["18858",{"2":{"175":1}}],["18887",{"2":{"175":1}}],["18884",{"2":{"175":1}}],["18886",{"2":{"175":1}}],["18882",{"2":{"172":1,"175":1}}],["18876",{"2":{"175":1}}],["18878",{"2":{"175":1}}],["18874",{"2":{"175":1}}],["18877",{"2":{"172":1,"175":1}}],["18860",{"2":{"175":1}}],["18866",{"2":{"175":1}}],["18867",{"2":{"175":1}}],["18864",{"2":{"172":1,"175":1}}],["18811",{"2":{"175":1}}],["18804",{"2":{"175":1}}],["18806",{"2":{"175":1}}],["18803",{"2":{"175":1}}],["18800",{"2":{"172":1,"175":2}}],["18807",{"2":{"172":1,"175":1}}],["18838",{"2":{"175":1}}],["18837",{"2":{"175":1}}],["18832",{"2":{"172":1,"175":1}}],["18834",{"2":{"172":1,"175":1}}],["18890",{"2":{"199":1}}],["18898",{"2":{"172":1,"175":1}}],["18893",{"2":{"172":1,"175":1}}],["18892",{"2":{"172":1,"175":1}}],["18840",{"2":{"175":1}}],["18847",{"2":{"172":1,"175":1}}],["18844",{"2":{"172":1,"175":1}}],["18843",{"2":{"172":1,"175":1}}],["18",{"2":{"114":1,"413":1,"800":1,"860":1,"1027":1,"1492":1,"1527":1,"1686":1,"1744":3,"1845":1,"1968":2,"2018":3,"2532":3,"2548":3,"2664":1,"2714":1,"2768":1,"2774":3}}],["180°",{"2":{"1741":1}}],["18066",{"2":{"199":1}}],["18067",{"2":{"191":1}}],["18063",{"2":{"191":1}}],["18060",{"2":{"174":1,"175":1}}],["18028",{"2":{"191":1}}],["18025",{"2":{"191":1}}],["18020",{"2":{"191":1}}],["18029",{"2":{"191":1}}],["18039",{"2":{"191":1}}],["18038",{"2":{"191":1}}],["18032",{"2":{"191":1}}],["18037",{"2":{"191":1}}],["18036",{"2":{"175":1}}],["18059",{"2":{"285":1}}],["18050",{"2":{"191":1}}],["18056",{"2":{"191":1}}],["18057",{"2":{"191":1}}],["18058",{"2":{"175":1}}],["18018",{"2":{"191":1}}],["18016",{"2":{"191":1}}],["18011",{"2":{"191":1}}],["18099",{"2":{"191":1}}],["18098",{"2":{"175":1}}],["18043",{"2":{"191":1}}],["18045",{"2":{"191":1}}],["18042",{"2":{"191":1}}],["18044",{"2":{"175":1}}],["18008",{"2":{"191":1}}],["18007",{"2":{"191":1}}],["18000",{"2":{"191":1}}],["18006",{"2":{"175":1}}],["1800",{"2":{"57":2,"222":1,"308":1,"1967":1,"2797":1,"2800":1}}],["180",{"2":{"21":2,"24":2,"332":2,"337":2,"641":1,"1056":1,"1845":1,"1948":2,"1953":3,"1954":2,"1972":2,"1985":2,"1987":2,"2051":2,"2287":2,"2290":1,"2757":1}}],["14k5",{"2":{"1162":1}}],["14",{"2":{"413":1,"695":4,"1162":1,"1492":1,"1686":1,"1744":3,"1925":2,"1968":1,"2016":1,"2018":3,"2189":1,"2265":1,"2485":1,"2487":1,"2532":3,"2539":2,"2548":3,"2714":2,"2800":4}}],["14674",{"2":{"149":1}}],["14678",{"2":{"134":1}}],["14655",{"2":{"134":1}}],["14659",{"2":{"133":1,"134":1}}],["14639",{"2":{"134":1}}],["14662",{"2":{"134":1}}],["14699",{"2":{"134":1}}],["14600",{"2":{"134":1}}],["149",{"2":{"1846":1,"2082":1}}],["14944",{"2":{"266":1}}],["14948",{"2":{"149":1}}],["14947",{"2":{"134":1}}],["14934",{"2":{"134":1}}],["14906",{"2":{"134":1}}],["14989",{"2":{"149":1}}],["14982",{"2":{"134":1}}],["14983",{"2":{"134":1}}],["14980",{"2":{"134":1}}],["14967",{"2":{"134":1}}],["14969",{"2":{"133":1,"134":1}}],["14928",{"2":{"134":1}}],["14919",{"2":{"134":1}}],["14917",{"2":{"133":1,"134":1}}],["14975",{"2":{"134":1}}],["14973",{"2":{"134":1}}],["14976",{"2":{"133":1,"134":1}}],["14972",{"2":{"133":1,"134":1}}],["14814",{"2":{"199":1}}],["14877",{"2":{"191":1}}],["14879",{"2":{"134":1}}],["14872",{"2":{"134":1}}],["14864",{"2":{"134":1}}],["14848",{"2":{"134":1}}],["14835",{"2":{"134":1}}],["14839",{"2":{"133":1,"134":1}}],["14898",{"2":{"134":1}}],["14899",{"2":{"133":1,"134":1}}],["14895",{"2":{"133":1,"134":1}}],["14894",{"2":{"133":1,"134":1}}],["14888",{"2":{"133":1,"134":1}}],["14859",{"2":{"134":1}}],["14854",{"2":{"134":1}}],["14858",{"2":{"133":1,"134":1}}],["14855",{"2":{"133":1,"134":1}}],["1471",{"2":{"1975":1}}],["14713",{"2":{"134":1}}],["14764",{"2":{"749":2}}],["14760",{"2":{"133":1,"134":1}}],["14785",{"2":{"134":1}}],["14780",{"2":{"134":1}}],["14751",{"2":{"134":1}}],["14752",{"2":{"131":1,"134":1}}],["14730",{"2":{"134":1}}],["14775",{"2":{"134":1}}],["14747",{"2":{"134":1}}],["14749",{"2":{"134":1}}],["14740",{"2":{"134":1}}],["14745",{"2":{"133":1,"134":1}}],["14743",{"2":{"133":1,"134":1}}],["14720",{"2":{"134":1}}],["14729",{"2":{"134":1}}],["14727",{"2":{"133":1,"134":1}}],["14726",{"2":{"133":1,"134":1}}],["14723",{"2":{"133":1,"134":1}}],["14243",{"2":{"149":1}}],["14248",{"2":{"134":2}}],["14261",{"2":{"134":1}}],["14252",{"2":{"134":1}}],["14235",{"2":{"134":1}}],["14231",{"2":{"133":1,"134":1}}],["14289",{"2":{"134":1}}],["14200",{"2":{"191":1}}],["14208",{"2":{"134":1}}],["14206",{"2":{"134":1}}],["14201",{"2":{"134":1}}],["14207",{"2":{"133":1,"134":1}}],["14215",{"2":{"134":1}}],["14213",{"2":{"134":1}}],["14216",{"2":{"133":1,"134":1}}],["14210",{"2":{"133":1,"134":1}}],["144",{"2":{"887":1,"988":1,"1124":1,"1845":3,"2444":1}}],["14464",{"2":{"134":1}}],["14462",{"2":{"132":1,"134":1}}],["14452",{"2":{"175":1}}],["14455",{"2":{"134":1}}],["14454",{"2":{"134":1}}],["14456",{"2":{"133":1,"134":1}}],["14442",{"2":{"134":1}}],["14420",{"2":{"191":1}}],["14421",{"2":{"134":1}}],["14422",{"2":{"130":1,"134":1}}],["14497",{"2":{"134":1}}],["14490",{"2":{"134":1}}],["14496",{"2":{"134":1}}],["14415",{"2":{"134":1}}],["14413",{"2":{"134":1}}],["14419",{"2":{"134":1}}],["14408",{"2":{"134":1}}],["14404",{"2":{"133":1,"134":1}}],["14474",{"2":{"134":1}}],["14470",{"2":{"134":1}}],["14434",{"2":{"134":1}}],["14439",{"2":{"134":2}}],["14433",{"2":{"134":1}}],["14430",{"2":{"134":1}}],["14325",{"2":{"134":1}}],["14327",{"2":{"134":1}}],["14399",{"2":{"134":1}}],["14372",{"2":{"134":1}}],["14374",{"2":{"134":1}}],["14370",{"2":{"132":1,"134":1}}],["14343",{"2":{"134":1}}],["14348",{"2":{"133":1,"134":1}}],["14389",{"2":{"134":1}}],["14380",{"2":{"133":1,"134":1}}],["14388",{"2":{"130":1,"134":1}}],["14308",{"2":{"133":1,"134":1}}],["14580",{"2":{"149":1}}],["14584",{"2":{"130":1,"134":1}}],["14590",{"2":{"134":1}}],["14591",{"2":{"131":1,"134":1}}],["14546",{"2":{"134":1}}],["14508",{"2":{"134":1}}],["14530",{"2":{"133":1,"134":1}}],["14194",{"2":{"134":1}}],["14195",{"2":{"131":1,"134":1}}],["14181",{"2":{"134":1}}],["14155",{"2":{"134":1}}],["14150",{"2":{"114":1}}],["14174",{"2":{"134":1}}],["14171",{"2":{"114":1}}],["14172",{"2":{"114":1}}],["14118",{"2":{"114":1}}],["14146",{"2":{"114":1}}],["14142",{"2":{"114":1}}],["14140",{"2":{"114":1}}],["14144",{"2":{"114":2}}],["14123",{"2":{"114":1}}],["14120",{"2":{"114":1}}],["14106",{"2":{"114":1}}],["14108",{"2":{"114":1}}],["14105",{"2":{"114":1}}],["14136",{"2":{"114":1}}],["14133",{"2":{"114":1}}],["14134",{"2":{"113":1,"114":1}}],["14132",{"2":{"113":1,"114":1}}],["140",{"2":{"2918":1}}],["14091",{"2":{"149":1}}],["14095",{"2":{"114":1}}],["14090",{"2":{"114":1}}],["14097",{"2":{"114":1}}],["14052",{"2":{"114":1}}],["14051",{"2":{"114":1}}],["14017",{"2":{"114":1}}],["14065",{"2":{"149":1}}],["14061",{"2":{"114":1}}],["14063",{"2":{"114":1}}],["14048",{"2":{"114":1}}],["14045",{"2":{"114":1}}],["14033",{"2":{"134":1}}],["14039",{"2":{"114":1}}],["14038",{"2":{"114":1}}],["14005",{"2":{"114":1}}],["14007",{"2":{"114":1}}],["14089",{"2":{"114":1}}],["14084",{"2":{"114":1}}],["14080",{"2":{"114":1}}],["14083",{"2":{"114":2}}],["14079",{"2":{"114":1}}],["14025",{"2":{"113":1,"114":1}}],["12bit",{"2":{"1488":1}}],["12x12",{"2":{"988":1}}],["12x16",{"2":{"919":1}}],["12x8",{"2":{"954":1}}],["12x4",{"2":{"684":1}}],["12e3",{"2":{"294":1}}],["12e4",{"2":{"291":1}}],["12",{"2":{"199":1,"266":1,"354":1,"381":2,"383":1,"412":9,"413":1,"565":3,"693":1,"695":4,"701":1,"719":1,"826":1,"863":1,"1030":1,"1064":1,"1098":1,"1132":1,"1316":1,"1493":1,"1527":2,"1681":1,"1686":1,"1740":1,"1744":3,"1925":3,"1968":1,"2018":3,"2081":1,"2186":1,"2189":4,"2487":1,"2532":3,"2539":3,"2548":3,"2755":1}}],["12674",{"2":{"114":1}}],["12670",{"2":{"114":1,"134":1}}],["12671",{"2":{"94":1}}],["12632",{"2":{"114":1}}],["12637",{"2":{"114":1}}],["12633",{"2":{"93":1}}],["12692",{"2":{"134":1}}],["12691",{"2":{"134":1}}],["12699",{"2":{"114":1}}],["12697",{"2":{"94":1}}],["12689",{"2":{"114":1}}],["12685",{"2":{"93":1}}],["12669",{"2":{"114":1}}],["12641",{"2":{"114":1}}],["12602",{"2":{"94":1}}],["12600",{"2":{"93":1}}],["12625",{"2":{"94":1}}],["12626",{"2":{"94":1}}],["12651",{"2":{"93":1}}],["12617",{"2":{"114":1}}],["12619",{"2":{"93":1}}],["12613",{"2":{"86":1}}],["1252",{"2":{"2331":1}}],["125",{"2":{"1936":1,"1966":2}}],["1250",{"2":{"1285":1,"2910":1,"2912":1}}],["12508",{"2":{"130":1,"134":1}}],["12509",{"2":{"93":1}}],["12538",{"2":{"114":1}}],["12567",{"2":{"114":1}}],["12560",{"2":{"93":1}}],["12561",{"2":{"92":1}}],["12588",{"2":{"93":1}}],["12580",{"2":{"93":1}}],["121",{"2":{"1686":1}}],["12159",{"2":{"114":1}}],["12116",{"2":{"114":1}}],["12160",{"2":{"94":1}}],["12161",{"2":{"94":1}}],["12187",{"2":{"94":1}}],["12197",{"2":{"94":1}}],["12108",{"2":{"134":1}}],["12109",{"2":{"94":1}}],["12107",{"2":{"93":1}}],["12172",{"2":{"93":1}}],["12425",{"2":{"114":1}}],["12495",{"2":{"94":1}}],["12403",{"2":{"93":1}}],["12444",{"2":{"93":1}}],["12417",{"2":{"93":1}}],["12419",{"2":{"93":1}}],["12435",{"2":{"93":1}}],["12482",{"2":{"92":1}}],["123",{"2":{"1446":1,"1686":1}}],["12315",{"2":{"114":1}}],["12314",{"2":{"114":1}}],["12317",{"2":{"93":1}}],["12386",{"2":{"114":1}}],["12327",{"2":{"94":1}}],["12342",{"2":{"93":1}}],["12361",{"2":{"93":1}}],["122",{"2":{"218":5,"1686":1}}],["12240",{"2":{"114":1}}],["12249",{"2":{"94":1}}],["12238",{"2":{"114":1}}],["12237",{"2":{"93":1}}],["12211",{"2":{"114":1}}],["12216",{"2":{"93":1}}],["12284",{"2":{"94":1}}],["12286",{"2":{"94":1}}],["12258",{"2":{"93":1}}],["12226",{"2":{"86":1}}],["129",{"2":{"1527":2}}],["129u",{"2":{"770":1}}],["12950",{"2":{"134":1}}],["12951",{"2":{"114":1}}],["12947",{"2":{"131":1,"134":2}}],["12946",{"2":{"114":1}}],["12949",{"2":{"114":1}}],["12945",{"2":{"92":1}}],["12914",{"2":{"114":1}}],["12915",{"2":{"95":1}}],["12987",{"2":{"93":1}}],["12985",{"2":{"93":1}}],["12936",{"2":{"93":1}}],["12933",{"2":{"92":1}}],["12977",{"2":{"92":1}}],["12976",{"2":{"92":1}}],["128u",{"2":{"719":1}}],["128",{"2":{"693":1,"767":1,"1247":1,"1268":1,"1300":1,"1538":1,"1553":1,"1554":1,"1661":1,"1662":2,"1949":1,"1952":1,"1954":1,"1990":4,"2289":1,"2330":1,"2792":5,"2871":1,"2878":1}}],["128x40",{"2":{"2753":2}}],["128x128",{"2":{"1943":1,"1952":3,"2753":2}}],["128x32",{"2":{"339":1,"1943":2,"1952":1,"1953":1,"1954":1,"2283":1,"2289":1,"2753":1}}],["128x64",{"0":{"1952":1},"1":{"1953":1},"2":{"232":1,"1943":3,"1949":1,"1952":2,"2283":1,"2753":3}}],["12870",{"2":{"114":1}}],["12878",{"2":{"92":1}}],["12819",{"2":{"114":1}}],["12893",{"2":{"114":1}}],["12895",{"2":{"92":1}}],["12859",{"2":{"114":1}}],["12851",{"2":{"114":1}}],["12856",{"2":{"95":1}}],["12845",{"2":{"114":1}}],["12846",{"2":{"94":1}}],["12831",{"2":{"114":1}}],["12833",{"2":{"95":1}}],["12832",{"2":{"95":1}}],["12805",{"2":{"93":1}}],["12861",{"2":{"114":1}}],["12864",{"2":{"94":1}}],["12868",{"2":{"93":1}}],["12866",{"2":{"92":1}}],["12828",{"2":{"93":1}}],["12888",{"2":{"92":1}}],["12881",{"2":{"86":1}}],["127",{"2":{"191":1,"564":2,"1740":1,"1742":2,"1743":1,"1852":1,"1924":2,"1925":1,"1926":1,"1947":1,"1975":1,"1983":5,"1985":4,"1986":2,"1990":8,"1992":5,"2091":1,"2185":1,"2187":2,"2286":1,"2330":2,"2539":1}}],["12795",{"2":{"149":2}}],["12797",{"2":{"114":1}}],["12789",{"2":{"114":1}}],["12767",{"2":{"114":1}}],["12755",{"2":{"114":1}}],["12754",{"2":{"114":1}}],["12750",{"2":{"92":1}}],["12770",{"2":{"94":1}}],["12721",{"2":{"93":1}}],["12723",{"2":{"92":1}}],["120",{"2":{"1487":1,"1686":1,"1937":1,"1986":2,"2187":1,"2917":2,"2922":1}}],["12097",{"2":{"114":1}}],["12091",{"2":{"93":1}}],["12023",{"2":{"114":1}}],["12022",{"2":{"73":1}}],["12069",{"2":{"114":1}}],["12067",{"2":{"94":1}}],["12063",{"2":{"93":1}}],["12054",{"2":{"94":1}}],["12086",{"2":{"93":1}}],["12018",{"2":{"93":1}}],["12039",{"2":{"73":1}}],["12001",{"2":{"77":1}}],["12000",{"2":{"76":1,"1983":1}}],["120000",{"2":{"15":1}}],["1200",{"2":{"15":1,"1272":1,"1978":1,"1986":1}}],["11",{"0":{"1375":1},"2":{"160":1,"175":1,"191":2,"222":1,"249":1,"294":1,"383":2,"412":1,"413":1,"693":1,"695":4,"893":1,"1204":1,"1492":1,"1527":1,"1686":1,"1744":3,"1925":2,"2018":3,"2189":2,"2265":1,"2277":1,"2295":1,"2303":4,"2487":1,"2502":1,"2532":3,"2539":2,"2548":3,"2567":1,"2694":1,"2755":1,"2776":1}}],["112",{"2":{"1527":1,"1686":1,"1846":3,"2082":3,"2871":1,"2878":1}}],["11261",{"2":{"77":1}}],["11237",{"2":{"75":1}}],["118",{"2":{"1686":1}}],["11842",{"2":{"114":1}}],["11846",{"2":{"77":1}}],["11896",{"2":{"114":1}}],["11890",{"2":{"94":1}}],["11893",{"2":{"76":1}}],["11864",{"2":{"92":1}}],["11863",{"2":{"75":1}}],["11820",{"2":{"75":1}}],["11829",{"2":{"75":1}}],["11823",{"2":{"75":1}}],["11824",{"2":{"74":1}}],["11804",{"2":{"75":1}}],["11805",{"2":{"75":1}}],["119972",{"2":{"2387":2}}],["119",{"2":{"1686":1}}],["11988",{"2":{"93":1}}],["11981",{"2":{"72":1}}],["11978",{"2":{"86":1}}],["11927",{"2":{"77":1}}],["11928",{"2":{"76":1}}],["11930",{"2":{"107":1,"114":1}}],["11935",{"2":{"93":1}}],["11936",{"2":{"76":1}}],["11938",{"2":{"74":1}}],["11907",{"2":{"76":1}}],["11905",{"2":{"76":1}}],["11966",{"2":{"75":1}}],["11943",{"2":{"75":1}}],["11940",{"2":{"75":1}}],["11913",{"2":{"74":1}}],["11912",{"2":{"74":1}}],["11000010",{"2":{"2295":1}}],["11001000",{"2":{"2295":1}}],["110",{"2":{"1686":1,"2295":1,"2917":2,"2918":2}}],["11025u",{"2":{"719":1}}],["11036",{"2":{"134":1}}],["11083",{"2":{"93":1}}],["11059",{"2":{"134":2}}],["11055",{"2":{"93":1}}],["11057",{"2":{"74":1}}],["11046",{"2":{"74":1}}],["117",{"2":{"1022":1,"1527":1,"1686":1,"2081":1,"2183":1}}],["11727",{"2":{"93":1}}],["11728",{"2":{"73":1}}],["11793",{"2":{"77":1}}],["11750",{"2":{"75":1}}],["11751",{"2":{"75":1}}],["11768",{"2":{"74":1}}],["116",{"2":{"1527":5,"1686":1}}],["11621",{"2":{"77":1}}],["11620",{"2":{"77":1}}],["11615",{"2":{"77":1}}],["11617",{"2":{"77":1}}],["11646",{"2":{"77":1}}],["11630",{"2":{"77":1}}],["11637",{"2":{"75":1}}],["11607",{"2":{"77":1}}],["11600",{"2":{"73":1}}],["11689",{"2":{"77":1}}],["11688",{"2":{"76":1}}],["11687",{"2":{"74":1}}],["11672",{"2":{"75":1}}],["113",{"2":{"1686":1}}],["11350",{"2":{"74":1}}],["11307",{"2":{"74":1}}],["111",{"2":{"1686":1}}],["11151",{"2":{"114":1}}],["11154",{"2":{"74":1}}],["11123",{"2":{"77":1}}],["11111",{"2":{"77":1}}],["11108",{"2":{"76":1}}],["11101",{"2":{"76":1}}],["11165",{"2":{"75":1}}],["11168",{"2":{"75":1}}],["11162",{"2":{"73":1}}],["11195",{"2":{"72":1}}],["115",{"2":{"1523":2,"1686":1}}],["115200",{"2":{"1207":1,"1272":1,"2298":1}}],["11528",{"2":{"199":1}}],["11529",{"2":{"77":1}}],["11536",{"2":{"93":1}}],["11588",{"2":{"77":1}}],["11584",{"2":{"73":1}}],["11504",{"2":{"77":1}}],["11502",{"2":{"76":1}}],["11548",{"2":{"76":1}}],["11544",{"2":{"76":1}}],["11542",{"2":{"76":1}}],["11576",{"2":{"75":1}}],["11570",{"2":{"74":1}}],["11553",{"2":{"74":1}}],["11552",{"2":{"74":1}}],["11519",{"2":{"74":1}}],["11598",{"2":{"77":1}}],["11595",{"2":{"74":1}}],["11594",{"2":{"73":1}}],["114",{"2":{"1527":2,"1686":1,"1925":1,"2539":1}}],["11487",{"2":{"92":1}}],["11495",{"2":{"77":1}}],["11492",{"2":{"76":1}}],["11408",{"2":{"76":1}}],["11409",{"2":{"73":1}}],["11422",{"2":{"114":1}}],["11426",{"2":{"74":1}}],["11427",{"2":{"73":1}}],["11450",{"2":{"73":1}}],["11435",{"2":{"73":1}}],["11473",{"2":{"73":1}}],["11449",{"2":{"77":1}}],["11447",{"2":{"73":1}}],["11448",{"2":{"73":1}}],["11414",{"2":{"77":1}}],["11413",{"2":{"77":1}}],["11418",{"2":{"74":1}}],["11412",{"2":{"73":1}}],["11415",{"2":{"72":1}}],["1360",{"2":{"2587":1}}],["13606",{"2":{"114":1}}],["13697",{"2":{"114":1}}],["13696",{"2":{"114":1}}],["13695",{"2":{"114":1}}],["13692",{"2":{"114":1}}],["13691",{"2":{"114":1}}],["13690",{"2":{"114":1}}],["13698",{"2":{"114":1}}],["13668",{"2":{"114":1}}],["13667",{"2":{"114":1}}],["13665",{"2":{"114":1}}],["13664",{"2":{"114":1}}],["13658",{"2":{"114":1}}],["13653",{"2":{"114":1}}],["13633",{"2":{"114":1}}],["13688",{"2":{"114":1}}],["13687",{"2":{"114":1}}],["13686",{"2":{"114":1}}],["13685",{"2":{"114":1}}],["13684",{"2":{"114":1}}],["13681",{"2":{"114":1}}],["13689",{"2":{"114":1}}],["13680",{"2":{"114":1}}],["13648",{"2":{"114":1}}],["13647",{"2":{"114":1}}],["13646",{"2":{"114":1}}],["13645",{"2":{"114":1}}],["13649",{"2":{"114":1}}],["13641",{"2":{"114":1}}],["13629",{"2":{"114":1}}],["13677",{"2":{"114":2}}],["13672",{"2":{"114":1}}],["13671",{"2":{"114":1}}],["13676",{"2":{"114":1}}],["13673",{"2":{"113":1,"114":1}}],["135°",{"2":{"1741":1}}],["135",{"2":{"855":1,"1503":1,"1845":1}}],["13546",{"2":{"114":1}}],["13542",{"2":{"114":1}}],["13525",{"2":{"114":1}}],["13523",{"2":{"107":1,"114":1}}],["13533",{"2":{"114":1}}],["13511",{"2":{"114":1}}],["13597",{"2":{"114":1}}],["13596",{"2":{"114":1}}],["13571",{"2":{"114":1}}],["13570",{"2":{"114":1}}],["13551",{"2":{"114":1}}],["13550",{"2":{"114":1}}],["13559",{"2":{"114":1}}],["13504",{"2":{"114":1}}],["13502",{"2":{"114":1}}],["13588",{"2":{"114":1}}],["13566",{"2":{"114":1}}],["134217728",{"2":{"2508":1}}],["13425",{"2":{"114":1}}],["13471",{"2":{"114":1}}],["13470",{"2":{"114":1}}],["13404",{"2":{"114":1}}],["13405",{"2":{"114":1}}],["13403",{"2":{"114":1}}],["13481",{"2":{"114":1}}],["13480",{"2":{"114":1}}],["13442",{"2":{"114":1}}],["13457",{"2":{"114":1}}],["13454",{"2":{"114":1}}],["13450",{"2":{"114":1}}],["13433",{"2":{"114":1}}],["13430",{"2":{"114":1}}],["13418",{"2":{"107":1,"114":1}}],["13310",{"2":{"114":1}}],["13312",{"2":{"113":1,"114":1}}],["13371",{"2":{"114":1}}],["1337",{"2":{"114":1}}],["13377",{"2":{"114":1}}],["13398",{"2":{"114":1}}],["13399",{"2":{"114":1}}],["13389",{"2":{"114":1}}],["13383",{"2":{"114":1}}],["13366",{"2":{"114":1}}],["13360",{"2":{"114":1}}],["13350",{"2":{"114":1}}],["13349",{"2":{"114":1}}],["13333",{"2":{"114":1}}],["13330",{"2":{"114":2}}],["13321",{"2":{"114":1}}],["13304",{"2":{"114":1}}],["13309",{"2":{"114":1}}],["13302",{"2":{"114":1}}],["132x162",{"2":{"2753":1,"2756":1}}],["132x64",{"2":{"1949":1}}],["132",{"2":{"2387":1}}],["13286",{"2":{"154":1,"160":1}}],["13243",{"2":{"114":1}}],["13247",{"2":{"114":1}}],["13209",{"2":{"114":1}}],["13201",{"2":{"114":1}}],["13271",{"2":{"114":1}}],["13228",{"2":{"114":1}}],["13297",{"2":{"114":1}}],["13298",{"2":{"114":1}}],["13296",{"2":{"114":1}}],["13293",{"2":{"114":1}}],["13253",{"2":{"114":1}}],["13251",{"2":{"114":1}}],["13257",{"2":{"114":1}}],["13252",{"2":{"114":1}}],["13236",{"2":{"114":1}}],["13239",{"2":{"114":1}}],["13238",{"2":{"114":1}}],["13237",{"2":{"114":1}}],["131",{"2":{"1527":1}}],["13146",{"2":{"114":1}}],["13147",{"2":{"114":1}}],["13189",{"2":{"114":1}}],["13165",{"2":{"114":1}}],["13172",{"2":{"114":1}}],["13154",{"2":{"114":1}}],["13152",{"2":{"114":1}}],["13151",{"2":{"114":1}}],["13150",{"2":{"114":1}}],["13955",{"2":{"134":1}}],["13954",{"2":{"114":1}}],["13944",{"2":{"134":1}}],["13993",{"2":{"114":1}}],["13992",{"2":{"114":1}}],["13988",{"2":{"114":1}}],["13980",{"2":{"114":1}}],["13985",{"2":{"114":1}}],["13979",{"2":{"114":1}}],["13973",{"2":{"113":1,"114":1}}],["13937",{"2":{"114":1}}],["13931",{"2":{"114":1}}],["13932",{"2":{"114":1}}],["13918",{"2":{"133":1,"134":1}}],["13913",{"2":{"114":1}}],["13912",{"2":{"114":1}}],["13902",{"2":{"134":1}}],["13900",{"2":{"114":1}}],["13908",{"2":{"114":1}}],["13905",{"2":{"114":1}}],["13901",{"2":{"114":1}}],["13968",{"2":{"114":1}}],["13926",{"2":{"114":1}}],["13920",{"2":{"114":1}}],["13927",{"2":{"113":1,"114":1}}],["13810",{"2":{"114":1}}],["13819",{"2":{"114":1}}],["13886",{"2":{"114":1}}],["13885",{"2":{"114":1}}],["13872",{"2":{"114":1}}],["13877",{"2":{"114":1}}],["13838",{"2":{"114":1}}],["13831",{"2":{"114":1}}],["13832",{"2":{"114":1}}],["13830",{"2":{"114":1}}],["13826",{"2":{"114":1}}],["13821",{"2":{"114":1}}],["13823",{"2":{"114":1}}],["13850",{"2":{"114":1}}],["13890",{"2":{"133":1,"134":1}}],["13898",{"2":{"114":1}}],["13896",{"2":{"114":1}}],["13894",{"2":{"113":1,"114":1}}],["13801",{"2":{"114":1}}],["13804",{"2":{"114":1}}],["13800",{"2":{"114":1}}],["13842",{"2":{"134":1}}],["13846",{"2":{"114":1}}],["13843",{"2":{"113":1,"114":1}}],["137000",{"2":{"1207":1}}],["13706",{"2":{"114":1}}],["137kbps",{"2":{"570":1,"2275":1}}],["13789",{"2":{"134":1}}],["13724",{"2":{"114":1}}],["13722",{"2":{"114":1}}],["13720",{"2":{"114":1}}],["13728",{"2":{"114":1}}],["13799",{"2":{"114":1}}],["1375",{"2":{"1966":1}}],["13758",{"2":{"114":1}}],["13755",{"2":{"114":1}}],["13731",{"2":{"114":1}}],["13716",{"2":{"114":1}}],["13717",{"2":{"114":1}}],["13715",{"2":{"114":1}}],["13718",{"2":{"114":1}}],["13713",{"2":{"114":1}}],["13712",{"2":{"114":1}}],["13777",{"2":{"113":1,"114":1}}],["13740",{"2":{"114":1}}],["13747",{"2":{"114":1}}],["13749",{"2":{"113":1,"114":1}}],["13748",{"2":{"113":1,"114":1}}],["130",{"2":{"1527":2,"2096":1,"2910":1,"2912":1,"2918":1}}],["13056",{"2":{"114":1}}],["13098",{"2":{"114":1}}],["13089",{"2":{"114":1}}],["13081",{"2":{"107":1,"114":1}}],["13078",{"2":{"114":1}}],["13077",{"2":{"114":1}}],["13076",{"2":{"114":1}}],["13074",{"2":{"114":1}}],["13070",{"2":{"114":1}}],["13069",{"2":{"114":1}}],["13065",{"2":{"114":1}}],["13064",{"2":{"114":1}}],["13062",{"2":{"114":1}}],["13045",{"2":{"114":1}}],["13044",{"2":{"114":1}}],["13025",{"2":{"114":1}}],["13023",{"2":{"94":1}}],["13024",{"2":{"93":1}}],["13014",{"2":{"93":1}}],["13",{"2":{"70":1,"413":1,"693":1,"695":4,"1166":1,"1205":1,"1219":1,"1492":1,"1686":1,"1744":3,"1925":2,"1968":1,"2018":3,"2189":2,"2374":1,"2487":1,"2532":3,"2539":2,"2548":3,"2778":2,"2800":2}}],["175ms",{"2":{"2309":2}}],["175",{"2":{"1503":1,"2309":1}}],["17588",{"2":{"199":1}}],["17584",{"2":{"191":1}}],["17534",{"2":{"191":1}}],["17533",{"2":{"191":1}}],["17593",{"2":{"191":1}}],["17595",{"2":{"191":1}}],["17522",{"2":{"191":1}}],["17549",{"2":{"191":1}}],["17545",{"2":{"191":1}}],["17540",{"2":{"191":1}}],["17559",{"2":{"191":1}}],["17557",{"2":{"191":1}}],["17554",{"2":{"191":1}}],["17501",{"2":{"191":1}}],["17507",{"2":{"191":1}}],["17506",{"2":{"191":1}}],["17579",{"2":{"191":1}}],["17578",{"2":{"191":1}}],["17512",{"2":{"191":1}}],["17519",{"2":{"191":1}}],["17517",{"2":{"191":1}}],["17516",{"2":{"191":1}}],["17514",{"2":{"191":1}}],["174",{"2":{"251":1,"1329":2}}],["17463",{"2":{"191":1}}],["17414",{"2":{"191":1}}],["17492",{"2":{"191":1}}],["17459",{"2":{"191":2}}],["17439",{"2":{"191":1}}],["17435",{"2":{"191":1}}],["17438",{"2":{"191":2}}],["17423",{"2":{"191":2}}],["17426",{"2":{"191":1}}],["17420",{"2":{"191":1}}],["17488",{"2":{"191":1}}],["17481",{"2":{"191":1}}],["17482",{"2":{"190":2,"191":1}}],["17440",{"2":{"191":1}}],["17448",{"2":{"191":1}}],["17444",{"2":{"191":1}}],["17371",{"2":{"191":1}}],["17376",{"2":{"191":1}}],["17335",{"2":{"191":1}}],["17333",{"2":{"191":1}}],["17383",{"2":{"191":1}}],["17385",{"2":{"191":1}}],["17387",{"2":{"191":1}}],["17368",{"2":{"191":1}}],["17397",{"2":{"191":1}}],["17399",{"2":{"191":1}}],["17396",{"2":{"191":1}}],["17354",{"2":{"191":1}}],["17356",{"2":{"191":1}}],["17355",{"2":{"191":1}}],["17352",{"2":{"191":1}}],["17342",{"2":{"191":1}}],["17326",{"2":{"191":1}}],["172",{"2":{"1329":2}}],["17282",{"2":{"199":1}}],["17287",{"2":{"191":1}}],["17265",{"2":{"191":1}}],["17263",{"2":{"191":1}}],["17234",{"2":{"191":1}}],["17232",{"2":{"191":1}}],["17231",{"2":{"191":1}}],["17210",{"2":{"191":1}}],["17295",{"2":{"191":1}}],["17275",{"2":{"191":1}}],["17272",{"2":{"191":1}}],["17271",{"2":{"191":1}}],["17258",{"2":{"191":1}}],["17257",{"2":{"191":1}}],["17256",{"2":{"191":1}}],["17229",{"2":{"191":1}}],["17228",{"2":{"191":1}}],["17222",{"2":{"191":1}}],["17693",{"2":{"191":1}}],["17695",{"2":{"191":1}}],["17678",{"2":{"191":1}}],["17675",{"2":{"191":1}}],["17679",{"2":{"191":1}}],["17638",{"2":{"191":1}}],["17632",{"2":{"191":1}}],["17639",{"2":{"191":1}}],["17684",{"2":{"191":1}}],["17661",{"2":{"191":1}}],["17669",{"2":{"191":1}}],["17663",{"2":{"175":1}}],["17658",{"2":{"191":1}}],["17656",{"2":{"191":1}}],["17652",{"2":{"191":1}}],["17655",{"2":{"191":1}}],["17654",{"2":{"191":1}}],["17651",{"2":{"191":1}}],["17650",{"2":{"191":1}}],["17645",{"2":{"191":1}}],["17647",{"2":{"191":1}}],["17643",{"2":{"191":1}}],["17615",{"2":{"191":1}}],["17611",{"2":{"191":1}}],["17612",{"2":{"191":1}}],["17613",{"2":{"190":1,"191":1}}],["17601",{"2":{"191":1}}],["17607",{"2":{"191":1}}],["17603",{"2":{"191":1}}],["17602",{"2":{"191":1}}],["17915",{"2":{"199":1}}],["17911",{"2":{"191":1}}],["17999",{"2":{"191":1}}],["17996",{"2":{"191":1}}],["17989",{"2":{"191":1}}],["17905",{"2":{"191":1}}],["17904",{"2":{"191":2}}],["17923",{"2":{"191":1}}],["17936",{"2":{"191":1}}],["17931",{"2":{"191":1}}],["17935",{"2":{"175":1}}],["17940",{"2":{"182":1,"191":1}}],["17962",{"2":{"174":1,"175":1}}],["17893",{"2":{"222":1}}],["17892",{"2":{"175":1}}],["17839",{"2":{"191":1}}],["17832",{"2":{"191":1}}],["17817",{"2":{"191":1}}],["17808",{"2":{"191":1}}],["17800",{"2":{"191":1}}],["17803",{"2":{"191":1}}],["17850",{"2":{"191":1}}],["17856",{"2":{"191":1}}],["17855",{"2":{"191":1}}],["17854",{"2":{"191":1}}],["17853",{"2":{"191":1}}],["17862",{"2":{"191":1}}],["17867",{"2":{"191":1}}],["17868",{"2":{"191":1}}],["17863",{"2":{"191":1}}],["17861",{"2":{"191":1}}],["17866",{"2":{"191":1}}],["17864",{"2":{"191":1}}],["17842",{"2":{"191":1}}],["17848",{"2":{"191":1}}],["17840",{"2":{"191":1}}],["17820",{"2":{"199":1}}],["17827",{"2":{"191":1}}],["17823",{"2":{"191":1}}],["17880",{"2":{"175":1}}],["17798",{"2":{"191":1}}],["17795",{"2":{"191":1}}],["17790",{"2":{"191":1}}],["17791",{"2":{"191":1}}],["17716",{"2":{"191":1}}],["17711",{"2":{"191":1}}],["17777",{"2":{"191":1}}],["17776",{"2":{"190":1,"191":1}}],["17732",{"2":{"191":1}}],["17735",{"2":{"191":1}}],["17734",{"2":{"191":1}}],["17786",{"2":{"191":1}}],["17755",{"2":{"191":1}}],["17760",{"2":{"191":1}}],["17748",{"2":{"191":1}}],["17745",{"2":{"191":1}}],["17740",{"2":{"191":1}}],["17702",{"2":{"191":1}}],["17707",{"2":{"191":1}}],["17708",{"2":{"191":1}}],["17703",{"2":{"191":1}}],["17706",{"2":{"175":1}}],["17723",{"2":{"175":1}}],["170",{"2":{"2187":1}}],["17007",{"2":{"199":1}}],["17046",{"2":{"191":1}}],["17099",{"2":{"191":1}}],["17091",{"2":{"191":1}}],["17095",{"2":{"160":1}}],["17065",{"2":{"191":1}}],["17028",{"2":{"199":1}}],["17020",{"2":{"191":1}}],["17025",{"2":{"160":1}}],["17024",{"2":{"160":1}}],["17037",{"2":{"156":1,"160":1}}],["17184",{"2":{"191":1}}],["17189",{"2":{"175":1}}],["17174",{"2":{"191":1}}],["17178",{"2":{"191":1}}],["17176",{"2":{"190":1,"191":1}}],["17143",{"2":{"191":1}}],["17142",{"2":{"191":1}}],["17114",{"2":{"191":1}}],["17111",{"2":{"190":1,"191":1}}],["17129",{"2":{"175":1}}],["17156",{"2":{"160":1}}],["17150",{"2":{"160":1}}],["17136",{"2":{"160":1}}],["17133",{"2":{"160":1}}],["17104",{"2":{"160":1}}],["17106",{"2":{"160":1}}],["17",{"2":{"55":2,"111":2,"312":1,"413":1,"1492":1,"1527":1,"1686":1,"1744":3,"1968":1,"2018":3,"2182":2,"2454":2,"2532":3,"2548":3,"2794":2,"2877":2,"2938":1}}],["16bit",{"2":{"2892":1}}],["16bpp",{"2":{"2756":3}}],["16mb",{"2":{"2773":1}}],["16mhz",{"2":{"2484":1,"2499":2}}],["16ms",{"2":{"1852":1,"2091":1}}],["16t",{"2":{"2252":1}}],["16th",{"2":{"1493":1}}],["16k",{"2":{"925":2,"959":2,"993":2,"1027":2,"1061":2}}],["16kb",{"2":{"545":1}}],["16x2",{"2":{"1697":1,"1712":2}}],["16x",{"2":{"1684":1,"1685":1}}],["16x12",{"2":{"1214":1}}],["16x9",{"2":{"887":1}}],["16x8",{"2":{"855":1,"2757":1}}],["16c0",{"2":{"689":3,"2500":1,"2501":2}}],["16411",{"2":{"1329":1}}],["16436",{"2":{"191":1}}],["16438",{"2":{"160":1}}],["16423",{"2":{"160":1}}],["16441",{"2":{"160":1}}],["169",{"2":{"1329":2}}],["16992",{"2":{"191":1}}],["16996",{"2":{"191":1}}],["16990",{"2":{"191":1}}],["16997",{"2":{"160":1}}],["16949",{"2":{"191":1}}],["16941",{"2":{"160":1}}],["16932",{"2":{"191":1}}],["16939",{"2":{"160":1}}],["16974",{"2":{"160":1}}],["16958",{"2":{"160":1}}],["16951",{"2":{"160":2}}],["16957",{"2":{"160":1}}],["16915",{"2":{"160":1}}],["16961",{"2":{"160":1}}],["16960",{"2":{"160":1}}],["16926",{"2":{"160":1}}],["16909",{"2":{"160":1}}],["16810",{"2":{"191":1}}],["16800",{"2":{"191":1}}],["16806",{"2":{"160":1}}],["16879",{"2":{"191":1}}],["16875",{"2":{"160":1}}],["16874",{"2":{"160":1}}],["16871",{"2":{"160":1}}],["16865",{"2":{"160":1}}],["16863",{"2":{"160":1}}],["16869",{"2":{"160":1}}],["16827",{"2":{"160":1}}],["16892",{"2":{"160":1}}],["16891",{"2":{"160":1}}],["16859",{"2":{"160":2}}],["16843",{"2":{"160":1}}],["16778",{"2":{"191":1}}],["16770",{"2":{"160":1}}],["16773",{"2":{"160":1}}],["16716",{"2":{"160":1}}],["16718",{"2":{"160":1}}],["16705",{"2":{"160":1}}],["16706",{"2":{"160":1}}],["16702",{"2":{"160":1}}],["16723",{"2":{"160":1}}],["16728",{"2":{"160":1}}],["16782",{"2":{"160":1}}],["16785",{"2":{"160":1}}],["16783",{"2":{"160":1}}],["16738",{"2":{"160":1}}],["16737",{"2":{"160":1}}],["16732",{"2":{"160":1}}],["16689",{"2":{"236":1}}],["16681",{"2":{"160":1}}],["16699",{"2":{"199":1}}],["16669",{"2":{"191":1}}],["16668",{"2":{"188":1,"191":1}}],["16667",{"2":{"160":1}}],["16620",{"2":{"160":1}}],["16621",{"2":{"160":1}}],["16617",{"2":{"160":1}}],["16614",{"2":{"160":1}}],["16611",{"2":{"160":1}}],["16630",{"2":{"160":1}}],["16637",{"2":{"160":1}}],["16635",{"2":{"160":1}}],["16640",{"2":{"160":1}}],["16649",{"2":{"160":1}}],["16647",{"2":{"160":1}}],["16600",{"2":{"160":1}}],["16584",{"2":{"191":1}}],["16588",{"2":{"160":1}}],["16597",{"2":{"160":1}}],["16596",{"2":{"160":1}}],["16593",{"2":{"160":1}}],["16559",{"2":{"160":1}}],["16523",{"2":{"160":1}}],["16525",{"2":{"160":1}}],["16505",{"2":{"160":1}}],["16516",{"2":{"160":1}}],["16518",{"2":{"160":1}}],["16561",{"2":{"160":1}}],["16543",{"2":{"160":1}}],["16303",{"2":{"1329":1}}],["16300",{"2":{"149":1}}],["16384",{"2":{"757":2}}],["16384u",{"2":{"719":1}}],["16394",{"2":{"191":1}}],["16336",{"2":{"191":1}}],["16339",{"2":{"160":1}}],["16337",{"2":{"160":1}}],["16331",{"2":{"160":1}}],["16359",{"2":{"149":1}}],["16358",{"2":{"149":1}}],["16357",{"2":{"149":1}}],["16348",{"2":{"149":1}}],["16315",{"2":{"160":1}}],["16316",{"2":{"149":1}}],["16312",{"2":{"149":1}}],["16371",{"2":{"190":2,"191":1}}],["16370",{"2":{"160":1}}],["16378",{"2":{"149":1}}],["16376",{"2":{"149":1}}],["162",{"2":{"1247":1}}],["16269",{"2":{"160":1}}],["16266",{"2":{"160":1}}],["16268",{"2":{"149":1}}],["16292",{"2":{"149":1}}],["16290",{"2":{"149":1}}],["16276",{"2":{"149":1}}],["16277",{"2":{"149":1}}],["16230",{"2":{"149":1}}],["16208",{"2":{"149":1}}],["16287",{"2":{"191":1}}],["16282",{"2":{"149":1}}],["16280",{"2":{"149":1}}],["16257",{"2":{"160":1}}],["16251",{"2":{"160":1}}],["16256",{"2":{"149":1}}],["16252",{"2":{"149":1}}],["16254",{"2":{"149":1}}],["16215",{"2":{"149":1}}],["16217",{"2":{"149":1}}],["16228",{"2":{"149":1}}],["16222",{"2":{"149":1}}],["16225",{"2":{"149":1}}],["16221",{"2":{"149":1}}],["16220",{"2":{"149":2}}],["16188",{"2":{"149":1}}],["16181",{"2":{"149":1}}],["16185",{"2":{"149":1}}],["16163",{"2":{"191":1}}],["16168",{"2":{"149":1}}],["16167",{"2":{"149":1}}],["16166",{"2":{"149":1}}],["16162",{"2":{"149":1}}],["16157",{"2":{"149":1}}],["16135",{"2":{"149":1}}],["16134",{"2":{"149":1}}],["16128",{"2":{"149":1}}],["16127",{"2":{"149":1}}],["16114",{"2":{"160":1}}],["16116",{"2":{"149":1}}],["16113",{"2":{"149":1}}],["16112",{"2":{"149":1}}],["16107",{"2":{"149":1}}],["16109",{"2":{"149":1}}],["16108",{"2":{"149":1}}],["16102",{"2":{"149":1}}],["16100",{"2":{"149":1}}],["16190",{"2":{"149":1}}],["16038",{"2":{"160":1}}],["16032",{"2":{"149":1}}],["16039",{"2":{"149":1}}],["16000",{"2":{"1983":1}}],["16000000",{"2":{"573":1}}],["1600",{"2":{"1978":2,"1983":1}}],["16004",{"2":{"160":1}}],["16001",{"2":{"149":1}}],["16007",{"2":{"149":1}}],["16002",{"2":{"149":1}}],["16095",{"2":{"160":1}}],["16099",{"2":{"149":1}}],["16096",{"2":{"149":1}}],["16091",{"2":{"149":1}}],["16084",{"2":{"160":1}}],["16086",{"2":{"160":1}}],["16089",{"2":{"149":1}}],["16082",{"2":{"149":1}}],["16081",{"2":{"149":1}}],["16080",{"2":{"149":1}}],["16087",{"2":{"149":1}}],["16076",{"2":{"172":1,"175":1}}],["16075",{"2":{"149":1}}],["16072",{"2":{"149":1}}],["16070",{"2":{"149":1}}],["16054",{"2":{"149":1}}],["16059",{"2":{"149":1}}],["16053",{"2":{"149":1}}],["16050",{"2":{"149":1}}],["16051",{"2":{"149":1}}],["16044",{"2":{"149":1}}],["16041",{"2":{"149":1}}],["16040",{"2":{"149":1}}],["16068",{"2":{"160":1}}],["16067",{"2":{"149":1}}],["16063",{"2":{"149":1}}],["1602a",{"2":{"1697":1}}],["16027",{"2":{"149":1}}],["16026",{"2":{"149":1}}],["16028",{"2":{"149":1}}],["16025",{"2":{"149":1}}],["16023",{"2":{"149":1}}],["16020",{"2":{"149":1}}],["16017",{"2":{"149":1}}],["16016",{"2":{"149":1}}],["16015",{"2":{"149":1}}],["16",{"0":{"44":1,"181":1,"1368":1},"2":{"44":2,"63":1,"134":1,"149":1,"181":2,"191":1,"236":1,"339":2,"402":1,"413":1,"604":1,"660":2,"695":4,"729":2,"788":1,"794":1,"922":1,"925":2,"957":1,"959":2,"962":1,"993":2,"1027":2,"1061":2,"1093":1,"1127":1,"1161":1,"1299":1,"1300":2,"1368":5,"1417":1,"1423":1,"1492":1,"1527":1,"1532":2,"1538":2,"1539":1,"1609":1,"1686":1,"1699":1,"1702":2,"1740":2,"1744":3,"1757":1,"1846":2,"1852":3,"1925":2,"1935":1,"1936":2,"1937":4,"1939":3,"1948":1,"1952":1,"1968":1,"2018":3,"2082":2,"2086":1,"2091":5,"2240":1,"2250":1,"2252":1,"2289":1,"2329":1,"2389":1,"2485":1,"2487":1,"2508":17,"2532":3,"2539":2,"2548":3,"2557":1,"2562":1,"2573":1,"2575":1,"2653":1,"2755":3,"2756":2,"2757":1,"2776":1,"2871":4,"2878":6,"2892":1,"2949":1}}],["10glbprf",{"2":{"2295":1}}],["10kohm",{"2":{"2267":1}}],["10kω",{"2":{"1297":1}}],["10ms",{"2":{"1974":1,"2912":1}}],["10µf",{"2":{"1697":1}}],["103",{"2":{"1686":1}}],["10388",{"2":{"63":1}}],["10bits",{"2":{"701":1}}],["10bit",{"2":{"701":1}}],["109",{"2":{"1686":1}}],["10904",{"2":{"114":1}}],["10997",{"2":{"74":1}}],["10976",{"2":{"77":1}}],["10973",{"2":{"72":1}}],["10974",{"2":{"65":1}}],["10972",{"2":{"65":1}}],["106",{"2":{"1686":1}}],["10638",{"2":{"65":1}}],["10622",{"2":{"63":1}}],["108",{"2":{"1527":1,"1686":1}}],["10817",{"2":{"76":1}}],["10894",{"2":{"75":1}}],["10807",{"2":{"74":1}}],["10800",{"2":{"62":1}}],["10840",{"2":{"65":1}}],["10824",{"2":{"65":1}}],["10837",{"2":{"64":1}}],["104",{"2":{"1527":2,"1686":1}}],["10419",{"2":{"92":1}}],["10418",{"2":{"77":1}}],["10417",{"2":{"65":1}}],["10400",{"2":{"74":1}}],["10437",{"2":{"73":1}}],["10438",{"2":{"65":1}}],["10439",{"2":{"63":1}}],["10420",{"2":{"65":1}}],["10491",{"2":{"64":1}}],["107",{"2":{"1686":1}}],["10730",{"2":{"74":1}}],["10735",{"2":{"64":1}}],["10767",{"2":{"65":1}}],["10716",{"2":{"65":1}}],["10750",{"2":{"64":1}}],["10706",{"2":{"63":1}}],["105",{"2":{"1527":1,"1686":1}}],["10533",{"2":{"114":1}}],["10530",{"2":{"65":1}}],["10528",{"2":{"72":1}}],["10524",{"2":{"64":1}}],["10563",{"2":{"65":1}}],["10549",{"2":{"63":1}}],["102",{"2":{"1686":1,"1925":1,"2539":1}}],["102559237",{"2":{"1359":1}}],["10259",{"2":{"63":1}}],["1024",{"2":{"748":1,"757":6,"759":3,"1974":1,"2508":2,"2754":1}}],["1023",{"2":{"690":1,"1968":1}}],["10231",{"2":{"65":1}}],["10214",{"2":{"65":1}}],["10206",{"2":{"65":1}}],["10204",{"2":{"63":1}}],["10260",{"2":{"63":1}}],["10",{"0":{"1375":1},"2":{"55":1,"73":1,"111":2,"114":1,"413":1,"561":1,"570":1,"604":1,"643":1,"690":1,"693":1,"695":4,"701":3,"744":1,"768":1,"772":1,"1361":1,"1412":1,"1484":1,"1492":1,"1527":1,"1538":2,"1539":1,"1627":1,"1667":1,"1686":4,"1740":2,"1744":3,"1925":3,"1935":3,"1936":1,"1968":2,"1970":1,"1980":1,"1986":1,"2003":2,"2018":3,"2187":2,"2189":1,"2275":1,"2278":1,"2303":4,"2327":1,"2386":1,"2454":1,"2485":2,"2487":3,"2494":1,"2502":1,"2532":3,"2539":3,"2548":3,"2757":1,"2858":1,"2877":2,"2880":2,"2912":1,"2937":1}}],["10101100",{"2":{"2295":1}}],["10101000",{"2":{"2295":1}}],["10103",{"2":{"40":1}}],["101",{"2":{"218":1,"1527":2,"1686":1,"1968":1}}],["10174",{"2":{"160":1}}],["10171",{"2":{"93":1}}],["10179",{"2":{"63":1}}],["10183",{"2":{"63":1}}],["10127",{"2":{"40":1}}],["10129",{"2":{"40":1}}],["10169",{"2":{"39":1}}],["100ms",{"2":{"2791":2}}],["100ma",{"2":{"134":1}}],["100644",{"2":{"2387":1}}],["100k",{"2":{"1365":1}}],["10088",{"2":{"62":1,"114":1}}],["1000ms",{"2":{"1462":1,"1686":1}}],["1000",{"2":{"120":1,"1420":1,"1441":1,"1448":1,"1462":1,"1801":1,"1936":1,"1939":2,"1978":2,"1981":1,"1997":1,"2003":2,"2046":1,"2882":1}}],["10000000",{"2":{"2296":3}}],["1000000",{"2":{"1974":1}}],["100000l",{"2":{"561":2}}],["100000",{"2":{"44":1,"769":1,"1365":1}}],["10008",{"2":{"40":1}}],["10053",{"2":{"40":1}}],["10040",{"2":{"40":1}}],["100",{"0":{"2307":1,"2314":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"15":2,"273":1,"564":2,"570":1,"720":2,"744":2,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1291":1,"1466":1,"1488":1,"1583":1,"1586":1,"1588":1,"1681":1,"1686":1,"1936":1,"1939":1,"1968":3,"1980":1,"1982":2,"1983":2,"2003":2,"2187":2,"2275":1,"2314":1,"2387":7,"2454":2,"2502":3,"2615":2,"2685":1,"2757":2,"2791":1,"2858":2,"2883":2,"2911":2}}],["1",{"0":{"298":3,"407":1,"596":1,"1297":1,"2314":1,"2469":1,"2601":1,"2619":1},"2":{"35":3,"43":1,"47":1,"90":2,"102":1,"105":2,"114":5,"120":2,"134":1,"149":1,"160":1,"168":1,"175":2,"183":1,"184":1,"187":1,"191":1,"195":1,"197":2,"199":2,"210":1,"212":4,"222":6,"231":1,"236":1,"247":1,"249":3,"259":1,"266":14,"272":2,"294":3,"298":3,"307":1,"308":2,"339":1,"341":1,"348":1,"354":2,"379":4,"383":3,"412":2,"512":1,"522":1,"523":1,"524":2,"532":1,"558":1,"570":2,"588":1,"589":6,"593":6,"632":1,"657":1,"675":1,"693":1,"695":22,"696":1,"699":4,"701":3,"716":1,"719":1,"721":1,"726":1,"748":1,"749":2,"755":1,"766":1,"768":1,"828":2,"857":2,"859":1,"860":4,"889":2,"893":2,"921":4,"924":2,"925":2,"956":2,"958":2,"959":2,"990":2,"992":2,"993":2,"1024":3,"1026":1,"1027":2,"1058":2,"1060":1,"1061":2,"1092":4,"1095":4,"1126":4,"1129":4,"1160":2,"1162":1,"1163":4,"1197":1,"1207":1,"1216":2,"1252":1,"1285":1,"1286":1,"1295":1,"1303":1,"1316":1,"1329":5,"1357":2,"1368":3,"1377":1,"1390":1,"1395":1,"1405":1,"1409":4,"1417":10,"1420":1,"1423":4,"1431":1,"1441":1,"1448":1,"1471":1,"1474":1,"1483":2,"1486":2,"1492":1,"1493":5,"1514":1,"1522":2,"1544":2,"1553":16,"1554":7,"1589":1,"1591":1,"1600":1,"1603":1,"1604":2,"1612":1,"1625":2,"1633":1,"1638":26,"1641":3,"1654":2,"1655":1,"1656":1,"1657":3,"1661":7,"1664":3,"1667":1,"1668":2,"1670":1,"1672":1,"1678":1,"1681":2,"1684":3,"1685":5,"1686":1,"1687":1,"1695":1,"1702":2,"1712":1,"1741":5,"1743":2,"1744":3,"1747":2,"1766":2,"1779":1,"1781":1,"1836":2,"1838":2,"1843":2,"1846":6,"1849":1,"1850":2,"1866":1,"1925":32,"1933":4,"1935":4,"1936":1,"1937":9,"1939":4,"1949":1,"1953":3,"1954":2,"1974":1,"1979":1,"1983":5,"1985":1,"1986":5,"1990":1,"2003":1,"2012":2,"2013":1,"2018":3,"2041":3,"2043":13,"2046":4,"2047":1,"2048":2,"2059":4,"2076":1,"2082":6,"2085":1,"2088":2,"2095":1,"2108":1,"2183":7,"2185":3,"2189":1,"2190":1,"2191":6,"2198":2,"2206":1,"2207":1,"2244":1,"2252":1,"2254":1,"2262":1,"2275":2,"2290":1,"2295":1,"2296":4,"2298":1,"2300":3,"2301":2,"2303":16,"2305":1,"2315":4,"2316":1,"2317":1,"2318":1,"2319":1,"2322":1,"2331":1,"2365":1,"2374":1,"2377":1,"2381":1,"2387":13,"2410":1,"2424":1,"2450":1,"2454":8,"2455":8,"2466":12,"2468":1,"2508":3,"2510":2,"2515":2,"2518":2,"2522":9,"2528":1,"2530":4,"2532":3,"2535":1,"2539":32,"2540":4,"2548":3,"2557":2,"2558":7,"2563":1,"2572":1,"2573":1,"2583":1,"2632":1,"2634":8,"2652":2,"2669":1,"2685":1,"2691":1,"2694":1,"2695":1,"2714":2,"2717":1,"2721":16,"2728":1,"2751":1,"2754":1,"2756":11,"2765":1,"2768":4,"2772":1,"2774":1,"2776":3,"2777":2,"2792":2,"2795":10,"2796":9,"2799":1,"2825":1,"2840":1,"2856":1,"2857":2,"2863":1,"2867":1,"2869":3,"2871":1,"2877":2,"2878":1,"2879":2,"2880":1,"2882":3,"2910":1,"2912":1,"2919":1,"2920":1,"2921":1,"2927":2,"2937":1,"2940":1,"2950":1}}],["8bpp",{"2":{"2776":2}}],["8bit",{"2":{"181":1,"1473":1,"2892":1}}],["8px",{"2":{"2757":2}}],["8t",{"2":{"2252":1}}],["86",{"2":{"1686":1}}],["8x",{"2":{"1684":1,"1685":1}}],["8xv1",{"2":{"222":1}}],["81",{"2":{"1162":1,"1686":1,"1924":1}}],["8192",{"2":{"749":1,"750":1,"756":1}}],["8k4",{"2":{"921":1,"924":2,"956":1,"958":2,"990":1,"992":2}}],["8k",{"2":{"860":2,"925":2,"959":2,"993":2,"1027":2,"1058":2,"1061":4,"1095":2,"1129":2,"1163":2}}],["8mhz",{"2":{"328":1,"2499":2}}],["87",{"2":{"1686":1}}],["87h",{"2":{"266":1}}],["8777",{"2":{"39":1}}],["8778",{"2":{"39":1}}],["8l",{"2":{"222":1}}],["80x160",{"2":{"2753":1,"2756":1}}],["80k",{"2":{"859":1}}],["8000",{"2":{"1996":1,"1997":1}}],["800",{"2":{"658":1,"1967":1,"1978":1,"1983":2}}],["800ms",{"2":{"658":1}}],["800khz",{"2":{"285":1}}],["80",{"2":{"210":1,"564":2,"859":1,"1455":1,"1686":16,"1924":3,"1935":1,"2756":3,"2757":2,"2854":2}}],["8|16|32",{"2":{"181":1}}],["88",{"2":{"1686":1}}],["88200u",{"2":{"719":1}}],["8893",{"2":{"65":1}}],["8830",{"2":{"27":1}}],["8200",{"2":{"1967":1}}],["82",{"2":{"1686":1,"1924":1,"1968":1}}],["8237",{"2":{"589":1}}],["8236",{"2":{"381":1}}],["8291",{"2":{"39":1}}],["8256",{"2":{"39":1}}],["8269",{"2":{"14":1}}],["8",{"2":{"39":1,"74":1,"111":1,"114":1,"181":1,"199":1,"222":2,"285":1,"354":2,"379":1,"413":1,"565":1,"589":2,"660":1,"693":1,"695":4,"701":2,"717":1,"719":2,"755":1,"759":1,"785":1,"791":1,"860":2,"893":1,"924":1,"925":2,"958":1,"959":2,"992":1,"993":2,"1026":1,"1027":2,"1030":1,"1060":1,"1061":2,"1064":1,"1095":2,"1098":1,"1129":2,"1163":2,"1166":1,"1197":1,"1252":1,"1300":1,"1303":1,"1413":1,"1417":1,"1420":1,"1423":1,"1492":1,"1527":2,"1532":2,"1538":1,"1609":3,"1625":2,"1685":1,"1686":1,"1702":3,"1720":1,"1722":1,"1740":2,"1741":1,"1742":1,"1744":3,"1747":1,"1788":1,"1852":1,"1925":3,"1926":1,"1930":1,"1933":2,"1934":2,"1935":2,"1936":3,"1939":1,"1947":2,"1949":1,"1952":2,"1953":3,"1954":2,"1968":1,"1971":1,"1990":2,"1994":2,"2018":3,"2043":1,"2091":1,"2182":1,"2186":2,"2189":2,"2207":1,"2238":1,"2242":1,"2251":1,"2252":1,"2286":2,"2288":1,"2289":2,"2296":1,"2298":1,"2301":1,"2303":4,"2332":1,"2344":1,"2386":1,"2498":1,"2507":1,"2508":3,"2510":2,"2515":4,"2518":2,"2522":8,"2532":3,"2539":3,"2540":2,"2548":3,"2552":1,"2557":2,"2562":1,"2563":1,"2573":1,"2656":1,"2754":1,"2755":3,"2757":3,"2765":1,"2772":1,"2778":2,"2795":2,"2796":1,"2803":1,"2871":1,"2877":2,"2878":1,"2892":1,"2929":1}}],["85",{"2":{"1527":1,"1686":1,"1968":1,"2187":1}}],["8591",{"2":{"114":2,"1605":1}}],["8532",{"2":{"94":1}}],["8537",{"2":{"27":1}}],["8564",{"2":{"63":1}}],["8582",{"2":{"25":1}}],["84",{"2":{"1686":1}}],["8422",{"2":{"133":1,"134":1}}],["8403",{"2":{"93":1}}],["8441",{"2":{"39":1}}],["8499",{"2":{"27":1}}],["8412",{"2":{"27":1}}],["8472",{"2":{"23":1}}],["8484",{"2":{"17":1}}],["89",{"2":{"1686":1,"1925":1,"1968":1,"2539":1}}],["8936",{"2":{"460":1,"611":1}}],["8979",{"2":{"28":1}}],["8977",{"2":{"28":1}}],["8974",{"2":{"18":1}}],["8968",{"2":{"28":1}}],["8959",{"2":{"28":1}}],["8958",{"2":{"28":1}}],["8957",{"2":{"28":1}}],["8954",{"2":{"28":1}}],["8903",{"2":{"18":1}}],["83",{"2":{"251":1,"1686":1,"1924":1}}],["8327",{"2":{"40":1}}],["8321",{"2":{"11":1}}],["8318",{"2":{"39":1}}],["8348",{"2":{"12":1}}],["6=128",{"2":{"1954":1}}],["69",{"2":{"1686":1}}],["61",{"2":{"1686":1,"2790":1}}],["67",{"2":{"1352":1,"1686":1}}],["6739",{"2":{"74":1}}],["63",{"2":{"429":1,"1162":1,"1686":1,"1924":1,"1975":1,"2187":1,"2790":2}}],["6pad",{"2":{"266":1}}],["6kro",{"2":{"236":1,"285":1,"1356":1,"1366":2,"2839":1}}],["68",{"2":{"210":1,"222":1,"1686":1,"1968":1}}],["6x",{"2":{"1684":1,"1685":1}}],["6x13",{"2":{"249":1}}],["6x7",{"2":{"210":2}}],["6x6",{"2":{"205":1,"210":1}}],["6ball",{"2":{"143":2}}],["66",{"2":{"122":2,"149":1,"222":1,"379":1,"429":4,"434":2,"454":1,"455":1,"473":3,"474":2,"483":1,"484":1,"485":2,"1090":1,"1686":1,"2081":1,"2448":2,"2449":1,"2450":6,"2560":1,"2583":3,"2584":1,"2629":7,"2851":2,"2852":1}}],["64x48",{"2":{"1952":2}}],["64x32",{"2":{"1952":2}}],["64x128",{"2":{"1943":2,"1952":3}}],["64kb",{"2":{"755":2}}],["64kb+",{"2":{"545":1}}],["64u",{"2":{"719":2}}],["64",{"2":{"158":1,"750":1,"751":1,"759":1,"861":1,"919":1,"1214":1,"1300":1,"1527":1,"1538":1,"1686":1,"1743":1,"1846":5,"1924":1,"1925":1,"1953":1,"2081":2,"2082":5,"2187":1,"2387":1,"2445":1,"2449":1,"2490":1,"2506":2,"2508":1,"2539":1,"2622":2,"2871":1,"2878":1}}],["6490",{"2":{"114":1}}],["6480",{"2":{"15":1}}],["600ºf",{"2":{"2427":1}}],["600",{"2":{"1978":1}}],["60000ms",{"2":{"1949":1,"2288":1}}],["60000",{"2":{"1792":1,"1949":1,"2217":1,"2288":1,"2879":1}}],["6000",{"2":{"665":1}}],["60hz",{"2":{"1935":1}}],["60fps",{"2":{"1852":1,"1939":1,"2091":1}}],["60f",{"2":{"1493":1}}],["606",{"2":{"1357":2}}],["6068",{"2":{"131":1,"134":1}}],["60",{"0":{"1320":1},"2":{"51":2,"143":2,"205":2,"210":1,"222":6,"236":1,"257":1,"258":1,"259":2,"260":1,"266":1,"285":1,"429":1,"444":1,"566":1,"1056":1,"1368":1,"1433":3,"1434":3,"1671":1,"1686":17,"1792":1,"1935":1,"1939":3,"1968":1,"2081":1,"2187":1,"2450":1,"2453":1,"2471":1,"2714":1,"2799":1,"2869":6}}],["650",{"2":{"2003":1}}],["65536",{"2":{"755":1,"2508":1}}],["65keys",{"2":{"241":2}}],["6580",{"2":{"93":1}}],["65",{"2":{"44":1,"67":2,"191":1,"222":6,"236":1,"308":1,"1493":1,"1686":1,"1968":1,"2241":1,"2425":1,"2714":2,"2755":1}}],["6",{"0":{"81":1,"601":1,"2319":1},"2":{"13":1,"81":1,"93":1,"114":1,"131":1,"134":1,"172":1,"175":1,"191":1,"222":1,"339":1,"379":1,"551":1,"561":1,"565":2,"570":2,"589":2,"693":1,"695":4,"699":2,"701":1,"717":1,"718":1,"772":1,"800":1,"1026":1,"1060":1,"1492":1,"1493":1,"1527":1,"1544":1,"1609":2,"1625":2,"1655":3,"1684":1,"1685":1,"1686":1,"1702":1,"1738":1,"1740":1,"1741":2,"1744":3,"1925":7,"1933":2,"1949":1,"1953":2,"1971":1,"2018":3,"2057":1,"2081":1,"2183":1,"2189":3,"2191":2,"2205":1,"2207":1,"2277":1,"2278":2,"2288":1,"2296":2,"2301":1,"2303":4,"2418":1,"2507":1,"2510":2,"2515":3,"2518":2,"2522":9,"2532":3,"2539":7,"2540":2,"2548":3,"2563":1,"2755":1,"2768":1,"2769":1,"2776":2,"2795":2,"2796":1,"2800":6,"2804":1,"2837":1,"2838":1,"2857":2,"2863":3,"2927":1}}],["62key",{"2":{"226":1}}],["6259",{"2":{"39":1}}],["6260",{"2":{"20":1}}],["62",{"2":{"11":1,"1686":1,"1968":1,"2790":1}}],["3akeyboard",{"2":{"2728":1}}],["3aclosed+label",{"2":{"2728":1}}],["3apr+is",{"2":{"2728":1}}],["3d",{"2":{"2435":1}}],["3+0",{"2":{"1968":1}}],["3=5",{"2":{"1954":1}}],["3|128",{"2":{"1538":1}}],["34",{"2":{"1492":1,"1686":1,"1968":1}}],["3b",{"2":{"1371":1}}],["35",{"2":{"1492":1,"1527":1,"1686":1,"1968":1,"2454":1,"2634":1}}],["3500",{"2":{"1981":1}}],["350",{"2":{"1285":1,"1800":1}}],["351",{"2":{"1022":1,"1845":1}}],["384",{"2":{"2329":1}}],["38400",{"2":{"1207":1,"1272":1}}],["38",{"2":{"1492":1,"1686":1,"1846":1,"1925":1,"1968":1,"2082":1,"2539":1}}],["38u",{"2":{"770":1}}],["3k63",{"2":{"1162":1}}],["3k6",{"2":{"1026":1,"1060":1}}],["3key",{"2":{"143":2}}],["3v3",{"2":{"2499":2}}],["3v",{"2":{"689":2,"690":2,"1296":1,"1297":1,"1298":1,"1697":1,"1739":1,"2261":1,"2507":1,"2679":1,"2680":1,"2689":1,"2690":2,"2691":3}}],["3rd",{"2":{"516":1,"609":1}}],["39000",{"2":{"1207":1}}],["39x9",{"2":{"1022":1}}],["39kbps",{"2":{"570":1,"2275":1}}],["39",{"2":{"381":2,"1492":1,"1686":1}}],["333c30605e739ce9bedee5999fdaf81b",{"2":{"2508":1}}],["33s",{"2":{"2502":1}}],["3389",{"0":{"1983":1},"2":{"1983":3}}],["3300",{"2":{"744":1,"2858":1}}],["33",{"2":{"413":1,"1492":1,"1686":1,"1968":1,"2757":6}}],["3325",{"0":{"1982":1},"2":{"339":1,"1982":1}}],["3360",{"0":{"1983":1},"2":{"118":1,"1983":3}}],["316",{"2":{"1331":4}}],["313",{"2":{"1331":1}}],["315ºc",{"2":{"2427":1}}],["315°",{"2":{"1741":1}}],["315",{"2":{"1331":1}}],["314b",{"2":{"689":1}}],["31",{"0":{"309":1,"334":1},"1":{"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"335":1,"336":1,"337":1,"338":1,"339":1},"2":{"231":4,"285":1,"400":1,"402":1,"413":3,"561":1,"704":2,"713":1,"1353":1,"1492":1,"1544":1,"1686":1,"1744":3,"1752":1,"1754":1,"1968":1,"2018":3,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2187":1,"2508":13,"2532":3,"2548":3,"2557":2,"2558":5,"2855":2,"2857":1}}],["3x",{"2":{"1684":1,"1685":1,"1974":1}}],["3x5+3",{"2":{"249":1}}],["3x5",{"2":{"205":1,"210":2,"249":1,"311":10,"317":2,"1590":1}}],["3x8",{"2":{"143":2}}],["3x7",{"2":{"143":2}}],["3x6",{"2":{"143":2,"311":8,"317":1}}],["360",{"2":{"1937":1,"2757":1,"2777":1}}],["36",{"2":{"143":2,"222":1,"826":1,"1686":1,"1845":1,"1968":1,"2424":1}}],["37",{"2":{"1492":1,"1686":1,"1846":1,"1968":1,"2082":1}}],["3731",{"2":{"236":1}}],["3733",{"2":{"134":1}}],["3741",{"2":{"236":1}}],["378",{"2":{"222":1}}],["378edd9",{"2":{"73":1}}],["3700",{"2":{"57":2}}],["320",{"2":{"2757":3}}],["320x480",{"2":{"2753":2}}],["3204",{"0":{"1978":1},"2":{"1978":2}}],["3286",{"2":{"2490":1}}],["328p",{"2":{"235":1}}],["32k",{"2":{"857":1,"859":2,"925":2,"959":2,"993":2,"1024":2,"1027":4,"1061":2}}],["32kb",{"2":{"753":2}}],["32kb+",{"2":{"545":1}}],["32u2",{"2":{"767":1,"1247":1,"1268":1,"1553":1,"1554":1}}],["32u4rc",{"2":{"2389":1}}],["32u4",{"2":{"222":1,"322":1,"546":1,"689":4,"693":1,"767":1,"1268":1,"1553":1,"1554":1,"2375":2,"2499":4}}],["32bit",{"2":{"647":1}}],["32730",{"2":{"2502":4}}],["32767",{"2":{"564":2,"1985":4}}],["3270",{"2":{"114":1,"218":8}}],["3222",{"0":{"1979":1},"2":{"328":1,"1979":1}}],["32",{"0":{"181":1},"2":{"63":1,"120":1,"231":1,"277":1,"339":1,"413":1,"565":1,"749":1,"750":1,"859":1,"925":2,"954":1,"959":2,"993":2,"1027":2,"1061":2,"1300":1,"1417":1,"1418":1,"1423":1,"1441":1,"1492":1,"1609":1,"1686":1,"1738":1,"1740":1,"1846":2,"1936":1,"1937":2,"1939":3,"1952":2,"1968":1,"2018":3,"2057":1,"2058":1,"2059":1,"2062":2,"2064":2,"2081":1,"2082":2,"2086":1,"2189":2,"2238":1,"2250":1,"2252":1,"2277":1,"2288":1,"2289":2,"2444":1,"2548":3,"2557":2,"2558":1,"2573":1,"2586":1,"2689":1,"2802":1,"2871":1,"2877":1,"2878":1}}],["3",{"0":{"81":1,"598":1,"1373":1,"2307":1,"2316":1,"2471":1,"2603":1,"2628":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"13":1,"43":1,"69":1,"70":1,"76":1,"81":1,"93":1,"114":2,"120":2,"122":2,"131":1,"134":3,"149":1,"172":1,"175":1,"191":3,"199":1,"205":1,"210":1,"222":1,"236":1,"240":1,"251":1,"266":6,"294":1,"307":1,"311":6,"354":1,"379":1,"399":1,"412":1,"420":5,"421":5,"514":1,"551":3,"561":1,"570":1,"581":1,"589":2,"593":6,"599":1,"641":1,"665":1,"684":1,"689":1,"690":2,"693":1,"695":22,"696":1,"716":2,"732":1,"759":1,"828":2,"834":1,"857":2,"866":1,"889":2,"893":1,"896":1,"921":4,"931":1,"956":2,"965":1,"990":2,"999":1,"1024":2,"1026":1,"1033":1,"1058":2,"1060":1,"1067":1,"1092":4,"1101":1,"1126":4,"1135":1,"1160":2,"1162":1,"1169":1,"1198":1,"1201":1,"1207":1,"1216":2,"1222":1,"1252":1,"1296":1,"1297":1,"1298":1,"1346":1,"1373":1,"1441":1,"1470":1,"1474":1,"1492":1,"1538":2,"1544":1,"1553":4,"1554":2,"1556":1,"1598":1,"1622":1,"1625":2,"1657":1,"1667":1,"1670":1,"1684":4,"1685":3,"1686":1,"1697":1,"1702":1,"1739":1,"1740":1,"1741":2,"1744":3,"1803":2,"1843":2,"1846":1,"1849":1,"1925":31,"1933":2,"1937":3,"1951":1,"1953":3,"1954":1,"1967":1,"1971":1,"1974":1,"2018":3,"2043":2,"2047":2,"2082":1,"2085":2,"2183":4,"2185":1,"2189":1,"2190":1,"2191":2,"2205":1,"2206":1,"2207":3,"2259":1,"2261":1,"2264":1,"2266":1,"2267":1,"2275":1,"2296":2,"2298":1,"2301":1,"2303":16,"2309":1,"2315":4,"2317":1,"2322":1,"2377":1,"2416":1,"2450":1,"2454":4,"2455":4,"2465":1,"2466":3,"2507":3,"2510":2,"2515":2,"2518":2,"2522":9,"2528":1,"2532":3,"2539":31,"2540":2,"2548":3,"2563":1,"2573":1,"2580":1,"2582":2,"2632":1,"2634":1,"2658":1,"2680":1,"2689":1,"2690":2,"2691":3,"2695":1,"2721":16,"2756":26,"2776":2,"2777":1,"2795":9,"2796":8,"2825":1,"2857":1,"2877":1,"2879":1,"2903":1,"2919":1,"2932":1,"2938":1}}],["30fps",{"2":{"2757":6}}],["30x6",{"2":{"1056":1}}],["300",{"2":{"564":2,"1800":1,"1801":1,"1939":1,"1971":2,"2048":1,"2291":1,"2870":2}}],["30000",{"2":{"1579":1,"2754":1,"2858":1}}],["3000",{"2":{"266":1,"570":1,"1598":1,"1936":1,"2278":1}}],["30",{"0":{"0":1,"9":1,"318":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1},"2":{"114":1,"191":1,"400":1,"401":1,"402":2,"413":4,"561":1,"1492":1,"1686":8,"1744":3,"1935":1,"1947":1,"1968":1,"2018":3,"2085":2,"2096":1,"2187":2,"2286":1,"2508":4,"2532":3,"2548":3,"2557":1,"2558":4,"2567":1,"2858":1,"2872":2}}],["vqge7ok",{"2":{"2728":2}}],["vbat",{"2":{"2677":1}}],["vbus",{"2":{"1396":2,"1397":1,"2278":1,"2279":4,"2280":2,"2678":1}}],["v60",{"2":{"2449":1}}],["v=vkrppahlisy",{"2":{"2187":1}}],["vlc",{"2":{"2522":1}}],["vl",{"2":{"2508":1}}],["vl9",{"2":{"1925":1,"2539":1}}],["vl8",{"2":{"1925":1,"2539":1}}],["vl7",{"2":{"1925":1,"2539":1}}],["vl6",{"2":{"1925":1,"2539":1}}],["vl5",{"2":{"1925":1,"2539":1}}],["vl4",{"2":{"1925":1,"2539":1}}],["vl3",{"2":{"1925":1,"2539":1}}],["vl2",{"2":{"1925":1,"2539":1}}],["vl10",{"2":{"1925":1,"2539":1}}],["vl1",{"2":{"1925":1,"2539":1}}],["vl0",{"2":{"1925":1,"2539":1}}],["vlk",{"2":{"172":1,"175":1}}],["vddio",{"2":{"1217":1}}],["vdd",{"2":{"1194":1,"1197":1,"1200":1}}],["vcs",{"2":{"2601":2}}],["vcc",{"2":{"690":1,"805":1,"829":1,"831":1,"858":1,"890":1,"922":8,"957":8,"991":1,"1025":1,"1059":1,"1093":8,"1127":8,"1161":8,"1297":2,"1681":1,"1838":1,"2208":1,"2265":1,"2266":1,"2267":1,"2399":1,"2401":1,"2404":1,"2431":1,"2485":2,"2487":2,"2489":2,"2491":2,"2493":2,"2495":1,"2690":1,"2691":2}}],["vcl65",{"2":{"222":1}}],["vcl",{"2":{"222":1}}],["vk",{"2":{"172":1,"175":1,"2210":1}}],["vulnerability",{"2":{"312":1}}],["vuhopkep",{"2":{"149":1}}],["vusb",{"2":{"40":1,"134":1,"149":1,"249":1,"266":1,"564":1,"1319":1,"2935":1}}],["vn66",{"2":{"143":2}}],["vpath",{"2":{"114":2,"175":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1622":1}}],["vss",{"2":{"1313":1}}],["vscode",{"2":{"199":1,"308":1,"513":1,"2600":1,"2669":1,"2674":3}}],["vs",{"0":{"627":2,"2665":1,"2668":1,"2672":1,"2673":1},"1":{"2666":1,"2667":1,"2668":1,"2669":2,"2670":1,"2671":1,"2673":1},"2":{"114":1,"199":1,"516":1,"1410":5,"2261":1,"2645":1,"2664":3,"2667":1,"2668":1,"2670":1,"2671":4,"2673":4,"2674":5,"2711":1,"2906":1,"2909":1,"2928":1}}],["vowel",{"2":{"2301":4}}],["vol",{"2":{"1776":4,"2517":2,"2522":2}}],["vold",{"2":{"220":1,"589":2,"1667":1,"1668":1,"1776":1,"2068":1,"2517":1,"2522":1}}],["volunteers",{"2":{"2566":2}}],["volunteer",{"2":{"2566":1}}],["volu",{"2":{"220":1,"589":2,"1667":1,"1668":1,"1776":1,"2068":1,"2517":1,"2522":1}}],["volume",{"0":{"1488":1},"2":{"175":1,"690":1,"719":1,"1488":2,"1668":2,"1767":1,"1776":3,"2068":1,"2516":4,"2517":2,"2522":7,"2889":1}}],["voltages",{"2":{"690":1}}],["voltage",{"2":{"199":1,"308":1,"698":1,"744":8,"749":1,"1296":2,"1409":1,"1684":1,"1685":1,"1697":1,"1738":2,"2278":1,"2279":1,"2503":1,"2858":5}}],["volatile",{"2":{"114":1,"308":1,"2297":1}}],["volcano660",{"2":{"102":2,"114":1,"222":1}}],["voilà",{"2":{"1496":1}}],["voice",{"2":{"231":1,"1489":3,"1495":2,"1685":1,"2524":2}}],["voices",{"0":{"1489":1},"2":{"112":1,"561":2,"1489":4,"1495":2,"2524":2,"2856":2}}],["void",{"0":{"647":2,"706":2,"707":1,"709":1,"711":2,"712":1,"733":1,"735":1,"737":1,"739":1,"772":2,"809":2,"810":1,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"824":2,"825":2,"835":1,"837":1,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"851":1,"853":1,"867":1,"869":1,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"883":1,"885":1,"897":1,"899":1,"901":1,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"915":1,"917":1,"932":1,"934":1,"936":1,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"950":1,"952":1,"966":1,"968":1,"970":1,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"984":1,"986":1,"1000":1,"1002":1,"1004":1,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1020":1,"1034":1,"1036":1,"1038":1,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1054":1,"1068":1,"1070":1,"1072":1,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1086":1,"1088":1,"1102":1,"1104":1,"1106":1,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1120":1,"1122":1,"1136":1,"1138":1,"1140":1,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1154":1,"1156":1,"1170":1,"1172":1,"1174":1,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1188":1,"1190":1,"1223":1,"1225":1,"1227":1,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1243":1,"1250":2,"1257":1,"1265":2,"1271":1,"1273":1,"1275":1,"1277":1,"1279":1,"1281":1,"1305":2,"1306":1,"1308":1,"1310":2,"1560":2,"1561":2,"1562":2,"1563":2,"1564":2,"1565":2,"1566":1,"1568":1,"1570":1,"1572":2,"1573":2,"1574":2,"1575":1,"1582":1,"1585":1,"1587":1,"1646":2,"1647":2,"1648":2,"1649":2,"1650":2,"1651":2,"1652":2,"1653":1,"1704":1,"1706":2,"1707":2,"1708":1,"1710":2,"1711":1,"1713":1,"1715":1,"1717":1,"1719":1,"1721":1,"1723":1,"1725":1,"1730":1,"1732":1,"1734":1,"1736":1,"1750":2,"1751":1,"1753":1,"1758":1,"1760":1,"1807":2,"1808":2,"1812":2,"1813":2,"1814":1,"1818":1,"1819":1,"1857":2,"1858":2,"1859":2,"1860":2,"1861":2,"1862":2,"1863":1,"1865":1,"1867":1,"1869":1,"1871":1,"1873":2,"1874":2,"1875":2,"1876":2,"1877":1,"1879":2,"1880":2,"1881":2,"1882":2,"1883":1,"1885":2,"1886":2,"1887":2,"1888":2,"1889":1,"1891":1,"1893":1,"1895":1,"1897":1,"1899":2,"1900":2,"1901":2,"1902":2,"1903":1,"1905":2,"1906":1,"1908":1,"1910":1,"2020":2,"2021":1,"2023":1,"2025":1,"2027":1,"2032":2,"2033":1,"2035":1,"2061":1,"2063":1,"2099":2,"2100":2,"2101":2,"2102":2,"2103":2,"2104":2,"2105":1,"2107":1,"2109":1,"2111":1,"2113":1,"2115":2,"2116":2,"2117":2,"2118":2,"2119":1,"2121":2,"2122":2,"2123":2,"2124":2,"2125":1,"2127":2,"2128":2,"2129":2,"2130":2,"2131":1,"2133":2,"2134":2,"2135":2,"2136":2,"2137":1,"2139":2,"2140":2,"2141":2,"2142":2,"2143":1,"2145":1,"2147":1,"2149":1,"2151":1,"2153":2,"2154":2,"2155":2,"2156":2,"2157":1,"2159":1,"2161":1,"2163":1,"2165":2,"2166":1,"2168":1,"2170":1,"2228":1,"2230":1,"2232":1,"2234":1,"2236":1,"2238":1,"2240":1,"2242":1,"2244":1,"2246":2,"2334":1,"2336":1,"2338":2,"2339":2,"2340":1,"2342":1,"2344":2,"2345":2,"2346":2,"2347":1,"2349":1,"2357":1,"2359":2,"2360":1,"2362":1,"2367":1,"2369":2,"2370":2,"2371":2},"1":{"708":1,"710":1,"713":1,"734":1,"736":1,"738":1,"740":1,"811":1,"813":1,"815":1,"817":1,"819":1,"821":1,"823":1,"836":1,"838":1,"840":1,"842":1,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"868":1,"870":1,"872":1,"874":1,"876":1,"878":1,"880":1,"882":1,"884":1,"886":1,"898":1,"900":1,"902":1,"904":1,"906":1,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"933":1,"935":1,"937":1,"939":1,"941":1,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"967":1,"969":1,"971":1,"973":1,"975":1,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"1001":1,"1003":1,"1005":1,"1007":1,"1009":1,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":1,"1039":1,"1041":1,"1043":1,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1069":1,"1071":1,"1073":1,"1075":1,"1077":1,"1079":1,"1081":1,"1083":1,"1085":1,"1087":1,"1089":1,"1103":1,"1105":1,"1107":1,"1109":1,"1111":1,"1113":1,"1115":1,"1117":1,"1119":1,"1121":1,"1123":1,"1137":1,"1139":1,"1141":1,"1143":1,"1145":1,"1147":1,"1149":1,"1151":1,"1153":1,"1155":1,"1157":1,"1171":1,"1173":1,"1175":1,"1177":1,"1179":1,"1181":1,"1183":1,"1185":1,"1187":1,"1189":1,"1191":1,"1224":1,"1226":1,"1228":1,"1230":1,"1232":1,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1258":1,"1272":1,"1274":1,"1276":1,"1278":1,"1280":1,"1282":1,"1307":1,"1309":1,"1567":1,"1569":1,"1571":1,"1576":1,"1583":1,"1654":1,"1705":1,"1709":1,"1712":1,"1714":1,"1716":1,"1718":1,"1720":1,"1722":1,"1724":1,"1726":1,"1731":1,"1733":1,"1735":1,"1737":1,"1752":1,"1754":1,"1759":1,"1761":1,"1864":1,"1866":1,"1868":1,"1870":1,"1872":1,"1878":1,"1884":1,"1890":1,"1892":1,"1894":1,"1896":1,"1898":1,"1904":1,"1907":1,"1909":1,"1911":1,"2022":1,"2024":1,"2026":1,"2028":1,"2034":1,"2036":1,"2062":1,"2064":1,"2106":1,"2108":1,"2110":1,"2112":1,"2114":1,"2120":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2150":1,"2152":1,"2158":1,"2162":1,"2164":1,"2167":1,"2169":1,"2171":1,"2229":1,"2231":1,"2233":1,"2235":1,"2237":1,"2239":1,"2241":1,"2243":1,"2245":1,"2335":1,"2337":1,"2341":1,"2343":1,"2348":1,"2350":1,"2358":1,"2361":1,"2363":1,"2368":1,"2372":2},"2":{"21":1,"24":1,"36":2,"90":2,"105":3,"125":3,"169":3,"196":1,"210":1,"249":3,"354":1,"512":1,"624":1,"625":13,"635":1,"636":4,"638":4,"639":5,"641":1,"642":4,"645":4,"646":4,"647":14,"649":3,"650":8,"656":1,"745":2,"763":1,"772":1,"1322":1,"1417":2,"1418":8,"1419":10,"1420":4,"1447":1,"1462":2,"1480":1,"1487":2,"1517":2,"1551":4,"1591":1,"1605":1,"1618":1,"1701":1,"1702":2,"1779":2,"1781":2,"1798":3,"1804":4,"1850":1,"1855":1,"1945":1,"1946":3,"1947":2,"1948":1,"1954":35,"1957":1,"1983":2,"1984":3,"1988":6,"1997":1,"2001":2,"2008":16,"2009":5,"2015":1,"2046":13,"2079":2,"2088":1,"2094":1,"2097":1,"2189":2,"2191":3,"2254":31,"2277":10,"2284":2,"2285":2,"2286":2,"2287":2,"2290":33,"2314":1,"2315":6,"2316":5,"2317":8,"2318":8,"2319":8,"2380":1,"2456":4,"2601":1,"2652":2,"2685":1,"2686":1,"2687":1,"2756":5,"2757":22,"2761":2,"2762":1,"2941":12,"2950":1}}],["v13",{"2":{"339":1}}],["v1",{"0":{"369":1,"370":1,"371":1,"372":1},"2":{"86":1,"102":4,"114":1,"143":7,"149":2,"183":2,"197":10,"199":1,"210":1,"218":1,"226":1,"236":2,"253":2,"277":2,"300":1,"311":1,"339":1,"380":2,"381":1,"383":4,"689":1,"1395":3,"2674":1,"2767":7,"2768":7,"2769":3,"2773":5,"2774":7,"2775":3,"2776":7,"2777":3,"2778":6,"2779":3}}],["v19",{"2":{"39":1}}],["v2j37s7",{"2":{"2508":1}}],["v2",{"2":{"56":2,"86":2,"114":1,"122":1,"143":2,"149":2,"175":1,"183":2,"197":4,"199":2,"205":4,"210":2,"218":2,"222":2,"236":2,"249":3,"277":1,"308":1,"311":24,"328":1,"339":1,"389":1,"1395":2,"2505":1}}],["v2017",{"2":{"165":2}}],["v20",{"2":{"39":1}}],["v32a",{"2":{"197":2}}],["v3x",{"2":{"175":1}}],["v3",{"0":{"56":1},"2":{"56":2,"114":1,"149":2,"175":1,"222":1,"277":1,"2607":3}}],["vtor",{"2":{"40":1}}],["vault",{"2":{"333":1}}],["vault35",{"2":{"249":1}}],["vast",{"2":{"181":1,"1766":1}}],["vagrant",{"2":{"113":1,"114":2,"222":1}}],["vaguettelite",{"2":{"86":2}}],["vanilla",{"2":{"2727":1}}],["vaneelaex",{"2":{"86":2}}],["vaneela",{"2":{"86":2}}],["vanana",{"2":{"86":4}}],["varying",{"2":{"2085":3,"2292":1}}],["vary",{"2":{"1409":1,"2506":1,"2910":1}}],["var",{"2":{"519":3,"1327":2}}],["var>=",{"2":{"429":1,"430":2}}],["varaible",{"2":{"191":1}}],["variety",{"2":{"1968":1,"2705":1}}],["varies",{"2":{"1682":1,"1967":1,"1974":1,"1983":2,"1985":1,"2937":1}}],["variants",{"2":{"145":1,"222":1,"1286":1,"1287":1,"1288":1,"2330":1,"2392":1,"2499":2,"2567":1,"2569":1,"2839":1}}],["variant",{"2":{"114":1,"157":1,"210":3,"308":2,"393":1,"1957":2,"1958":1,"2042":1,"2392":1,"2652":1,"2728":1,"2756":1}}],["variations",{"2":{"236":1,"243":1,"331":1,"1288":1}}],["variation",{"0":{"55":1},"2":{"191":1,"1791":1}}],["variable",{"2":{"40":1,"65":1,"133":1,"134":3,"236":1,"285":1,"332":1,"339":1,"455":1,"469":1,"489":1,"496":1,"519":1,"532":1,"559":1,"669":2,"1381":6,"1410":1,"1434":2,"1464":1,"1521":2,"1539":1,"1665":1,"1994":1,"2008":1,"2009":1,"2057":2,"2189":1,"2295":1,"2310":1,"2384":1,"2417":1,"2418":2,"2434":1,"2525":2,"2628":1,"2674":2,"2686":1,"2769":1,"2770":1,"2771":1,"2775":1,"2777":1,"2779":1,"2912":1,"2950":11}}],["variables",{"0":{"2950":1},"2":{"39":2,"222":2,"302":1,"470":1,"555":1,"560":1,"670":1,"1381":1,"1417":1,"1428":1,"1438":1,"1502":1,"1994":1,"2312":1,"2418":2,"2685":1,"2686":1,"2691":1,"2950":5}}],["various",{"2":{"40":2,"114":1,"149":3,"160":1,"175":2,"222":1,"277":2,"303":1,"338":1,"393":1,"404":1,"529":1,"555":2,"624":1,"1321":1,"1323":1,"1409":1,"1410":1,"1422":1,"1497":1,"1502":1,"1686":1,"1782":1,"2185":1,"2214":1,"2378":1,"2745":1,"2808":1,"2827":1,"2841":1,"2846":1,"2941":1}}],["vars",{"2":{"39":2,"2417":1}}],["valu",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2544":1,"2545":1}}],["valued",{"2":{"1417":1}}],["valueerror",{"2":{"524":2}}],["value>",{"2":{"429":1,"430":2,"475":1,"497":2}}],["values",{"0":{"476":1,"477":1,"482":1,"496":1,"497":1,"498":1,"533":1,"1517":1},"1":{"478":1,"479":1,"480":1,"481":1},"2":{"65":1,"70":1,"83":1,"166":1,"170":2,"198":2,"199":1,"231":1,"236":1,"249":1,"339":1,"433":1,"476":1,"477":1,"491":2,"497":1,"498":1,"533":2,"561":1,"665":1,"668":1,"671":1,"672":1,"673":1,"690":1,"711":1,"719":1,"729":1,"739":1,"743":1,"749":1,"750":1,"751":1,"768":1,"824":1,"825":1,"851":1,"853":1,"859":1,"860":4,"863":1,"883":1,"885":1,"893":1,"915":1,"917":1,"924":1,"925":4,"928":1,"950":1,"952":1,"958":1,"959":4,"962":1,"984":1,"986":1,"992":1,"993":4,"996":1,"1018":1,"1020":1,"1026":1,"1027":4,"1030":1,"1052":1,"1054":1,"1060":1,"1061":4,"1064":1,"1086":1,"1088":1,"1095":4,"1098":1,"1120":1,"1122":1,"1129":4,"1132":1,"1154":1,"1156":1,"1162":1,"1163":4,"1166":1,"1188":1,"1190":1,"1197":1,"1198":1,"1201":1,"1219":1,"1241":1,"1243":1,"1272":1,"1289":1,"1310":1,"1322":1,"1410":1,"1416":1,"1417":4,"1488":1,"1493":2,"1517":2,"1556":1,"1558":1,"1590":1,"1741":1,"1742":4,"1747":1,"1788":2,"1846":2,"1923":2,"1926":2,"1939":2,"1949":1,"1952":2,"1953":1,"1954":1,"1957":1,"1962":1,"1970":1,"1974":2,"1975":1,"1978":1,"1983":2,"1990":1,"1994":7,"2039":1,"2082":2,"2085":1,"2185":2,"2211":1,"2275":1,"2290":1,"2300":1,"2303":2,"2320":1,"2322":1,"2327":1,"2379":3,"2418":1,"2466":1,"2497":1,"2503":1,"2685":1,"2696":1,"2697":1,"2698":1,"2699":1,"2702":1,"2714":1,"2717":2,"2728":3,"2754":1,"2757":1,"2765":1,"2767":1,"2768":1,"2772":1,"2776":2,"2791":1,"2800":1,"2929":2}}],["value",{"0":{"671":1,"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"796":1,"799":1,"816":2,"818":2,"822":1,"843":2,"845":2,"849":1,"875":2,"877":2,"881":1,"907":2,"909":2,"913":1,"942":2,"944":2,"948":1,"976":2,"978":2,"982":1,"1010":2,"1012":2,"1016":1,"1044":2,"1046":2,"1050":1,"1078":2,"1080":2,"1084":1,"1112":2,"1114":2,"1118":1,"1146":2,"1148":2,"1152":1,"1180":2,"1182":2,"1186":1,"1233":2,"1235":2,"1239":1,"1253":1,"1256":1,"1258":1,"1261":1,"1264":1,"1276":1,"1282":1,"1503":1,"1569":1,"1571":1,"1576":1,"1583":1,"1724":1,"1729":1,"1757":1,"1758":1,"1760":1,"1811":1,"1817":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1864":1,"1865":1,"1867":1,"1878":1,"1884":1,"1894":1,"1904":1,"1907":1,"1909":1,"1911":1,"1914":1,"1917":1,"2031":1,"2034":1,"2106":1,"2120":1,"2126":1,"2132":1,"2138":1,"2148":1,"2158":1,"2164":1,"2167":1,"2169":1,"2171":1,"2174":1,"2177":1,"2335":1,"2353":1,"2356":1,"2361":1,"2363":1,"2366":1,"2368":1},"1":{"817":2,"819":2,"823":1,"844":2,"846":2,"850":1,"876":2,"878":2,"882":1,"908":2,"910":2,"914":1,"943":2,"945":2,"949":1,"977":2,"979":2,"983":1,"1011":2,"1013":2,"1017":1,"1045":2,"1047":2,"1051":1,"1079":2,"1081":2,"1085":1,"1113":2,"1115":2,"1119":1,"1147":2,"1149":2,"1153":1,"1181":2,"1183":2,"1187":1,"1234":2,"1236":2,"1240":1,"1759":1,"1761":1,"1866":1,"1868":1},"2":{"15":1,"35":2,"39":1,"63":1,"70":13,"90":1,"175":1,"191":1,"195":1,"210":1,"236":1,"317":1,"382":1,"412":5,"433":19,"472":1,"474":2,"477":1,"482":1,"484":1,"485":1,"489":3,"496":1,"512":1,"561":1,"564":2,"565":3,"569":1,"588":3,"589":1,"647":1,"656":1,"657":4,"660":2,"667":1,"668":1,"669":5,"671":2,"672":1,"688":1,"698":4,"699":4,"701":1,"708":3,"710":3,"719":7,"720":2,"726":2,"736":3,"738":3,"745":1,"748":2,"749":2,"750":1,"751":1,"754":1,"755":1,"759":1,"766":1,"810":1,"811":1,"813":3,"815":3,"817":2,"819":2,"823":1,"829":1,"837":1,"838":1,"840":3,"842":3,"844":2,"846":2,"850":1,"857":3,"858":1,"861":1,"869":1,"870":1,"872":3,"874":3,"876":2,"878":2,"880":3,"882":2,"890":1,"899":1,"900":1,"904":3,"906":3,"908":2,"910":2,"914":1,"921":3,"922":1,"923":1,"926":1,"934":1,"935":1,"939":3,"941":3,"943":2,"945":2,"949":1,"956":3,"957":1,"960":1,"968":1,"969":1,"973":3,"975":3,"977":2,"979":2,"983":1,"990":3,"991":1,"994":1,"1002":1,"1003":1,"1007":3,"1009":3,"1011":2,"1013":2,"1017":1,"1024":4,"1025":1,"1028":1,"1036":1,"1037":1,"1041":3,"1043":3,"1045":2,"1047":2,"1051":1,"1058":4,"1059":1,"1062":1,"1070":1,"1071":1,"1075":3,"1077":3,"1079":2,"1081":2,"1083":3,"1085":2,"1092":4,"1093":1,"1094":1,"1096":1,"1104":1,"1105":1,"1109":3,"1111":3,"1113":2,"1115":2,"1117":3,"1119":2,"1126":4,"1127":1,"1128":1,"1130":1,"1138":1,"1139":1,"1143":3,"1145":3,"1147":2,"1149":2,"1151":3,"1153":2,"1160":4,"1161":1,"1164":1,"1172":1,"1173":1,"1177":3,"1179":3,"1181":2,"1183":2,"1185":3,"1187":2,"1208":1,"1217":1,"1225":1,"1226":1,"1230":3,"1232":3,"1234":2,"1236":2,"1240":1,"1292":1,"1307":3,"1309":3,"1409":1,"1417":4,"1418":2,"1422":1,"1452":1,"1480":1,"1493":1,"1498":1,"1503":6,"1517":5,"1518":5,"1521":1,"1522":3,"1523":1,"1551":1,"1641":3,"1654":2,"1662":1,"1667":1,"1681":1,"1738":1,"1741":3,"1742":3,"1749":4,"1755":1,"1758":1,"1759":3,"1761":1,"1769":1,"1781":1,"1782":1,"1786":1,"1788":1,"1800":1,"1846":1,"1847":1,"1849":8,"1850":2,"1852":3,"1855":5,"1866":1,"1868":1,"1884":1,"1896":1,"1898":1,"1926":1,"1935":1,"1936":1,"1939":3,"1948":1,"1952":1,"1954":2,"1968":1,"1975":4,"1985":1,"1986":4,"1997":2,"2008":1,"2009":1,"2069":1,"2082":1,"2083":1,"2084":2,"2085":23,"2086":1,"2091":7,"2108":3,"2110":3,"2126":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2150":1,"2152":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2180":2,"2181":6,"2182":4,"2198":9,"2201":10,"2202":2,"2203":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2245":1,"2254":3,"2272":1,"2275":1,"2276":1,"2277":1,"2287":1,"2290":1,"2297":1,"2304":1,"2317":2,"2318":1,"2320":1,"2356":1,"2379":4,"2380":1,"2388":1,"2454":1,"2455":1,"2461":1,"2466":3,"2525":1,"2544":6,"2545":2,"2685":1,"2702":1,"2728":1,"2757":3,"2767":1,"2774":1,"2777":1,"2785":1,"2851":1,"2857":1,"2871":3,"2877":6,"2878":7,"2880":1,"2902":1,"2912":9,"2922":2,"2927":1,"2929":1,"2930":1,"2931":1}}],["vald",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2544":1,"2545":1}}],["valhalla",{"2":{"222":1}}],["valor",{"0":{"58":1},"2":{"58":3,"114":1,"222":1}}],["val",{"0":{"1879":2,"1880":1,"1881":1,"1882":1,"1883":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2201":1},"1":{"1884":1,"2138":1},"2":{"39":1,"160":1,"167":4,"175":1,"210":2,"565":1,"1418":3,"1544":1,"1743":8,"1849":3,"1852":2,"2085":9,"2091":2,"2096":2,"2182":4,"2193":2,"2201":4,"2204":2,"2454":4,"2757":11,"2871":2,"2877":1,"2878":2,"2894":3}}],["validating",{"2":{"2615":1}}],["validation",{"2":{"114":1,"199":2,"210":2,"236":1,"266":1,"273":1,"308":1,"369":1,"1407":1}}],["validated",{"2":{"723":1,"2557":1}}],["validate",{"2":{"76":1,"199":2,"222":1,"333":1,"411":1}}],["valid",{"2":{"39":1,"149":1,"199":2,"241":1,"253":1,"266":1,"270":1,"281":1,"433":1,"456":1,"657":1,"743":1,"754":1,"859":1,"860":2,"924":1,"925":2,"958":1,"959":2,"992":1,"993":2,"1026":1,"1027":2,"1060":1,"1061":2,"1095":2,"1129":2,"1162":1,"1163":2,"1289":1,"1320":1,"1389":1,"1407":1,"1419":2,"1420":1,"1532":1,"1547":1,"1730":1,"1971":1,"2039":1,"2185":2,"2297":1,"2449":1,"2453":1,"2471":1,"2521":1,"2558":1,"2559":1,"2726":4,"2728":4,"2755":2,"2776":1}}],["violates",{"2":{"2741":1}}],["violating",{"2":{"2569":2}}],["violation",{"2":{"2567":2,"2570":1,"2747":1}}],["violations",{"0":{"2566":1},"1":{"2567":1,"2568":1,"2569":1,"2570":1,"2571":1},"2":{"2566":1,"2567":1,"2570":1,"2571":2,"2734":1}}],["violin",{"2":{"1485":2,"1486":3,"1490":1}}],["virster",{"2":{"2298":1}}],["virtually",{"2":{"2711":1}}],["virtual",{"0":{"1743":1},"2":{"1362":1,"1641":1,"1738":1,"1742":3,"1743":3,"1749":1,"2294":2,"2298":1,"2392":1,"2753":1}}],["virtser",{"2":{"575":1}}],["vibrate",{"2":{"1685":1,"1687":1}}],["vibrator",{"2":{"1685":1}}],["vibrations",{"2":{"1684":1}}],["vibration",{"2":{"1684":1}}],["vim",{"2":{"1593":1,"1796":1,"2068":2}}],["vik",{"2":{"1398":1}}],["viktus",{"2":{"134":1,"159":3,"160":1,"222":3}}],["victim",{"2":{"615":1}}],["vice",{"2":{"194":1,"1422":1,"1661":1,"2069":2}}],["viewport",{"2":{"2756":2,"2757":7}}],["viewpoint",{"2":{"2580":1}}],["viewing",{"2":{"2674":1}}],["viewed",{"2":{"676":1,"2535":1}}],["views",{"2":{"368":1,"2269":1}}],["view",{"0":{"2468":1},"2":{"273":1,"353":1,"579":1,"580":1,"687":1,"688":1,"2468":1,"2564":1,"2583":1,"2629":1,"2659":1,"2669":1,"2674":2,"2742":1,"2819":1}}],["viendi",{"2":{"222":1}}],["viper",{"2":{"222":1}}],["visit",{"2":{"430":1,"2417":1,"2606":1,"2609":1,"2674":1}}],["visible",{"2":{"198":1,"383":1,"1290":1,"1699":2,"2745":1}}],["vision",{"2":{"114":1,"614":1}}],["visualize",{"2":{"2563":1}}],["visualizer",{"2":{"133":1,"134":1}}],["visual",{"0":{"2664":1,"2674":1},"2":{"132":1,"2664":1,"2667":1,"2674":1,"2796":2}}],["vitepress",{"2":{"339":1}}],["viterbi",{"2":{"35":1}}],["vitoni",{"2":{"149":1}}],["vitamins",{"2":{"114":1}}],["vintage",{"2":{"1354":1}}],["vinta",{"2":{"102":2,"205":2}}],["videos",{"2":{"2942":2}}],["video",{"2":{"2183":1,"2188":1,"2436":1,"2569":1,"2589":1,"2942":1,"2945":1}}],["videogames",{"2":{"1426":1}}],["vid>",{"2":{"434":1}}],["vid",{"0":{"1319":1},"1":{"1320":1},"2":{"70":1,"111":1,"168":1,"184":1,"249":2,"266":1,"317":2,"434":1,"561":1,"688":1,"689":1,"1319":1,"1356":1,"2569":1,"2717":3,"2728":1,"2882":1}}],["vial",{"2":{"2728":2}}],["via2json",{"0":{"447":1},"2":{"294":1,"447":2}}],["via",{"0":{"25":1,"265":2,"275":2,"312":1},"1":{"26":1},"2":{"25":1,"92":1,"114":7,"134":6,"149":2,"154":1,"160":1,"175":2,"191":6,"194":1,"199":5,"206":1,"210":5,"222":7,"234":1,"249":3,"265":8,"266":4,"268":4,"275":5,"277":8,"294":1,"308":1,"312":6,"317":1,"339":1,"447":3,"665":1,"681":1,"721":1,"748":1,"749":1,"750":1,"759":1,"766":1,"1195":1,"1198":1,"1201":1,"1348":3,"1393":2,"1410":1,"1416":1,"1446":1,"1590":1,"2052":1,"2211":1,"2300":1,"2375":2,"2394":1,"2399":2,"2400":2,"2401":2,"2404":2,"2406":1,"2408":1,"2410":1,"2418":1,"2432":1,"2466":1,"2567":18,"2568":1,"2569":1,"2570":1,"2710":1,"2727":3,"2728":7,"2736":1,"2941":1}}],["vect",{"2":{"2041":2,"2043":2}}],["vector",{"2":{"175":1,"222":1}}],["velu",{"2":{"1925":1,"2539":1}}],["veld",{"2":{"1925":1,"2539":1}}],["velocikey",{"0":{"2209":1},"1":{"2210":1,"2211":1},"2":{"236":1,"2209":1,"2210":5,"2211":2,"2941":1}}],["velocity",{"2":{"63":1,"1919":1,"1925":26,"1926":1,"1934":1,"2539":26}}],["vega",{"2":{"222":1}}],["ventilation",{"2":{"2421":1}}],["venus",{"2":{"114":1,"322":2,"328":1}}],["venv",{"2":{"114":1}}],["vendors",{"0":{"2567":1},"2":{"2566":2,"2567":3,"2568":6,"2569":2,"2570":2,"2571":2,"2728":4,"2741":1}}],["vendor",{"0":{"747":1,"2733":1,"2735":1,"2739":1},"1":{"748":1,"2734":1,"2735":1,"2736":1,"2737":1,"2738":1,"2739":1,"2740":1,"2741":1,"2742":1,"2743":1,"2744":1,"2745":1,"2746":1,"2747":1,"2748":1,"2749":1,"2750":1},"2":{"27":1,"33":1,"70":1,"86":1,"149":13,"160":2,"168":1,"175":1,"184":1,"199":1,"222":1,"236":1,"266":1,"277":1,"561":1,"689":1,"743":1,"746":1,"1198":2,"1201":2,"1289":1,"1292":1,"1319":1,"1332":1,"1393":2,"2039":1,"2044":1,"2057":2,"2059":2,"2414":1,"2499":1,"2566":3,"2567":2,"2568":4,"2569":1,"2570":5,"2571":1,"2727":3,"2728":4,"2733":1,"2735":2,"2737":1,"2739":2,"2745":1,"2747":1,"2750":1,"2858":1,"2864":2,"2875":1,"2880":1,"2882":1,"2883":2}}],["ve",{"2":{"83":1,"89":1,"105":2,"112":1,"158":1,"187":1,"243":1,"273":1,"331":1,"380":1,"521":1,"603":1,"665":1,"749":1,"768":1,"1248":1,"1269":1,"1417":1,"1424":1,"1431":1,"1446":1,"1448":4,"1472":1,"1473":1,"2048":1,"2387":1,"2430":1,"2434":1,"2447":2,"2581":1,"2596":1,"2611":1,"2612":1,"2620":1,"2632":1,"2636":1,"2640":1,"2671":1,"2674":1,"2730":1,"2757":2,"2780":1,"2796":1,"2890":1,"2895":1}}],["vertically",{"0":{"2800":1},"2":{"1992":1,"2428":1,"2797":1,"2800":2}}],["vertical",{"2":{"1939":1,"1968":1,"1976":1,"1977":1,"1986":1,"1990":1,"2757":1,"2800":1,"2869":1,"2871":1,"2878":1}}],["vertex",{"2":{"222":1,"2567":1}}],["verbose=true",{"2":{"2417":1}}],["verbose",{"2":{"599":1,"2417":5,"2755":2}}],["verbosity",{"2":{"222":1}}],["verification",{"2":{"2490":1,"2508":1,"2569":1}}],["verified",{"2":{"543":1,"1943":2,"2502":1,"2508":1,"2729":1}}],["verifying",{"2":{"2502":2}}],["verify",{"2":{"199":1,"688":1,"2639":1,"2663":1,"2728":1,"2748":1,"2950":2}}],["ver20",{"2":{"420":5}}],["vero",{"2":{"222":1}}],["versed",{"2":{"605":1}}],["versatile",{"2":{"2758":1}}],["versa",{"2":{"194":1,"1422":1,"1661":1,"2069":2}}],["versioned",{"2":{"166":1}}],["versioning",{"2":{"166":1,"2816":1}}],["version=yes",{"2":{"65":1}}],["version",{"2":{"26":2,"43":1,"65":1,"69":1,"70":1,"114":2,"134":1,"149":3,"160":1,"166":1,"168":1,"175":1,"184":1,"188":1,"191":1,"199":2,"222":1,"236":1,"279":1,"285":1,"298":1,"328":1,"333":3,"339":1,"383":1,"386":3,"392":1,"397":1,"402":1,"409":3,"413":27,"419":1,"420":1,"422":2,"561":1,"588":1,"596":1,"1214":1,"1390":1,"1405":1,"1419":6,"1467":2,"1470":4,"1472":1,"1498":1,"1499":1,"1518":1,"1592":1,"1624":1,"1625":2,"1633":4,"1638":1,"1962":1,"2040":1,"2043":1,"2403":1,"2432":2,"2461":2,"2465":1,"2508":1,"2560":1,"2634":1,"2658":1,"2674":1,"2685":1,"2686":1,"2687":1,"2717":1,"2728":1,"2732":2,"2767":1,"2774":1,"2882":2,"2930":1}}],["versions",{"2":{"12":1,"25":1,"39":2,"166":2,"173":1,"175":1,"308":1,"328":1,"383":3,"419":1,"596":1,"1316":1,"1378":1,"1395":1,"1417":1,"1470":1,"1663":1,"1666":1,"1765":1,"2183":1,"2330":1,"2331":1,"2386":1,"2417":1,"2483":1,"2497":1,"2567":1}}],["very",{"2":{"166":1,"369":1,"387":1,"542":1,"610":1,"628":1,"633":1,"634":1,"640":1,"681":1,"719":2,"1294":1,"1319":1,"1322":1,"1415":1,"1462":1,"1492":1,"1503":1,"1684":1,"1685":1,"1787":1,"1802":2,"1938":1,"1948":1,"1957":1,"1984":1,"1993":1,"2265":1,"2281":1,"2287":1,"2382":1,"2425":2,"2428":2,"2459":1,"2468":1,"2554":1,"2567":1,"2580":1,"2601":1,"2612":1,"2658":1,"2684":1,"2835":1,"2844":1,"2897":1,"2934":1,"2945":1}}],["ver",{"2":{"70":2,"111":1,"168":1,"175":1,"184":1,"561":1}}],["ver19",{"2":{"43":1}}],["v",{"0":{"11":1,"235":1,"553":1,"1865":1,"1867":1,"2159":1,"2161":1},"1":{"554":1,"1866":1,"1868":1,"2162":1},"2":{"11":2,"39":2,"40":3,"130":2,"134":2,"143":2,"153":1,"191":1,"236":4,"249":1,"266":1,"354":1,"379":1,"386":1,"492":1,"546":1,"589":2,"805":1,"808":1,"831":1,"834":1,"863":1,"866":1,"893":1,"896":1,"928":1,"931":1,"962":1,"965":1,"996":1,"999":1,"1030":1,"1033":1,"1064":1,"1067":1,"1098":1,"1101":1,"1132":1,"1135":1,"1166":1,"1169":1,"1219":1,"1222":1,"1625":1,"1684":1,"1685":3,"1855":1,"1866":1,"1868":1,"1920":1,"1956":1,"1990":2,"1992":2,"1993":1,"1994":9,"1996":1,"1997":1,"2014":1,"2047":1,"2048":1,"2050":1,"2096":2,"2160":1,"2162":1,"2198":8,"2201":4,"2294":1,"2317":1,"2331":1,"2386":2,"2394":1,"2395":1,"2417":3,"2501":1,"2510":3,"2522":3,"2557":1,"2563":1,"2576":4,"2577":2,"2637":3,"2639":2,"2717":1,"2755":2,"2777":1,"2877":1,"2878":1,"2926":5,"2928":1}}],["k13",{"2":{"2794":4,"2796":1,"2938":2}}],["k12",{"2":{"2794":4,"2796":1,"2938":2}}],["k11",{"2":{"2794":4,"2796":1,"2938":2}}],["k10",{"2":{"2794":4,"2796":1,"2938":2}}],["k03",{"2":{"2794":4,"2796":1,"2938":2}}],["k02",{"2":{"2794":4,"2796":1,"2938":2}}],["k01",{"2":{"2794":4,"2796":1,"2938":2}}],["k00",{"2":{"2794":4,"2796":1,"2938":2}}],["kxy",{"2":{"2434":1}}],["kvm",{"2":{"1961":1}}],["kvms",{"2":{"1960":2,"1961":2}}],["kp",{"2":{"1774":1,"2518":19,"2522":19}}],["kprepublic",{"2":{"102":12,"114":1,"122":10,"134":2,"143":4,"199":1,"226":2,"236":1,"253":4,"266":2,"311":4,"328":3,"2567":1}}],["kω",{"2":{"860":14,"925":14,"959":14,"993":14,"1027":14,"1061":14,"1095":14,"1129":14,"1163":14}}],["khz",{"2":{"859":6,"924":5,"958":5,"992":5,"1026":3,"1060":3,"1162":5}}],["k7",{"2":{"328":1}}],["k6",{"2":{"328":1}}],["k5",{"2":{"328":1}}],["k552",{"2":{"199":2}}],["k42",{"2":{"2794":4,"2796":1,"2938":2}}],["k40",{"2":{"2794":4,"2796":1,"2938":2}}],["k4",{"2":{"328":1}}],["k22",{"2":{"2794":4,"2796":1,"2938":2}}],["k21",{"2":{"2794":4,"2796":1,"2938":2}}],["k20",{"2":{"2794":4,"2796":1,"2938":2}}],["k2",{"2":{"328":1}}],["kth",{"2":{"1794":2}}],["kt60hs",{"2":{"300":2,"308":1}}],["ktec",{"2":{"102":3}}],["kl",{"2":{"1329":7,"2301":3}}],["kle",{"2":{"463":3,"2589":1,"2728":1,"2795":4,"2797":1,"2800":1,"2869":1}}],["kle2json",{"0":{"463":1},"2":{"463":3}}],["klein",{"2":{"249":1}}],["kludge",{"2":{"328":1,"2567":1}}],["kl90",{"2":{"210":1,"249":1}}],["kumaokobo",{"2":{"241":10,"249":2}}],["kudox",{"2":{"241":16}}],["kj",{"2":{"222":1}}],["k83",{"2":{"205":1}}],["krush60",{"2":{"249":1}}],["kr",{"2":{"191":4}}],["kohm",{"2":{"744":2,"2858":2}}],["koyu",{"2":{"222":1}}],["kopibeng",{"2":{"222":5}}],["koalafications",{"2":{"222":1}}],["koolertron",{"2":{"222":1}}],["korean",{"2":{"191":1,"2887":2}}],["ko",{"0":{"1770":1,"1771":1,"1772":1,"1773":1,"1782":1},"2":{"172":1,"175":1,"1770":1,"1773":1,"1774":2,"1776":9,"1777":2,"1779":1,"1780":3,"1781":2,"1782":8,"1785":1}}],["knife",{"2":{"2280":2,"2421":1}}],["knife66",{"2":{"222":3}}],["knight",{"2":{"160":1,"2181":2,"2183":2,"2184":2,"2185":6,"2187":2,"2210":1,"2544":2,"2894":1}}],["knops",{"2":{"114":1}}],["knobx1",{"2":{"328":1}}],["knobs",{"2":{"249":1}}],["knob",{"2":{"46":1}}],["knowledge",{"2":{"626":1,"757":1,"1342":1,"2276":1,"2478":1,"2905":1,"2906":2,"2908":1}}],["know",{"0":{"1336":1},"2":{"228":1,"245":1,"393":1,"397":1,"418":1,"496":1,"505":1,"763":2,"1329":1,"1331":1,"1339":1,"1357":1,"1428":2,"1431":1,"1641":1,"1685":1,"1782":1,"1796":1,"2057":1,"2270":1,"2281":1,"2411":1,"2579":1,"2616":1,"2628":2,"2634":1,"2640":1,"2644":1,"2905":1,"2938":1,"2940":1,"2944":1}}],["knows",{"2":{"39":1,"149":1,"721":1}}],["known",{"0":{"689":1,"1679":1,"2374":1},"1":{"2375":1},"2":{"27":1,"547":1,"607":1,"686":1,"689":1,"1197":1,"1214":1,"1287":1,"1541":1,"1592":1,"1623":1,"1961":1,"2016":1,"2265":1,"2569":1,"2634":1,"2674":1,"2728":1,"2756":2,"2834":1,"2931":1}}],["kkatano",{"2":{"143":6,"149":2,"222":1}}],["kapton",{"2":{"2425":1}}],["kapcave",{"2":{"122":2,"134":1}}],["katakana",{"2":{"1358":1,"2515":2}}],["katana60",{"2":{"440":1,"2448":1}}],["karabiner",{"0":{"1359":1},"2":{"1358":1,"1359":4}}],["karn",{"2":{"249":1}}],["karlk90",{"2":{"178":1}}],["kangaroo",{"2":{"222":1}}],["kana",{"2":{"210":1,"1835":1,"1836":2,"1838":1,"2867":2}}],["kastenwagen",{"2":{"222":2}}],["kamigakushi",{"2":{"205":2,"218":2,"222":1}}],["ka2hiro",{"2":{"149":1}}],["kagamidget",{"2":{"143":2}}],["kagizaraya",{"2":{"143":3,"149":1,"241":1,"249":1}}],["kakunpc",{"2":{"143":11,"149":2}}],["kmac",{"2":{"241":4}}],["km",{"2":{"132":1,"191":1,"429":3,"430":1,"433":2,"437":2,"439":2,"440":1,"445":1,"447":1,"448":1,"449":1,"450":1,"452":3,"453":3,"470":1,"1388":1,"1527":1,"2273":3,"2388":1,"2432":1,"2523":1,"2587":1,"2594":1,"2595":1,"2616":1,"2629":2,"2673":1,"2714":1,"2752":1}}],["kyria",{"2":{"102":2,"114":3,"134":1,"210":2,"277":1}}],["k33",{"2":{"2794":4,"2796":1,"2938":2}}],["k32",{"2":{"2794":4,"2796":1,"2938":2}}],["k320",{"2":{"86":1,"102":2,"165":2,"175":1}}],["k31",{"2":{"2794":4,"2796":1,"2938":2}}],["k310",{"2":{"114":1,"165":2,"175":1}}],["k30",{"2":{"2794":4,"2796":1,"2938":2}}],["k3",{"2":{"328":1}}],["k34",{"2":{"210":1}}],["k3x0",{"2":{"102":1,"165":2}}],["kzar",{"2":{"92":1,"93":1}}],["kiiboom",{"2":{"2567":1}}],["kiibohd",{"0":{"2402":1},"2":{"40":1,"339":1,"689":2,"2402":1}}],["kib",{"2":{"2387":1,"2490":1,"2508":3}}],["kit",{"2":{"684":1}}],["kira80",{"2":{"241":2}}],["kira",{"2":{"241":2,"249":1}}],["kira75",{"2":{"241":2}}],["kiko",{"2":{"222":1}}],["kikoslab",{"2":{"210":1,"249":1}}],["kicad",{"2":{"222":1}}],["kinds",{"2":{"1538":1,"2211":1,"2482":1}}],["kind",{"0":{"592":1,"1796":1},"1":{"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1},"2":{"1538":1,"1539":1,"2317":1}}],["king",{"2":{"191":1}}],["kintwin",{"2":{"210":1}}],["kint41",{"2":{"114":1,"2663":1}}],["kint",{"2":{"114":1,"134":1}}],["kint2pp",{"2":{"94":1}}],["kint36",{"2":{"93":1,"94":1,"114":1,"199":1,"2663":1}}],["kinetis",{"0":{"551":1},"2":{"114":1,"160":2,"175":1,"2402":1,"2685":1,"2707":1,"2802":1}}],["kinetic",{"0":{"1936":1},"2":{"74":1,"160":2,"190":2,"191":1,"210":2,"1934":1,"1936":3,"1939":1,"1940":1,"1985":1}}],["kinesis",{"2":{"93":2,"114":1,"205":2,"210":3,"222":1,"2663":2}}],["k",{"2":{"39":2,"65":1,"114":1,"143":2,"175":1,"236":1,"249":2,"266":8,"277":1,"285":2,"317":1,"379":1,"589":2,"1448":2,"1605":1,"1622":2,"1625":1,"2068":1,"2071":4,"2181":1,"2296":1,"2301":1,"2317":1,"2510":3,"2522":3,"2544":1,"2563":1,"2794":1,"2889":1,"2913":1,"2926":3}}],["kb2",{"2":{"612":2}}],["kb2040",{"0":{"1393":1},"2":{"178":1,"191":2,"322":2,"1389":1,"1391":3,"1394":1,"1397":1,"2702":1,"2895":1}}],["kb1",{"2":{"612":1}}],["kb16",{"2":{"175":1,"191":1,"249":1}}],["kb|user",{"0":{"307":1}}],["kb38",{"2":{"210":1,"266":1}}],["kb83",{"2":{"205":1,"210":1,"317":1}}],["kbo5000",{"2":{"199":1}}],["kbfirmware",{"0":{"450":1},"2":{"188":4,"450":2,"600":1,"2432":2,"2589":1,"2728":2}}],["kbd",{"2":{"1625":1}}],["kbdmania",{"2":{"241":2,"249":1}}],["kbd66",{"2":{"222":1}}],["kbd67mkiirgb",{"2":{"205":1}}],["kbd67",{"2":{"114":1,"205":1,"249":1}}],["kbdfans",{"2":{"143":1,"149":1,"175":1,"205":2,"222":6,"241":2,"249":1}}],["kb",{"0":{"652":1,"1587":1,"1908":1,"1912":1,"2168":1,"2172":1,"2342":1,"2933":1},"1":{"1909":1,"2169":1,"2343":1},"2":{"24":1,"70":1,"90":3,"105":4,"111":1,"125":2,"132":1,"169":2,"174":1,"175":3,"197":13,"199":3,"214":2,"222":1,"229":1,"230":1,"231":3,"266":1,"277":6,"285":1,"294":1,"317":1,"328":2,"429":6,"430":1,"437":4,"439":2,"440":2,"442":1,"443":1,"444":1,"445":1,"447":2,"448":1,"449":1,"450":1,"452":3,"453":3,"470":1,"570":1,"593":3,"625":4,"627":6,"630":1,"632":1,"636":1,"638":1,"642":1,"645":1,"646":1,"650":2,"652":1,"653":1,"654":1,"1351":1,"1388":1,"1416":3,"1418":3,"1419":11,"1428":2,"1432":1,"1470":2,"1491":1,"1527":1,"1635":1,"1636":1,"1638":2,"1657":2,"1668":1,"1837":2,"1838":1,"1850":2,"1855":2,"1954":2,"1958":2,"1983":2,"1988":2,"1989":1,"2005":1,"2006":1,"2088":2,"2094":2,"2273":3,"2277":1,"2310":1,"2388":1,"2432":1,"2448":2,"2456":4,"2461":1,"2516":4,"2522":4,"2523":1,"2584":1,"2587":1,"2594":1,"2595":1,"2616":1,"2629":2,"2652":4,"2673":1,"2714":1,"2728":2,"2729":1,"2752":1,"2756":1,"2757":4,"2758":1,"2761":1,"2941":4,"2949":1}}],["kc5",{"0":{"1832":1},"1":{"1833":1,"1834":1},"2":{"1833":1}}],["kc4",{"0":{"1829":1,"1832":1},"1":{"1830":1,"1831":1,"1833":1,"1834":1},"2":{"1830":1,"1833":1}}],["kc3",{"0":{"1826":1,"1829":1,"1832":1},"1":{"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1},"2":{"1827":1,"1830":1,"1833":1}}],["kc2",{"0":{"1823":1,"1826":1,"1829":1,"1832":1},"1":{"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1},"2":{"1824":1,"1827":1,"1830":1,"1833":1,"2309":3}}],["kc1",{"0":{"1823":1,"1826":1,"1829":1,"1832":1},"1":{"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1},"2":{"1377":1,"1824":1,"1827":1,"1830":1,"1833":1,"2309":3}}],["kc60",{"2":{"236":1,"2187":1}}],["kc",{"0":{"8":2,"89":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":4,"1820":1},"1":{"1821":1,"1822":1},"2":{"7":2,"8":3,"28":6,"89":1,"90":8,"94":1,"172":3,"175":5,"191":2,"194":5,"195":2,"196":9,"199":5,"213":3,"220":6,"231":16,"255":1,"307":6,"379":211,"561":3,"564":3,"589":338,"631":1,"632":1,"1329":7,"1330":3,"1347":2,"1350":3,"1351":5,"1353":1,"1354":6,"1361":1,"1377":71,"1378":5,"1380":9,"1381":14,"1417":1,"1422":4,"1423":4,"1427":2,"1431":2,"1444":2,"1446":1,"1447":10,"1448":4,"1453":6,"1454":1,"1455":4,"1456":1,"1457":1,"1462":8,"1472":4,"1490":3,"1491":1,"1503":1,"1504":1,"1505":1,"1510":3,"1516":1,"1517":8,"1532":2,"1533":3,"1535":1,"1538":2,"1590":6,"1593":13,"1594":3,"1597":2,"1600":10,"1602":6,"1603":3,"1604":7,"1605":19,"1612":3,"1617":5,"1618":9,"1622":19,"1625":1,"1663":2,"1667":4,"1668":6,"1672":3,"1673":1,"1690":1,"1695":2,"1743":6,"1765":1,"1774":6,"1776":6,"1777":4,"1779":8,"1781":3,"1788":15,"1791":1,"1795":2,"1798":9,"1801":3,"1803":3,"1804":3,"1821":1,"2006":3,"2068":40,"2069":11,"2070":11,"2071":3,"2073":1,"2074":3,"2077":1,"2078":1,"2079":10,"2095":1,"2222":6,"2259":34,"2260":9,"2304":2,"2309":6,"2312":2,"2315":2,"2316":2,"2317":12,"2318":7,"2319":2,"2327":3,"2365":4,"2381":8,"2434":1,"2473":1,"2509":2,"2510":36,"2511":24,"2512":34,"2513":13,"2514":23,"2515":36,"2516":64,"2517":63,"2518":37,"2519":3,"2522":329,"2535":3,"2541":69,"2542":72,"2546":41,"2551":2,"2553":1,"2555":41,"2559":7,"2561":10,"2563":72,"2564":22,"2572":73,"2573":2,"2575":7,"2576":7,"2577":4,"2651":2,"2751":3,"2784":1,"2794":8,"2796":1,"2884":1,"2910":2,"2912":2,"2915":3,"2916":9,"2917":14,"2918":9,"2919":19,"2920":16,"2921":9,"2922":6,"2923":7,"2924":8,"2925":2,"2926":18,"2928":5,"2929":19,"2931":3,"2938":5,"2939":17,"2940":1,"2949":3}}],["kent",{"2":{"2942":1}}],["kerpleplork",{"2":{"609":4}}],["kernels",{"2":{"2739":1}}],["kernel",{"0":{"2471":1},"2":{"199":1,"1317":1,"2522":1,"2717":1,"2738":1}}],["kept",{"2":{"588":1,"668":1,"720":1,"1681":1,"1999":1,"2595":1,"2707":1}}],["keaboard",{"2":{"253":2}}],["kezewa",{"2":{"241":2,"249":1}}],["kestra",{"2":{"222":1}}],["kegen",{"2":{"175":1,"222":1}}],["kelowna",{"2":{"143":2}}],["keeb",{"2":{"2755":6}}],["keebzdotnet",{"2":{"222":1}}],["keebs",{"2":{"149":8,"191":1}}],["keebio",{"0":{"35":1},"2":{"35":1,"114":3,"134":1,"175":1,"199":2,"210":1,"277":1,"285":1,"317":1,"328":1,"1388":1,"1390":2,"1405":2,"2278":1}}],["keeps",{"2":{"1380":1,"1381":2,"1662":1,"2568":1}}],["keeping",{"2":{"540":1,"754":1,"1347":1,"1935":1,"2300":1,"2463":1,"2902":1,"2922":1}}],["keep",{"2":{"6":1,"74":2,"113":1,"124":1,"194":1,"222":2,"328":1,"512":2,"516":1,"527":1,"538":1,"561":1,"604":1,"609":1,"613":2,"646":1,"674":1,"675":2,"720":1,"1197":1,"1372":1,"1380":1,"1415":1,"1425":1,"1438":1,"1451":1,"1558":1,"1591":1,"1662":1,"1666":1,"1690":1,"1766":1,"1939":1,"1961":1,"1990":1,"2259":1,"2295":1,"2309":1,"2395":1,"2418":1,"2427":2,"2428":2,"2429":1,"2431":1,"2434":1,"2458":1,"2460":1,"2461":1,"2463":1,"2466":1,"2568":2,"2582":1,"2586":1,"2592":1,"2593":1,"2638":2,"2639":1,"2658":2,"2662":1,"2671":1,"2726":1,"2730":3,"2754":1,"2756":1,"2758":1,"2854":1,"2950":1}}],["keyunit",{"2":{"2869":4}}],["keyup",{"2":{"1377":1,"1452":1,"1454":1,"1667":2,"2222":2,"2854":2,"2871":2,"2878":2}}],["key3",{"2":{"2466":6}}],["key2",{"2":{"2466":10}}],["key0",{"2":{"2466":6}}],["key1",{"2":{"2301":1,"2466":6}}],["keylog",{"2":{"2889":2}}],["keyloggers",{"2":{"312":1}}],["keylogger",{"0":{"312":1},"2":{"317":1}}],["keylight",{"2":{"1847":1,"1852":1,"2083":1,"2091":1,"2095":1}}],["keyreleases",{"2":{"1852":2,"2091":2}}],["keyrepeating",{"2":{"1499":1,"1512":1,"1517":1}}],["keyrepeat",{"2":{"1498":1,"1499":1,"1511":1}}],["keyrecords",{"2":{"2004":1}}],["keyrecord",{"2":{"12":3,"149":1,"194":2,"195":2,"307":1,"324":1,"325":1,"593":2,"631":1,"632":2,"647":1,"1329":1,"1380":1,"1381":1,"1417":1,"1420":1,"1431":1,"1446":2,"1447":2,"1462":1,"1471":1,"1472":2,"1503":1,"1510":2,"1517":3,"1532":1,"1533":1,"1613":2,"1664":1,"1689":1,"1743":1,"1795":1,"1924":1,"1962":1,"1993":1,"1994":1,"2005":2,"2006":1,"2013":1,"2015":1,"2071":1,"2073":1,"2074":1,"2075":1,"2076":1,"2077":1,"2079":2,"2191":2,"2225":1,"2300":2,"2316":1,"2319":1,"2456":1,"2575":1,"2576":1,"2577":1,"2783":1,"2910":1,"2911":2,"2912":2,"2920":1,"2921":1,"2922":1,"2925":2,"2928":2,"2929":1,"2931":1,"2941":42}}],["keyed",{"2":{"669":1}}],["keyevent",{"2":{"222":1,"632":1,"2009":2,"2941":1}}],["key>",{"2":{"475":1,"497":2,"498":2}}],["key=value",{"2":{"433":1}}],["keydown",{"2":{"320":1,"1377":1,"1422":1,"1452":1,"1453":1,"1667":2,"2091":1,"2222":2,"2854":2,"2871":1,"2878":1,"2931":1}}],["keyten",{"2":{"300":2}}],["keypos",{"2":{"632":1,"2095":1,"2303":2,"2927":2}}],["keypads",{"2":{"266":1}}],["keypad",{"2":{"165":2,"210":1,"1351":1,"1357":1,"1743":1,"2509":1,"2513":1,"2517":1,"2518":19,"2522":20}}],["keypresses",{"0":{"1320":1},"2":{"289":1,"1422":1,"1447":1,"1661":1,"1852":1,"2091":1,"2217":1,"2276":1,"2680":1,"2828":1,"2926":1}}],["keypress",{"0":{"1329":1,"1330":1,"1331":1},"2":{"98":1,"328":1,"1329":1,"1377":1,"1427":1,"1493":1,"1662":1,"1664":1,"1680":1,"2091":1,"2300":1,"2547":30,"2651":30,"2829":1,"2870":1}}],["keyhive",{"2":{"159":10,"160":3}}],["keycap",{"2":{"2884":1}}],["keycaps",{"2":{"2293":1,"2805":1}}],["keycapsss",{"2":{"249":1}}],["keycult",{"2":{"308":1}}],["keychron",{"2":{"134":1,"175":4,"191":1,"222":2,"226":14,"236":5,"249":3,"266":2,"317":1}}],["keycode",{"0":{"28":1,"49":2,"157":1,"231":1,"283":1,"327":1,"619":1,"629":1,"630":1,"1330":1,"1431":1,"1809":1,"1815":1,"1992":1,"2226":1,"2301":1,"2351":1,"2364":1,"2820":1,"2939":1,"2949":1},"1":{"631":1,"632":1,"1810":1,"1811":1,"1816":1,"1817":1,"2352":1,"2353":1,"2365":1,"2366":1},"2":{"3":1,"7":1,"12":4,"28":1,"48":1,"49":1,"112":1,"133":1,"134":3,"156":3,"157":1,"160":2,"166":4,"172":9,"175":15,"182":1,"194":9,"195":5,"198":2,"199":7,"210":5,"231":25,"235":1,"236":1,"249":1,"255":2,"259":1,"266":2,"277":2,"285":6,"288":1,"294":1,"307":5,"308":4,"312":1,"317":1,"320":1,"324":3,"325":4,"333":1,"339":1,"563":2,"564":3,"593":14,"599":6,"619":2,"628":2,"629":2,"631":3,"632":3,"647":1,"684":1,"686":1,"1322":1,"1329":2,"1330":6,"1345":1,"1348":1,"1356":2,"1361":3,"1377":1,"1380":4,"1381":4,"1417":4,"1420":1,"1422":1,"1423":4,"1431":7,"1446":14,"1447":5,"1451":1,"1455":1,"1457":1,"1462":3,"1471":2,"1472":7,"1491":6,"1503":2,"1510":5,"1517":13,"1518":2,"1521":1,"1526":1,"1529":1,"1530":1,"1532":2,"1533":15,"1538":3,"1539":3,"1593":2,"1594":2,"1600":3,"1603":1,"1605":2,"1606":1,"1612":2,"1613":2,"1617":3,"1618":3,"1622":1,"1625":1,"1627":1,"1663":2,"1667":1,"1689":1,"1690":2,"1743":2,"1763":1,"1764":1,"1780":1,"1781":6,"1788":5,"1790":1,"1795":6,"1797":1,"1803":2,"1809":1,"1810":2,"1815":1,"1816":2,"1817":1,"1820":1,"1821":1,"1824":2,"1827":3,"1830":4,"1833":5,"1923":1,"1924":2,"1925":1,"1926":1,"1929":1,"1962":2,"1993":2,"1994":2,"1999":1,"2005":2,"2006":3,"2013":3,"2015":2,"2066":2,"2067":1,"2068":1,"2069":11,"2070":3,"2071":5,"2073":2,"2074":2,"2075":2,"2076":3,"2077":7,"2078":6,"2079":11,"2095":1,"2191":4,"2192":1,"2210":1,"2219":1,"2222":5,"2225":3,"2257":1,"2259":3,"2260":3,"2300":3,"2309":7,"2312":1,"2316":4,"2318":6,"2319":2,"2321":1,"2330":3,"2351":1,"2352":2,"2364":1,"2365":2,"2366":1,"2381":39,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2418":1,"2456":1,"2471":2,"2472":2,"2473":1,"2520":1,"2549":1,"2553":1,"2554":1,"2557":2,"2559":3,"2562":3,"2572":1,"2573":4,"2575":5,"2576":5,"2577":2,"2651":1,"2727":1,"2729":1,"2752":1,"2783":2,"2784":1,"2787":1,"2788":1,"2789":1,"2854":1,"2868":4,"2869":1,"2884":3,"2885":1,"2910":2,"2911":4,"2912":5,"2920":2,"2921":2,"2922":3,"2924":3,"2925":12,"2928":6,"2929":8,"2931":4,"2938":1,"2939":1,"2941":41,"2949":13}}],["keycodes",{"0":{"3":1,"7":1,"48":1,"166":1,"172":1,"207":1,"254":1,"316":1,"593":1,"628":1,"1345":1,"1346":1,"1347":1,"1495":1,"1530":1,"1543":1,"1603":1,"1606":1,"1674":1,"1680":1,"1744":1,"1764":1,"1780":1,"1805":1,"1848":1,"1925":1,"2018":1,"2067":1,"2084":1,"2181":1,"2216":1,"2222":1,"2253":1,"2257":1,"2304":1,"2321":1,"2332":1,"2377":1,"2460":1,"2509":1,"2520":1,"2521":1,"2522":1,"2523":1,"2538":1,"2555":1,"2651":1,"2751":1,"2752":1,"2868":1,"2884":1},"1":{"629":1,"630":1,"631":1,"632":1,"1675":1,"1681":1,"1682":1,"1683":1,"1684":1,"1685":1,"1686":1,"1687":1,"1688":1,"2223":1,"2510":1,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2541":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2552":1,"2752":1,"2885":1,"2886":1,"2887":1},"2":{"3":1,"7":1,"28":1,"39":1,"48":1,"49":2,"74":1,"93":1,"94":1,"114":1,"119":1,"120":5,"149":2,"157":2,"160":2,"166":4,"170":1,"172":25,"175":29,"191":1,"194":1,"198":1,"199":8,"207":1,"210":1,"222":1,"231":3,"254":4,"255":1,"257":1,"258":1,"259":2,"266":7,"277":5,"283":6,"285":3,"303":1,"307":4,"308":1,"316":2,"317":2,"327":2,"328":1,"338":1,"373":1,"379":1,"383":4,"564":2,"588":1,"593":4,"610":2,"629":4,"630":1,"631":1,"681":4,"1313":1,"1330":1,"1343":3,"1345":3,"1346":1,"1347":1,"1349":1,"1351":1,"1354":2,"1357":2,"1378":1,"1417":2,"1423":2,"1431":3,"1441":5,"1442":1,"1444":10,"1446":5,"1448":2,"1457":1,"1462":2,"1466":1,"1472":4,"1485":2,"1489":1,"1490":3,"1491":3,"1493":1,"1532":4,"1533":3,"1538":1,"1592":3,"1594":1,"1600":2,"1602":1,"1603":2,"1605":1,"1606":1,"1612":1,"1619":1,"1621":1,"1623":1,"1630":3,"1680":1,"1681":1,"1765":1,"1766":1,"1823":1,"1826":1,"1829":1,"1832":1,"1844":1,"1919":2,"1923":2,"1924":1,"1929":1,"1933":1,"1953":2,"1962":3,"1993":1,"1994":1,"2013":1,"2016":2,"2068":4,"2069":1,"2071":1,"2079":1,"2080":1,"2087":1,"2095":1,"2179":1,"2181":5,"2219":1,"2222":3,"2297":3,"2298":1,"2301":2,"2309":2,"2318":6,"2320":1,"2326":1,"2327":1,"2329":2,"2330":1,"2331":2,"2351":1,"2381":1,"2418":1,"2460":1,"2473":1,"2474":2,"2479":1,"2509":2,"2517":4,"2519":1,"2520":2,"2521":1,"2522":2,"2523":1,"2538":1,"2553":2,"2554":1,"2559":2,"2563":1,"2565":1,"2573":3,"2586":2,"2727":1,"2728":3,"2729":1,"2751":6,"2782":1,"2794":1,"2820":2,"2823":1,"2843":1,"2868":2,"2870":1,"2884":1,"2886":1,"2887":2,"2889":1,"2906":2,"2907":1,"2911":1,"2923":1,"2924":1,"2932":1,"2938":2,"2939":1,"2941":1,"2949":10}}],["keyword",{"2":{"103":1,"120":1,"126":1,"516":1,"1441":1}}],["key",{"0":{"32":1,"48":1,"99":1,"196":2,"213":1,"272":1,"480":1,"566":1,"670":1,"1350":1,"1356":1,"1360":1,"1369":1,"1387":1,"1496":1,"1510":1,"1513":1,"1514":1,"1515":1,"1516":1,"1611":1,"1612":1,"1617":1,"1618":1,"1660":1,"1689":1,"1762":1,"1766":1,"1767":1,"1769":1,"1770":1,"1771":1,"1772":1,"1773":1,"1781":1,"1786":1,"1796":1,"1801":1,"1803":1,"1820":1,"1940":1,"2005":1,"2009":1,"2065":1,"2066":1,"2073":1,"2076":1,"2077":1,"2307":1,"2469":1,"2533":1,"2536":1,"2549":1,"2790":1,"2821":1,"2822":1,"2825":1,"2833":1,"2870":1,"2921":1,"2924":1,"2932":2},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1763":1,"1764":1,"1765":1,"1767":1,"1768":1,"1769":1,"1770":2,"1771":2,"1772":2,"1773":2,"1774":1,"1775":1,"1776":1,"1777":1,"1778":1,"1779":1,"1780":1,"1781":1,"1782":1,"1783":1,"1784":1,"1785":1,"1786":1,"1787":1,"1788":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":2,"1822":2,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"2006":1,"2066":1,"2067":1,"2068":1,"2069":1,"2070":1,"2071":1,"2072":1,"2073":1,"2074":1,"2075":1,"2076":1,"2077":1,"2078":1,"2079":1,"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"12":1,"28":3,"33":1,"40":1,"63":1,"73":2,"93":2,"99":6,"110":1,"112":14,"114":7,"119":1,"134":2,"149":5,"152":1,"172":2,"175":7,"190":1,"191":4,"194":12,"195":3,"196":3,"199":7,"206":1,"210":5,"212":1,"213":9,"214":5,"217":2,"222":8,"231":1,"236":1,"249":1,"255":2,"257":1,"258":1,"259":2,"266":3,"268":1,"272":8,"277":1,"285":1,"288":1,"289":3,"294":1,"297":1,"308":2,"312":2,"320":2,"328":1,"333":1,"339":2,"382":3,"433":23,"437":1,"472":2,"476":3,"477":1,"484":1,"485":1,"496":3,"561":1,"563":1,"564":34,"569":1,"574":6,"588":4,"589":1,"599":4,"630":8,"631":2,"632":1,"647":4,"668":1,"669":1,"671":1,"673":1,"683":2,"684":3,"686":2,"720":1,"1312":1,"1329":3,"1348":1,"1350":4,"1353":1,"1356":2,"1358":3,"1361":1,"1364":1,"1370":1,"1377":3,"1381":5,"1387":1,"1409":1,"1410":18,"1413":14,"1417":1,"1421":1,"1422":8,"1423":1,"1427":2,"1433":1,"1440":1,"1444":8,"1446":4,"1447":2,"1448":3,"1454":1,"1455":2,"1462":1,"1472":1,"1485":2,"1486":1,"1489":1,"1490":1,"1492":1,"1493":2,"1495":1,"1496":3,"1497":1,"1498":10,"1499":4,"1500":1,"1501":1,"1503":2,"1509":1,"1510":6,"1517":7,"1518":6,"1522":4,"1523":1,"1525":2,"1529":1,"1532":1,"1543":1,"1589":5,"1590":6,"1593":5,"1594":2,"1595":3,"1597":1,"1598":1,"1600":5,"1602":1,"1604":2,"1605":3,"1609":3,"1611":1,"1612":6,"1614":2,"1615":1,"1616":1,"1617":9,"1618":8,"1619":2,"1624":2,"1625":35,"1626":1,"1627":1,"1630":1,"1655":1,"1661":1,"1662":1,"1663":1,"1664":1,"1667":1,"1671":2,"1672":3,"1674":1,"1676":1,"1680":1,"1689":1,"1690":3,"1744":1,"1762":4,"1763":3,"1764":2,"1765":4,"1766":7,"1768":2,"1769":2,"1770":3,"1773":1,"1774":14,"1776":16,"1777":5,"1779":7,"1780":6,"1781":9,"1782":5,"1783":3,"1784":9,"1785":6,"1786":12,"1787":8,"1788":3,"1789":5,"1790":2,"1791":7,"1795":3,"1796":2,"1798":2,"1800":1,"1801":7,"1802":6,"1803":2,"1804":1,"1805":1,"1811":1,"1818":1,"1846":6,"1847":2,"1848":1,"1849":8,"1933":2,"1934":2,"1935":3,"1936":1,"1937":4,"1939":5,"1940":2,"1956":1,"1962":2,"1992":1,"1993":1,"1994":2,"1999":7,"2000":7,"2003":1,"2006":1,"2008":5,"2009":5,"2013":5,"2016":2,"2018":1,"2065":9,"2066":5,"2067":4,"2068":8,"2069":9,"2070":2,"2071":1,"2072":3,"2073":6,"2074":2,"2075":2,"2076":9,"2077":8,"2078":5,"2079":1,"2082":6,"2083":2,"2084":1,"2085":13,"2086":3,"2087":1,"2091":1,"2095":1,"2096":1,"2181":1,"2216":1,"2225":1,"2226":1,"2253":1,"2256":4,"2259":15,"2260":7,"2264":1,"2272":5,"2273":1,"2276":2,"2293":1,"2295":1,"2298":2,"2300":4,"2301":5,"2302":1,"2304":3,"2308":1,"2309":13,"2310":8,"2316":1,"2317":16,"2318":5,"2319":12,"2320":1,"2327":6,"2330":2,"2332":1,"2344":3,"2345":1,"2346":1,"2376":1,"2377":1,"2390":1,"2396":2,"2397":1,"2418":8,"2429":1,"2434":1,"2466":5,"2468":2,"2469":5,"2470":2,"2471":1,"2474":2,"2510":1,"2511":1,"2512":1,"2513":1,"2514":3,"2515":1,"2516":2,"2517":1,"2518":1,"2519":3,"2520":4,"2521":2,"2522":7,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":4,"2534":1,"2535":1,"2536":2,"2537":1,"2538":4,"2539":1,"2540":1,"2541":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":5,"2550":1,"2551":2,"2552":1,"2555":1,"2557":2,"2558":1,"2563":5,"2564":1,"2569":1,"2572":8,"2573":1,"2575":1,"2576":2,"2577":1,"2606":1,"2612":1,"2617":1,"2639":1,"2650":10,"2651":4,"2652":4,"2679":1,"2685":1,"2721":1,"2728":2,"2752":1,"2787":1,"2790":1,"2791":3,"2794":2,"2795":8,"2796":4,"2797":2,"2799":2,"2820":1,"2821":2,"2822":1,"2823":1,"2824":1,"2825":3,"2829":1,"2831":3,"2833":1,"2834":5,"2839":2,"2840":1,"2842":3,"2843":1,"2851":1,"2854":6,"2860":2,"2863":1,"2868":1,"2869":24,"2870":3,"2871":1,"2872":1,"2873":1,"2874":2,"2876":2,"2878":1,"2884":1,"2885":1,"2890":1,"2894":1,"2907":1,"2910":4,"2912":6,"2913":1,"2914":13,"2915":4,"2916":4,"2917":6,"2918":4,"2919":3,"2920":28,"2921":18,"2922":4,"2923":6,"2924":5,"2925":9,"2926":10,"2927":11,"2928":1,"2929":7,"2930":1,"2931":10,"2932":3,"2937":2,"2938":1,"2940":2,"2941":2,"2949":2}}],["keyswitch",{"2":{"1656":1,"1660":1,"1667":1,"2428":2,"2429":3,"2431":1,"2434":5,"2466":5,"2872":1}}],["keyswitches",{"2":{"569":1,"1541":1,"2421":1}}],["keystrokes",{"2":{"1440":1,"1525":1,"2086":1,"2219":1,"2223":1,"2317":1,"2327":1,"2378":1,"2764":1}}],["keystroke",{"2":{"312":1,"1447":2}}],["keys",{"0":{"112":1,"353":1,"481":1,"1349":1,"1351":1,"1357":1,"1358":1,"1369":1,"1377":1,"1385":1,"1600":1,"1779":1,"1823":1,"1826":1,"1829":1,"1832":1,"1930":1,"1931":1,"1932":1,"1934":1,"2000":1,"2004":1,"2005":1,"2006":1,"2013":1,"2069":1,"2072":1,"2079":1,"2318":1,"2319":1,"2467":1,"2511":1,"2513":1,"2517":1,"2519":1,"2524":1,"2540":1,"2542":1,"2543":1,"2547":1,"2650":1,"2796":1,"2799":1,"2800":1,"2873":1,"2918":1},"1":{"1784":1,"1785":1,"1786":1,"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1,"1931":1,"1932":2,"1933":2,"1934":1,"1935":2,"1936":2,"1937":2,"1938":2,"1939":2,"1940":2,"1941":1,"2005":1,"2006":2,"2070":1,"2071":1,"2073":1,"2074":1,"2075":1,"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1,"2651":1,"2652":1},"2":{"7":2,"70":1,"74":1,"98":2,"112":2,"114":2,"119":2,"134":2,"143":4,"149":1,"160":1,"166":2,"174":2,"175":6,"191":5,"194":2,"196":3,"199":1,"212":1,"213":3,"222":6,"236":1,"255":1,"259":1,"263":1,"277":1,"289":1,"294":1,"297":2,"308":1,"316":1,"320":1,"433":1,"472":1,"477":1,"561":1,"564":4,"574":1,"584":1,"599":2,"618":1,"620":1,"669":1,"670":1,"673":1,"1349":2,"1351":1,"1353":2,"1356":1,"1358":2,"1362":2,"1364":1,"1378":2,"1381":1,"1385":1,"1410":1,"1413":1,"1421":1,"1422":1,"1425":1,"1434":1,"1442":1,"1444":3,"1447":2,"1448":1,"1458":1,"1460":1,"1473":1,"1490":1,"1492":1,"1499":3,"1503":6,"1504":1,"1506":1,"1507":1,"1510":2,"1513":1,"1514":1,"1515":1,"1516":1,"1517":4,"1518":1,"1519":1,"1520":1,"1521":1,"1522":2,"1532":1,"1533":3,"1541":1,"1591":1,"1593":2,"1594":2,"1597":6,"1598":1,"1600":2,"1602":5,"1604":1,"1608":1,"1609":3,"1611":1,"1612":10,"1619":1,"1622":1,"1625":1,"1661":1,"1663":1,"1690":7,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1765":3,"1766":4,"1779":1,"1784":1,"1785":2,"1787":4,"1788":1,"1789":2,"1791":1,"1796":1,"1798":3,"1801":1,"1802":2,"1804":1,"1849":1,"1930":1,"1931":3,"1932":1,"1934":6,"1937":1,"1938":1,"1940":1,"1941":2,"1964":1,"1968":1,"1999":3,"2000":1,"2004":4,"2005":2,"2006":2,"2009":2,"2016":1,"2057":1,"2068":2,"2069":1,"2071":2,"2072":3,"2073":1,"2074":1,"2075":3,"2076":1,"2079":4,"2085":4,"2086":4,"2095":3,"2213":1,"2255":1,"2258":1,"2259":10,"2260":2,"2269":1,"2292":1,"2293":2,"2294":1,"2295":4,"2296":2,"2298":3,"2300":10,"2301":4,"2308":1,"2309":4,"2317":1,"2319":4,"2320":1,"2330":2,"2418":1,"2421":1,"2432":1,"2434":1,"2460":1,"2466":5,"2475":1,"2520":3,"2521":1,"2538":3,"2540":1,"2541":1,"2547":4,"2556":1,"2558":3,"2559":1,"2561":1,"2562":1,"2563":1,"2564":2,"2574":1,"2576":1,"2579":1,"2585":1,"2586":1,"2612":3,"2617":1,"2650":9,"2651":5,"2652":1,"2721":2,"2751":1,"2782":1,"2789":1,"2790":1,"2794":2,"2795":1,"2796":2,"2797":2,"2799":1,"2800":3,"2804":1,"2808":1,"2825":1,"2841":1,"2851":1,"2861":1,"2869":1,"2873":2,"2874":1,"2886":1,"2889":1,"2890":1,"2909":5,"2910":1,"2911":5,"2912":7,"2913":4,"2914":3,"2920":6,"2921":2,"2923":3,"2925":5,"2926":5,"2927":5,"2929":1,"2931":4,"2932":1,"2937":1,"2938":2}}],["keymapping",{"2":{"1359":1}}],["keymap=",{"2":{"2583":1}}],["keymap=skully",{"2":{"483":1}}],["keymap=none",{"2":{"482":1,"483":1}}],["keymap=default",{"2":{"429":1,"473":1,"474":1,"476":1,"483":1}}],["keymap>",{"2":{"429":2,"452":1,"453":1,"2384":1,"2388":1,"2587":1,"2594":1,"2595":1,"2614":1,"2616":1}}],["keymap",{"0":{"5":1,"272":1,"445":1,"449":1,"559":1,"598":1,"599":1,"600":1,"627":1,"683":1,"1344":1,"1348":1,"1405":1,"1433":1,"1435":1,"1468":1,"2415":1,"2419":1,"2556":1,"2557":1,"2558":1,"2560":1,"2584":1,"2585":1,"2594":1,"2595":1,"2606":1,"2610":1,"2630":1,"2727":1,"2823":1},"1":{"1345":1,"1346":1,"1347":1,"1348":1,"1349":1,"1350":1,"1351":1,"1352":1,"1353":1,"1354":1,"1355":1,"1356":1,"1357":1,"1358":1,"1359":1,"1360":1,"1361":1,"1362":1,"1434":1,"1435":1,"1436":2,"1437":1,"1438":1,"1439":1,"2557":1,"2558":2,"2559":2,"2560":1,"2561":2,"2562":2,"2563":2,"2564":2},"2":{"4":1,"5":4,"21":1,"22":1,"24":1,"26":1,"35":1,"38":1,"51":4,"55":1,"75":2,"86":1,"89":1,"90":1,"92":4,"93":3,"94":1,"114":19,"119":2,"120":3,"123":1,"125":7,"133":1,"134":7,"149":5,"154":1,"160":4,"169":7,"173":1,"175":10,"188":1,"191":19,"199":14,"201":1,"206":1,"210":6,"213":2,"217":1,"222":14,"228":1,"229":1,"236":7,"241":1,"249":7,"253":1,"255":2,"256":1,"266":7,"270":1,"272":2,"273":1,"277":6,"281":1,"284":1,"285":4,"288":1,"294":4,"307":3,"308":6,"317":3,"323":1,"328":3,"333":6,"339":1,"367":1,"373":1,"379":2,"380":1,"381":2,"382":2,"393":1,"414":1,"429":15,"430":3,"433":7,"436":1,"437":4,"438":1,"439":5,"440":4,"445":6,"447":6,"449":5,"452":7,"453":7,"454":3,"462":1,"470":1,"473":4,"474":1,"476":1,"481":1,"482":1,"483":2,"484":2,"485":4,"500":2,"517":3,"555":1,"556":1,"559":1,"561":1,"581":3,"585":1,"586":2,"587":1,"588":8,"589":8,"592":2,"593":2,"596":1,"597":1,"598":1,"600":4,"609":2,"612":1,"620":1,"627":4,"629":2,"632":2,"636":1,"638":1,"642":1,"645":1,"646":1,"647":3,"650":1,"654":1,"660":1,"673":2,"683":1,"1315":1,"1322":2,"1329":1,"1344":1,"1347":1,"1348":4,"1353":1,"1354":1,"1357":1,"1388":2,"1390":2,"1405":2,"1417":4,"1418":1,"1420":2,"1421":1,"1423":1,"1425":1,"1431":1,"1432":2,"1433":4,"1434":1,"1435":1,"1439":1,"1441":3,"1446":2,"1449":2,"1462":1,"1463":3,"1464":2,"1465":1,"1466":2,"1470":9,"1471":1,"1472":11,"1484":1,"1485":1,"1487":1,"1491":1,"1492":1,"1500":1,"1502":1,"1503":1,"1521":1,"1527":2,"1532":1,"1594":1,"1601":1,"1602":1,"1603":1,"1606":1,"1622":4,"1625":1,"1627":4,"1628":3,"1630":1,"1631":1,"1632":1,"1634":5,"1656":4,"1657":2,"1661":1,"1662":1,"1667":4,"1668":2,"1672":1,"1701":1,"1742":1,"1763":1,"1768":1,"1776":1,"1790":1,"1791":1,"1794":1,"1795":1,"1797":1,"1837":1,"1850":2,"1851":2,"1855":1,"1910":1,"1915":1,"1923":1,"1932":1,"1933":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1945":2,"1958":1,"1962":2,"2000":1,"2001":1,"2005":1,"2011":1,"2012":1,"2013":1,"2053":2,"2057":1,"2066":1,"2069":1,"2072":1,"2088":2,"2090":2,"2094":1,"2095":1,"2170":1,"2175":1,"2179":1,"2181":1,"2189":1,"2191":1,"2225":1,"2256":2,"2273":1,"2277":1,"2284":2,"2293":1,"2298":2,"2302":2,"2305":1,"2309":3,"2312":3,"2317":5,"2318":1,"2319":2,"2320":1,"2326":1,"2329":4,"2330":5,"2331":1,"2384":6,"2387":4,"2402":1,"2406":2,"2408":2,"2410":2,"2414":2,"2415":6,"2416":2,"2417":6,"2418":5,"2419":1,"2429":1,"2434":1,"2448":1,"2453":2,"2454":3,"2455":2,"2456":1,"2479":1,"2504":1,"2520":1,"2521":1,"2523":1,"2557":3,"2558":4,"2560":3,"2561":2,"2565":2,"2572":1,"2573":1,"2579":1,"2583":2,"2584":8,"2585":4,"2587":2,"2590":4,"2594":7,"2595":4,"2598":2,"2603":1,"2605":7,"2606":4,"2607":2,"2608":6,"2609":1,"2610":3,"2614":1,"2616":2,"2629":1,"2630":1,"2663":1,"2673":2,"2727":2,"2728":10,"2729":5,"2751":2,"2752":1,"2757":2,"2794":2,"2796":2,"2869":2,"2884":1,"2885":5,"2886":2,"2887":71,"2894":2,"2906":1,"2910":1,"2912":2,"2920":1,"2921":1,"2922":1,"2924":1,"2927":3,"2928":1,"2929":1,"2931":1,"2938":2,"2939":1,"2940":1,"2941":1,"2948":1,"2949":1}}],["keymaps",{"0":{"26":1,"50":1,"120":1,"265":1,"275":1,"442":1,"587":1,"1439":1,"1441":1,"1445":1,"1449":1,"1463":1,"2562":1},"1":{"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"1442":1,"1443":1,"1444":1,"1446":1,"1447":1,"1448":1,"1449":1,"1450":1,"1451":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1461":1,"1462":1,"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1,"2563":1,"2564":1},"2":{"0":1,"2":1,"3":1,"4":2,"5":1,"7":1,"8":1,"9":1,"22":1,"26":3,"29":1,"42":1,"48":1,"50":2,"52":1,"60":1,"65":1,"73":1,"74":1,"75":2,"107":1,"114":3,"125":1,"134":1,"149":2,"154":1,"156":2,"160":2,"166":2,"169":1,"175":8,"182":1,"188":2,"191":3,"199":4,"201":4,"208":1,"210":1,"212":1,"222":2,"224":2,"228":5,"231":1,"232":1,"236":2,"238":1,"249":7,"265":5,"266":5,"268":2,"275":3,"277":1,"283":1,"285":2,"317":1,"333":1,"339":1,"373":1,"378":1,"399":1,"414":1,"416":2,"425":1,"429":4,"430":1,"437":2,"439":1,"442":2,"447":1,"449":1,"557":2,"578":2,"588":5,"589":2,"609":1,"612":1,"613":2,"627":1,"682":1,"683":1,"701":1,"1329":1,"1331":1,"1343":3,"1344":1,"1348":1,"1390":1,"1433":1,"1446":3,"1465":1,"1468":1,"1472":2,"1480":2,"1627":1,"1924":1,"2054":1,"2293":1,"2294":1,"2312":1,"2319":1,"2384":2,"2387":1,"2414":2,"2416":1,"2417":3,"2453":3,"2454":2,"2455":2,"2460":1,"2556":1,"2557":1,"2562":4,"2579":1,"2584":1,"2585":1,"2586":1,"2590":7,"2592":2,"2594":2,"2595":1,"2596":1,"2597":1,"2610":1,"2618":1,"2727":6,"2728":5,"2729":4,"2868":1,"2906":1,"2907":2,"2908":1,"2939":1}}],["keyboard=true",{"2":{"1322":1}}],["keyboard=clueboard",{"2":{"473":1,"474":1,"483":1,"2583":1}}],["keyboard>",{"2":{"429":4,"430":1,"452":1,"453":1,"623":1,"1435":1,"1436":2,"2006":1,"2384":1,"2388":1,"2584":1,"2587":1,"2594":1,"2595":1,"2614":1,"2616":1,"2629":1}}],["keyboard|keymap|kbfirmware",{"0":{"188":1},"2":{"191":1}}],["keyboardio",{"2":{"27":2,"191":1}}],["keyboard",{"0":{"19":1,"27":1,"34":1,"55":1,"59":1,"86":1,"102":1,"122":1,"143":1,"159":1,"165":1,"183":1,"197":1,"205":1,"218":1,"226":1,"241":1,"253":1,"262":1,"270":1,"281":1,"291":1,"300":1,"311":1,"322":1,"353":1,"375":1,"444":1,"448":1,"557":1,"567":1,"580":1,"596":1,"597":1,"602":1,"626":1,"633":1,"634":1,"635":1,"636":1,"640":1,"641":1,"642":1,"646":1,"648":1,"650":1,"651":1,"654":1,"684":1,"1320":1,"1341":1,"1364":1,"1403":1,"1437":1,"1442":1,"1458":1,"1460":1,"1637":1,"1838":1,"1840":1,"1931":1,"1987":1,"1989":1,"2057":1,"2058":1,"2261":1,"2293":1,"2414":1,"2438":1,"2447":1,"2449":1,"2451":1,"2453":1,"2456":1,"2457":1,"2459":1,"2461":1,"2466":1,"2476":1,"2611":1,"2612":1,"2613":1,"2615":1,"2616":1,"2663":1,"2704":1,"2714":1,"2716":1,"2728":1,"2780":1,"2787":1,"2793":1,"2880":1,"2885":1},"1":{"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"35":1,"60":1,"568":1,"569":1,"570":1,"627":1,"634":1,"635":2,"636":2,"637":1,"638":1,"639":1,"640":1,"641":2,"642":2,"647":1,"649":1,"650":1,"652":1,"653":1,"654":1,"1342":1,"1404":1,"1438":1,"1439":1,"1932":1,"1933":1,"2262":1,"2263":1,"2264":1,"2265":1,"2266":1,"2267":1,"2268":1,"2269":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2275":1,"2276":1,"2277":1,"2278":1,"2279":1,"2280":1,"2281":1,"2448":1,"2449":1,"2450":1,"2451":1,"2452":2,"2453":2,"2454":2,"2455":2,"2456":2,"2457":2,"2458":1,"2459":1,"2460":2,"2461":1,"2462":1,"2463":1,"2464":1,"2465":1,"2477":1,"2478":1,"2479":1,"2480":1,"2481":1,"2612":1,"2613":1,"2614":2,"2615":2,"2616":1,"2617":1,"2715":1,"2716":1,"2717":2,"2718":2,"2719":2,"2720":2,"2721":2,"2722":1,"2723":1,"2724":1,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"4":2,"21":2,"24":3,"26":1,"40":6,"47":2,"55":1,"56":1,"62":1,"67":3,"70":5,"74":1,"75":2,"76":2,"82":2,"86":6,"90":3,"92":1,"93":2,"94":3,"99":1,"102":2,"105":4,"107":1,"110":2,"111":2,"112":1,"114":7,"116":2,"119":1,"120":1,"122":2,"124":1,"125":5,"133":4,"134":10,"138":1,"143":4,"149":14,"159":2,"160":3,"165":2,"168":1,"169":5,"175":10,"183":2,"184":1,"188":2,"191":8,"197":2,"199":6,"205":3,"206":1,"209":2,"210":11,"212":3,"215":1,"218":2,"220":3,"222":10,"226":2,"229":3,"233":2,"234":1,"236":11,"238":1,"240":1,"241":4,"249":12,"253":4,"255":1,"262":3,"263":2,"265":1,"266":67,"270":4,"277":7,"281":4,"285":4,"291":2,"293":1,"294":13,"300":2,"305":1,"306":1,"308":8,"311":2,"312":2,"314":1,"315":1,"317":4,"322":2,"328":4,"332":2,"333":4,"337":2,"353":1,"367":1,"369":1,"373":2,"375":2,"377":1,"379":4,"384":1,"396":2,"398":1,"399":1,"429":7,"430":2,"433":2,"434":2,"437":7,"439":1,"440":4,"442":3,"443":2,"444":3,"445":4,"447":1,"448":4,"450":4,"452":6,"453":6,"454":3,"462":1,"470":1,"473":4,"474":2,"480":1,"481":1,"484":2,"485":6,"496":2,"555":3,"556":1,"557":2,"561":8,"565":2,"567":2,"570":1,"572":2,"574":7,"575":4,"578":3,"580":3,"587":1,"588":5,"589":2,"592":2,"593":6,"594":3,"596":4,"599":1,"609":2,"612":5,"622":1,"623":1,"624":1,"625":3,"626":2,"627":4,"632":1,"633":4,"635":3,"636":3,"638":1,"639":6,"640":1,"641":1,"642":3,"643":2,"645":1,"646":1,"647":1,"648":1,"649":2,"650":1,"651":3,"654":1,"660":1,"665":1,"668":3,"673":2,"683":1,"684":6,"685":2,"686":5,"687":6,"689":2,"720":1,"728":1,"729":1,"746":2,"753":1,"754":1,"755":1,"756":1,"758":1,"804":1,"805":1,"830":1,"831":1,"862":1,"863":1,"892":1,"893":1,"927":1,"928":1,"961":1,"962":1,"995":1,"996":1,"1029":1,"1030":1,"1063":1,"1064":1,"1097":1,"1098":1,"1131":1,"1132":1,"1165":1,"1166":1,"1192":1,"1195":1,"1198":1,"1201":2,"1203":3,"1204":3,"1218":1,"1219":1,"1299":1,"1303":1,"1312":1,"1313":1,"1315":1,"1319":1,"1320":3,"1322":2,"1323":1,"1324":1,"1325":1,"1332":1,"1335":1,"1342":1,"1346":1,"1349":1,"1351":1,"1352":1,"1353":1,"1356":3,"1357":1,"1358":4,"1359":2,"1361":2,"1362":1,"1364":2,"1365":5,"1368":1,"1372":1,"1376":2,"1378":2,"1380":1,"1381":1,"1388":1,"1390":2,"1397":1,"1403":2,"1405":1,"1407":3,"1410":1,"1413":1,"1415":1,"1417":3,"1418":1,"1420":1,"1421":1,"1422":1,"1424":1,"1425":1,"1427":1,"1428":4,"1432":1,"1433":1,"1434":4,"1435":1,"1436":1,"1438":7,"1439":1,"1440":1,"1441":1,"1444":1,"1446":1,"1451":2,"1463":1,"1464":1,"1472":6,"1473":1,"1480":1,"1485":2,"1486":1,"1490":1,"1491":2,"1492":5,"1493":1,"1497":1,"1522":1,"1523":1,"1527":1,"1541":1,"1544":1,"1550":2,"1551":1,"1556":2,"1557":1,"1587":1,"1589":1,"1590":1,"1592":1,"1593":2,"1623":1,"1625":4,"1630":1,"1631":1,"1632":1,"1638":6,"1657":1,"1661":4,"1666":2,"1668":3,"1671":1,"1673":1,"1675":1,"1681":2,"1687":1,"1701":1,"1702":1,"1766":3,"1784":3,"1785":3,"1786":1,"1787":2,"1788":1,"1792":1,"1835":3,"1836":1,"1837":4,"1838":1,"1839":1,"1840":2,"1841":1,"1842":1,"1846":9,"1847":1,"1849":1,"1850":3,"1852":2,"1855":1,"1908":1,"1911":1,"1912":1,"1917":1,"1924":1,"1930":1,"1931":1,"1944":1,"1945":3,"1948":5,"1957":1,"1958":1,"1960":2,"1961":4,"1962":4,"1977":1,"1983":1,"1986":1,"1988":2,"1989":1,"1997":1,"1999":2,"2005":1,"2037":2,"2040":1,"2041":1,"2042":1,"2043":1,"2054":1,"2057":4,"2058":1,"2071":4,"2082":9,"2083":1,"2085":6,"2086":1,"2088":3,"2091":2,"2094":1,"2095":1,"2096":1,"2097":1,"2168":1,"2171":1,"2172":1,"2177":1,"2178":3,"2179":1,"2188":1,"2189":6,"2190":1,"2191":1,"2207":1,"2208":1,"2210":2,"2211":1,"2213":1,"2214":1,"2223":2,"2249":1,"2264":1,"2265":1,"2268":2,"2269":2,"2272":2,"2273":5,"2274":1,"2275":2,"2276":9,"2277":9,"2278":2,"2281":1,"2284":4,"2287":5,"2288":1,"2292":5,"2293":3,"2294":4,"2297":3,"2298":2,"2302":1,"2305":2,"2308":1,"2315":2,"2324":1,"2325":1,"2331":3,"2342":1,"2377":1,"2382":1,"2384":6,"2388":1,"2392":1,"2396":2,"2406":3,"2408":3,"2410":3,"2412":2,"2414":8,"2416":3,"2417":11,"2418":7,"2419":3,"2421":2,"2423":5,"2426":2,"2431":1,"2432":7,"2433":1,"2434":4,"2435":1,"2436":2,"2438":1,"2439":1,"2448":2,"2449":3,"2450":13,"2451":5,"2452":1,"2453":7,"2454":4,"2455":3,"2456":2,"2457":2,"2458":1,"2459":1,"2460":3,"2461":1,"2463":1,"2464":1,"2466":4,"2469":1,"2470":2,"2471":2,"2472":1,"2474":1,"2477":1,"2485":3,"2487":4,"2489":3,"2491":1,"2493":1,"2495":1,"2497":1,"2504":1,"2509":1,"2517":1,"2520":3,"2523":5,"2535":1,"2538":2,"2553":1,"2554":1,"2561":1,"2562":1,"2563":2,"2567":1,"2573":1,"2579":5,"2580":1,"2582":1,"2583":5,"2584":1,"2585":1,"2587":1,"2588":1,"2589":2,"2590":1,"2595":1,"2597":1,"2599":1,"2605":1,"2606":1,"2609":1,"2611":1,"2612":7,"2613":2,"2614":2,"2616":5,"2617":3,"2619":1,"2629":4,"2650":1,"2651":1,"2652":1,"2663":1,"2669":1,"2673":2,"2674":2,"2676":1,"2684":5,"2685":2,"2686":2,"2687":1,"2694":1,"2701":1,"2714":11,"2715":2,"2716":2,"2717":8,"2718":2,"2720":1,"2721":1,"2726":2,"2727":1,"2728":26,"2729":4,"2752":5,"2753":1,"2756":2,"2757":4,"2761":1,"2764":1,"2787":1,"2788":1,"2794":6,"2795":8,"2796":1,"2799":1,"2800":3,"2804":2,"2805":1,"2806":1,"2808":1,"2810":1,"2812":2,"2813":2,"2819":1,"2823":1,"2826":1,"2827":1,"2830":1,"2832":1,"2837":2,"2838":2,"2845":1,"2848":1,"2849":1,"2851":4,"2852":7,"2853":2,"2854":1,"2869":4,"2871":1,"2878":1,"2880":2,"2882":5,"2884":5,"2885":3,"2886":1,"2894":1,"2906":1,"2908":4,"2910":2,"2927":4,"2929":1,"2932":2,"2933":1,"2936":6,"2937":2,"2938":3,"2940":1,"2941":1,"2948":1,"2949":1}}],["keyboards",{"0":{"31":1,"54":1,"116":1,"441":1,"612":1,"627":1,"1433":1,"1468":1,"1590":1,"1666":1,"2426":1,"2794":1},"1":{"32":1,"33":1,"55":1,"56":1,"57":1,"58":1,"1434":1,"1435":1,"1436":1,"1437":1,"1438":1,"1439":1},"2":{"2":1,"18":1,"20":1,"23":1,"25":2,"26":3,"27":1,"33":3,"39":1,"40":1,"47":1,"58":1,"65":2,"67":1,"69":2,"70":5,"73":2,"74":3,"86":3,"90":1,"92":1,"93":2,"102":1,"107":3,"109":1,"110":1,"114":9,"116":1,"118":1,"122":1,"123":1,"124":2,"132":1,"134":5,"141":1,"143":1,"149":14,"159":1,"160":2,"165":1,"175":4,"183":1,"184":2,"188":2,"191":2,"197":1,"199":2,"201":2,"206":1,"209":1,"210":5,"212":3,"220":1,"222":3,"235":1,"236":4,"240":2,"249":17,"251":1,"262":1,"266":8,"277":3,"279":1,"285":3,"294":1,"308":4,"317":4,"328":3,"333":1,"339":1,"344":1,"383":4,"425":1,"429":5,"430":1,"432":1,"433":2,"434":2,"437":1,"439":1,"441":2,"448":1,"449":1,"450":1,"488":1,"507":1,"558":2,"561":2,"565":1,"567":1,"568":1,"574":1,"578":1,"580":1,"588":1,"589":1,"597":1,"605":1,"609":1,"612":4,"613":3,"623":1,"627":1,"665":5,"666":1,"682":1,"686":1,"690":1,"701":1,"1192":1,"1195":1,"1198":2,"1201":2,"1206":1,"1208":1,"1209":1,"1318":1,"1319":1,"1321":1,"1335":1,"1343":3,"1350":1,"1354":1,"1356":1,"1388":1,"1392":1,"1393":1,"1404":1,"1413":2,"1414":2,"1433":1,"1439":1,"1464":1,"1465":1,"1471":1,"1472":1,"1480":2,"1490":1,"1492":1,"1517":1,"1523":3,"1541":1,"1542":1,"1544":1,"1546":1,"1589":3,"1595":1,"1622":1,"1623":1,"1655":1,"1681":1,"1835":1,"1852":1,"1948":1,"1949":1,"1956":1,"1983":2,"1998":1,"2014":1,"2091":1,"2095":1,"2096":1,"2178":1,"2179":2,"2182":1,"2189":2,"2191":1,"2208":1,"2261":4,"2265":2,"2272":1,"2278":1,"2287":1,"2292":1,"2294":1,"2377":1,"2378":1,"2384":1,"2387":1,"2388":2,"2389":2,"2391":1,"2393":1,"2400":1,"2402":1,"2403":1,"2406":1,"2408":1,"2412":1,"2413":1,"2414":2,"2416":2,"2417":4,"2418":1,"2423":1,"2432":1,"2435":1,"2439":1,"2447":1,"2448":1,"2450":3,"2451":1,"2454":13,"2455":13,"2462":3,"2466":1,"2467":1,"2477":1,"2500":1,"2518":1,"2522":1,"2556":1,"2567":2,"2570":1,"2583":3,"2584":3,"2587":1,"2589":1,"2590":1,"2594":1,"2612":1,"2616":1,"2618":1,"2629":3,"2700":1,"2702":3,"2703":2,"2704":1,"2705":1,"2706":1,"2707":1,"2714":3,"2726":1,"2728":3,"2729":1,"2755":6,"2793":1,"2794":3,"2833":1,"2851":3,"2852":1,"2853":1,"2871":1,"2878":1,"2884":1,"2894":1,"2908":3,"2927":1,"2934":1}}],["g5",{"2":{"1925":1,"2539":1}}],["g3",{"2":{"1925":1,"2539":1}}],["g1",{"2":{"1925":1,"2539":1}}],["g♯",{"2":{"1925":6,"2539":6}}],["gs5",{"2":{"1925":1,"2539":1}}],["gs4",{"2":{"1925":1,"2539":1}}],["gs3",{"2":{"1925":1,"2539":1}}],["gs2",{"2":{"1925":1,"2539":1}}],["gs1",{"2":{"1925":1,"2539":1}}],["gs",{"2":{"1925":1,"2539":1}}],["gskt00",{"2":{"122":2}}],["g♭",{"2":{"1925":6,"2539":6}}],["gb5",{"2":{"1925":1,"2539":1}}],["gb4",{"2":{"1925":1,"2539":1}}],["gb3",{"2":{"1925":1,"2539":1}}],["gb2",{"2":{"1925":1,"2539":1}}],["gb1",{"2":{"1925":1,"2539":1}}],["gb",{"2":{"1657":1,"1925":1,"2539":1}}],["gboy",{"2":{"175":1}}],["gboards",{"2":{"143":4,"149":1,"160":1,"175":1,"1622":2}}],["gnd",{"2":{"698":1,"699":1,"716":8,"722":1,"829":1,"858":1,"890":1,"922":8,"957":8,"991":1,"1025":1,"1059":1,"1093":8,"1127":8,"1161":8,"1194":1,"1197":1,"1200":1,"1217":1,"1313":1,"1681":1,"1838":1,"2208":1,"2266":1,"2267":1,"2389":1,"2392":1,"2394":1,"2395":1,"2397":1,"2399":1,"2401":1,"2404":1,"2431":1,"2485":2,"2487":4,"2489":2,"2491":2,"2493":2,"2495":2,"2507":2,"2612":1,"2674":1,"2691":6}}],["gnu++14",{"2":{"191":1}}],["gnu11",{"2":{"191":1}}],["gnu",{"0":{"392":1},"2":{"134":1,"236":3,"384":1,"388":1,"1467":4,"2465":1,"2732":4}}],["gd25q64cs",{"2":{"2705":2}}],["gdb",{"2":{"390":1,"397":1,"2674":3,"2947":1}}],["gd32v",{"2":{"175":1,"689":2}}],["gd32vf103",{"2":{"130":2,"134":1,"191":2,"554":1}}],["gmt",{"2":{"381":2,"383":2}}],["gmmk2",{"2":{"236":1}}],["gmmk",{"2":{"102":3,"114":11,"134":1,"149":2,"159":4,"160":2,"175":2,"191":3,"199":1,"210":1,"2403":1}}],["gp3",{"2":{"2702":1}}],["gp8",{"2":{"2694":1}}],["gpx",{"2":{"2694":1}}],["gp0",{"2":{"2044":1,"2702":2}}],["gp19",{"2":{"2702":1}}],["gp18",{"2":{"2702":1}}],["gp17",{"2":{"2700":1}}],["gp1",{"2":{"2044":1,"2702":2}}],["gpt",{"2":{"717":8,"718":4,"1557":4}}],["gptd15",{"2":{"1557":1}}],["gptd8",{"2":{"722":1}}],["gptd8tim8",{"2":{"716":1}}],["gptd6",{"2":{"718":1}}],["gptd6tim6",{"2":{"716":1}}],["gptd9",{"2":{"717":1}}],["gptd7tim7",{"2":{"716":1}}],["gp20",{"2":{"2702":1}}],["gp2",{"2":{"2702":1}}],["gp29",{"2":{"696":1}}],["gp28",{"2":{"696":1}}],["gp27",{"2":{"696":1}}],["gp26",{"2":{"696":1}}],["gpl3",{"2":{"2726":1}}],["gpl2+",{"2":{"2726":1,"2728":1}}],["gpl2",{"2":{"2726":1}}],["gplv3",{"2":{"2465":2}}],["gplv2",{"0":{"2732":1},"2":{"2465":1}}],["gpl",{"2":{"284":1,"581":1,"1467":1,"1630":2,"2465":1,"2567":1,"2568":1,"2726":1,"2732":1,"2733":2,"2734":1,"2735":3,"2736":2,"2737":1,"2741":3,"2742":2,"2744":1,"2747":2,"2748":3,"2749":1,"2750":3}}],["gpioa",{"2":{"1396":1}}],["gpiob",{"2":{"772":2}}],["gpios",{"2":{"761":1,"2684":1,"2685":1,"2686":1}}],["gpiov3",{"2":{"721":1}}],["gpiov2",{"2":{"721":1}}],["gpiov1",{"2":{"721":1}}],["gpiof",{"2":{"65":1}}],["gpio",{"0":{"148":1,"243":1,"331":1,"760":1,"1659":1,"2693":1},"1":{"761":1,"762":1,"763":1,"2694":1,"2695":1},"2":{"39":1,"64":1,"94":1,"114":3,"133":1,"134":1,"149":2,"243":13,"244":1,"249":2,"266":4,"277":1,"308":1,"331":3,"333":1,"635":5,"639":3,"693":1,"704":2,"726":3,"734":1,"740":1,"744":1,"760":1,"761":13,"762":1,"772":2,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1193":1,"1194":1,"1195":1,"1196":1,"1197":1,"1198":2,"1200":2,"1201":1,"1205":2,"1216":1,"1248":2,"1252":1,"1283":1,"1285":1,"1290":1,"1297":3,"1298":2,"1398":2,"1404":1,"1554":1,"1558":2,"1655":1,"1699":4,"1838":6,"2044":2,"2288":3,"2685":2,"2686":2,"2691":1,"2693":1,"2694":3,"2695":3,"2700":1,"2704":1,"2726":1,"2855":2,"2856":3,"2857":3,"2858":1,"2863":1,"2865":2,"2867":6,"2872":4,"2875":2,"2876":4,"2880":3,"2883":1}}],["gc9a01",{"2":{"277":1,"2753":2,"2756":7}}],["gc9107",{"2":{"277":1}}],["gc9xxx",{"2":{"277":1}}],["gcc15",{"2":{"308":1}}],["gcc10",{"2":{"134":1}}],["gcc",{"2":{"73":1,"132":1,"134":2,"210":1,"339":2,"387":1,"393":1,"2417":1,"2662":1}}],["gk61",{"2":{"236":3,"294":1}}],["g2",{"2":{"222":2,"1925":1,"2539":1}}],["g60",{"2":{"222":2}}],["g431",{"2":{"249":1}}],["g4",{"2":{"175":1,"1925":1,"2539":1}}],["g474",{"2":{"39":1}}],["gif",{"2":{"2755":2}}],["gifs",{"2":{"153":1,"2753":1}}],["gigadevice",{"0":{"554":1},"2":{"554":1}}],["gives",{"2":{"492":1,"495":1,"538":1,"1609":1,"1803":1,"1846":1,"1953":1,"2082":1,"2374":1,"2418":1,"2634":1,"2914":1}}],["give",{"0":{"2481":1},"2":{"317":1,"365":1,"1209":1,"1378":1,"1620":2,"1998":1,"2057":1,"2379":1,"2430":1,"2460":1,"2639":1,"2662":1,"2696":1,"2914":1,"2942":1}}],["given",{"0":{"2903":1},"2":{"181":1,"312":1,"698":2,"699":2,"797":1,"810":1,"837":1,"869":1,"899":1,"934":1,"968":1,"1002":1,"1036":1,"1070":1,"1104":1,"1138":1,"1172":1,"1225":1,"1378":1,"1484":1,"1503":1,"1612":3,"1620":1,"1622":1,"1633":1,"1755":1,"1758":1,"1794":1,"1815":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"1934":2,"1959":1,"2198":9,"2201":2,"2222":3,"2300":1,"2319":1,"2351":1,"2354":1,"2357":1,"2364":1,"2371":1,"2417":1,"2432":1,"2459":1,"2470":1,"2474":1,"2475":1,"2559":1,"2565":1,"2567":1,"2612":1,"2711":1,"2726":1,"2728":2,"2729":1,"2757":2,"2796":1,"2912":1,"2927":1,"2940":1,"2949":1}}],["giving",{"2":{"283":1,"1589":1,"1774":1,"2642":1}}],["giabalanai",{"2":{"210":1}}],["ginkgo65hot",{"2":{"191":1}}],["gingham",{"2":{"143":2}}],["gitconfig",{"2":{"444":1}}],["gitignore",{"2":{"149":2,"175":1,"191":1}}],["git",{"0":{"6":1,"1340":1,"2601":1,"2631":1,"2632":1,"2635":1,"2646":1,"2816":1},"1":{"2632":1,"2636":1,"2637":1},"2":{"14":1,"43":1,"114":1,"199":1,"222":1,"249":1,"409":12,"411":16,"414":2,"420":10,"421":11,"422":9,"423":6,"459":1,"487":1,"588":1,"589":2,"607":7,"609":1,"1340":2,"1628":4,"1629":1,"2384":2,"2387":8,"2592":2,"2593":2,"2595":1,"2598":1,"2601":12,"2602":1,"2607":2,"2608":10,"2610":1,"2615":1,"2632":1,"2634":21,"2635":1,"2636":1,"2637":19,"2639":18,"2640":18,"2641":2,"2646":2,"2653":1,"2664":1,"2667":10,"2671":3,"2674":1,"2726":1,"2730":3,"2817":1,"2906":1}}],["github",{"0":{"1340":1,"2387":1,"2592":1,"2597":1,"2598":1,"2602":1,"2607":1,"2608":1,"2817":1,"2899":1},"1":{"2599":1,"2600":1,"2601":1,"2602":1,"2603":1,"2604":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2610":1},"2":{"2":1,"11":2,"134":1,"236":1,"344":3,"402":1,"403":2,"409":1,"412":1,"414":1,"420":1,"421":2,"484":1,"505":1,"541":1,"574":1,"579":1,"607":6,"684":1,"1319":1,"1338":1,"1339":1,"1340":2,"1352":1,"1353":2,"1359":3,"1361":1,"1376":1,"1398":1,"1463":1,"1467":3,"1628":2,"1962":1,"2331":1,"2384":1,"2387":6,"2583":2,"2584":2,"2590":2,"2591":1,"2592":2,"2593":2,"2595":1,"2597":3,"2598":3,"2599":2,"2600":2,"2601":1,"2602":1,"2603":1,"2605":2,"2606":2,"2607":4,"2608":7,"2609":2,"2610":2,"2628":2,"2632":1,"2635":1,"2637":11,"2639":5,"2671":2,"2672":1,"2675":1,"2714":1,"2728":1,"2852":1,"2899":1}}],["gluing",{"2":{"2422":1}}],["glue",{"2":{"489":1,"2435":1}}],["glossary",{"0":{"2801":1},"1":{"2802":1,"2803":1,"2804":1,"2805":1,"2806":1,"2807":1,"2808":1,"2809":1,"2810":1,"2811":1,"2812":1,"2813":1,"2814":1,"2815":1,"2816":1,"2817":1,"2818":1,"2819":1,"2820":1,"2821":1,"2822":1,"2823":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":1,"2832":1,"2833":1,"2834":1,"2835":1,"2836":1,"2837":1,"2838":1,"2839":1,"2840":1,"2841":1,"2842":1,"2843":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2849":1}}],["glorious",{"2":{"2403":2}}],["globs",{"2":{"469":1}}],["globe",{"2":{"236":1}}],["globally",{"2":{"1428":1,"1774":2,"1776":1}}],["global",{"0":{"727":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1},"2":{"94":1,"134":1,"175":1,"187":1,"191":2,"285":2,"297":1,"308":1,"387":1,"388":1,"390":1,"519":2,"574":1,"625":1,"704":1,"712":1,"726":2,"727":1,"857":2,"861":1,"921":2,"926":1,"956":2,"960":1,"990":2,"994":1,"1024":2,"1028":1,"1058":2,"1062":1,"1092":2,"1096":1,"1126":2,"1130":1,"1160":2,"1164":1,"1410":4,"1413":1,"1431":1,"1472":1,"1850":3,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1895":1,"1897":1,"1903":1,"2013":1,"2088":3,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2149":1,"2151":1,"2157":1,"2159":1,"2161":1,"2163":1,"2318":1,"2607":1,"2855":1,"2910":1,"2912":1}}],["glcdfont",{"2":{"1946":1,"1949":1,"2288":1}}],["glibc",{"2":{"2739":1}}],["gliding",{"2":{"1939":1}}],["glide",{"2":{"1939":1,"1976":1,"1985":3}}],["glides",{"2":{"1939":1}}],["glitch",{"2":{"222":1,"719":1}}],["glance",{"2":{"492":1,"2640":1,"2935":1}}],["glamorous",{"2":{"251":1}}],["glacier",{"2":{"222":1}}],["glyphs",{"2":{"2755":21,"2765":2,"2767":4,"2768":1,"2769":2,"2770":2}}],["glyph",{"0":{"2768":1,"2769":1},"2":{"191":1,"2755":2,"2765":2,"2767":3,"2768":13,"2769":8,"2770":2}}],["glenpickle",{"2":{"143":4,"149":1}}],["ggkeyboards",{"2":{"114":1}}],["guessed",{"2":{"1962":1,"2927":1}}],["guess",{"2":{"1956":1}}],["guestures",{"2":{"191":1}}],["guarantees",{"2":{"2757":1}}],["guarantee",{"2":{"629":1}}],["guaranteed",{"2":{"403":1,"763":1}}],["guarded",{"2":{"2709":1}}],["guard",{"2":{"160":1,"191":1,"199":1,"210":1,"328":1,"333":1,"418":1}}],["guards",{"2":{"4":1,"134":1,"512":1,"2726":1}}],["gu",{"2":{"285":1,"2520":3,"2538":3}}],["gurindam",{"2":{"143":2}}],["guiding",{"2":{"2905":1}}],["guidance",{"2":{"2580":1}}],["guided",{"2":{"2942":1}}],["guides",{"0":{"2436":1},"2":{"604":1,"1314":1,"2427":1}}],["guidelines",{"0":{"609":1,"2447":1},"1":{"610":1,"611":1,"612":1,"613":1,"614":1,"2448":1,"2449":1,"2450":1,"2451":1,"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":1,"2458":1,"2459":1,"2460":1,"2461":1,"2462":1,"2463":1,"2464":1,"2465":1},"2":{"512":1,"521":1,"603":2,"609":1,"612":1,"613":1,"674":1,"1340":1,"1424":1,"1425":1,"2414":1,"2610":1,"2714":2,"2721":1,"2908":1}}],["guide",{"0":{"365":1,"1955":1,"2420":1,"2482":1},"1":{"2421":1,"2422":1,"2423":1,"2424":1,"2425":1,"2426":1,"2427":1,"2428":1,"2429":1,"2430":1,"2431":1,"2432":1,"2433":1,"2434":1,"2435":1,"2436":1,"2483":1,"2484":1,"2485":1,"2486":1,"2487":1,"2488":1,"2489":1,"2490":1,"2491":1,"2492":1,"2493":1,"2494":1,"2495":1,"2496":1,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":1,"2503":1,"2504":1,"2505":1,"2506":1,"2507":1,"2508":1},"2":{"199":1,"384":2,"385":1,"430":1,"684":2,"1336":1,"2281":1,"2387":2,"2417":1,"2422":1,"2423":1,"2434":1,"2436":3,"2579":1,"2580":3,"2581":1,"2582":1,"2591":1,"2598":2,"2603":1,"2610":1,"2616":1,"2664":1,"2665":1}}],["guitar",{"2":{"1485":2,"1486":3,"1490":1}}],["gui+s",{"2":{"196":1,"1798":1}}],["gui",{"2":{"114":1,"231":2,"266":1,"285":1,"328":1,"354":1,"373":1,"683":1,"1349":2,"1377":15,"1378":8,"1457":1,"1672":1,"1673":1,"1674":1,"1676":2,"1690":1,"1777":3,"1779":1,"1788":8,"2068":1,"2075":3,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2514":4,"2520":26,"2522":4,"2531":1,"2538":26,"2541":16,"2542":16,"2547":15,"2572":19,"2579":1,"2651":15,"2652":4,"2653":1,"2758":1,"2889":1,"2929":8,"2931":1}}],["gr",{"2":{"2300":1,"2301":3}}],["grunt",{"2":{"1462":1}}],["grb",{"2":{"1285":1,"1287":3}}],["grv",{"2":{"379":2,"589":2,"1672":2,"1777":2,"2512":1,"2522":1,"2563":1,"2564":1,"2910":1,"2912":1}}],["growing",{"2":{"2942":1}}],["grow",{"2":{"603":1,"2888":1}}],["grown",{"2":{"113":1,"665":1,"2447":2}}],["grounded",{"2":{"2499":1}}],["ground",{"2":{"396":1,"561":1,"749":1,"1297":1,"1312":1,"1313":1,"1475":1,"1478":2,"1482":1,"1558":1,"1659":1,"1669":1,"2433":1,"2720":1}}],["groupbuys",{"2":{"2728":1}}],["group",{"0":{"1513":1,"1514":1,"1515":1,"1516":1},"2":{"249":5,"465":1,"516":1,"668":1,"1335":1,"1513":1,"1514":1,"1515":1,"1516":1,"2185":1,"2295":4,"2477":1,"2521":1,"2945":1}}],["groups",{"2":{"231":1,"1503":2,"2296":1}}],["grayscale",{"2":{"2755":4,"2776":5}}],["graystudio",{"2":{"222":1}}],["gram",{"2":{"2079":1}}],["grammar",{"2":{"191":1}}],["graphic",{"2":{"2755":2}}],["graphical",{"2":{"2478":1,"2589":1,"2599":1,"2619":1,"2664":1,"2753":1,"2758":1}}],["graphics",{"0":{"466":1,"2772":1,"2774":1},"1":{"2773":1,"2774":1,"2775":1,"2776":1,"2777":1,"2778":1,"2779":1},"2":{"2755":2,"2758":2,"2772":3,"2773":1,"2774":4,"2775":1}}],["grape",{"2":{"222":1}}],["grabbing",{"2":{"2428":1}}],["grab",{"2":{"386":1,"2428":1,"2634":1}}],["gracefully",{"2":{"220":1}}],["granularity",{"2":{"2252":1,"2928":1}}],["granular",{"2":{"195":1,"1498":1,"1503":1,"1510":1,"2910":1,"2920":1,"2921":1,"2922":1,"2929":1}}],["gradients",{"2":{"2085":2}}],["gradient",{"2":{"191":1,"199":1,"354":1,"1417":1,"1849":4,"2085":22,"2087":3,"2181":2,"2183":2,"2184":2,"2186":1,"2187":2,"2544":2,"2894":3}}],["grave",{"0":{"1671":1,"1777":1,"2531":1},"1":{"1672":1,"1673":1,"1674":1,"1675":1,"1676":1},"2":{"114":1,"172":1,"175":1,"199":1,"353":1,"683":1,"1360":1,"1625":1,"1671":2,"1674":1,"1676":4,"1692":1,"1777":4,"2512":1,"2520":2,"2522":1,"2531":2,"2538":2,"2561":2,"2586":1,"2669":1,"2886":1,"2889":1,"2941":1}}],["gritty",{"0":{"2565":1},"2":{"365":1}}],["grin",{"2":{"163":1}}],["grid",{"2":{"112":1,"249":1,"569":3,"1439":1,"1655":1,"1846":1,"2082":1,"2086":1,"2272":3,"2863":1,"2880":1}}],["grs",{"2":{"114":1,"149":1}}],["greyscale",{"2":{"2765":1,"2772":1}}],["grep",{"2":{"2728":2}}],["greek",{"2":{"2886":1,"2887":2}}],["greeting",{"2":{"489":1,"1687":1}}],["greet",{"2":{"485":1,"489":1}}],["green",{"0":{"707":1,"709":1,"735":1,"737":1,"812":1,"814":1,"820":1,"839":1,"841":1,"847":1,"871":1,"873":1,"879":1,"903":1,"905":1,"911":1,"938":1,"940":1,"946":1,"972":1,"974":1,"980":1,"1006":1,"1008":1,"1014":1,"1040":1,"1042":1,"1048":1,"1074":1,"1076":1,"1082":1,"1108":1,"1110":1,"1116":1,"1142":1,"1144":1,"1150":1,"1176":1,"1178":1,"1184":1,"1229":1,"1231":1,"1237":1,"1306":1,"1308":1},"1":{"708":1,"710":1,"736":1,"738":1,"813":1,"815":1,"821":1,"840":1,"842":1,"848":1,"872":1,"874":1,"880":1,"904":1,"906":1,"912":1,"939":1,"941":1,"947":1,"973":1,"975":1,"981":1,"1007":1,"1009":1,"1015":1,"1041":1,"1043":1,"1049":1,"1075":1,"1077":1,"1083":1,"1109":1,"1111":1,"1117":1,"1143":1,"1145":1,"1151":1,"1177":1,"1179":1,"1185":1,"1230":1,"1232":1,"1238":1,"1307":1,"1309":1},"2":{"39":1,"344":3,"403":1,"494":1,"601":2,"652":1,"686":1,"708":2,"710":2,"729":1,"732":1,"736":2,"738":2,"805":1,"808":1,"813":2,"815":2,"821":2,"831":1,"834":1,"840":2,"842":2,"848":2,"863":1,"866":1,"872":2,"874":2,"880":2,"893":1,"896":1,"904":2,"906":2,"912":2,"928":1,"931":1,"939":2,"941":2,"947":2,"962":1,"965":1,"973":2,"975":2,"981":2,"996":1,"999":1,"1007":2,"1009":2,"1015":2,"1030":1,"1033":1,"1041":2,"1043":2,"1049":2,"1064":1,"1067":1,"1075":2,"1077":2,"1083":2,"1098":1,"1101":1,"1109":2,"1111":2,"1117":2,"1132":1,"1135":1,"1143":2,"1145":2,"1151":2,"1166":1,"1169":1,"1177":2,"1179":2,"1185":2,"1219":1,"1222":1,"1230":2,"1232":2,"1238":2,"1287":1,"1288":1,"1307":2,"1309":2,"1417":1,"2089":2,"2094":2,"2095":1,"2108":1,"2110":1,"2181":1,"2185":1,"2189":2,"2191":1,"2198":1,"2205":3,"2544":1,"2674":1,"2731":1}}],["greatest",{"2":{"2709":1}}],["greater",{"2":{"63":1,"414":1,"433":2,"720":1,"1423":1,"1518":2,"2007":1,"2573":1}}],["great",{"2":{"542":1,"565":1,"1336":1,"1503":1,"1589":1,"1591":1,"1801":1,"2595":1,"2645":1,"2646":1,"2671":1,"2676":1,"2707":1}}],["greatly",{"2":{"39":1,"2417":1}}],["gh",{"2":{"2608":4}}],["ghcr",{"2":{"2607":1}}],["gh62",{"2":{"450":5,"2432":5}}],["gh60",{"2":{"429":3,"2615":1}}],["gherkin",{"2":{"266":1,"322":4,"328":1,"2690":1}}],["ghoul",{"2":{"199":1}}],["ghosting",{"0":{"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1},"2":{"134":1,"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"2466":2,"2872":1}}],["ghost",{"2":{"112":1,"199":1,"561":2,"889":1,"2872":1}}],["gh80",{"2":{"57":4,"266":1}}],["gauge",{"2":{"2902":1}}],["gather",{"2":{"1964":1,"2902":1}}],["gathering",{"2":{"429":1}}],["gateway",{"2":{"2941":1}}],["gateron",{"2":{"2421":1}}],["gate",{"2":{"1545":1,"1558":2}}],["gasc",{"2":{"1378":2}}],["gamma",{"2":{"236":1}}],["game",{"2":{"241":6,"1440":1,"1606":1,"1738":1,"2567":1,"2646":1}}],["gamers",{"2":{"137":1}}],["gamebuddy",{"2":{"102":3,"114":1}}],["galleon",{"2":{"222":1}}],["galaxy",{"2":{"114":1}}],["garbled",{"2":{"175":1}}],["gap",{"2":{"134":1,"2466":1}}],["gain",{"2":{"131":1,"693":1,"2894":1}}],["gained",{"2":{"100":1,"107":1,"153":1}}],["gaining",{"2":{"86":1,"2810":1}}],["gold",{"2":{"2089":2,"2205":3}}],["goldenrod",{"2":{"2089":2,"2205":2}}],["golden",{"2":{"1523":1}}],["google",{"0":{"2943":2},"2":{"398":1,"2943":3,"2944":1}}],["googletest",{"2":{"339":1,"2387":1}}],["googling",{"2":{"397":1}}],["goodbye",{"2":{"1485":1,"1486":2}}],["good",{"2":{"119":1,"512":1,"517":2,"532":1,"533":1,"535":1,"604":1,"633":1,"648":1,"1315":1,"1337":1,"1427":1,"1433":1,"1467":1,"1525":1,"1987":1,"1988":1,"2057":1,"2309":1,"2317":2,"2387":1,"2425":1,"2427":2,"2428":1,"2429":1,"2466":1,"2479":1,"2508":1,"2579":1,"2644":1,"2675":1,"2717":1,"2910":1,"2913":1,"2932":1,"2942":1}}],["goal",{"2":{"262":1,"516":1,"1433":1}}],["goes",{"2":{"181":1,"398":1,"416":1,"492":1,"1368":1,"1482":2,"1540":1,"2057":1,"2182":1,"2252":1,"2502":1,"2508":1,"2726":1,"2753":1,"2871":1,"2877":1,"2878":1}}],["going",{"2":{"172":1,"268":1,"626":1,"755":1,"1417":1,"2310":1,"2429":2,"2431":1,"2434":1,"2460":1,"2468":1,"2587":1,"2592":1,"2640":2,"2651":1,"2794":2,"2795":1,"2897":1,"2948":1}}],["gotten",{"2":{"596":1}}],["got",{"2":{"158":1,"163":1,"166":1,"174":1,"179":1,"191":1,"245":1,"513":1,"1352":1,"1473":1,"2434":1}}],["go",{"0":{"606":1},"2":{"92":1,"119":1,"137":1,"152":1,"353":1,"365":1,"393":2,"411":1,"416":1,"512":1,"514":1,"558":1,"668":2,"1422":2,"1472":1,"1482":1,"1522":2,"1539":2,"1680":2,"1947":1,"1954":1,"2011":1,"2209":1,"2286":1,"2290":1,"2310":1,"2331":1,"2387":1,"2399":1,"2401":1,"2404":1,"2416":1,"2422":1,"2429":1,"2432":1,"2587":1,"2650":1,"2669":1,"2674":1,"2707":1,"2712":1,"2728":2,"2795":1,"2912":2}}],["gone",{"2":{"187":1}}],["gon",{"0":{"51":1},"2":{"51":3}}],["g",{"0":{"2107":1,"2109":1},"1":{"2108":1,"2110":1},"2":{"28":2,"65":1,"114":1,"149":1,"160":2,"175":2,"222":6,"236":1,"249":3,"266":2,"328":25,"379":1,"411":1,"565":1,"588":1,"589":2,"686":2,"695":1,"729":2,"732":1,"736":1,"805":3,"808":1,"813":1,"817":1,"821":1,"823":1,"831":3,"834":1,"840":1,"844":1,"848":1,"850":1,"863":3,"866":1,"872":1,"876":1,"880":1,"882":1,"893":3,"896":1,"904":1,"908":1,"912":1,"914":1,"928":3,"931":1,"939":1,"943":1,"947":1,"949":1,"962":3,"965":1,"973":1,"977":1,"981":1,"983":1,"996":3,"999":1,"1007":1,"1011":1,"1015":1,"1017":1,"1030":3,"1033":1,"1041":1,"1045":1,"1049":1,"1051":1,"1064":3,"1067":1,"1075":1,"1079":1,"1083":1,"1085":1,"1098":3,"1101":1,"1109":1,"1113":1,"1117":1,"1119":1,"1132":3,"1135":1,"1143":1,"1147":1,"1151":1,"1153":1,"1166":3,"1169":1,"1177":1,"1181":1,"1185":1,"1187":1,"1196":1,"1200":1,"1219":3,"1222":1,"1230":1,"1234":1,"1238":1,"1240":1,"1288":2,"1365":1,"1377":1,"1392":1,"1393":1,"1410":2,"1413":3,"1422":1,"1446":1,"1449":1,"1465":1,"1484":1,"1538":1,"1590":1,"1601":1,"1603":1,"1618":3,"1622":2,"1665":1,"1767":1,"1781":3,"1787":1,"1788":1,"1835":1,"1846":1,"1850":2,"1925":19,"1945":2,"1948":1,"1953":2,"1968":1,"1985":1,"1986":1,"1999":1,"2014":1,"2051":1,"2082":1,"2086":1,"2088":2,"2094":1,"2095":2,"2096":3,"2108":1,"2110":1,"2181":2,"2189":1,"2191":3,"2192":1,"2198":10,"2210":1,"2273":5,"2276":3,"2287":1,"2296":1,"2301":1,"2309":1,"2318":1,"2414":1,"2423":1,"2425":2,"2426":1,"2435":1,"2490":2,"2510":3,"2522":3,"2539":19,"2541":1,"2544":1,"2563":1,"2610":2,"2627":1,"2662":1,"2663":2,"2674":1,"2680":1,"2685":2,"2726":1,"2727":1,"2728":3,"2729":1,"2731":1,"2757":1,"2854":1,"2889":1,"2912":8,"2913":1,"2929":1,"2931":1}}],["gfx",{"2":{"21":3,"24":2,"1955":10,"2757":2}}],["german",{"2":{"2838":1,"2887":8}}],["gergoplex",{"2":{"160":1,"175":1}}],["gergo",{"2":{"143":2}}],["ge",{"2":{"2520":2,"2538":2}}],["gemini",{"2":{"2297":3,"2300":2}}],["geminipr",{"0":{"2296":1},"2":{"2294":1,"2296":6,"2298":1,"2301":2,"2881":1}}],["geminate60",{"2":{"143":2,"222":1}}],["geekhack",{"2":{"1353":1,"1367":1,"1375":1,"1376":1}}],["geometric",{"2":{"2871":1,"2878":1}}],["geometry",{"2":{"2757":2,"2927":1}}],["geonworks",{"2":{"241":1,"249":1}}],["georgi",{"2":{"143":2}}],["gesture",{"0":{"1971":1},"2":{"1970":1,"1976":1,"1977":1,"1985":3,"2046":1}}],["gestures",{"0":{"1976":1,"1977":1},"2":{"191":1,"1971":3,"1974":2,"1976":2,"1977":1,"1985":3}}],["gesc",{"2":{"175":2,"199":2,"1672":1,"1673":2,"1674":1,"2531":1}}],["genuine",{"2":{"1361":1}}],["gen1",{"2":{"483":1}}],["gentleman",{"2":{"191":1}}],["gentleman65",{"2":{"183":2,"222":2}}],["gentoo",{"2":{"175":1,"222":2,"2601":1}}],["genisis",{"2":{"114":1}}],["genetic",{"2":{"327":1}}],["genesis",{"2":{"102":3}}],["generating",{"2":{"328":1,"665":1,"673":1,"1472":1,"1518":1,"1959":1,"2407":1,"2409":1,"2714":1,"2790":1,"2851":1}}],["generation",{"2":{"45":1,"132":1,"175":3,"191":1,"199":2,"210":4,"231":1,"249":1,"277":1,"285":1,"294":1,"2667":1}}],["generators",{"2":{"340":2,"530":1,"531":1}}],["generator",{"0":{"530":1},"2":{"132":1,"149":2,"1702":1,"2422":1}}],["generates",{"2":{"461":1,"462":1,"672":1,"2589":1}}],["generated",{"2":{"73":1,"308":1,"333":1,"461":1,"580":1,"617":1,"673":1,"719":1,"1450":1,"1481":1,"1488":1,"1620":1,"2417":1,"2557":1,"2674":1,"2728":1,"2755":5,"2764":1}}],["generate",{"0":{"302":1,"461":1,"462":1,"470":1,"673":1},"2":{"70":4,"95":1,"114":1,"132":2,"153":1,"160":1,"175":1,"199":2,"222":1,"236":2,"249":2,"277":1,"308":2,"328":3,"339":1,"344":3,"379":1,"447":1,"461":1,"462":1,"470":1,"580":1,"666":3,"673":5,"1388":1,"1480":3,"1527":1,"1528":1,"1670":1,"1968":1,"1980":1,"1985":1,"2390":2,"2397":2,"2417":2,"2673":1,"2755":4,"2938":1}}],["generally",{"2":{"403":1,"494":1,"516":1,"527":1,"529":1,"532":1,"535":1,"538":1,"544":1,"545":1,"561":1,"656":1,"675":1,"677":1,"688":1,"746":1,"750":1,"768":1,"797":1,"1248":1,"1269":1,"1298":1,"1315":1,"1422":1,"1477":1,"1544":1,"1556":1,"1639":1,"1668":1,"1836":1,"1853":1,"2009":1,"2070":1,"2092":1,"2317":1,"2424":1,"2463":1,"2473":1,"2482":1,"2501":1,"2612":1,"2674":1,"2755":2,"2756":1,"2757":1,"2860":1,"2894":1,"2903":3}}],["generalise",{"2":{"175":1,"236":1}}],["generalize",{"2":{"149":1}}],["general",{"0":{"609":1,"680":1,"2852":1},"1":{"610":1,"611":1,"612":1,"613":1,"614":1},"2":{"5":1,"43":1,"190":1,"201":1,"212":1,"233":1,"491":1,"512":1,"514":1,"603":1,"1303":1,"1467":3,"1557":1,"1766":1,"2015":1,"2317":1,"2465":1,"2644":1,"2646":1,"2707":2,"2711":1,"2731":1,"2732":3,"2756":1,"2757":1,"2765":1,"2772":1,"2901":1}}],["generic",{"0":{"189":1,"1613":1,"1924":1,"2702":1,"2703":1},"2":{"40":1,"187":1,"190":1,"191":3,"236":3,"317":1,"328":1,"685":1,"1433":1,"1503":3,"1924":1,"1964":2,"2261":2,"2508":1,"2517":1,"2703":2,"2705":2,"2805":1,"2845":1}}],["gets",{"2":{"496":1,"578":1,"645":1,"646":1,"651":1,"657":1,"658":1,"659":1,"1440":1,"1451":1,"1464":1,"1517":2,"1537":1,"1794":1,"1954":1,"1961":1,"1988":1,"2008":1,"2204":6,"2300":1,"2323":3,"2466":2,"2561":1,"2685":1,"2950":1}}],["getter",{"2":{"534":1}}],["getters",{"2":{"236":2}}],["getting",{"0":{"420":1,"421":1,"2432":1,"2896":1},"1":{"2897":1,"2898":1,"2899":1},"2":{"222":2,"403":1,"677":1,"684":2,"701":1,"1417":1,"1425":1,"2655":1,"2665":1,"2725":1,"2726":1,"2731":1,"2795":1,"2896":1}}],["getta25",{"2":{"143":2,"308":1}}],["getreuer",{"2":{"163":1,"175":1,"288":1,"1540":1}}],["get",{"0":{"370":1,"371":1,"372":1,"1333":1,"1568":1,"1582":1,"1767":1,"1877":1,"1883":1,"1893":1,"1903":1,"1906":1,"2033":1,"2119":1,"2125":1,"2131":1,"2137":1,"2147":1,"2157":1,"2163":1,"2166":1,"2334":1,"2354":1,"2478":1,"2925":1},"1":{"1569":1,"1583":1,"1878":1,"1884":1,"1894":1,"1904":1,"1907":1,"2034":1,"2120":1,"2126":1,"2132":1,"2138":1,"2148":1,"2158":1,"2164":1,"2167":1,"2335":1,"2355":1,"2356":1},"2":{"12":4,"13":1,"40":1,"75":1,"140":1,"158":1,"160":1,"174":1,"175":3,"194":6,"195":2,"199":1,"210":4,"236":2,"249":1,"273":1,"276":1,"277":1,"284":1,"285":1,"308":1,"317":1,"323":4,"324":2,"325":4,"381":1,"385":1,"386":1,"389":1,"392":1,"434":1,"437":1,"458":1,"513":1,"530":1,"561":1,"564":2,"574":1,"588":1,"604":1,"609":1,"610":1,"613":2,"625":1,"629":1,"645":1,"687":1,"1312":1,"1330":2,"1332":2,"1336":1,"1356":1,"1365":1,"1378":10,"1380":1,"1381":1,"1388":1,"1390":1,"1417":1,"1422":1,"1427":2,"1428":1,"1429":1,"1430":1,"1431":1,"1442":1,"1451":1,"1470":1,"1472":2,"1484":1,"1490":1,"1491":1,"1496":2,"1498":2,"1499":2,"1503":7,"1510":5,"1517":1,"1526":1,"1533":1,"1534":1,"1568":1,"1570":1,"1575":1,"1591":1,"1593":2,"1594":1,"1595":1,"1601":1,"1612":9,"1620":1,"1625":1,"1661":1,"1689":1,"1781":1,"1788":1,"1795":1,"1835":1,"1840":1,"1851":4,"1852":1,"1863":1,"1877":1,"1883":1,"1893":1,"1903":1,"1906":1,"1923":1,"1945":1,"1947":1,"1954":1,"1956":1,"1957":1,"1984":2,"1985":1,"1986":2,"1988":3,"1990":1,"1992":1,"1994":1,"1996":1,"2008":6,"2009":1,"2011":1,"2012":1,"2013":1,"2029":1,"2033":1,"2038":1,"2059":2,"2068":1,"2069":3,"2070":1,"2071":1,"2075":2,"2076":4,"2077":5,"2078":4,"2079":5,"2086":2,"2090":4,"2091":1,"2095":3,"2096":3,"2105":1,"2119":1,"2125":1,"2131":1,"2137":1,"2147":1,"2157":1,"2163":1,"2166":1,"2185":1,"2193":1,"2203":1,"2204":5,"2254":2,"2255":2,"2261":1,"2284":1,"2286":1,"2308":1,"2309":1,"2316":4,"2319":2,"2323":3,"2334":1,"2351":1,"2352":1,"2354":1,"2362":1,"2380":1,"2381":2,"2424":1,"2428":1,"2432":1,"2434":1,"2462":1,"2466":4,"2480":1,"2481":1,"2490":1,"2502":1,"2503":1,"2508":1,"2586":2,"2599":1,"2612":1,"2619":1,"2628":1,"2634":1,"2665":1,"2673":1,"2674":1,"2713":1,"2714":2,"2726":1,"2731":2,"2754":1,"2757":8,"2884":1,"2889":4,"2893":5,"2897":1,"2910":1,"2911":6,"2912":8,"2920":1,"2921":1,"2922":1,"2924":2,"2925":4,"2926":1,"2928":5,"2929":2,"2931":2,"2937":1,"2944":1,"2949":4}}],["gtk",{"2":{"2331":2}}],["gtest",{"2":{"114":1,"339":1}}],["gt",{"0":{"156":1,"182":1,"195":1,"245":1,"370":1,"371":1,"372":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":2,"1457":5,"1633":1,"2456":1,"2457":1},"2":{"4":3,"39":1,"51":2,"55":3,"70":1,"94":1,"113":2,"114":5,"132":2,"133":2,"134":2,"175":3,"181":1,"191":4,"199":3,"210":1,"212":2,"222":1,"249":5,"277":1,"285":1,"317":1,"323":3,"344":1,"352":2,"353":6,"362":1,"393":15,"397":1,"403":1,"407":2,"409":3,"411":8,"412":1,"429":1,"430":1,"433":2,"459":1,"476":2,"492":1,"495":4,"559":1,"569":2,"570":3,"588":2,"593":2,"612":3,"627":8,"672":1,"673":4,"681":1,"729":1,"761":1,"768":2,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1248":2,"1269":2,"1315":2,"1378":3,"1388":1,"1406":1,"1407":2,"1409":4,"1433":1,"1434":3,"1438":4,"1439":1,"1453":1,"1454":1,"1455":3,"1456":1,"1463":6,"1464":5,"1466":4,"1468":1,"1470":1,"1472":5,"1491":1,"1504":1,"1506":1,"1515":1,"1527":1,"1528":1,"1590":1,"1605":2,"1627":2,"1637":1,"1638":20,"1657":1,"1668":1,"1788":1,"1994":1,"1999":1,"2000":9,"2001":1,"2009":1,"2016":1,"2273":5,"2291":1,"2298":2,"2300":1,"2317":1,"2387":1,"2414":2,"2416":4,"2417":18,"2418":2,"2434":1,"2451":2,"2453":1,"2454":1,"2457":2,"2466":1,"2502":4,"2504":2,"2508":1,"2512":1,"2522":1,"2546":2,"2555":2,"2590":5,"2594":2,"2605":1,"2628":4,"2634":7,"2639":3,"2662":2,"2663":2,"2669":4,"2672":2,"2673":2,"2674":2,"2684":1,"2685":1,"2726":1,"2728":4,"2756":1,"2757":4,"2758":1,"2794":4,"2851":1,"2869":1,"2912":2,"2929":1,"2932":1}}],["e5",{"2":{"1925":1,"2539":1}}],["e4",{"2":{"1925":1,"2539":1}}],["e3",{"2":{"1925":1,"2539":1}}],["e2",{"2":{"1925":1,"2539":1}}],["e♭",{"2":{"1925":6,"2539":6}}],["ebay",{"2":{"2505":1,"2835":1}}],["eb5",{"2":{"1925":1,"2539":1}}],["eb4",{"2":{"1925":1,"2539":1}}],["eb3",{"2":{"1925":1,"2539":1}}],["eb2",{"2":{"1925":1,"2539":1}}],["eb1",{"2":{"1925":1,"2539":1}}],["eb",{"2":{"1925":1,"2539":1}}],["ejct",{"2":{"1361":1,"2517":1,"2522":1}}],["eject",{"0":{"1361":1},"2":{"1361":3,"2517":2,"2522":2}}],["eimsk",{"2":{"2041":2}}],["eicra",{"2":{"2041":1}}],["eight",{"2":{"1702":2,"1740":1,"1953":1,"2238":1,"2252":1}}],["eighth",{"2":{"766":1,"2221":1,"2303":1}}],["either",{"2":{"39":1,"60":1,"87":1,"88":2,"104":2,"127":2,"141":1,"152":1,"339":1,"414":1,"454":1,"463":1,"495":1,"513":1,"608":1,"613":1,"672":1,"686":1,"695":1,"703":1,"714":1,"1198":1,"1201":1,"1284":1,"1297":1,"1316":1,"1346":1,"1381":1,"1467":1,"1474":1,"1477":1,"1480":1,"1525":1,"1538":1,"1625":1,"1627":1,"1661":2,"1662":1,"1712":1,"1738":1,"1954":1,"1996":1,"1999":1,"2001":1,"2068":1,"2267":1,"2279":1,"2292":1,"2293":1,"2298":2,"2427":1,"2460":1,"2465":1,"2594":1,"2626":1,"2627":1,"2667":1,"2679":1,"2686":1,"2728":1,"2732":1,"2756":1,"2757":1,"2767":1,"2782":1,"2869":2,"2914":1,"2926":2,"2927":2}}],["e1",{"2":{"1925":1,"2539":1}}],["e15",{"2":{"695":1}}],["e14",{"2":{"695":1}}],["e12",{"2":{"695":1}}],["e11",{"2":{"695":1}}],["e10",{"2":{"695":1}}],["e13",{"2":{"695":1}}],["e9",{"2":{"695":1}}],["egg",{"2":{"675":1,"2313":1,"2314":3,"2315":2}}],["eggman",{"2":{"143":2}}],["eg",{"2":{"433":1,"518":1,"529":1,"564":1,"612":1,"632":1,"651":1,"698":1,"699":3,"763":1,"1448":1,"1457":1,"1527":1,"1593":1,"1699":1,"1803":1,"2008":1,"2238":1,"2240":1,"2242":1,"2244":1,"2261":1,"2322":1,"2390":2,"2394":1,"2397":2,"2406":1,"2408":1,"2410":1,"2450":1,"2455":1,"2651":1,"2706":1,"2728":1,"2852":2}}],["e7",{"2":{"328":1,"695":1}}],["e8",{"2":{"695":2}}],["e8ghtyneo",{"2":{"317":1}}],["e88",{"2":{"222":1}}],["eubg",{"2":{"2295":1,"2296":1}}],["euro",{"2":{"2474":1}}],["europe",{"2":{"1346":1}}],["eurkey",{"2":{"294":1,"2887":2}}],["eu",{"2":{"241":2,"2301":1}}],["eyes",{"2":{"2428":1}}],["eyeohdesigns",{"2":{"236":1}}],["eyboard",{"2":{"2071":1}}],["eybord",{"2":{"2071":1}}],["eyalroz",{"2":{"191":1}}],["ekow",{"2":{"222":1}}],["ek65",{"2":{"199":1}}],["ec44c6c1675c25b9827aacd08c02433cccde7780",{"2":{"2387":1}}],["ec11",{"2":{"1665":1}}],["echo",{"0":{"493":1},"2":{"491":1,"493":1,"517":4,"529":1,"2605":2,"2628":1}}],["eclipse",{"0":{"384":1,"392":1,"393":1,"2653":1,"2657":1,"2658":1,"2661":1,"2814":1},"1":{"385":1,"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"393":1,"394":1,"395":1,"396":1,"397":1,"398":1,"2658":1,"2659":1,"2660":1,"2662":1,"2663":1},"2":{"384":1,"385":1,"388":1,"391":1,"393":2,"2653":3,"2656":1,"2657":2,"2658":6,"2659":3,"2660":1,"2663":1,"2814":1,"2906":1}}],["ecosystem",{"2":{"243":1,"331":1}}],["eccentric",{"2":{"1684":1}}],["ecc",{"2":{"236":1}}],["ec",{"2":{"210":1,"247":2,"277":1,"1656":2,"2520":3,"2538":3}}],["equo",{"2":{"2601":1}}],["equally",{"2":{"1786":1,"2741":1}}],["equality",{"2":{"1378":1}}],["equal",{"2":{"433":3,"476":1,"1368":1,"1692":1,"2295":1,"2300":1,"2512":1,"2518":2,"2522":3,"2767":2,"2774":2}}],["equals",{"2":{"249":1}}],["equivalency",{"2":{"535":1}}],["equivalents",{"2":{"555":1,"1283":1,"1989":1,"2691":1}}],["equivalent",{"2":{"7":1,"103":1,"169":1,"170":1,"232":1,"234":1,"749":1,"750":1,"753":1,"1398":1,"1620":1,"1638":1,"1639":1,"1697":1,"1852":1,"2091":1,"2181":1,"2559":1,"2567":1,"2568":1,"2652":1,"2685":1,"2686":1,"2728":4}}],["equinox",{"2":{"222":1}}],["eql",{"2":{"191":1,"379":1,"589":2,"2512":1,"2522":1,"2563":1}}],["ede48346eee4b8d6847c19bc01420bee76a5e486",{"2":{"2387":1}}],["ed",{"2":{"275":1,"2070":2,"2685":1}}],["edges",{"2":{"2085":1,"2927":1}}],["edge",{"2":{"190":1,"1252":8,"2043":1,"2427":1,"2568":1,"2795":2,"2799":2,"2865":1}}],["editable",{"2":{"495":1}}],["editorconfig",{"2":{"2671":1}}],["editors",{"2":{"504":1,"2645":1}}],["editor",{"0":{"2585":1,"2645":1},"2":{"429":2,"448":1,"449":1,"450":1,"676":1,"683":1,"1440":1,"1946":2,"2423":1,"2432":2,"2434":1,"2504":1,"2582":1,"2585":1,"2589":1,"2599":3,"2600":1,"2607":1,"2619":3,"2634":1,"2640":1,"2645":1,"2653":1,"2663":1,"2664":3,"2667":2,"2795":1,"2800":1,"2869":1}}],["edit",{"2":{"409":1,"411":1,"610":2,"668":1,"672":1,"1850":1,"2088":1,"2211":1,"2251":1,"2414":2,"2481":1,"2599":1,"2619":1,"2633":1,"2634":1,"2640":1,"2800":1,"2924":1}}],["edited",{"2":{"397":1,"414":1,"589":1,"1946":1,"2638":1}}],["editing",{"2":{"397":1,"460":1,"467":1,"610":1,"613":1,"1319":1,"1529":1,"2585":1,"2634":1,"2755":1}}],["edition",{"0":{"1397":1,"1401":1,"2706":1},"2":{"222":2,"249":3,"1391":1,"1397":1,"1398":2,"1399":1,"1401":1,"2706":1}}],["edits",{"2":{"222":1,"414":1}}],["edi",{"2":{"143":1,"149":1}}],["eopkg",{"2":{"2601":1}}],["eof",{"2":{"249":1,"2792":1}}],["eol",{"2":{"188":1,"308":1,"333":1}}],["eon95",{"2":{"57":2}}],["eon87",{"2":{"57":2}}],["eon75",{"2":{"57":2}}],["eon65",{"2":{"57":2}}],["eon40",{"2":{"57":2}}],["etc",{"0":{"1320":1},"2":{"184":1,"285":1,"444":2,"510":1,"511":1,"532":1,"538":1,"632":1,"651":1,"729":1,"768":2,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1248":2,"1269":2,"1283":1,"1316":1,"1332":1,"1372":1,"1425":1,"1485":1,"1791":1,"1948":1,"1999":1,"2057":1,"2096":1,"2178":1,"2189":1,"2212":1,"2276":1,"2287":1,"2421":2,"2427":1,"2653":1,"2664":1,"2714":2,"2726":3,"2728":4,"2729":1,"2889":1,"2890":2,"2909":1}}],["efuse",{"2":{"2503":2}}],["ef8878fba5d3786e3f9c66436da63a560cd36ac9",{"2":{"589":2}}],["efgh",{"2":{"266":1}}],["ef",{"2":{"249":1}}],["efl",{"2":{"175":1,"191":2,"236":1,"277":1,"754":4,"757":1}}],["effort",{"2":{"665":1,"797":1,"1405":1,"1528":1,"2316":1,"2425":1,"2458":1,"2627":1}}],["efficiently",{"2":{"1525":1,"1685":1}}],["efficient",{"2":{"63":1,"231":1,"1192":2,"1193":1,"1199":1,"1953":1,"1999":1,"2293":1}}],["effect2",{"2":{"1850":6,"2088":6}}],["effective",{"2":{"719":1,"1410":1,"1788":1,"1939":1,"2912":1,"2929":1}}],["effectively",{"2":{"39":1,"178":1,"1297":1,"1742":1,"2272":1,"2475":1,"2568":1,"2922":1}}],["effects",{"0":{"1849":1,"1850":1,"2085":1,"2088":1,"2183":1,"2196":1,"2200":1},"1":{"2086":1,"2087":1,"2184":1,"2185":1,"2186":1,"2187":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1},"2":{"84":1,"93":2,"124":1,"134":1,"156":1,"210":1,"249":1,"266":1,"277":1,"294":1,"298":1,"308":1,"517":3,"719":1,"1489":1,"1635":2,"1636":2,"1846":1,"1849":2,"1850":6,"1851":1,"1852":3,"2082":1,"2085":3,"2087":1,"2088":6,"2090":1,"2091":3,"2197":1,"2209":1,"2210":2,"2728":1,"2785":1,"2871":3,"2877":2,"2878":3}}],["effect",{"0":{"2086":1,"2087":1,"2097":1,"2184":1,"2185":1,"2197":1,"2199":1},"2":{"39":1,"74":1,"93":1,"134":1,"149":2,"160":1,"175":6,"191":1,"194":1,"199":1,"210":1,"236":1,"249":2,"266":1,"276":1,"277":1,"285":4,"294":2,"317":1,"339":1,"354":2,"589":1,"676":1,"1351":1,"1425":1,"1489":1,"1493":2,"1498":1,"1597":1,"1602":1,"1635":1,"1636":1,"1685":1,"1790":1,"1795":1,"1849":3,"1850":21,"1851":3,"1865":1,"1867":1,"1869":1,"1870":1,"1871":1,"1872":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1891":1,"1893":1,"1894":1,"1895":1,"1897":1,"1903":1,"1904":1,"1905":1,"1939":1,"1954":2,"2047":1,"2085":3,"2086":4,"2087":1,"2088":21,"2090":3,"2097":2,"2107":1,"2109":1,"2111":1,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2145":1,"2147":1,"2148":1,"2149":1,"2151":1,"2157":1,"2158":1,"2159":1,"2161":1,"2163":1,"2164":1,"2165":1,"2178":1,"2181":2,"2183":1,"2184":10,"2185":11,"2186":2,"2197":1,"2198":1,"2199":1,"2200":6,"2201":14,"2209":1,"2210":1,"2309":1,"2319":1,"2544":2,"2871":1,"2877":1,"2878":1,"2894":10,"2926":1,"2931":1}}],["eh",{"2":{"143":4,"270":3,"277":1,"2520":2,"2538":2}}],["estonian",{"2":{"2887":3}}],["estimating",{"2":{"2379":1}}],["estimated",{"2":{"2379":1,"2381":1}}],["established",{"2":{"574":1,"2291":1,"2425":1}}],["es",{"2":{"1593":1}}],["esr",{"2":{"604":1}}],["essential",{"2":{"390":1,"1783":1}}],["essentially",{"2":{"263":1,"2255":1,"2424":1}}],["especially",{"2":{"320":1,"613":1,"1410":1,"1427":1,"1517":1,"1546":1,"1589":1,"1593":1,"1986":1,"2417":1,"2429":1,"2711":1,"2764":1,"2899":1,"2931":1,"2932":1,"2942":1}}],["espectro",{"2":{"143":2}}],["eschew",{"2":{"519":1}}],["escaping",{"2":{"175":1}}],["escaped",{"2":{"2852":2}}],["escape",{"0":{"1380":1,"1671":1,"1777":1,"2531":1},"1":{"1672":1,"1673":1,"1674":1,"1675":1,"1676":1},"2":{"114":1,"172":1,"175":1,"191":1,"222":1,"231":1,"683":1,"684":1,"686":2,"1348":1,"1360":1,"1438":1,"1446":1,"1602":1,"1671":3,"1674":2,"1676":4,"1777":2,"2222":1,"2312":1,"2317":1,"2346":2,"2393":1,"2418":1,"2512":2,"2520":8,"2522":2,"2531":3,"2538":8,"2572":2,"2586":1,"2612":1,"2869":1}}],["esc",{"0":{"1360":1,"2312":1},"2":{"105":2,"114":1,"199":1,"379":1,"589":2,"1380":3,"1446":1,"1453":1,"1589":1,"1602":2,"1603":1,"1604":1,"1605":3,"1622":2,"1625":1,"1657":3,"1672":1,"1673":1,"1676":4,"1692":1,"1767":1,"1777":10,"2222":1,"2312":4,"2313":1,"2315":2,"2317":2,"2390":3,"2397":3,"2512":1,"2520":2,"2522":1,"2538":2,"2557":1,"2572":1,"2876":2,"2889":1,"2931":1,"2941":1}}],["epomaker",{"2":{"2567":2}}],["epoch80",{"2":{"241":2}}],["epsize",{"2":{"2057":1,"2058":1}}],["epsize\`",{"2":{"2057":1}}],["ep",{"2":{"114":1,"174":1,"175":1,"222":1,"266":1,"575":2}}],["e6",{"2":{"111":1,"570":1,"1195":1,"2375":1,"2390":1,"2397":1,"2691":1,"2720":1}}],["emergencies",{"2":{"2903":1}}],["emerge",{"2":{"2601":1}}],["emery65",{"2":{"222":1}}],["em",{"2":{"1605":3}}],["emitting",{"2":{"2826":1}}],["emitted",{"2":{"1498":2,"2016":1}}],["emit",{"2":{"1503":1,"2316":1}}],["emac",{"2":{"2332":1,"2552":1}}],["emacs",{"2":{"191":1,"1593":1,"2068":1,"2331":2,"2332":2,"2344":1,"2345":1,"2346":1,"2552":2}}],["email>",{"2":{"1467":1}}],["email",{"2":{"1467":2,"1605":5,"2464":1,"2506":1,"2634":3}}],["emoji",{"0":{"345":1},"1":{"346":1,"347":1},"2":{"341":1,"492":2,"2329":1,"2330":1,"2418":1}}],["employing",{"2":{"1409":1}}],["emphasis",{"2":{"198":1,"212":1}}],["emptystring",{"2":{"165":2,"175":1}}],["empty",{"2":{"40":1,"199":1,"210":1,"222":2,"249":1,"308":2,"339":1,"599":2,"609":1,"1276":1,"1815":1,"2368":1,"2504":1,"2615":2,"2659":1,"2728":2}}],["embed",{"0":{"363":1},"2":{"363":1}}],["embedded",{"0":{"754":1},"2":{"189":1,"191":1,"362":1,"605":1,"753":3,"754":2,"757":3,"2563":1,"2700":1,"2728":2,"2758":1,"2864":1}}],["embracing",{"2":{"116":1}}],["emulating",{"2":{"753":1}}],["emulation",{"0":{"189":1,"757":1},"2":{"94":1,"131":1,"134":1,"249":1,"277":1,"746":1,"1801":1,"2692":1}}],["emulates",{"2":{"1784":1,"1785":1,"1971":1,"2395":1,"2484":1,"2488":1,"2501":1}}],["emulate",{"2":{"189":1,"1923":1,"1930":1,"2318":1,"2486":1,"2948":1}}],["emulated",{"2":{"160":1,"191":2,"746":1,"753":1,"757":1,"1550":1,"1786":1,"2297":1,"2948":1}}],["eep",{"2":{"568":2,"569":2}}],["eeproms",{"2":{"2692":1}}],["eeprom",{"0":{"131":1,"189":1,"663":1,"746":1,"757":1,"1415":1,"1853":1,"1905":1,"2092":1,"2165":1,"2273":1,"2446":1,"2789":1,"2864":1},"1":{"747":1,"748":1,"749":1,"750":1,"751":1,"752":1,"1416":1,"1417":1,"1418":1,"1419":1,"1420":1},"2":{"39":2,"65":1,"73":1,"94":3,"114":7,"131":5,"134":7,"149":5,"160":1,"172":1,"175":5,"189":2,"191":10,"222":1,"236":7,"249":1,"277":3,"285":1,"294":1,"308":1,"333":1,"568":3,"569":3,"651":1,"663":1,"746":12,"748":4,"749":36,"750":13,"751":5,"753":4,"754":1,"755":2,"756":1,"757":2,"1320":5,"1348":5,"1349":1,"1365":2,"1415":3,"1416":2,"1417":10,"1418":2,"1428":2,"1544":3,"1589":1,"1591":1,"1625":4,"1853":1,"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"1905":1,"1926":1,"1962":3,"2092":1,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2165":1,"2182":6,"2198":9,"2199":5,"2200":3,"2201":7,"2202":3,"2273":9,"2297":1,"2327":1,"2331":1,"2391":1,"2393":1,"2400":1,"2405":1,"2407":1,"2409":1,"2418":1,"2446":3,"2523":2,"2535":1,"2679":1,"2692":1,"2752":2,"2789":3,"2864":4}}],["ee",{"2":{"175":1,"249":2,"568":1,"569":2,"1348":1,"1417":1,"1590":1,"1987":1,"2273":2,"2520":4,"2523":1,"2538":4,"2752":1,"2789":1}}],["eeconfig",{"2":{"94":1,"114":1,"134":1,"175":2,"191":1,"222":1,"236":1,"249":5,"266":1,"277":1,"285":1,"308":1,"328":1,"748":1,"1416":6,"1417":7,"1418":7,"1419":22,"1420":6,"2273":1,"2789":1}}],["elbow",{"2":{"2428":1}}],["elapses",{"2":{"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"796":1,"799":1,"1256":1,"1258":1,"1261":1,"1264":1}}],["elapsed32",{"2":{"647":1,"1420":1,"2277":1,"2757":6}}],["elapsed",{"2":{"249":1,"294":1,"1410":1,"1462":1,"2191":1,"2791":1}}],["elf",{"2":{"236":1,"1365":1,"2587":1,"2629":1,"2674":2}}],["elongate",{"2":{"222":1}}],["ellora65",{"2":{"222":1}}],["ellipse",{"2":{"222":3,"236":1,"2757":3}}],["ellipses",{"2":{"153":1,"2757":3}}],["elevated",{"2":{"2429":1}}],["element++",{"2":{"1947":1,"2286":1}}],["element",{"2":{"1947":2,"2286":2}}],["elements",{"2":{"134":1,"2728":1,"2758":1}}],["electrical",{"2":{"1846":3,"2082":3,"2206":2,"2427":1,"2435":1,"2674":1,"2728":3}}],["electronics",{"2":{"766":1,"1558":1}}],["elephant42",{"2":{"175":2}}],["elephant",{"2":{"67":4,"72":1}}],["elsewhere",{"2":{"560":1,"610":1,"637":1,"2001":1,"2427":1,"2458":2,"2483":1,"2757":1,"2912":1,"2941":1,"2949":1}}],["else",{"2":{"90":6,"105":4,"163":1,"194":1,"196":3,"412":1,"414":2,"512":2,"532":1,"631":2,"641":1,"652":1,"653":1,"686":1,"1380":2,"1381":1,"1406":1,"1417":2,"1446":3,"1452":1,"1462":1,"1470":1,"1533":3,"1593":1,"1601":1,"1618":1,"1657":7,"1668":6,"1779":1,"1798":3,"1804":2,"1924":1,"1948":2,"1954":1,"1992":1,"2008":1,"2069":2,"2076":1,"2077":2,"2096":2,"2277":1,"2287":1,"2298":1,"2316":1,"2317":6,"2318":2,"2319":4,"2331":1,"2381":2,"2382":1,"2454":2,"2464":1,"2577":1,"2671":2,"2783":2,"2791":1,"2792":1,"2906":1}}],["eligible",{"2":{"1297":1,"2072":1}}],["eliminating",{"0":{"2070":1},"2":{"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1}}],["eliminate",{"2":{"76":1,"210":1,"277":1,"1779":1,"2070":1,"2434":1,"2728":1,"2913":1}}],["elitec",{"2":{"122":1,"311":18}}],["elite",{"0":{"1397":1,"1399":1},"1":{"1400":1,"1401":1},"2":{"86":2,"153":1,"173":2,"175":2,"199":1,"311":1,"1389":7,"1391":3,"1399":4,"1407":4,"2273":1,"2391":1,"2424":1,"2706":2,"2853":1,"2895":1}}],["evidence",{"2":{"2569":2}}],["evaporate",{"2":{"2427":1}}],["evaluate",{"2":{"2014":1}}],["evaluates",{"2":{"1847":2,"2083":2,"2247":1,"2248":1}}],["evaluated",{"2":{"563":1}}],["evaluation",{"0":{"2748":1},"2":{"535":1}}],["evaluations",{"0":{"535":1}}],["evo70",{"2":{"222":1}}],["evy",{"0":{"57":1}}],["evyd13",{"0":{"57":1},"2":{"57":22,"222":1}}],["ever",{"2":{"112":1,"154":1,"190":1,"194":1,"1311":1,"1446":3,"2936":1}}],["everywhere",{"2":{"2008":1}}],["everyone",{"2":{"163":1,"411":1,"412":1,"604":1,"615":1,"1498":1,"1503":1,"2580":1}}],["every",{"0":{"2670":1},"2":{"92":1,"172":1,"194":2,"199":1,"303":1,"338":1,"458":1,"474":1,"494":1,"545":1,"556":1,"579":1,"580":1,"581":1,"609":1,"630":1,"645":1,"683":1,"714":1,"719":1,"720":1,"748":1,"1364":1,"1378":1,"1414":1,"1428":1,"1429":1,"1472":1,"1538":1,"1600":1,"1614":1,"1855":1,"1953":1,"2014":2,"2073":1,"2086":1,"2094":1,"2252":3,"2273":1,"2275":2,"2277":1,"2297":1,"2309":2,"2310":1,"2391":1,"2393":1,"2398":1,"2415":1,"2417":1,"2429":1,"2607":1,"2617":1,"2640":1,"2695":1,"2731":1,"2851":1,"2904":1,"2912":1,"2938":2}}],["everything",{"0":{"16":1},"2":{"317":1,"394":1,"422":1,"641":1,"661":1,"1200":1,"1336":1,"1342":1,"1382":1,"1417":1,"1425":1,"1468":1,"1661":1,"2097":1,"2190":1,"2281":1,"2296":1,"2298":1,"2417":2,"2434":1,"2437":1,"2508":1,"2560":1,"2586":1,"2593":1,"2617":1,"2664":1,"2669":1,"2734":1,"2758":1,"2908":1,"2936":1}}],["even",{"2":{"93":1,"153":2,"174":1,"222":1,"288":1,"518":1,"533":1,"540":1,"555":1,"564":2,"565":1,"592":1,"613":1,"634":1,"645":1,"656":2,"1356":1,"1364":1,"1381":2,"1409":1,"1410":1,"1415":1,"1417":2,"1440":1,"1453":1,"1467":1,"1517":1,"1519":1,"1593":1,"1602":1,"1612":2,"1619":1,"1670":1,"1675":1,"1773":1,"1781":1,"1785":1,"1786":1,"1937":1,"1961":1,"1986":1,"2192":1,"2255":1,"2259":1,"2265":1,"2294":1,"2309":1,"2331":1,"2379":1,"2381":1,"2418":1,"2429":1,"2435":1,"2453":1,"2460":1,"2568":2,"2617":1,"2707":1,"2732":1,"2757":1,"2786":1,"2914":2,"2926":1,"2929":1,"2933":1,"2944":2}}],["eventual",{"2":{"1433":1}}],["eventually",{"2":{"184":1,"1365":1,"2387":1,"2466":1}}],["events",{"0":{"412":1,"2009":1},"2":{"73":2,"214":1,"312":1,"412":1,"630":1,"631":1,"632":1,"643":1,"1410":2,"1417":1,"1455":1,"1605":1,"1667":1,"1668":1,"1784":1,"1788":1,"1994":1,"2091":1,"2276":1,"2573":1,"2791":1,"2829":1,"2854":2,"2870":1,"2914":1,"2920":4,"2925":1,"2929":1,"2941":2}}],["event",{"0":{"1452":1,"2471":1},"2":{"36":3,"160":1,"191":1,"199":1,"214":1,"412":5,"580":1,"630":1,"632":1,"1353":1,"1377":2,"1444":4,"1453":1,"1454":1,"1456":1,"1535":1,"1605":2,"1618":3,"1622":1,"1786":1,"1795":1,"1994":1,"2009":3,"2214":1,"2218":1,"2222":3,"2300":1,"2469":1,"2821":1,"2822":1,"2842":1,"2915":1,"2916":2,"2917":3,"2918":2,"2919":1,"2932":1,"2941":1}}],["ez",{"2":{"40":1,"114":1,"270":2,"277":1,"437":1,"442":1,"2249":1,"2728":1}}],["e",{"2":{"28":2,"114":2,"266":2,"328":1,"341":1,"354":1,"379":1,"411":1,"429":1,"430":2,"454":2,"455":2,"466":1,"469":2,"520":1,"565":1,"588":1,"589":2,"686":2,"768":1,"1196":1,"1200":1,"1248":1,"1269":1,"1365":1,"1388":2,"1391":14,"1392":1,"1393":1,"1395":2,"1399":5,"1410":1,"1422":1,"1425":1,"1446":2,"1449":1,"1465":1,"1484":1,"1538":2,"1590":1,"1601":1,"1603":1,"1605":2,"1612":2,"1625":1,"1661":1,"1665":1,"1699":2,"1741":1,"1767":1,"1781":3,"1787":1,"1788":1,"1804":2,"1835":1,"1850":2,"1925":13,"1945":2,"1948":1,"1953":2,"1968":1,"1985":1,"1986":1,"1999":2,"2014":1,"2037":1,"2051":1,"2068":1,"2070":4,"2088":2,"2096":1,"2181":1,"2189":1,"2191":3,"2192":1,"2210":1,"2222":1,"2273":5,"2276":3,"2287":1,"2296":1,"2300":1,"2301":4,"2309":1,"2318":1,"2414":1,"2423":2,"2425":2,"2426":1,"2435":1,"2490":2,"2502":1,"2510":3,"2522":3,"2539":13,"2557":1,"2563":1,"2589":1,"2610":2,"2662":2,"2663":2,"2680":1,"2685":2,"2726":2,"2727":2,"2728":4,"2729":1,"2731":1,"2755":1,"2757":1,"2889":1,"2913":1,"2929":1,"2931":1}}],["eat",{"2":{"2418":1}}],["ea1514b3",{"2":{"380":1,"381":1}}],["eabi",{"2":{"339":2,"387":1}}],["eagle",{"2":{"222":1}}],["eager",{"2":{"94":1,"114":1,"199":1,"210":1,"236":1,"1410":9,"1413":4,"2854":3}}],["earliest",{"2":{"2685":1,"2686":1}}],["earlier",{"2":{"114":1,"1629":1,"1663":1,"1846":1,"2082":1,"2709":1,"2713":1,"2912":1,"2914":4,"2920":2,"2939":1}}],["early",{"0":{"2684":1,"2685":1,"2686":1},"1":{"2685":1,"2686":1,"2687":1},"2":{"39":1,"63":1,"65":1,"77":1,"320":1,"341":2,"633":1,"634":1,"1617":1,"1957":1,"1981":1,"1999":1,"2316":1,"2432":1,"2684":2,"2685":5,"2686":4,"2728":5,"2931":1}}],["each",{"0":{"25":1,"1659":1,"1660":1},"1":{"26":1},"2":{"21":3,"24":1,"26":1,"35":2,"65":1,"118":1,"138":1,"149":1,"172":1,"181":1,"191":2,"210":1,"234":1,"273":1,"307":1,"379":1,"402":1,"411":1,"433":2,"472":1,"473":1,"487":1,"492":1,"521":1,"543":1,"558":1,"561":1,"564":2,"565":1,"568":1,"575":1,"580":1,"609":2,"610":1,"627":1,"628":1,"639":1,"647":3,"669":1,"676":2,"687":1,"701":1,"715":1,"724":1,"729":1,"762":1,"805":1,"826":1,"831":1,"855":1,"863":1,"887":1,"893":1,"919":1,"928":1,"954":1,"962":1,"988":1,"996":1,"1022":1,"1030":1,"1056":1,"1064":1,"1090":1,"1098":1,"1124":1,"1132":1,"1158":1,"1166":1,"1214":1,"1219":1,"1252":1,"1283":1,"1288":1,"1312":1,"1313":1,"1329":1,"1343":1,"1389":1,"1410":1,"1413":1,"1416":1,"1427":1,"1433":1,"1443":1,"1444":2,"1472":1,"1493":3,"1525":2,"1528":1,"1538":2,"1539":1,"1612":1,"1617":1,"1638":1,"1655":2,"1662":2,"1664":1,"1665":2,"1666":1,"1670":1,"1681":1,"1720":1,"1722":1,"1747":1,"1783":1,"1787":1,"1801":1,"1846":1,"1852":1,"1934":1,"1936":1,"1948":1,"1952":1,"1953":2,"1954":1,"1983":1,"1985":2,"1986":1,"1992":1,"2037":1,"2082":1,"2086":2,"2091":1,"2178":1,"2179":1,"2185":3,"2187":7,"2190":1,"2230":1,"2234":1,"2264":1,"2272":1,"2273":1,"2277":1,"2278":1,"2281":1,"2287":1,"2289":1,"2295":1,"2309":6,"2310":2,"2315":3,"2318":6,"2325":1,"2329":1,"2330":3,"2387":1,"2393":1,"2413":1,"2414":1,"2423":1,"2426":1,"2428":2,"2429":1,"2431":1,"2434":1,"2444":1,"2445":1,"2450":1,"2466":1,"2470":1,"2502":1,"2521":2,"2558":1,"2561":2,"2563":1,"2566":1,"2571":1,"2586":1,"2639":1,"2660":1,"2684":1,"2705":1,"2709":2,"2720":2,"2729":1,"2754":1,"2755":1,"2756":2,"2757":3,"2765":2,"2772":2,"2773":1,"2775":2,"2777":2,"2794":2,"2795":2,"2796":1,"2869":4,"2870":1,"2871":2,"2872":1,"2877":1,"2878":2,"2910":1,"2915":1,"2920":1,"2927":2,"2932":1,"2945":3,"2950":1}}],["east",{"2":{"1741":1,"2051":1,"2329":1}}],["eason",{"2":{"210":1}}],["ease",{"2":{"70":1,"2329":1,"2473":1}}],["easyeda",{"2":{"93":1}}],["easy",{"0":{"1311":1},"1":{"1312":1},"2":{"6":1,"114":2,"154":1,"387":1,"439":1,"495":1,"512":2,"532":1,"538":1,"603":1,"604":1,"608":1,"610":1,"665":1,"683":1,"696":1,"760":1,"766":1,"1311":3,"1313":1,"1388":1,"1802":1,"2188":1,"2265":1,"2425":1,"2428":1,"2459":1,"2579":2,"2585":1,"2620":1,"2628":1,"2758":1}}],["easiest",{"2":{"610":1,"1312":1,"1846":1,"2082":1,"2309":1,"2329":1,"2375":1,"2429":1,"2481":1,"2795":1}}],["easier",{"2":{"2":1,"11":1,"21":1,"35":1,"43":1,"70":1,"118":1,"130":1,"133":1,"285":1,"403":1,"425":1,"490":1,"491":1,"516":1,"528":1,"530":1,"540":1,"589":1,"1340":1,"1472":1,"1593":1,"1855":1,"1999":1,"2094":1,"2208":1,"2293":1,"2326":1,"2330":1,"2382":1,"2384":1,"2425":2,"2436":1,"2447":1,"2455":1,"2561":2,"2564":1,"2580":1,"2585":1,"2586":1,"2632":1,"2669":1,"2671":1,"2751":1,"2794":1,"2938":1,"2948":1}}],["easily",{"2":{"6":1,"65":1,"328":1,"447":1,"674":1,"687":1,"1283":1,"1446":1,"1766":1,"1964":1,"2057":1,"2178":1,"2382":1,"2427":1,"2432":1,"2584":1,"2614":1,"2640":1,"2662":1,"2912":1,"2945":1}}],["erm",{"0":{"1684":1},"2":{"1679":1,"1684":2,"1685":2}}],["err",{"2":{"555":1}}],["errno",{"2":{"308":1}}],["erroneous",{"2":{"149":1,"160":1}}],["errors",{"0":{"2463":1},"2":{"24":1,"50":1,"73":2,"92":1,"114":2,"134":1,"149":1,"160":2,"175":2,"199":1,"222":2,"333":1,"382":1,"422":1,"440":1,"540":1,"609":3,"1365":1,"1388":1,"1390":1,"1524":1,"1980":1,"1986":1,"2275":2,"2291":1,"2417":1,"2434":1,"2463":2,"2490":1,"2598":1,"2607":1,"2609":1,"2669":1,"2767":1,"2773":1,"2774":1,"2944":1}}],["error",{"0":{"141":1},"2":{"18":1,"92":1,"103":1,"114":4,"126":1,"149":4,"160":1,"175":2,"191":3,"199":3,"210":4,"212":1,"222":1,"236":1,"328":1,"333":1,"381":1,"492":1,"559":1,"575":1,"581":1,"609":1,"754":1,"775":2,"778":2,"781":2,"784":2,"787":2,"790":2,"793":2,"796":2,"799":2,"1261":2,"1264":2,"1425":1,"1524":1,"1980":1,"2043":1,"2294":1,"2434":1,"2455":1,"2508":1,"2607":1,"2616":1,"2628":1,"2634":1}}],["eras",{"2":{"2516":1,"2522":1}}],["erasing",{"2":{"2502":1,"2508":1,"2615":1}}],["erased",{"2":{"2508":8}}],["erase",{"2":{"277":2,"748":1,"752":1,"755":1,"1315":1,"1365":1,"1947":1,"2286":1,"2389":2,"2502":1,"2516":2,"2522":2,"2615":1,"2637":1}}],["era",{"2":{"236":1,"249":1}}],["era65",{"2":{"210":1}}],["erovia",{"2":{"179":1}}],["ergokbd",{"2":{"2567":1}}],["ergosaurus",{"2":{"159":2}}],["ergotaco",{"2":{"143":2}}],["ergodash",{"2":{"143":4}}],["ergodone",{"2":{"102":2}}],["ergodox",{"0":{"1843":1},"2":{"8":1,"114":3,"134":1,"143":2,"222":1,"285":2,"291":2,"294":1,"437":1,"1413":1,"1843":7,"2283":1,"2315":9,"2417":2}}],["ergoarrows",{"2":{"143":2}}],["ergo42",{"2":{"143":2}}],["ergo",{"2":{"143":2}}],["ergoinu",{"2":{"27":2,"149":1}}],["exempt",{"2":{"2926":1,"2927":2}}],["exempted",{"2":{"2869":1}}],["exe",{"2":{"2615":3,"2669":1,"2674":1}}],["exercise",{"2":{"1612":1,"2794":1}}],["exec",{"2":{"149":1,"574":1,"655":1,"656":1,"657":1,"658":2,"659":2,"1630":1,"2277":2,"2418":1,"2516":1,"2522":1,"2941":1}}],["executor",{"0":{"656":1,"657":1},"2":{"574":1,"656":1,"657":1,"1630":1,"2418":1}}],["executors",{"2":{"134":1,"660":2}}],["executable",{"2":{"397":1,"2579":1,"2659":1,"2674":2,"2734":1,"2945":1,"2947":1}}],["executions",{"2":{"657":1}}],["execution",{"0":{"655":1,"658":1,"659":1},"1":{"656":1,"657":1,"658":1,"659":1,"660":1},"2":{"65":1,"249":1,"574":1,"656":3,"657":1,"658":2,"659":2,"763":1,"2418":1,"2685":1,"2734":1,"2754":1}}],["executing",{"2":{"39":1,"160":1,"656":1,"657":1,"2207":1,"2674":1,"2685":2,"2686":1}}],["executed",{"2":{"483":1,"657":1,"763":2,"2317":1,"2685":3,"2686":2,"2687":1,"2754":1}}],["executes",{"2":{"39":1,"753":1,"756":1}}],["execute",{"2":{"39":1,"65":1,"77":1,"105":2,"247":1,"655":1,"1381":1,"1535":2,"2417":2,"2503":1,"2516":2,"2522":2,"2705":1}}],["exlm",{"2":{"1517":2,"2546":1,"2555":1}}],["exsl",{"2":{"1447":1,"2516":1,"2522":1}}],["exsel",{"2":{"231":2,"1447":3,"2516":2,"2522":2}}],["exhaustion",{"2":{"719":1,"720":1}}],["exhaustive",{"2":{"273":1,"723":1,"2725":1,"2726":1,"2902":1}}],["exiting",{"2":{"2298":1,"2390":2,"2397":2}}],["exit",{"2":{"432":2,"452":1,"453":1,"454":1,"455":1,"460":1,"461":1,"469":1,"686":1,"2059":1,"2508":1,"2755":3,"2876":2}}],["existed",{"2":{"2317":1}}],["existence",{"2":{"199":1,"1451":1,"2569":1}}],["exists",{"2":{"175":1,"266":1,"294":1,"433":2,"463":1,"669":1,"674":1,"1378":2,"1419":1,"1436":1,"1484":1,"1500":1,"1502":1,"1668":1,"1786":1,"2069":1,"2456":1,"2674":1,"2728":1,"2729":1}}],["exist",{"2":{"166":1,"175":1,"199":1,"236":1,"383":2,"555":1,"569":1,"598":1,"607":1,"1343":1,"1485":1,"2317":1,"2387":1,"2503":1,"2691":1,"2767":1,"2774":1,"2945":1}}],["existing",{"0":{"21":1,"24":1,"26":1,"2711":1,"2945":1},"2":{"40":2,"92":1,"118":1,"128":1,"140":1,"149":2,"158":1,"194":1,"201":1,"209":1,"212":1,"214":1,"240":1,"249":1,"262":1,"268":1,"272":1,"275":1,"283":1,"327":1,"344":3,"353":1,"393":1,"403":1,"406":1,"414":1,"445":1,"512":2,"540":1,"613":1,"628":1,"630":1,"1428":8,"1431":1,"1433":1,"1634":1,"1767":1,"1987":1,"2423":1,"2431":1,"2482":1,"2567":1,"2570":1,"2594":1,"2640":2,"2662":2,"2669":1,"2674":2,"2711":2,"2726":1,"2728":5,"2729":1,"2945":2}}],["exaggeration",{"2":{"2937":1}}],["exactly",{"2":{"1438":1,"2057":1,"2296":1,"2387":1,"2473":1}}],["exact",{"2":{"398":1,"597":1,"656":1,"1612":1,"1713":1,"1786":1,"2344":1,"2345":1,"2346":1,"2382":1,"2483":1,"2568":2,"2910":1,"2937":1}}],["examine",{"2":{"1590":1}}],["examines",{"2":{"435":1,"456":1}}],["examining",{"0":{"382":1}}],["examples",{"0":{"517":1,"1328":1,"1379":1,"1469":1,"1605":1,"1642":1,"1700":1,"1767":1,"1775":1,"1778":1,"1948":1,"1991":1,"1995":1,"2010":1,"2095":1,"2096":1,"2224":1,"2287":1,"2311":1,"2313":1,"2736":1,"2743":1},"1":{"1329":1,"1330":1,"1331":1,"1380":1,"1381":1,"1470":1,"1471":1,"1472":1,"1701":1,"1702":1,"1776":1,"1777":1,"1779":1,"1992":1,"1993":1,"1994":1,"1996":1,"1997":1,"2011":1,"2012":1,"2096":1,"2097":1,"2225":1,"2226":1,"2312":1,"2313":1,"2314":2,"2315":2,"2316":2,"2317":2,"2318":2,"2319":2,"2744":1,"2745":1,"2746":1},"2":{"99":1,"114":1,"198":1,"312":1,"434":1,"435":1,"437":1,"439":1,"440":1,"463":1,"465":1,"469":1,"610":1,"668":2,"1328":1,"1379":1,"1414":1,"1415":1,"1433":1,"1453":1,"1469":1,"1612":1,"1613":1,"1766":1,"1773":1,"1788":1,"1850":1,"1995":1,"2057":1,"2088":1,"2295":1,"2296":1,"2309":1,"2310":1,"2313":3,"2319":4,"2417":1,"2425":1,"2439":1,"2449":1,"2466":1,"2646":1,"2735":2,"2755":3,"2757":2,"2831":1,"2929":1,"2944":1}}],["example",{"0":{"379":1,"473":1,"478":1,"479":1,"480":1,"481":1,"522":1,"523":1,"524":1,"589":1,"631":1,"635":1,"641":1,"644":1,"647":1,"649":1,"652":1,"653":1,"1417":1,"1420":1,"1430":1,"1431":1,"1461":1,"1479":1,"1523":1,"1533":1,"1535":1,"1558":1,"1774":1,"1791":1,"1804":1,"1838":1,"1839":1,"1924":1,"1946":1,"1947":1,"2059":1,"2186":1,"2285":1,"2286":1,"2312":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1,"2732":1,"2783":1,"2785":1,"2911":1},"1":{"1462":1},"2":{"39":2,"70":1,"90":2,"98":1,"99":2,"105":2,"111":1,"114":2,"149":1,"194":1,"213":1,"214":1,"222":1,"234":1,"272":1,"288":1,"303":1,"332":1,"337":1,"338":1,"363":1,"380":1,"393":3,"420":1,"429":3,"432":1,"433":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"473":2,"474":3,"476":2,"482":2,"483":1,"484":2,"485":4,"489":2,"491":1,"496":1,"500":2,"512":1,"529":1,"532":1,"572":1,"588":1,"591":1,"599":1,"607":1,"609":2,"610":1,"629":1,"631":1,"635":1,"641":1,"644":2,"647":1,"648":1,"656":1,"660":1,"670":1,"675":1,"684":2,"686":1,"721":1,"729":1,"749":1,"766":1,"768":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1203":1,"1204":1,"1219":1,"1248":1,"1252":1,"1269":2,"1287":1,"1315":1,"1329":1,"1330":2,"1331":1,"1347":1,"1371":1,"1377":1,"1378":2,"1380":2,"1381":2,"1388":1,"1405":2,"1406":1,"1407":1,"1409":2,"1417":4,"1420":2,"1422":1,"1426":1,"1430":2,"1431":1,"1438":1,"1444":8,"1446":1,"1447":1,"1448":2,"1451":1,"1452":1,"1463":1,"1464":1,"1468":1,"1469":2,"1472":1,"1475":1,"1478":1,"1480":1,"1482":1,"1492":1,"1499":1,"1503":1,"1517":1,"1518":1,"1532":1,"1534":1,"1535":1,"1538":2,"1551":1,"1556":1,"1558":1,"1591":1,"1593":1,"1597":1,"1604":1,"1605":3,"1612":1,"1613":1,"1617":2,"1618":2,"1619":1,"1624":1,"1630":1,"1633":1,"1638":1,"1642":1,"1665":1,"1666":1,"1670":2,"1690":1,"1702":1,"1742":1,"1743":1,"1765":1,"1774":2,"1776":1,"1777":1,"1779":2,"1781":1,"1795":1,"1802":1,"1804":1,"1838":1,"1839":1,"1840":1,"1841":1,"1845":1,"1846":1,"1850":1,"1923":1,"1934":1,"1936":1,"1939":1,"1945":1,"1946":1,"1947":1,"1949":1,"1953":1,"1989":1,"1992":1,"1994":1,"1996":1,"1997":1,"2013":1,"2037":1,"2041":1,"2042":1,"2044":2,"2053":1,"2057":1,"2059":1,"2069":2,"2075":1,"2077":1,"2081":1,"2082":1,"2088":1,"2096":1,"2188":1,"2194":1,"2198":1,"2206":1,"2214":1,"2226":2,"2260":1,"2269":1,"2273":1,"2277":1,"2284":1,"2285":1,"2286":1,"2293":1,"2294":1,"2297":1,"2300":1,"2303":2,"2305":1,"2308":1,"2309":2,"2312":1,"2315":1,"2317":5,"2318":1,"2319":2,"2329":2,"2330":1,"2331":1,"2384":2,"2414":1,"2417":4,"2432":1,"2448":2,"2450":2,"2453":1,"2454":2,"2455":1,"2456":1,"2461":1,"2464":3,"2466":2,"2472":1,"2474":1,"2486":1,"2499":1,"2502":3,"2503":1,"2504":1,"2517":1,"2535":1,"2558":1,"2560":1,"2563":1,"2573":1,"2575":1,"2576":1,"2577":1,"2583":2,"2614":1,"2629":2,"2650":1,"2652":1,"2685":1,"2707":1,"2709":1,"2710":1,"2711":1,"2721":1,"2726":1,"2728":3,"2756":1,"2757":1,"2791":1,"2797":1,"2851":1,"2852":6,"2853":2,"2854":1,"2863":1,"2868":2,"2869":6,"2871":4,"2872":3,"2877":3,"2878":4,"2879":1,"2880":1,"2882":3,"2884":1,"2885":2,"2886":1,"2911":2,"2912":3,"2919":3,"2920":2,"2921":1,"2922":1,"2925":1,"2926":1,"2927":3,"2928":1,"2935":1,"2938":2,"2940":1,"2942":1,"2945":1,"2947":1,"2949":1,"2950":1}}],["exclaim",{"2":{"2546":1,"2555":1}}],["exclamation",{"2":{"1517":1}}],["excluding",{"0":{"500":1},"2":{"561":1,"1544":1,"2073":1,"2857":1}}],["excluded",{"2":{"500":1,"2198":2}}],["exclude",{"2":{"191":2,"308":1,"669":2,"1533":7}}],["exclusion",{"0":{"1689":1},"1":{"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1},"2":{"1689":2}}],["exclusions",{"2":{"114":1,"149":1}}],["exclusively",{"2":{"366":1,"2401":1}}],["exclusive",{"2":{"160":1,"1426":1}}],["exchangeable",{"2":{"714":1}}],["excess",{"2":{"677":1,"2428":1}}],["excessive",{"2":{"528":1,"719":1,"2764":1}}],["except",{"2":{"512":1,"520":2,"525":1,"561":1,"797":1,"1285":1,"1319":1,"1398":1,"1422":1,"1765":1,"1992":1,"2389":1,"2399":1,"2453":1,"2535":1,"2934":1}}],["exceptionally",{"2":{"2928":1}}],["exceptional",{"2":{"525":1}}],["exceptionname",{"2":{"519":1}}],["exception",{"0":{"2737":1},"1":{"2738":1,"2739":1},"2":{"173":1,"194":1,"520":1,"525":3,"1477":1,"1484":1,"2317":1,"2482":1,"2509":1,"2711":1,"2737":1,"2738":1,"2739":1,"2741":1,"2767":1,"2923":1,"2926":1}}],["exceptions",{"0":{"525":1},"2":{"160":1,"525":1,"685":1,"1532":1,"1999":1,"2014":1,"2458":1}}],["exceed",{"2":{"2423":1}}],["exceeds",{"2":{"191":1,"540":1}}],["exceeding",{"2":{"160":1}}],["exceeded",{"2":{"18":1,"575":1,"1512":1}}],["ext",{"2":{"2706":1}}],["extreg",{"2":{"1974":5}}],["extremely",{"2":{"538":1,"643":1,"688":1,"2626":1,"2930":1}}],["extraneous",{"2":{"2889":1}}],["extracondensedbold",{"2":{"2755":1}}],["extracts",{"2":{"672":1}}],["extracted",{"2":{"249":1,"2659":1}}],["extract",{"0":{"672":1},"2":{"236":1,"249":5,"277":1,"344":1,"666":1,"672":4,"2658":1,"2870":1}}],["extraction",{"2":{"175":1}}],["extrapolates",{"2":{"665":1}}],["extrakeys",{"2":{"175":1,"2889":1}}],["extrakey",{"2":{"70":1,"111":1,"175":1,"220":1,"574":1,"575":2,"1365":1,"1369":2,"2210":1,"2418":1,"2889":1}}],["extras",{"2":{"38":1,"114":1,"160":1,"199":2,"210":1,"277":1,"1407":1,"2887":1}}],["extra",{"0":{"618":1,"1369":1},"2":{"35":2,"114":1,"145":1,"175":2,"191":1,"199":1,"294":1,"383":1,"622":1,"693":1,"746":1,"758":1,"1365":2,"1478":1,"1550":1,"1609":7,"2189":1,"2278":2,"2298":1,"2417":1,"2431":1,"2504":1,"2585":1,"2667":1,"2684":1,"2691":1,"2755":1,"2914":1}}],["extkeys",{"2":{"143":2}}],["extern",{"2":{"266":1,"1924":1,"2944":1}}],["externs",{"2":{"196":1,"333":1}}],["externally",{"2":{"224":1,"228":1,"383":1,"2590":1}}],["external",{"0":{"228":1,"451":1,"1628":1,"2446":1,"2590":1,"2592":1,"2593":1,"2595":1,"2596":1},"1":{"452":1,"453":1,"454":1,"455":1,"456":1,"2591":1,"2592":1,"2593":1,"2594":1,"2595":1,"2596":1,"2597":1},"2":{"73":1,"114":1,"134":1,"149":1,"189":1,"208":1,"224":1,"228":3,"241":2,"253":2,"268":1,"270":2,"281":2,"288":1,"308":1,"320":1,"452":1,"453":1,"454":1,"455":1,"456":1,"698":1,"746":1,"749":10,"750":5,"753":1,"755":6,"756":1,"759":7,"1197":1,"1205":1,"1297":1,"1627":2,"1628":2,"1844":1,"1850":1,"1946":1,"2080":1,"2088":1,"2446":1,"2590":5,"2591":1,"2592":1,"2593":1,"2594":2,"2595":2,"2596":3,"2597":1,"2692":1,"2705":2,"2715":1,"2728":1,"2742":1,"2754":1,"2757":1,"2818":1}}],["extent",{"2":{"2305":1,"2757":1}}],["extensively",{"2":{"529":1}}],["extensive",{"2":{"417":1,"1345":1}}],["extensions",{"0":{"2671":1},"2":{"2671":2}}],["extension",{"2":{"199":1,"222":1,"513":1,"519":1,"564":2,"1936":1,"2671":3,"2673":2,"2707":1}}],["extensible",{"2":{"107":1,"114":1,"2653":1}}],["extending",{"0":{"658":1},"2":{"564":2,"630":1}}],["extend",{"2":{"160":1,"175":1,"294":1,"308":1,"658":2}}],["extended",{"2":{"74":1,"191":2,"222":1,"236":1,"285":1,"494":2,"564":2,"749":1,"750":1,"751":1,"1419":1,"1610":1,"1985":4,"1986":1,"2498":1,"2499":1,"2501":1,"2503":2,"2691":1,"2887":2,"2903":1}}],["ext65",{"0":{"60":1},"2":{"60":1}}],["expires",{"2":{"2922":1}}],["expired",{"2":{"2014":1,"2914":1}}],["expansion",{"2":{"2445":1}}],["expands",{"2":{"454":1,"2912":1}}],["expanding",{"2":{"362":1,"1423":1,"2573":1}}],["expandable",{"2":{"362":1}}],["expanders",{"2":{"2439":1}}],["expander",{"2":{"266":1}}],["expanded",{"0":{"118":1},"2":{"70":1,"565":1,"1343":1,"2189":1}}],["expand",{"2":{"134":1,"149":1,"285":1,"393":1,"454":1,"2912":1}}],["expression",{"2":{"528":1}}],["expressions",{"0":{"530":1,"532":1},"2":{"433":2,"532":1}}],["expressed",{"2":{"70":1}}],["explore",{"2":{"2435":1,"2479":1,"2586":1}}],["explorer",{"2":{"2406":1,"2408":1,"2410":1,"2614":2,"2662":1}}],["exploiting",{"2":{"312":1}}],["exploit",{"2":{"312":1}}],["explanations",{"2":{"2415":1}}],["explanation",{"2":{"1421":1,"1961":2,"2310":1,"2320":1}}],["explained",{"2":{"1432":1,"2417":1}}],["explain",{"2":{"512":1,"514":1,"607":1,"613":1,"1786":1,"2411":1,"2934":1}}],["explains",{"2":{"471":1,"1783":1,"2452":1,"2733":1}}],["explaining",{"2":{"188":1,"1783":1,"2728":1,"2938":1,"2942":1}}],["explicit",{"0":{"124":1},"2":{"134":1,"198":1,"1622":1,"2735":1}}],["explicitly",{"2":{"47":1,"114":1,"175":1,"528":1,"749":1,"1519":1,"1589":1,"1623":1,"2184":1,"2198":1,"2298":1,"2719":1,"2736":1,"2744":1,"2894":1}}],["exponent",{"2":{"1986":4}}],["exporting",{"2":{"2755":2}}],["exports",{"2":{"429":2,"430":1}}],["exported",{"2":{"383":1}}],["export",{"2":{"134":1,"438":1,"450":1,"452":2,"453":2,"500":1,"578":1,"2432":2,"2728":1}}],["exposes",{"2":{"1406":1,"1419":2,"2459":1}}],["exposed",{"2":{"754":1,"755":1,"756":1,"2429":2,"2676":1,"2864":1}}],["expose",{"2":{"114":1,"160":1,"191":1,"222":1,"285":1,"2460":1}}],["expert",{"2":{"768":2}}],["experiment",{"2":{"1968":1,"2435":1}}],["experimentation",{"2":{"609":1}}],["experimental",{"2":{"570":1,"1207":1,"1490":1,"2249":2,"2275":1}}],["experiencing",{"2":{"1338":1}}],["experience",{"2":{"555":1,"605":1,"1207":1,"1301":1,"1490":1,"1492":1,"2272":1,"2632":1}}],["expense",{"2":{"555":1,"2379":1}}],["expensive",{"2":{"114":1,"1298":1,"1413":1,"1855":1,"2094":1,"2424":1}}],["expects",{"2":{"1788":1,"2294":1,"2755":1,"2929":1}}],["expect",{"2":{"496":1,"1364":1,"1409":1,"1981":1,"2309":1,"2467":1,"2566":1,"2569":1,"2617":1,"2882":1,"2948":1}}],["expecting",{"2":{"124":1,"1398":1}}],["expected",{"2":{"4":1,"46":1,"303":1,"320":1,"338":1,"383":1,"414":1,"745":1,"766":1,"1534":1,"1803":1,"1846":3,"1999":1,"2082":3,"2298":1,"2869":1,"2915":1,"2931":1}}],["enamelled",{"2":{"2425":1}}],["enabling",{"0":{"124":1,"234":1,"1372":1,"1932":1,"2190":1,"2759":1,"2763":1},"2":{"40":1,"43":1,"107":2,"134":1,"174":1,"175":1,"195":1,"232":2,"234":1,"447":1,"564":1,"571":1,"1266":1,"1354":1,"1405":1,"1490":1,"2278":1,"2292":1,"2298":1,"2597":1,"2728":1,"2756":11,"2758":1,"2889":2}}],["enablehexnumpad",{"2":{"2331":1}}],["enable=true",{"2":{"1322":1,"1333":1}}],["enable=yes",{"2":{"93":1,"277":1,"434":1,"1332":1,"2210":1,"2947":1}}],["enabled",{"0":{"563":1,"1570":1,"1863":1,"2105":1},"1":{"1571":1,"1864":1,"2106":1},"2":{"112":3,"114":2,"175":1,"189":1,"210":2,"220":4,"222":1,"236":1,"249":2,"265":1,"268":1,"275":2,"277":1,"283":1,"307":1,"308":1,"328":1,"447":1,"456":1,"564":1,"574":1,"575":1,"651":2,"676":1,"696":1,"717":1,"748":1,"763":3,"1301":1,"1320":1,"1327":2,"1329":1,"1372":1,"1392":2,"1393":2,"1397":1,"1406":1,"1417":5,"1422":1,"1428":4,"1444":1,"1464":1,"1471":7,"1485":1,"1489":1,"1500":1,"1505":1,"1510":1,"1518":3,"1519":1,"1526":1,"1533":1,"1536":1,"1542":1,"1571":1,"1576":1,"1589":1,"1595":1,"1610":1,"1621":1,"1623":1,"1656":1,"1664":1,"1667":1,"1678":1,"1687":1,"1689":1,"1779":1,"1781":2,"1851":2,"1852":2,"1863":1,"1864":1,"1873":1,"1874":1,"1875":1,"1876":1,"1905":1,"1925":1,"1965":1,"1977":1,"1998":1,"1999":1,"2001":2,"2008":3,"2013":4,"2044":2,"2068":1,"2090":2,"2091":2,"2105":1,"2106":1,"2115":1,"2116":1,"2117":1,"2118":1,"2165":1,"2179":1,"2181":1,"2183":1,"2199":7,"2203":1,"2204":1,"2210":2,"2220":1,"2221":1,"2254":1,"2261":1,"2276":3,"2278":3,"2292":1,"2321":2,"2328":1,"2331":2,"2379":1,"2386":1,"2415":1,"2418":1,"2459":1,"2503":1,"2539":1,"2663":1,"2728":3,"2754":2,"2757":1,"2786":1,"2854":1,"2856":2,"2857":2,"2860":1,"2861":1,"2863":1,"2871":1,"2873":1,"2875":2,"2877":3,"2878":1,"2879":1,"2880":2,"2881":1,"2889":1,"2894":2,"2920":3,"2921":3,"2923":2,"2924":2,"2926":3,"2929":2}}],["enables",{"2":{"87":1,"114":1,"119":1,"283":1,"308":1,"561":1,"563":1,"564":6,"565":1,"572":1,"574":2,"641":1,"891":1,"1285":1,"1486":4,"1511":1,"1518":1,"1519":1,"1621":1,"1630":1,"1849":20,"1852":1,"1940":1,"1949":1,"1960":1,"1976":1,"1977":1,"1985":2,"1986":2,"1996":1,"2003":1,"2068":1,"2085":49,"2091":1,"2276":8,"2278":1,"2320":1,"2321":4,"2418":7,"2700":1,"2828":1,"2860":1,"2861":1,"2873":1,"2901":1,"2910":1,"2922":1,"2925":1}}],["enable",{"0":{"1500":1,"1526":1,"1561":1,"1573":1,"1594":1,"1790":1,"1859":1,"1860":1,"2001":1,"2008":1,"2066":1,"2101":1,"2102":1,"2200":1,"2250":1},"1":{"1595":1},"2":{"18":1,"21":3,"24":3,"39":1,"43":1,"65":5,"70":1,"74":1,"75":1,"87":3,"88":7,"93":2,"94":1,"103":1,"104":7,"114":6,"118":1,"119":1,"124":1,"126":1,"127":7,"131":1,"133":1,"134":12,"149":2,"160":1,"175":3,"191":5,"194":2,"199":1,"210":2,"213":2,"220":2,"222":2,"232":1,"234":1,"235":2,"236":2,"247":1,"249":1,"266":35,"273":1,"277":2,"285":1,"307":2,"308":2,"312":1,"328":2,"339":1,"373":1,"429":1,"488":1,"507":1,"561":2,"563":2,"564":4,"570":8,"572":1,"574":23,"575":7,"592":1,"641":1,"647":1,"655":2,"717":1,"718":1,"721":1,"726":1,"728":1,"763":1,"768":4,"804":1,"821":3,"823":1,"830":1,"848":3,"850":1,"862":1,"889":1,"891":1,"892":1,"912":3,"914":1,"927":1,"947":3,"949":1,"961":1,"981":3,"983":1,"995":1,"1015":3,"1017":1,"1029":1,"1049":3,"1051":1,"1063":1,"1097":1,"1131":1,"1165":1,"1201":1,"1203":1,"1204":1,"1209":2,"1218":1,"1238":3,"1240":1,"1248":3,"1269":2,"1288":1,"1299":2,"1301":1,"1303":1,"1322":2,"1329":2,"1330":1,"1331":1,"1333":1,"1354":3,"1358":4,"1359":1,"1365":4,"1366":1,"1369":2,"1376":3,"1378":2,"1395":1,"1405":1,"1417":3,"1464":3,"1470":1,"1471":4,"1473":1,"1477":1,"1484":2,"1485":2,"1486":2,"1489":1,"1492":1,"1493":1,"1500":1,"1501":1,"1518":1,"1520":1,"1526":3,"1533":1,"1535":4,"1536":1,"1542":1,"1544":4,"1556":1,"1557":1,"1578":1,"1589":1,"1594":1,"1595":2,"1597":1,"1602":2,"1606":1,"1621":1,"1623":1,"1625":1,"1640":1,"1655":1,"1656":2,"1657":2,"1661":2,"1665":1,"1667":2,"1668":1,"1678":7,"1698":1,"1739":1,"1741":1,"1763":2,"1768":2,"1779":1,"1790":1,"1797":1,"1801":2,"1803":1,"1804":3,"1835":1,"1839":2,"1849":22,"1851":2,"1852":2,"1919":2,"1921":1,"1922":1,"1931":1,"1932":2,"1936":1,"1937":3,"1939":1,"1944":2,"1945":1,"1948":1,"1957":1,"1962":2,"1964":2,"1965":1,"1971":13,"1975":1,"1976":4,"1977":5,"1980":1,"1983":1,"1985":6,"1986":2,"1987":1,"1989":1,"1994":1,"1995":1,"1996":1,"1998":1,"2001":3,"2003":1,"2008":6,"2011":3,"2013":1,"2017":1,"2040":2,"2041":2,"2042":2,"2043":2,"2046":4,"2048":2,"2052":1,"2055":1,"2066":1,"2085":51,"2087":1,"2090":2,"2091":2,"2095":1,"2096":1,"2179":2,"2182":1,"2184":11,"2188":1,"2189":2,"2190":1,"2191":3,"2200":2,"2203":1,"2210":4,"2215":1,"2220":1,"2250":1,"2251":1,"2253":1,"2254":4,"2258":1,"2268":1,"2273":1,"2276":13,"2278":4,"2284":3,"2287":1,"2293":3,"2294":2,"2295":1,"2296":1,"2297":2,"2298":1,"2302":1,"2305":2,"2309":1,"2312":1,"2320":2,"2329":4,"2330":2,"2331":3,"2376":2,"2378":2,"2390":1,"2397":1,"2418":17,"2419":2,"2454":5,"2455":2,"2460":4,"2520":2,"2538":2,"2674":4,"2683":1,"2727":1,"2728":8,"2752":1,"2753":2,"2754":1,"2756":12,"2759":2,"2854":3,"2863":1,"2871":1,"2875":2,"2877":4,"2878":1,"2879":1,"2880":1,"2881":1,"2883":1,"2889":8,"2890":2,"2891":1,"2894":46,"2910":1,"2912":5,"2920":1,"2925":1,"2929":1,"2931":1,"2949":1,"2950":1}}],["enjoy",{"2":{"2418":1}}],["enqueue",{"2":{"2310":1}}],["enqueued",{"2":{"380":1,"381":1}}],["ensuring",{"2":{"1633":1,"2750":1}}],["ensures",{"2":{"220":1,"570":4,"1389":1,"1407":1,"2277":1,"2382":1,"2427":1,"2757":1}}],["ensure",{"2":{"21":1,"24":1,"90":1,"92":1,"149":1,"175":3,"191":2,"198":1,"240":1,"249":4,"294":2,"308":1,"317":1,"327":1,"383":1,"403":1,"458":1,"465":1,"469":1,"542":1,"615":1,"643":1,"696":1,"749":1,"1197":1,"1333":1,"1407":1,"1468":1,"1628":1,"1801":1,"1999":1,"2008":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2404":1,"2406":1,"2408":1,"2410":1,"2423":1,"2427":1,"2428":1,"2626":1,"2668":1,"2674":1,"2707":1,"2709":2,"2728":1,"2729":1,"2757":1}}],["energy",{"2":{"604":1,"2374":1}}],["enough",{"2":{"396":1,"545":1,"597":1,"609":1,"644":1,"647":2,"681":1,"1194":1,"1197":1,"1200":1,"1381":1,"1499":1,"1609":1,"1782":1,"1837":1,"1936":1,"1954":1,"2290":1,"2309":1,"2429":2,"2431":1,"2434":1,"2567":1,"2589":1,"2619":1,"2674":1,"2726":1,"2889":1}}],["encryption",{"2":{"2212":1}}],["encompasses",{"2":{"2477":1}}],["encompass",{"2":{"661":1,"665":1,"1382":1}}],["encountering",{"2":{"1777":1}}],["encountered",{"2":{"1318":1,"2221":1}}],["encounter",{"2":{"600":1,"2040":1,"2294":1,"2382":1}}],["encouraging",{"2":{"541":1}}],["encourages",{"2":{"1343":1}}],["encouraged",{"2":{"533":1,"555":1,"1628":1,"1629":1,"1630":1,"2715":1,"2726":1,"2731":1,"2901":1}}],["encourage",{"2":{"512":1,"514":1,"530":1,"596":1,"1623":1,"2728":1,"2836":1}}],["encodes",{"2":{"2296":1}}],["encode",{"2":{"1538":3}}],["encoded",{"2":{"1538":5}}],["encoder2b",{"2":{"1665":1,"1666":1,"2278":1}}],["encoder2a",{"2":{"1665":1,"1666":1,"2278":1}}],["encoder1b",{"2":{"1665":1,"1666":1,"2278":1}}],["encoder1a",{"2":{"1665":1,"1666":1,"2278":1}}],["encodermap",{"2":{"199":2}}],["encoder+encoder",{"2":{"191":1}}],["encoders",{"0":{"1665":1,"1670":1},"1":{"1666":1,"1667":1,"1668":1,"1669":1,"1670":1},"2":{"46":1,"114":3,"154":1,"160":1,"198":1,"212":3,"236":1,"277":1,"307":3,"1665":3,"1666":1,"1667":3,"1668":1,"1669":1,"1670":6,"1986":1,"2305":3,"2728":1}}],["encoder",{"0":{"46":1,"90":1,"154":1,"206":1,"220":1,"307":1,"1667":1,"2305":1,"2865":1},"1":{"2306":1},"2":{"46":2,"63":2,"74":1,"90":11,"93":1,"105":1,"110":1,"114":1,"134":1,"154":2,"160":3,"175":5,"191":5,"199":2,"206":2,"210":3,"212":3,"220":5,"222":8,"226":4,"247":1,"249":3,"255":1,"266":3,"277":2,"307":19,"317":2,"328":2,"333":1,"647":2,"690":1,"1311":2,"1665":13,"1666":13,"1667":16,"1668":9,"1670":9,"2181":1,"2278":3,"2305":5,"2728":4,"2764":1,"2865":5,"2869":2,"2880":2}}],["encoding",{"0":{"1538":1},"2":{"73":1,"222":1,"1286":1,"2755":2,"2765":1,"2772":1,"2846":1}}],["enclosing",{"2":{"356":1}}],["enforce",{"2":{"333":1,"1633":1}}],["enhance",{"2":{"277":1,"288":1,"308":1,"375":1,"627":1,"1626":1}}],["enhancement",{"2":{"93":1,"160":1,"210":2,"236":2,"249":1,"312":1}}],["enhancements",{"0":{"39":1,"63":1,"74":1,"93":1},"2":{"222":1}}],["en",{"2":{"249":1,"726":1,"749":3,"1371":2}}],["engagement",{"2":{"312":1}}],["english",{"2":{"222":1,"1442":1,"1528":4,"2070":1,"2079":1,"2296":1,"2515":1,"2837":1,"2887":5}}],["engineering",{"2":{"2569":1}}],["engineered",{"2":{"2567":1}}],["engine",{"2":{"160":1,"366":1,"1532":1}}],["env",{"2":{"93":1,"455":3,"469":4,"2669":1}}],["environments",{"2":{"132":1}}],["environment",{"0":{"364":1,"2583":1,"2600":1,"2618":1,"2620":1,"2629":1,"2655":1},"1":{"2601":1,"2602":1,"2603":1,"2619":1,"2620":1,"2621":2,"2622":2,"2623":2,"2624":2,"2625":2,"2626":2,"2627":2,"2628":1,"2629":1},"2":{"13":1,"302":1,"376":1,"426":1,"435":4,"456":1,"470":1,"487":1,"496":1,"611":1,"684":2,"685":1,"1314":1,"2382":1,"2384":1,"2432":1,"2496":1,"2501":1,"2580":1,"2582":1,"2583":1,"2584":2,"2587":1,"2598":2,"2616":1,"2618":1,"2620":2,"2626":1,"2629":1,"2632":1,"2653":1}}],["enumerating",{"2":{"629":2,"2059":1,"2387":1}}],["enumeration",{"2":{"308":1,"574":1,"2882":2}}],["enumerated",{"2":{"1446":1}}],["enumerate",{"2":{"629":1,"2059":1,"2498":1}}],["enums",{"2":{"199":1,"512":1,"610":1,"2313":2,"2317":1,"2585":1,"2727":2}}],["enum",{"2":{"40":1,"512":1,"591":1,"593":2,"610":1,"688":2,"1431":1,"1446":1,"1462":1,"1466":1,"1472":1,"1605":1,"1612":1,"1924":1,"1953":2,"1954":2,"2013":1,"2290":2,"2312":1,"2313":1,"2317":3,"2318":2,"2319":3,"2329":2,"2561":1,"2868":1}}],["ent",{"2":{"379":1,"589":2,"1472":1,"1510":1,"1612":1,"2006":1,"2260":1,"2309":2,"2512":1,"2522":1,"2563":1}}],["entities",{"0":{"348":1}}],["entirety",{"2":{"2570":1}}],["entirely",{"2":{"40":1,"210":1,"273":1,"307":1,"308":1,"414":1,"512":1,"1534":1,"2086":1,"2453":1,"2561":1,"2586":1,"2756":1}}],["entire",{"0":{"478":1},"2":{"40":1,"152":1,"199":1,"231":1,"249":1,"465":1,"469":1,"477":2,"1413":1,"1802":1,"1803":1,"1954":3,"2269":1,"2517":1,"2522":1,"2568":1,"2756":3,"2767":2,"2774":2,"2903":1}}],["entered",{"2":{"2634":2}}],["enters",{"2":{"2392":1,"2394":1}}],["entering",{"2":{"386":1,"651":1,"686":1,"2390":1,"2397":1,"2475":1,"2640":1,"2678":1,"2682":1,"2700":1}}],["enter80",{"2":{"241":2}}],["enter67",{"2":{"241":2}}],["enter",{"0":{"1509":1,"2475":1},"2":{"191":1,"222":1,"387":1,"397":2,"631":4,"684":1,"686":1,"1417":3,"1425":1,"1486":1,"1509":1,"1510":1,"1612":1,"1692":1,"2006":1,"2222":1,"2225":1,"2256":1,"2257":2,"2298":1,"2309":2,"2330":1,"2344":1,"2345":2,"2387":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2418":1,"2503":1,"2512":2,"2518":2,"2522":4,"2550":2,"2612":1,"2639":2,"2641":1,"2685":2,"2691":1,"2700":1,"2702":1,"2714":2,"2795":2,"2796":1,"2797":1,"2799":1,"2869":1}}],["entry",{"0":{"2700":1},"2":{"149":1,"191":1,"210":1,"236":1,"599":1,"687":2,"1528":1,"1628":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2302":1,"2310":3,"2330":2,"2663":1,"2700":1,"2727":1,"2775":1,"2777":3,"2885":1,"2927":1,"2935":1}}],["entrypoint",{"2":{"94":1,"369":1,"487":2}}],["entries",{"0":{"3":1,"7":1,"48":1},"2":{"688":1,"1492":1,"1528":1,"1589":1,"1590":1,"1620":1,"2329":1,"2777":2}}],["ended",{"2":{"2317":1}}],["endianness",{"2":{"1252":1,"1265":1}}],["endian",{"2":{"788":1,"794":1,"1538":1,"2765":1,"2772":1}}],["ending",{"2":{"265":1,"307":1,"458":1,"1949":1,"2288":1}}],["endings",{"2":{"249":1,"277":1,"458":2,"2667":1}}],["endif",{"2":{"21":2,"24":2,"134":1,"247":1,"307":1,"354":1,"512":1,"647":3,"1329":1,"1406":1,"1438":2,"1464":2,"1471":2,"1472":2,"1485":2,"1510":6,"1533":3,"1535":4,"1612":4,"1656":1,"1657":2,"1667":1,"1804":3,"1839":2,"1850":1,"1945":1,"1948":1,"1954":1,"1983":1,"2040":1,"2041":1,"2043":1,"2088":1,"2284":1,"2287":1,"2305":1,"2316":1,"2454":5,"2455":3}}],["endpoints",{"0":{"263":1},"2":{"191":1,"266":1,"383":2,"575":4,"1920":1,"2298":1}}],["endpoint",{"0":{"575":1},"2":{"39":1,"40":4,"112":2,"160":1,"175":1,"236":1,"249":1,"370":1,"380":1,"383":4,"573":1,"575":4,"2292":1,"2298":1,"2397":1,"2882":3}}],["ends",{"2":{"18":1,"124":1,"1525":2,"1798":1,"1804":1,"1808":1,"2300":1,"2310":1,"2629":1}}],["end",{"0":{"1808":1,"1813":1},"2":{"3":1,"48":1,"149":1,"152":1,"196":2,"199":1,"222":1,"255":2,"265":2,"307":1,"412":5,"414":1,"494":1,"509":1,"512":2,"589":2,"593":1,"603":1,"633":1,"646":1,"647":1,"665":1,"668":1,"754":2,"1265":1,"1333":1,"1365":1,"1410":2,"1431":3,"1450":1,"1593":1,"1602":3,"1603":2,"1604":2,"1605":7,"1612":1,"1617":1,"1618":1,"1642":1,"1664":1,"1694":1,"1798":1,"1804":1,"1813":1,"1945":1,"1949":1,"1954":2,"1986":1,"2068":3,"2198":2,"2284":1,"2288":1,"2300":1,"2309":1,"2310":1,"2317":1,"2417":1,"2427":3,"2428":3,"2434":1,"2456":1,"2504":2,"2507":1,"2516":2,"2518":1,"2522":3,"2564":1,"2587":1,"2607":1,"2627":1,"2634":2,"2664":1,"2686":1,"2726":1,"2728":1,"2756":1,"2757":1,"2919":1,"2936":1,"2950":2}}],["l75",{"2":{"2567":1}}],["lr",{"2":{"1952":2,"2301":3}}],["lra",{"0":{"1685":1},"2":{"1679":1,"1684":1,"1685":5}}],["lpt",{"2":{"2502":1}}],["lp",{"2":{"2318":3}}],["lprn",{"2":{"1765":1,"2318":5,"2546":1,"2555":1}}],["lpad",{"2":{"241":2,"2517":1,"2522":1}}],["lgpl",{"2":{"2748":1}}],["lgr",{"2":{"2301":1}}],["lg",{"2":{"1686":10}}],["lgui",{"2":{"196":1,"379":1,"589":2,"1377":1,"1378":1,"1448":1,"1453":1,"1490":1,"1798":1,"1804":1,"2514":1,"2520":4,"2522":1,"2538":4,"2541":1,"2542":1,"2547":1,"2561":1,"2563":1,"2572":2,"2651":1}}],["l65",{"2":{"1679":1}}],["lyr",{"2":{"1417":2}}],["lyso1",{"2":{"143":2,"149":2}}],["lbrc",{"2":{"379":1,"589":2,"2068":1,"2512":1,"2522":1,"2563":1}}],["l17",{"2":{"1590":2}}],["l16",{"2":{"1590":2}}],["l15",{"2":{"1590":2}}],["l14",{"2":{"1590":2}}],["l13",{"2":{"1590":2}}],["l12",{"2":{"1590":2}}],["l11",{"2":{"1590":2}}],["l10",{"2":{"1590":2}}],["l1",{"0":{"748":1},"2":{"277":1,"748":1}}],["l09",{"2":{"1590":2}}],["l082",{"2":{"2711":1}}],["l08",{"2":{"1590":2}}],["l073rz",{"2":{"2728":1}}],["l072",{"2":{"2711":1}}],["l07",{"2":{"1590":2}}],["l06",{"2":{"1590":2}}],["l05",{"2":{"1590":2}}],["l04",{"2":{"1590":2}}],["l03",{"2":{"1590":2}}],["l02",{"2":{"1590":2}}],["l01",{"2":{"1590":2}}],["l0xx",{"2":{"723":1}}],["l0",{"0":{"748":1},"2":{"277":1}}],["lfs",{"2":{"2667":1}}],["lfuse",{"2":{"2503":2}}],["lf",{"2":{"249":1,"458":1,"2222":1}}],["lfk87",{"2":{"222":1}}],["lfkeyboards",{"2":{"149":1,"222":1}}],["lwin",{"2":{"1377":1,"1448":1,"2514":1,"2522":1,"2541":1,"2542":1,"2572":1}}],["lw75",{"2":{"241":2}}],["lw67",{"2":{"241":2}}],["lv061228b",{"2":{"1679":1}}],["lvgl",{"0":{"2758":1,"2759":1,"2760":1,"2761":1,"2762":1,"2763":1,"2764":1},"1":{"2759":1,"2760":1,"2761":2,"2762":2,"2763":1,"2764":1},"2":{"199":2,"236":1,"308":1,"2754":1,"2758":5,"2759":2,"2761":9,"2762":3,"2763":1,"2764":6}}],["lv",{"2":{"191":2,"2763":1}}],["lsb",{"2":{"2776":8}}],["lsbfirst",{"0":{"1251":1},"1":{"1252":1,"1253":1},"2":{"1252":1,"1967":1,"1974":1}}],["lswp",{"2":{"2520":2,"2538":2}}],["lspo",{"2":{"2256":1,"2257":1,"2259":6,"2260":5,"2550":1}}],["lsusb",{"2":{"2057":1,"2612":1,"2717":2}}],["lshift",{"2":{"1378":1}}],["lshift+rshift+key",{"2":{"2418":1}}],["lshift+rshift+n",{"2":{"1366":1}}],["lshift+ralt",{"2":{"1378":1}}],["lsg",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["lsag",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["lsa",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["lscr",{"2":{"561":1,"1354":1,"2513":1,"2522":1}}],["ls",{"2":{"143":4}}],["lsft",{"2":{"120":2,"379":1,"589":2,"1377":1,"1378":2,"1423":4,"1441":2,"1444":4,"1448":1,"1453":1,"1517":1,"1533":6,"1594":3,"1597":1,"1600":2,"1603":1,"1604":2,"1605":5,"1617":1,"1622":1,"1765":1,"1788":1,"1795":1,"1804":1,"2259":6,"2260":2,"2327":1,"2381":1,"2514":1,"2522":1,"2541":1,"2542":1,"2547":1,"2553":1,"2561":1,"2563":1,"2572":3,"2575":1,"2650":1,"2651":2,"2911":1,"2915":1,"2916":5,"2917":8,"2918":5,"2929":1,"2931":1}}],["ld7032",{"2":{"285":1,"2753":4,"2756":11}}],["lds",{"2":{"236":3}}],["ldscript",{"2":{"114":1}}],["ld",{"2":{"131":1,"134":1,"277":1,"285":1,"1420":1,"2417":2}}],["llck",{"2":{"1790":1,"1795":1,"2534":1}}],["llvm",{"2":{"513":2}}],["ll3ma",{"2":{"311":1,"317":1}}],["ll3macorn",{"2":{"311":1}}],["lld",{"2":{"175":1,"701":1,"768":1}}],["ll",{"2":{"124":1,"158":2,"172":1,"232":1,"254":1,"272":1,"307":1,"382":1,"596":1,"605":1,"610":1,"673":2,"717":1,"718":1,"754":1,"768":2,"1248":2,"1269":2,"1316":1,"1337":1,"1341":1,"1365":1,"1472":2,"1523":1,"1602":1,"1627":1,"1768":1,"1923":1,"1944":1,"2210":1,"2273":1,"2280":2,"2284":1,"2309":2,"2317":2,"2387":4,"2414":1,"2429":3,"2431":2,"2432":1,"2466":2,"2467":1,"2483":2,"2560":2,"2561":1,"2562":3,"2584":1,"2585":3,"2594":1,"2599":2,"2611":1,"2612":1,"2614":1,"2616":1,"2619":3,"2632":1,"2634":1,"2637":1,"2669":1,"2674":2,"2715":1,"2717":1,"2726":1,"2745":1,"2795":1,"2935":1,"2936":1,"2938":1,"2940":1}}],["luminkey",{"2":{"2567":1}}],["lumissil",{"2":{"800":1,"826":1,"855":1,"887":1,"919":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1124":1,"1158":1}}],["lump",{"2":{"612":1,"613":1}}],["lune",{"2":{"222":1}}],["luna",{"2":{"175":1}}],["lucid",{"2":{"222":2}}],["lucky",{"2":{"2890":1}}],["luckily",{"2":{"2388":1,"2628":1}}],["luck",{"2":{"124":1,"188":1,"2617":1}}],["lulu",{"2":{"191":1}}],["lut",{"2":{"149":1,"462":2,"2885":1,"2886":1,"2887":2}}],["lufa",{"0":{"2":1,"6":1,"45":1,"2876":1},"2":{"6":4,"39":1,"40":2,"45":2,"93":1,"111":1,"114":2,"175":1,"191":2,"199":1,"277":1,"546":1,"573":1,"605":1,"1956":1,"2387":1,"2389":2,"2390":1,"2397":1,"2499":1,"2726":1,"2876":1,"2935":3}}],["l400",{"2":{"1417":1}}],["l4",{"2":{"175":1}}],["l422",{"2":{"114":1}}],["l443",{"2":{"93":1}}],["lcb",{"2":{"2868":1}}],["lcbon",{"2":{"2868":1}}],["lcbr",{"2":{"2068":1,"2546":1,"2555":1}}],["lcpo",{"2":{"2256":1,"2257":1,"2259":1,"2550":1}}],["lctrl",{"2":{"1378":1,"2557":1}}],["lctl",{"2":{"28":2,"120":1,"194":5,"196":2,"379":1,"589":2,"1343":1,"1377":2,"1378":2,"1422":1,"1423":1,"1441":1,"1446":1,"1448":2,"1490":1,"1532":1,"1602":1,"1617":1,"1690":1,"1798":2,"1804":2,"2226":1,"2259":2,"2317":2,"2327":1,"2381":1,"2514":1,"2520":2,"2522":1,"2538":2,"2541":1,"2542":1,"2547":1,"2563":1,"2572":3,"2573":1,"2575":1,"2651":2,"2751":1,"2925":1,"2928":1,"2931":1}}],["lcg",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["lcag",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["lca",{"2":{"1377":2,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["lcap",{"2":{"561":1,"1354":1,"2513":1,"2522":1}}],["lcsg",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["lcs",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["lcmd",{"2":{"1377":1,"1448":1,"2514":1,"2522":1,"2541":1,"2542":1,"2572":1}}],["lc",{"2":{"551":1}}],["lck75",{"2":{"143":2}}],["lcds",{"2":{"153":1}}],["lcd",{"0":{"1696":1,"2282":1},"1":{"1697":1,"1698":1,"1699":1,"1700":1,"1701":1,"1702":1,"1703":1,"1704":1,"1705":1,"1706":1,"1707":1,"1708":1,"1709":1,"1710":1,"1711":1,"1712":1,"1713":1,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1719":1,"1720":1,"1721":1,"1722":1,"1723":1,"1724":1,"1725":1,"1726":1,"1727":1,"1728":1,"1729":1,"1730":1,"1731":1,"1732":1,"1733":1,"1734":1,"1735":1,"1736":1,"1737":1,"2283":1,"2284":1,"2285":1,"2286":1,"2287":1,"2288":1,"2289":1,"2290":1},"2":{"114":1,"133":1,"134":1,"277":1,"1697":1,"2283":1,"2439":1,"2753":7}}],["lmn",{"2":{"266":1}}],["lm",{"2":{"28":1,"134":1,"317":1,"1422":3,"1423":6,"1690":1,"1789":1,"1848":11,"2000":1,"2535":2,"2537":11}}],["l",{"2":{"22":1,"116":1,"175":1,"249":1,"266":3,"328":1,"379":1,"434":2,"437":1,"444":1,"447":1,"469":2,"589":2,"632":1,"1378":27,"1538":5,"1622":1,"2068":1,"2070":1,"2296":1,"2301":1,"2502":1,"2510":3,"2522":3,"2563":1,"2869":2,"2913":1,"2919":5,"2920":9,"2921":5,"2927":25}}],["lofree",{"2":{"2567":1}}],["lone",{"2":{"1788":1,"2929":1,"2931":1}}],["longan",{"2":{"554":1}}],["long",{"0":{"1331":1},"2":{"131":1,"140":1,"154":1,"179":1,"243":1,"331":1,"393":1,"495":1,"512":1,"514":1,"540":3,"564":4,"675":1,"676":1,"681":1,"716":1,"720":1,"1286":1,"1365":1,"1368":1,"1493":1,"1497":1,"1499":1,"1501":1,"1503":1,"1527":1,"1538":1,"1551":1,"1605":1,"1609":4,"1628":1,"1670":1,"1681":1,"1686":17,"1762":1,"1789":1,"1801":1,"1999":1,"2057":1,"2185":1,"2187":6,"2210":1,"2275":1,"2281":1,"2317":1,"2319":1,"2330":1,"2431":1,"2460":1,"2633":1,"2663":1,"2707":1,"2757":1,"2794":1,"2899":1}}],["longer",{"2":{"38":1,"40":1,"98":1,"124":1,"130":1,"141":1,"194":1,"196":1,"201":1,"206":1,"212":1,"224":1,"233":1,"240":1,"262":2,"265":1,"268":1,"273":2,"276":1,"283":1,"284":1,"572":1,"581":1,"609":1,"612":1,"647":1,"687":1,"1290":1,"1320":1,"1463":1,"1496":1,"1499":1,"1503":1,"1519":1,"1528":1,"1781":1,"1788":1,"1939":1,"1971":1,"2309":1,"2310":1,"2317":1,"2319":1,"2427":2,"2571":1,"2727":1,"2728":1,"2757":2,"2889":1,"2912":1,"2914":1,"2919":2,"2925":1,"2929":1}}],["loud",{"2":{"1488":1,"1493":1}}],["louder",{"2":{"277":1}}],["lo",{"2":{"1448":4,"1843":1,"2070":1}}],["losh",{"2":{"2255":1}}],["loss",{"2":{"1415":1,"1422":1,"2323":1,"2418":1}}],["loses",{"2":{"1422":1,"2535":1,"2880":1}}],["lose",{"2":{"720":1,"1589":1,"2636":1}}],["lost",{"2":{"191":1,"746":1,"1661":1,"2813":1}}],["love",{"0":{"2632":1},"2":{"614":1,"1342":1,"1448":2,"2731":1}}],["lorem",{"2":{"363":1}}],["loki65",{"2":{"222":1}}],["lopt",{"2":{"191":1,"1377":1,"1448":1,"2514":1,"2522":1,"2541":1,"2542":1,"2572":1}}],["loadable",{"2":{"2755":1}}],["loads",{"2":{"1290":1,"2757":2}}],["loaded",{"2":{"686":1,"2508":1,"2662":1,"2754":3,"2757":2}}],["loader",{"0":{"2700":1,"2742":1},"2":{"354":3,"2394":3,"2397":1,"2508":3,"2700":1,"2702":1,"2742":1}}],["loading",{"2":{"160":1,"1365":1,"2640":1,"2757":2}}],["load",{"0":{"2614":1},"2":{"149":1,"509":1,"600":1,"651":1,"719":1,"1365":1,"2482":1,"2484":1,"2488":1,"2502":1,"2523":1,"2587":1,"2589":1,"2629":1,"2742":1,"2752":1,"2754":1,"2757":11}}],["loose",{"2":{"2434":2,"2595":1}}],["looking",{"0":{"2850":1},"2":{"228":1,"489":2,"542":1,"661":1,"721":2,"1382":1,"2057":1,"2418":1,"2427":1,"2437":1,"2466":1,"2652":1,"2727":1}}],["look",{"2":{"194":1,"403":1,"473":1,"529":1,"612":1,"656":1,"687":1,"688":1,"1299":1,"1303":1,"1319":1,"1349":1,"1409":1,"1417":2,"1470":1,"1492":1,"1527":1,"1556":1,"1557":1,"1786":1,"2298":1,"2330":1,"2416":1,"2428":1,"2497":1,"2559":1,"2560":1,"2567":1,"2579":1,"2584":1,"2680":1,"2751":1,"2758":1,"2912":1,"2935":1,"2938":1,"2940":2,"2941":1,"2944":1,"2945":1}}],["lookup",{"2":{"175":1,"462":1,"1846":1,"2082":1,"2223":1,"2702":1,"2886":1}}],["looks",{"2":{"125":1,"169":1,"1497":1,"1510":1,"2387":1,"2567":1,"2585":1,"2587":1,"2937":1,"2939":1,"2940":1}}],["looping",{"2":{"2427":1,"2936":1}}],["loopgain",{"2":{"1684":1,"1685":1}}],["loops",{"2":{"160":1,"2008":1}}],["loop",{"0":{"2936":1},"1":{"2937":1,"2938":1,"2939":1,"2940":1,"2941":1},"2":{"65":1,"92":1,"113":1,"114":1,"149":1,"191":2,"277":1,"530":1,"647":1,"1485":2,"1551":1,"1947":2,"1949":1,"2087":1,"2286":2,"2390":1,"2393":2,"2397":1,"2427":1,"2757":1,"2935":1,"2936":2,"2940":1}}],["locate",{"2":{"2606":1,"2612":1,"2614":1}}],["locates",{"2":{"2559":1}}],["located",{"2":{"574":1,"686":1,"756":1,"1350":1,"1502":1,"1527":1,"1590":1,"1946":1,"2418":1,"2430":1,"2451":1,"2517":1,"2612":1,"2614":1,"2626":1,"2767":1,"2768":1,"2769":1,"2774":1,"2887":1}}],["locating",{"2":{"317":1,"333":1}}],["locations",{"2":{"132":1,"149":1,"191":1,"215":1,"266":1,"397":1,"599":1,"729":1,"1627":1,"2015":1,"2217":1,"2416":1,"2794":1,"2863":1,"2879":1,"2939":2}}],["location",{"2":{"114":1,"133":1,"134":1,"149":1,"199":1,"234":1,"249":2,"317":1,"509":1,"627":1,"669":1,"749":1,"750":1,"756":1,"1492":1,"1946":1,"2015":1,"2085":1,"2430":1,"2584":1,"2590":1,"2605":1,"2658":1,"2662":1,"2674":2,"2714":1,"2756":2,"2757":3,"2778":5,"2795":2,"2938":1,"2950":1}}],["localhost",{"2":{"611":1}}],["locally",{"0":{"2591":1,"2593":1},"2":{"609":1,"613":1,"1463":1,"2432":1,"2591":2,"2593":1,"2594":1}}],["local",{"2":{"460":2,"489":1,"514":1,"516":1,"519":1,"607":1,"608":1,"657":1,"675":1,"1952":1,"1953":1,"2015":1,"2289":1,"2384":1,"2387":2,"2433":1,"2554":1,"2573":1,"2591":1,"2592":1,"2593":1,"2598":1,"2601":1,"2614":1,"2628":2,"2637":2,"2651":1,"2728":1}}],["locale",{"2":{"249":1}}],["lockout",{"2":{"2003":1}}],["lockkeys",{"0":{"1693":1},"2":{"1693":1}}],["locks",{"2":{"1422":1,"1789":1,"1791":1,"1793":1,"2534":1}}],["lockups",{"2":{"263":1}}],["locking",{"0":{"2214":1},"2":{"172":1,"175":2,"191":1,"199":2,"236":1,"266":32,"561":3,"1354":2,"1790":1,"2513":6,"2522":6,"2663":1,"2854":2,"2890":2}}],["locked",{"2":{"160":1,"266":1,"312":1,"383":2,"402":3,"408":1,"1789":2,"1793":3,"1794":7,"2213":1,"2214":1,"2216":2,"2217":1,"2218":2,"2276":1,"2652":7,"2733":1,"2736":1,"2744":1,"2745":1,"2879":1}}],["lock",{"0":{"1354":1,"1762":1,"1789":1,"1790":1,"1794":1,"1795":1,"2312":1,"2513":1,"2533":1,"2534":1},"1":{"1763":1,"1764":1,"1765":1,"1790":1,"1791":1,"1792":1,"1793":1,"1794":1,"1795":1},"2":{"73":1,"149":2,"172":2,"175":2,"191":1,"199":2,"210":3,"231":2,"285":2,"308":1,"564":1,"565":1,"589":1,"1354":2,"1422":1,"1424":1,"1455":1,"1544":2,"1546":4,"1593":5,"1625":2,"1693":3,"1762":4,"1763":3,"1764":1,"1765":4,"1789":2,"1790":3,"1791":6,"1792":3,"1793":4,"1794":3,"1795":7,"1835":4,"1836":6,"1838":3,"1839":6,"1840":2,"1855":1,"1945":3,"1948":1,"2094":1,"2095":2,"2096":5,"2188":1,"2189":2,"2190":1,"2216":2,"2218":2,"2276":2,"2284":3,"2287":1,"2312":1,"2330":1,"2418":2,"2513":12,"2520":16,"2522":12,"2533":2,"2534":2,"2538":16,"2650":1,"2652":1,"2735":1,"2795":3,"2796":2,"2854":1,"2857":2,"2867":6,"2890":2,"2936":3,"2941":1}}],["login",{"2":{"2669":1}}],["logically",{"2":{"2207":1}}],["logical",{"2":{"134":1,"236":1,"339":1,"609":1,"753":1,"754":2,"755":3,"756":2,"1287":1,"1782":2,"2206":1,"2466":2,"2856":1,"2857":1,"2864":2,"2867":1,"2872":1}}],["logic",{"0":{"1296":1},"1":{"1297":1,"1298":1},"2":{"49":1,"75":1,"94":2,"113":1,"114":2,"133":2,"134":5,"149":1,"160":3,"175":1,"198":1,"199":1,"210":2,"222":1,"249":2,"266":1,"277":6,"285":1,"308":1,"317":1,"320":1,"328":3,"333":1,"593":2,"1296":1,"1298":1,"1431":1,"1539":1,"1591":1,"1632":1,"1634":1,"1849":1,"1962":1,"2085":2,"2261":2,"2310":1,"2652":1,"2726":1,"2909":1,"2927":1,"2931":1}}],["logfile",{"2":{"2417":4}}],["logged",{"2":{"493":1,"1330":1,"2949":1}}],["logger",{"2":{"489":1,"492":1}}],["logging",{"0":{"492":1},"2":{"249":1,"308":1,"489":1,"529":1,"1329":1,"1330":1,"1331":1}}],["log",{"0":{"492":1},"2":{"114":1,"199":2,"222":1,"411":1,"429":1,"489":3,"491":2,"492":12,"493":2,"496":1,"500":1,"525":2,"529":2,"588":1,"589":2,"607":1,"2436":1,"2609":1}}],["logs",{"2":{"50":1,"1330":1,"2634":1,"2717":1}}],["logo",{"0":{"1946":1,"2285":1},"2":{"21":2,"1946":7,"1948":2,"2285":5,"2287":2}}],["lowr",{"2":{"2321":1}}],["lowest",{"2":{"555":1,"1413":1,"1425":1,"1426":1,"1493":1,"1843":1,"2320":1,"2519":1,"2522":1,"2564":1}}],["lower",{"0":{"2330":1},"2":{"198":1,"236":1,"699":1,"701":1,"719":3,"720":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1207":1,"1296":1,"1417":1,"1422":2,"1425":1,"1427":1,"1430":1,"1491":1,"1521":1,"1544":1,"1681":1,"1801":1,"1935":2,"1936":1,"1939":1,"1968":2,"1974":2,"1975":2,"2301":3,"2320":2,"2321":3,"2322":2,"2323":6,"2330":2,"2449":1,"2525":1,"2557":1,"2559":4,"2562":1,"2569":1,"2783":7,"2785":2,"2911":1,"2912":1}}],["lowercase",{"2":{"152":1,"209":1,"1332":1,"1438":1,"1499":1,"2330":3,"2453":1,"2502":1,"2726":2,"2912":1}}],["low",{"0":{"639":1,"2195":1},"2":{"39":1,"134":1,"160":1,"243":2,"561":2,"568":1,"569":5,"570":1,"639":2,"719":3,"749":1,"761":3,"1295":2,"1297":1,"1319":1,"1413":1,"1486":1,"1544":1,"1545":1,"1678":5,"1681":3,"1684":1,"1685":1,"1742":3,"1836":1,"1838":2,"1935":2,"1936":1,"1985":2,"1997":1,"2184":1,"2271":2,"2272":1,"2374":1,"2498":1,"2499":1,"2500":1,"2501":1,"2503":2,"2557":1,"2562":1,"2680":1,"2684":1,"2685":1,"2687":1,"2726":1,"2809":1,"2835":1,"2844":1,"2872":1,"2912":2}}],["lots",{"2":{"560":1,"2479":1,"2567":2}}],["lotus58",{"2":{"222":1,"266":1,"311":8,"317":1}}],["lot",{"2":{"6":1,"43":2,"114":1,"153":1,"171":1,"187":1,"190":1,"198":2,"201":1,"212":1,"224":1,"233":1,"238":1,"403":1,"494":1,"525":1,"605":1,"613":1,"626":1,"645":1,"665":1,"1336":1,"1417":2,"1423":1,"1524":1,"1609":1,"1622":1,"1623":1,"2261":1,"2309":1,"2427":1,"2429":1,"2435":1,"2439":1,"2481":1,"2573":1,"2579":2,"2586":1,"2587":1,"2629":1,"2716":1,"2722":1,"2728":1,"2729":1,"2780":1,"2893":1,"2894":1,"2896":1,"2908":1,"2935":1}}],["lnrm",{"2":{"2520":2,"2538":2}}],["lng9",{"2":{"2515":1,"2522":1}}],["lng8",{"2":{"2515":1,"2522":1}}],["lng7",{"2":{"2515":1,"2522":1}}],["lng6",{"2":{"2515":1,"2522":1}}],["lng5",{"2":{"2515":1,"2522":1}}],["lng4",{"2":{"2515":1,"2522":1}}],["lng3",{"2":{"2515":1,"2522":1}}],["lng2",{"2":{"2515":1,"2522":1}}],["lng1",{"2":{"2515":1,"2522":1}}],["lnx",{"2":{"2327":1,"2328":1,"2344":1}}],["lnum",{"2":{"561":1,"1354":1,"2513":1,"2522":1}}],["ln",{"2":{"21":2,"510":1,"1851":1,"1945":2,"1954":5,"1955":4,"2090":1,"2284":2,"2290":3}}],["legs",{"2":{"2423":1,"2425":1}}],["leg",{"2":{"1925":1,"2423":3,"2539":1}}],["legato",{"2":{"1925":2,"2539":2}}],["legally",{"2":{"2747":2,"2750":1}}],["legal",{"0":{"2747":1},"2":{"1356":1,"2735":1,"2747":1,"2748":1}}],["legacy",{"0":{"140":1,"757":1,"2437":1},"1":{"2438":1},"2":{"75":1,"86":2,"94":1,"114":2,"133":1,"134":2,"160":2,"172":12,"175":18,"191":3,"210":1,"222":1,"236":1,"254":1,"277":1,"443":1,"564":1,"753":2,"2864":2,"2888":1}}],["leonardo",{"2":{"689":2,"1371":2,"2499":1}}],["len",{"2":{"2059":2}}],["lenght",{"2":{"1527":2}}],["lengths",{"2":{"1487":1,"2425":3}}],["lengthy",{"2":{"720":1}}],["length",{"0":{"540":1,"773":1,"776":1,"779":1,"782":2,"785":1,"788":1,"791":1,"794":1,"1259":1,"1262":1,"1277":1,"1279":1,"2061":1,"2063":1},"1":{"774":1,"775":1,"777":1,"778":1,"780":1,"781":1,"783":2,"784":2,"786":1,"787":1,"789":1,"790":1,"792":1,"793":1,"795":1,"796":1,"1260":1,"1261":1,"1263":1,"1264":1,"1278":1,"1280":1,"2062":1,"2064":1},"2":{"249":2,"379":1,"433":3,"540":1,"561":1,"774":2,"776":1,"777":2,"780":2,"783":4,"786":2,"789":2,"792":2,"795":2,"1260":2,"1263":2,"1278":2,"1280":2,"1285":4,"1286":1,"1295":2,"1419":4,"1498":1,"1518":1,"1527":4,"1544":1,"1609":2,"1618":1,"1681":1,"1934":1,"1954":2,"1976":2,"2057":5,"2058":1,"2059":7,"2062":3,"2064":3,"2185":2,"2290":2,"2363":1,"2431":1,"2561":1,"2719":1,"2765":1,"2767":2,"2768":2,"2769":2,"2770":1,"2771":1,"2772":1,"2773":4,"2774":2,"2775":2,"2776":2,"2777":2,"2778":2,"2779":2,"2792":11,"2857":1}}],["lenient",{"2":{"114":1,"2568":1}}],["leeloo",{"2":{"236":2}}],["lefishe",{"2":{"143":2}}],["left=4",{"2":{"2757":1}}],["leftuf2",{"2":{"2273":1}}],["leftdfu",{"2":{"2273":2}}],["leftavrdude",{"2":{"2273":1}}],["leftmost",{"2":{"1641":1}}],["lefthand",{"2":{"568":1,"569":1}}],["leftover30",{"2":{"222":1}}],["leftover",{"2":{"77":1}}],["lefty",{"2":{"33":2,"134":3,"222":1,"241":6}}],["left",{"2":{"21":1,"24":1,"35":1,"100":1,"114":3,"152":1,"191":1,"213":2,"231":2,"236":2,"249":2,"257":1,"258":1,"259":2,"277":1,"307":4,"332":2,"337":2,"351":1,"379":2,"393":3,"561":2,"565":2,"568":5,"569":4,"570":2,"589":2,"683":1,"684":1,"686":5,"749":1,"766":1,"1194":1,"1197":1,"1200":1,"1294":1,"1348":1,"1362":9,"1368":1,"1377":32,"1378":4,"1380":3,"1423":2,"1448":3,"1492":1,"1594":5,"1595":4,"1605":1,"1612":1,"1624":2,"1667":1,"1672":1,"1692":1,"1694":1,"1781":2,"1788":15,"1846":1,"1849":9,"1852":1,"1933":5,"1948":2,"1949":1,"1951":1,"1954":5,"1971":2,"1977":1,"1983":1,"1987":5,"1989":5,"1990":2,"1996":1,"1997":10,"2048":1,"2049":1,"2068":8,"2073":2,"2082":1,"2085":14,"2091":2,"2207":1,"2226":2,"2255":1,"2256":6,"2257":6,"2260":2,"2269":2,"2271":2,"2272":2,"2273":3,"2274":3,"2278":2,"2287":1,"2290":3,"2301":2,"2305":1,"2315":3,"2327":1,"2344":1,"2345":1,"2346":1,"2391":1,"2393":1,"2400":1,"2405":1,"2407":1,"2409":1,"2417":2,"2428":3,"2429":1,"2456":1,"2512":1,"2514":8,"2516":2,"2518":1,"2520":10,"2522":12,"2538":10,"2540":5,"2541":39,"2542":32,"2546":3,"2547":32,"2550":6,"2553":1,"2555":3,"2563":2,"2572":40,"2573":2,"2586":1,"2612":2,"2634":2,"2651":32,"2662":1,"2691":3,"2728":1,"2755":1,"2757":11,"2778":3,"2795":2,"2796":1,"2841":1,"2860":1,"2861":1,"2869":3,"2871":1,"2878":1,"2894":2,"2926":1,"2927":2,"2929":15}}],["le",{"2":{"143":2,"209":1,"210":1,"236":1,"308":1,"574":1,"2374":3,"2375":4,"2376":1,"2859":1}}],["lean",{"2":{"2598":1}}],["leaps",{"2":{"2447":1}}],["learned",{"0":{"2632":1}}],["learn",{"2":{"2299":1,"2300":1,"2467":1,"2581":1,"2588":1,"2610":1,"2619":1,"2646":1,"2674":1,"2758":1,"2851":1,"2906":2,"2907":2}}],["learning",{"0":{"2299":1,"2642":1},"1":{"2643":1,"2644":1,"2645":1,"2646":1},"2":{"2299":1,"2581":1}}],["leaflabs",{"2":{"2505":1}}],["leaf",{"2":{"1525":1,"1538":7,"1539":1}}],["lease",{"2":{"411":1,"423":2,"2637":2}}],["least",{"2":{"199":1,"521":1,"541":1,"643":1,"695":1,"766":1,"1252":1,"1423":1,"1503":1,"1720":1,"1722":1,"1740":1,"1818":1,"1931":1,"1937":1,"1938":1,"1967":1,"1974":2,"2264":2,"2272":2,"2317":1,"2429":1,"2508":1,"2567":1,"2573":1,"2602":1,"2903":1,"2937":1,"2948":1}}],["leak",{"2":{"236":1}}],["leaving",{"2":{"168":1,"184":1,"541":1,"1365":1,"1423":1,"2427":1,"2573":1,"2662":1,"2911":1}}],["leaves",{"2":{"1297":1,"1428":2,"1525":1}}],["leave",{"2":{"87":1,"103":1,"126":1,"521":1,"541":1,"569":1,"599":1,"1422":1,"1505":1,"1618":1,"2384":2,"2399":1,"2404":1,"2417":1,"2429":1,"2464":1,"2667":1,"2717":1}}],["leading",{"2":{"520":1,"720":1,"1252":6,"1296":1,"2295":1}}],["leader",{"0":{"196":2,"1796":1,"1807":1,"1808":1,"1809":1,"1812":1,"1813":1,"1814":1,"1815":1,"1818":1,"1819":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"2536":1,"2825":1,"2870":1},"1":{"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":2,"1811":2,"1812":1,"1813":1,"1814":1,"1815":1,"1816":2,"1817":2,"1818":1,"1819":1,"1820":1,"1821":2,"1822":2,"1823":1,"1824":2,"1825":2,"1826":1,"1827":2,"1828":2,"1829":1,"1830":2,"1831":2,"1832":1,"1833":2,"1834":2},"2":{"93":1,"112":3,"191":1,"196":15,"199":2,"294":1,"339":1,"564":6,"574":2,"1796":2,"1798":12,"1800":2,"1801":5,"1802":9,"1803":1,"1804":15,"1805":2,"1807":1,"1808":1,"1809":1,"1810":1,"1812":1,"1813":1,"1814":1,"1815":1,"1818":2,"1819":1,"2536":2,"2825":2,"2870":3,"2941":1}}],["lead",{"2":{"73":1,"172":2,"175":2,"1475":2,"1478":1,"1482":1,"1797":1,"1804":1,"1805":1,"1936":1,"2428":1,"2536":1,"2764":1}}],["letting",{"2":{"2428":1}}],["letter",{"2":{"1525":4,"1529":1,"1532":1,"1593":1,"1600":1,"1786":4,"2074":1,"2079":1,"2317":3}}],["letters",{"0":{"2510":1},"2":{"175":1,"222":1,"354":1,"519":1,"1332":1,"1442":1,"1522":3,"1527":1,"1529":1,"1533":1,"1534":1,"1593":1,"1597":1,"2065":1,"2070":1,"2074":1,"2317":3,"2381":1,"2449":1,"2470":1,"2726":1,"2837":1,"2838":1,"2913":1}}],["let",{"2":{"70":1,"110":1,"194":1,"228":1,"245":1,"393":2,"397":1,"418":1,"473":2,"489":1,"507":1,"530":1,"569":1,"574":1,"631":1,"1378":1,"1380":2,"1381":1,"1417":1,"1422":2,"1431":1,"1439":1,"1470":1,"1762":1,"1786":1,"1964":1,"2261":1,"2281":1,"2310":1,"2399":1,"2401":1,"2404":1,"2418":1,"2419":1,"2448":1,"2583":1,"2616":1,"2620":1,"2650":1,"2909":1,"2915":1,"2940":1,"2942":1}}],["lets",{"2":{"70":27,"114":1,"137":1,"143":2,"270":2,"277":1,"431":1,"434":1,"489":1,"565":1,"1381":2,"1451":1,"1472":1,"1602":1,"2209":1,"2418":2,"2829":1,"2832":1,"2843":1,"2912":1}}],["leveraging",{"2":{"2079":1}}],["leveraged",{"2":{"2569":1,"2903":1}}],["leverages",{"2":{"383":1,"1292":1,"1293":1,"1294":1,"1524":1,"1548":1}}],["leverage",{"2":{"153":1,"690":1,"1629":1,"2277":1,"2568":1,"2703":1,"2729":1}}],["lever",{"2":{"1968":2}}],["leveling",{"0":{"189":1,"752":1,"753":1,"754":1,"755":1,"756":1,"757":1},"1":{"754":1,"755":1,"756":1,"757":1},"2":{"114":1,"175":1,"189":1,"191":4,"222":1,"236":5,"249":1,"277":1,"308":1,"333":1,"746":2,"752":3,"753":6,"754":8,"755":7,"756":5,"2864":3}}],["levels",{"0":{"1296":1},"1":{"1297":1,"1298":1},"2":{"112":1,"199":2,"512":1,"555":3,"561":2,"1543":1,"1544":3,"1563":1,"1567":1,"1569":1,"2277":1,"2450":1,"2527":1,"2857":2,"2941":1}}],["level",{"0":{"639":1,"1298":1,"1566":2,"1568":1,"1585":1,"1587":1,"2195":1},"1":{"1567":2,"1569":1},"2":{"4":1,"18":1,"47":1,"75":1,"90":4,"93":2,"125":3,"134":1,"160":2,"169":3,"175":2,"229":2,"243":2,"249":2,"262":1,"266":3,"277":3,"285":1,"308":1,"328":1,"341":1,"417":1,"492":4,"512":1,"521":1,"555":1,"556":1,"557":1,"559":1,"561":2,"569":2,"570":1,"571":1,"576":1,"592":1,"593":2,"609":1,"626":1,"627":5,"635":1,"639":2,"651":2,"653":1,"668":1,"673":1,"690":1,"704":1,"713":1,"728":1,"741":1,"761":6,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1218":1,"1296":1,"1297":1,"1298":1,"1299":1,"1303":1,"1405":1,"1417":1,"1434":1,"1543":2,"1544":2,"1546":1,"1551":2,"1556":1,"1557":1,"1564":1,"1565":1,"1566":1,"1567":2,"1568":1,"1569":1,"1577":2,"1582":1,"1585":1,"1586":1,"1587":1,"1588":1,"1593":1,"1625":1,"1656":1,"1665":1,"1667":1,"1668":3,"1689":1,"1837":3,"1838":1,"1843":1,"1848":2,"1850":1,"1855":1,"1908":1,"1910":1,"1911":1,"1912":1,"1915":1,"1917":1,"1949":1,"1954":3,"1958":1,"1988":2,"2005":2,"2014":1,"2084":2,"2088":1,"2094":1,"2168":1,"2170":1,"2171":1,"2172":1,"2175":1,"2177":1,"2182":1,"2277":2,"2288":1,"2340":1,"2342":1,"2402":1,"2406":1,"2408":1,"2410":1,"2450":1,"2454":2,"2455":1,"2503":1,"2522":1,"2527":2,"2537":2,"2545":2,"2559":1,"2684":2,"2685":1,"2687":1,"2707":1,"2726":1,"2728":2,"2729":2,"2739":1,"2753":1,"2757":1,"2809":1,"2851":1,"2855":1,"2857":1,"2871":1,"2877":1,"2878":1,"2902":1,"2903":1,"2933":2,"2934":1,"2938":1,"2939":1,"2941":1,"2949":1}}],["levinson",{"2":{"35":1}}],["ledmatrix",{"2":{"65":1}}],["led",{"0":{"84":1,"147":1,"169":1,"233":1,"327":1,"729":1,"731":1,"805":1,"807":1,"820":1,"822":1,"825":1,"831":1,"833":1,"847":1,"849":1,"853":1,"863":1,"865":1,"893":1,"895":1,"911":1,"913":1,"917":1,"928":1,"930":1,"946":1,"948":1,"952":1,"962":1,"964":1,"980":1,"982":1,"986":1,"996":1,"998":1,"1014":1,"1016":1,"1020":1,"1030":1,"1032":1,"1048":1,"1050":1,"1054":1,"1064":1,"1066":1,"1098":1,"1100":1,"1132":1,"1134":1,"1166":1,"1168":1,"1219":1,"1221":1,"1237":1,"1239":1,"1243":1,"1635":1,"1835":1,"1837":1,"1838":1,"1839":1,"1840":1,"1841":1,"1842":1,"1844":1,"1849":1,"1850":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1865":1,"1867":1,"1869":1,"1871":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1880":1,"1881":1,"1882":1,"1883":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1891":1,"1893":1,"1895":2,"1897":2,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1905":1,"1906":1,"1908":1,"1910":1,"1912":3,"1915":3,"2149":1,"2151":1,"2172":2,"2175":2,"2315":1,"2537":1,"2826":1,"2871":1},"1":{"732":1,"808":1,"821":1,"823":1,"834":1,"848":1,"850":1,"854":1,"866":1,"896":1,"912":1,"914":1,"918":1,"931":1,"947":1,"949":1,"953":1,"965":1,"981":1,"983":1,"987":1,"999":1,"1015":1,"1017":1,"1021":1,"1033":1,"1049":1,"1051":1,"1055":1,"1067":1,"1101":1,"1135":1,"1169":1,"1222":1,"1238":1,"1240":1,"1244":1,"1836":1,"1837":1,"1838":2,"1839":2,"1840":1,"1841":1,"1842":1,"1843":2,"1845":1,"1846":1,"1847":1,"1848":1,"1849":1,"1850":1,"1851":1,"1852":1,"1853":1,"1854":1,"1855":1,"1856":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":2,"1865":1,"1866":2,"1867":1,"1868":2,"1869":1,"1870":2,"1871":1,"1872":2,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":2,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":2,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":2,"1891":1,"1892":2,"1893":1,"1894":2,"1895":1,"1896":3,"1897":1,"1898":3,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":2,"1905":1,"1906":1,"1907":2,"1908":1,"1909":2,"1910":1,"1911":2,"1912":1,"1913":1,"1914":1,"1915":1,"1916":1,"1917":1,"2150":1,"2152":1},"2":{"22":2,"40":2,"65":1,"70":2,"84":1,"92":3,"93":10,"94":6,"111":1,"113":1,"114":13,"133":1,"134":9,"149":5,"160":2,"167":14,"169":5,"175":27,"191":8,"199":5,"202":1,"209":3,"210":16,"222":3,"233":1,"236":27,"249":33,"266":10,"277":11,"285":4,"294":2,"308":2,"317":1,"328":29,"333":1,"339":1,"354":2,"561":1,"565":2,"570":1,"634":1,"635":2,"704":2,"706":1,"707":1,"708":1,"711":1,"724":1,"725":1,"729":4,"731":1,"732":4,"733":1,"734":1,"735":1,"736":1,"739":1,"800":1,"801":2,"805":6,"807":1,"808":4,"809":1,"812":1,"813":1,"816":1,"817":1,"820":3,"821":1,"822":3,"823":2,"824":1,"825":2,"826":1,"827":2,"831":6,"833":1,"834":5,"835":1,"839":1,"840":1,"843":1,"844":1,"847":3,"848":1,"849":3,"850":2,"851":1,"853":2,"855":1,"856":2,"863":6,"865":1,"866":5,"867":1,"871":1,"872":1,"875":1,"876":1,"879":1,"880":1,"881":1,"882":2,"883":1,"885":1,"887":1,"888":2,"893":6,"895":1,"896":5,"897":1,"901":1,"903":1,"904":1,"907":1,"908":1,"911":3,"912":1,"913":3,"914":2,"915":1,"917":2,"919":1,"920":2,"928":6,"930":1,"931":5,"932":1,"936":1,"938":1,"939":1,"942":1,"943":1,"946":3,"947":1,"948":3,"949":2,"950":1,"952":2,"954":1,"955":2,"962":6,"964":1,"965":5,"966":1,"970":1,"972":1,"973":1,"976":1,"977":1,"980":3,"981":1,"982":3,"983":2,"984":1,"986":2,"988":1,"989":2,"996":6,"998":1,"999":5,"1000":1,"1004":1,"1006":1,"1007":1,"1010":1,"1011":1,"1014":3,"1015":1,"1016":3,"1017":2,"1018":1,"1020":2,"1022":1,"1023":2,"1030":6,"1032":1,"1033":5,"1034":1,"1038":1,"1040":1,"1041":1,"1044":1,"1045":1,"1048":3,"1049":1,"1050":3,"1051":2,"1052":1,"1054":2,"1056":1,"1057":2,"1064":6,"1066":1,"1067":5,"1068":1,"1072":1,"1074":1,"1075":1,"1078":1,"1079":1,"1082":1,"1083":1,"1084":1,"1085":2,"1086":1,"1088":1,"1090":1,"1091":2,"1098":6,"1100":1,"1101":5,"1102":1,"1106":1,"1108":1,"1109":1,"1112":1,"1113":1,"1116":1,"1117":1,"1118":1,"1119":2,"1120":1,"1122":1,"1124":1,"1125":2,"1132":6,"1134":1,"1135":5,"1136":1,"1140":1,"1142":1,"1143":1,"1146":1,"1147":1,"1150":1,"1151":1,"1152":1,"1153":2,"1154":1,"1156":1,"1158":1,"1159":2,"1166":6,"1168":1,"1169":5,"1170":1,"1171":1,"1174":1,"1176":1,"1177":1,"1180":1,"1181":1,"1184":1,"1185":1,"1186":1,"1187":2,"1188":1,"1190":1,"1214":1,"1215":2,"1219":6,"1221":1,"1222":5,"1223":1,"1227":1,"1229":1,"1230":1,"1233":1,"1234":1,"1237":3,"1238":1,"1239":3,"1240":2,"1241":1,"1243":2,"1283":2,"1285":2,"1286":1,"1287":1,"1288":3,"1296":1,"1298":1,"1305":1,"1306":1,"1307":1,"1310":1,"1311":2,"1376":1,"1392":1,"1396":1,"1544":1,"1546":3,"1601":1,"1625":2,"1635":5,"1638":6,"1664":1,"1678":3,"1794":2,"1835":9,"1836":12,"1837":10,"1838":12,"1839":7,"1840":6,"1841":3,"1843":9,"1844":2,"1845":4,"1846":26,"1847":10,"1848":14,"1849":64,"1850":31,"1851":5,"1852":30,"1855":12,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":1,"1865":1,"1866":3,"1896":1,"1898":1,"1906":1,"1907":1,"1913":4,"1916":4,"1945":7,"1983":1,"2080":3,"2081":2,"2082":25,"2083":12,"2085":1,"2086":1,"2088":10,"2091":10,"2092":1,"2094":4,"2095":17,"2096":11,"2107":1,"2108":2,"2150":1,"2152":1,"2173":4,"2176":4,"2178":2,"2179":2,"2185":4,"2186":2,"2189":4,"2190":4,"2195":1,"2198":9,"2206":6,"2207":3,"2208":2,"2210":1,"2276":3,"2284":7,"2315":10,"2390":2,"2397":2,"2418":3,"2431":1,"2443":1,"2455":2,"2456":3,"2537":15,"2652":1,"2679":2,"2689":1,"2691":5,"2700":2,"2728":3,"2854":1,"2855":2,"2867":6,"2871":13,"2876":3,"2877":3,"2878":10,"2883":1,"2907":1}}],["leds",{"0":{"2206":1},"2":{"15":1,"35":1,"40":1,"114":1,"149":1,"212":2,"222":1,"229":1,"249":2,"308":1,"565":4,"645":1,"646":1,"702":2,"704":1,"707":1,"709":1,"724":2,"729":1,"735":1,"736":1,"737":1,"800":2,"805":2,"812":1,"813":1,"814":1,"816":1,"817":1,"818":1,"820":1,"821":1,"822":1,"823":1,"826":2,"831":2,"839":1,"840":1,"841":1,"843":1,"844":1,"845":1,"847":1,"848":1,"849":1,"850":1,"855":2,"857":1,"863":2,"871":1,"872":1,"873":1,"875":1,"876":1,"877":1,"879":1,"880":1,"881":1,"882":1,"887":2,"893":2,"903":1,"904":1,"905":1,"907":1,"908":1,"909":1,"911":1,"912":1,"913":1,"914":1,"919":2,"921":1,"928":2,"938":1,"939":1,"940":1,"942":1,"943":1,"944":1,"946":1,"947":1,"948":1,"949":1,"954":2,"956":1,"962":2,"972":1,"973":1,"974":1,"976":1,"977":1,"978":1,"980":1,"981":1,"982":1,"983":1,"988":2,"990":1,"996":2,"1006":1,"1007":1,"1008":1,"1010":1,"1011":1,"1012":1,"1014":1,"1015":1,"1016":1,"1017":1,"1022":2,"1024":1,"1030":2,"1040":1,"1041":1,"1042":1,"1044":1,"1045":1,"1046":1,"1048":1,"1049":1,"1050":1,"1051":1,"1056":2,"1058":1,"1064":2,"1074":1,"1075":1,"1076":1,"1078":1,"1079":1,"1080":1,"1082":1,"1083":1,"1084":1,"1085":1,"1090":2,"1098":2,"1108":1,"1109":1,"1110":1,"1112":1,"1113":1,"1114":1,"1116":1,"1117":1,"1118":1,"1119":1,"1124":2,"1132":2,"1142":1,"1143":1,"1144":1,"1146":1,"1147":1,"1148":1,"1150":1,"1151":1,"1152":1,"1153":1,"1158":2,"1160":1,"1166":2,"1176":1,"1177":1,"1178":1,"1180":1,"1181":1,"1182":1,"1184":1,"1185":1,"1186":1,"1187":1,"1214":2,"1219":2,"1229":1,"1230":1,"1231":1,"1233":1,"1234":1,"1235":1,"1237":1,"1238":1,"1239":1,"1240":1,"1283":4,"1285":1,"1286":1,"1287":1,"1288":2,"1291":1,"1296":1,"1306":1,"1308":1,"1372":1,"1408":2,"1465":1,"1541":3,"1544":1,"1545":1,"1546":2,"1558":2,"1662":1,"1835":2,"1837":1,"1841":1,"1842":1,"1843":3,"1845":1,"1846":2,"1849":1,"1850":2,"1852":4,"1867":1,"1908":1,"1910":1,"1912":1,"1915":1,"2081":1,"2082":2,"2085":4,"2086":1,"2088":2,"2091":4,"2109":1,"2168":1,"2170":1,"2172":1,"2175":1,"2178":6,"2179":10,"2185":5,"2188":1,"2189":6,"2195":1,"2198":7,"2200":6,"2201":14,"2206":2,"2207":3,"2208":1,"2278":2,"2308":1,"2309":1,"2315":1,"2435":1,"2444":3,"2445":2,"2805":1,"2845":2,"2857":2,"2867":1,"2871":5,"2877":3,"2878":5,"2883":1,"2936":2}}],["less",{"2":{"14":1,"133":1,"134":1,"263":1,"433":2,"514":1,"1298":1,"1365":1,"1410":1,"1413":1,"1490":1,"1491":1,"1498":1,"1522":1,"1610":1,"1615":2,"1953":1,"1974":1,"2295":1,"2309":2,"2417":1,"2454":1,"2583":1,"2695":1,"2726":1,"2791":1,"2851":1,"2914":1}}],["laziness",{"2":{"2726":1}}],["lazydesigners",{"2":{"102":3}}],["lapo",{"2":{"2256":1,"2257":1,"2259":1,"2550":1}}],["laptop",{"2":{"1421":1}}],["laid",{"2":{"614":1,"665":1}}],["lambdas",{"0":{"531":1},"2":{"531":1}}],["larr",{"2":{"348":1,"2450":6}}],["largely",{"2":{"244":1,"554":1,"605":1,"2402":1,"2418":2}}],["largest",{"2":{"191":1,"2889":1}}],["larger",{"2":{"153":1,"189":1,"190":1,"191":1,"222":1,"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"403":1,"721":1,"754":2,"755":2,"1419":1,"1483":1,"1609":2,"1949":1,"1986":1,"2260":1,"2423":1,"2463":1,"2756":1,"2846":1,"2927":1,"2938":1}}],["large",{"2":{"134":1,"153":1,"178":1,"189":1,"190":1,"191":1,"233":1,"403":1,"414":1,"574":1,"661":1,"665":1,"720":1,"1365":1,"1382":1,"1609":1,"1936":1,"1938":1,"2379":1,"2579":1,"2667":1,"2675":1,"2729":1,"2756":1,"2757":1,"2786":1,"2895":1,"2903":1}}],["lacking",{"2":{"2728":1}}],["lacks",{"2":{"2208":1}}],["lack",{"2":{"312":1,"1196":1,"1472":1,"1850":1,"2088":1,"2279":1,"2280":1,"2567":1,"2902":1}}],["lags",{"2":{"719":1}}],["laggy",{"2":{"320":1,"2931":1}}],["lag",{"2":{"297":1,"1290":1,"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1,"2913":1,"2923":1,"2937":1}}],["la+",{"2":{"222":1}}],["labor",{"2":{"2731":1}}],["labk",{"2":{"2546":1,"2555":1}}],["labeled",{"2":{"768":1,"1248":1,"1269":1,"2612":1}}],["label",{"2":{"403":4,"2795":18,"2796":18,"2800":8,"2868":1,"2869":2}}],["labels",{"2":{"175":1,"333":1,"2884":1}}],["lab",{"2":{"222":3,"2567":1}}],["latches",{"2":{"1286":1}}],["latter",{"2":{"419":1,"1351":1,"1615":1,"1798":1,"1969":1,"2097":1,"2656":1,"2757":3,"2920":1,"2925":1,"2927":1}}],["lattice60",{"2":{"159":2}}],["latam",{"2":{"249":1}}],["latvian",{"2":{"191":1,"2887":3}}],["latin",{"2":{"2886":1,"2887":6}}],["latinpad",{"2":{"143":2}}],["latinpadble",{"2":{"143":2,"222":1}}],["latin6rgb",{"2":{"143":2}}],["latin64ble",{"2":{"143":2}}],["latin60rgb",{"2":{"143":2}}],["latin47ble",{"2":{"143":2}}],["latincompass",{"2":{"143":7,"149":2}}],["latin17rgb",{"2":{"143":2}}],["late",{"2":{"656":1}}],["late9",{"2":{"241":2,"249":1,"300":2}}],["latency",{"2":{"94":1,"199":1,"2379":2}}],["latest",{"2":{"14":1,"43":1,"175":1,"191":1,"222":1,"254":1,"294":1,"308":1,"392":1,"2331":1,"2601":1,"2607":1,"2621":1}}],["later",{"2":{"13":1,"157":1,"414":1,"507":1,"527":1,"600":1,"609":1,"716":1,"1381":1,"1467":1,"1630":2,"1962":1,"2189":2,"2309":2,"2431":1,"2464":1,"2498":1,"2561":1,"2628":1,"2632":1,"2732":2}}],["lanes",{"2":{"2265":1}}],["laneware",{"2":{"241":5,"249":1}}],["landed",{"2":{"131":1}}],["languages",{"2":{"134":1,"2294":1,"2329":1,"2418":1,"2653":1,"2664":1,"2884":1,"2885":1}}],["language",{"0":{"5":1,"2223":1,"2884":1},"1":{"2885":1,"2886":1,"2887":1},"2":{"74":1,"429":1,"538":1,"1442":3,"2057":1,"2294":1,"2515":13,"2522":18,"2568":1,"2671":1,"2673":2,"2809":1,"2837":1,"2846":1,"2884":2,"2885":2,"2887":1}}],["lalt",{"2":{"120":1,"379":1,"589":2,"1347":1,"1377":2,"1378":1,"1380":2,"1422":1,"1441":1,"1444":1,"1448":1,"1462":4,"1490":1,"1618":2,"2259":2,"2317":2,"2318":2,"2514":1,"2520":2,"2522":1,"2535":1,"2538":2,"2541":1,"2542":1,"2547":1,"2561":1,"2563":1,"2572":2,"2651":1,"2924":1}}],["laser",{"2":{"118":1,"175":1,"241":2,"1967":1}}],["lastly",{"2":{"1417":1}}],["last",{"0":{"213":1,"2367":1},"1":{"2368":1},"2":{"13":1,"74":1,"103":1,"105":1,"168":1,"173":1,"182":1,"191":2,"198":1,"201":1,"210":1,"212":1,"213":2,"217":1,"222":2,"224":2,"238":1,"249":1,"275":1,"284":1,"383":2,"402":1,"405":1,"406":1,"407":1,"412":4,"521":1,"588":1,"640":1,"646":1,"647":2,"754":2,"1420":3,"1422":1,"1431":1,"1447":2,"1499":1,"1517":1,"1525":2,"1529":1,"1538":1,"1690":1,"1784":1,"1913":1,"1916":1,"2003":1,"2065":3,"2067":2,"2068":2,"2069":3,"2070":1,"2072":2,"2073":2,"2074":1,"2075":1,"2076":1,"2077":1,"2078":5,"2079":6,"2173":1,"2176":1,"2191":1,"2275":2,"2277":3,"2295":1,"2297":1,"2309":1,"2310":2,"2317":1,"2331":1,"2367":1,"2432":1,"2504":1,"2549":2,"2569":1,"2577":1,"2584":1,"2609":1,"2641":1,"2652":1,"2669":1,"2691":1,"2754":1,"2756":1,"2757":25,"2771":1,"2928":1,"2939":1,"2940":1}}],["launchpad",{"2":{"143":2,"199":2,"231":1,"317":1,"1923":1,"2517":2,"2522":2}}],["launch",{"0":{"2659":1},"2":{"114":2,"543":1,"2298":1,"2379":2,"2517":5,"2522":5,"2659":1,"2674":2}}],["layr",{"2":{"2319":3}}],["lays",{"2":{"340":1}}],["layout=ortho",{"2":{"1436":2}}],["layout>",{"2":{"1435":1,"1436":4}}],["layout",{"0":{"50":1,"89":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"597":1,"618":1,"1434":1,"1442":1,"2269":1,"2586":1,"2721":1,"2885":1,"2938":1},"1":{"257":1,"258":1,"259":1,"260":1},"2":{"26":1,"38":1,"50":1,"70":2,"76":1,"89":2,"94":1,"111":4,"114":2,"120":2,"149":1,"160":2,"175":4,"199":4,"201":1,"210":11,"212":3,"222":248,"236":9,"238":1,"249":4,"255":3,"256":4,"257":2,"258":2,"259":4,"260":1,"266":10,"277":2,"285":5,"294":3,"308":3,"328":1,"339":1,"379":4,"429":1,"447":1,"513":1,"588":2,"589":6,"597":3,"599":4,"683":6,"684":1,"1390":3,"1405":3,"1422":2,"1425":2,"1426":1,"1433":10,"1434":6,"1436":4,"1439":6,"1441":2,"1442":2,"1449":1,"1465":2,"1492":5,"1590":2,"1593":1,"1619":1,"1671":1,"1846":2,"1924":1,"1957":1,"2070":1,"2076":1,"2079":1,"2082":2,"2223":2,"2259":2,"2269":3,"2273":1,"2293":2,"2294":1,"2298":2,"2318":1,"2330":1,"2331":1,"2414":2,"2422":1,"2423":2,"2432":2,"2453":18,"2472":2,"2473":2,"2474":6,"2475":1,"2556":1,"2558":2,"2563":4,"2564":1,"2585":1,"2589":1,"2590":1,"2594":4,"2606":2,"2610":1,"2674":1,"2702":1,"2714":2,"2721":8,"2728":15,"2794":6,"2795":11,"2796":2,"2799":1,"2800":2,"2804":1,"2810":1,"2812":1,"2823":1,"2837":1,"2838":1,"2869":18,"2871":1,"2878":1,"2884":3,"2885":3,"2886":3,"2887":3,"2913":2,"2923":1,"2927":6,"2938":5,"2939":3}}],["layouts+users",{"2":{"175":1}}],["layouts",{"0":{"25":1,"1433":1,"1436":1,"1437":1,"2869":1},"1":{"26":1,"1434":1,"1435":1,"1436":1,"1437":1,"1438":2,"1439":2},"2":{"70":3,"73":1,"74":1,"99":1,"111":1,"114":1,"175":3,"184":1,"191":1,"199":4,"201":1,"210":3,"212":3,"222":23,"236":2,"249":3,"256":2,"308":1,"317":1,"429":2,"437":1,"572":2,"597":2,"1346":2,"1422":1,"1426":1,"1433":8,"1434":3,"1436":2,"1465":1,"1619":1,"1774":1,"2094":1,"2453":6,"2590":1,"2594":2,"2714":1,"2721":1,"2728":3,"2795":2,"2797":1,"2837":1,"2869":5,"2884":1,"2886":2,"2927":3,"2938":1}}],["layering",{"2":{"2564":1}}],["layer>",{"2":{"2001":3}}],["layer9",{"2":{"1625":1}}],["layer8",{"2":{"1625":1}}],["layer7",{"2":{"1625":1,"2011":2}}],["layer6",{"2":{"1625":1}}],["layer5",{"2":{"1625":1,"2011":2}}],["layer4",{"2":{"1625":1}}],["layer3",{"2":{"1625":1,"2189":2}}],["layer2",{"2":{"1625":1,"2189":2}}],["layer1",{"2":{"1625":1,"2189":2}}],["layer0",{"2":{"1625":3}}],["layers\`",{"2":{"1431":1}}],["layers",{"0":{"181":1,"591":1,"1383":1,"1421":1,"1422":1,"1424":1,"1431":1,"1620":1,"1771":2,"1772":2,"1773":2,"2011":1,"2188":1,"2189":1,"2190":1,"2320":1,"2557":1,"2562":1,"2781":1,"2892":1},"1":{"1422":1,"1423":2,"1424":1,"1425":2,"1426":2,"1427":2,"1428":1,"1429":1,"1430":1,"1431":1,"1432":1,"2189":1,"2190":1,"2191":1,"2192":1,"2193":1,"2321":1,"2322":1,"2323":1,"2558":1,"2559":1,"2563":1,"2564":1,"2782":1,"2783":1,"2784":1,"2785":1},"2":{"112":4,"114":1,"120":1,"160":1,"174":1,"175":1,"181":4,"191":1,"198":1,"199":3,"222":1,"266":1,"285":1,"307":1,"367":1,"379":1,"447":1,"562":1,"565":6,"588":1,"589":2,"591":1,"610":2,"620":1,"1320":1,"1353":1,"1383":1,"1417":1,"1421":1,"1422":12,"1423":2,"1424":1,"1425":6,"1426":3,"1427":5,"1428":12,"1429":1,"1430":1,"1431":3,"1432":1,"1441":1,"1486":1,"1533":1,"1619":3,"1620":2,"1622":1,"1667":1,"1690":1,"1765":1,"1770":1,"1771":2,"1776":6,"1779":1,"1781":2,"1790":1,"1791":1,"1794":2,"1945":1,"1999":1,"2003":1,"2011":2,"2072":1,"2188":3,"2189":21,"2190":1,"2191":9,"2192":3,"2193":3,"2194":1,"2284":1,"2294":1,"2318":1,"2319":1,"2320":1,"2322":1,"2323":2,"2535":1,"2557":6,"2558":2,"2559":5,"2561":1,"2562":5,"2585":1,"2586":2,"2650":1,"2651":1,"2782":1,"2784":2,"2785":1,"2877":2,"2885":1,"2892":5,"2906":1,"2927":1}}],["layer",{"0":{"3":1,"48":1,"246":1,"662":1,"1353":1,"1429":1,"1430":1,"1432":1,"1619":1,"1620":1,"1779":1,"1789":1,"1790":1,"1794":1,"1795":1,"1999":1,"2000":2,"2008":1,"2012":2,"2014":1,"2191":1,"2203":1,"2318":1,"2319":2,"2534":1,"2535":1,"2558":1,"2559":1,"2563":1,"2564":1,"2782":1,"2784":1,"2786":1,"2824":1},"1":{"1430":1,"1431":1,"1432":1,"1620":1,"1784":1,"1785":1,"1786":1,"1790":1,"1791":1,"1792":1,"1793":1,"1794":1,"1795":1,"2000":1,"2001":1,"2002":1,"2003":1,"2004":1,"2005":1,"2006":1,"2007":1,"2008":1,"2009":1,"2010":1,"2011":1,"2012":1,"2013":1,"2014":1,"2015":1,"2783":1,"2785":1},"2":{"21":1,"28":10,"39":2,"73":1,"93":1,"105":4,"114":2,"149":1,"160":1,"174":1,"175":5,"181":3,"191":2,"194":4,"198":1,"199":7,"222":4,"236":4,"246":2,"249":1,"266":2,"285":7,"297":1,"298":1,"307":1,"308":2,"328":2,"379":1,"562":1,"563":3,"564":2,"565":3,"570":2,"588":2,"591":2,"610":4,"646":1,"662":1,"686":1,"760":1,"762":1,"1353":4,"1416":1,"1417":29,"1421":1,"1422":30,"1423":4,"1424":2,"1425":10,"1426":2,"1427":13,"1428":90,"1429":2,"1430":5,"1431":30,"1432":6,"1466":1,"1470":13,"1473":1,"1486":3,"1490":1,"1533":9,"1605":3,"1612":4,"1613":5,"1619":3,"1620":31,"1622":6,"1625":28,"1638":6,"1657":8,"1661":1,"1662":2,"1663":1,"1667":1,"1690":5,"1766":1,"1779":14,"1781":2,"1789":26,"1790":4,"1791":15,"1792":3,"1793":13,"1794":9,"1795":10,"1803":1,"1841":1,"1845":1,"1855":1,"1945":4,"1948":1,"1994":9,"1996":6,"1999":17,"2000":15,"2001":8,"2003":6,"2004":2,"2006":2,"2008":31,"2009":1,"2011":12,"2012":30,"2013":3,"2014":4,"2015":2,"2053":1,"2072":2,"2073":1,"2075":7,"2081":1,"2094":1,"2095":13,"2096":5,"2188":1,"2189":18,"2190":14,"2191":24,"2203":4,"2276":3,"2284":4,"2287":1,"2292":1,"2293":1,"2298":3,"2302":1,"2304":1,"2309":9,"2318":6,"2319":26,"2320":4,"2321":8,"2322":13,"2323":22,"2381":4,"2534":3,"2535":20,"2547":2,"2554":1,"2556":2,"2557":2,"2558":18,"2559":5,"2560":1,"2561":5,"2562":4,"2563":3,"2564":6,"2574":1,"2575":1,"2576":2,"2585":2,"2651":6,"2652":14,"2684":1,"2707":2,"2727":1,"2728":4,"2782":4,"2783":8,"2784":10,"2785":7,"2786":10,"2824":1,"2868":1,"2869":2,"2870":1,"2877":2,"2880":2,"2890":1,"2892":3,"2909":2,"2911":5,"2912":2,"2919":2,"2920":7,"2921":5,"2922":1,"2923":1,"2949":1,"2950":7}}],["lter",{"2":{"1538":1}}],["ltoboolean",{"2":{"2854":1}}],["lto",{"2":{"111":1,"112":2,"114":3,"134":5,"149":1,"160":1,"222":2,"249":1,"266":2,"572":2,"2674":1}}],["lt",{"0":{"48":1,"370":1,"371":1,"372":1,"1453":1,"1454":1,"1455":1,"1456":2,"1457":5,"1633":1,"2456":1,"2457":1},"2":{"4":3,"51":2,"55":1,"70":1,"132":2,"133":1,"134":1,"191":4,"195":1,"199":1,"212":1,"222":1,"249":2,"297":1,"317":1,"344":1,"403":1,"407":2,"409":3,"411":8,"429":1,"430":1,"433":2,"459":1,"476":2,"492":1,"495":4,"521":1,"559":1,"564":1,"569":2,"570":3,"588":2,"593":2,"612":3,"627":6,"672":1,"673":4,"681":1,"721":1,"729":1,"755":1,"761":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1315":2,"1316":1,"1330":1,"1347":1,"1368":6,"1378":3,"1388":1,"1406":1,"1407":2,"1422":2,"1423":1,"1433":1,"1434":3,"1438":4,"1439":1,"1453":1,"1454":1,"1455":3,"1456":1,"1463":6,"1464":5,"1466":4,"1468":1,"1470":1,"1472":5,"1491":2,"1504":1,"1506":1,"1515":1,"1590":1,"1593":1,"1603":1,"1604":2,"1605":2,"1627":2,"1637":1,"1638":20,"1657":1,"1668":1,"1690":1,"1781":2,"1788":1,"1789":2,"1795":1,"1803":2,"1937":5,"1999":1,"2000":11,"2001":1,"2273":3,"2318":1,"2387":1,"2414":2,"2416":4,"2417":16,"2418":2,"2434":1,"2451":2,"2453":1,"2454":1,"2457":2,"2502":4,"2504":2,"2508":1,"2512":1,"2522":1,"2535":1,"2546":2,"2555":2,"2574":1,"2576":4,"2577":2,"2590":5,"2594":2,"2605":1,"2628":2,"2634":7,"2639":3,"2673":2,"2674":2,"2684":1,"2685":1,"2726":1,"2728":2,"2784":1,"2794":4,"2851":1,"2869":1,"2909":1,"2910":1,"2912":3,"2919":4,"2920":7,"2921":4,"2923":1,"2929":4,"2949":1}}],["liability",{"2":{"2747":1}}],["liatris",{"0":{"1397":1},"2":{"222":1,"1389":2,"1391":3,"1399":3,"2706":1,"2895":1}}],["liking",{"0":{"2586":1},"2":{"2179":1}}],["likewise",{"2":{"570":1,"2576":1}}],["likelihood",{"2":{"263":1,"403":1,"754":1,"2726":2}}],["likely",{"2":{"118":1,"132":1,"156":1,"166":1,"201":2,"403":1,"716":1,"754":1,"1365":1,"1641":1,"2048":1,"2185":1,"2294":1,"2403":1,"2506":1,"2601":1,"2612":1,"2685":1,"2694":1,"2710":1,"2726":1,"2753":1,"2761":1,"2891":1}}],["like",{"0":{"1355":1},"2":{"100":1,"114":1,"120":1,"125":3,"152":3,"156":1,"169":3,"173":1,"184":2,"190":1,"191":1,"194":1,"212":1,"230":1,"244":1,"247":1,"263":1,"307":1,"320":1,"341":1,"375":1,"505":1,"513":1,"541":1,"544":1,"568":2,"569":1,"574":1,"578":1,"604":1,"607":2,"609":2,"647":1,"656":1,"668":1,"688":1,"757":1,"1200":1,"1299":1,"1303":1,"1311":4,"1330":2,"1332":2,"1343":1,"1354":1,"1358":1,"1372":1,"1376":1,"1378":3,"1380":1,"1405":1,"1409":2,"1416":1,"1417":1,"1421":1,"1422":3,"1423":1,"1441":1,"1442":1,"1446":1,"1448":2,"1450":1,"1456":1,"1463":1,"1464":2,"1466":1,"1471":1,"1481":1,"1485":4,"1490":1,"1491":1,"1493":2,"1510":2,"1519":1,"1527":1,"1528":2,"1538":1,"1546":1,"1556":1,"1557":1,"1590":1,"1591":1,"1593":2,"1594":1,"1595":1,"1597":1,"1605":1,"1614":1,"1625":1,"1630":1,"1666":1,"1668":1,"1670":1,"1766":1,"1779":1,"1787":2,"1788":2,"1794":1,"1801":2,"1851":1,"1919":2,"1923":1,"1938":1,"1939":2,"1964":1,"1994":1,"2054":1,"2065":2,"2068":1,"2079":1,"2090":1,"2096":2,"2181":1,"2192":1,"2193":1,"2209":1,"2211":2,"2273":1,"2276":2,"2292":1,"2300":1,"2304":1,"2309":5,"2313":1,"2317":1,"2319":1,"2329":1,"2331":1,"2381":1,"2387":1,"2388":1,"2396":1,"2415":1,"2416":1,"2418":1,"2423":1,"2426":1,"2427":1,"2428":2,"2430":1,"2431":1,"2447":1,"2450":1,"2464":2,"2466":2,"2477":1,"2483":2,"2535":2,"2572":2,"2573":1,"2583":1,"2584":1,"2585":1,"2621":1,"2628":1,"2634":1,"2651":1,"2652":2,"2663":1,"2671":1,"2686":1,"2691":2,"2695":1,"2720":1,"2728":2,"2729":2,"2731":1,"2739":1,"2751":1,"2755":1,"2786":1,"2797":2,"2889":3,"2890":1,"2909":1,"2911":1,"2920":2,"2921":1,"2926":1,"2929":2,"2931":1,"2935":3,"2937":1,"2939":1,"2940":2,"2945":1,"2946":1,"2949":2}}],["lilypadusb",{"2":{"689":1,"2499":1}}],["lily58",{"0":{"20":1,"21":1},"1":{"21":1},"2":{"20":2}}],["live",{"2":{"460":1,"461":1,"1627":1,"2300":1,"2671":1}}],["lives",{"2":{"99":1,"288":1,"2482":1}}],["licensing",{"0":{"2568":1,"2736":1},"2":{"273":1,"284":1,"414":1,"2710":2,"2734":1}}],["licensed",{"2":{"2465":1,"2735":1}}],["licenses",{"2":{"1467":1,"2726":1,"2732":1,"2735":1,"2736":2,"2745":1,"2750":1}}],["license",{"0":{"2465":1,"2566":1},"1":{"2567":1,"2568":1,"2569":1,"2570":1,"2571":1},"2":{"199":1,"276":1,"308":1,"344":3,"403":1,"1319":1,"1467":5,"1630":3,"2465":2,"2566":1,"2567":2,"2568":4,"2569":1,"2570":2,"2726":7,"2728":2,"2732":5,"2734":1,"2736":3,"2744":1,"2747":1,"2748":1,"2750":1}}],["lights",{"0":{"2315":1},"2":{"648":1,"1430":1,"1465":1,"2209":1,"2210":1}}],["lightweight",{"2":{"279":1}}],["lightcycle",{"2":{"210":1}}],["light",{"0":{"565":1},"2":{"199":1,"210":1,"565":1,"570":1,"647":1,"1545":1,"1966":1,"1978":1,"1981":1,"2085":1,"2087":1,"2096":1,"2182":1,"2183":1,"2185":2,"2188":1,"2189":6,"2210":1,"2278":1,"2281":1,"2315":1,"2443":1,"2658":1,"2728":1,"2758":1,"2826":1,"2845":1,"2877":1,"2894":2}}],["lighting",{"0":{"233":1,"1844":1,"2080":1,"2178":1,"2188":1,"2189":1,"2190":1,"2191":1,"2192":1,"2544":1},"1":{"1845":1,"1846":1,"1847":1,"1848":1,"1849":1,"1850":1,"1851":1,"1852":1,"1853":1,"1854":1,"1855":1,"1856":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":1,"1865":1,"1866":1,"1867":1,"1868":1,"1869":1,"1870":1,"1871":1,"1872":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":1,"1891":1,"1892":1,"1893":1,"1894":1,"1895":1,"1896":1,"1897":1,"1898":1,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":1,"1905":1,"1906":1,"1907":1,"1908":1,"1909":1,"1910":1,"1911":1,"1912":1,"1913":1,"1914":1,"1915":1,"1916":1,"1917":1,"2081":1,"2082":1,"2083":1,"2084":1,"2085":1,"2086":1,"2087":1,"2088":1,"2089":1,"2090":1,"2091":1,"2092":1,"2093":1,"2094":1,"2095":1,"2096":1,"2097":1,"2098":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":1,"2107":1,"2108":1,"2109":1,"2110":1,"2111":1,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":1,"2145":1,"2146":1,"2147":1,"2148":1,"2149":1,"2150":1,"2151":1,"2152":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2164":1,"2165":1,"2166":1,"2167":1,"2168":1,"2169":1,"2170":1,"2171":1,"2172":1,"2173":1,"2174":1,"2175":1,"2176":1,"2177":1,"2179":1,"2180":1,"2181":1,"2182":1,"2183":1,"2184":1,"2185":1,"2186":1,"2187":1,"2188":1,"2189":2,"2190":2,"2191":2,"2192":2,"2193":2,"2194":1,"2195":1,"2196":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2205":1,"2206":1,"2207":1,"2208":1,"2209":1,"2210":1,"2211":1},"2":{"114":1,"175":1,"209":1,"233":1,"236":3,"244":1,"249":2,"266":1,"308":1,"316":1,"462":1,"565":4,"1392":1,"1393":1,"1464":1,"2178":1,"2179":1,"2181":1,"2182":3,"2183":1,"2188":2,"2189":2,"2190":2,"2191":2,"2192":4,"2193":2,"2194":1,"2203":2,"2209":1,"2544":2,"2757":1,"2805":1,"2877":2,"2907":2}}],["liftoff",{"2":{"1983":2}}],["lifted",{"2":{"1785":1,"1983":1}}],["lifting",{"2":{"1776":1,"2616":1}}],["lift",{"2":{"190":1,"1983":1,"1985":2}}],["life",{"2":{"123":1,"307":1,"604":1,"1415":1,"2185":1,"2731":1}}],["lithuanian",{"2":{"191":2,"2887":6}}],["little",{"2":{"175":1,"646":1,"688":1,"1365":1,"1499":1,"1503":2,"1519":2,"1523":1,"1538":1,"2309":1,"2310":1,"2316":1,"2324":1,"2387":2,"2428":1,"2617":1,"2765":1,"2772":1}}],["literal",{"2":{"160":2,"671":1,"1450":1}}],["literals",{"2":{"114":1,"175":1,"2222":1}}],["lite",{"0":{"245":1,"624":1},"2":{"87":3,"88":3,"93":1,"103":4,"104":3,"112":1,"126":5,"127":3,"134":1,"149":2,"245":2,"249":2,"317":1,"328":1,"624":1,"2728":3,"2872":2}}],["lime",{"2":{"134":1}}],["limitation",{"2":{"695":1,"1518":1,"2490":1,"2575":1,"2680":1}}],["limitations",{"0":{"575":1,"1499":1,"2676":1},"1":{"2677":1,"2678":1,"2679":1,"2680":1},"2":{"293":1,"305":1,"314":1,"605":1,"1303":1,"2262":1,"2294":1,"2325":1,"2418":1,"2733":1,"2735":2,"2748":1}}],["limits",{"0":{"660":1},"2":{"191":2,"236":1,"285":2,"294":1,"575":1,"719":1,"1850":2,"1852":3,"1985":1,"2088":2,"2091":3,"2680":1,"2871":2,"2878":2}}],["limiting",{"2":{"114":1,"429":1,"1852":1,"2091":1,"2459":1,"2685":1,"2686":1}}],["limited",{"0":{"593":1,"2680":1},"2":{"92":1,"130":1,"189":1,"306":1,"315":1,"592":1,"609":1,"613":1,"690":1,"719":1,"1322":1,"1349":1,"1415":1,"1423":2,"1528":1,"1662":1,"1777":1,"2070":1,"2096":1,"2249":1,"2277":1,"2329":1,"2374":1,"2402":1,"2469":1,"2474":3,"2475":1,"2573":1,"2639":1,"2731":1,"2888":1,"2902":1}}],["limit",{"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"63":1,"114":1,"160":2,"175":1,"191":1,"210":1,"236":1,"399":1,"540":1,"629":1,"657":1,"719":1,"755":1,"762":1,"1410":1,"1544":1,"1681":2,"1850":1,"1852":2,"1949":1,"2086":3,"2088":1,"2091":2,"2182":2,"2454":2,"2754":1,"2871":2,"2878":2,"2892":1}}],["linx",{"2":{"2332":1,"2552":1}}],["linworks",{"2":{"175":1,"266":1}}],["lingering",{"2":{"175":3,"199":1}}],["linux1",{"2":{"2522":1}}],["linux",{"0":{"1315":1,"1316":1,"1317":1},"1":{"1316":1,"1317":1},"2":{"158":1,"210":1,"426":1,"1315":1,"1316":1,"1326":1,"1332":2,"1361":1,"1784":1,"1957":1,"1958":1,"2016":1,"2057":1,"2327":1,"2328":1,"2331":3,"2332":2,"2344":1,"2345":1,"2346":1,"2384":1,"2502":1,"2506":1,"2522":1,"2552":2,"2613":1,"2619":1,"2620":1,"2626":3,"2627":1,"2644":1,"2674":2,"2717":1,"2739":1,"2887":2}}],["linting",{"0":{"501":1,"502":1,"506":1},"1":{"502":1,"503":1,"504":1,"505":1,"506":1}}],["lint",{"0":{"440":1,"2448":1},"2":{"134":1,"160":1,"175":1,"199":1,"236":1,"249":1,"266":1,"294":1,"308":4,"317":1,"328":1,"333":2,"339":1,"344":3,"403":1,"440":3,"501":1,"506":1,"2448":5}}],["linkid=830387",{"2":{"2674":1}}],["linking",{"2":{"236":2,"341":1,"572":2,"1365":1,"2458":1,"2567":1,"2587":1,"2629":1,"2734":1,"2741":4}}],["link007",{"2":{"2506":1}}],["linked",{"2":{"236":1,"572":1,"2458":1,"2501":1,"2734":1,"2869":1}}],["linker",{"2":{"114":1}}],["links",{"0":{"2436":1},"2":{"199":1,"341":2,"393":1,"413":1,"661":1,"1340":1,"1382":1,"1538":1,"2430":1,"2437":1,"2452":1,"2483":1,"2521":1,"2567":1,"2728":1}}],["link",{"2":{"40":1,"43":2,"93":1,"94":1,"114":1,"133":1,"134":2,"277":1,"389":2,"411":1,"572":2,"610":1,"681":1,"1313":1,"1345":1,"1538":2,"1539":1,"2046":2,"2387":2,"2400":4,"2424":4,"2505":1,"2506":2,"2507":2,"2508":4,"2658":1,"2667":1,"2726":1,"2728":3,"2854":1,"2889":1}}],["linear",{"2":{"1685":2,"2776":3}}],["linebreak",{"2":{"521":1}}],["lined",{"2":{"354":1,"512":1}}],["lines",{"0":{"342":1},"2":{"64":1,"113":1,"153":1,"222":1,"272":1,"273":1,"277":1,"512":2,"514":2,"521":1,"527":1,"540":1,"609":1,"647":1,"721":1,"1390":1,"1450":1,"1669":2,"1699":3,"1954":5,"1962":1,"2038":1,"2290":4,"2294":1,"2295":1,"2296":1,"2297":1,"2497":1,"2504":1,"2585":2,"2717":1,"2757":1}}],["line",{"0":{"1711":1,"2616":1,"2644":1},"1":{"1712":1},"2":{"35":1,"65":1,"112":1,"114":2,"118":2,"157":1,"199":1,"226":2,"236":1,"249":1,"264":1,"274":1,"277":1,"282":1,"285":1,"292":1,"301":1,"302":1,"313":1,"326":1,"336":1,"344":3,"354":2,"425":1,"458":3,"459":1,"470":1,"473":1,"489":1,"496":1,"512":4,"513":1,"516":1,"518":2,"521":3,"527":3,"532":1,"609":2,"622":1,"676":3,"1197":1,"1205":1,"1252":1,"1297":1,"1333":1,"1392":1,"1396":2,"1403":1,"1407":1,"1412":1,"1413":1,"1438":1,"1465":1,"1605":3,"1612":1,"1660":2,"1699":2,"1712":2,"1713":1,"1932":1,"1954":5,"1964":1,"2038":1,"2250":1,"2290":3,"2298":1,"2320":1,"2387":2,"2389":1,"2392":1,"2394":2,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2417":1,"2423":1,"2428":1,"2466":2,"2504":2,"2585":3,"2589":1,"2607":1,"2613":2,"2619":1,"2634":2,"2639":2,"2644":1,"2653":1,"2664":1,"2667":1,"2669":1,"2691":1,"2703":1,"2714":1,"2757":7,"2767":1,"2795":1,"2802":1,"2803":1,"2816":1,"2924":1,"2928":1,"2950":2}}],["libusbk",{"2":{"689":1}}],["libusb",{"2":{"240":3}}],["liberal",{"2":{"514":1,"530":1}}],["liberally",{"2":{"512":1,"514":1}}],["liber",{"2":{"143":2,"149":1}}],["libc",{"2":{"114":1,"746":1,"2889":1}}],["lib8tion",{"2":{"114":1,"308":1}}],["libraries",{"0":{"2733":1,"2739":1,"2745":1,"2748":1},"1":{"2734":1,"2735":1,"2736":1,"2737":1,"2738":1,"2739":1,"2740":1,"2741":1,"2742":1,"2743":1,"2744":1,"2745":1,"2746":1,"2747":1,"2748":1,"2749":1,"2750":1},"2":{"20":1,"23":1,"2057":1,"2567":1,"2733":3,"2735":4,"2737":1,"2738":1,"2739":2,"2741":2,"2744":1,"2746":1,"2749":1,"2750":2,"2903":1}}],["library",{"0":{"1527":1,"1686":1,"2735":1,"2737":1,"2738":1},"1":{"1528":1,"2738":1,"2739":1},"2":{"20":2,"160":1,"473":1,"474":1,"476":1,"482":1,"483":1,"538":1,"572":1,"762":2,"1526":3,"1527":2,"1686":1,"2057":2,"2058":1,"2059":1,"2735":1,"2737":1,"2741":1,"2747":1,"2748":1,"2758":2}}],["lib",{"2":{"6":1,"75":1,"113":1,"114":1,"234":2,"344":3,"411":2,"422":1,"489":2,"505":1,"542":1,"543":1,"544":2,"572":8,"666":3,"672":1,"673":3,"2387":4,"2684":1,"2735":1}}],["lists",{"0":{"344":1,"527":1},"2":{"441":1,"442":1,"454":1,"533":1,"686":1}}],["listings",{"2":{"222":1,"2674":1}}],["listing",{"2":{"149":1,"430":1,"681":1,"1444":1}}],["listed",{"2":{"33":1,"120":1,"215":1,"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"513":1,"568":1,"633":1,"639":1,"716":1,"719":1,"766":1,"1423":1,"1427":1,"1628":1,"1954":1,"2270":1,"2309":1,"2497":1,"2502":1,"2503":1,"2609":1,"2705":1,"2709":1,"2753":1,"2884":1,"2941":1}}],["listening",{"2":{"1329":1,"1332":2,"2218":1}}],["listen",{"0":{"1326":1,"1332":1,"2819":1},"2":{"24":1,"562":1,"1326":1,"1332":4,"1333":1,"2278":1,"2418":2,"2819":1}}],["list",{"0":{"71":1,"441":1,"442":1,"454":1,"689":1,"2421":1,"2474":1,"2780":1},"1":{"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1},"2":{"0":1,"9":1,"76":1,"93":1,"114":1,"116":1,"120":1,"124":1,"134":3,"149":2,"157":1,"166":1,"170":1,"172":2,"173":1,"175":2,"187":1,"199":1,"213":1,"215":1,"222":1,"233":2,"234":1,"249":1,"272":1,"279":1,"288":1,"298":1,"316":1,"354":1,"379":1,"382":3,"383":1,"393":1,"403":1,"433":3,"434":1,"441":1,"442":1,"452":1,"453":1,"454":2,"455":1,"469":5,"516":1,"526":1,"572":3,"596":1,"671":1,"686":2,"689":1,"723":1,"1343":1,"1378":2,"1441":1,"1446":2,"1470":1,"1485":5,"1602":1,"1605":2,"1612":1,"1633":1,"1655":1,"1686":1,"1765":1,"1788":2,"1845":1,"1961":1,"2057":1,"2068":1,"2081":1,"2089":1,"2189":3,"2191":1,"2194":1,"2199":4,"2205":1,"2277":1,"2300":1,"2327":1,"2331":2,"2435":1,"2470":1,"2473":1,"2474":1,"2556":2,"2562":1,"2563":1,"2570":1,"2571":1,"2583":2,"2585":2,"2586":1,"2597":1,"2606":1,"2607":2,"2610":1,"2629":2,"2634":4,"2663":1,"2684":1,"2709":1,"2710":1,"2716":1,"2717":3,"2724":1,"2726":1,"2728":1,"2772":1,"2786":1,"2852":1,"2857":1,"2863":2,"2865":1,"2868":2,"2869":2,"2871":2,"2872":3,"2878":2,"2879":1,"2902":1,"2906":1,"2929":2}}],["sz",{"2":{"2331":1}}],["s2",{"2":{"2296":1,"2301":2}}],["s2m",{"2":{"2277":9}}],["s1",{"2":{"2296":1,"2301":2}}],["sg",{"2":{"1378":1}}],["sgk50",{"2":{"294":1}}],["sbin",{"2":{"1316":1}}],["s4",{"2":{"294":1}}],["svc",{"2":{"2736":1,"2741":1,"2744":1,"2750":1}}],["svd",{"2":{"2674":5}}],["svdfile",{"2":{"2674":2}}],["svlinky",{"0":{"1398":1},"2":{"285":1,"1389":1,"1391":3,"1398":1,"2714":1}}],["svnroot",{"2":{"420":1}}],["svn",{"2":{"114":1,"149":1,"420":8}}],["sfbs",{"0":{"2070":1}}],["sf",{"2":{"222":1}}],["sftent",{"2":{"2259":3,"2260":1}}],["sftllck",{"2":{"1795":4}}],["sft",{"2":{"195":1,"1605":2,"2542":1,"2572":1,"2910":1,"2912":1,"2919":3,"2922":6,"2926":8}}],["s65",{"2":{"222":1}}],["sram",{"2":{"2508":3}}],["srand",{"2":{"1947":1,"2286":1}}],["sr",{"2":{"2301":3}}],["srst",{"2":{"397":1}}],["srom",{"2":{"273":2,"277":1}}],["sriwedari70",{"2":{"222":1}}],["src",{"2":{"75":1,"114":1,"133":1,"134":1,"149":1,"234":9,"236":1,"429":1,"572":8,"673":2,"725":1,"801":2,"827":2,"856":2,"888":2,"920":2,"955":2,"989":2,"1023":2,"1057":2,"1091":2,"1125":2,"1159":2,"1215":2,"1414":1,"1464":4,"1633":1,"2454":1,"2605":1,"2945":1}}],["s3",{"2":{"210":1,"366":2,"367":1,"370":1,"578":1,"2301":1}}],["sq",{"2":{"2252":9,"2253":12}}],["sq80",{"2":{"249":1}}],["sqrt",{"2":{"210":1}}],["squash",{"2":{"613":1}}],["square",{"2":{"210":1,"721":1,"1480":2,"1488":1}}],["squigglies",{"2":{"429":1}}],["squigglybob",{"2":{"210":1}}],["squiggle",{"2":{"143":2}}],["squishytkl",{"2":{"197":2}}],["squishy65",{"2":{"197":2}}],["squeeze",{"2":{"160":1,"545":1,"675":1}}],["squeezing",{"0":{"123":1,"2888":1},"1":{"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"134":1,"2901":1,"2907":1}}],["ssh",{"2":{"2602":1,"2608":1}}],["ssion",{"2":{"2079":1}}],["ssp",{"2":{"1194":3}}],["ssk",{"2":{"218":3}}],["ss",{"2":{"191":2,"196":2,"1247":5,"1252":1,"1446":1,"1448":24,"1450":1,"1798":2,"1804":4,"2222":4,"2225":1,"2226":2,"2288":1}}],["ssd1351",{"2":{"191":1,"2753":2,"2756":7}}],["ssd1306oled",{"2":{"21":3,"24":3,"208":1}}],["ssd1306",{"0":{"1955":1,"2442":1},"2":{"20":1,"23":1,"40":1,"153":1,"191":1,"208":2,"209":2,"248":1,"249":1,"1943":5,"1945":3,"1949":1,"1952":1,"1953":3,"1954":2,"2442":1,"2753":2,"2756":2}}],["sdep",{"2":{"2375":1}}],["sdio",{"2":{"1966":2,"1978":2,"1981":2,"1985":3}}],["sd",{"2":{"1605":4}}],["sd2",{"2":{"1269":1}}],["sd3",{"2":{"1203":2}}],["sd1",{"2":{"1203":1,"1269":2}}],["sdb",{"2":{"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1}}],["sdadel",{"2":{"770":1}}],["sda",{"2":{"191":1,"767":2,"768":4,"829":1,"858":1,"890":1,"922":8,"957":8,"991":1,"1025":1,"1059":1,"1093":8,"1127":8,"1161":8,"1217":1,"1682":1,"2267":1,"2702":1}}],["sdk",{"2":{"175":1,"199":1,"308":1,"2745":1}}],["snek",{"2":{"2329":3}}],["snes",{"2":{"236":1}}],["sn",{"2":{"2181":1,"2544":1}}],["snippers",{"2":{"2421":1}}],["snippet",{"2":{"1663":1,"2044":1}}],["snip>",{"2":{"383":1}}],["sn74lv1t34",{"2":{"1298":1}}],["sn74x154",{"2":{"160":1}}],["sn74x138",{"2":{"148":1,"149":1,"160":1}}],["snled27351",{"0":{"1214":1,"1221":1,"1223":1,"1225":1,"1227":1,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1243":1},"1":{"1215":1,"1216":1,"1217":1,"1218":1,"1219":1,"1220":1,"1221":1,"1222":2,"1223":1,"1224":2,"1225":1,"1226":2,"1227":1,"1228":2,"1229":1,"1230":2,"1231":1,"1232":2,"1233":1,"1234":2,"1235":1,"1236":2,"1237":1,"1238":2,"1239":1,"1240":2,"1241":1,"1242":2,"1243":1,"1244":2},"2":{"236":2,"249":1,"1214":1,"1215":4,"1216":7,"1217":6,"1219":6,"1229":1,"1230":1,"1233":1,"1234":1,"1237":1,"1238":1,"1239":1,"1240":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["snowe",{"2":{"175":1}}],["snprintf",{"2":{"175":1,"2889":3,"2893":1}}],["snapping",{"2":{"1986":1}}],["snapshot",{"2":{"607":1}}],["snap",{"2":{"277":1}}],["snake",{"2":{"160":1,"2181":2,"2183":2,"2184":2,"2185":2,"2187":2,"2210":1,"2544":2,"2877":1,"2894":1}}],["snagpad",{"2":{"33":2}}],["skeleton",{"2":{"2592":1}}],["skeletyl",{"2":{"311":8,"317":1}}],["sketches",{"2":{"2499":1}}],["sketch",{"2":{"2486":1}}],["skewed",{"2":{"1492":1}}],["sk6805",{"2":{"1283":1,"1287":1,"2178":1}}],["sk6812rgbw",{"2":{"1288":1}}],["sk6812mini",{"2":{"1283":1,"2178":1}}],["sk6812",{"2":{"1283":1,"1287":1,"2178":1}}],["skully",{"2":{"483":1}}],["skullydazed",{"2":{"111":1,"2852":1}}],["skills",{"2":{"610":1,"1801":1,"2054":1}}],["skiller",{"2":{"294":1}}],["skips",{"2":{"1447":2,"1665":1,"1974":1,"2000":2,"2522":1}}],["skipped",{"2":{"277":1,"2310":1}}],["skipping",{"2":{"240":1,"656":1,"2310":1}}],["skip",{"2":{"39":1,"65":1,"114":1,"149":1,"191":1,"202":1,"307":2,"328":1,"630":1,"631":1,"1198":1,"1201":1,"1417":1,"1533":1,"1970":1,"1974":1,"2384":1,"2423":1,"2504":1,"2517":2,"2561":1,"2600":1,"2613":1,"2634":2,"2658":1,"2659":1,"2907":1}}],["skyloong",{"2":{"210":1,"236":4,"294":1}}],["slct",{"2":{"2516":1,"2522":1}}],["sl",{"2":{"2301":2}}],["slep",{"2":{"1351":1,"2517":1,"2522":1}}],["sleeping",{"2":{"1625":1,"2418":1}}],["sleep",{"0":{"1370":1,"1376":1},"2":{"70":1,"73":1,"93":1,"174":2,"175":1,"210":1,"249":2,"317":1,"647":1,"1370":1,"1376":1,"1625":1,"1852":1,"2091":1,"2182":2,"2418":1,"2517":2,"2522":2,"2871":2,"2877":2,"2878":2}}],["slovenian",{"2":{"2887":3}}],["slovak",{"2":{"2887":3}}],["slows",{"2":{"1985":1}}],["slowdown",{"2":{"1953":1}}],["slower",{"2":{"1949":1,"1997":1,"2253":1,"2254":1,"2598":1}}],["slowest",{"2":{"1937":1,"1938":1,"1954":1,"2880":1}}],["slowly",{"2":{"1947":1,"2085":1,"2286":1}}],["slow",{"2":{"565":1,"1410":2,"1490":1,"1681":1,"1935":1,"1968":1,"1986":1,"2189":1,"2626":1,"2764":1}}],["slots",{"2":{"206":1}}],["slsh",{"2":{"379":1,"589":2,"2381":1,"2512":1,"2522":1,"2563":1,"2923":1,"2924":1,"2928":1,"2931":1}}],["sla0044",{"2":{"2736":1,"2745":1}}],["slash",{"2":{"1625":1,"1692":1,"2449":1,"2512":1,"2518":1,"2522":2}}],["slashes",{"2":{"149":1}}],["slated",{"2":{"753":1}}],["slate",{"2":{"612":1,"2728":1}}],["slavepin",{"0":{"1251":1},"1":{"1252":1,"1253":1},"2":{"1248":1,"1252":1}}],["slave",{"2":{"74":1,"92":1,"93":1,"107":1,"222":1,"568":2,"570":13,"750":2,"759":2,"923":3,"1094":3,"1128":3,"1200":2,"1247":1,"1248":2,"1265":1,"1835":1,"2043":1,"2096":1,"2191":1,"2198":4,"2261":1,"2275":4,"2276":8,"2277":24,"2278":7,"2279":1,"2288":1,"2378":1}}],["slim",{"2":{"2086":1,"2394":1}}],["sliding",{"2":{"1939":1}}],["slicing",{"2":{"1484":1}}],["slightly",{"2":{"613":1,"701":1,"1199":1,"1214":1,"1286":1,"1493":1,"1496":1,"1614":1,"1681":1,"1994":1,"2269":1,"2379":1,"2498":1,"2503":1,"2728":1,"2920":1}}],["slight",{"2":{"149":1,"236":1,"2085":3}}],["slipped",{"2":{"95":1}}],["smith",{"2":{"2714":1}}],["smithrune",{"2":{"222":1}}],["smp",{"2":{"701":1}}],["smpr",{"2":{"701":1}}],["smartmmd",{"2":{"2567":1}}],["smart",{"2":{"604":1}}],["smallest",{"2":{"2726":1,"2729":1}}],["smaller",{"2":{"134":1,"181":1,"248":1,"249":2,"540":1,"1681":1,"1954":1,"2295":1,"2726":1,"2756":3,"2889":2,"2903":1}}],["smallice",{"2":{"159":2}}],["small",{"0":{"15":1},"2":{"153":1,"175":2,"189":1,"222":1,"277":1,"294":1,"540":1,"572":1,"1283":1,"1517":1,"1525":1,"1526":1,"1622":1,"1679":1,"1935":1,"1938":1,"2178":1,"2280":2,"2399":1,"2421":1,"2424":1,"2427":2,"2429":1,"2463":1,"2567":1,"2569":1,"2586":1,"2640":1,"2942":1}}],["smoke",{"2":{"2428":2}}],["smoothly",{"2":{"2379":1}}],["smoothed",{"2":{"2379":1}}],["smoother",{"2":{"74":1,"564":1,"1935":1,"1936":1,"1986":1}}],["smoothing",{"2":{"1986":2}}],["smoothness",{"2":{"1936":1,"2379":1}}],["smooth1",{"2":{"1686":12}}],["smooth2",{"2":{"1686":12}}],["smooth",{"2":{"308":1,"317":1,"415":1,"1686":5,"1939":1,"1986":1,"2085":3,"2632":1}}],["smoll",{"2":{"241":4,"249":1}}],["smolka",{"2":{"222":1}}],["syllabus",{"0":{"2905":1},"2":{"2581":1}}],["syllable",{"2":{"2291":2}}],["syrq",{"2":{"2516":1,"2522":1}}],["sysreq",{"2":{"2516":1,"2522":1}}],["sys",{"2":{"2059":2}}],["syscalls",{"2":{"308":1}}],["sysclk",{"2":{"134":1}}],["sysex",{"2":{"114":1,"133":1,"134":1}}],["systick",{"0":{"44":1},"2":{"44":2}}],["systemctl",{"2":{"1316":2}}],["systemd",{"2":{"1316":1}}],["systems",{"2":{"134":1,"234":1,"651":1,"1351":1,"1472":1,"1919":1,"2325":1,"2330":1,"2417":2,"2475":1,"2746":1,"2750":1,"2765":1,"2772":1,"2889":1,"2931":1}}],["system",{"0":{"140":1,"510":1,"511":1,"1369":1,"2472":1,"2670":1,"2737":1,"2738":1,"2901":1},"1":{"2738":1,"2739":1},"2":{"39":2,"75":1,"76":1,"84":1,"93":1,"114":1,"149":1,"191":1,"231":3,"232":1,"234":1,"249":1,"262":2,"272":1,"283":1,"293":2,"305":2,"314":2,"461":1,"472":1,"493":1,"510":1,"516":1,"538":1,"539":1,"574":1,"648":1,"664":1,"673":1,"686":1,"721":1,"746":1,"752":1,"1292":1,"1316":1,"1351":1,"1369":1,"1630":1,"1632":1,"1844":1,"1846":1,"1853":1,"1934":1,"1935":1,"1964":1,"1988":1,"1990":1,"1993":2,"2016":1,"2057":1,"2080":1,"2082":1,"2092":1,"2219":1,"2260":1,"2267":1,"2294":1,"2331":2,"2378":1,"2382":1,"2387":1,"2416":1,"2418":2,"2471":1,"2472":1,"2475":1,"2516":2,"2517":7,"2522":8,"2590":2,"2594":1,"2601":1,"2612":1,"2653":1,"2658":1,"2669":1,"2692":1,"2717":1,"2734":1,"2737":1,"2738":1,"2739":3,"2742":1,"2753":1,"2757":1,"2809":1,"2818":1,"2884":1,"2889":1,"2901":1,"2920":1,"2921":1}}],["symb",{"2":{"2785":1}}],["symbol",{"2":{"393":1,"1506":1,"2183":2,"2330":2,"2372":1,"2466":1,"2474":1,"2553":1}}],["symbolic",{"2":{"236":1,"1515":1}}],["symbols",{"0":{"1506":1,"1515":1,"2546":1,"2553":1},"1":{"2554":1,"2555":1},"2":{"191":2,"1510":2,"1516":1,"2329":1,"2418":1,"2521":1,"2546":1}}],["symmetric",{"2":{"1410":2,"2070":1}}],["symmetric70",{"2":{"114":1,"134":1}}],["symlink",{"0":{"510":1},"2":{"510":1,"511":1}}],["symlinks",{"2":{"461":1}}],["sym",{"2":{"94":1,"149":1,"199":1,"236":2,"1410":3,"1413":8,"2330":4,"2854":5}}],["synapse",{"2":{"241":2}}],["synth",{"2":{"1480":2}}],["synthesis",{"2":{"1480":1}}],["synthesis60",{"2":{"222":1}}],["syntaxwarning",{"2":{"249":1}}],["syntax",{"2":{"92":1,"175":1,"191":1,"285":1,"433":1,"1527":1,"2417":1,"2502":1,"2579":1,"2607":1,"2639":1,"2912":2}}],["synchronous",{"2":{"2043":1}}],["synchronizes",{"2":{"2276":1}}],["synchronized",{"2":{"923":1,"1094":1,"1128":1}}],["synchronization",{"0":{"923":1,"1094":1,"1128":1},"2":{"923":1,"1094":1,"1128":1,"2182":1,"2275":1,"2278":1,"2877":1}}],["synchronizing",{"2":{"570":1}}],["synced",{"2":{"1835":1,"2096":1,"2191":1}}],["syncs",{"2":{"570":2}}],["syncing",{"2":{"328":1,"2095":1,"2276":4}}],["sync",{"0":{"1637":1,"2276":1,"2277":1,"2635":1},"1":{"2636":1,"2637":1},"2":{"74":1,"107":1,"112":2,"114":4,"210":1,"222":1,"236":2,"249":2,"285":1,"333":1,"339":1,"565":1,"570":3,"921":12,"923":5,"1092":12,"1094":5,"1126":12,"1128":5,"1171":2,"1420":3,"1472":1,"1637":1,"1835":1,"1987":1,"2095":1,"2096":1,"2189":1,"2191":1,"2275":3,"2276":1,"2277":16,"2632":1,"2637":1,"2880":1}}],["s7",{"2":{"67":4,"72":1}}],["s",{"0":{"626":1,"1320":1,"1715":1,"1717":1,"2159":1,"2161":1,"2638":1,"2934":1},"1":{"627":1,"1716":1,"1718":1,"2162":1,"2639":1,"2640":1,"2641":1,"2935":1,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1,"2941":1},"2":{"36":1,"39":1,"47":1,"69":1,"70":1,"72":1,"82":1,"99":2,"109":1,"114":4,"116":1,"119":2,"125":1,"133":1,"134":1,"149":31,"153":1,"156":1,"158":1,"166":3,"169":1,"175":2,"178":1,"189":1,"191":7,"194":1,"196":5,"213":1,"222":6,"224":1,"243":1,"249":2,"265":1,"266":4,"268":1,"273":1,"276":1,"279":2,"288":3,"308":2,"312":2,"317":1,"320":1,"328":1,"331":1,"340":1,"344":6,"348":1,"353":1,"369":2,"375":1,"379":2,"389":2,"393":1,"399":1,"403":2,"411":1,"420":1,"426":1,"443":1,"445":1,"461":3,"462":1,"473":2,"484":1,"488":1,"489":3,"491":2,"494":3,"495":1,"496":3,"500":2,"510":1,"512":3,"517":1,"529":1,"532":2,"561":2,"568":1,"569":1,"574":2,"585":1,"588":3,"589":3,"591":1,"593":1,"596":1,"604":1,"607":2,"613":1,"622":1,"629":1,"633":2,"634":1,"637":1,"639":2,"646":1,"647":2,"651":1,"656":2,"657":1,"658":1,"659":1,"664":1,"668":1,"669":1,"673":1,"675":1,"683":1,"686":2,"687":2,"698":1,"699":1,"721":1,"726":2,"732":3,"746":1,"748":1,"750":1,"753":1,"754":3,"755":1,"756":1,"757":1,"768":3,"802":1,"803":1,"808":3,"834":3,"866":3,"896":3,"931":3,"965":3,"999":3,"1033":3,"1067":3,"1101":3,"1135":3,"1169":3,"1197":1,"1199":1,"1203":3,"1204":3,"1222":3,"1248":3,"1252":2,"1269":2,"1285":2,"1294":1,"1295":2,"1297":1,"1298":1,"1327":3,"1330":1,"1332":1,"1336":1,"1338":2,"1342":1,"1343":3,"1347":2,"1356":1,"1364":1,"1365":1,"1377":1,"1378":1,"1380":1,"1381":1,"1388":1,"1390":2,"1403":1,"1407":1,"1415":1,"1417":2,"1422":3,"1424":1,"1425":3,"1427":1,"1433":1,"1434":3,"1439":1,"1442":1,"1447":1,"1448":1,"1454":1,"1457":1,"1464":4,"1465":1,"1467":1,"1470":1,"1485":2,"1492":1,"1493":1,"1499":2,"1500":1,"1517":1,"1518":1,"1528":2,"1532":2,"1535":2,"1539":1,"1546":1,"1558":1,"1590":1,"1593":1,"1597":1,"1605":2,"1609":1,"1612":1,"1617":1,"1618":2,"1620":1,"1623":1,"1625":1,"1627":1,"1628":2,"1634":2,"1656":1,"1661":1,"1665":1,"1667":1,"1685":1,"1699":4,"1716":1,"1718":1,"1738":2,"1741":1,"1762":1,"1765":1,"1774":1,"1777":1,"1786":1,"1788":1,"1798":5,"1801":1,"1844":1,"1846":3,"1851":1,"1853":1,"1928":1,"1932":1,"1935":1,"1936":2,"1937":1,"1938":1,"1939":3,"1952":1,"1954":1,"1962":2,"1977":1,"1984":1,"1986":1,"1992":1,"1993":1,"2048":2,"2057":3,"2069":1,"2078":1,"2079":6,"2080":1,"2082":3,"2085":3,"2086":2,"2090":1,"2092":1,"2160":1,"2162":1,"2188":1,"2198":8,"2201":4,"2219":1,"2253":1,"2255":1,"2258":1,"2261":2,"2265":1,"2269":2,"2271":3,"2273":3,"2276":1,"2277":2,"2278":2,"2281":1,"2288":3,"2290":1,"2296":2,"2300":1,"2301":3,"2302":1,"2305":1,"2308":4,"2309":1,"2310":4,"2312":1,"2319":1,"2326":1,"2330":2,"2331":1,"2371":1,"2375":4,"2384":3,"2386":1,"2387":2,"2389":3,"2396":1,"2397":1,"2399":1,"2403":3,"2404":1,"2412":1,"2414":1,"2417":3,"2418":3,"2419":2,"2425":8,"2428":2,"2429":4,"2430":1,"2431":1,"2434":4,"2436":4,"2439":1,"2443":1,"2450":1,"2451":1,"2452":2,"2458":1,"2459":1,"2464":2,"2468":1,"2482":1,"2483":1,"2485":1,"2487":1,"2489":1,"2492":1,"2501":2,"2502":1,"2506":2,"2510":3,"2522":3,"2523":1,"2535":1,"2541":1,"2557":1,"2561":1,"2563":4,"2567":2,"2568":3,"2569":1,"2570":1,"2579":1,"2583":1,"2584":1,"2586":1,"2590":1,"2599":1,"2601":2,"2612":1,"2616":2,"2617":2,"2619":1,"2626":1,"2628":1,"2629":1,"2632":1,"2633":1,"2634":3,"2635":2,"2637":5,"2639":2,"2640":3,"2643":2,"2652":1,"2667":2,"2669":3,"2670":2,"2671":2,"2674":3,"2684":1,"2685":2,"2686":2,"2687":2,"2694":1,"2702":2,"2709":2,"2710":2,"2713":1,"2718":1,"2720":1,"2721":1,"2726":1,"2728":6,"2729":1,"2730":1,"2731":1,"2735":4,"2736":2,"2737":1,"2741":3,"2752":1,"2754":1,"2755":3,"2756":3,"2757":4,"2758":1,"2764":2,"2765":1,"2766":1,"2767":1,"2770":1,"2771":1,"2772":1,"2775":2,"2776":2,"2777":1,"2779":1,"2786":1,"2791":2,"2794":3,"2795":8,"2796":2,"2800":1,"2812":1,"2819":1,"2837":1,"2852":2,"2856":2,"2858":1,"2865":2,"2876":2,"2880":1,"2884":1,"2888":1,"2891":1,"2894":2,"2902":1,"2912":5,"2913":1,"2920":2,"2926":1,"2927":1,"2929":1,"2931":1,"2932":2,"2936":1,"2937":4,"2938":2,"2940":1,"2942":3,"2943":1,"2944":1,"2945":6,"2948":1,"2949":2,"2950":2}}],["schottky",{"2":{"2280":2}}],["school",{"2":{"2265":1,"2726":1}}],["scheikled",{"2":{"210":1}}],["schemes",{"2":{"695":1,"2846":2}}],["scheme",{"2":{"166":1,"2468":1,"2767":3,"2776":3}}],["schemas",{"2":{"175":1,"308":1,"344":1,"666":1,"668":1,"2851":1}}],["schematics",{"2":{"1371":1}}],["schematic",{"0":{"1558":1,"2468":1},"2":{"93":1,"1313":1,"1367":1,"1371":2}}],["schema",{"0":{"668":1,"2792":1},"2":{"76":2,"149":1,"191":3,"199":1,"210":1,"249":1,"266":2,"277":1,"308":1,"344":1,"666":1,"2728":1,"2851":1}}],["scheduled",{"2":{"401":1,"657":1,"660":1,"2764":1}}],["schedule",{"0":{"88":1,"104":1,"127":1,"185":1},"2":{"168":1}}],["score",{"2":{"2378":1,"2381":1}}],["scope",{"2":{"2016":1,"2249":1,"2735":1,"2937":1,"2938":1}}],["scottoalp",{"2":{"266":1}}],["scottostarter",{"2":{"205":2}}],["scottocmd",{"2":{"205":2}}],["scotto9",{"2":{"205":2}}],["scottokeebs",{"2":{"205":5}}],["scotto36",{"2":{"205":2}}],["scotto40",{"2":{"199":1,"205":2}}],["sck",{"2":{"1247":2,"1248":4,"1299":4,"2679":1,"2702":1,"2756":2}}],["scenario",{"2":{"312":1,"1329":1,"1331":1,"2300":1,"2466":1,"2559":1,"2569":1}}],["scenarios",{"2":{"263":1,"723":1,"2466":1,"2568":1,"2915":1}}],["scenes",{"2":{"198":1,"201":1,"212":1,"224":1,"238":1,"251":1,"2310":1}}],["science",{"2":{"199":1}}],["sclr",{"2":{"2253":1}}],["sclk",{"2":{"1966":2,"1978":2,"1981":2,"1985":3,"2483":1,"2485":1,"2487":2,"2489":1,"2491":2,"2493":2,"2495":1}}],["scll",{"2":{"770":1}}],["sclh",{"2":{"770":1}}],["scldel",{"2":{"770":1}}],["scln",{"2":{"191":1,"379":1,"589":2,"1593":1,"1774":3,"2316":1,"2512":1,"2522":1,"2563":1,"2923":1,"2924":1}}],["scl",{"2":{"191":1,"561":1,"767":3,"768":4,"829":1,"858":1,"890":1,"922":8,"957":8,"991":1,"1025":1,"1059":1,"1093":8,"1127":8,"1161":8,"1217":1,"1682":1,"2267":1,"2702":1}}],["sculpt",{"2":{"149":1,"160":1}}],["scythe",{"2":{"143":2}}],["scylla",{"2":{"114":1,"311":8,"317":1}}],["scary",{"2":{"2944":1}}],["scarlet",{"2":{"222":1}}],["scarletbandana",{"2":{"143":2}}],["scattered",{"2":{"2942":1}}],["scaling",{"0":{"879":1,"881":1,"885":1,"1082":1,"1084":1,"1088":1,"1116":1,"1118":1,"1122":1,"1150":1,"1152":1,"1156":1,"1184":1,"1186":1,"1190":1},"1":{"880":1,"882":1,"886":1,"1083":1,"1085":1,"1089":1,"1117":1,"1119":1,"1123":1,"1151":1,"1153":1,"1157":1,"1185":1,"1187":1,"1191":1},"2":{"191":1,"249":2,"726":2,"879":2,"880":3,"881":2,"882":1,"885":1,"1082":2,"1083":3,"1084":2,"1085":1,"1088":1,"1116":2,"1117":3,"1118":2,"1119":1,"1122":1,"1150":2,"1151":3,"1152":2,"1153":1,"1156":1,"1184":2,"1185":3,"1186":2,"1187":1,"1190":1,"1492":1,"1974":1,"2046":3}}],["scaled",{"2":{"1742":2,"2857":1,"2871":1,"2877":1,"2878":1}}],["scale8",{"2":{"308":1}}],["scale",{"2":{"175":1,"191":1,"199":1,"1490":5,"1492":1,"1980":1,"2086":1,"2729":1}}],["scancode",{"0":{"2840":1},"2":{"2470":2,"2471":1}}],["scancodes",{"2":{"1357":1,"2470":2,"2563":1,"2846":1}}],["scans",{"2":{"1410":2,"1427":1}}],["scanned",{"2":{"701":1,"1329":1,"1331":1,"2466":10}}],["scanning",{"0":{"643":1,"2937":1},"1":{"644":1,"645":1,"2938":1,"2939":1,"2940":1,"2941":1},"2":{"39":1,"134":1,"266":1,"574":1,"622":1,"624":2,"625":3,"643":1,"645":1,"719":1,"720":1,"1410":4,"1681":1,"2269":1,"2418":1,"2466":1,"2709":1,"2764":1,"2794":1,"2872":2,"2936":1,"2937":4,"2938":2,"2940":2}}],["scanf",{"2":{"396":1}}],["scan",{"0":{"644":1,"645":1,"1331":1},"2":{"21":1,"65":1,"93":2,"112":1,"113":1,"114":1,"149":2,"191":2,"196":1,"199":2,"202":1,"277":1,"333":1,"624":1,"625":5,"645":3,"646":2,"647":1,"687":1,"1331":7,"1410":2,"1413":1,"1414":1,"1462":1,"1591":5,"1681":2,"1949":1,"1980":1,"2275":1,"2276":1,"2288":1,"2298":1,"2390":1,"2397":1,"2456":1,"2469":1,"2563":1,"2939":1,"2940":3}}],["sc",{"2":{"55":11,"2256":7,"2257":7,"2259":1,"2260":1,"2550":7}}],["scratch",{"2":{"2417":1,"2658":1}}],["scr",{"2":{"1945":1,"2284":1}}],["scrutiny",{"2":{"414":1}}],["scrl",{"2":{"379":1,"589":2,"1354":1,"2513":1,"2522":1,"2564":1}}],["scrollwheel",{"2":{"2046":1}}],["scrolls",{"2":{"1949":1}}],["scroll",{"0":{"1993":2,"1994":1,"2048":1,"2050":1},"2":{"172":1,"175":1,"190":1,"191":3,"199":1,"210":1,"236":2,"308":1,"570":1,"1693":1,"1835":1,"1836":2,"1838":1,"1930":1,"1934":5,"1935":4,"1937":13,"1938":1,"1945":1,"1948":2,"1949":3,"1954":7,"1971":3,"1974":1,"1976":5,"1977":3,"1985":3,"1986":11,"1992":1,"1993":4,"1994":25,"1997":1,"2046":3,"2048":15,"2050":1,"2284":1,"2287":1,"2513":4,"2522":4,"2867":2,"2936":1}}],["scrolling",{"0":{"1986":1},"2":{"38":1,"190":1,"308":1,"1493":1,"1849":6,"1934":2,"1935":4,"1936":1,"1937":1,"1943":4,"1948":1,"1954":17,"1971":1,"1986":8,"1990":2,"1992":1,"1993":5,"1994":18,"1995":1,"1996":8,"1997":1,"2046":1,"2048":2,"2085":9}}],["screw",{"2":{"114":1}}],["screens",{"2":{"651":1,"1954":1,"2439":1}}],["screen",{"0":{"1776":1},"2":{"24":1,"153":1,"570":1,"1493":1,"1642":1,"1694":1,"1776":1,"1939":1,"1946":1,"1947":1,"1949":3,"1953":2,"1954":12,"1955":1,"2276":2,"2285":1,"2286":1,"2288":1,"2290":11,"2516":2,"2522":2,"2587":1,"2659":1,"2662":1,"2757":11}}],["script",{"2":{"94":1,"114":2,"134":1,"149":3,"175":1,"199":1,"277":1,"285":1,"312":1,"397":2,"426":1,"487":1,"489":2,"510":1,"511":1,"685":1,"1318":1,"2384":1,"2626":1}}],["scripts",{"2":{"43":1,"222":1,"312":1,"397":2}}],["stsw",{"2":{"2506":1}}],["stk500v1",{"2":{"2486":1}}],["stk500",{"2":{"2486":1}}],["st4",{"2":{"2301":1}}],["st3",{"2":{"2301":1}}],["st2",{"2":{"2301":1}}],["st1",{"2":{"2301":1}}],["st110r2",{"2":{"249":1}}],["stn",{"2":{"2300":5,"2301":113}}],["stmc",{"2":{"1395":2}}],["stm",{"2":{"1395":1}}],["stmicroelectronics",{"0":{"548":1},"2":{"393":1}}],["stm32cubemx",{"2":{"1300":1}}],["stm32s",{"2":{"721":1}}],["stm32h733",{"2":{"548":1}}],["stm32h723",{"2":{"210":1,"548":1}}],["stm32g0x1",{"2":{"308":1}}],["stm32g431",{"2":{"77":1,"548":1}}],["stm32g4xx",{"2":{"74":1,"249":1}}],["stm32g474",{"2":{"39":1,"77":1,"548":1}}],["stm32g4",{"2":{"39":1}}],["stm32duino",{"0":{"2401":1,"2505":1},"1":{"2506":1,"2507":1,"2508":1},"2":{"114":1,"548":1,"689":1,"2399":1,"2401":2,"2505":1}}],["stm32f2",{"2":{"1483":1}}],["stm32f2xx",{"2":{"769":1}}],["stm32f7xx",{"2":{"770":1}}],["stm32f070",{"2":{"757":1}}],["stm32f072xb",{"2":{"746":1}}],["stm32f072",{"0":{"1212":1},"2":{"40":1,"175":1,"757":1}}],["stm32f042",{"2":{"757":1,"2399":1}}],["stm32f0",{"2":{"699":1}}],["stm32f0x2",{"2":{"548":1}}],["stm32f0xx",{"2":{"199":1,"695":1,"753":1,"757":1,"770":1}}],["stm32f1x",{"2":{"2508":2}}],["stm32f1xx",{"2":{"93":1,"695":2,"746":1,"769":1,"1477":1,"1481":1,"1483":1}}],["stm32f103c8",{"2":{"716":1,"721":2,"723":1}}],["stm32f103c6",{"2":{"191":1}}],["stm32f103x",{"2":{"695":1}}],["stm32f103",{"0":{"1213":1},"2":{"199":1,"548":1,"554":1,"1198":1,"1200":1,"1201":1,"1213":1,"2399":1,"2401":1,"2482":1,"2505":1,"2508":1}}],["stm32f3discovery",{"2":{"397":2}}],["stm32f303xc",{"2":{"2424":1,"2688":1,"2709":2}}],["stm32f303xe",{"2":{"160":1}}],["stm32f303",{"0":{"1211":1},"2":{"444":1,"548":1,"554":1,"768":1,"1200":1,"1248":1,"1269":1,"1556":1,"1681":1,"2674":2,"2691":1}}],["stm32f303cct6",{"2":{"723":1,"2689":1}}],["stm32f303cc",{"2":{"393":1}}],["stm32f3",{"2":{"210":1,"393":2,"397":1,"699":1}}],["stm32f3xx",{"2":{"93":1,"695":1,"746":1,"770":1}}],["stm32f4x1",{"0":{"2675":1},"1":{"2676":1,"2677":1,"2678":1,"2679":1,"2680":1,"2681":1,"2682":1,"2683":1},"2":{"753":1,"757":1}}],["stm32f4xx",{"2":{"93":1,"695":2,"769":1}}],["stm32f411",{"2":{"433":1,"548":1,"757":1}}],["stm32f4",{"2":{"285":1}}],["stm32f407",{"2":{"548":1}}],["stm32f407x",{"2":{"114":1}}],["stm32f405vg",{"2":{"723":1}}],["stm32f405",{"2":{"548":1}}],["stm32f405rg",{"2":{"277":1}}],["stm32f401",{"2":{"548":1,"757":1}}],["stm32f446",{"2":{"93":1,"328":1,"548":1}}],["stm32l1xx",{"2":{"746":1,"769":1}}],["stm32l073rz",{"2":{"2728":1}}],["stm32l072",{"2":{"2711":1}}],["stm32l0xx",{"2":{"746":1,"769":1}}],["stm32l0",{"2":{"294":1,"748":1}}],["stm32l082kz",{"2":{"2728":1}}],["stm32l082",{"2":{"39":1,"2711":1}}],["stm32l443",{"2":{"548":1}}],["stm32l442",{"2":{"145":1,"149":1,"548":1}}],["stm32l422",{"2":{"548":1}}],["stm32l422xb",{"2":{"114":1}}],["stm32l412",{"2":{"548":1}}],["stm32l412xb",{"2":{"114":1}}],["stm32l4xx",{"2":{"249":1,"770":1}}],["stm32l432",{"2":{"145":1,"149":1,"236":1,"548":1}}],["stm32l433",{"2":{"93":1,"548":1}}],["stm32l4+",{"2":{"39":1}}],["stm32",{"0":{"548":1,"695":1,"748":1,"1210":1,"2399":1,"2709":1,"2710":1,"2711":1,"2712":1},"1":{"1211":1,"1212":1,"1213":1,"2400":1},"2":{"39":4,"40":2,"65":1,"114":1,"131":1,"133":1,"134":5,"191":3,"210":1,"222":1,"277":1,"285":1,"291":2,"294":1,"308":1,"689":2,"716":1,"717":10,"718":6,"721":2,"748":1,"762":1,"768":7,"772":4,"1198":2,"1200":1,"1201":2,"1203":4,"1204":4,"1248":3,"1269":3,"1299":3,"1300":1,"1303":5,"1392":1,"1477":2,"1483":1,"1556":3,"1557":3,"1740":1,"1953":1,"2399":3,"2400":1,"2402":1,"2482":1,"2505":1,"2508":1,"2612":1,"2685":8,"2691":1,"2707":1,"2709":8,"2710":2,"2711":2,"2853":1,"2864":1}}],["stylus",{"2":{"1639":1,"1974":1}}],["styling",{"0":{"349":1},"1":{"350":1,"351":1,"352":1,"353":1,"354":1,"355":1,"356":1,"357":1,"358":1,"359":1,"360":1,"361":1},"2":{"243":1,"331":1,"341":1}}],["styled",{"0":{"678":1},"1":{"679":1,"680":1},"2":{"678":1}}],["styles",{"2":{"527":1,"608":1,"613":1,"1311":1,"2942":1}}],["style=file",{"2":{"513":1}}],["style",{"0":{"243":1},"2":{"133":1,"134":1,"191":1,"199":1,"243":1,"265":1,"283":2,"331":1,"341":2,"491":1,"492":6,"494":2,"495":2,"497":2,"498":2,"512":9,"514":1,"515":1,"526":1,"529":2,"608":1,"613":2,"674":1,"1632":1,"1977":1,"2320":1,"2499":1,"2667":2}}],["st7789",{"2":{"2753":2,"2756":8}}],["st7735",{"2":{"191":1,"236":1,"2753":2,"2756":8}}],["st7565p",{"2":{"2283":1}}],["st7565r",{"2":{"2283":1}}],["st7565",{"0":{"2282":1},"1":{"2283":1,"2284":1,"2285":1,"2286":1,"2287":1,"2288":1,"2289":1,"2290":1},"2":{"114":5,"175":1,"570":2,"2276":2,"2283":1,"2284":11,"2285":1,"2286":4,"2287":3,"2288":13,"2289":11,"2290":39,"2880":2}}],["stdlayout",{"2":{"420":1}}],["stderr",{"2":{"382":1,"2947":1}}],["stdout",{"2":{"382":1}}],["std",{"2":{"339":1,"769":1}}],["stdint",{"2":{"191":1}}],["stdbool",{"2":{"73":1}}],["stilgar",{"2":{"2425":1}}],["still",{"2":{"49":1,"124":2,"125":1,"156":1,"169":1,"175":2,"185":1,"214":1,"228":3,"232":1,"241":1,"253":1,"270":1,"273":1,"281":1,"340":1,"370":1,"423":1,"494":1,"513":1,"526":1,"569":1,"749":1,"757":1,"1320":1,"1362":1,"1366":1,"1381":2,"1472":1,"1490":1,"1491":1,"1499":1,"1503":1,"1533":1,"1663":1,"1670":1,"1690":3,"1770":1,"1785":2,"1802":1,"2059":1,"2259":1,"2300":1,"2309":1,"2317":3,"2428":2,"2466":1,"2590":3,"2617":1,"2637":1,"2736":1,"2757":1,"2850":1,"2884":1,"2889":1,"2895":1,"2904":1,"2909":1,"2912":2,"2914":1,"2920":1,"2931":1}}],["sticky",{"2":{"2435":1,"2650":1,"2834":1}}],["stick",{"2":{"1433":1,"1488":1,"1968":1}}],["stickandgum",{"2":{"114":1}}],["steve",{"2":{"2255":1,"2942":1}}],["steelseries",{"2":{"285":1,"328":1}}],["stef9998",{"2":{"253":2}}],["steadily",{"2":{"251":1}}],["steal",{"2":{"143":2}}],["stello65",{"2":{"222":1}}],["stella",{"2":{"143":2}}],["stemcell",{"0":{"1395":1,"1400":1},"2":{"191":1,"311":6,"317":1,"1389":2,"1391":3,"1395":3,"1399":3,"1400":1,"2895":1}}],["stenographers",{"2":{"2291":1}}],["stenography",{"0":{"2291":1,"2299":1,"2881":1},"1":{"2292":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2299":1,"2300":1,"2301":1},"2":{"2291":2,"2294":2,"2296":1,"2297":2,"2298":2,"2299":1,"2881":3,"2908":1}}],["stenotype",{"2":{"2079":1,"2298":1}}],["stenothe",{"2":{"197":1}}],["steno",{"0":{"2292":1,"2294":1,"2298":1},"1":{"2295":1,"2296":1,"2297":1},"2":{"114":1,"191":4,"199":1,"231":3,"236":1,"249":1,"2210":1,"2291":2,"2292":3,"2293":1,"2294":4,"2295":4,"2296":2,"2297":10,"2298":4,"2299":1,"2300":13,"2301":2,"2881":1,"2941":1}}],["stepped",{"2":{"1986":1}}],["stepping",{"2":{"194":1,"1493":2}}],["steps",{"0":{"602":1},"2":{"111":3,"175":1,"210":2,"222":1,"231":1,"255":1,"595":1,"633":1,"1195":1,"1198":1,"1201":1,"1203":1,"1204":1,"1388":1,"1414":1,"1493":1,"1852":1,"1935":1,"1937":8,"1944":1,"1959":1,"2091":1,"2185":2,"2187":6,"2210":1,"2250":2,"2251":1,"2252":2,"2253":4,"2254":6,"2284":1,"2583":1,"2607":1,"2608":1,"2617":1,"2637":1,"2658":1,"2871":3,"2877":3,"2878":5,"2901":1,"2945":1}}],["step",{"0":{"595":2,"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"1563":1,"1873":1,"1874":1,"1875":1,"1876":1,"1899":1,"1900":1,"1901":1,"1902":1,"2115":1,"2116":1,"2117":1,"2118":1,"2153":1,"2154":1,"2155":1,"2156":1,"2250":1,"2338":1,"2339":1},"1":{"596":2,"597":2,"598":2,"599":2,"600":2,"601":2,"602":2},"2":{"39":1,"63":1,"210":2,"354":2,"379":1,"565":6,"629":1,"665":1,"1198":2,"1201":2,"1522":2,"1543":2,"1681":3,"1850":2,"1852":2,"1934":2,"1935":2,"1936":2,"1940":2,"2086":1,"2088":2,"2091":4,"2182":3,"2185":2,"2186":2,"2199":4,"2249":1,"2251":1,"2253":4,"2254":16,"2319":1,"2387":1,"2423":1,"2436":2,"2454":6,"2496":1,"2504":1,"2527":2,"2564":1,"2584":1,"2586":1,"2589":2,"2600":1,"2606":1,"2607":1,"2609":1,"2637":1,"2641":1,"2658":2,"2709":1,"2889":1,"2941":1}}],["story",{"2":{"512":1,"514":1}}],["stores",{"2":{"753":1,"1381":1,"1410":1,"1538":1,"2940":1}}],["store",{"2":{"339":1,"495":1,"578":2,"607":1,"647":2,"754":1,"755":1,"756":1,"1381":1,"1416":1,"1417":1,"1525":1,"1661":1,"1962":9,"1994":1,"2259":1,"2590":1,"2594":2,"2595":1,"2598":1,"2705":1,"2950":1}}],["stored",{"0":{"2593":1},"2":{"228":2,"490":1,"569":1,"1348":1,"1378":1,"1415":1,"1419":2,"1526":1,"1533":1,"1538":1,"1625":1,"1702":1,"1926":1,"1953":1,"1962":1,"2297":1,"2329":1,"2557":1,"2590":1,"2598":1,"2614":1,"2754":1}}],["storing",{"2":{"224":1,"1525":1,"1538":1,"2590":1}}],["storage",{"0":{"1853":1,"2092":1,"2789":1},"2":{"93":1,"131":1,"366":1,"751":1,"753":1,"754":2,"755":1,"756":3,"757":1,"2273":1,"2384":1,"2667":1,"2700":1,"2742":1,"2754":1,"2789":1,"2864":1}}],["stone",{"2":{"194":1}}],["stock",{"2":{"114":1,"373":1,"568":1,"569":1,"2273":1,"2292":1,"2727":1,"2895":1}}],["stopped",{"2":{"651":2,"1664":1,"2757":1}}],["stopping",{"2":{"222":1,"648":1,"714":1,"1427":1,"1686":1}}],["stops",{"2":{"588":1,"1376":1,"1593":1,"1935":1,"1936":2,"1939":2,"1954":1,"2201":8,"2379":1,"2559":1,"2757":1,"2762":1}}],["stop",{"0":{"1265":1,"2632":1},"2":{"74":1,"134":1,"160":1,"191":1,"210":1,"277":1,"720":1,"1490":2,"1535":1,"1600":1,"1661":2,"1925":1,"1939":1,"2043":1,"2191":1,"2198":2,"2253":1,"2254":1,"2278":1,"2298":1,"2435":1,"2516":2,"2517":4,"2520":1,"2522":6,"2530":1,"2538":1,"2539":1,"2757":6}}],["sturdy",{"2":{"2428":1,"2429":1}}],["stumbled",{"2":{"617":1}}],["stuttered",{"2":{"294":1}}],["stub",{"2":{"236":1}}],["stubs",{"2":{"114":1,"2943":1}}],["stuck",{"0":{"1353":1},"2":{"210":1,"222":1,"263":1,"294":1,"1353":1,"1491":1,"2008":1}}],["studiokestra",{"2":{"226":2}}],["studios",{"2":{"222":1}}],["studio",{"0":{"2664":1,"2674":1},"2":{"67":3,"132":1,"218":4,"222":16,"249":1,"291":2,"294":2,"2567":1,"2664":1,"2667":1,"2674":1}}],["stuff",{"2":{"40":2,"114":1,"231":2,"634":1,"637":1,"1463":2,"1464":2,"1605":1,"2417":1,"2561":1,"2889":1}}],["stlink",{"2":{"39":1,"2400":1,"2506":3,"2508":3}}],["st",{"2":{"39":1,"266":1,"389":2,"1490":2,"1556":1,"2400":6,"2505":1,"2506":3,"2507":2,"2508":7,"2728":1,"2735":1,"2736":3,"2741":2,"2742":1,"2744":1,"2745":1,"2750":1,"2802":1}}],["stapelberg",{"2":{"2663":2}}],["staff",{"2":{"2566":1}}],["staying",{"2":{"2431":1}}],["stay",{"2":{"279":1,"1789":2,"2499":1}}],["stays",{"2":{"199":1,"1417":1,"1498":1,"1681":1,"1791":1}}],["staging",{"2":{"2640":2}}],["staggering",{"2":{"1471":1}}],["staggered",{"2":{"222":1,"2429":1}}],["stage2",{"2":{"191":1}}],["stage",{"0":{"2705":1},"2":{"119":1,"156":1,"2674":1,"2684":1,"2687":1,"2705":1}}],["stabilisers",{"2":{"2421":1,"2422":1}}],["stability",{"0":{"1959":1},"2":{"1670":1,"1960":1}}],["stabilizes",{"2":{"1959":1}}],["stabilize",{"2":{"175":1,"191":1}}],["stable",{"2":{"222":1,"294":2,"412":1,"1959":2,"1960":1}}],["stacks",{"0":{"2744":1},"2":{"2736":1,"2739":1,"2746":1,"2750":1}}],["stackexchange",{"2":{"1558":1}}],["stacked",{"2":{"210":1}}],["stacktrace",{"2":{"525":1}}],["stack",{"0":{"2736":1},"2":{"199":2,"210":1,"364":2,"546":1,"563":1,"1421":1,"1422":2,"1427":1,"2004":1,"2008":2,"2012":2,"2015":3,"2298":1,"2320":1,"2557":1,"2559":1,"2657":1,"2736":2,"2741":1}}],["stale",{"2":{"175":1}}],["stands",{"2":{"2694":1}}],["stand",{"2":{"1326":1}}],["standpoint",{"2":{"628":1,"1343":2}}],["standing",{"2":{"154":1}}],["standalone",{"2":{"703":1,"725":1,"765":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1}}],["standaside",{"2":{"143":2,"149":1}}],["standards",{"2":{"244":1,"266":1,"308":1,"1192":1,"1343":1,"1433":1,"2569":1,"2728":1,"2902":1}}],["standardisation",{"2":{"238":1}}],["standardised",{"2":{"198":1,"2753":1}}],["standardise",{"2":{"149":1,"166":1}}],["standardizing",{"2":{"610":1}}],["standardization",{"2":{"236":1,"266":2}}],["standardized",{"2":{"134":1}}],["standard",{"2":{"125":2,"134":1,"169":2,"175":1,"178":1,"191":3,"199":1,"208":2,"266":1,"308":1,"320":1,"490":1,"513":1,"516":1,"538":1,"567":1,"574":2,"762":1,"1248":1,"1346":1,"1490":3,"1632":1,"1765":1,"1784":1,"1785":1,"1786":1,"1841":2,"1974":1,"1999":1,"2291":1,"2293":2,"2294":2,"2296":1,"2325":1,"2417":1,"2418":2,"2486":1,"2553":1,"2626":1,"2673":1,"2706":1,"2728":4,"2751":1,"2757":1,"2761":1,"2799":1,"2804":1,"2837":2,"2838":1,"2889":1,"2913":1,"2931":1}}],["star",{"2":{"689":1,"1804":2,"2392":1,"2499":1}}],["starlight",{"2":{"236":1,"277":1,"294":1,"308":1,"317":1,"2085":12}}],["staryu",{"2":{"102":2}}],["started",{"0":{"1767":1,"2478":1},"2":{"583":1,"610":1,"633":1,"634":1,"637":1,"684":2,"1312":1,"1335":1,"1336":1,"1343":1,"1425":1,"1614":1,"1615":1,"1954":1,"2481":1,"2586":1,"2599":1,"2619":1,"2655":1,"2659":1,"2665":1,"2714":1,"2757":1,"2795":1,"2935":1}}],["start=none",{"2":{"524":1}}],["starting",{"0":{"2422":1},"2":{"119":1,"512":1,"646":1,"714":1,"1484":1,"1493":1,"1525":1,"1538":1,"1662":1,"1802":1,"1949":1,"2189":2,"2272":1,"2288":1,"2317":1,"2428":1,"2447":1,"2508":2,"2655":1,"2665":1,"2714":1,"2757":1,"2767":1,"2774":1,"2882":1,"2890":1,"2913":1,"2923":1}}],["start",{"0":{"1251":1,"1336":1,"1807":1,"1812":1,"2344":1,"2359":1,"2382":1},"1":{"1252":1,"1253":1,"2383":1,"2384":1,"2385":1,"2386":1},"2":{"40":1,"75":1,"132":1,"175":3,"196":1,"198":1,"222":1,"277":1,"353":1,"376":1,"412":5,"448":1,"449":1,"450":1,"489":1,"512":2,"521":1,"524":7,"544":1,"564":1,"576":1,"612":1,"668":1,"675":1,"684":1,"688":1,"1198":1,"1201":1,"1247":1,"1248":2,"1251":1,"1265":1,"1327":1,"1336":1,"1340":1,"1431":3,"1464":1,"1490":1,"1492":1,"1503":1,"1539":1,"1661":5,"1662":1,"1664":2,"1713":1,"1798":2,"1802":1,"1804":4,"1949":1,"1954":7,"1968":1,"2009":1,"2057":1,"2185":2,"2198":4,"2249":1,"2251":1,"2253":1,"2254":1,"2288":1,"2290":5,"2295":1,"2326":1,"2330":1,"2384":1,"2387":1,"2422":1,"2427":1,"2432":1,"2466":1,"2530":4,"2567":1,"2582":1,"2585":1,"2589":1,"2614":1,"2622":1,"2629":1,"2634":2,"2638":1,"2651":1,"2657":1,"2669":1,"2673":2,"2674":1,"2685":1,"2700":1,"2767":1,"2774":1,"2775":1,"2776":1,"2791":1,"2907":1,"2931":1,"2935":1,"2950":1}}],["startup",{"0":{"2935":1},"2":{"39":1,"65":1,"112":1,"114":1,"134":1,"167":8,"175":3,"266":1,"574":2,"633":2,"634":1,"1485":3,"1486":4,"1551":1,"1687":1,"1957":1,"1961":1,"2278":1,"2331":1,"2659":1,"2860":1,"2882":2}}],["starts",{"2":{"39":1,"369":1,"460":1,"574":1,"1372":1,"1485":1,"1486":1,"1498":1,"1939":1,"1954":2,"2001":1,"2273":1,"2755":1,"2935":1}}],["stat",{"2":{"1985":1}}],["station",{"2":{"2280":2,"2421":1}}],["stating",{"2":{"414":1,"2567":1}}],["statically",{"2":{"2734":1,"2756":1}}],["static",{"2":{"40":1,"202":1,"328":1,"354":1,"461":1,"579":1,"647":2,"1381":1,"1420":2,"1527":1,"1743":3,"1839":1,"1849":2,"1850":5,"1946":1,"1947":1,"1948":1,"1996":1,"2079":2,"2085":5,"2088":5,"2181":2,"2182":1,"2183":3,"2184":2,"2186":1,"2187":1,"2277":1,"2285":1,"2286":1,"2287":1,"2317":1,"2318":1,"2319":1,"2544":2,"2653":1,"2734":1,"2735":1,"2741":1,"2750":1,"2756":1,"2757":11,"2767":1,"2768":1,"2773":1,"2774":1,"2776":1,"2778":1,"2877":1,"2894":1,"2949":1}}],["statuses",{"2":{"381":1}}],["status",{"0":{"381":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"794":1,"797":1,"1254":1,"1257":1,"1259":1,"1262":1,"1536":1,"2192":1,"2558":1},"1":{"774":1,"775":1,"777":1,"778":1,"780":1,"781":1,"783":1,"784":1,"786":1,"787":1,"789":1,"790":1,"792":1,"793":1,"795":1,"796":1,"798":1,"799":1,"1255":1,"1256":1,"1258":1,"1260":1,"1261":1,"1263":1,"1264":1},"2":{"92":1,"149":1,"175":2,"199":2,"366":1,"367":1,"378":1,"381":2,"579":1,"580":1,"581":3,"582":2,"583":2,"584":2,"645":1,"775":3,"778":3,"781":3,"784":3,"787":3,"790":3,"793":3,"796":3,"799":3,"1256":2,"1258":1,"1261":3,"1264":3,"1329":1,"1381":3,"1413":2,"1417":2,"1431":1,"1471":1,"1526":1,"1529":1,"1530":1,"1621":2,"1625":2,"1678":4,"1945":2,"1948":1,"1985":1,"1988":9,"2009":1,"2015":1,"2096":1,"2188":1,"2204":1,"2276":6,"2284":2,"2287":1,"2295":1,"2520":1,"2526":1,"2538":1,"2547":1,"2558":1,"2651":1,"2692":1,"2700":1,"2880":2,"2888":1,"2936":2}}],["stats",{"2":{"40":1}}],["stateless",{"2":{"2869":1}}],["state|default",{"2":{"2095":1,"2096":1}}],["state++",{"2":{"1850":1,"2088":1}}],["stated",{"2":{"1629":1,"2713":1}}],["states",{"2":{"247":1,"646":1,"1362":1,"1409":1,"1656":1,"1747":1,"1990":1,"2034":1,"2036":1,"2318":2,"2319":1,"2634":1}}],["statement",{"0":{"231":1},"2":{"194":1,"236":1,"317":1,"333":1,"512":2,"518":1,"591":1,"1438":1,"1446":1,"1533":1,"1622":1,"2309":1,"2464":1}}],["statements",{"0":{"518":1},"2":{"160":1,"231":1,"516":1,"518":1,"520":1,"525":1,"528":1,"532":1,"535":1,"666":1,"2950":1}}],["state",{"0":{"47":1,"323":1,"1378":1,"1430":1,"1432":1,"1545":1,"1601":1,"1609":1,"1794":1,"1840":1,"1842":1,"1906":1,"2166":1,"2784":2,"2940":1},"1":{"1379":1,"1380":1,"1381":1,"1843":1,"1907":1,"2167":1,"2785":2},"2":{"21":1,"39":1,"40":1,"47":2,"62":1,"63":1,"74":1,"93":1,"105":10,"112":1,"114":2,"149":3,"163":1,"181":2,"191":2,"199":2,"222":1,"247":1,"285":3,"298":1,"323":9,"325":7,"328":2,"512":1,"561":3,"565":1,"570":7,"607":1,"625":2,"639":4,"656":1,"714":1,"716":7,"717":4,"718":1,"722":1,"745":1,"749":1,"1205":1,"1292":1,"1356":1,"1362":7,"1378":9,"1381":9,"1409":1,"1410":1,"1413":7,"1417":10,"1425":1,"1428":37,"1430":6,"1431":7,"1432":9,"1451":1,"1470":18,"1485":1,"1486":2,"1495":1,"1496":1,"1498":2,"1499":1,"1503":3,"1518":1,"1521":1,"1539":3,"1544":3,"1545":2,"1558":1,"1570":1,"1575":1,"1597":1,"1601":1,"1609":1,"1613":1,"1620":1,"1621":2,"1638":6,"1642":4,"1644":1,"1645":3,"1657":7,"1662":2,"1681":1,"1746":1,"1747":1,"1751":1,"1753":1,"1781":1,"1793":1,"1794":2,"1795":1,"1835":7,"1836":2,"1837":4,"1838":7,"1839":8,"1840":5,"1841":1,"1842":1,"1847":1,"1850":3,"1852":1,"1858":1,"1860":1,"1862":1,"1863":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"1906":1,"1907":1,"1941":1,"1945":6,"1947":1,"1948":1,"1990":1,"1994":7,"1996":6,"2008":12,"2009":2,"2011":10,"2012":12,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2075":2,"2079":1,"2083":1,"2088":3,"2091":1,"2095":6,"2096":5,"2100":1,"2102":1,"2104":1,"2105":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2166":1,"2167":1,"2188":1,"2190":23,"2191":3,"2200":2,"2203":2,"2213":1,"2214":1,"2216":1,"2276":9,"2284":6,"2286":1,"2287":1,"2309":1,"2310":4,"2314":4,"2315":10,"2316":14,"2317":40,"2318":29,"2319":35,"2351":1,"2456":1,"2520":1,"2524":1,"2525":1,"2538":1,"2558":8,"2634":2,"2641":1,"2651":1,"2652":3,"2680":1,"2757":2,"2784":3,"2785":17,"2854":2,"2856":4,"2857":4,"2861":1,"2866":1,"2867":2,"2871":1,"2872":2,"2877":1,"2878":1,"2879":1,"2880":7,"2892":2,"2937":1,"2938":1,"2940":2,"2950":4}}],["struggle",{"2":{"2835":1}}],["structs",{"2":{"236":1,"249":1,"285":2,"2765":1,"2772":1}}],["struct",{"0":{"731":1,"807":1,"833":1,"865":1,"895":1,"930":1,"964":1,"998":1,"1032":1,"1066":1,"1100":1,"1134":1,"1168":1,"1221":1,"1644":1,"1746":1,"1748":1},"1":{"732":1,"808":1,"834":1,"866":1,"896":1,"931":1,"965":1,"999":1,"1033":1,"1067":1,"1101":1,"1135":1,"1169":1,"1222":1,"1645":1,"1747":1,"1749":1},"2":{"21":1,"236":1,"266":1,"328":1,"1417":1,"1420":1,"1642":1,"1769":1,"1837":1,"1846":1,"1926":1,"1954":1,"1955":1,"2082":1,"2164":1,"2277":2,"2290":1,"2316":1,"2317":1,"2319":1,"2767":1,"2768":1,"2769":2,"2773":1,"2774":1,"2775":1,"2776":1,"2777":2,"2778":1,"2779":1}}],["structured",{"2":{"627":1,"1988":1,"1989":1}}],["structures",{"2":{"222":1,"558":1}}],["structure",{"0":{"2412":1,"2413":1,"2414":1,"2415":1,"2451":1},"1":{"2413":1,"2414":1,"2415":1,"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":1},"2":{"12":1,"125":1,"169":1,"236":1,"323":1,"540":1,"757":1,"769":1,"770":1,"1417":5,"1463":1,"1525":2,"1602":1,"1947":2,"1988":1,"1989":1,"2057":1,"2286":2,"2310":2,"2319":1,"2414":2,"2556":1,"2585":1,"2590":1,"2765":1,"2772":1,"2945":1}}],["stroke",{"2":{"2295":1,"2300":2}}],["strokes",{"2":{"2291":2,"2295":1,"2296":1,"2298":1}}],["stronger",{"2":{"2436":1}}],["strongly",{"2":{"166":1,"403":1,"1193":1,"1627":1,"1629":1,"1939":1,"2592":1,"2626":1,"2627":1,"2729":1}}],["strong",{"2":{"166":1,"403":2,"531":1,"537":1,"1686":10,"2212":1,"2427":1,"2434":1,"2728":1}}],["stress",{"2":{"1802":1}}],["strength",{"2":{"1680":2,"1688":1,"2680":1}}],["stretching",{"2":{"1497":1}}],["streamed",{"2":{"2757":1}}],["stream2",{"2":{"1303":1}}],["streampad",{"2":{"249":1}}],["stream",{"2":{"40":1,"114":1,"134":1,"1303":2,"1534":1,"2046":2}}],["streamline",{"2":{"40":1,"425":1}}],["streams",{"2":{"39":2}}],["strategies",{"2":{"2937":1}}],["strategy",{"2":{"312":1,"2607":1}}],["stranded",{"2":{"2429":1}}],["strange",{"2":{"47":1}}],["straight",{"2":{"2384":1,"2427":1,"2432":1}}],["straightforward",{"2":{"417":1,"472":1,"495":1,"683":1,"1364":1,"2483":1,"2617":1}}],["strain",{"2":{"2291":1}}],["strapped",{"2":{"1953":1}}],["stray",{"2":{"199":1,"222":1}}],["str",{"0":{"2349":1},"1":{"2350":1},"2":{"160":1,"175":1,"671":1,"1450":4,"1534":1,"1535":4,"1686":8,"2301":4,"2350":1,"2757":3,"2889":3,"2893":5}}],["strives",{"2":{"2902":1}}],["strike",{"2":{"166":1,"240":1}}],["stringified",{"2":{"2949":1}}],["stringify",{"2":{"1968":1}}],["strings",{"0":{"529":1,"1450":1},"2":{"175":1,"191":1,"308":1,"433":2,"475":1,"491":1,"526":1,"529":1,"670":1,"671":2,"675":1,"1333":1,"1443":2,"1448":2,"1450":1,"1534":2,"1801":1,"2059":1,"2390":1,"2397":1,"2949":1}}],["string",{"0":{"370":1,"371":1,"372":1,"1446":1,"2219":1,"2228":2,"2230":2,"2232":2,"2234":2,"2247":2,"2248":2,"2349":1,"2949":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"2220":1,"2221":1,"2222":1,"2223":1,"2224":1,"2225":1,"2226":1,"2227":1,"2228":1,"2229":3,"2230":1,"2231":3,"2232":1,"2233":3,"2234":1,"2235":3,"2236":1,"2237":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":1,"2245":1,"2246":1,"2247":1,"2248":1,"2350":1},"2":{"94":1,"114":2,"149":1,"157":1,"160":3,"174":1,"175":4,"191":1,"196":5,"222":1,"249":1,"266":1,"294":1,"308":2,"482":1,"491":2,"494":1,"588":3,"593":6,"670":1,"671":1,"1327":8,"1330":5,"1446":9,"1448":21,"1450":7,"1471":2,"1472":3,"1486":1,"1490":2,"1534":1,"1535":5,"1538":4,"1539":1,"1605":1,"1622":2,"1715":1,"1716":1,"1717":1,"1718":1,"1798":5,"1801":1,"1804":2,"1945":1,"1954":6,"2071":2,"2076":2,"2077":3,"2079":10,"2219":1,"2220":2,"2222":5,"2223":1,"2225":1,"2226":2,"2228":3,"2229":2,"2230":1,"2231":2,"2232":3,"2233":2,"2234":3,"2235":2,"2247":4,"2248":4,"2284":1,"2290":6,"2314":1,"2349":1,"2350":1,"2390":1,"2397":1,"2755":1,"2757":2,"2852":10,"2853":5,"2856":2,"2857":1,"2858":1,"2859":1,"2864":2,"2868":3,"2869":4,"2871":2,"2872":1,"2875":1,"2877":2,"2878":2,"2880":2,"2881":1,"2882":3,"2883":2,"2886":4,"2949":11}}],["strictly",{"2":{"1380":1,"1407":1,"1642":1,"2667":1}}],["strict",{"0":{"1611":1,"1615":1,"1803":1},"2":{"75":1,"112":1,"175":1,"440":1,"563":1,"564":2,"1316":1,"1381":1,"1615":1,"1803":1,"2044":1,"2749":1,"2870":1}}],["strippers",{"2":{"2421":1}}],["stripped",{"2":{"328":1,"2425":1}}],["stripping",{"2":{"339":1,"2425":2,"2429":1}}],["strip",{"2":{"35":1,"199":1,"222":2,"1464":1,"1471":1,"1472":1,"2179":2,"2185":1,"2208":2,"2281":1,"2425":1,"2427":1,"2455":3}}],["shcurl",{"2":{"2623":1,"2625":1,"2626":1}}],["shcd",{"2":{"1628":1,"2592":1,"2593":1}}],["shqmk",{"2":{"1388":1,"1527":1,"2583":2,"2584":2,"2587":2,"2594":1,"2596":1,"2616":2,"2628":4,"2629":2}}],["sheer",{"2":{"2902":1}}],["sheet",{"2":{"716":2,"721":2,"1483":1}}],["shenzhen",{"2":{"2567":1}}],["she",{"2":{"1673":1}}],["shell",{"2":{"116":1,"191":1,"249":1,"432":2,"487":1,"2071":1,"2411":1,"2669":1}}],["shade",{"2":{"2755":4}}],["shades",{"2":{"2086":1}}],["shall",{"2":{"2309":1,"2728":1}}],["shapes",{"2":{"2797":1}}],["shaped",{"2":{"2278":1}}],["shapped",{"2":{"2085":1}}],["sha",{"2":{"588":2}}],["sha1",{"2":{"411":1}}],["shandoncodes",{"2":{"241":5,"249":1}}],["shark",{"2":{"2567":1}}],["sharkropad",{"2":{"328":1}}],["sharp2",{"2":{"1686":12}}],["sharp1",{"2":{"1686":12}}],["sharp",{"2":{"1686":8,"1925":30,"2421":1,"2539":30}}],["sharing",{"0":{"1463":1},"1":{"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1},"2":{"107":1,"1343":1,"1630":1,"1670":1,"2720":1}}],["shares",{"2":{"1592":1,"2734":1}}],["share",{"2":{"63":1,"474":1,"1343":1,"1439":1,"1463":1,"1467":1,"1662":1,"1670":2,"1671":1,"2450":1,"2566":1,"2671":1,"2747":1}}],["shared",{"0":{"2679":1},"2":{"20":1,"23":1,"40":1,"107":1,"112":2,"114":1,"138":1,"160":1,"174":1,"175":1,"262":1,"561":1,"575":2,"693":1,"1464":1,"1472":1,"1853":1,"1941":1,"1989":2,"2092":1,"2181":1,"2450":1,"2677":1,"2679":4,"2691":2,"2734":1,"2882":3}}],["shutdown",{"0":{"229":1,"651":1,"652":1,"653":1,"654":1},"1":{"652":1,"653":1,"654":1},"2":{"229":6,"230":1,"236":2,"249":1,"266":1,"277":1,"288":1,"333":1,"651":3,"652":2,"653":1,"654":2,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1626":1,"1638":3,"1948":1}}],["sh1107",{"2":{"221":1,"294":1,"1943":4,"1945":1,"1949":1,"1952":1,"1953":3,"1954":1}}],["sh1106",{"2":{"153":1,"232":2,"1943":2,"1945":1,"1949":2,"1953":2,"1954":1,"2753":6,"2756":16}}],["shpkg",{"2":{"2627":1}}],["shpython3",{"2":{"158":1}}],["shpacman",{"2":{"158":1}}],["shbrew",{"2":{"158":1}}],["sh",{"2":{"114":1,"199":1,"422":1,"426":2,"488":1,"509":1,"510":3,"511":1,"1316":1,"1318":1,"1686":10,"2304":10,"2384":7,"2551":8,"2595":1,"2601":1,"2623":1,"2624":1,"2625":1,"2626":1,"2909":2}}],["shine",{"2":{"2805":1,"2845":1}}],["shiny",{"2":{"2427":1,"2428":1}}],["ships",{"2":{"2567":1}}],["shipping",{"2":{"2465":2}}],["shipped",{"2":{"685":1,"2498":1,"2568":1,"2571":1,"2728":1,"2742":1}}],["ship",{"2":{"1203":1,"1204":1,"2569":1}}],["shisaku",{"2":{"222":1}}],["shield",{"2":{"113":1,"114":1}}],["shifting",{"2":{"1499":2,"1519":1,"1600":1}}],["shifter",{"0":{"1298":1},"2":{"333":2,"639":1,"1297":1,"1298":1}}],["shifted",{"0":{"1517":1,"2546":1,"2553":1},"1":{"2554":1,"2555":1},"2":{"172":1,"175":2,"191":1,"249":1,"266":1,"749":2,"1496":1,"1498":3,"1499":3,"1503":3,"1510":5,"1517":12,"1518":3,"1522":1,"1533":1,"1593":2,"1600":2,"1673":1,"1765":1,"2069":2,"2074":1,"2085":1,"2546":1,"2553":1,"2575":1,"2930":1}}],["shift+option",{"2":{"2522":1}}],["shift+v",{"2":{"1624":1}}],["shift+s",{"2":{"1597":1}}],["shift+a",{"2":{"1597":2}}],["shift+escape",{"2":{"686":1}}],["shift+b",{"2":{"686":1}}],["shift+right",{"2":{"686":3,"1624":2}}],["shift+click",{"2":{"320":1,"2931":1}}],["shift+2",{"2":{"99":1}}],["shifts",{"2":{"134":2,"1381":2,"1593":1,"1594":4,"1595":2,"1919":1,"2085":4,"2861":1}}],["shift",{"0":{"1381":1,"1496":2,"1497":1,"1499":1,"1500":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1518":1,"1519":1,"1520":1,"1597":1,"2525":1,"2841":1,"2930":1},"1":{"1497":2,"1498":2,"1499":2,"1500":2,"1501":2,"1502":2,"1503":3,"1504":3,"1505":3,"1506":3,"1507":3,"1508":3,"1509":3,"1510":3,"1511":3,"1512":3,"1513":3,"1514":3,"1515":3,"1516":3,"1517":2,"1518":2,"1519":3,"1520":2,"1521":3,"1522":3,"1523":3},"2":{"39":1,"63":1,"99":1,"114":1,"134":4,"152":4,"172":1,"175":1,"191":1,"210":2,"222":3,"236":2,"255":1,"257":1,"258":1,"259":2,"353":1,"561":1,"618":1,"686":1,"766":2,"1352":1,"1362":9,"1368":1,"1377":14,"1378":11,"1381":7,"1423":2,"1451":2,"1457":1,"1472":4,"1496":1,"1497":2,"1498":10,"1499":5,"1500":1,"1501":4,"1502":3,"1503":7,"1504":1,"1505":2,"1506":1,"1507":1,"1508":1,"1509":1,"1510":10,"1512":1,"1516":1,"1517":7,"1518":9,"1519":3,"1520":1,"1521":12,"1522":4,"1523":1,"1529":1,"1532":2,"1533":3,"1593":2,"1594":9,"1595":4,"1597":10,"1600":3,"1605":1,"1617":1,"1624":1,"1625":1,"1672":1,"1673":1,"1674":1,"1676":2,"1690":1,"1762":2,"1765":1,"1766":2,"1767":1,"1774":6,"1776":5,"1777":2,"1784":1,"1785":2,"1786":6,"1788":1,"1795":1,"1949":1,"2065":3,"2068":2,"2069":5,"2074":4,"2181":10,"2255":4,"2256":6,"2257":6,"2258":1,"2260":4,"2288":1,"2318":1,"2330":1,"2332":1,"2351":1,"2460":1,"2514":4,"2522":4,"2523":2,"2525":13,"2531":1,"2541":16,"2542":14,"2544":10,"2547":14,"2550":6,"2552":1,"2553":1,"2554":1,"2572":20,"2573":2,"2612":2,"2650":4,"2651":14,"2652":4,"2673":4,"2752":2,"2831":1,"2841":3,"2861":6,"2869":1,"2911":1,"2913":1,"2916":6,"2917":3,"2922":2,"2926":2,"2929":1,"2930":3,"2931":2,"2941":1,"2946":2}}],["shore",{"2":{"2942":1}}],["shorting",{"2":{"2434":1,"2690":1}}],["shorts",{"2":{"2425":1,"2427":1}}],["shortcuts",{"0":{"2071":1},"2":{"1448":1,"1450":1,"1766":1,"1767":1,"1787":2,"1788":1,"2071":1,"2079":1,"2331":1,"2474":1,"2553":1,"2572":1,"2929":1}}],["shortcut",{"2":{"1380":1,"1381":1,"1675":2,"1945":1,"2247":1,"2248":1,"2284":1,"2291":1,"2620":1,"2837":1}}],["shortly",{"2":{"634":1,"1786":1,"2300":1}}],["shortest",{"2":{"1503":1}}],["shorted",{"2":{"569":1,"2690":1}}],["shorter",{"2":{"516":1,"1286":1,"1662":1,"1936":1,"2591":1}}],["shortened",{"2":{"213":1,"2812":1,"2868":1}}],["shorten",{"2":{"149":1,"1415":1}}],["shorthands",{"2":{"2089":1,"2205":1}}],["shorthand",{"2":{"199":1,"2639":1,"2794":1}}],["shortages",{"2":{"187":1}}],["short",{"2":{"114":1,"123":1,"134":1,"266":1,"297":1,"521":1,"525":1,"527":1,"540":1,"599":1,"607":2,"609":1,"675":1,"683":1,"684":1,"720":2,"772":1,"1312":1,"1335":1,"1409":1,"1498":1,"1594":1,"1609":2,"1686":16,"1786":3,"1790":1,"1802":1,"1957":1,"2066":2,"2265":2,"2319":1,"2389":1,"2392":1,"2394":1,"2395":1,"2397":1,"2399":1,"2401":1,"2404":1,"2425":1,"2429":1,"2430":1,"2433":1,"2434":1,"2612":1,"2650":1,"2690":1,"2691":1,"2806":1,"2856":1,"2868":1,"2923":1,"2925":1}}],["shop",{"2":{"2490":1,"2895":1}}],["shooting",{"2":{"2434":1}}],["shot",{"0":{"1352":1,"1385":1,"2547":1,"2650":1,"2874":1},"1":{"2651":1,"2652":1},"2":{"93":1,"160":2,"172":1,"175":1,"194":1,"199":1,"231":1,"562":1,"564":1,"1352":1,"1378":11,"1385":1,"1422":1,"1533":3,"1594":2,"1597":2,"1765":2,"1789":1,"1999":2,"2000":1,"2304":1,"2547":7,"2551":1,"2650":8,"2651":10,"2652":7,"2874":1,"2909":1,"2911":2,"2920":1,"2922":1,"2949":1}}],["showcasing",{"2":{"2728":1}}],["showed",{"2":{"1523":1}}],["shows",{"2":{"362":1,"381":1,"475":1,"582":1,"583":1,"609":1,"1430":1,"1431":1,"1774":1,"1779":1,"2417":2,"2692":1,"2709":1}}],["shown",{"2":{"134":1,"156":1,"565":1,"695":1,"729":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1203":1,"1204":1,"1219":1,"1346":1,"1705":1,"1709":1,"1713":1,"1769":1,"2192":1,"2295":1,"2296":1,"2423":2,"2775":1,"2885":1,"2912":1,"2920":1,"2928":1}}],["show",{"2":{"83":1,"114":1,"119":1,"191":1,"230":1,"254":1,"285":1,"434":4,"437":4,"452":1,"453":1,"454":1,"455":2,"460":1,"461":1,"469":1,"492":1,"647":1,"1313":1,"1365":1,"1701":1,"1705":1,"1709":1,"1995":1,"2188":1,"2298":1,"2417":2,"2464":1,"2466":2,"2554":1,"2573":1,"2627":1,"2634":1,"2669":1,"2709":1,"2717":1,"2755":3}}],["showing",{"2":{"70":1,"77":1,"312":1,"565":1,"1313":1,"1409":1,"2188":1,"2653":1,"2664":1,"2800":1}}],["shouldn",{"2":{"560":1,"634":1,"1365":1,"1526":1,"1956":1,"2275":1,"2428":1,"2728":1}}],["should",{"2":{"3":1,"6":1,"39":1,"43":2,"44":1,"48":1,"50":1,"70":1,"103":1,"125":1,"126":1,"131":2,"156":1,"157":2,"166":1,"169":2,"182":1,"194":1,"198":1,"212":7,"217":1,"234":1,"236":1,"240":1,"245":1,"249":1,"254":1,"268":1,"271":1,"275":1,"279":1,"304":2,"317":1,"332":1,"340":1,"344":3,"353":1,"365":1,"368":1,"374":1,"376":1,"381":3,"386":1,"394":2,"396":1,"398":1,"403":3,"419":1,"423":1,"465":1,"469":1,"491":2,"493":2,"494":3,"500":1,"506":1,"512":1,"516":2,"519":1,"521":1,"525":2,"527":1,"531":1,"532":1,"535":1,"537":1,"541":1,"557":1,"576":1,"588":6,"589":1,"608":1,"609":3,"611":1,"612":1,"613":5,"627":2,"630":1,"632":1,"633":1,"639":3,"640":1,"643":1,"644":1,"645":1,"647":1,"656":1,"657":2,"659":1,"668":1,"675":1,"677":2,"682":1,"683":1,"686":1,"687":2,"688":1,"706":1,"720":2,"733":1,"754":1,"756":1,"762":1,"766":1,"797":1,"809":1,"835":1,"867":1,"897":1,"932":1,"966":1,"1000":1,"1034":1,"1068":1,"1102":1,"1136":1,"1170":1,"1192":1,"1199":1,"1203":1,"1204":1,"1223":1,"1248":1,"1305":1,"1313":1,"1314":1,"1315":1,"1319":1,"1320":2,"1336":2,"1344":1,"1349":1,"1362":1,"1370":1,"1407":3,"1410":1,"1417":1,"1426":2,"1433":1,"1435":1,"1438":1,"1446":1,"1466":1,"1467":1,"1472":2,"1480":1,"1483":1,"1491":1,"1503":1,"1510":1,"1522":1,"1527":1,"1532":1,"1533":2,"1544":1,"1556":1,"1593":1,"1595":1,"1600":3,"1612":3,"1613":3,"1633":1,"1634":1,"1656":1,"1659":3,"1661":1,"1662":1,"1667":1,"1669":2,"1704":1,"1742":1,"1781":1,"1836":1,"1844":1,"1949":1,"1962":1,"1984":1,"1987":1,"2008":2,"2009":1,"2012":1,"2015":1,"2058":1,"2080":1,"2179":1,"2181":1,"2184":1,"2212":1,"2218":1,"2265":1,"2267":1,"2275":1,"2277":2,"2297":1,"2298":1,"2300":1,"2310":1,"2317":1,"2402":1,"2417":2,"2428":4,"2431":1,"2432":1,"2434":2,"2450":2,"2451":3,"2452":1,"2453":4,"2454":1,"2456":3,"2457":1,"2460":1,"2461":1,"2464":3,"2466":3,"2485":1,"2487":1,"2489":1,"2501":1,"2502":2,"2504":1,"2508":2,"2565":1,"2566":1,"2567":2,"2569":2,"2584":1,"2587":1,"2589":1,"2590":1,"2612":1,"2619":1,"2622":1,"2629":2,"2637":1,"2639":1,"2667":2,"2669":1,"2674":4,"2678":3,"2680":3,"2687":1,"2691":1,"2711":1,"2712":1,"2714":1,"2717":2,"2718":1,"2720":1,"2723":1,"2726":4,"2727":3,"2728":19,"2729":8,"2732":1,"2754":1,"2756":2,"2757":6,"2772":1,"2776":2,"2778":1,"2784":1,"2792":1,"2860":1,"2869":3,"2872":1,"2882":2,"2889":1,"2906":2,"2908":1,"2912":1,"2927":1,"2944":2,"2947":1,"2950":1}}],["sprintf",{"2":{"2889":2,"2893":2}}],["springgreen",{"2":{"2089":2,"2205":2}}],["spring",{"2":{"1685":1}}],["springs",{"2":{"1685":1}}],["spread",{"2":{"2086":2,"2481":1}}],["spreads",{"2":{"2086":1}}],["spruce",{"2":{"210":1}}],["splash",{"2":{"1849":3,"2085":6,"2894":2}}],["splaytoraid",{"2":{"266":1,"322":4,"328":1}}],["spleeb",{"2":{"317":1}}],["splicing",{"2":{"1486":1}}],["splinky",{"2":{"191":1,"311":13,"2706":1}}],["splitography",{"2":{"2294":1}}],["splitting",{"0":{"416":1}}],["splitty",{"2":{"253":2}}],["split75",{"2":{"159":2}}],["splitreus62",{"2":{"143":2}}],["splitkb",{"2":{"102":1,"114":1,"134":2,"210":1,"222":1,"277":1}}],["splits",{"2":{"25":1,"51":1,"114":1}}],["split",{"0":{"20":1,"22":1,"25":1,"80":1,"107":1,"138":1,"567":1,"1590":1,"1637":1,"1666":1,"1987":1,"1989":1,"1995":1,"2261":1,"2426":1,"2704":1,"2880":1},"1":{"21":1,"26":1,"568":1,"569":1,"570":1,"1996":1,"1997":1,"2262":1,"2263":1,"2264":1,"2265":1,"2266":1,"2267":1,"2268":1,"2269":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2275":1,"2276":1,"2277":1,"2278":1,"2279":1,"2280":1,"2281":1},"2":{"20":3,"22":2,"35":3,"65":2,"70":28,"74":3,"80":1,"92":2,"93":4,"94":1,"107":7,"111":1,"112":10,"114":13,"134":4,"138":1,"143":8,"149":10,"160":3,"175":7,"190":1,"191":15,"199":3,"210":9,"222":7,"236":5,"249":4,"253":2,"259":5,"260":2,"266":8,"270":2,"277":11,"285":2,"300":1,"308":3,"332":1,"333":1,"337":1,"339":2,"561":1,"565":6,"567":5,"568":8,"569":7,"570":26,"574":5,"670":2,"1192":2,"1197":2,"1198":1,"1205":1,"1392":1,"1393":1,"1395":2,"1397":1,"1414":1,"1433":1,"1439":3,"1492":1,"1590":3,"1637":1,"1655":1,"1666":3,"1835":2,"1852":3,"1948":2,"1949":1,"1974":1,"1977":1,"1983":1,"1985":1,"1987":1,"1989":1,"1995":1,"2014":1,"2091":3,"2095":2,"2096":2,"2179":2,"2182":2,"2189":4,"2191":2,"2207":1,"2261":4,"2265":2,"2268":1,"2269":2,"2271":1,"2272":3,"2273":10,"2274":1,"2275":5,"2276":21,"2277":4,"2278":14,"2279":3,"2280":2,"2281":2,"2287":2,"2305":1,"2378":1,"2391":3,"2393":3,"2400":3,"2405":2,"2407":2,"2409":2,"2418":9,"2426":2,"2439":1,"2520":2,"2538":2,"2704":1,"2721":1,"2728":1,"2729":1,"2852":1,"2871":2,"2877":4,"2878":2,"2880":5,"2908":1,"2927":1}}],["sponge",{"2":{"2427":1}}],["spots",{"2":{"618":1}}],["spot",{"2":{"251":1,"599":2,"651":1,"2564":1}}],["spooky",{"2":{"191":1}}],["sp111",{"2":{"222":1}}],["spc",{"2":{"195":1,"266":1,"379":2,"589":2,"1593":1,"1622":2,"2309":3,"2512":1,"2522":1,"2563":2,"2910":1,"2912":1,"2922":1,"2923":1,"2924":2,"2929":4}}],["spacing",{"2":{"2607":1,"2727":1}}],["space+b",{"2":{"686":1}}],["spaces",{"0":{"618":1},"2":{"354":1,"475":1,"512":2,"514":1,"578":1,"580":1,"586":2,"2278":1,"2720":1,"2727":1,"2896":1,"2938":1}}],["spacebars",{"2":{"259":1}}],["spacebar",{"2":{"259":1,"2512":1,"2522":1,"2612":1}}],["spacey",{"0":{"255":1},"2":{"241":2,"255":1,"266":1}}],["spaceholdings",{"2":{"143":3,"149":2,"253":2,"266":1}}],["space",{"0":{"123":1,"2255":1,"2550":1,"2841":1},"1":{"2256":1,"2257":1,"2258":1,"2259":1,"2260":1},"2":{"39":2,"123":1,"124":3,"134":1,"143":8,"172":1,"173":1,"175":2,"181":1,"191":3,"214":1,"222":2,"249":1,"255":1,"259":1,"260":1,"545":1,"589":1,"618":2,"671":1,"720":1,"1423":1,"1471":1,"1490":1,"1493":1,"1528":1,"1538":1,"1593":1,"1594":1,"1662":1,"1692":1,"1766":1,"2184":1,"2255":1,"2257":7,"2258":1,"2259":3,"2260":3,"2297":1,"2309":2,"2330":1,"2345":1,"2379":1,"2381":1,"2512":1,"2522":1,"2550":8,"2573":1,"2598":1,"2675":1,"2734":1,"2758":1,"2841":1,"2886":1,"2893":2,"2894":1,"2907":1,"2924":1,"2941":1}}],["spaceman",{"2":{"27":4}}],["span",{"2":{"2057":1}}],["spanish",{"2":{"191":1,"249":1,"1593":1,"2887":9}}],["spamming",{"2":{"210":1,"2950":1}}],["sparse",{"2":{"328":1}}],["spare",{"2":{"206":1,"1473":1}}],["sparkfun",{"0":{"271":1,"1394":1,"2490":1},"1":{"2491":1},"2":{"178":1,"191":1,"271":3,"277":1,"546":1,"749":3,"1389":1,"1391":3,"2374":2,"2484":1,"2486":1,"2490":3,"2499":4,"2702":2,"2895":1}}],["spdu",{"2":{"1667":1,"1848":1,"2084":1,"2087":1,"2181":1,"2537":1,"2544":1,"2545":1}}],["spdd",{"2":{"1667":1,"1848":1,"2084":1,"2087":1,"2181":1,"2537":1,"2544":1,"2545":1}}],["spdx",{"2":{"1630":1,"2732":2}}],["spd",{"2":{"167":4,"210":1,"1852":2,"2091":2,"2182":1}}],["sp",{"2":{"134":1,"222":1}}],["spi0",{"2":{"2698":2}}],["spiral",{"2":{"1849":4,"2085":12,"2894":3}}],["spid0",{"2":{"2698":1,"2702":1}}],["spid2",{"2":{"1248":2}}],["spid1",{"2":{"1248":1,"1299":1,"2698":1}}],["spiderisland",{"2":{"143":1}}],["spidey3",{"2":{"74":1,"175":1,"191":1}}],["spi3",{"2":{"1248":1}}],["spi2",{"2":{"1248":4}}],["spi1",{"2":{"1248":2,"1299":2,"2698":2}}],["spinning",{"2":{"1849":3,"2085":9}}],["spins",{"2":{"1684":1}}],["spin",{"2":{"191":1}}],["spi",{"0":{"750":1,"755":1,"759":1,"1245":1,"1250":1,"1251":1,"1254":2,"1257":2,"1259":2,"1262":2,"1265":1,"1294":1,"1299":1,"1951":1,"2375":1,"2698":1},"1":{"1246":1,"1247":1,"1248":1,"1249":1,"1250":1,"1251":1,"1252":2,"1253":2,"1254":1,"1255":3,"1256":3,"1257":1,"1258":3,"1259":1,"1260":3,"1261":3,"1262":1,"1263":3,"1264":3,"1265":1,"1300":1,"1301":1},"2":{"93":1,"114":2,"118":2,"134":1,"149":2,"189":1,"191":9,"221":1,"232":1,"234":4,"236":5,"277":2,"285":1,"294":1,"308":1,"317":3,"724":1,"725":1,"726":4,"728":1,"746":3,"750":9,"753":2,"755":2,"758":1,"759":6,"1245":1,"1246":3,"1247":3,"1248":23,"1250":1,"1251":1,"1252":4,"1253":1,"1254":1,"1256":2,"1257":1,"1258":1,"1259":1,"1261":3,"1262":1,"1264":3,"1265":2,"1289":1,"1294":4,"1299":12,"1300":2,"1301":1,"1943":1,"1945":2,"1951":4,"1967":8,"1973":2,"1974":9,"1979":2,"1982":2,"1983":4,"2283":1,"2288":2,"2374":3,"2375":5,"2431":1,"2679":3,"2689":1,"2692":2,"2695":1,"2698":4,"2702":6,"2705":1,"2726":1,"2753":25,"2756":71,"2864":2,"2883":2}}],["spent",{"2":{"2937":1}}],["spend",{"2":{"188":1,"1525":1,"2731":1}}],["speaks",{"2":{"2294":1}}],["speak",{"2":{"2294":2}}],["speakers",{"2":{"715":1,"716":1,"1484":1}}],["speaker",{"2":{"715":3,"1473":1,"1474":3,"1475":1,"1477":2,"1481":1,"1483":1,"1484":1,"1486":5,"2221":1,"2390":2,"2397":2,"2689":1,"2691":2,"2856":3,"2876":2}}],["spelled",{"2":{"1528":1}}],["spelling",{"2":{"39":1,"92":1,"1448":2,"2291":1}}],["speculation",{"2":{"2931":2}}],["speculatively",{"2":{"320":1,"2931":2}}],["speculative",{"0":{"320":1,"2931":1},"2":{"320":5,"328":2,"339":3,"2913":1,"2931":18}}],["specially",{"2":{"2077":1}}],["specialization",{"2":{"1638":1}}],["specializations",{"2":{"1638":1}}],["specialized",{"2":{"1291":1,"2501":1}}],["special",{"0":{"1355":1,"1369":1,"1504":1,"1516":1,"2519":1},"2":{"210":1,"482":1,"491":1,"564":1,"626":1,"646":1,"685":1,"772":1,"1247":1,"1268":1,"1283":1,"1422":1,"1473":1,"1490":1,"1502":1,"1503":2,"1504":1,"1505":1,"1510":1,"1527":1,"1532":1,"1618":1,"1765":1,"1855":1,"1992":1,"2094":1,"2178":1,"2220":1,"2297":1,"2330":1,"2431":1,"2484":1,"2488":1,"2558":1,"2563":1,"2612":2,"2676":1,"2728":1,"2751":1,"2785":1,"2807":1,"2841":1,"2910":1,"2912":1}}],["specifying",{"2":{"76":1,"87":1,"103":1,"118":1,"126":1,"181":1,"185":2,"222":1,"246":1,"247":1,"341":1,"473":1,"533":1,"754":2,"1423":2,"1456":1,"2384":1,"2616":1,"2755":1}}],["specify",{"2":{"55":1,"87":1,"134":1,"168":1,"184":1,"212":1,"234":1,"379":1,"430":1,"477":1,"489":1,"533":1,"564":1,"570":2,"572":1,"670":1,"1200":1,"1207":1,"1365":1,"1417":1,"1436":1,"1527":1,"1589":2,"1620":1,"1630":1,"1666":1,"1681":1,"1843":1,"1952":1,"1964":1,"1970":2,"2191":1,"2206":1,"2278":3,"2308":1,"2309":1,"2417":1,"2418":1,"2419":1,"2502":1,"2584":1,"2587":1,"2616":1,"2639":1,"2691":1,"2700":1,"2718":1,"2719":1,"2755":7,"2773":1,"2924":1,"2927":2,"2950":1}}],["specifiers",{"2":{"2889":1}}],["specifies",{"2":{"1410":1,"1773":1,"1776":1,"1980":1,"2417":1,"2728":1,"2776":2,"2851":1,"2931":1}}],["specified",{"0":{"141":1},"2":{"39":1,"58":1,"70":14,"109":1,"149":1,"168":1,"302":1,"430":2,"442":1,"443":1,"459":1,"470":1,"565":1,"572":2,"655":1,"698":2,"699":3,"749":2,"750":1,"759":5,"1292":1,"1410":1,"1428":12,"1444":1,"1448":1,"1634":1,"1666":1,"1711":1,"1770":1,"1850":1,"1954":1,"2069":1,"2088":1,"2191":2,"2271":1,"2290":1,"2300":1,"2309":2,"2331":1,"2379":2,"2406":1,"2408":1,"2410":1,"2417":6,"2450":1,"2454":1,"2502":1,"2554":1,"2573":2,"2616":2,"2628":1,"2652":1,"2674":2,"2719":1,"2720":1,"2728":1,"2755":7,"2756":3,"2767":1,"2770":1,"2773":1,"2853":2,"2869":1,"2927":2}}],["specifics",{"2":{"714":1,"1300":1,"1320":1}}],["specifications",{"2":{"1970":2}}],["specification",{"0":{"1924":1,"1928":1},"2":{"166":1,"168":1,"184":1,"1350":1,"1398":1,"1923":1,"2057":1,"2470":1,"2751":1}}],["specifically",{"2":{"107":1,"2424":1,"2645":1,"2709":1,"2736":1,"2765":1,"2772":1,"2932":1}}],["specific",{"0":{"1468":1,"2431":1,"2884":1},"1":{"2885":1,"2886":1,"2887":1},"2":{"5":1,"11":1,"39":1,"74":2,"77":1,"94":1,"113":1,"114":2,"118":1,"124":1,"133":3,"134":3,"175":2,"191":2,"199":1,"222":2,"386":1,"429":1,"433":1,"459":1,"516":1,"567":1,"605":1,"668":1,"686":1,"696":1,"701":1,"721":1,"752":1,"762":1,"797":1,"1205":1,"1358":1,"1378":2,"1392":1,"1393":1,"1405":1,"1438":1,"1442":1,"1464":1,"1466":1,"1472":3,"1489":1,"1684":1,"1685":2,"1687":1,"1689":1,"1762":1,"1781":1,"1850":1,"1954":2,"1956":2,"1970":1,"1984":1,"2000":1,"2042":1,"2044":1,"2088":1,"2096":1,"2222":1,"2261":1,"2290":1,"2310":1,"2317":1,"2389":1,"2407":1,"2409":1,"2414":2,"2417":1,"2418":1,"2435":1,"2450":1,"2459":1,"2475":1,"2482":1,"2568":1,"2612":1,"2663":1,"2674":1,"2696":1,"2726":1,"2727":3,"2728":4,"2735":1,"2757":2,"2761":1,"2763":1,"2780":1,"2782":1,"2791":1,"2796":2,"2851":3,"2884":2,"2887":1,"2894":1,"2912":1,"2936":1,"2941":1,"2946":1}}],["specs",{"2":{"114":1}}],["spec",{"2":{"114":1,"592":1,"1835":1,"1990":4,"2267":1,"2884":1}}],["speeds",{"2":{"570":1,"1930":1,"1934":2,"1937":3,"1938":2,"1954":1,"2187":1,"2211":1}}],["speedo",{"0":{"56":1},"2":{"56":6}}],["speed",{"0":{"1885":1,"1886":1,"1887":1,"1888":1,"1889":2,"1891":2,"1893":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":2,"2145":2,"2147":1,"2187":1,"2202":1},"1":{"1890":2,"1892":2,"1894":1,"2144":2,"2146":2,"2148":1},"2":{"39":3,"112":2,"114":1,"198":1,"210":1,"317":1,"429":1,"561":1,"566":1,"570":4,"769":1,"1207":4,"1252":2,"1294":1,"1410":1,"1472":1,"1487":1,"1490":1,"1848":4,"1849":2,"1852":2,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":2,"1891":1,"1892":2,"1893":1,"1894":1,"1925":4,"1934":6,"1935":10,"1936":14,"1937":12,"1938":4,"1939":5,"1949":1,"1954":3,"1967":2,"1968":2,"1974":2,"1983":3,"1994":2,"2047":1,"2084":4,"2085":5,"2087":1,"2091":2,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":2,"2145":1,"2146":2,"2147":1,"2148":1,"2181":6,"2182":1,"2202":12,"2204":2,"2209":2,"2210":2,"2211":1,"2252":1,"2275":2,"2276":1,"2469":1,"2503":1,"2522":1,"2537":4,"2539":4,"2544":6,"2545":4,"2871":4,"2873":1,"2877":2,"2878":4,"2880":2,"2913":1}}],["sadly",{"2":{"2628":1}}],["sabayon",{"2":{"2601":1}}],["sasha",{"2":{"2425":1,"2436":1}}],["said",{"2":{"1450":1,"2567":3}}],["saikoutype",{"2":{"249":1}}],["sag",{"2":{"1378":1}}],["sa",{"2":{"1378":1,"1776":2}}],["salt",{"2":{"2396":1}}],["sall",{"2":{"2253":1}}],["salad",{"2":{"1365":1}}],["salicylic",{"2":{"143":13,"149":2,"222":1,"308":1}}],["sake",{"2":{"1347":1}}],["sanitisation",{"2":{"1532":1}}],["sanitise",{"2":{"1532":1}}],["sane",{"2":{"719":2}}],["sango",{"2":{"249":1}}],["sacrifices",{"2":{"719":1}}],["says",{"2":{"2387":1,"2567":3,"2612":1,"2944":1}}],["saying",{"2":{"617":1,"2628":1}}],["say",{"2":{"596":1,"1378":1,"1762":1,"1851":1,"2090":1,"2259":1,"2260":1,"2300":1,"2419":1,"2622":1,"2790":1,"2937":1}}],["sawnsprojects",{"2":{"222":2,"249":1}}],["sauce",{"2":{"222":1}}],["saevus",{"2":{"222":1,"281":2,"285":1}}],["safemode",{"2":{"2502":1}}],["safest",{"2":{"1668":1}}],["safety",{"0":{"1365":1,"2314":1},"2":{"2275":1,"2314":1}}],["safe",{"2":{"199":1,"229":2,"294":1,"593":1,"610":1,"629":3,"1446":3,"1462":1,"1472":5,"1924":1,"1962":1,"1993":1,"1994":1,"2013":1,"2071":1,"2079":1,"2607":2,"2750":1,"2912":1}}],["safely",{"2":{"21":1,"24":1,"240":1,"646":1,"1947":1,"2286":1,"2503":1,"2628":1,"2640":1}}],["savage65",{"2":{"308":1}}],["saves",{"2":{"1974":1,"1990":1,"2640":2}}],["save",{"0":{"600":1},"2":{"249":1,"285":2,"499":1,"562":1,"600":1,"648":1,"1417":1,"1471":1,"1493":1,"1538":1,"1609":1,"1766":1,"2186":1,"2275":1,"2432":1,"2504":1,"2599":2,"2606":1,"2607":1,"2619":2,"2634":1,"2636":1,"2640":1,"2667":1,"2672":1,"2889":1,"2893":1}}],["saved",{"2":{"131":1,"452":1,"453":1,"1320":1,"1417":1,"1589":1}}],["saving",{"2":{"131":1,"134":1,"641":3,"665":1,"2795":1}}],["savings",{"2":{"15":1,"2889":1}}],["sata",{"2":{"2265":1}}],["satan",{"2":{"429":3,"2615":1}}],["satisfied",{"2":{"600":1,"2912":1,"2914":1}}],["satisfaction75",{"2":{"134":2,"199":1,"249":1}}],["satu",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2544":1,"2545":1}}],["saturation",{"2":{"111":1,"114":1,"565":1,"2084":4,"2085":6,"2091":2,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2180":2,"2181":6,"2182":2,"2201":8,"2544":6,"2545":4,"2757":2,"2777":1,"2877":2,"2878":2}}],["satd",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2544":1,"2545":1}}],["satellite",{"2":{"175":1,"222":1}}],["satt99",{"2":{"149":1}}],["satt",{"2":{"143":1,"149":1,"191":1}}],["sat",{"0":{"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2201":1},"1":{"2132":1},"2":{"39":1,"167":2,"210":3,"354":1,"381":2,"565":1,"2085":12,"2091":2,"2182":2,"2186":1,"2201":4,"2204":2,"2454":2,"2757":11,"2877":1,"2878":2,"2894":3}}],["sampling",{"2":{"149":1,"701":2,"741":1,"1577":1,"2379":1,"2858":1}}],["sampled",{"2":{"1410":1}}],["samples",{"2":{"719":2,"1480":1,"1488":1,"1579":1,"1742":1,"2569":1}}],["sample",{"2":{"21":1,"191":1,"210":1,"719":6,"720":4,"745":1,"1252":4,"1480":6,"1488":4,"1502":1,"1526":1,"1579":1,"1582":1,"1755":1,"2043":1,"2046":3,"2379":6,"2472":1,"2858":1}}],["same",{"2":{"17":1,"35":2,"73":1,"157":1,"181":1,"184":1,"210":1,"234":1,"235":1,"289":1,"307":2,"341":1,"379":1,"512":2,"521":1,"555":1,"570":2,"581":1,"588":2,"599":1,"600":1,"618":1,"627":1,"656":1,"659":1,"666":1,"688":1,"695":1,"722":1,"753":1,"756":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1200":1,"1219":1,"1286":1,"1338":2,"1353":1,"1361":1,"1362":1,"1378":1,"1388":1,"1410":1,"1425":1,"1428":1,"1439":2,"1442":1,"1463":1,"1464":1,"1465":2,"1466":1,"1470":1,"1501":1,"1533":1,"1538":3,"1546":2,"1595":1,"1605":1,"1608":1,"1611":1,"1612":3,"1619":2,"1622":2,"1635":1,"1636":1,"1659":1,"1662":1,"1670":1,"1787":1,"1801":1,"1844":1,"1846":1,"1849":4,"1934":1,"1935":1,"1939":3,"1940":1,"1953":1,"1983":3,"2000":1,"2047":1,"2051":1,"2057":1,"2070":3,"2080":1,"2082":1,"2085":5,"2191":1,"2206":1,"2258":1,"2261":1,"2278":1,"2294":1,"2303":1,"2309":2,"2310":2,"2317":1,"2330":1,"2382":1,"2384":1,"2390":1,"2397":1,"2402":1,"2417":1,"2424":1,"2427":1,"2428":1,"2444":1,"2450":2,"2453":1,"2454":1,"2464":1,"2499":1,"2561":1,"2567":2,"2590":1,"2594":2,"2610":1,"2612":1,"2622":1,"2633":2,"2634":1,"2637":1,"2638":1,"2686":1,"2709":1,"2711":3,"2713":1,"2720":1,"2726":1,"2728":4,"2734":1,"2736":1,"2741":1,"2754":1,"2755":4,"2756":2,"2770":1,"2784":1,"2795":1,"2843":1,"2869":1,"2890":1,"2920":1,"2926":3,"2927":3,"2936":1,"2945":1,"2949":1}}],["sixty",{"2":{"1493":1}}],["sixtyfive",{"2":{"222":1}}],["sixth",{"2":{"1356":1}}],["six",{"2":{"1292":1,"2252":1,"2296":1}}],["sipeed",{"2":{"554":1}}],["situation",{"2":{"525":1,"1297":1,"1410":1,"1802":1}}],["situations",{"2":{"525":1,"542":1,"626":1,"1366":1,"1446":1,"1465":1,"2628":4,"2842":1,"2889":1}}],["sites",{"2":{"2569":1}}],["site",{"2":{"461":1,"2943":1}}],["sit",{"2":{"363":1,"675":1}}],["silvery",{"2":{"2427":1}}],["silakka54",{"2":{"294":1}}],["silent=true",{"2":{"2417":1}}],["silent",{"2":{"236":1}}],["silicon",{"2":{"39":1}}],["sizing",{"2":{"222":1,"350":1}}],["size=x",{"2":{"2950":1}}],["sizey",{"2":{"2757":1}}],["sizex",{"2":{"2757":1}}],["sized",{"0":{"1952":1,"2289":1},"1":{"1953":1},"2":{"2295":1}}],["sizeof",{"2":{"1419":4,"1420":2,"1952":1,"2277":2,"2289":1,"2767":2,"2768":2,"2773":1,"2774":2,"2775":1,"2776":2,"2777":1,"2778":1,"2889":1,"2950":1}}],["sizes",{"0":{"1609":1},"2":{"134":1,"149":1,"212":1,"221":1,"754":1,"1609":3,"1943":1,"1952":1,"2277":1,"2756":1,"2773":1,"2794":1}}],["size",{"0":{"720":1},"2":{"3":1,"18":1,"48":1,"69":1,"70":1,"75":1,"113":1,"114":10,"134":4,"149":4,"153":1,"175":1,"181":1,"191":2,"199":1,"203":1,"210":2,"212":1,"222":4,"236":5,"266":2,"555":1,"562":1,"563":1,"565":1,"570":2,"572":1,"613":1,"719":3,"720":4,"748":2,"749":4,"750":4,"751":3,"753":2,"754":11,"755":9,"756":11,"759":10,"1365":4,"1419":8,"1420":1,"1527":2,"1532":1,"1533":4,"1661":1,"1662":3,"1681":3,"1697":1,"1747":1,"1849":1,"1935":2,"1936":2,"1940":2,"1943":1,"1952":6,"1953":3,"1954":7,"2068":1,"2085":2,"2086":1,"2189":1,"2275":1,"2277":6,"2283":1,"2289":6,"2290":2,"2300":2,"2309":1,"2330":1,"2379":2,"2381":1,"2388":2,"2417":2,"2418":2,"2429":1,"2458":1,"2503":1,"2587":2,"2629":2,"2711":1,"2728":1,"2753":1,"2754":1,"2755":7,"2756":3,"2758":1,"2767":4,"2774":4,"2864":4,"2888":2,"2889":2,"2892":1,"2901":2,"2950":2}}],["sion",{"2":{"2079":1}}],["siod0",{"2":{"2699":1,"2702":2}}],["siod3",{"2":{"1204":2}}],["siod1",{"2":{"1204":1,"2699":1}}],["sio",{"0":{"1204":1},"2":{"191":1,"199":1,"249":1,"1198":1,"1201":1,"1204":6,"1405":2,"2692":2,"2699":2,"2702":1,"2704":3}}],["sinks",{"2":{"2680":1}}],["sink",{"2":{"2566":1}}],["sinusoidal",{"2":{"1684":1}}],["sine",{"2":{"1480":2,"1849":2}}],["singa",{"2":{"222":1}}],["single",{"0":{"480":1,"1360":1,"1996":1,"2307":1,"2312":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"49":1,"94":1,"112":1,"113":1,"114":2,"138":1,"175":1,"210":1,"222":3,"236":1,"262":1,"285":3,"311":1,"328":1,"379":1,"396":1,"465":1,"469":1,"477":1,"483":1,"518":1,"520":1,"527":2,"575":2,"578":1,"665":2,"676":1,"695":1,"696":1,"707":1,"724":1,"731":1,"735":1,"768":1,"797":1,"800":1,"801":1,"805":1,"807":1,"808":1,"812":1,"816":2,"818":1,"820":1,"822":2,"826":1,"827":1,"831":1,"833":1,"834":1,"839":1,"843":2,"845":1,"847":1,"849":2,"855":1,"856":1,"863":1,"865":1,"866":1,"871":1,"875":2,"877":1,"879":1,"881":2,"887":1,"888":1,"893":1,"895":1,"896":1,"903":1,"907":2,"909":1,"911":1,"913":2,"919":1,"920":1,"928":1,"930":1,"931":1,"938":1,"942":2,"944":1,"946":1,"948":2,"954":1,"955":1,"962":1,"964":1,"965":1,"972":1,"976":2,"978":1,"980":1,"982":2,"988":1,"989":1,"996":1,"998":1,"999":1,"1006":1,"1010":2,"1012":1,"1014":1,"1016":2,"1022":1,"1023":1,"1030":1,"1032":1,"1033":1,"1040":1,"1044":2,"1046":1,"1048":1,"1050":2,"1056":1,"1057":1,"1064":1,"1066":1,"1067":1,"1074":1,"1078":2,"1080":1,"1082":1,"1084":2,"1090":1,"1091":1,"1098":1,"1100":1,"1101":1,"1108":1,"1112":2,"1114":1,"1116":1,"1118":2,"1124":1,"1125":1,"1132":1,"1134":1,"1135":1,"1142":1,"1146":2,"1148":1,"1150":1,"1152":2,"1158":1,"1159":1,"1166":1,"1168":1,"1169":1,"1176":1,"1180":2,"1182":1,"1184":1,"1186":2,"1192":2,"1214":1,"1215":1,"1219":1,"1221":1,"1222":1,"1229":1,"1233":2,"1235":1,"1237":1,"1239":2,"1273":1,"1275":1,"1283":2,"1306":1,"1311":6,"1312":1,"1313":1,"1364":1,"1377":1,"1378":1,"1395":1,"1409":1,"1413":1,"1428":2,"1444":3,"1468":1,"1486":1,"1493":1,"1538":3,"1541":2,"1589":1,"1593":1,"1642":1,"1685":1,"1699":1,"1748":1,"1776":1,"1849":6,"1850":1,"1865":1,"1947":2,"1954":2,"1960":1,"1961":1,"1971":2,"1985":2,"1989":1,"2059":1,"2080":1,"2085":18,"2088":1,"2107":1,"2178":1,"2198":2,"2244":1,"2254":1,"2259":1,"2272":1,"2286":2,"2290":2,"2297":1,"2305":1,"2309":2,"2310":1,"2312":1,"2317":17,"2318":12,"2319":11,"2347":1,"2417":1,"2429":2,"2445":1,"2453":1,"2504":1,"2563":1,"2577":1,"2617":1,"2714":1,"2726":1,"2728":1,"2734":1,"2741":1,"2742":1,"2751":1,"2769":1,"2777":1,"2786":2,"2792":1,"2829":1,"2840":1,"2913":1}}],["sinanju",{"2":{"222":1}}],["sinc",{"2":{"175":1}}],["since",{"2":{"113":1,"190":1,"240":1,"297":1,"522":1,"523":1,"524":1,"572":1,"701":1,"719":1,"720":2,"1417":1,"1425":1,"1470":1,"1471":1,"1484":1,"1488":1,"1514":1,"1525":1,"1558":1,"1595":1,"1641":1,"1685":1,"1785":1,"1788":1,"1795":1,"1977":1,"2189":1,"2249":1,"2265":1,"2269":1,"2275":2,"2310":2,"2331":1,"2379":1,"2402":1,"2429":1,"2447":1,"2466":1,"2502":1,"2554":1,"2634":2,"2667":1,"2720":1,"2756":1,"2784":1,"2795":1,"2919":2,"2923":1,"2926":1,"2929":1,"2944":1}}],["signed",{"2":{"1757":1,"1990":4,"2076":1,"2078":1}}],["sign",{"2":{"476":1,"607":1,"2912":2}}],["significance",{"2":{"2320":1}}],["significantly",{"2":{"196":1,"572":1,"1410":1,"1935":1,"2754":2}}],["significant",{"2":{"107":1,"166":1,"184":1,"203":1,"228":1,"545":1,"613":2,"753":1,"766":1,"1252":1,"1720":1,"1722":1,"1967":1,"1974":1,"2272":1,"2296":1,"2418":1,"2464":1,"2566":1,"2754":2,"2756":1}}],["signifies",{"2":{"403":1,"2685":1,"2776":1}}],["signum",{"2":{"122":2}}],["signature65",{"2":{"222":1}}],["signature",{"0":{"272":1},"2":{"114":1,"272":1,"656":1,"2502":1}}],["signals",{"2":{"2466":1}}],["signalling",{"2":{"125":1,"169":1}}],["signal",{"2":{"92":1,"191":1,"396":4,"1481":1,"1541":1,"1549":1,"1630":1,"1642":1,"1684":1,"1685":1}}],["sided",{"2":{"1989":1,"2435":1}}],["sidebar",{"2":{"681":1,"2586":1,"2674":2}}],["side",{"2":{"74":1,"138":1,"149":2,"156":1,"175":2,"222":1,"393":2,"555":1,"568":6,"570":1,"581":2,"666":1,"1313":1,"1655":1,"1659":3,"1666":2,"1685":2,"1974":1,"1976":3,"1977":2,"1983":1,"1987":2,"1989":3,"1997":5,"2014":1,"2016":1,"2057":1,"2059":1,"2198":4,"2270":1,"2271":1,"2274":3,"2276":12,"2277":6,"2278":7,"2305":1,"2407":1,"2409":1,"2427":1,"2428":1,"2431":1,"2466":1,"2507":1,"2634":1,"2728":1,"2729":1,"2757":5,"2926":3}}],["sides",{"0":{"2277":1},"2":{"21":1,"24":1,"107":2,"134":1,"222":1,"570":2,"1666":1,"1781":1,"1977":1,"1983":1,"1987":1,"2189":2,"2261":1,"2274":2,"2276":1,"2278":1,"2305":1,"2434":2,"2520":6,"2538":6}}],["sidestep",{"2":{"14":1}}],["simulation",{"2":{"2085":1}}],["simulate",{"2":{"1493":1,"2085":1}}],["simultaneous",{"2":{"622":1,"719":4,"1474":1,"1986":1,"2309":2}}],["simultaneously",{"2":{"283":1,"719":1,"1477":1,"1486":1,"1593":1,"1594":1,"1670":1,"1934":1,"2181":1,"2300":1,"2309":1,"2557":1}}],["simplfy",{"2":{"210":1}}],["simplified",{"2":{"2812":1}}],["simplifies",{"2":{"149":1,"198":1}}],["simplifying",{"2":{"179":1}}],["simplify",{"2":{"43":1,"160":1,"175":2,"191":1,"198":1,"210":1,"236":1,"262":1,"328":2,"425":1,"2714":1,"2729":1}}],["simplest",{"2":{"2613":1,"2636":1,"2709":1}}],["simpler",{"2":{"236":1,"403":1,"2318":1,"2667":1,"2909":1,"2932":1}}],["simple",{"0":{"473":1,"522":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1511":1,"1512":1,"1774":1,"2059":1,"2312":1},"2":{"46":1,"94":1,"114":2,"249":1,"285":1,"368":1,"381":1,"540":1,"626":1,"669":1,"670":1,"1327":3,"1348":1,"1378":1,"1380":1,"1388":1,"1425":1,"1451":1,"1473":1,"1537":1,"1539":1,"1551":1,"1673":1,"1781":2,"1849":3,"1850":1,"2085":3,"2088":1,"2225":1,"2280":1,"2295":1,"2303":1,"2309":1,"2312":1,"2390":1,"2397":1,"2423":1,"2432":1,"2468":1,"2470":1,"2579":1,"2597":1,"2616":1,"2658":1,"2668":1,"2704":1,"2726":1,"2844":1,"2894":1,"2932":1,"2941":1}}],["simply",{"0":{"2849":1},"2":{"21":1,"110":1,"194":1,"283":1,"380":1,"432":1,"487":1,"493":1,"661":1,"668":1,"673":1,"714":1,"719":1,"753":1,"776":1,"1288":1,"1382":1,"1499":1,"1503":1,"1510":1,"1538":1,"1642":1,"1717":1,"1721":1,"1850":1,"1865":1,"1867":1,"2058":1,"2076":1,"2088":1,"2107":1,"2109":1,"2179":1,"2228":1,"2232":1,"2234":1,"2300":1,"2317":1,"2318":1,"2437":1,"2474":1,"2501":1,"2502":1,"2508":1,"2553":1,"2636":1,"2660":1,"2718":1,"2885":1}}],["similarity",{"2":{"2728":1}}],["similarly",{"2":{"82":1,"1378":1,"1475":1,"1478":1,"1641":1,"1795":1,"2071":1,"2076":1,"2949":1}}],["similar",{"2":{"39":2,"99":1,"128":1,"154":1,"208":1,"214":1,"231":1,"294":1,"430":1,"491":1,"588":1,"628":1,"646":1,"702":1,"1300":1,"1338":1,"1423":1,"1457":1,"1463":1,"1549":1,"1681":1,"1766":1,"1777":1,"2000":1,"2012":1,"2181":1,"2261":1,"2304":1,"2309":1,"2319":3,"2320":1,"2331":1,"2502":1,"2508":1,"2567":1,"2576":1,"2579":1,"2587":1,"2612":1,"2615":1,"2629":1,"2637":1,"2700":1,"2736":1,"2738":1,"2741":1,"2930":1,"2931":1,"2945":1,"2947":1}}],["sea",{"2":{"2706":1}}],["searches",{"2":{"443":1,"1433":1,"1528":1}}],["searched",{"2":{"317":1,"1528":1}}],["searching",{"2":{"294":1,"433":1,"1525":1,"2559":1,"2902":1}}],["search",{"2":{"114":1,"175":1,"236":2,"341":1,"433":2,"1525":1,"1539":1,"2517":2,"2522":2,"2559":1,"2567":1,"2728":1,"2950":1}}],["sep",{"2":{"2567":1}}],["sepr",{"2":{"2516":1,"2522":1}}],["separator",{"2":{"2516":2,"2522":2}}],["separation",{"0":{"2741":1,"2742":1},"2":{"236":1,"2449":1,"2734":1}}],["separated",{"2":{"323":1,"472":1,"521":1,"671":2,"2277":1,"2327":1,"2634":1,"2728":1}}],["separately",{"2":{"228":1,"420":1,"1466":1,"1612":1,"1655":1,"1934":1,"2729":2,"2787":1}}],["separate",{"2":{"25":1,"51":1,"114":1,"134":1,"210":2,"236":1,"266":1,"277":1,"285":2,"323":1,"416":1,"513":1,"561":1,"575":1,"609":3,"612":1,"671":1,"714":1,"715":1,"1343":1,"1433":1,"1450":1,"1546":1,"1551":1,"1953":1,"1999":1,"2012":1,"2302":1,"2329":1,"2330":1,"2435":1,"2462":1,"2501":1,"2669":1,"2714":1,"2720":1,"2726":1,"2742":1,"2757":1,"2781":1,"2909":1,"2938":1,"2945":2}}],["seq",{"2":{"1686":3,"1952":3}}],["sequential",{"2":{"175":1,"1947":1,"2217":1,"2286":1}}],["sequence",{"0":{"1814":1,"1815":1,"1818":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"2213":1},"1":{"1816":1,"1817":1,"1821":1,"1822":1,"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1},"2":{"196":4,"294":1,"339":1,"527":3,"532":1,"564":1,"1446":1,"1524":1,"1602":1,"1686":4,"1687":4,"1796":1,"1798":6,"1800":1,"1801":2,"1802":7,"1803":2,"1804":5,"1805":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1818":1,"1819":1,"1820":1,"1822":1,"1823":1,"1825":1,"1826":1,"1828":1,"1829":1,"1831":1,"1832":1,"1834":1,"2216":3,"2217":3,"2218":3,"2251":1,"2327":4,"2331":2,"2344":1,"2345":1,"2346":1,"2359":1,"2362":1,"2363":1,"2364":1,"2367":1,"2368":1,"2369":1,"2370":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2536":1,"2757":1,"2796":1,"2825":1,"2870":1,"2879":3,"2919":6,"2920":7,"2921":2,"2926":1}}],["sequences",{"2":{"134":1,"196":1,"494":2,"1686":2,"2219":1,"2331":1,"2475":1,"2914":1,"2920":1}}],["sequencer",{"0":{"2249":1,"2250":1},"1":{"2250":1,"2251":1,"2252":1,"2253":1,"2254":1},"2":{"63":1,"175":1,"199":1,"231":3,"2249":1,"2250":2,"2251":1,"2252":1,"2253":12,"2254":32,"2941":1,"2945":1}}],["sequencing",{"2":{"39":1,"191":1,"229":1}}],["semi",{"2":{"2317":1}}],["semitone",{"2":{"1925":2,"2539":2}}],["semitones",{"2":{"1925":10,"2539":10}}],["semicolon",{"2":{"1593":1,"1692":1,"1774":5,"1850":1,"2088":1,"2308":2,"2512":1,"2522":1}}],["semantics",{"2":{"199":1,"277":1}}],["seil",{"2":{"1358":2}}],["seigaiha",{"2":{"143":2}}],["selling",{"2":{"2567":26}}],["self",{"2":{"487":1,"534":6,"668":1,"1620":1,"1622":1,"1850":1,"2088":1}}],["selectable",{"2":{"1410":1}}],["selects",{"2":{"564":1,"1446":1,"2790":1,"2796":1,"2914":3,"2921":1}}],["selectively",{"2":{"2186":1}}],["selecting",{"0":{"1442":1,"2696":1,"2708":1,"2885":1},"1":{"2697":1,"2698":1,"2699":1,"2709":1,"2710":1},"2":{"266":1,"393":1,"746":1,"1313":1,"2298":1,"2573":1,"2663":1}}],["selection",{"0":{"2180":1,"2705":1},"2":{"75":1,"114":1,"172":1,"175":2,"199":1,"210":1,"222":1,"249":1,"285":1,"690":1,"743":1,"1289":1,"1547":1,"1620":1,"1937":2,"2039":1,"2068":1,"2375":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2404":1,"2406":1,"2408":1,"2410":1,"2455":1,"2695":1,"2705":1,"2707":1,"2728":1,"2790":1,"2872":1}}],["select",{"0":{"596":1,"597":1,"901":1,"936":1,"970":1,"1004":1,"1038":1,"1072":1,"1106":1,"1140":1,"1174":1,"1227":1},"1":{"902":1,"937":1,"971":1,"1005":1,"1039":1,"1073":1,"1107":1,"1141":1,"1175":1,"1228":1},"2":{"210":1,"236":1,"393":16,"397":3,"561":1,"570":1,"596":3,"597":1,"686":2,"687":1,"688":1,"726":2,"734":1,"740":1,"750":2,"759":2,"902":1,"937":1,"971":1,"1005":1,"1039":1,"1073":1,"1107":1,"1141":1,"1175":1,"1207":1,"1228":1,"1247":1,"1248":4,"1265":1,"1312":1,"1413":1,"1480":1,"1489":1,"1681":2,"1937":3,"1966":1,"1967":1,"1971":1,"1974":1,"1979":1,"1981":1,"1982":1,"1983":4,"2065":1,"2068":1,"2180":1,"2251":1,"2273":1,"2275":1,"2288":1,"2295":1,"2296":1,"2298":1,"2387":2,"2433":1,"2516":2,"2517":1,"2522":3,"2606":2,"2609":2,"2659":3,"2662":2,"2663":1,"2667":2,"2673":2,"2674":1,"2679":1,"2703":1,"2714":1,"2753":1,"2756":11,"2885":1,"2914":1,"2920":2,"2921":2}}],["selector",{"2":{"191":1,"2659":1}}],["selected",{"0":{"1210":1},"1":{"1211":1,"1212":1,"1213":1},"2":{"65":1,"170":1,"599":1,"721":1,"722":1,"753":1,"754":1,"768":1,"773":1,"776":1,"779":1,"782":1,"1198":1,"1200":1,"1201":1,"1203":3,"1204":4,"1254":1,"1257":1,"1259":1,"1262":1,"1294":1,"1475":1,"1480":1,"1481":1,"1482":1,"1485":4,"1486":4,"1683":1,"1687":1,"2187":1,"2327":2,"2328":5,"2331":4,"2332":2,"2344":1,"2345":1,"2346":1,"2377":1,"2552":2,"2702":1,"2705":1,"2902":2,"2903":1,"2914":2}}],["session",{"2":{"312":1}}],["segregrate",{"2":{"285":1}}],["segments",{"2":{"2189":5,"2191":2,"2425":1}}],["segment",{"2":{"236":3,"2189":6,"2191":3}}],["seven",{"2":{"2794":2}}],["seventyfive",{"2":{"222":1}}],["severity",{"2":{"312":1}}],["several",{"2":{"201":1,"215":2,"367":1,"382":1,"420":1,"490":1,"508":1,"540":1,"596":1,"604":1,"613":1,"633":1,"1192":1,"1198":1,"1201":1,"1206":1,"1343":1,"1348":1,"1676":1,"1787":1,"2007":1,"2270":1,"2294":1,"2313":1,"2403":1,"2450":1,"2451":1,"2482":1,"2499":1,"2581":1,"2652":1,"2657":1,"2691":1,"2869":1,"2902":1,"2931":1,"2945":1}}],["severely",{"2":{"123":1,"2888":1}}],["sekigon",{"2":{"114":1}}],["serbian",{"2":{"2887":5}}],["servicing",{"2":{"720":1}}],["services",{"2":{"575":1}}],["service",{"0":{"368":1},"1":{"369":1,"370":1,"371":1,"372":1},"2":{"294":1,"366":2,"368":1,"378":1,"381":1,"683":1,"1316":2,"1981":1,"2415":1,"2715":1,"2728":1}}],["served",{"2":{"579":1}}],["serves",{"2":{"461":1}}],["serve",{"2":{"461":3,"2824":1}}],["servertype",{"2":{"2674":1}}],["server",{"2":{"381":1,"429":1,"460":1,"2481":1,"2671":1,"2673":2,"2706":1,"2897":1}}],["serratus",{"2":{"222":1}}],["serenity",{"2":{"222":1}}],["serpent65",{"2":{"222":1}}],["serious",{"2":{"381":1,"2731":1}}],["series",{"0":{"2446":1},"2":{"149":1,"249":1,"393":2,"554":1,"591":1,"749":1,"750":1,"1477":1,"2490":1,"2942":1}}],["serialport>",{"2":{"2392":1}}],["serialized",{"2":{"1537":1,"1538":3}}],["serial",{"0":{"1192":1,"1203":1,"1317":1,"2266":1},"1":{"1193":1,"1194":1,"1195":1,"1196":1,"1197":1,"1198":1,"1199":1,"1200":1,"1201":1,"1202":1,"1203":1,"1204":1,"1205":1,"1206":1,"1207":1,"1208":1,"1209":1,"1210":1,"1211":1,"1212":1,"1213":1},"2":{"20":1,"35":1,"63":2,"65":1,"74":1,"93":1,"94":1,"111":1,"112":2,"114":3,"133":2,"134":2,"149":2,"175":5,"191":2,"199":3,"277":11,"285":1,"308":2,"317":1,"570":7,"685":1,"1192":2,"1193":1,"1194":2,"1195":2,"1197":2,"1198":5,"1200":6,"1201":8,"1203":8,"1204":3,"1205":3,"1207":4,"1208":1,"1209":2,"1269":2,"1317":1,"1625":1,"1966":1,"1978":1,"1981":1,"2261":4,"2262":1,"2266":1,"2275":7,"2294":4,"2297":1,"2298":3,"2378":1,"2392":1,"2484":1,"2486":1,"2488":1,"2494":1,"2499":1,"2502":2,"2508":1,"2674":1,"2692":1,"2702":7,"2704":1,"2848":1,"2880":2}}],["sergiopoverony",{"2":{"114":1}}],["sentence",{"2":{"2317":1}}],["sentences",{"2":{"681":1,"1522":1,"1762":1}}],["sent",{"2":{"222":1,"263":2,"297":1,"320":1,"646":1,"1252":1,"1283":1,"1286":1,"1287":1,"1288":1,"1362":1,"1377":2,"1381":1,"1427":1,"1447":2,"1454":1,"1486":1,"1501":1,"1517":1,"1645":1,"1681":1,"1747":1,"1781":1,"1788":1,"1795":1,"1986":2,"1990":3,"1992":1,"1993":1,"2048":2,"2053":1,"2059":1,"2178":1,"2219":2,"2222":1,"2256":1,"2257":1,"2259":2,"2277":1,"2300":5,"2309":1,"2347":1,"2470":1,"2550":1,"2840":1,"2922":4,"2923":1,"2926":1,"2929":1,"2931":1}}],["sensible",{"2":{"2076":1}}],["sensitivity",{"2":{"1974":1,"1983":1,"2047":1}}],["sensitive",{"2":{"513":1,"644":1,"1440":1,"1974":3}}],["sensing",{"2":{"1313":1}}],["senselessclay",{"2":{"222":1}}],["sense75",{"2":{"210":1}}],["sense",{"2":{"123":1,"512":1,"613":1,"1343":1,"1519":1,"2068":1,"2678":1,"2714":1,"2907":1}}],["sensors",{"2":{"160":1,"273":1,"276":1,"284":1,"285":1,"1965":1,"1983":5,"1984":1,"1988":2,"2728":1}}],["sensor",{"0":{"276":1,"284":1,"1965":1,"1966":1,"1967":1,"1978":1,"1979":1,"1981":1,"1982":1,"1983":1},"1":{"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1971":1,"1972":1,"1973":1,"1974":1,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1984":1},"2":{"114":3,"118":2,"149":4,"190":1,"191":1,"249":2,"273":3,"276":1,"284":1,"285":1,"328":1,"339":1,"696":2,"1965":2,"1966":5,"1967":5,"1968":1,"1970":2,"1973":1,"1974":7,"1975":4,"1978":4,"1979":2,"1980":2,"1981":5,"1982":2,"1983":15,"1984":2,"1985":7,"1988":3}}],["sends",{"0":{"2470":1},"2":{"213":1,"683":1,"1364":1,"1377":1,"1422":1,"1444":1,"1453":1,"1454":1,"1455":1,"1525":1,"1690":2,"1770":1,"1774":1,"1988":3,"1990":1,"2073":1,"2309":4,"2523":1,"2572":1,"2617":1,"2752":1,"2790":1,"2884":1,"2930":1,"2931":1}}],["sendstring",{"0":{"157":1,"2886":1},"2":{"114":1,"160":1,"172":1,"175":1,"222":1,"1449":1,"1486":1,"2221":1,"2885":1,"2886":3,"2887":53}}],["sending",{"0":{"1327":1,"1923":1,"2057":1},"2":{"175":2,"191":2,"199":1,"561":1,"626":1,"1192":1,"1456":1,"1662":1,"1730":1,"1732":1,"1774":2,"1990":1,"1999":1,"2046":1,"2048":1,"2054":1,"2300":1,"2309":1,"2318":1,"2418":1,"2757":1,"2882":1,"2884":1}}],["sendyyeah",{"2":{"74":1}}],["sendz",{"2":{"74":1}}],["send",{"0":{"1446":1,"2063":1,"2219":1,"2228":1,"2230":1,"2232":1,"2234":1,"2236":1,"2238":1,"2240":1,"2242":1,"2244":1,"2247":1,"2248":1,"2312":1,"2314":1,"2316":1,"2349":1,"2474":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"2064":1,"2220":1,"2221":1,"2222":1,"2223":1,"2224":1,"2225":1,"2226":1,"2227":1,"2228":1,"2229":2,"2230":1,"2231":2,"2232":1,"2233":2,"2234":1,"2235":2,"2236":1,"2237":2,"2238":1,"2239":2,"2240":1,"2241":2,"2242":1,"2243":2,"2244":1,"2245":2,"2246":1,"2247":1,"2248":1,"2350":1},"2":{"40":1,"94":1,"114":1,"149":1,"157":1,"160":1,"174":1,"175":4,"191":1,"195":1,"196":3,"210":1,"236":1,"249":1,"266":1,"294":1,"574":1,"593":6,"630":1,"631":1,"773":1,"776":1,"782":1,"1259":1,"1356":1,"1378":2,"1396":1,"1417":1,"1423":1,"1440":2,"1444":2,"1446":8,"1447":2,"1448":5,"1450":6,"1455":1,"1462":1,"1471":2,"1472":3,"1486":1,"1518":1,"1535":5,"1538":1,"1539":1,"1602":1,"1605":2,"1622":1,"1646":1,"1665":1,"1676":4,"1726":1,"1730":1,"1731":1,"1732":1,"1733":1,"1750":1,"1766":1,"1767":3,"1776":7,"1781":1,"1798":3,"1801":1,"1804":2,"1919":1,"1924":2,"1953":1,"1954":4,"1988":1,"1990":5,"1992":1,"2015":1,"2032":1,"2048":3,"2057":2,"2058":3,"2059":3,"2063":1,"2064":1,"2071":2,"2076":2,"2077":3,"2079":10,"2219":1,"2220":1,"2222":7,"2223":1,"2225":1,"2228":1,"2232":1,"2234":1,"2247":2,"2248":2,"2259":9,"2260":5,"2276":1,"2277":3,"2298":1,"2300":2,"2308":2,"2309":1,"2314":1,"2317":8,"2318":1,"2331":1,"2332":3,"2348":1,"2349":1,"2350":1,"2357":1,"2371":1,"2418":5,"2466":2,"2470":2,"2475":1,"2552":3,"2553":1,"2554":1,"2572":1,"2573":1,"2575":2,"2576":4,"2577":2,"2790":1,"2829":1,"2846":1,"2856":1,"2882":2,"2886":3,"2913":1,"2919":2,"2929":2}}],["sectors",{"2":{"754":3}}],["sector",{"2":{"333":1,"754":3,"756":2,"759":2}}],["section>",{"2":{"497":2,"498":2}}],["sections",{"0":{"352":1,"362":1},"2":{"194":1,"341":1,"661":1,"1382":1,"2180":1,"2468":1,"2560":1,"2580":1,"2621":1,"2634":1,"2696":1,"2722":1,"2754":1,"2792":1}}],["section",{"0":{"479":1},"2":{"21":2,"24":1,"124":1,"195":1,"217":1,"236":1,"240":1,"356":1,"375":1,"404":1,"476":1,"477":1,"496":4,"504":1,"512":1,"667":1,"688":1,"689":1,"746":2,"752":1,"758":1,"1198":2,"1200":1,"1201":2,"1312":1,"1330":1,"1427":1,"1537":1,"1627":1,"1783":1,"2178":1,"2281":1,"2300":1,"2313":1,"2399":1,"2418":1,"2423":1,"2437":1,"2451":1,"2482":1,"2502":2,"2503":2,"2554":1,"2573":1,"2582":1,"2609":1,"2613":1,"2616":1,"2632":2,"2651":1,"2655":1,"2695":1,"2697":1,"2698":1,"2709":1,"2718":1,"2727":1,"2757":1,"2759":1,"2761":1,"2794":2,"2906":1,"2907":1,"2936":1,"2939":1}}],["security",{"0":{"312":1},"2":{"312":8,"317":1,"1440":1}}],["secure",{"0":{"2212":1,"2879":1},"1":{"2213":1,"2214":1,"2215":1,"2216":1,"2217":1,"2218":1},"2":{"160":2,"172":2,"175":2,"2212":2,"2214":1,"2216":4,"2217":3,"2218":7,"2435":1,"2667":1,"2790":1,"2879":3,"2941":1}}],["secondary",{"2":{"175":1,"191":1,"716":1,"1475":1,"1477":1,"1639":1,"1974":1,"1977":1,"2085":1,"2880":11}}],["second",{"0":{"2705":1},"2":{"90":2,"157":1,"266":1,"434":1,"565":1,"609":1,"610":2,"643":1,"656":1,"726":1,"748":1,"1381":1,"1446":1,"1448":1,"1474":1,"1478":1,"1486":2,"1503":1,"1525":1,"1668":2,"1774":1,"1824":1,"1827":1,"1830":1,"1833":1,"1846":1,"1936":3,"1939":1,"1983":2,"2076":1,"2082":1,"2085":1,"2261":1,"2272":1,"2278":1,"2309":2,"2310":1,"2427":1,"2464":1,"2503":1,"2612":1,"2634":1,"2674":1,"2705":1,"2876":1,"2922":3,"2937":3,"2938":1}}],["seconds>",{"2":{"434":1}}],["seconds",{"0":{"15":1},"2":{"44":1,"522":1,"523":2,"524":4,"561":1,"581":1,"657":1,"1544":1,"1593":1,"1598":2,"1627":1,"1792":1,"2379":5,"2391":1,"2392":1,"2393":1,"2394":1,"2398":1,"2522":1,"2857":2,"2861":1,"2879":1,"2880":1}}],["setpixel",{"2":{"2757":4}}],["setpinoutputopendrain",{"2":{"243":1}}],["setpinoutputpushpull",{"2":{"243":1}}],["setpinoutput",{"2":{"243":1}}],["setpininputlow",{"2":{"243":1}}],["setpininput",{"2":{"243":1}}],["setpininputhigh",{"2":{"24":2,"243":1}}],["setrgb",{"2":{"1430":5,"2089":1,"2198":5,"2205":3}}],["setw",{"2":{"339":1}}],["settling",{"2":{"1410":3}}],["settle",{"2":{"1409":1,"2927":1,"2931":1}}],["settles",{"2":{"1409":1,"2928":1,"2931":1}}],["settled",{"2":{"289":1,"320":1,"2926":6,"2931":2}}],["setter",{"2":{"534":2}}],["setta21",{"2":{"143":2}}],["settable",{"2":{"114":1}}],["setting",{"0":{"474":1,"476":1,"497":1,"568":1,"1300":1,"1842":1,"2005":1,"2197":1,"2270":1,"2503":1,"2591":1,"2618":1,"2653":1,"2664":1,"2786":1},"1":{"569":1,"1843":1,"2006":1,"2271":1,"2272":1,"2273":1,"2274":1,"2619":1,"2620":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1,"2628":1,"2629":1},"2":{"87":1,"88":3,"93":1,"104":3,"127":3,"175":1,"191":2,"303":1,"338":1,"376":1,"426":1,"429":1,"474":2,"482":1,"494":1,"556":3,"561":1,"564":1,"575":2,"592":1,"609":1,"637":1,"684":1,"701":1,"727":1,"766":1,"768":3,"861":1,"891":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1200":1,"1316":1,"1370":1,"1412":1,"1425":1,"1471":1,"1487":1,"1489":1,"1493":1,"1502":1,"1503":1,"1517":1,"1538":1,"1598":1,"1601":1,"1684":1,"1685":1,"1736":1,"1763":1,"1777":1,"1794":1,"1838":1,"1842":1,"1850":1,"1935":5,"1936":3,"1937":1,"1960":2,"1966":1,"1967":2,"1968":1,"1970":3,"1971":1,"1972":1,"1974":4,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1985":1,"1986":2,"1987":1,"1988":1,"2001":3,"2011":1,"2013":1,"2088":1,"2191":1,"2207":1,"2210":1,"2250":1,"2272":1,"2273":2,"2278":2,"2296":2,"2384":1,"2391":1,"2393":1,"2400":1,"2402":1,"2403":1,"2405":1,"2406":1,"2407":1,"2408":1,"2409":1,"2410":1,"2414":1,"2416":6,"2417":1,"2432":1,"2496":1,"2501":1,"2503":1,"2674":1,"2683":1,"2789":1,"2910":3,"2925":1}}],["settings",{"0":{"762":1,"1970":1,"1971":1,"1972":1,"1974":1,"1975":1,"2045":1,"2052":1,"2185":1,"2889":1,"2890":1,"2891":1,"2894":1},"1":{"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1},"2":{"69":1,"74":1,"75":1,"114":1,"131":1,"134":1,"353":1,"393":1,"555":1,"557":2,"564":5,"641":1,"719":1,"762":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1200":1,"1320":1,"1370":1,"1415":2,"1416":1,"1417":3,"1420":1,"1466":2,"1472":1,"1486":1,"1589":1,"1592":1,"1605":1,"1607":1,"1678":2,"1681":3,"1787":1,"1935":1,"1936":2,"1937":1,"1938":1,"1939":1,"1940":1,"1970":1,"1974":1,"2046":1,"2211":1,"2278":1,"2298":1,"2323":1,"2416":1,"2418":1,"2454":1,"2455":1,"2597":1,"2651":1,"2669":4,"2674":1,"2714":1,"2717":1,"2728":1,"2786":1,"2789":1,"2884":1,"2892":1,"2912":1,"2920":1,"2921":1,"2922":1}}],["sets",{"2":{"40":1,"561":5,"564":4,"570":1,"635":1,"641":3,"698":1,"701":3,"715":1,"1417":1,"1422":1,"1428":5,"1493":5,"1662":2,"1681":3,"1688":1,"1838":1,"1852":6,"1938":3,"1954":4,"1967":5,"1968":3,"1970":3,"1974":7,"1980":1,"1983":8,"1988":3,"1989":2,"1997":1,"2008":1,"2091":8,"2096":1,"2180":1,"2202":2,"2273":1,"2275":3,"2278":3,"2290":2,"2322":3,"2323":1,"2380":1,"2391":1,"2393":1,"2400":1,"2405":1,"2407":1,"2409":1,"2414":2,"2455":1,"2728":1,"2911":2}}],["sethsv",{"0":{"2159":1,"2161":1},"1":{"2162":1},"2":{"39":1,"641":1,"1417":7,"2089":1,"2097":1,"2198":7,"2201":2,"2205":3}}],["setups",{"2":{"719":1,"722":1,"1962":13,"2564":1}}],["setup",{"0":{"364":1,"508":1,"1195":1,"1198":1,"1201":1,"1376":1,"1520":1,"1521":1,"1683":1,"1768":1,"2592":1,"2593":1,"2600":1,"2628":1,"2669":1},"1":{"509":1,"510":1,"511":1,"1521":1,"1522":1,"1523":1,"1684":1,"1685":1,"2601":1,"2602":1,"2603":1},"2":{"13":1,"47":1,"93":1,"191":1,"364":1,"384":1,"393":1,"394":1,"396":2,"426":1,"487":1,"504":1,"508":1,"515":1,"633":1,"684":1,"767":1,"1200":1,"1247":1,"1268":1,"1314":1,"1425":1,"1503":1,"1522":1,"1668":1,"1947":1,"1953":1,"1956":1,"1957":1,"1962":2,"1987":1,"2189":1,"2220":1,"2286":1,"2325":1,"2417":1,"2431":1,"2444":1,"2445":1,"2446":1,"2464":1,"2580":1,"2591":1,"2598":2,"2599":1,"2602":1,"2608":1,"2610":1,"2628":8,"2663":1,"2814":1,"2935":2}}],["set",{"0":{"412":1,"707":1,"709":1,"712":1,"735":1,"737":1,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1306":1,"1308":1,"1430":1,"1432":1,"1653":1,"1711":1,"1734":1,"1736":1,"1758":1,"1760":1,"1865":1,"1867":1,"1889":1,"1891":1,"1895":1,"1897":1,"2012":1,"2035":1,"2107":1,"2109":1,"2143":1,"2145":1,"2149":1,"2151":1,"2336":1,"2340":1,"2342":1,"2432":1,"2665":1},"1":{"708":1,"710":1,"713":1,"736":1,"738":1,"813":1,"815":1,"817":1,"819":1,"821":1,"823":1,"840":1,"842":1,"844":1,"846":1,"848":1,"850":1,"872":1,"874":1,"876":1,"878":1,"880":1,"882":1,"904":1,"906":1,"908":1,"910":1,"912":1,"914":1,"939":1,"941":1,"943":1,"945":1,"947":1,"949":1,"973":1,"975":1,"977":1,"979":1,"981":1,"983":1,"1007":1,"1009":1,"1011":1,"1013":1,"1015":1,"1017":1,"1041":1,"1043":1,"1045":1,"1047":1,"1049":1,"1051":1,"1075":1,"1077":1,"1079":1,"1081":1,"1083":1,"1085":1,"1109":1,"1111":1,"1113":1,"1115":1,"1117":1,"1119":1,"1143":1,"1145":1,"1147":1,"1149":1,"1151":1,"1153":1,"1177":1,"1179":1,"1181":1,"1183":1,"1185":1,"1187":1,"1230":1,"1232":1,"1234":1,"1236":1,"1238":1,"1240":1,"1307":1,"1309":1,"1654":1,"1712":1,"1735":1,"1737":1,"1759":1,"1761":1,"1866":1,"1868":1,"1890":1,"1892":1,"1896":1,"1898":1,"2036":1,"2108":1,"2110":1,"2144":1,"2146":1,"2150":1,"2152":1,"2337":1,"2341":1,"2343":1,"2666":1,"2667":1,"2668":1,"2669":1,"2670":1,"2671":1},"2":{"6":1,"13":1,"15":1,"18":1,"20":1,"23":1,"28":1,"39":1,"40":2,"63":1,"83":1,"90":1,"92":1,"93":1,"114":2,"134":1,"141":1,"153":2,"175":5,"178":1,"188":2,"195":2,"199":3,"210":2,"220":1,"222":1,"228":1,"236":4,"243":6,"266":2,"277":2,"285":2,"333":1,"383":1,"422":1,"430":1,"444":1,"455":2,"469":2,"472":1,"473":1,"474":1,"476":1,"489":1,"492":1,"497":1,"505":1,"521":1,"555":1,"556":1,"560":1,"561":1,"564":1,"568":4,"571":1,"579":1,"588":1,"611":1,"633":1,"635":6,"637":1,"639":2,"651":1,"652":2,"653":2,"655":1,"661":1,"666":1,"669":3,"685":1,"701":3,"703":1,"707":1,"708":3,"709":1,"710":3,"712":1,"713":1,"716":1,"722":1,"725":1,"735":1,"736":3,"737":1,"738":3,"744":2,"754":1,"761":16,"764":1,"768":1,"772":4,"801":1,"810":1,"811":1,"812":1,"813":3,"814":1,"815":3,"816":1,"817":1,"818":1,"819":1,"827":1,"829":1,"837":1,"838":1,"839":1,"840":3,"841":1,"842":3,"843":1,"844":1,"845":1,"846":1,"856":1,"858":1,"869":1,"870":1,"871":1,"872":3,"873":1,"874":3,"875":1,"876":1,"877":1,"878":1,"888":1,"890":1,"899":1,"900":1,"903":1,"904":3,"905":1,"906":3,"907":1,"908":1,"909":1,"910":1,"920":1,"922":1,"923":1,"934":1,"935":1,"938":1,"939":3,"940":1,"941":3,"942":1,"943":1,"944":1,"945":1,"955":1,"957":1,"968":1,"969":1,"972":1,"973":3,"974":1,"975":3,"976":1,"977":1,"978":1,"979":1,"989":1,"991":1,"1002":1,"1003":1,"1006":1,"1007":3,"1008":1,"1009":3,"1010":1,"1011":1,"1012":1,"1013":1,"1023":1,"1025":1,"1036":1,"1037":1,"1040":1,"1041":3,"1042":1,"1043":3,"1044":1,"1045":1,"1046":1,"1047":1,"1057":1,"1059":1,"1070":1,"1071":1,"1074":1,"1075":3,"1076":1,"1077":3,"1078":1,"1079":1,"1080":1,"1081":1,"1091":1,"1093":1,"1094":1,"1104":1,"1105":1,"1108":1,"1109":3,"1110":1,"1111":3,"1112":1,"1113":1,"1114":1,"1115":1,"1125":1,"1127":1,"1128":1,"1138":1,"1139":1,"1142":1,"1143":3,"1144":1,"1145":3,"1146":1,"1147":1,"1148":1,"1149":1,"1159":1,"1161":1,"1172":1,"1173":1,"1176":1,"1177":3,"1178":1,"1179":3,"1180":1,"1181":1,"1182":1,"1183":1,"1215":1,"1217":1,"1225":1,"1226":1,"1229":1,"1230":3,"1231":1,"1232":3,"1233":1,"1234":1,"1235":1,"1236":1,"1245":1,"1248":1,"1252":1,"1266":1,"1269":1,"1284":1,"1285":1,"1306":1,"1307":3,"1308":1,"1309":3,"1333":1,"1372":1,"1378":4,"1381":1,"1382":1,"1394":1,"1395":1,"1397":1,"1398":1,"1413":4,"1414":1,"1416":1,"1417":9,"1422":1,"1423":1,"1425":1,"1427":1,"1428":9,"1430":2,"1431":1,"1432":2,"1433":1,"1434":1,"1442":1,"1470":6,"1472":2,"1474":1,"1477":2,"1480":1,"1481":2,"1484":2,"1486":1,"1487":4,"1488":1,"1491":1,"1498":1,"1503":1,"1517":1,"1518":2,"1523":1,"1528":1,"1538":1,"1543":1,"1546":1,"1551":1,"1556":1,"1566":1,"1567":1,"1589":1,"1590":1,"1601":2,"1607":1,"1608":2,"1609":1,"1620":4,"1621":1,"1625":3,"1638":6,"1641":1,"1642":1,"1653":1,"1678":1,"1681":3,"1683":1,"1684":2,"1687":3,"1702":1,"1708":1,"1713":1,"1734":1,"1736":1,"1741":2,"1743":4,"1751":1,"1758":1,"1759":2,"1760":1,"1761":1,"1776":1,"1781":6,"1782":4,"1794":2,"1837":1,"1843":3,"1846":1,"1847":2,"1850":2,"1852":5,"1855":4,"1865":1,"1866":1,"1867":1,"1868":1,"1869":1,"1871":1,"1889":1,"1890":1,"1891":1,"1892":1,"1895":1,"1896":1,"1897":1,"1898":1,"1925":49,"1933":3,"1935":1,"1936":1,"1938":1,"1939":5,"1948":1,"1949":6,"1952":1,"1954":5,"1958":4,"1970":1,"1974":1,"1983":3,"1984":1,"1986":1,"1988":3,"1989":3,"1990":2,"1992":2,"1993":4,"1994":13,"1996":4,"1997":4,"1999":2,"2000":1,"2001":5,"2008":13,"2011":3,"2012":8,"2013":2,"2021":1,"2025":1,"2035":1,"2043":1,"2046":6,"2047":1,"2048":1,"2072":1,"2078":4,"2082":1,"2083":2,"2085":3,"2086":1,"2088":2,"2091":8,"2094":4,"2095":4,"2096":3,"2107":1,"2108":3,"2109":1,"2110":3,"2111":1,"2113":1,"2143":1,"2144":1,"2145":1,"2146":1,"2149":1,"2150":1,"2151":1,"2152":1,"2159":1,"2160":3,"2161":1,"2162":3,"2190":6,"2191":1,"2194":1,"2195":3,"2197":2,"2198":10,"2199":2,"2201":2,"2202":2,"2203":1,"2207":4,"2210":1,"2213":1,"2219":1,"2223":1,"2246":1,"2253":2,"2254":12,"2260":1,"2266":1,"2273":1,"2275":3,"2278":5,"2288":2,"2290":1,"2295":2,"2297":1,"2298":3,"2300":3,"2301":1,"2302":1,"2309":2,"2310":1,"2315":1,"2319":6,"2322":1,"2323":4,"2327":2,"2331":2,"2336":1,"2337":1,"2380":1,"2381":1,"2384":1,"2386":1,"2388":1,"2402":1,"2416":1,"2417":2,"2418":2,"2419":1,"2427":1,"2454":1,"2455":1,"2459":1,"2460":1,"2466":1,"2472":1,"2474":1,"2496":1,"2503":1,"2508":1,"2509":1,"2520":2,"2527":1,"2535":2,"2538":2,"2539":49,"2540":3,"2569":1,"2573":1,"2582":1,"2583":4,"2591":1,"2594":1,"2597":1,"2616":1,"2618":1,"2620":1,"2629":1,"2632":1,"2637":1,"2640":4,"2651":3,"2652":1,"2653":2,"2664":1,"2665":2,"2667":1,"2669":2,"2674":2,"2685":1,"2716":1,"2729":1,"2754":2,"2755":5,"2756":2,"2757":10,"2761":1,"2784":1,"2785":2,"2786":5,"2795":1,"2841":1,"2846":1,"2858":2,"2860":1,"2879":2,"2884":1,"2886":2,"2910":1,"2912":1,"2915":1,"2922":4,"2931":1,"2936":1,"2940":1,"2941":1}}],["se",{"2":{"5":1,"191":1,"1741":1,"2216":4,"2885":1}}],["seeks",{"2":{"2522":1}}],["seen",{"2":{"190":1,"232":1,"339":1,"685":1,"1485":1,"1538":1,"2275":1,"2566":1,"2567":1,"2643":1}}],["seemingly",{"2":{"2567":4}}],["seem",{"2":{"119":1,"273":1,"276":2,"1376":1,"1801":1,"2757":1}}],["seems",{"2":{"40":1,"1361":1,"2567":1}}],["sees",{"0":{"1673":1},"2":{"39":1,"203":1,"1781":1}}],["see",{"2":{"2":1,"47":1,"118":1,"132":1,"138":1,"152":1,"153":1,"163":1,"166":2,"170":1,"173":1,"181":1,"187":1,"189":1,"196":1,"228":1,"229":1,"232":1,"240":1,"247":1,"288":1,"289":1,"297":1,"298":1,"304":1,"306":1,"315":1,"316":1,"320":1,"331":1,"341":1,"379":1,"381":1,"393":2,"403":1,"411":1,"426":1,"431":1,"466":1,"467":1,"468":1,"488":1,"491":2,"552":1,"555":1,"561":2,"564":4,"570":3,"574":2,"594":1,"599":1,"619":1,"669":2,"684":1,"686":2,"698":1,"699":1,"716":1,"719":3,"721":1,"743":1,"746":2,"752":1,"755":1,"758":1,"766":1,"769":1,"770":1,"891":1,"1198":4,"1201":4,"1289":1,"1312":1,"1315":2,"1318":1,"1319":1,"1320":1,"1330":1,"1332":1,"1333":5,"1338":1,"1343":1,"1345":1,"1355":1,"1356":1,"1359":1,"1360":1,"1367":1,"1375":1,"1378":1,"1398":1,"1403":1,"1409":2,"1414":1,"1417":1,"1421":1,"1422":3,"1428":1,"1446":1,"1452":1,"1463":1,"1467":2,"1470":1,"1476":1,"1480":1,"1489":1,"1493":1,"1494":1,"1499":1,"1503":1,"1518":1,"1528":1,"1533":1,"1547":1,"1558":1,"1580":1,"1592":2,"1593":2,"1595":1,"1605":1,"1635":1,"1636":1,"1637":1,"1673":1,"1690":2,"1697":1,"1768":1,"1770":1,"1773":1,"1774":1,"1786":3,"1835":1,"1845":1,"1923":1,"1960":2,"1974":2,"1987":1,"1989":1,"1990":1,"1999":2,"2011":1,"2039":1,"2044":1,"2046":2,"2068":1,"2075":1,"2081":1,"2095":1,"2096":1,"2178":1,"2179":1,"2188":1,"2191":1,"2194":1,"2195":1,"2219":1,"2258":1,"2275":1,"2293":1,"2318":1,"2319":1,"2326":1,"2327":1,"2387":2,"2388":1,"2399":1,"2413":1,"2414":2,"2418":6,"2428":1,"2435":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2453":1,"2454":1,"2455":1,"2466":2,"2480":1,"2490":1,"2509":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2541":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2552":1,"2561":1,"2565":1,"2578":1,"2584":1,"2586":1,"2610":1,"2612":1,"2615":1,"2616":2,"2622":1,"2634":1,"2637":1,"2650":2,"2682":1,"2694":1,"2714":3,"2716":1,"2721":1,"2723":1,"2724":1,"2726":1,"2727":1,"2728":4,"2731":1,"2732":2,"2756":2,"2757":2,"2767":3,"2768":1,"2773":1,"2776":3,"2782":1,"2794":1,"2795":1,"2851":1,"2880":4,"2889":1,"2910":1,"2912":2,"2913":1,"2930":1,"2931":1,"2932":1,"2940":1}}],["swy",{"2":{"860":4,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1}}],["sw1",{"2":{"729":6,"863":5,"928":5,"962":5,"996":5,"1030":5,"1064":5,"1098":5,"1132":5,"1166":5}}],["swo",{"2":{"396":1}}],["swordfish",{"2":{"210":1}}],["swclk",{"2":{"396":2,"2507":1,"2508":1,"2674":1,"2691":1}}],["swdio",{"2":{"396":2,"2507":1,"2508":1,"2674":1,"2691":1}}],["swd",{"2":{"384":1,"390":1,"396":1,"2691":1}}],["swx",{"2":{"236":1,"857":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1095":3,"1126":1,"1129":3,"1160":1,"1163":3}}],["sw",{"2":{"205":1,"857":3,"860":15,"921":1,"925":2,"956":1,"959":2,"990":1,"993":2,"1024":1,"1027":2,"1058":1,"1061":2,"1092":2,"1095":6,"1126":2,"1129":6,"1160":2,"1163":6,"1741":1,"2181":1,"2544":1}}],["switzerland",{"2":{"2887":2}}],["switched",{"2":{"1427":1,"1486":1,"2182":1,"2652":1}}],["switches",{"0":{"1655":1,"1924":1,"2863":1},"1":{"1656":1,"1657":1,"1658":1,"1659":1,"1660":1},"2":{"114":1,"199":1,"236":1,"247":1,"249":1,"622":1,"1313":1,"1354":1,"1409":1,"1410":1,"1422":1,"1493":1,"1558":1,"1655":1,"1656":3,"1681":2,"1789":1,"1924":1,"1961":1,"2073":1,"2264":1,"2422":1,"2423":2,"2424":1,"2425":1,"2466":1,"2639":1,"2721":1,"2805":1,"2863":2,"2880":1}}],["switchplate",{"2":{"222":1}}],["switchs",{"2":{"160":1}}],["switching",{"0":{"1422":1,"2297":1,"2535":1},"1":{"1423":1},"2":{"40":1,"114":1,"132":1,"175":1,"575":1,"1353":2,"1373":1,"1422":1,"1424":1,"1541":1,"1765":1,"1948":1,"1960":2,"1961":2,"2054":1,"2287":1,"2293":2,"2309":1,"2327":1,"2377":1,"2503":1,"2535":1}}],["switch",{"0":{"16":1,"105":1,"231":1,"247":1,"1354":1,"1649":1,"1650":1,"1651":1,"1652":1,"1656":1,"1659":2,"1660":2,"1741":1,"2319":1},"2":{"3":1,"48":1,"49":1,"94":1,"105":15,"107":1,"114":8,"175":2,"194":3,"195":2,"231":3,"235":1,"236":5,"247":7,"249":4,"285":1,"307":1,"317":1,"324":1,"325":1,"328":1,"396":1,"561":3,"593":2,"622":1,"631":1,"632":1,"686":1,"1311":1,"1313":3,"1331":1,"1354":1,"1366":1,"1372":1,"1380":2,"1381":1,"1409":5,"1410":1,"1417":2,"1422":5,"1426":3,"1427":1,"1430":1,"1431":1,"1446":3,"1447":2,"1452":1,"1462":1,"1471":1,"1472":1,"1491":1,"1503":3,"1510":2,"1517":3,"1533":2,"1541":1,"1600":1,"1605":1,"1612":5,"1613":1,"1617":2,"1618":5,"1620":1,"1622":1,"1625":3,"1639":2,"1645":2,"1649":1,"1650":1,"1651":1,"1652":1,"1655":8,"1656":7,"1657":7,"1659":1,"1660":1,"1681":6,"1738":1,"1741":1,"1743":1,"1747":1,"1760":1,"1761":1,"1789":2,"1791":1,"1795":1,"1850":1,"1870":1,"1872":1,"1924":1,"1945":1,"1958":1,"1961":1,"1962":1,"1968":1,"1994":1,"1996":1,"2003":1,"2006":1,"2011":1,"2012":2,"2013":1,"2044":1,"2069":2,"2070":1,"2071":2,"2072":2,"2073":1,"2074":1,"2076":1,"2077":2,"2079":4,"2088":1,"2095":1,"2096":1,"2112":1,"2114":1,"2191":2,"2194":1,"2225":1,"2284":1,"2293":2,"2294":2,"2297":3,"2298":1,"2315":1,"2316":1,"2317":2,"2318":3,"2319":7,"2331":1,"2332":6,"2377":1,"2399":1,"2404":1,"2414":1,"2418":1,"2423":2,"2427":1,"2428":5,"2434":1,"2435":2,"2453":1,"2466":3,"2483":1,"2528":1,"2547":1,"2552":6,"2558":2,"2575":1,"2576":1,"2577":1,"2651":1,"2659":1,"2663":1,"2674":1,"2720":1,"2728":2,"2783":1,"2794":4,"2854":2,"2863":1,"2880":1,"2890":1,"2895":1,"2910":3,"2911":2,"2912":2,"2920":3,"2921":2,"2922":1,"2924":1,"2925":1,"2928":1,"2929":1,"2931":1,"2938":3,"2949":1}}],["swillkb",{"2":{"2422":1}}],["swipe",{"2":{"1971":12}}],["swirls",{"2":{"2185":1}}],["swirling",{"2":{"2183":1,"2187":1}}],["swirl",{"2":{"354":1,"2181":2,"2183":1,"2184":2,"2185":2,"2186":1,"2187":1,"2209":1,"2210":1,"2544":2,"2894":1}}],["swift65",{"2":{"266":2}}],["swiftrax",{"2":{"175":2,"277":1}}],["swiss",{"2":{"222":1,"2424":1,"2887":4}}],["sweet16v2",{"2":{"322":4,"328":1}}],["sweep",{"2":{"175":1,"249":1}}],["swedish",{"2":{"5":2,"2884":1,"2885":1,"2887":11}}],["swaps",{"2":{"1774":1}}],["swapping",{"2":{"194":1,"754":1,"1201":1,"1349":3,"2305":1,"2508":1,"2704":1,"2808":1,"2889":1}}],["swapped",{"0":{"1349":1},"2":{"181":1,"210":1,"746":1,"758":1,"1287":2,"1742":1}}],["swap",{"0":{"2302":1,"2304":1,"2551":1},"1":{"2303":1,"2304":1,"2305":1,"2306":1},"2":{"94":1,"114":1,"149":1,"157":1,"175":1,"191":2,"199":2,"222":2,"231":4,"247":1,"317":1,"1200":2,"1201":2,"1211":1,"1212":1,"1213":1,"1395":1,"1485":4,"1486":6,"1533":4,"1656":1,"1665":1,"2302":4,"2303":3,"2304":17,"2305":3,"2306":9,"2377":5,"2520":31,"2528":5,"2538":31,"2551":16,"2909":1}}],["suturation",{"2":{"2877":1}}],["sudden",{"2":{"2379":1}}],["sudo",{"2":{"513":1,"1315":8,"1316":4,"1332":1,"2417":1,"2601":7,"2717":1}}],["sunk",{"2":{"727":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1}}],["sunsetter",{"2":{"222":1}}],["suffer",{"2":{"720":1,"755":1,"1497":1}}],["sufficient",{"2":{"2297":1,"2569":1,"2729":1,"2937":1}}],["suffices",{"2":{"1781":1}}],["suffice",{"2":{"417":1}}],["suffix",{"2":{"627":4}}],["sugar|",{"2":{"681":1}}],["sugar||order",{"2":{"681":1}}],["sugar",{"2":{"681":1}}],["suggests",{"2":{"2742":1}}],["suggest",{"2":{"2448":1}}],["suggestions",{"2":{"614":1,"2565":1,"2616":1}}],["suggested",{"2":{"199":1,"403":1,"646":1,"1962":1,"2015":1,"2317":1,"2626":1,"2627":1}}],["summary",{"0":{"2750":1},"2":{"362":1}}],["sust",{"2":{"1925":1,"2539":1}}],["sustain",{"2":{"249":1,"1925":2,"2539":2}}],["susceptible",{"2":{"403":1,"1409":2,"1413":1}}],["suspense",{"2":{"210":1}}],["suspend",{"0":{"649":2,"650":1,"1906":1,"2166":1},"1":{"1907":1,"2167":1},"2":{"92":3,"93":1,"94":1,"112":1,"114":4,"133":1,"134":1,"149":2,"191":1,"210":3,"249":1,"263":2,"266":1,"277":2,"288":1,"328":1,"561":1,"574":1,"647":2,"648":2,"649":2,"650":4,"1626":1,"1638":6,"1906":1,"2166":1,"2272":1,"2753":1,"2757":4,"2882":2}}],["suspended",{"2":{"74":1,"114":2,"134":1,"210":1,"249":2,"649":1,"1678":1,"1685":1,"1852":1,"1907":1,"2091":1,"2167":1}}],["suspending",{"2":{"15":1,"561":1}}],["succeeds",{"2":{"2275":1}}],["succeed",{"2":{"1804":6}}],["success",{"2":{"607":1,"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"796":1,"799":1,"1256":1,"1261":1,"1264":1,"1988":2,"2615":4,"2626":1}}],["successfully",{"2":{"465":1,"469":1,"605":1,"1468":1,"1804":1,"1954":1,"2272":1,"2290":1,"2508":1,"2609":1,"2705":1}}],["successful",{"2":{"386":1,"1208":1,"1253":1,"1427":1,"2278":1}}],["successive",{"2":{"266":1}}],["succession",{"2":{"175":1}}],["such",{"2":{"55":1,"69":1,"87":1,"103":1,"118":1,"123":1,"124":1,"126":1,"132":1,"153":1,"178":1,"198":1,"229":1,"230":1,"234":1,"240":1,"244":1,"246":1,"263":1,"284":2,"297":1,"302":1,"414":1,"425":1,"430":1,"433":3,"470":1,"491":1,"516":1,"538":1,"540":1,"564":1,"588":1,"592":1,"627":1,"634":1,"644":1,"645":1,"651":2,"658":1,"665":1,"685":1,"690":1,"749":1,"750":1,"759":1,"765":1,"1246":1,"1288":1,"1298":1,"1311":1,"1317":1,"1423":1,"1448":1,"1453":1,"1464":1,"1465":1,"1466":2,"1472":1,"1485":1,"1486":1,"1492":1,"1518":1,"1532":2,"1592":1,"1603":1,"1606":1,"1630":1,"1690":1,"1738":1,"1739":1,"1765":1,"1781":1,"1789":1,"1801":1,"1855":1,"1920":2,"1946":1,"1962":1,"1974":2,"2011":1,"2013":1,"2054":2,"2094":2,"2273":1,"2276":1,"2278":1,"2280":1,"2318":2,"2330":2,"2331":2,"2386":1,"2395":1,"2399":1,"2406":1,"2408":1,"2410":1,"2422":1,"2434":1,"2435":1,"2452":1,"2458":2,"2474":2,"2477":1,"2503":1,"2553":1,"2558":1,"2562":1,"2566":1,"2568":1,"2569":3,"2589":1,"2594":1,"2626":3,"2653":3,"2664":3,"2684":2,"2685":1,"2709":1,"2714":1,"2715":1,"2728":4,"2729":3,"2731":1,"2733":1,"2742":1,"2751":1,"2753":2,"2754":1,"2757":1,"2786":1,"2802":1,"2808":1,"2851":1,"2869":1,"2886":1,"2911":1,"2912":1,"2919":1,"2920":1,"2922":1,"2923":1,"2931":1,"2933":1,"2935":1,"2941":1}}],["surprised",{"2":{"2729":1}}],["surplus",{"2":{"160":1}}],["surrogate",{"2":{"2331":1,"2347":1}}],["surrounding",{"2":{"512":2,"2086":2}}],["surfaces",{"2":{"2427":3,"2756":4}}],["surface",{"2":{"175":1,"328":1,"1645":1,"1967":1,"1983":1,"2428":1,"2753":2,"2756":31,"2845":1}}],["sure",{"2":{"40":1,"396":1,"422":1,"512":2,"514":1,"567":1,"596":2,"599":1,"604":1,"609":7,"610":1,"613":2,"620":1,"668":1,"672":1,"681":1,"686":1,"687":1,"1317":2,"1319":1,"1338":1,"1361":1,"1364":1,"1417":1,"1422":1,"1423":1,"1462":1,"1517":1,"1609":1,"1615":1,"2258":1,"2265":1,"2278":1,"2293":1,"2317":1,"2319":1,"2387":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2404":1,"2406":1,"2408":1,"2410":1,"2417":1,"2428":1,"2429":1,"2431":1,"2434":1,"2461":1,"2464":1,"2497":1,"2503":1,"2508":1,"2579":1,"2599":1,"2606":1,"2617":1,"2619":1,"2634":1,"2645":1,"2652":1,"2665":1,"2728":1,"2757":1,"2889":1,"2891":1}}],["suits",{"2":{"2639":1}}],["suite",{"2":{"465":2,"469":2}}],["suited",{"2":{"222":1,"417":1}}],["suitable",{"2":{"153":1,"1365":1,"1413":1,"2580":1,"2809":1,"2912":1,"2950":1}}],["suihankey",{"2":{"143":6}}],["supremely",{"2":{"1440":1}}],["superfluous",{"2":{"2912":1}}],["supervisor",{"2":{"2741":2}}],["supercharged",{"2":{"1762":1}}],["superior",{"2":{"1397":1,"1410":1,"2318":1}}],["super",{"0":{"1462":1},"2":{"675":1,"2394":1,"2514":2,"2522":2,"2572":2,"2668":1}}],["superscripted",{"2":{"355":1}}],["superscript",{"0":{"355":1}}],["supersedes",{"2":{"2590":1}}],["superseded",{"2":{"3":1,"7":1,"15":1,"28":1,"48":1}}],["superseeds",{"2":{"236":1}}],["suppression",{"2":{"1788":1,"2929":1}}],["suppressed",{"2":{"1774":2,"1779":1,"1781":2,"1784":1,"1785":1,"1788":2,"1974":1}}],["suppress",{"2":{"328":1,"1781":3,"1961":1}}],["supposing",{"2":{"1789":1,"2076":1,"2913":1,"2926":1,"2949":1}}],["supposed",{"2":{"2191":1,"2936":1}}],["suppose",{"2":{"289":1,"2635":1,"2926":1}}],["support=1",{"2":{"2384":1}}],["supports",{"2":{"181":1,"243":1,"248":1,"331":1,"373":1,"379":1,"469":1,"513":1,"547":1,"558":1,"572":1,"597":1,"613":1,"648":1,"690":1,"695":1,"701":1,"724":1,"746":3,"749":1,"750":1,"758":1,"759":1,"800":1,"826":1,"855":1,"887":1,"919":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1124":1,"1158":1,"1196":1,"1214":1,"1395":1,"1411":1,"1422":2,"1436":1,"1661":1,"1681":1,"1683":1,"1934":1,"1954":1,"1969":1,"1973":1,"1974":1,"1983":1,"2178":1,"2261":1,"2265":1,"2291":1,"2292":1,"2293":1,"2297":1,"2298":1,"2329":2,"2330":1,"2331":5,"2417":1,"2453":3,"2496":1,"2567":1,"2590":1,"2664":1,"2709":1,"2710":1,"2754":2,"2755":4,"2907":1,"2914":1,"2926":1}}],["supporting",{"0":{"1434":1,"2793":1},"1":{"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"40":1,"373":1,"594":1,"1738":1,"1985":3,"2255":1,"2296":1,"2406":1,"2408":1,"2569":1,"2902":1}}],["supported",{"0":{"1357":1,"1389":1,"1411":1,"1679":1,"1697":1,"1943":1,"2283":1,"2374":1,"2708":1},"1":{"1412":1,"1413":1,"1414":1,"2375":1,"2709":1,"2710":1},"2":{"39":2,"69":1,"118":1,"137":1,"153":1,"154":2,"178":2,"187":1,"201":1,"248":1,"262":1,"266":1,"285":1,"316":1,"347":1,"373":1,"430":1,"433":1,"496":1,"514":1,"570":1,"597":1,"613":1,"659":1,"665":1,"684":1,"690":1,"695":1,"716":2,"721":1,"723":2,"746":1,"768":1,"1199":1,"1203":2,"1204":2,"1205":1,"1300":1,"1303":1,"1343":1,"1351":1,"1357":1,"1391":2,"1392":2,"1393":2,"1399":2,"1423":1,"1444":1,"1446":1,"1481":1,"1544":1,"1550":1,"1553":1,"1554":1,"1603":1,"1627":1,"1655":1,"1665":1,"1697":1,"1740":1,"1845":1,"1945":1,"1952":2,"1965":1,"1973":1,"1974":1,"1976":1,"1978":1,"1983":1,"1984":1,"1985":2,"1988":2,"1989":1,"2046":1,"2047":1,"2048":1,"2081":1,"2219":2,"2222":1,"2292":1,"2294":1,"2309":2,"2331":1,"2374":2,"2375":2,"2376":1,"2384":1,"2406":1,"2408":1,"2418":3,"2505":1,"2567":2,"2583":1,"2590":1,"2616":2,"2626":1,"2627":1,"2629":1,"2684":1,"2704":2,"2707":2,"2709":4,"2713":1,"2727":1,"2729":1,"2753":1,"2754":2,"2758":3,"2803":1,"2869":2,"2889":1}}],["support",{"0":{"25":1,"47":1,"80":1,"81":1,"100":1,"108":1,"118":1,"130":1,"138":1,"145":1,"178":1,"232":1,"592":1,"593":1,"1288":1,"1341":1,"1354":1,"1367":1,"1468":1,"1603":1,"2037":1,"2223":1,"2292":1,"2548":1,"2552":1,"2683":1,"2704":1,"2711":1,"2712":1,"2713":1,"2886":1,"2900":1},"1":{"26":1,"1342":1,"2038":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2045":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1,"2901":1,"2902":1,"2903":1,"2904":1},"2":{"25":1,"36":1,"39":4,"40":2,"43":3,"63":5,"65":1,"74":3,"75":1,"76":1,"81":1,"86":2,"89":1,"93":12,"107":1,"108":1,"113":1,"114":15,"118":2,"120":1,"130":5,"131":1,"133":1,"134":14,"138":1,"145":1,"146":1,"149":9,"153":1,"154":1,"156":1,"160":7,"173":2,"174":1,"175":9,"178":2,"182":1,"190":4,"191":18,"199":10,"201":1,"206":1,"210":5,"212":1,"221":3,"222":28,"232":2,"234":1,"236":14,"248":2,"249":11,"262":1,"265":1,"266":4,"277":2,"279":1,"285":5,"288":1,"298":1,"306":1,"308":6,"315":1,"317":1,"328":4,"375":2,"429":1,"450":1,"461":1,"473":1,"474":1,"476":1,"482":1,"483":1,"491":1,"492":1,"529":1,"552":1,"554":1,"561":2,"564":1,"565":1,"574":2,"593":1,"594":1,"596":2,"665":1,"666":1,"667":1,"668":1,"702":1,"714":2,"741":1,"753":1,"1192":1,"1266":1,"1283":1,"1285":1,"1317":1,"1342":1,"1343":1,"1354":1,"1356":1,"1395":1,"1397":1,"1398":2,"1400":1,"1401":1,"1410":1,"1414":1,"1434":1,"1439":1,"1464":2,"1470":1,"1471":1,"1486":1,"1498":1,"1541":1,"1542":2,"1627":1,"1657":1,"1670":2,"1739":1,"1849":1,"1931":1,"1943":1,"1953":2,"1985":2,"2016":1,"2057":1,"2085":2,"2210":1,"2211":1,"2249":2,"2260":1,"2275":1,"2276":7,"2279":1,"2292":1,"2293":1,"2294":1,"2301":1,"2302":1,"2320":1,"2331":3,"2374":3,"2376":1,"2377":1,"2384":1,"2388":1,"2414":1,"2418":2,"2432":1,"2439":2,"2441":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2459":1,"2480":1,"2490":1,"2552":1,"2566":4,"2569":2,"2570":1,"2579":1,"2580":1,"2590":1,"2626":1,"2627":1,"2634":3,"2658":1,"2667":3,"2674":1,"2683":2,"2684":1,"2692":1,"2696":1,"2707":10,"2709":1,"2710":3,"2711":1,"2714":2,"2727":1,"2728":1,"2729":2,"2733":1,"2753":2,"2756":12,"2793":1,"2797":1,"2854":1,"2884":2,"2888":1,"2890":2,"2897":1,"2901":1,"2902":1,"2909":1,"2945":1}}],["supplements",{"2":{"631":1,"2746":1}}],["supplement",{"2":{"622":1}}],["supplying",{"2":{"657":1}}],["supply",{"2":{"123":1,"284":1,"373":1,"429":1,"513":1,"516":1,"1296":1,"1558":1,"2675":1}}],["supplied",{"2":{"118":1,"146":1,"230":1,"367":1,"433":1,"452":2,"453":2,"475":1,"489":3,"1248":1,"1253":1,"1448":1,"2684":1,"2705":1,"2755":1,"2756":1,"2757":14,"2761":1}}],["sublime",{"2":{"2645":1}}],["subfolder",{"2":{"2414":1,"2449":1,"2945":1}}],["subchain",{"2":{"1538":1}}],["subcommands",{"0":{"489":1},"2":{"486":1,"488":1,"489":1,"501":1}}],["subcommand|general|default>",{"2":{"475":1}}],["subcommand",{"2":{"95":1,"114":1,"132":1,"134":1,"149":1,"439":1,"472":1,"487":3,"489":5,"491":1,"492":1,"494":1,"495":3,"500":1}}],["subreddit",{"0":{"2898":1},"2":{"604":1,"2435":1}}],["subprocess",{"2":{"543":1}}],["subjective",{"2":{"2729":1}}],["subjected",{"2":{"2566":1}}],["subject",{"2":{"383":1,"2645":1,"2736":1,"2757":1}}],["subdirectories",{"2":{"236":1,"2414":1}}],["subdirectory",{"2":{"160":1,"191":1}}],["subtracting",{"2":{"1994":1}}],["subtraction",{"2":{"1410":1}}],["subtracted",{"2":{"524":1}}],["subtlety",{"2":{"194":1}}],["subtarget",{"2":{"39":1}}],["subs",{"2":{"1622":2}}],["subscripted",{"2":{"355":1}}],["subscript",{"2":{"294":1}}],["substrings",{"2":{"1528":1}}],["substring",{"2":{"1528":1,"2945":1,"2946":1}}],["substituting",{"2":{"403":1}}],["substitutions",{"2":{"39":1}}],["substantially",{"2":{"109":1}}],["subsequent",{"2":{"312":1,"403":1,"420":1,"1614":1,"1960":1,"2757":1,"2902":1,"2949":1}}],["subsequently",{"2":{"39":1,"265":1,"307":1,"402":1,"2597":1,"2729":1,"2761":1}}],["subset",{"2":{"65":1,"746":1,"1954":1,"2475":1,"2941":1,"2945":1}}],["subsystem==",{"2":{"1332":1}}],["subsystems",{"0":{"2329":1},"1":{"2330":1},"2":{"77":2,"178":1,"198":1,"2261":1,"2326":1,"2329":1,"2704":1,"2709":2,"2903":1}}],["subsystem",{"0":{"234":1,"1202":1},"1":{"1203":1,"1204":1,"1205":1},"2":{"44":1,"107":1,"114":2,"153":1,"190":1,"244":1,"308":1,"383":2,"574":1,"755":1,"1197":1,"1198":2,"1201":2,"1203":2,"1204":3,"1205":1,"1844":1,"2044":1,"2080":1}}],["sub",{"0":{"355":1,"2450":1},"2":{"6":1,"113":1,"114":1,"133":1,"134":1,"149":1,"558":1,"1317":1,"2449":1,"2450":7,"2454":21,"2455":21,"2776":1}}],["submission",{"2":{"414":2,"415":1,"417":1,"418":1,"2728":1}}],["submissions",{"2":{"103":1,"126":1,"275":1,"403":1,"1463":1,"2567":1,"2727":1,"2728":1}}],["submits",{"2":{"578":1}}],["submit",{"2":{"366":1,"414":1,"416":2,"506":1,"607":1,"609":2,"612":2,"613":1,"2569":1,"2729":1,"2836":2}}],["submitters",{"2":{"2569":1,"2726":1,"2728":2}}],["submitter",{"2":{"403":1,"2726":1,"2729":1}}],["submitted",{"2":{"116":1,"581":1,"2569":1,"2725":1,"2726":1,"2727":1,"2728":2,"2902":1}}],["submitting",{"0":{"380":1},"2":{"1":1,"369":1,"381":1,"613":1,"682":1,"2387":2,"2569":2,"2728":1}}],["submodules=on",{"2":{"2637":2}}],["submodules",{"0":{"43":1,"422":1},"2":{"16":1,"43":1,"69":1,"266":1,"411":1,"422":1,"1629":1,"2384":2,"2387":2,"2607":1,"2637":2}}],["submodule",{"0":{"6":1,"11":1,"45":1},"2":{"6":1,"11":1,"14":1,"43":1,"45":1,"114":2,"134":1,"160":1,"175":1,"191":4,"199":4,"210":1,"222":2,"249":2,"266":1,"285":1,"294":1,"308":1,"328":1,"339":1,"411":2,"1628":2,"2387":4}}],["soi8",{"2":{"2679":1}}],["sost",{"2":{"1925":1,"2539":1}}],["sostenuto",{"2":{"1925":2,"2539":2}}],["soyuz",{"2":{"317":1}}],["socket",{"2":{"2264":1,"2430":1}}],["sockets",{"2":{"114":1,"2264":1}}],["socd",{"2":{"288":1}}],["sodium62",{"2":{"249":1}}],["soda",{"2":{"191":1,"226":2,"236":2}}],["sonix",{"2":{"1214":1}}],["sony",{"2":{"133":1,"134":1}}],["songs",{"0":{"1485":1},"2":{"714":1,"1485":2,"1486":1,"1487":1,"2786":2}}],["song",{"0":{"17":1},"2":{"17":1,"134":1,"631":1,"1417":1,"1485":23,"1486":16,"1535":4,"1657":4,"1804":12,"1839":4,"2221":1,"2328":10,"2786":4}}],["sof",{"2":{"294":1}}],["sofle",{"2":{"114":1,"134":1,"249":1,"308":1}}],["softdevice",{"2":{"2735":1,"2736":2,"2741":3,"2744":1,"2750":1}}],["soft",{"2":{"63":1,"112":2,"199":3,"277":4,"308":1,"512":1,"514":1,"570":2,"651":3,"652":1,"653":1,"1194":1,"1195":1,"1207":1,"1686":4,"1925":3,"2266":1,"2275":2,"2378":1,"2539":3,"2702":1,"2787":1}}],["software",{"0":{"385":1,"722":1,"1481":1,"1550":1,"2496":1,"2506":1,"2791":1},"1":{"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"1482":1},"2":{"47":2,"203":1,"386":2,"687":1,"716":1,"722":2,"723":1,"1409":2,"1449":1,"1467":2,"1481":2,"1546":1,"1547":1,"1550":1,"1953":1,"2016":1,"2042":1,"2212":1,"2262":1,"2278":1,"2292":1,"2317":1,"2325":1,"2469":1,"2472":1,"2475":2,"2579":2,"2580":1,"2618":1,"2619":1,"2653":1,"2667":2,"2732":2,"2738":1,"2815":1,"2816":1,"2827":1,"2856":1,"2857":2,"2903":1,"2942":1}}],["sought",{"2":{"2712":1}}],["sourcing",{"2":{"2680":1}}],["sources",{"2":{"188":1,"665":1,"2331":1,"2567":28,"2568":1,"2569":1,"2726":1,"2728":2}}],["source",{"0":{"372":1},"2":{"5":1,"26":1,"67":1,"86":1,"102":1,"122":1,"130":1,"132":1,"143":1,"159":1,"165":1,"183":1,"197":1,"199":1,"234":1,"284":1,"366":1,"367":2,"372":1,"378":1,"382":2,"384":1,"439":1,"509":1,"581":2,"584":1,"586":2,"607":1,"623":1,"665":2,"698":1,"749":1,"750":1,"1357":3,"1464":4,"1533":1,"1634":2,"1855":1,"1952":4,"1958":1,"1966":1,"1978":1,"1981":1,"2094":1,"2207":2,"2291":1,"2331":1,"2394":1,"2401":1,"2403":1,"2417":11,"2432":1,"2455":1,"2477":1,"2478":1,"2483":1,"2556":1,"2563":1,"2566":3,"2567":8,"2568":7,"2569":3,"2571":1,"2580":1,"2598":1,"2605":2,"2608":1,"2610":2,"2628":1,"2653":1,"2664":1,"2685":1,"2686":1,"2687":1,"2726":2,"2728":3,"2735":2,"2736":2,"2745":2,"2748":1,"2749":1,"2750":1,"2758":1,"2827":1,"2895":3,"2945":2}}],["southwest",{"2":{"1741":1}}],["south",{"2":{"1741":1,"2051":1}}],["southeast",{"2":{"1741":1}}],["southpad",{"2":{"226":2,"236":1,"339":1}}],["southpaw75",{"2":{"67":2,"72":1}}],["southpole",{"2":{"159":2}}],["sound",{"2":{"1480":1,"1485":3,"1486":14,"1493":3,"1535":2,"1601":1,"1804":2,"1839":3,"2221":2,"2652":1,"2786":3}}],["soundmonster",{"2":{"92":1}}],["sounds",{"2":{"74":1,"1473":1,"1485":2,"1493":3,"1605":1,"1681":1,"2255":1,"2328":1,"2786":2}}],["solus",{"2":{"2601":1}}],["solutions",{"2":{"1337":1}}],["solution",{"0":{"1788":1},"2":{"1325":1,"1503":1,"1525":1,"1528":1,"1602":1,"1619":1,"1678":1,"1961":2,"2212":1,"2709":1,"2741":1,"2931":1}}],["solve",{"2":{"1423":1,"2573":1,"2634":1}}],["solves",{"2":{"1352":1}}],["solved",{"2":{"672":1}}],["sold",{"2":{"684":1}}],["soldering",{"0":{"2427":1,"2428":1,"2429":1},"1":{"2428":1,"2429":1},"2":{"2208":1,"2375":1,"2421":2,"2425":1,"2427":3,"2428":3,"2429":1,"2431":2}}],["solder",{"2":{"218":2,"222":4,"253":1,"266":1,"300":1,"2208":1,"2280":2,"2421":1,"2425":1,"2427":12,"2428":6,"2429":3,"2431":2,"2434":4,"2483":1}}],["solderd",{"2":{"191":1}}],["soldered",{"2":{"122":1,"197":1,"199":1,"222":4,"226":1,"241":2,"333":1,"1697":1,"2425":1,"2428":3,"2434":1}}],["solanis",{"2":{"222":1}}],["solidifies",{"2":{"2428":1}}],["solid",{"0":{"2087":1},"2":{"191":1,"249":1,"266":2,"1417":1,"1849":28,"1852":1,"2085":32,"2087":2,"2097":2,"2183":2,"2187":1,"2428":1,"2871":1,"2878":1,"2894":10}}],["sol3",{"2":{"149":1,"191":1}}],["sol",{"2":{"114":1,"149":1,"191":1,"294":1}}],["solomon",{"2":{"2425":1,"2436":1}}],["solo",{"2":{"107":1,"114":1}}],["solenoids",{"0":{"1681":1},"2":{"160":1,"1681":2}}],["solenoid",{"2":{"64":1,"114":1,"134":1,"175":1,"209":2,"236":1,"1678":2,"1680":3,"1681":28}}],["solheim68",{"2":{"57":2}}],["sorts",{"2":{"2477":1}}],["sorting",{"2":{"110":1,"222":1}}],["sort",{"2":{"39":1,"220":1,"222":1,"352":1,"651":1,"1356":1,"2264":1,"2428":1}}],["sooner",{"2":{"527":1,"2310":1}}],["soon",{"2":{"39":1,"381":1,"398":1,"564":1,"720":1,"1311":4,"1372":1,"1422":2,"1462":1,"1999":1,"2466":1}}],["somewhat",{"2":{"1351":1,"2329":1,"2387":1,"2684":1}}],["somewhere",{"2":{"412":1,"432":1,"1449":1,"1628":1,"2001":1,"2015":1,"2634":1,"2912":1}}],["somebody",{"2":{"1338":1,"2671":3,"2897":1}}],["someone",{"2":{"538":1,"540":1,"604":1,"610":1,"672":1,"2464":1,"2566":1,"2580":1}}],["something",{"2":{"125":1,"137":2,"169":1,"381":1,"414":1,"492":1,"493":1,"588":1,"631":2,"646":1,"656":1,"686":1,"688":1,"1326":1,"1405":1,"1409":1,"1417":2,"1427":1,"1450":1,"1470":1,"1471":1,"1485":1,"1489":1,"1490":1,"1499":1,"1546":1,"1591":1,"1593":1,"1601":2,"1766":1,"1794":1,"1798":1,"1801":1,"1851":1,"1923":1,"1939":1,"2012":1,"2090":1,"2096":1,"2211":1,"2275":1,"2309":1,"2427":1,"2428":1,"2431":2,"2482":1,"2566":1,"2584":1,"2628":1,"2634":1,"2637":1,"2640":1,"2652":1,"2674":1,"2731":1,"2755":1,"2791":2,"2897":1}}],["sometimes",{"2":{"119":1,"474":1,"493":1,"516":1,"540":1,"597":1,"665":1,"686":2,"687":1,"716":1,"1327":1,"1347":1,"1405":1,"1409":1,"1410":1,"1426":1,"1427":1,"1446":1,"1545":1,"1762":1,"1789":1,"1802":1,"1994":1,"2387":1,"2434":1,"2482":1,"2557":1,"2562":1,"2633":1,"2651":1,"2710":1,"2794":1,"2902":1,"2938":1,"2950":1}}],["some",{"0":{"1349":1,"2432":1},"2":{"2":1,"15":1,"18":1,"40":1,"45":1,"64":1,"95":1,"113":3,"114":6,"123":3,"124":1,"134":1,"149":4,"153":1,"157":1,"158":3,"160":4,"166":2,"175":5,"181":1,"189":2,"191":1,"196":1,"199":2,"203":1,"206":1,"210":2,"220":1,"222":8,"234":2,"235":1,"236":7,"246":1,"256":1,"266":3,"288":2,"294":4,"317":2,"333":1,"362":2,"369":1,"378":1,"393":1,"396":1,"397":1,"412":1,"414":3,"439":1,"487":1,"495":1,"500":1,"511":1,"512":1,"513":1,"514":2,"538":1,"540":1,"557":1,"558":1,"564":1,"571":1,"575":1,"597":1,"603":1,"604":1,"609":1,"612":1,"613":2,"637":1,"668":3,"684":1,"686":2,"688":1,"695":3,"719":1,"720":1,"749":1,"763":3,"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"796":1,"799":1,"1200":1,"1201":1,"1261":1,"1264":1,"1286":1,"1287":1,"1288":1,"1296":1,"1340":1,"1347":1,"1365":2,"1366":1,"1373":1,"1376":2,"1378":1,"1381":1,"1409":2,"1424":1,"1427":1,"1438":1,"1450":1,"1451":2,"1453":1,"1465":1,"1472":1,"1473":1,"1490":2,"1502":1,"1503":1,"1522":1,"1589":1,"1591":1,"1592":1,"1609":2,"1613":2,"1622":1,"1623":1,"1626":1,"1662":1,"1664":1,"1678":1,"1681":1,"1781":1,"1787":1,"1789":1,"1792":1,"1796":1,"1842":1,"1850":3,"1920":1,"1947":2,"1957":1,"1960":2,"1961":3,"1999":1,"2008":1,"2046":1,"2054":1,"2057":1,"2072":1,"2088":3,"2091":1,"2094":1,"2178":1,"2191":2,"2207":3,"2208":1,"2251":1,"2261":1,"2270":1,"2272":1,"2273":1,"2278":2,"2286":2,"2293":1,"2298":1,"2309":1,"2317":1,"2325":1,"2330":1,"2331":1,"2375":1,"2379":1,"2381":1,"2389":1,"2392":1,"2395":1,"2399":1,"2403":1,"2404":1,"2416":1,"2417":5,"2422":1,"2425":1,"2427":1,"2428":1,"2429":1,"2430":1,"2431":2,"2447":1,"2451":1,"2454":1,"2462":1,"2475":1,"2483":2,"2499":1,"2501":1,"2502":1,"2503":1,"2508":1,"2517":1,"2557":1,"2561":2,"2563":1,"2564":1,"2567":2,"2568":1,"2572":1,"2585":1,"2598":1,"2612":1,"2618":1,"2632":2,"2644":1,"2668":1,"2671":1,"2674":2,"2690":1,"2711":1,"2722":1,"2727":1,"2756":4,"2757":3,"2765":1,"2772":1,"2795":1,"2842":1,"2889":2,"2890":1,"2892":1,"2894":2,"2901":2,"2906":1,"2907":3,"2909":1,"2928":1,"2931":2,"2944":1,"2945":2,"2949":1,"2950":1}}],["so",{"2":{"0":1,"9":1,"29":1,"40":1,"42":1,"46":2,"52":1,"60":1,"73":1,"99":1,"112":1,"114":1,"118":1,"149":2,"166":2,"175":1,"178":2,"189":1,"191":1,"199":1,"231":1,"232":1,"245":1,"248":1,"273":1,"279":1,"284":2,"288":1,"323":1,"328":1,"353":1,"386":1,"391":1,"399":2,"403":1,"412":1,"489":1,"494":1,"505":1,"513":2,"526":1,"540":1,"586":1,"589":1,"604":2,"607":1,"610":1,"613":1,"647":1,"661":1,"665":1,"675":1,"677":1,"685":1,"687":1,"701":1,"720":1,"748":1,"755":1,"767":1,"1203":1,"1204":1,"1208":1,"1248":1,"1266":1,"1313":1,"1314":1,"1327":1,"1343":1,"1348":2,"1350":1,"1351":1,"1356":2,"1362":1,"1365":1,"1368":1,"1378":1,"1381":2,"1382":1,"1417":2,"1423":1,"1425":1,"1431":1,"1433":1,"1440":1,"1446":2,"1447":1,"1470":2,"1472":2,"1483":1,"1490":1,"1492":1,"1493":1,"1525":2,"1526":2,"1529":1,"1538":1,"1551":1,"1558":1,"1589":2,"1591":1,"1622":1,"1625":1,"1628":1,"1661":1,"1665":1,"1670":1,"1675":1,"1684":1,"1702":1,"1738":1,"1788":1,"1790":1,"1795":1,"1844":1,"1923":2,"1926":1,"1939":2,"1941":1,"1953":1,"1962":1,"1983":1,"1984":1,"1988":2,"1989":2,"1992":1,"1994":1,"1996":1,"2070":1,"2072":1,"2074":1,"2076":1,"2080":1,"2181":1,"2188":1,"2191":1,"2198":1,"2220":1,"2249":1,"2260":1,"2277":1,"2280":1,"2294":1,"2295":1,"2297":1,"2301":1,"2309":1,"2316":1,"2317":2,"2319":1,"2327":1,"2329":1,"2376":1,"2386":1,"2417":1,"2419":2,"2423":1,"2428":2,"2434":1,"2437":1,"2456":1,"2462":1,"2464":2,"2466":3,"2474":1,"2482":1,"2496":1,"2508":1,"2560":1,"2568":1,"2569":1,"2572":1,"2573":1,"2587":1,"2594":1,"2599":1,"2619":1,"2636":1,"2640":1,"2652":1,"2656":1,"2657":1,"2669":1,"2673":1,"2674":2,"2677":1,"2686":1,"2690":1,"2694":1,"2718":1,"2728":3,"2729":1,"2731":1,"2756":2,"2757":2,"2784":1,"2786":2,"2787":1,"2789":1,"2796":1,"2799":1,"2834":1,"2884":1,"2886":1,"2888":1,"2889":2,"2894":1,"2912":2,"2926":1,"2929":1,"2931":1,"2932":1,"2933":1,"2938":1,"2942":1,"2945":1,"2946":1,"2950":2}}],["ndel",{"2":{"2795":1}}],["ndash",{"2":{"348":1,"2069":3,"2295":1}}],["n↓",{"2":{"2795":1}}],["n→",{"2":{"2795":1}}],["n←",{"2":{"2795":1}}],["n↑",{"2":{"2795":1}}],["nhome",{"2":{"2795":1}}],["nhd",{"2":{"2283":1}}],["nrf5",{"2":{"2710":1}}],["nrf51822",{"2":{"2374":1,"2375":1}}],["nrst",{"2":{"2406":2,"2408":2,"2508":1,"2674":1,"2677":1}}],["nbsp",{"2":{"2923":1}}],["nb",{"2":{"2301":1}}],["n9",{"2":{"2301":1}}],["n8",{"2":{"2301":1}}],["n7",{"2":{"2301":1}}],["n3",{"2":{"1925":1,"2301":1,"2539":1}}],["n4",{"2":{"1925":1,"2301":1,"2539":1}}],["n40",{"2":{"210":1}}],["n5",{"2":{"1925":1,"2301":1,"2539":1}}],["n2",{"2":{"1925":2,"2301":1,"2539":2}}],["nw",{"2":{"1741":1}}],["nter",{"2":{"2079":1}}],["ntil",{"2":{"1593":1}}],["nt660",{"2":{"57":2}}],["nfer",{"2":{"1358":1}}],["ns",{"2":{"1292":1}}],["n1",{"2":{"411":1,"1925":2,"2301":1,"2539":2}}],["nyx",{"2":{"285":1}}],["nyquist",{"2":{"35":1,"285":1}}],["nucleo64",{"2":{"2728":1}}],["nucleo",{"2":{"2728":1}}],["nuanced",{"2":{"1934":1}}],["nubs",{"2":{"379":1,"589":2,"2512":1,"2522":1,"2563":1}}],["nuhs",{"2":{"379":1,"589":2,"2512":1,"2522":1,"2563":1}}],["nue",{"2":{"222":1}}],["nullbitsco",{"2":{"277":1}}],["null",{"2":{"210":1,"249":1,"272":2,"325":1,"381":1,"657":3,"1538":1,"1702":1,"1779":1,"1781":2,"2059":1,"2316":2,"2317":1,"2318":1,"2319":1,"2720":3,"2757":4}}],["numlock",{"2":{"1311":2}}],["numerous",{"2":{"172":1,"2261":1}}],["numerically",{"2":{"1427":1}}],["numerical",{"2":{"1330":2,"1427":1,"2884":1,"2949":1}}],["numeric",{"0":{"1507":1,"1514":1,"1695":1},"2":{"165":2,"591":1,"1503":1,"1507":1,"1510":2,"1695":1,"2320":1}}],["numpad",{"2":{"134":1,"143":2,"222":1,"236":1,"2331":1,"2344":1,"2515":1,"2794":5,"2795":5,"2937":1,"2938":2}}],["num",{"2":{"70":1,"172":1,"175":2,"199":1,"210":2,"212":3,"247":2,"249":2,"307":2,"328":1,"429":3,"430":2,"570":1,"701":1,"1354":1,"1413":1,"1414":1,"1656":2,"1667":2,"1693":1,"1835":1,"1836":2,"1838":1,"1945":2,"2096":1,"2185":1,"2195":1,"2197":1,"2276":1,"2284":2,"2301":12,"2305":1,"2513":5,"2522":5,"2754":2,"2756":13,"2757":2,"2767":1,"2795":3,"2796":3,"2867":2,"2936":1,"2939":1,"2940":1}}],["numbered",{"2":{"344":1,"699":1,"1425":2,"1426":1}}],["numbers",{"0":{"2510":1},"2":{"181":1,"524":2,"629":1,"1440":1,"1923":1,"1962":1,"2183":1,"2269":1,"2381":1,"2449":1,"2470":1,"2561":1,"2634":1,"2694":3,"2751":1,"2840":1}}],["number",{"0":{"591":1,"2238":1,"2240":1,"2242":1,"2244":1,"2518":1},"1":{"2239":1,"2241":1,"2243":1,"2245":1},"2":{"95":1,"114":2,"119":1,"134":1,"167":1,"178":1,"181":2,"184":1,"189":3,"199":1,"203":1,"212":2,"222":1,"233":1,"236":1,"285":1,"386":1,"425":1,"429":2,"433":4,"455":1,"460":1,"469":1,"522":1,"523":2,"524":4,"561":4,"565":4,"575":1,"607":1,"613":1,"629":2,"648":1,"656":1,"657":1,"660":1,"665":1,"671":1,"701":1,"719":4,"749":1,"750":1,"752":1,"753":1,"754":3,"755":3,"756":3,"774":1,"777":1,"780":1,"783":2,"786":1,"789":1,"792":1,"795":1,"802":1,"828":1,"857":1,"889":1,"902":1,"921":1,"937":1,"956":1,"971":1,"990":1,"1005":1,"1024":1,"1039":1,"1058":1,"1073":1,"1092":1,"1107":1,"1126":1,"1141":1,"1160":1,"1175":1,"1203":1,"1204":1,"1216":1,"1228":1,"1252":1,"1260":1,"1263":1,"1278":1,"1280":1,"1285":1,"1343":1,"1415":1,"1419":4,"1425":1,"1428":2,"1434":1,"1440":1,"1448":1,"1465":1,"1471":1,"1480":1,"1534":1,"1538":2,"1539":1,"1544":1,"1553":1,"1625":1,"1662":1,"1664":1,"1686":1,"1687":2,"1699":2,"1712":2,"1766":1,"1787":1,"1846":4,"1851":1,"1852":3,"1926":1,"1935":1,"1936":3,"1939":1,"1947":1,"1949":1,"1952":4,"1954":2,"1959":1,"1965":1,"1980":2,"2082":4,"2086":2,"2090":1,"2091":3,"2179":3,"2183":4,"2185":5,"2191":1,"2207":1,"2239":1,"2241":1,"2243":1,"2245":1,"2267":1,"2275":4,"2278":4,"2286":1,"2289":1,"2290":2,"2293":1,"2298":1,"2300":2,"2301":12,"2305":1,"2309":1,"2317":1,"2318":1,"2362":1,"2417":2,"2421":1,"2423":3,"2424":2,"2439":1,"2474":1,"2579":1,"2634":5,"2635":1,"2650":1,"2669":1,"2671":1,"2675":1,"2676":2,"2685":1,"2694":3,"2700":1,"2714":1,"2717":1,"2720":1,"2754":3,"2755":2,"2756":11,"2757":5,"2767":1,"2773":1,"2775":1,"2777":1,"2784":1,"2786":1,"2790":1,"2792":1,"2802":1,"2820":1,"2828":1,"2833":1,"2840":1,"2854":4,"2855":1,"2857":5,"2858":5,"2861":1,"2862":1,"2864":4,"2865":2,"2869":4,"2870":1,"2871":17,"2872":2,"2873":5,"2874":3,"2877":14,"2878":21,"2879":2,"2880":4,"2882":6,"2883":1,"2888":1,"2892":1,"2895":1,"2902":1,"2949":1,"2950":2}}],["numbering",{"2":{"40":1,"695":1}}],["numbrero",{"2":{"33":2}}],["nc",{"2":{"2301":1}}],["ncr80",{"2":{"277":1}}],["ncc1701kb",{"2":{"249":1}}],["nced",{"2":{"191":1}}],["nckiibs",{"2":{"86":8}}],["nnbs",{"2":{"191":1}}],["nvram",{"2":{"175":1}}],["nvm",{"2":{"131":1,"134":1}}],["nqg",{"2":{"165":2,"175":1}}],["nkeys",{"2":{"1625":1}}],["nk",{"2":{"222":1,"235":1,"303":1,"338":1,"2191":3,"2293":1,"2418":1,"2520":3,"2538":3}}],["nknl7jp",{"2":{"143":2}}],["nknl7en",{"2":{"143":2}}],["nk87b",{"2":{"222":1}}],["nk87",{"2":{"143":2,"222":1}}],["nk65",{"2":{"143":2,"311":2,"317":1}}],["nk1",{"2":{"143":2}}],["nkro",{"0":{"235":1,"303":2,"338":2,"1366":1,"2833":1},"2":{"40":1,"70":1,"111":1,"112":1,"175":1,"199":2,"222":1,"235":2,"236":3,"277":1,"303":6,"308":4,"317":2,"338":6,"339":1,"561":1,"574":2,"575":2,"1366":4,"1376":1,"1625":2,"2191":1,"2292":3,"2293":6,"2294":1,"2376":2,"2418":6,"2520":3,"2538":3,"2728":1,"2828":1,"2839":1,"2866":2,"2889":1}}],["nibble",{"0":{"2244":1},"1":{"2245":1}}],["nins",{"2":{"2795":1}}],["nine",{"2":{"1507":1}}],["ninja",{"2":{"175":1,"241":2}}],["nit",{"2":{"514":1}}],["nitty",{"0":{"2565":1},"2":{"365":1}}],["nickname",{"2":{"2639":1}}],["nicinabox",{"2":{"2281":1}}],["nicities",{"2":{"495":1}}],["nicer",{"2":{"2727":1,"2949":1}}],["nicest",{"2":{"2308":1}}],["nice",{"2":{"490":1,"492":1,"1340":1,"2178":1,"2281":1,"2669":1}}],["nightly",{"2":{"210":1,"222":1}}],["niu",{"2":{"143":2,"149":1}}],["nixpkgs",{"2":{"249":1}}],["nix",{"2":{"113":1,"114":1,"191":1,"222":1,"249":1,"308":1}}],["npgdn",{"2":{"2795":1}}],["npgup",{"2":{"2795":1}}],["npkc",{"2":{"2187":1}}],["npn",{"2":{"1545":1}}],["npm",{"2":{"386":1}}],["npminila",{"2":{"143":2}}],["npspears",{"2":{"149":1}}],["np21",{"2":{"143":2,"149":2}}],["nphhkb",{"2":{"143":2}}],["np64",{"2":{"143":2}}],["n6",{"2":{"114":1,"1925":1,"2301":1,"2539":1}}],["nxp",{"0":{"551":1},"2":{"108":1,"2402":1,"2802":1}}],["n",{"0":{"2833":1},"2":{"47":1,"196":1,"236":1,"266":2,"379":1,"434":2,"435":2,"455":2,"489":1,"521":1,"574":1,"589":2,"609":1,"829":2,"858":2,"890":2,"922":2,"923":2,"957":2,"991":2,"1025":2,"1059":2,"1093":2,"1094":2,"1127":2,"1128":2,"1161":2,"1203":1,"1204":1,"1207":2,"1213":1,"1217":2,"1268":6,"1329":1,"1330":1,"1333":1,"1366":1,"1410":1,"1420":1,"1446":2,"1535":1,"1545":1,"1558":1,"1625":2,"1701":1,"1713":1,"1741":1,"1798":1,"1804":1,"1843":3,"1847":2,"1945":4,"1952":2,"2068":1,"2070":1,"2083":2,"2222":1,"2225":1,"2253":6,"2277":2,"2284":4,"2293":1,"2298":1,"2300":4,"2327":1,"2328":5,"2330":1,"2376":1,"2501":1,"2510":3,"2520":3,"2522":9,"2538":3,"2563":1,"2714":1,"2755":4,"2769":3,"2775":3,"2777":4,"2779":3,"2928":1,"2949":1}}],["na",{"2":{"2301":1}}],["nav",{"0":{"1694":1},"2":{"1620":5,"1622":2,"1694":1,"1791":5,"1794":1}}],["navigating",{"2":{"2411":1}}],["navigation",{"2":{"1791":5,"2068":2,"2558":1,"2653":1,"2664":1}}],["navigate",{"2":{"611":1,"2433":1,"2502":1,"2614":1,"2709":1}}],["navi10",{"2":{"159":2}}],["nack",{"2":{"222":1}}],["nacly",{"2":{"143":2,"149":2,"249":1}}],["nanoseconds",{"2":{"1285":3,"1295":2}}],["nanoboot",{"2":{"311":1}}],["nano",{"2":{"175":1,"554":1}}],["naked64",{"2":{"143":2}}],["naked60",{"2":{"143":2}}],["naked48",{"2":{"143":2}}],["naiping",{"2":{"143":6}}],["nafuda",{"2":{"143":2}}],["naming",{"0":{"209":1,"233":1,"519":1,"1851":1,"2090":1,"2449":1},"1":{"520":1},"2":{"134":1,"156":1,"166":2,"182":1,"209":1,"210":6,"224":1,"233":2,"236":9,"238":1,"243":1,"244":1,"249":1,"266":1,"331":1,"610":1,"629":1,"1371":1,"1410":7,"2329":1,"2614":1,"2714":1,"2726":1,"2727":1}}],["name\`",{"2":{"1851":1,"2090":1}}],["name|description|",{"2":{"681":1}}],["name|short",{"2":{"681":1}}],["named",{"2":{"271":1,"380":1,"448":1,"449":1,"450":1,"489":1,"544":1,"593":1,"1350":1,"1433":2,"1463":2,"1464":1,"1945":1,"2284":1,"2432":1,"2453":3,"2603":1,"2636":1,"2640":1,"2794":1,"2795":1,"2804":1,"2837":1,"2838":1,"2938":1,"2950":1}}],["namely",{"2":{"213":1,"1472":1,"2394":1}}],["namecard2x4",{"2":{"143":2}}],["name>",{"2":{"55":2,"430":1,"1467":1,"1472":1}}],["name",{"0":{"57":1,"347":1,"598":1},"2":{"27":2,"33":2,"55":1,"56":2,"57":2,"58":2,"67":2,"70":1,"86":3,"102":2,"111":1,"114":2,"122":2,"134":1,"143":2,"149":2,"159":2,"165":2,"166":2,"168":1,"172":1,"175":1,"182":1,"183":2,"184":1,"197":2,"199":3,"205":2,"218":2,"226":2,"231":1,"236":1,"241":2,"253":2,"266":3,"270":2,"277":1,"281":2,"291":2,"294":1,"300":2,"311":2,"317":1,"322":2,"328":1,"339":1,"341":1,"403":1,"433":2,"444":1,"459":3,"463":1,"472":1,"484":2,"485":4,"489":12,"492":1,"495":2,"496":1,"516":1,"519":9,"520":1,"529":2,"561":1,"588":1,"591":1,"598":1,"607":3,"612":2,"668":1,"687":1,"688":3,"689":5,"1313":1,"1378":1,"1413":2,"1434":2,"1439":1,"1463":7,"1464":5,"1465":4,"1466":4,"1467":2,"1468":1,"1470":2,"1471":1,"1472":3,"1484":1,"1523":3,"1612":4,"1622":1,"1628":2,"1630":2,"1633":1,"1679":1,"1686":4,"1687":2,"1849":1,"1850":1,"1851":7,"1852":2,"1964":1,"2059":1,"2085":1,"2088":1,"2090":7,"2091":2,"2322":1,"2323":1,"2331":6,"2384":1,"2417":1,"2434":1,"2441":2,"2449":1,"2451":2,"2453":2,"2464":7,"2473":1,"2502":1,"2506":1,"2561":2,"2583":2,"2584":1,"2594":3,"2606":1,"2607":7,"2608":1,"2616":1,"2634":1,"2639":5,"2640":3,"2662":4,"2674":4,"2714":3,"2717":4,"2721":1,"2728":1,"2732":2,"2786":1,"2795":6,"2852":1,"2853":1,"2868":1,"2869":2,"2945":1,"2949":4,"2950":2}}],["names",{"0":{"520":1,"1347":1},"2":{"26":1,"27":1,"33":1,"92":1,"114":1,"157":1,"166":2,"172":3,"175":3,"210":2,"241":2,"253":2,"270":2,"277":1,"281":2,"333":1,"339":1,"434":1,"507":1,"516":1,"519":2,"520":2,"591":1,"701":1,"1203":1,"1204":1,"1347":2,"1433":1,"1438":2,"1593":1,"1635":1,"1636":1,"1741":1,"2320":1,"2329":2,"2417":2,"2449":3,"2453":1,"2561":2,"2567":1,"2718":1,"2728":3,"2794":1,"2868":1,"2869":2,"2949":7}}],["narrow",{"2":{"119":1,"191":1,"2057":1}}],["nat",{"2":{"2942":1}}],["nature",{"2":{"665":1,"1205":1,"2008":1,"2734":1}}],["naturally",{"2":{"1788":1,"2297":1,"2929":1}}],["natural",{"2":{"119":1,"1492":1,"2910":1}}],["natively",{"2":{"1953":1,"2691":1}}],["native",{"2":{"28":1,"39":1,"248":1,"249":1,"546":1,"588":1,"2754":2,"2755":2,"2756":12,"2757":3,"2946":1}}],["neo2",{"2":{"2887":2}}],["neopad",{"2":{"241":2,"300":2}}],["nend",{"2":{"2795":1}}],["neat",{"2":{"2425":1,"2891":1}}],["near",{"2":{"1462":1,"1485":1,"1849":2,"1976":1,"2085":2,"2429":1,"2794":1}}],["nearest",{"2":{"1252":1,"2301":1}}],["nearly",{"2":{"555":1,"665":1,"2522":1,"2640":1,"2695":1}}],["nearing",{"2":{"279":1}}],["nearfield",{"2":{"222":1}}],["neighbour",{"2":{"2427":1}}],["neighboring",{"2":{"2086":1}}],["neither",{"2":{"489":1,"494":1,"686":1,"1498":1,"2274":1,"2403":1,"2782":1,"2789":1}}],["negated",{"2":{"2767":1,"2773":1,"2774":1}}],["negatively",{"2":{"2276":1,"2902":1}}],["negative",{"0":{"1772":1,"1773":1},"2":{"643":1,"716":1,"722":1,"797":1,"1478":1,"1479":1,"1482":1,"1486":1,"1772":1,"1779":1,"1781":2,"1782":2,"1784":2,"1785":1,"2076":1}}],["neg",{"2":{"2767":2,"2768":1,"2769":1,"2773":1,"2774":2,"2775":1,"2776":1,"2777":1,"2778":1,"2779":1}}],["negmods",{"0":{"1772":1,"1773":1},"2":{"1770":1,"1776":5}}],["ne",{"2":{"1741":1}}],["nexus",{"2":{"1849":3,"2085":3,"2894":1}}],["nexecstart=",{"2":{"1316":2}}],["next",{"0":{"401":1,"412":1,"602":1},"1":{"402":1},"2":{"13":1,"103":1,"104":1,"133":1,"134":1,"156":1,"214":1,"230":1,"236":1,"265":1,"276":1,"307":1,"393":2,"401":1,"403":1,"408":1,"409":2,"412":1,"512":1,"589":2,"646":1,"647":1,"675":1,"717":2,"718":2,"719":3,"721":2,"768":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1283":1,"1292":1,"1299":2,"1303":2,"1381":1,"1405":1,"1422":1,"1431":4,"1489":2,"1490":2,"1495":4,"1539":2,"1556":2,"1557":2,"1594":1,"1600":1,"1612":1,"1614":1,"1622":1,"1667":1,"1675":1,"1680":3,"1699":1,"1713":1,"1762":1,"1764":1,"1776":3,"1848":3,"1865":1,"1867":1,"1873":1,"1874":1,"1899":1,"1900":1,"1947":1,"1954":4,"2003":1,"2042":1,"2057":1,"2068":2,"2084":3,"2107":1,"2109":1,"2115":1,"2116":1,"2153":1,"2154":1,"2178":1,"2181":2,"2199":2,"2231":1,"2235":1,"2273":1,"2286":1,"2290":4,"2304":1,"2309":1,"2317":1,"2331":2,"2332":2,"2338":1,"2377":5,"2379":1,"2423":1,"2428":1,"2429":1,"2468":1,"2508":1,"2517":3,"2519":1,"2522":3,"2524":4,"2528":5,"2533":1,"2537":3,"2544":2,"2545":3,"2551":1,"2552":2,"2564":1,"2606":1,"2650":1,"2662":1,"2674":2,"2686":1,"2709":1,"2718":1,"2721":1,"2886":1}}],["networks",{"2":{"2374":1}}],["net",{"2":{"420":1,"1367":1,"1368":1}}],["necessarily",{"2":{"2694":1,"2727":1}}],["necessary",{"0":{"2660":1},"2":{"206":1,"234":1,"379":1,"384":1,"385":1,"386":1,"393":2,"396":1,"397":1,"426":1,"429":1,"436":1,"574":1,"643":1,"687":1,"721":1,"772":1,"797":1,"1203":2,"1204":2,"1213":1,"1286":1,"1343":1,"1517":1,"1661":1,"1668":1,"1781":2,"1782":1,"1784":5,"2037":1,"2056":1,"2272":1,"2289":1,"2294":1,"2296":1,"2402":1,"2418":1,"2427":1,"2453":1,"2455":1,"2456":1,"2483":1,"2503":1,"2568":1,"2601":1,"2613":1,"2620":1,"2657":1,"2703":1,"2728":3,"2851":1,"2912":1}}],["necessitating",{"2":{"414":1}}],["never",{"0":{"2638":1},"1":{"2639":1,"2640":1,"2641":1},"2":{"229":1,"491":1,"493":1,"519":1,"607":1,"627":1,"652":1,"653":1,"1598":1,"1661":1,"1782":1,"1795":1,"2008":1,"2580":1,"2632":1,"2633":1,"2635":1,"2638":1,"2730":2,"2935":1}}],["neutralized",{"2":{"1788":1,"2929":1}}],["neutralizer",{"2":{"1788":4,"2929":4,"2931":1}}],["neutralize",{"2":{"210":1,"1788":6,"2929":6,"2931":1}}],["nebula68",{"2":{"143":2}}],["nebula68b",{"2":{"143":2,"253":2,"266":1}}],["nebula12b",{"2":{"222":1}}],["nebula12",{"2":{"143":2}}],["nest",{"2":{"2450":1}}],["nesting",{"2":{"1661":1,"1662":1,"2318":1}}],["nested",{"0":{"358":1,"359":1,"2917":1},"2":{"134":1,"344":4,"358":1,"359":1,"361":2,"670":1,"1662":1,"2869":1,"2914":1,"2920":3,"2926":1}}],["neson",{"2":{"114":1}}],["nerdtkl",{"2":{"51":1}}],["nerd60",{"2":{"51":1}}],["nerdd",{"2":{"51":1}}],["nerd",{"0":{"51":1},"2":{"51":3}}],["needle",{"2":{"2421":1,"2428":1}}],["needlessly",{"2":{"2012":1}}],["needless",{"2":{"210":2,"2790":1}}],["needing",{"2":{"125":1,"169":1,"179":1,"228":1,"1762":1,"2294":1,"2434":1}}],["needs",{"0":{"1367":1},"2":{"36":1,"411":1,"414":1,"416":1,"430":1,"458":1,"639":1,"656":1,"657":1,"696":1,"717":1,"718":1,"746":1,"749":1,"754":1,"755":1,"756":1,"758":1,"1311":1,"1422":1,"1470":1,"1485":1,"1535":1,"1612":3,"1645":1,"1747":1,"1977":1,"2011":1,"2015":1,"2270":1,"2295":1,"2297":1,"2305":1,"2329":1,"2418":2,"2441":1,"2466":1,"2482":2,"2521":1,"2640":1,"2673":1,"2674":2,"2682":1,"2684":1,"2712":1,"2713":1,"2728":1,"2748":1,"2755":1,"2757":2,"2794":1,"2795":1,"2851":1,"2864":1,"2941":1}}],["needed",{"2":{"11":1,"35":1,"113":1,"134":1,"158":1,"163":1,"196":1,"391":1,"420":1,"512":1,"514":1,"565":2,"639":1,"666":1,"714":1,"1194":1,"1197":2,"1200":1,"1311":1,"1332":1,"1395":2,"1450":1,"1463":1,"1496":1,"1534":1,"1591":1,"1605":1,"1681":1,"1779":1,"1985":1,"2012":1,"2013":1,"2038":1,"2076":1,"2086":1,"2261":1,"2277":1,"2298":1,"2302":1,"2309":2,"2319":1,"2374":1,"2459":1,"2601":1,"2637":1,"2640":1,"2664":1,"2667":2,"2670":1,"2714":1,"2726":1,"2800":2,"2889":1,"2934":1,"2945":1}}],["need",{"0":{"1496":1,"2438":1,"2480":1},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1},"2":{"5":1,"7":1,"12":1,"21":1,"35":1,"39":1,"40":1,"47":1,"89":1,"90":1,"107":1,"118":1,"124":1,"158":2,"179":1,"194":1,"199":1,"206":1,"208":1,"210":1,"232":1,"240":1,"241":1,"253":1,"255":1,"256":1,"259":1,"270":1,"272":2,"279":1,"281":1,"307":2,"323":2,"344":3,"388":1,"393":1,"403":2,"411":1,"414":1,"419":1,"420":1,"429":1,"433":1,"493":1,"496":1,"499":1,"509":2,"521":1,"525":2,"530":1,"531":1,"537":1,"541":1,"564":2,"589":1,"591":1,"606":1,"610":1,"613":1,"634":1,"637":1,"639":1,"644":1,"645":1,"665":1,"666":2,"672":1,"673":2,"686":1,"688":1,"690":1,"703":1,"720":1,"721":1,"725":1,"728":1,"752":1,"754":2,"765":1,"768":2,"801":1,"804":1,"827":1,"830":1,"856":1,"861":1,"862":1,"888":1,"892":1,"920":1,"926":1,"927":1,"955":1,"960":1,"961":1,"989":1,"994":1,"995":1,"1023":1,"1028":1,"1029":1,"1057":1,"1062":1,"1063":1,"1091":1,"1096":1,"1097":1,"1125":1,"1130":1,"1131":1,"1159":1,"1164":1,"1165":1,"1207":1,"1215":1,"1218":1,"1246":1,"1247":1,"1248":2,"1267":1,"1269":2,"1284":1,"1287":1,"1299":1,"1300":1,"1303":1,"1313":1,"1315":1,"1316":1,"1318":1,"1319":1,"1332":1,"1336":2,"1342":1,"1348":1,"1354":1,"1365":1,"1366":1,"1369":1,"1380":1,"1388":1,"1390":1,"1417":1,"1423":1,"1426":1,"1439":2,"1442":1,"1450":1,"1464":1,"1470":1,"1472":2,"1510":1,"1522":2,"1526":3,"1527":1,"1537":1,"1538":1,"1544":1,"1546":1,"1556":2,"1557":1,"1589":1,"1590":1,"1591":2,"1594":1,"1602":2,"1603":1,"1606":1,"1612":2,"1615":1,"1622":1,"1627":1,"1634":1,"1642":1,"1656":1,"1666":1,"1667":1,"1681":1,"1762":1,"1768":2,"1779":2,"1781":2,"1782":1,"1789":1,"1802":1,"1836":1,"1923":3,"1944":1,"1947":1,"1953":1,"1965":2,"1983":2,"2012":1,"2037":1,"2043":1,"2046":1,"2054":1,"2057":1,"2058":1,"2070":1,"2086":1,"2179":1,"2189":2,"2194":1,"2198":1,"2208":1,"2210":2,"2211":1,"2220":1,"2264":2,"2266":1,"2267":1,"2268":1,"2273":2,"2275":2,"2277":1,"2278":1,"2280":4,"2281":1,"2284":1,"2286":1,"2293":1,"2298":1,"2300":1,"2309":2,"2316":1,"2317":4,"2318":1,"2319":2,"2327":1,"2329":1,"2331":2,"2387":1,"2399":1,"2401":1,"2403":1,"2404":1,"2411":1,"2416":1,"2417":3,"2418":3,"2421":1,"2427":1,"2428":2,"2432":1,"2434":2,"2452":1,"2454":2,"2475":1,"2482":2,"2483":2,"2484":1,"2488":1,"2497":1,"2506":1,"2561":1,"2569":1,"2573":1,"2586":1,"2587":1,"2591":2,"2595":1,"2599":2,"2602":1,"2603":1,"2616":1,"2618":1,"2619":3,"2621":1,"2622":1,"2624":1,"2635":1,"2637":2,"2640":2,"2651":2,"2653":1,"2656":1,"2657":1,"2658":1,"2660":1,"2664":1,"2668":1,"2669":1,"2671":1,"2674":3,"2691":1,"2714":1,"2726":3,"2727":1,"2730":1,"2753":2,"2755":1,"2757":3,"2758":1,"2794":1,"2842":1,"2851":1,"2886":1,"2888":2,"2889":2,"2894":1,"2897":1,"2901":1,"2905":1,"2912":5,"2933":2,"2941":1,"2950":2}}],["newhaven",{"2":{"2283":1}}],["newbs",{"2":{"684":2,"1336":1,"2591":1,"2642":1,"2665":1,"2730":2}}],["newest",{"2":{"178":1,"188":1,"408":1,"411":1,"412":1}}],["newer",{"2":{"39":1,"43":2,"123":1,"133":1,"149":1,"157":1,"236":3,"308":1,"2068":1,"2389":1,"2888":1}}],["newline",{"2":{"1333":1,"1448":2,"1713":1}}],["newlines",{"2":{"344":1,"513":1,"2563":1}}],["newlib",{"2":{"175":1}}],["newly",{"2":{"172":1,"175":1,"266":1,"275":1,"1472":1,"2310":1,"2433":1,"2597":1,"2669":1,"2674":1,"2726":1,"2729":1}}],["news",{"2":{"133":1,"134":1}}],["new",{"0":{"82":1,"112":1,"130":1,"145":1,"146":1,"444":1,"445":1,"629":1,"1796":1,"2584":1,"2711":1,"2712":1,"2713":1,"2945":1},"1":{"147":1,"148":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1},"2":{"1":1,"12":1,"14":1,"15":1,"26":1,"27":2,"28":1,"33":2,"36":1,"39":1,"56":2,"57":1,"58":1,"67":1,"70":4,"82":1,"86":1,"93":1,"99":2,"102":1,"103":1,"112":2,"113":2,"114":3,"118":3,"122":1,"123":1,"125":1,"126":1,"130":1,"132":1,"133":1,"134":4,"143":1,"149":7,"152":1,"153":2,"156":2,"158":1,"159":1,"160":1,"165":1,"166":5,"167":3,"169":1,"170":1,"175":1,"179":1,"182":1,"183":1,"188":2,"191":2,"194":1,"197":1,"199":3,"201":1,"205":1,"206":1,"207":1,"209":6,"213":1,"214":1,"218":1,"222":1,"224":1,"226":1,"228":3,"229":1,"230":2,"234":1,"236":3,"240":1,"241":1,"243":2,"244":1,"249":2,"253":1,"254":1,"265":1,"266":3,"270":1,"271":1,"273":1,"277":1,"281":1,"283":1,"285":3,"288":1,"291":1,"294":1,"300":1,"303":1,"307":3,"308":6,"311":1,"322":1,"328":1,"331":1,"333":2,"338":1,"353":2,"366":1,"402":2,"403":2,"405":1,"412":2,"414":1,"422":1,"432":1,"443":1,"444":2,"445":2,"448":1,"449":1,"450":3,"485":2,"486":1,"495":1,"540":1,"542":1,"607":2,"612":1,"613":2,"623":2,"628":1,"630":1,"651":1,"666":2,"668":2,"672":2,"673":3,"681":1,"682":1,"684":1,"686":1,"687":1,"688":1,"1332":1,"1338":1,"1343":1,"1350":1,"1417":2,"1431":1,"1433":1,"1446":1,"1472":5,"1500":1,"1521":1,"1522":1,"1535":1,"1551":1,"1622":1,"1627":1,"1628":1,"1630":1,"1846":1,"1850":2,"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1890":1,"1891":1,"1892":1,"1897":1,"1900":1,"1902":1,"1940":2,"1947":1,"1948":1,"1954":2,"1955":1,"1984":1,"1988":2,"1990":1,"1999":1,"2082":1,"2088":2,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2144":1,"2145":1,"2146":1,"2151":1,"2154":1,"2156":1,"2161":1,"2259":1,"2286":1,"2290":2,"2295":2,"2298":1,"2303":1,"2310":1,"2341":1,"2343":1,"2382":1,"2387":1,"2393":1,"2406":1,"2408":1,"2410":1,"2418":1,"2428":1,"2432":2,"2459":1,"2500":1,"2502":1,"2504":2,"2567":1,"2568":1,"2583":1,"2584":4,"2588":1,"2590":1,"2594":4,"2597":1,"2621":1,"2622":1,"2637":1,"2638":2,"2640":5,"2642":1,"2643":1,"2662":1,"2669":1,"2691":1,"2707":1,"2711":1,"2712":1,"2713":1,"2714":5,"2726":2,"2728":3,"2729":6,"2795":1,"2836":1,"2893":2,"2912":5,"2926":1,"2942":1,"2945":2}}],["nose",{"2":{"2421":1,"2428":1}}],["nose2",{"2":{"501":1,"505":2}}],["nos",{"2":{"1490":1,"2434":1}}],["nobody",{"2":{"513":1}}],["nodes",{"2":{"585":1,"1538":5}}],["node",{"2":{"386":1,"460":1,"461":1,"582":1,"585":1,"1525":1,"1538":23,"1539":8,"2057":2}}],["nomenclature",{"0":{"2694":1}}],["nomis",{"2":{"339":1}}],["nomu30",{"2":{"143":2}}],["nop",{"2":{"249":1}}],["nopq",{"2":{"249":1}}],["noop",{"2":{"2519":1,"2522":1,"2561":1}}],["noodlepad",{"2":{"249":1}}],["noon",{"2":{"222":1}}],["noxary",{"2":{"222":2}}],["noevent",{"2":{"199":1}}],["noeeprom",{"0":{"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1},"1":{"1872":1,"1892":1,"1898":1,"2114":1,"2146":1,"2152":1,"2162":1},"2":{"39":2,"175":1,"641":3,"1417":14,"2097":2,"2199":3,"2200":3,"2201":7,"2202":3,"2205":1}}],["noconfirm",{"2":{"158":1,"2601":1}}],["noci",{"2":{"149":1,"175":1}}],["norwegian",{"2":{"2887":3}}],["northwest",{"2":{"1741":1}}],["northeast",{"2":{"1741":1}}],["north",{"2":{"1346":1,"1741":2,"2051":1}}],["noroadsleft",{"2":{"266":1}}],["nor",{"2":{"189":1,"494":1,"637":1,"746":1,"753":1,"755":2,"758":1,"759":2,"1298":1,"1535":1,"2399":1,"2404":1,"2707":1,"2731":1}}],["norman",{"2":{"191":1,"2887":3}}],["normalized",{"2":{"1641":1}}],["normalise",{"2":{"172":9,"175":10,"199":1,"266":1,"277":1}}],["normal",{"2":{"128":1,"152":1,"154":1,"224":1,"288":1,"340":1,"350":1,"494":1,"570":1,"630":1,"754":1,"757":2,"1320":2,"1349":1,"1378":2,"1413":1,"1417":2,"1425":1,"1446":1,"1447":2,"1498":3,"1503":1,"1518":1,"1522":1,"1535":1,"1610":1,"1626":1,"1633":1,"1638":1,"1656":1,"1667":2,"1784":1,"1785":1,"1786":1,"1787":1,"1986":1,"2051":1,"2255":1,"2265":1,"2273":1,"2275":1,"2276":1,"2277":1,"2379":1,"2417":1,"2576":3,"2590":1,"2594":1,"2637":1,"2650":1,"2651":1,"2674":2,"2687":1,"2704":1,"2728":1,"2738":1,"2753":1,"2756":1,"2757":2,"2903":1,"2932":1,"2944":1}}],["normally",{"2":{"99":1,"179":1,"302":1,"470":1,"495":1,"496":1,"569":1,"631":1,"683":1,"1417":1,"1431":1,"1447":1,"1514":1,"1614":1,"1630":1,"1781":2,"1962":1,"2076":1,"2077":1,"2192":1,"2206":1,"2272":1,"2292":1,"2318":1,"2535":1,"2658":1,"2920":1,"2921":1,"2941":1}}],["norm",{"2":{"175":1,"247":1,"525":1,"1485":4,"1486":6,"1656":1,"2520":6,"2538":6}}],["nordic",{"2":{"5":1,"2375":2,"2735":2,"2736":5,"2741":4,"2742":1,"2744":1,"2745":1,"2750":1}}],["novices",{"2":{"2632":1}}],["novice",{"2":{"2460":1}}],["novelpad",{"2":{"143":2}}],["novelkeys",{"2":{"143":4,"149":1,"222":2,"311":2,"317":1}}],["november",{"0":{"115":1,"161":1,"223":1,"278":1},"1":{"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1},"2":{"279":1}}],["nov",{"0":{"52":1,"318":1},"1":{"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1},"2":{"55":1,"88":1,"104":1,"127":1,"185":1,"400":1,"413":6}}],["noise",{"2":{"50":1,"1409":4,"1410":6,"1413":2,"2053":1,"2390":1,"2397":1}}],["nonus",{"2":{"2512":2,"2522":2}}],["nonactuated",{"2":{"1681":2}}],["nonnull",{"2":{"1419":4}}],["nonstandard",{"2":{"317":1}}],["nonex",{"2":{"2455":1}}],["none",{"2":{"266":1,"328":1,"333":1,"339":2,"387":1,"397":1,"473":2,"474":2,"476":1,"482":2,"483":2,"484":3,"485":5,"487":1,"534":1,"689":2,"749":1,"750":1,"759":1,"860":2,"921":4,"923":1,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1092":4,"1094":1,"1095":2,"1126":4,"1128":1,"1129":2,"1163":2,"1192":1,"1248":1,"1318":1,"1522":1,"1551":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1847":1,"1849":1,"1852":6,"2003":1,"2008":7,"2009":3,"2059":2,"2083":1,"2085":1,"2091":8,"2183":4,"2298":1,"2317":3,"2318":1,"2319":3,"2377":2,"2455":1,"2528":2,"2685":1,"2714":1,"2753":1}}],["non",{"0":{"2462":1,"2710":1,"2799":1},"2":{"18":1,"39":1,"41":1,"70":1,"94":1,"133":1,"134":2,"160":2,"191":2,"199":1,"201":1,"210":1,"249":1,"308":2,"514":1,"581":1,"719":1,"757":1,"1417":1,"1422":1,"1428":2,"1439":1,"1442":1,"1517":1,"1527":1,"1528":1,"1666":1,"1681":2,"1692":2,"1781":2,"1784":1,"1785":2,"1787":2,"1999":1,"2000":1,"2003":1,"2009":1,"2014":1,"2072":2,"2269":1,"2276":1,"2296":1,"2297":1,"2317":1,"2318":1,"2319":1,"2331":1,"2395":1,"2434":1,"2435":1,"2460":1,"2512":2,"2519":1,"2522":3,"2559":2,"2566":1,"2568":2,"2704":1,"2710":2,"2725":1,"2726":1,"2728":1,"2747":1,"2792":1,"2797":1,"2895":1}}],["nowhere",{"2":{"2567":1}}],["now",{"0":{"90":1,"105":1,"137":1,"273":1},"2":{"15":1,"35":1,"39":5,"40":2,"43":3,"44":2,"49":1,"51":2,"58":1,"69":2,"70":2,"73":1,"74":1,"76":1,"80":1,"83":1,"94":1,"98":1,"99":2,"103":1,"104":1,"105":1,"107":1,"114":1,"118":2,"119":1,"120":2,"124":2,"125":1,"126":2,"127":1,"130":1,"131":1,"134":1,"137":1,"138":1,"141":1,"146":1,"153":1,"166":2,"169":1,"187":1,"188":1,"189":1,"194":1,"195":1,"196":1,"202":1,"212":3,"217":2,"220":1,"222":1,"224":1,"234":2,"235":1,"245":1,"246":1,"248":1,"262":2,"263":1,"273":1,"275":2,"283":2,"293":2,"305":2,"307":1,"314":3,"323":2,"331":1,"389":1,"392":1,"393":3,"403":1,"405":1,"406":1,"407":1,"408":2,"411":4,"473":2,"512":1,"539":1,"540":1,"589":1,"665":1,"721":1,"1311":1,"1362":4,"1376":1,"1417":3,"1448":1,"1472":1,"1523":4,"1592":1,"1604":1,"1615":1,"1673":2,"1762":1,"1786":1,"1801":1,"1802":1,"2189":1,"2190":1,"2249":1,"2255":1,"2259":1,"2260":1,"2277":1,"2298":1,"2302":1,"2310":1,"2315":1,"2317":1,"2319":1,"2387":2,"2430":1,"2466":2,"2498":1,"2502":1,"2508":1,"2561":1,"2566":1,"2582":1,"2583":1,"2590":2,"2595":1,"2611":1,"2629":1,"2630":1,"2634":2,"2635":1,"2636":1,"2637":3,"2639":3,"2640":1,"2662":1,"2663":1,"2669":1,"2673":1,"2684":1,"2714":2,"2729":2,"2894":1,"2912":1}}],["no",{"0":{"141":1,"592":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1512":1,"1616":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2933":1},"2":{"2":2,"5":1,"6":1,"38":1,"40":1,"74":1,"88":2,"92":1,"103":2,"104":2,"112":1,"114":1,"118":1,"124":1,"126":1,"127":2,"130":1,"134":1,"141":1,"149":3,"154":1,"173":1,"175":1,"191":1,"196":1,"199":2,"201":1,"206":1,"212":1,"222":2,"224":1,"231":1,"233":1,"240":1,"245":1,"249":1,"255":1,"262":1,"265":1,"266":4,"268":1,"273":3,"276":1,"279":1,"284":1,"285":1,"312":1,"317":1,"328":1,"348":1,"402":1,"409":1,"411":1,"412":1,"422":1,"434":1,"439":1,"455":1,"459":1,"475":2,"540":1,"562":5,"564":2,"570":1,"574":1,"575":1,"589":1,"596":1,"607":1,"609":3,"612":1,"620":1,"639":2,"675":1,"676":1,"685":1,"687":1,"723":1,"750":1,"752":1,"767":1,"768":1,"923":1,"1094":1,"1128":1,"1213":1,"1247":1,"1248":3,"1268":1,"1276":1,"1297":1,"1298":1,"1319":1,"1320":1,"1361":1,"1372":1,"1380":1,"1405":1,"1408":1,"1410":1,"1413":7,"1416":1,"1424":1,"1431":1,"1462":1,"1463":1,"1481":1,"1490":1,"1491":1,"1496":1,"1498":3,"1500":1,"1502":2,"1503":1,"1510":5,"1517":1,"1518":1,"1522":2,"1528":4,"1533":2,"1534":1,"1590":6,"1595":1,"1598":1,"1605":1,"1609":1,"1616":1,"1618":2,"1620":1,"1622":2,"1641":1,"1661":1,"1662":2,"1664":1,"1668":1,"1670":1,"1671":2,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1742":1,"1776":5,"1779":3,"1781":5,"1782":2,"1785":2,"1786":1,"1788":3,"1790":1,"1802":1,"1804":1,"1815":1,"1818":1,"1846":10,"1847":1,"1849":1,"1925":1,"1937":2,"1938":1,"1943":4,"1971":1,"2016":2,"2059":1,"2068":1,"2069":1,"2082":10,"2083":1,"2085":1,"2095":1,"2181":1,"2191":2,"2198":1,"2210":2,"2220":1,"2258":1,"2259":3,"2260":1,"2275":2,"2278":2,"2292":2,"2298":3,"2310":1,"2316":1,"2317":1,"2325":1,"2376":1,"2394":1,"2417":1,"2418":5,"2419":1,"2425":4,"2433":1,"2450":1,"2460":1,"2466":3,"2478":1,"2504":1,"2509":1,"2519":1,"2522":1,"2539":1,"2544":1,"2561":2,"2564":1,"2567":4,"2568":1,"2571":1,"2576":1,"2577":2,"2612":1,"2618":1,"2636":1,"2653":1,"2657":1,"2664":1,"2670":1,"2674":1,"2685":1,"2720":1,"2726":1,"2727":1,"2728":15,"2734":2,"2735":2,"2736":1,"2739":2,"2741":1,"2748":4,"2749":4,"2750":1,"2753":1,"2755":8,"2757":3,"2767":1,"2773":1,"2776":5,"2794":8,"2854":1,"2869":1,"2871":1,"2872":1,"2878":1,"2882":1,"2886":2,"2889":7,"2890":2,"2891":2,"2892":1,"2912":1,"2913":1,"2926":2,"2929":3,"2931":2,"2933":1,"2935":1,"2937":1,"2938":5}}],["noto11",{"2":{"2755":4,"2757":3}}],["notosans",{"2":{"2755":1}}],["notset",{"2":{"492":1}}],["nothing",{"0":{"1320":1},"2":{"432":1,"666":1,"750":1,"1362":3,"1431":2,"1625":1,"1786":1,"2013":1,"2069":1,"2260":1,"2417":1,"2686":1,"2687":1,"2906":1,"2912":1,"2927":1,"2929":2}}],["noting",{"2":{"1605":1,"2309":1}}],["notion",{"2":{"1534":1}}],["notification",{"2":{"352":1,"362":1,"1627":1}}],["notified",{"2":{"312":1}}],["noticeably",{"2":{"1953":1}}],["noticeable",{"2":{"572":1,"2920":1}}],["noticed",{"2":{"1671":1,"1953":1}}],["notices",{"0":{"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"330":1,"336":1},"1":{"265":1,"275":1,"276":1,"283":1,"284":1,"293":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"314":1,"315":1,"316":1,"327":1,"331":1,"332":1,"337":1,"338":1},"2":{"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1}}],["notice",{"0":{"2903":1},"2":{"263":1,"264":1,"274":1,"276":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"411":1,"1447":2,"1448":1,"2903":1,"2932":1,"2938":2,"2939":1}}],["notably",{"2":{"158":1,"1343":1,"1961":1}}],["notable",{"0":{"79":1,"97":1,"106":1,"117":1,"129":1,"136":1,"144":1,"151":1,"162":1,"171":1,"177":1,"186":1,"198":1,"201":1,"212":1,"219":1,"224":1,"227":1,"238":1,"242":1,"251":1,"261":1,"268":1,"279":1,"287":1,"296":1,"319":1,"335":1},"1":{"80":1,"81":1,"82":1,"83":1,"84":1,"98":1,"99":1,"100":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"118":1,"119":1,"120":1,"130":1,"131":1,"132":1,"133":1,"137":1,"138":1,"145":1,"146":1,"147":1,"148":1,"152":1,"153":1,"154":1,"163":1,"172":1,"173":1,"174":1,"178":1,"179":1,"187":1,"188":1,"189":1,"190":1,"202":1,"203":1,"213":1,"214":1,"215":1,"220":1,"221":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"262":1,"263":1,"288":1,"289":1,"297":1,"298":1,"320":1},"2":{"224":1,"279":1,"685":1,"1477":1,"2569":1}}],["notation",{"0":{"111":1},"2":{"111":1,"323":2,"670":1,"2466":1}}],["noted",{"2":{"103":1,"126":1,"276":1,"1472":1,"2085":1,"2589":1}}],["notes",{"0":{"720":1,"723":1,"2730":1},"2":{"43":1,"203":1,"409":1,"714":1,"720":1,"1392":1,"1393":1,"1408":2,"1476":1,"1485":2,"1490":1,"1491":1,"1493":1,"1697":1,"1925":2,"1943":1,"2008":1,"2011":1,"2262":1,"2283":1,"2539":2,"2691":1,"2891":1,"2926":1}}],["note",{"0":{"17":1,"2426":1},"2":{"17":1,"132":1,"199":1,"201":1,"210":5,"212":1,"241":1,"253":1,"270":1,"272":1,"273":1,"281":1,"396":1,"397":1,"423":1,"430":1,"432":1,"439":1,"461":1,"538":1,"565":1,"593":2,"609":1,"656":1,"688":1,"689":1,"695":2,"699":2,"717":1,"742":1,"763":1,"891":1,"1192":1,"1197":1,"1200":1,"1290":1,"1315":1,"1316":1,"1365":1,"1371":1,"1407":1,"1422":3,"1438":1,"1440":1,"1448":1,"1463":1,"1471":1,"1477":1,"1481":1,"1487":1,"1488":1,"1493":3,"1503":1,"1514":1,"1518":1,"1522":1,"1551":1,"1554":1,"1597":1,"1633":1,"1664":1,"1740":1,"1786":1,"1787":1,"1788":1,"1790":1,"1846":1,"1850":1,"1919":3,"1925":72,"1926":1,"1954":2,"1957":1,"1965":1,"1983":1,"1985":1,"2001":1,"2009":1,"2012":2,"2014":1,"2040":1,"2047":1,"2082":1,"2086":1,"2088":1,"2183":1,"2188":1,"2189":3,"2191":1,"2198":1,"2221":1,"2266":1,"2267":1,"2272":1,"2303":1,"2319":2,"2320":1,"2323":1,"2331":1,"2374":1,"2384":2,"2417":2,"2418":1,"2425":1,"2430":2,"2431":1,"2434":1,"2485":1,"2487":1,"2489":1,"2496":1,"2498":1,"2502":1,"2506":1,"2539":72,"2559":2,"2561":1,"2563":1,"2564":1,"2589":1,"2607":1,"2622":1,"2626":1,"2627":1,"2628":1,"2653":1,"2660":1,"2673":1,"2694":1,"2710":1,"2726":1,"2727":1,"2752":1,"2754":1,"2757":1,"2886":1,"2889":1,"2906":1,"2912":2,"2914":1,"2915":1,"2927":2,"2929":1,"2944":2,"2945":3,"2946":1}}],["not",{"0":{"617":1,"1317":1,"1349":1},"2":{"0":1,"5":1,"9":1,"13":3,"15":1,"18":1,"21":1,"24":1,"29":1,"39":1,"40":1,"42":1,"47":1,"52":1,"73":1,"90":1,"92":2,"114":2,"125":1,"134":3,"149":1,"153":2,"154":1,"160":2,"166":1,"169":1,"181":1,"191":1,"194":1,"198":1,"199":4,"202":1,"209":1,"210":1,"212":2,"220":1,"222":1,"232":1,"236":2,"240":2,"241":1,"249":2,"251":1,"253":1,"266":2,"268":1,"270":1,"273":1,"276":1,"277":2,"281":1,"284":1,"303":1,"317":1,"320":1,"328":1,"338":1,"339":1,"344":6,"347":2,"365":1,"370":1,"373":1,"396":2,"399":1,"403":3,"414":1,"419":1,"433":2,"439":3,"444":2,"461":1,"463":1,"489":1,"492":1,"494":1,"495":1,"496":1,"499":2,"500":1,"505":2,"511":1,"512":6,"514":3,"516":1,"518":1,"519":2,"524":2,"525":1,"526":1,"528":1,"530":1,"531":1,"532":1,"533":2,"535":1,"538":1,"539":1,"540":1,"542":1,"544":1,"545":1,"546":1,"555":1,"556":1,"561":1,"564":3,"568":1,"569":2,"572":1,"574":1,"575":1,"582":1,"588":1,"592":1,"596":2,"597":1,"599":1,"600":1,"604":1,"605":1,"607":1,"608":1,"609":5,"612":2,"613":2,"617":2,"626":1,"633":1,"639":2,"643":1,"647":2,"651":1,"653":1,"656":1,"657":2,"659":1,"668":2,"672":2,"676":1,"683":1,"685":1,"686":2,"687":1,"688":1,"689":1,"693":2,"695":2,"704":2,"707":1,"714":3,"719":1,"723":3,"726":3,"735":1,"744":1,"748":1,"749":1,"753":1,"754":4,"755":1,"762":1,"763":1,"767":1,"774":1,"777":1,"780":1,"783":2,"786":1,"789":1,"792":1,"795":1,"797":2,"802":1,"812":1,"816":1,"820":1,"822":1,"828":5,"839":1,"843":1,"847":1,"849":1,"857":5,"871":1,"875":1,"879":1,"881":1,"889":6,"903":1,"907":1,"911":1,"913":1,"921":5,"938":1,"942":1,"946":1,"948":1,"956":5,"972":1,"976":1,"980":1,"982":1,"990":5,"1006":1,"1010":1,"1014":1,"1016":1,"1024":5,"1040":1,"1044":1,"1048":1,"1050":1,"1058":5,"1074":1,"1078":1,"1082":1,"1084":1,"1092":5,"1108":1,"1112":1,"1116":1,"1118":1,"1126":5,"1142":1,"1146":1,"1150":1,"1152":1,"1160":5,"1176":1,"1180":1,"1184":1,"1186":1,"1193":1,"1199":1,"1203":2,"1204":3,"1205":1,"1216":5,"1229":1,"1233":1,"1237":1,"1239":1,"1247":1,"1248":2,"1260":1,"1263":1,"1266":1,"1278":1,"1280":1,"1285":3,"1292":1,"1294":1,"1297":1,"1299":2,"1302":1,"1303":3,"1306":1,"1315":2,"1316":2,"1332":1,"1338":1,"1346":1,"1348":2,"1349":1,"1356":1,"1358":1,"1361":2,"1362":2,"1365":2,"1371":1,"1376":1,"1378":1,"1380":1,"1381":1,"1392":2,"1393":2,"1395":2,"1398":1,"1408":1,"1409":4,"1410":2,"1415":1,"1422":4,"1425":1,"1427":2,"1428":1,"1431":1,"1438":1,"1444":1,"1446":2,"1448":3,"1464":1,"1467":1,"1471":1,"1472":2,"1485":1,"1486":8,"1491":1,"1498":1,"1499":6,"1501":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1510":1,"1517":2,"1518":3,"1519":1,"1533":1,"1534":1,"1535":1,"1538":1,"1542":1,"1544":4,"1550":1,"1556":2,"1558":2,"1590":1,"1593":4,"1595":1,"1605":1,"1609":1,"1615":1,"1617":1,"1620":4,"1627":1,"1638":1,"1639":1,"1642":1,"1659":1,"1662":4,"1666":1,"1668":2,"1675":1,"1678":4,"1680":1,"1681":6,"1687":1,"1690":1,"1697":1,"1699":5,"1702":1,"1739":1,"1742":1,"1765":2,"1770":1,"1772":1,"1776":2,"1777":1,"1779":1,"1781":5,"1782":2,"1784":2,"1785":1,"1786":2,"1787":1,"1788":3,"1789":1,"1795":2,"1802":1,"1836":6,"1837":1,"1846":2,"1850":1,"1851":1,"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"1919":1,"1920":1,"1923":1,"1926":1,"1934":1,"1935":1,"1937":2,"1939":1,"1940":1,"1949":2,"1951":3,"1952":9,"1953":4,"1954":7,"1956":1,"1957":1,"1959":1,"1961":1,"1962":3,"1968":6,"1970":4,"1972":3,"1974":3,"1975":1,"1976":1,"1977":3,"1979":1,"1982":1,"1983":1,"1985":15,"1986":1,"1987":8,"1990":4,"1994":2,"1999":1,"2001":2,"2003":1,"2014":1,"2037":1,"2040":1,"2047":1,"2048":1,"2057":1,"2069":1,"2070":2,"2074":1,"2082":2,"2088":1,"2090":1,"2091":2,"2097":1,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2179":1,"2181":1,"2182":2,"2183":1,"2184":12,"2185":1,"2188":1,"2192":1,"2198":9,"2199":3,"2200":3,"2201":7,"2202":3,"2210":1,"2212":2,"2219":1,"2221":1,"2259":1,"2260":2,"2261":2,"2265":2,"2270":1,"2272":1,"2273":2,"2275":2,"2278":2,"2279":2,"2288":3,"2290":4,"2294":3,"2300":4,"2301":2,"2309":2,"2310":4,"2317":12,"2318":1,"2319":1,"2320":1,"2323":1,"2325":1,"2329":2,"2331":5,"2332":1,"2368":1,"2374":2,"2376":1,"2377":12,"2379":3,"2381":1,"2384":2,"2386":1,"2390":1,"2397":1,"2399":1,"2401":1,"2402":1,"2411":1,"2414":2,"2415":1,"2417":2,"2418":3,"2419":1,"2423":2,"2425":1,"2427":2,"2428":2,"2429":2,"2431":1,"2432":1,"2434":3,"2449":2,"2450":2,"2454":3,"2455":1,"2456":2,"2457":1,"2458":1,"2460":1,"2464":1,"2466":1,"2470":1,"2471":1,"2474":2,"2475":1,"2482":2,"2483":1,"2485":1,"2487":1,"2489":1,"2490":1,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":2,"2503":3,"2505":1,"2506":2,"2508":1,"2517":1,"2522":1,"2523":1,"2528":12,"2552":1,"2553":2,"2563":1,"2564":2,"2566":3,"2567":5,"2568":1,"2569":4,"2572":1,"2573":1,"2579":1,"2584":1,"2585":2,"2587":1,"2589":3,"2599":1,"2601":1,"2602":1,"2603":1,"2606":1,"2612":3,"2613":1,"2616":5,"2617":2,"2619":1,"2621":1,"2622":1,"2626":3,"2628":1,"2633":1,"2634":1,"2635":1,"2637":2,"2639":1,"2640":1,"2645":1,"2659":2,"2660":1,"2662":1,"2667":1,"2674":1,"2675":1,"2677":3,"2678":1,"2680":2,"2685":2,"2686":1,"2687":1,"2690":1,"2691":2,"2693":1,"2694":1,"2703":1,"2704":1,"2705":1,"2707":3,"2709":1,"2710":2,"2714":1,"2717":2,"2720":1,"2726":8,"2727":2,"2728":17,"2729":3,"2731":2,"2732":1,"2736":1,"2738":2,"2739":2,"2741":1,"2752":1,"2753":1,"2754":1,"2755":1,"2756":1,"2757":8,"2767":1,"2769":1,"2776":1,"2780":1,"2782":1,"2784":1,"2786":1,"2790":1,"2795":2,"2796":1,"2797":2,"2800":1,"2805":1,"2847":1,"2851":1,"2853":2,"2869":4,"2870":1,"2882":1,"2884":1,"2886":2,"2887":2,"2889":4,"2890":1,"2891":1,"2892":1,"2893":1,"2901":1,"2902":3,"2909":3,"2912":2,"2913":1,"2914":3,"2919":2,"2920":4,"2921":2,"2929":3,"2931":3,"2932":1,"2934":1,"2938":1,"2944":1,"2948":2,"2949":1,"2950":1}}],["y1",{"2":{"2757":1}}],["y0",{"2":{"2757":1}}],["y+",{"2":{"1971":1}}],["yyyy",{"2":{"411":2,"420":3,"421":3,"422":2,"423":2}}],["yyyyqn",{"2":{"403":1}}],["yynmt",{"2":{"143":2,"149":2}}],["yz",{"2":{"266":1,"328":1}}],["y",{"0":{"1653":1,"2782":1,"2784":1},"1":{"1654":1,"2783":1,"2785":1},"2":{"249":1,"308":1,"379":1,"435":2,"589":2,"1428":4,"1641":2,"1645":2,"1653":1,"1654":2,"1740":1,"1742":1,"1743":2,"1766":1,"1846":7,"1852":2,"1934":1,"1954":2,"1968":2,"1970":3,"1971":2,"1974":2,"1975":4,"1983":4,"1985":5,"1987":5,"1990":3,"1993":2,"1994":3,"1996":2,"1997":2,"2014":1,"2047":1,"2050":2,"2069":5,"2082":7,"2091":2,"2290":2,"2472":2,"2510":3,"2522":3,"2563":1,"2601":4,"2628":4,"2714":2,"2721":16,"2756":3,"2757":14,"2782":3,"2784":3,"2795":19,"2796":17,"2800":9,"2869":3,"2871":2,"2878":2,"2927":1}}],["ymlname",{"2":{"2607":1}}],["yml",{"2":{"2605":1,"2607":2,"2608":1,"2609":1,"2610":1}}],["ym68",{"2":{"222":1}}],["ymd96",{"2":{"143":2,"149":1}}],["ymd75",{"2":{"143":2,"149":1,"210":1}}],["ymdk",{"2":{"143":5,"149":5,"159":1,"160":1,"210":1,"222":5,"226":2,"236":1,"291":2,"294":1,"308":1}}],["yttyx",{"2":{"222":1}}],["yum",{"2":{"2601":1}}],["yunzii",{"2":{"2567":1}}],["yugo",{"2":{"218":2,"222":1}}],["yurei",{"2":{"143":2}}],["yosino58",{"2":{"191":1}}],["youtube",{"2":{"2187":2}}],["yourgithub",{"2":{"2732":2}}],["yours",{"0":{"2479":1},"2":{"672":1}}],["yourself",{"2":{"398":1,"418":1,"513":1,"542":1,"1371":1,"1424":1,"1622":1,"1762":1,"2208":1,"2298":1,"2501":1,"2560":1,"2579":1}}],["yourkeyboard",{"2":{"212":1}}],["yourkeymap",{"2":{"132":1}}],["yourkb",{"2":{"132":1}}],["your",{"0":{"416":1,"417":1,"509":1,"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"602":1,"626":1,"1327":1,"1414":1,"1442":1,"1627":1,"1628":1,"1673":1,"1931":1,"2434":1,"2449":1,"2582":1,"2583":1,"2585":1,"2586":1,"2587":1,"2588":1,"2610":1,"2611":1,"2612":1,"2613":1,"2615":1,"2616":1,"2618":1,"2620":1,"2629":1,"2630":1,"2634":1,"2636":1,"2637":1,"2638":1,"2639":1,"2641":1,"2663":1,"2714":1,"2780":1,"2793":1,"2885":1},"1":{"627":1,"1932":1,"1933":1,"2583":1,"2584":1,"2585":1,"2586":1,"2587":1,"2588":1,"2612":1,"2613":1,"2614":2,"2615":2,"2616":1,"2617":1,"2619":1,"2620":1,"2621":2,"2622":2,"2623":2,"2624":2,"2625":2,"2626":2,"2627":2,"2628":1,"2629":1,"2639":1,"2640":1,"2641":1,"2715":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2722":1,"2723":1,"2724":1,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"1":1,"13":1,"15":1,"21":1,"24":1,"26":1,"27":1,"33":1,"35":2,"39":3,"47":1,"51":4,"82":1,"87":1,"89":1,"90":1,"107":2,"110":3,"116":1,"119":4,"120":1,"124":3,"132":1,"196":1,"206":1,"212":1,"213":2,"228":1,"233":2,"235":1,"240":1,"241":2,"253":2,"255":2,"256":1,"257":1,"258":1,"259":2,"270":2,"272":2,"273":3,"276":1,"281":2,"284":1,"288":1,"307":7,"323":2,"344":3,"353":1,"365":1,"374":1,"375":1,"378":1,"380":2,"381":1,"382":1,"384":1,"386":1,"389":2,"393":3,"396":1,"397":2,"398":2,"403":4,"414":2,"415":1,"416":2,"417":2,"418":2,"420":1,"426":1,"429":2,"432":1,"434":1,"435":4,"439":1,"448":1,"449":1,"450":1,"456":1,"458":1,"460":1,"462":1,"476":1,"489":2,"490":1,"491":3,"494":2,"495":1,"505":5,"506":1,"509":1,"512":2,"513":1,"515":1,"519":1,"521":1,"525":2,"537":1,"540":3,"541":1,"561":7,"563":1,"567":1,"574":2,"593":3,"594":3,"595":1,"596":3,"597":1,"599":4,"600":3,"603":1,"604":2,"607":9,"609":3,"610":1,"611":2,"612":3,"613":11,"620":1,"622":1,"623":2,"624":2,"625":2,"626":2,"627":1,"629":4,"632":1,"643":3,"646":1,"647":2,"648":1,"660":1,"666":2,"668":2,"671":1,"672":3,"673":4,"675":2,"676":1,"677":1,"681":3,"683":2,"684":1,"685":1,"686":3,"687":3,"689":1,"691":2,"698":1,"699":1,"701":4,"703":2,"704":1,"720":2,"721":1,"725":1,"726":1,"727":1,"729":1,"742":1,"746":1,"749":2,"750":1,"753":1,"754":2,"755":1,"756":1,"757":1,"759":1,"765":2,"766":1,"767":1,"768":3,"772":1,"797":1,"801":1,"802":1,"805":1,"827":1,"828":1,"829":1,"831":1,"856":1,"857":1,"858":1,"859":1,"860":1,"861":1,"863":1,"888":1,"889":1,"890":1,"891":1,"893":1,"920":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"928":1,"955":1,"956":1,"957":1,"958":1,"959":1,"960":1,"962":1,"989":1,"990":1,"991":1,"992":1,"993":1,"994":1,"996":1,"1023":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1030":1,"1057":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1064":1,"1091":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1098":1,"1125":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1132":1,"1159":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1166":1,"1195":2,"1198":4,"1200":1,"1201":4,"1203":6,"1204":7,"1206":1,"1208":1,"1209":1,"1213":1,"1215":1,"1216":1,"1217":1,"1219":1,"1246":2,"1247":1,"1248":3,"1267":2,"1268":1,"1269":2,"1284":2,"1285":1,"1286":1,"1287":2,"1288":1,"1294":1,"1297":2,"1300":2,"1301":1,"1303":1,"1311":1,"1312":1,"1313":2,"1315":2,"1317":3,"1320":2,"1322":4,"1323":1,"1324":1,"1325":1,"1327":2,"1329":1,"1330":1,"1331":1,"1332":2,"1333":1,"1342":1,"1347":1,"1348":2,"1349":1,"1354":2,"1359":1,"1364":2,"1365":3,"1368":1,"1370":1,"1372":1,"1388":2,"1390":1,"1392":1,"1396":1,"1403":1,"1406":1,"1407":1,"1410":2,"1414":2,"1415":3,"1417":2,"1420":2,"1422":3,"1423":2,"1424":1,"1425":4,"1426":2,"1427":3,"1431":1,"1439":1,"1440":1,"1442":1,"1443":2,"1448":1,"1449":2,"1451":1,"1463":3,"1464":5,"1465":2,"1466":1,"1467":4,"1468":1,"1470":9,"1471":6,"1472":7,"1473":2,"1480":4,"1485":5,"1488":3,"1490":6,"1491":3,"1492":4,"1493":1,"1497":1,"1498":1,"1500":2,"1501":1,"1502":1,"1503":3,"1518":1,"1520":1,"1521":3,"1522":5,"1523":1,"1524":1,"1526":1,"1527":1,"1533":1,"1542":1,"1544":2,"1545":1,"1546":1,"1551":1,"1556":2,"1578":1,"1579":1,"1589":2,"1590":1,"1591":2,"1592":1,"1594":3,"1601":1,"1602":2,"1603":1,"1605":2,"1606":1,"1607":1,"1612":1,"1613":1,"1617":1,"1618":1,"1619":1,"1622":4,"1623":2,"1625":1,"1627":4,"1628":3,"1640":1,"1655":2,"1656":3,"1657":1,"1661":3,"1662":1,"1663":2,"1665":4,"1666":1,"1667":4,"1668":2,"1670":1,"1672":1,"1676":1,"1683":1,"1684":2,"1685":2,"1698":1,"1699":1,"1701":1,"1713":1,"1738":1,"1739":2,"1740":1,"1741":1,"1742":2,"1763":2,"1765":1,"1766":3,"1768":2,"1769":1,"1779":1,"1784":1,"1786":1,"1788":2,"1790":2,"1795":1,"1797":2,"1798":1,"1800":1,"1801":2,"1802":13,"1803":1,"1836":2,"1841":1,"1845":1,"1846":3,"1849":1,"1850":3,"1851":3,"1919":1,"1921":1,"1922":1,"1923":1,"1930":1,"1931":1,"1932":1,"1933":1,"1934":1,"1935":2,"1936":1,"1937":1,"1938":4,"1939":4,"1944":2,"1945":3,"1952":1,"1957":1,"1959":1,"1962":5,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":1,"1978":1,"1979":2,"1980":1,"1981":1,"1982":2,"1983":2,"1984":1,"1987":1,"1990":1,"1998":1,"2001":1,"2017":1,"2037":1,"2040":1,"2041":1,"2042":1,"2043":1,"2046":1,"2048":1,"2053":1,"2055":1,"2056":1,"2057":5,"2058":1,"2066":2,"2070":1,"2072":1,"2079":1,"2081":1,"2082":3,"2085":2,"2086":1,"2088":2,"2090":3,"2178":2,"2179":6,"2181":2,"2182":2,"2183":1,"2188":2,"2191":1,"2192":1,"2193":1,"2194":1,"2206":1,"2208":2,"2209":1,"2210":3,"2215":1,"2220":1,"2221":1,"2223":1,"2225":1,"2249":1,"2250":2,"2256":2,"2258":1,"2259":2,"2268":1,"2269":1,"2271":1,"2272":4,"2273":1,"2274":2,"2275":1,"2276":1,"2278":1,"2284":5,"2292":3,"2293":3,"2294":2,"2295":1,"2296":1,"2297":5,"2298":7,"2300":1,"2301":1,"2302":2,"2305":1,"2308":1,"2309":4,"2310":1,"2312":4,"2317":6,"2318":4,"2319":5,"2320":1,"2322":2,"2324":2,"2326":1,"2327":1,"2328":2,"2329":6,"2330":5,"2331":4,"2376":1,"2378":1,"2381":1,"2382":2,"2387":13,"2388":2,"2389":1,"2390":1,"2392":1,"2394":1,"2395":1,"2396":2,"2397":2,"2399":1,"2401":1,"2403":1,"2404":1,"2406":1,"2408":1,"2410":1,"2415":3,"2417":1,"2418":16,"2419":4,"2421":1,"2423":3,"2425":3,"2427":3,"2428":4,"2429":2,"2430":2,"2432":5,"2433":3,"2434":3,"2447":1,"2448":2,"2451":2,"2453":4,"2454":1,"2455":1,"2456":1,"2458":1,"2459":3,"2460":3,"2461":4,"2463":1,"2464":7,"2467":1,"2469":1,"2472":1,"2473":1,"2479":1,"2481":1,"2494":1,"2497":1,"2502":1,"2506":2,"2508":1,"2520":2,"2525":1,"2562":1,"2565":1,"2567":1,"2572":1,"2573":1,"2579":7,"2580":2,"2582":5,"2583":4,"2584":6,"2585":5,"2587":3,"2588":2,"2590":4,"2591":1,"2592":5,"2594":4,"2595":5,"2596":2,"2597":4,"2598":3,"2599":2,"2601":1,"2602":1,"2603":1,"2605":1,"2606":4,"2607":1,"2608":2,"2609":2,"2610":2,"2611":1,"2612":10,"2613":2,"2614":4,"2616":6,"2617":4,"2618":1,"2619":1,"2620":1,"2622":1,"2626":2,"2628":4,"2629":2,"2630":2,"2632":3,"2633":3,"2634":5,"2635":5,"2636":3,"2637":14,"2638":4,"2639":8,"2640":10,"2641":3,"2650":2,"2652":2,"2658":2,"2659":2,"2663":1,"2669":2,"2671":1,"2673":1,"2674":5,"2676":1,"2684":2,"2685":2,"2686":2,"2687":2,"2694":2,"2700":1,"2701":1,"2702":3,"2703":1,"2705":1,"2707":1,"2709":1,"2713":1,"2714":10,"2715":3,"2716":1,"2717":2,"2718":2,"2719":1,"2726":8,"2728":3,"2729":2,"2730":10,"2731":2,"2732":3,"2751":3,"2752":1,"2753":1,"2754":1,"2756":11,"2757":6,"2758":1,"2759":1,"2761":1,"2763":1,"2764":3,"2786":3,"2787":1,"2789":1,"2807":1,"2811":1,"2815":1,"2819":1,"2827":1,"2830":1,"2832":2,"2849":2,"2850":1,"2851":3,"2884":2,"2885":1,"2886":2,"2888":1,"2889":3,"2890":3,"2891":2,"2892":1,"2894":3,"2895":1,"2899":1,"2905":1,"2906":2,"2908":1,"2910":3,"2912":10,"2913":2,"2920":2,"2921":2,"2922":3,"2923":1,"2924":1,"2926":1,"2927":1,"2929":5,"2931":5,"2932":2,"2937":2,"2940":1,"2943":1,"2944":1,"2945":1,"2946":2,"2950":1}}],["you",{"0":{"1767":1,"2469":1,"2474":1,"2850":1},"2":{"1":2,"7":2,"13":3,"21":5,"24":2,"27":1,"33":1,"35":2,"39":2,"49":1,"70":1,"82":1,"83":2,"89":1,"90":3,"107":2,"110":2,"112":2,"119":6,"120":2,"124":3,"152":3,"157":2,"158":3,"166":1,"174":1,"194":2,"206":2,"213":2,"217":3,"228":2,"232":3,"233":2,"240":7,"241":2,"245":1,"248":2,"253":2,"254":2,"255":2,"256":2,"259":2,"270":2,"272":2,"281":2,"307":4,"323":4,"353":1,"365":3,"368":1,"374":2,"375":1,"376":2,"377":2,"378":2,"379":2,"381":3,"382":1,"383":1,"384":1,"388":2,"389":2,"393":4,"394":2,"396":1,"398":2,"403":3,"414":1,"415":1,"416":3,"418":2,"420":1,"429":8,"430":1,"431":1,"432":1,"433":1,"434":1,"435":2,"436":1,"437":2,"440":1,"442":1,"445":1,"447":1,"452":1,"453":1,"454":2,"455":2,"456":4,"458":2,"460":1,"463":1,"465":2,"469":2,"474":2,"476":1,"477":2,"482":1,"483":1,"488":4,"489":1,"490":1,"491":4,"492":1,"493":3,"494":4,"495":3,"496":2,"497":1,"498":1,"499":1,"500":1,"501":1,"504":1,"505":5,"506":3,"507":3,"508":1,"509":2,"510":2,"511":2,"512":6,"513":4,"514":2,"515":1,"516":3,"520":1,"521":1,"525":5,"526":1,"527":1,"528":1,"530":1,"533":4,"535":1,"537":2,"538":1,"540":3,"542":1,"544":2,"547":1,"559":3,"561":3,"562":2,"563":2,"564":8,"565":1,"567":1,"568":1,"569":4,"570":4,"572":1,"574":2,"576":2,"579":1,"580":3,"581":1,"591":1,"596":4,"597":1,"598":2,"599":4,"600":4,"601":1,"604":3,"605":2,"606":2,"607":13,"608":2,"609":6,"610":4,"611":2,"612":4,"613":13,"614":1,"615":3,"617":2,"618":1,"625":1,"626":3,"627":1,"629":3,"630":3,"632":1,"633":6,"634":2,"637":1,"640":1,"643":1,"644":2,"645":4,"646":2,"647":1,"660":1,"666":3,"668":4,"669":1,"670":2,"671":1,"672":4,"673":4,"675":1,"678":1,"681":3,"682":1,"683":2,"684":1,"685":3,"686":7,"687":6,"688":2,"689":1,"690":1,"693":1,"701":3,"703":4,"707":1,"717":2,"718":1,"719":2,"720":2,"721":2,"722":1,"725":3,"728":1,"735":1,"742":2,"749":3,"750":1,"754":1,"759":1,"763":3,"765":3,"766":2,"768":3,"801":3,"804":1,"812":1,"816":1,"820":1,"822":1,"827":3,"830":1,"839":1,"843":1,"847":1,"849":1,"856":3,"861":1,"862":1,"871":1,"875":1,"879":1,"881":1,"888":3,"892":1,"903":1,"907":1,"911":1,"913":1,"920":3,"926":1,"927":1,"938":1,"942":1,"946":1,"948":1,"955":3,"960":1,"961":1,"972":1,"976":1,"980":1,"982":1,"989":3,"994":1,"995":1,"1006":1,"1010":1,"1014":1,"1016":1,"1023":3,"1028":1,"1029":1,"1040":1,"1044":1,"1048":1,"1050":1,"1057":3,"1062":1,"1063":1,"1074":1,"1078":1,"1082":1,"1084":1,"1091":3,"1096":1,"1097":1,"1108":1,"1112":1,"1116":1,"1118":1,"1125":3,"1130":1,"1131":1,"1142":1,"1146":1,"1150":1,"1152":1,"1159":3,"1164":1,"1165":1,"1176":1,"1180":1,"1184":1,"1186":1,"1195":1,"1198":1,"1200":2,"1201":1,"1203":3,"1204":3,"1207":5,"1208":2,"1209":3,"1215":3,"1218":1,"1229":1,"1233":1,"1237":1,"1239":1,"1246":3,"1247":2,"1248":4,"1267":3,"1269":3,"1272":1,"1283":1,"1284":4,"1287":2,"1297":1,"1299":1,"1300":1,"1301":1,"1303":1,"1306":1,"1311":4,"1312":1,"1313":4,"1314":2,"1315":4,"1316":2,"1318":2,"1319":6,"1320":1,"1322":2,"1327":1,"1332":5,"1336":3,"1337":1,"1338":1,"1339":1,"1340":1,"1342":3,"1343":1,"1344":2,"1345":1,"1347":1,"1348":2,"1349":1,"1353":1,"1354":2,"1357":1,"1358":1,"1359":1,"1362":1,"1364":2,"1365":8,"1366":4,"1367":1,"1368":2,"1369":1,"1372":1,"1377":2,"1378":8,"1379":1,"1380":1,"1388":4,"1390":2,"1392":1,"1396":2,"1398":2,"1405":2,"1406":1,"1407":1,"1409":6,"1410":5,"1414":2,"1415":5,"1416":4,"1417":15,"1418":1,"1421":1,"1422":8,"1423":2,"1425":3,"1426":4,"1427":8,"1428":7,"1431":1,"1435":1,"1438":3,"1439":2,"1440":4,"1441":2,"1442":4,"1443":1,"1446":4,"1447":1,"1448":5,"1449":1,"1450":4,"1451":6,"1454":1,"1455":2,"1457":2,"1462":1,"1463":3,"1464":8,"1465":4,"1466":1,"1467":5,"1468":2,"1470":14,"1471":10,"1472":15,"1473":3,"1480":1,"1482":1,"1483":2,"1485":11,"1486":5,"1488":4,"1490":5,"1491":4,"1492":5,"1493":4,"1496":2,"1498":5,"1499":3,"1500":1,"1501":2,"1502":1,"1503":9,"1510":1,"1517":2,"1520":1,"1522":8,"1523":2,"1526":5,"1527":3,"1529":2,"1532":1,"1533":1,"1534":1,"1535":2,"1537":1,"1541":1,"1542":2,"1544":2,"1545":1,"1546":3,"1551":4,"1556":3,"1557":1,"1589":6,"1590":2,"1591":4,"1592":2,"1593":2,"1594":3,"1595":1,"1600":1,"1602":5,"1603":2,"1605":3,"1606":2,"1608":1,"1609":8,"1610":1,"1612":11,"1613":2,"1615":2,"1617":3,"1618":2,"1619":2,"1621":1,"1622":6,"1623":1,"1624":1,"1625":1,"1627":4,"1634":1,"1641":1,"1642":2,"1655":1,"1661":5,"1663":1,"1664":4,"1665":2,"1666":5,"1667":1,"1668":3,"1670":2,"1671":3,"1676":1,"1680":1,"1681":3,"1683":1,"1739":2,"1740":1,"1741":1,"1742":1,"1762":6,"1765":1,"1766":5,"1768":2,"1769":1,"1773":2,"1777":3,"1779":3,"1781":2,"1782":2,"1785":1,"1786":7,"1787":1,"1788":5,"1789":1,"1790":1,"1794":1,"1796":3,"1798":1,"1800":2,"1801":3,"1802":8,"1803":2,"1804":2,"1836":2,"1840":1,"1844":4,"1846":2,"1849":1,"1851":2,"1852":1,"1855":2,"1919":2,"1923":6,"1930":2,"1931":1,"1933":1,"1935":5,"1936":1,"1937":6,"1938":2,"1944":1,"1947":1,"1948":1,"1952":2,"1953":1,"1954":1,"1956":1,"1957":1,"1958":2,"1962":3,"1964":3,"1965":2,"1968":2,"1970":1,"1974":2,"1983":3,"1984":1,"1985":1,"1987":1,"1990":2,"1993":1,"1994":2,"1998":2,"2011":1,"2037":1,"2040":1,"2041":1,"2043":2,"2044":1,"2046":1,"2047":1,"2048":6,"2049":1,"2050":2,"2054":2,"2057":6,"2058":2,"2070":1,"2076":1,"2080":4,"2082":2,"2085":1,"2086":1,"2088":1,"2090":2,"2091":1,"2094":2,"2096":4,"2097":2,"2178":1,"2179":6,"2181":1,"2183":2,"2184":2,"2187":1,"2188":2,"2189":3,"2191":3,"2192":1,"2193":1,"2194":3,"2206":3,"2207":4,"2208":2,"2209":2,"2210":2,"2211":3,"2223":2,"2249":1,"2250":1,"2251":2,"2255":3,"2259":3,"2260":5,"2263":1,"2264":4,"2265":3,"2267":1,"2268":2,"2271":2,"2272":4,"2273":5,"2274":1,"2275":7,"2278":7,"2280":7,"2281":1,"2284":1,"2286":1,"2287":1,"2290":1,"2292":3,"2293":4,"2294":3,"2297":4,"2298":8,"2300":5,"2301":1,"2302":1,"2305":1,"2309":11,"2310":4,"2317":11,"2318":3,"2319":1,"2322":3,"2327":1,"2328":2,"2329":4,"2330":4,"2331":3,"2375":1,"2379":2,"2381":5,"2382":5,"2384":7,"2387":16,"2388":1,"2392":2,"2394":1,"2399":1,"2400":2,"2401":1,"2403":1,"2404":1,"2411":3,"2414":2,"2416":4,"2417":10,"2418":17,"2419":3,"2421":1,"2422":2,"2423":5,"2425":1,"2426":1,"2427":4,"2428":5,"2429":12,"2430":3,"2431":8,"2432":5,"2434":9,"2435":6,"2441":2,"2447":2,"2448":1,"2450":3,"2453":5,"2454":4,"2460":5,"2461":3,"2464":8,"2465":4,"2466":2,"2467":3,"2468":1,"2469":1,"2470":1,"2473":2,"2474":6,"2475":1,"2477":1,"2480":1,"2481":1,"2482":3,"2483":4,"2484":1,"2488":1,"2490":2,"2496":1,"2497":3,"2501":1,"2502":6,"2503":6,"2504":2,"2506":4,"2508":5,"2520":2,"2521":1,"2554":1,"2556":1,"2557":1,"2558":3,"2560":3,"2561":6,"2562":5,"2564":3,"2565":2,"2567":5,"2572":4,"2573":3,"2579":6,"2580":4,"2581":2,"2582":3,"2583":5,"2584":7,"2585":5,"2586":6,"2587":6,"2589":1,"2590":6,"2591":4,"2592":3,"2593":2,"2594":5,"2595":4,"2596":3,"2597":3,"2599":4,"2600":2,"2601":1,"2602":1,"2603":1,"2606":1,"2608":2,"2610":1,"2611":2,"2612":7,"2613":1,"2614":4,"2615":1,"2616":8,"2617":4,"2618":3,"2619":8,"2620":2,"2621":3,"2622":1,"2624":1,"2626":1,"2627":1,"2628":9,"2629":6,"2630":1,"2632":3,"2633":3,"2634":4,"2635":5,"2636":3,"2637":6,"2638":1,"2639":4,"2640":12,"2650":6,"2651":5,"2652":8,"2655":2,"2656":3,"2657":1,"2658":6,"2659":3,"2660":1,"2662":1,"2665":3,"2667":1,"2669":5,"2671":4,"2672":1,"2673":1,"2674":8,"2685":1,"2686":1,"2690":1,"2691":3,"2694":3,"2701":1,"2702":1,"2709":1,"2713":1,"2714":4,"2715":2,"2716":1,"2717":5,"2718":1,"2719":1,"2720":2,"2721":1,"2723":1,"2725":1,"2726":5,"2728":2,"2729":1,"2730":4,"2732":2,"2751":2,"2753":1,"2754":1,"2756":3,"2757":10,"2758":1,"2763":1,"2764":1,"2780":1,"2781":2,"2782":1,"2784":6,"2785":3,"2786":11,"2787":3,"2789":3,"2790":2,"2819":1,"2825":1,"2827":1,"2829":1,"2832":1,"2834":1,"2841":1,"2842":1,"2843":2,"2851":2,"2869":2,"2884":1,"2886":6,"2887":1,"2888":1,"2889":8,"2890":9,"2891":3,"2892":5,"2893":2,"2894":4,"2895":1,"2897":1,"2899":1,"2905":3,"2906":4,"2907":2,"2908":1,"2909":1,"2910":5,"2911":2,"2912":30,"2913":1,"2920":7,"2921":4,"2922":2,"2925":1,"2927":3,"2928":1,"2929":7,"2931":3,"2932":2,"2934":2,"2935":3,"2936":1,"2937":1,"2938":2,"2942":4,"2944":6,"2945":5,"2946":1,"2947":2,"2948":3,"2950":17}}],["yiancar",{"2":{"149":1}}],["yiancardesigns",{"2":{"143":3,"149":1}}],["yd68",{"2":{"143":2}}],["yd60mq",{"2":{"143":2,"149":1}}],["ydkb",{"2":{"143":3,"149":1,"222":2}}],["yapf",{"0":{"515":1},"2":{"501":1,"504":3,"515":1,"527":3}}],["yarn",{"2":{"460":1,"461":1}}],["yakiimo",{"2":{"222":1}}],["yandrstudio",{"2":{"199":1}}],["yangdigi",{"2":{"149":1}}],["yanghu",{"2":{"134":1}}],["yasui",{"2":{"143":2}}],["yaml",{"2":{"114":1}}],["yellow",{"2":{"393":1,"492":1,"494":1,"2089":2,"2095":1,"2205":2,"2612":1}}],["yet",{"2":{"149":1,"154":1,"220":1,"236":1,"555":1,"582":1,"596":1,"597":1,"633":1,"714":1,"1314":1,"1795":1,"2210":1,"2300":2,"2374":1,"2377":12,"2418":1,"2475":1,"2528":12,"2603":1,"2628":1,"2659":1,"2686":1,"2687":1,"2709":1,"2714":1,"2717":1,"2722":1,"2767":1,"2776":1,"2915":1,"2948":1}}],["yes",{"2":{"18":1,"39":1,"43":1,"74":1,"87":1,"88":3,"103":4,"104":3,"118":1,"119":1,"126":3,"127":3,"213":1,"232":1,"234":7,"235":1,"266":1,"354":1,"567":1,"575":1,"592":1,"625":1,"655":1,"691":1,"703":1,"725":1,"742":1,"765":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1322":1,"1330":1,"1369":1,"1446":1,"1464":1,"1471":2,"1472":2,"1473":1,"1499":1,"1500":1,"1526":1,"1542":1,"1578":1,"1589":1,"1594":1,"1602":1,"1623":1,"1640":1,"1655":1,"1656":1,"1661":1,"1665":1,"1667":1,"1668":1,"1678":1,"1698":1,"1739":1,"1763":1,"1768":1,"1790":1,"1797":1,"1850":2,"1919":1,"1932":1,"1944":1,"1957":1,"1962":1,"1964":1,"2017":1,"2040":2,"2041":2,"2042":2,"2043":2,"2055":1,"2066":1,"2088":2,"2179":2,"2191":2,"2210":2,"2215":1,"2220":1,"2250":1,"2255":1,"2268":1,"2284":1,"2293":2,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2302":1,"2303":1,"2309":1,"2312":1,"2320":1,"2326":1,"2329":2,"2330":1,"2376":1,"2378":1,"2418":1,"2419":1,"2455":2,"2674":1,"2728":1,"2753":1,"2756":11,"2759":2,"2889":2,"2912":1,"2949":1}}],["year>",{"2":{"1467":1}}],["years",{"2":{"6":1,"43":1,"201":1,"2464":1}}],["year",{"2":{"0":2,"9":2,"29":2,"42":2,"52":2,"188":1,"1467":1,"2464":3}}],["r=4",{"2":{"2757":1}}],["rbt",{"2":{"2523":1,"2752":1,"2787":1}}],["rbrc",{"2":{"379":1,"589":2,"2068":1,"2512":1,"2522":1,"2563":1}}],["rr",{"2":{"2301":3}}],["rle",{"0":{"2792":1},"2":{"2755":4,"2765":1,"2772":1,"2776":1,"2792":1}}],["rl",{"2":{"2301":3}}],["rj",{"2":{"2265":2}}],["rz",{"2":{"1740":1}}],["ry",{"2":{"1740":1,"2869":1}}],["ryanbaekr",{"2":{"210":1}}],["r09",{"2":{"1590":2}}],["r08",{"2":{"1590":2}}],["r07",{"2":{"1590":2}}],["r06",{"2":{"1590":2}}],["r05",{"2":{"1590":4}}],["r04",{"2":{"1590":2}}],["r03",{"2":{"1590":2}}],["r02",{"2":{"1590":2}}],["r01",{"2":{"1590":2}}],["r|64",{"2":{"1538":1}}],["rw",{"2":{"1699":2}}],["rwin",{"2":{"1377":1,"1448":1,"2514":1,"2522":1,"2541":1,"2542":1,"2572":1}}],["rwx",{"2":{"236":3}}],["rnrm",{"2":{"2520":2,"2538":2}}],["rn",{"0":{"1359":1},"2":{"1359":1,"2374":5}}],["rn42",{"2":{"134":1,"149":1,"175":1,"209":2,"222":1,"574":1,"2374":1,"2376":1,"2859":1}}],["rts",{"2":{"1266":1,"1268":1,"1269":4}}],["rtc",{"2":{"236":1}}],["rgui",{"2":{"589":2,"1350":1,"1377":1,"1378":1,"1448":1,"1779":5,"2514":1,"2520":4,"2522":1,"2538":4,"2541":1,"2542":1,"2547":1,"2561":1,"2572":2,"2651":1}}],["rght",{"2":{"379":1,"589":2,"1933":1,"2068":2,"2516":1,"2520":1,"2522":1,"2538":1,"2540":1,"2563":1,"2919":4,"2920":3,"2921":2}}],["rgbtest",{"2":{"2181":1,"2544":1}}],["rgb|led",{"2":{"317":1}}],["rgb888",{"2":{"199":1,"328":1,"2755":2,"2756":4}}],["rgb+via",{"2":{"191":1}}],["rgbmatrix",{"2":{"175":1}}],["rgb565",{"2":{"175":1,"199":1,"2755":3,"2756":11,"2757":1}}],["rgb64",{"2":{"143":2}}],["rgbw",{"0":{"1288":1},"2":{"112":1,"134":1,"266":2,"565":2,"1285":2,"1288":2,"2883":2}}],["rgbkb",{"2":{"93":1,"114":2,"149":1,"175":1,"191":2,"222":1,"266":1,"294":2,"328":1}}],["rgblight=true",{"2":{"433":1}}],["rgblight",{"0":{"2877":1},"2":{"39":3,"65":1,"70":3,"74":2,"75":1,"111":6,"112":5,"113":1,"114":6,"160":2,"175":10,"191":2,"199":2,"209":3,"210":6,"222":3,"236":5,"249":4,"266":6,"277":1,"283":3,"285":2,"308":2,"354":6,"462":2,"565":10,"574":1,"641":4,"647":11,"668":1,"670":2,"703":1,"1284":1,"1285":1,"1417":16,"1430":5,"1464":2,"2080":2,"2179":2,"2182":14,"2183":14,"2184":12,"2185":12,"2186":6,"2188":1,"2189":18,"2190":4,"2191":16,"2192":1,"2193":2,"2194":1,"2195":2,"2197":1,"2198":16,"2199":7,"2200":6,"2201":14,"2202":6,"2203":2,"2204":6,"2205":3,"2206":4,"2207":6,"2278":2,"2454":9,"2455":3,"2854":1,"2877":3,"2894":11}}],["rgbleds",{"2":{"175":1}}],["rgbled",{"2":{"35":2,"70":1,"175":1,"210":2,"249":2,"565":2,"570":1,"2179":1,"2187":7,"2278":1,"2455":6}}],["rgb",{"0":{"15":1,"35":1,"80":1,"124":1,"202":1,"233":1,"283":1,"316":1,"327":1,"462":1,"565":1,"1636":1,"2080":1,"2085":1,"2086":1,"2087":1,"2088":1,"2097":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2107":1,"2109":1,"2111":1,"2113":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2145":1,"2147":1,"2149":1,"2151":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2159":1,"2161":1,"2163":1,"2165":1,"2166":1,"2168":1,"2170":1,"2172":1,"2175":1,"2178":1,"2192":1,"2544":1,"2545":1,"2878":1,"2894":1},"1":{"2081":1,"2082":1,"2083":1,"2084":1,"2085":1,"2086":2,"2087":2,"2088":1,"2089":1,"2090":1,"2091":1,"2092":1,"2093":1,"2094":1,"2095":1,"2096":1,"2097":1,"2098":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":2,"2107":1,"2108":2,"2109":1,"2110":2,"2111":1,"2112":2,"2113":1,"2114":2,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":2,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":2,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":2,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":2,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":2,"2145":1,"2146":2,"2147":1,"2148":2,"2149":1,"2150":2,"2151":1,"2152":2,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":2,"2159":1,"2160":1,"2161":1,"2162":2,"2163":1,"2164":2,"2165":1,"2166":1,"2167":2,"2168":1,"2169":2,"2170":1,"2171":2,"2172":1,"2173":1,"2174":1,"2175":1,"2176":1,"2177":1,"2179":1,"2180":1,"2181":1,"2182":1,"2183":1,"2184":1,"2185":1,"2186":1,"2187":1,"2188":1,"2189":1,"2190":1,"2191":1,"2192":1,"2193":1,"2194":1,"2195":1,"2196":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2205":1,"2206":1,"2207":1,"2208":1,"2209":1,"2210":1,"2211":1},"2":{"15":7,"22":3,"35":2,"39":4,"63":1,"65":3,"70":1,"73":1,"80":1,"93":5,"94":1,"112":1,"114":27,"124":3,"133":1,"134":9,"143":4,"149":6,"153":2,"160":1,"167":14,"169":7,"175":15,"191":3,"199":2,"202":2,"209":3,"210":11,"212":1,"222":7,"229":1,"231":3,"233":1,"236":13,"238":1,"244":1,"249":31,"266":8,"277":9,"283":7,"285":11,"298":1,"308":8,"316":3,"317":4,"328":5,"339":1,"433":2,"462":2,"565":5,"570":1,"633":1,"641":2,"647":20,"648":1,"651":1,"652":5,"653":5,"702":1,"703":1,"724":1,"725":1,"731":1,"800":1,"801":2,"807":1,"808":3,"812":1,"814":1,"820":1,"826":1,"827":2,"833":1,"834":3,"839":1,"841":1,"847":1,"855":1,"856":2,"865":1,"866":3,"871":1,"873":1,"879":1,"887":1,"888":2,"895":1,"896":3,"903":1,"905":1,"911":1,"919":1,"920":2,"930":1,"931":3,"938":1,"940":1,"946":1,"954":1,"955":2,"964":1,"965":3,"972":1,"974":1,"980":1,"988":1,"989":2,"998":1,"999":3,"1006":1,"1008":1,"1014":1,"1022":1,"1023":2,"1032":1,"1033":3,"1040":1,"1042":1,"1048":1,"1056":1,"1057":2,"1066":1,"1067":3,"1074":1,"1076":1,"1082":1,"1090":1,"1091":2,"1100":1,"1101":3,"1108":1,"1110":1,"1116":1,"1124":1,"1125":2,"1134":1,"1135":3,"1142":1,"1144":1,"1150":1,"1158":1,"1159":2,"1168":1,"1169":3,"1176":1,"1178":1,"1184":1,"1214":1,"1215":2,"1221":1,"1222":3,"1229":1,"1231":1,"1237":1,"1283":1,"1284":1,"1285":2,"1286":1,"1287":1,"1288":3,"1392":1,"1393":1,"1416":1,"1417":25,"1430":1,"1463":2,"1464":8,"1465":1,"1541":2,"1617":1,"1636":5,"1638":6,"1668":4,"1844":2,"1853":1,"1958":8,"1980":1,"2080":1,"2081":2,"2082":1,"2084":18,"2085":152,"2086":7,"2087":2,"2088":21,"2089":22,"2090":5,"2091":29,"2094":8,"2095":11,"2096":15,"2097":6,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":1,"2108":1,"2166":1,"2167":1,"2178":3,"2179":3,"2180":1,"2181":25,"2182":3,"2183":2,"2184":2,"2188":3,"2189":2,"2191":2,"2192":3,"2194":1,"2198":5,"2199":10,"2205":24,"2208":1,"2210":6,"2276":1,"2278":2,"2281":2,"2435":2,"2443":1,"2444":2,"2445":2,"2544":22,"2545":19,"2728":5,"2729":2,"2753":8,"2755":2,"2757":5,"2789":1,"2852":1,"2854":1,"2855":1,"2877":2,"2878":3,"2890":1,"2894":51,"2907":2,"2941":1}}],["rq",{"0":{"585":1},"2":{"366":2,"367":2,"585":2}}],["rk61",{"2":{"328":1}}],["rms",{"2":{"1685":1}}],["rm24c512c",{"2":{"749":2}}],["rm",{"2":{"283":1,"2084":15,"2087":2,"2545":15,"2634":1}}],["rmi",{"2":{"197":13,"199":1}}],["rswp",{"2":{"2520":2,"2538":2}}],["rspc",{"2":{"2256":1,"2257":1,"2259":5,"2260":3,"2550":1}}],["rsi",{"2":{"1497":1}}],["rstp",{"2":{"1661":2,"1663":2,"2530":1}}],["rst",{"2":{"1493":1,"1495":1,"1680":1,"1681":1,"1687":2,"1951":3,"2288":1,"2375":1,"2389":1,"2392":1,"2394":1,"2395":1,"2397":1,"2431":1,"2491":1,"2493":1,"2495":1,"2524":1,"2753":11,"2756":4}}],["rsg",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["rsag",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["rsa",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["rs232",{"2":{"1192":1}}],["rs485",{"2":{"1192":1}}],["rs40",{"2":{"222":1}}],["rsft",{"2":{"328":1,"379":1,"589":2,"1377":1,"1448":1,"1533":4,"1594":1,"1597":1,"2259":9,"2260":1,"2381":1,"2514":1,"2522":1,"2541":1,"2542":1,"2547":1,"2561":1,"2563":1,"2572":2,"2651":1,"2911":1,"2931":1}}],["rs",{"2":{"249":1,"1699":2}}],["rshift",{"2":{"222":1,"260":1,"1378":1}}],["r17",{"2":{"1590":2}}],["r16",{"2":{"1590":2}}],["r15",{"2":{"1590":2}}],["r14",{"2":{"1590":2}}],["r13",{"2":{"1590":2}}],["r12",{"2":{"1590":2}}],["r11",{"2":{"1590":2}}],["r10",{"2":{"1590":2}}],["r1",{"2":{"222":1,"300":1,"744":1,"2858":1}}],["r2",{"2":{"218":1,"222":2,"277":1,"744":1,"2858":1}}],["rp2",{"2":{"2612":1}}],["rp2040",{"0":{"178":1,"271":1,"696":1,"756":1,"1394":1,"1397":1,"1401":1,"2044":1,"2410":1,"2692":1,"2701":1,"2702":1,"2703":1,"2705":1,"2706":1},"1":{"2693":1,"2694":1,"2695":1,"2696":1,"2697":1,"2698":1,"2699":1,"2700":1,"2701":1,"2702":2,"2703":2,"2704":1,"2705":1,"2706":1},"2":{"175":9,"178":5,"189":1,"191":11,"199":5,"222":3,"236":3,"266":1,"271":6,"277":1,"294":1,"308":1,"311":1,"317":1,"322":1,"328":1,"552":3,"696":2,"723":1,"753":2,"756":3,"1197":1,"1198":2,"1201":2,"1205":2,"1292":1,"1389":2,"1391":4,"1393":1,"1398":2,"1399":3,"1401":1,"2044":1,"2273":1,"2410":4,"2589":1,"2613":1,"2692":1,"2693":1,"2694":3,"2695":2,"2696":1,"2697":1,"2698":1,"2699":1,"2700":5,"2701":1,"2702":3,"2703":3,"2704":1,"2705":6,"2706":1,"2864":1,"2895":1}}],["rprn",{"2":{"2546":1,"2555":1}}],["rpt",{"2":{"1521":1,"1522":2,"1523":1,"2525":1}}],["rp",{"2":{"1405":2,"2697":2,"2698":2,"2699":2,"2703":1}}],["rpi",{"2":{"339":1,"2410":1}}],["rpc",{"2":{"191":2,"2277":7}}],["rxc1",{"2":{"2043":1}}],["rxcie1",{"2":{"2043":1}}],["rxen1",{"2":{"2043":3}}],["rxled",{"2":{"1392":2,"1396":2}}],["rx",{"0":{"782":2},"1":{"783":2,"784":2},"2":{"175":1,"783":2,"1198":1,"1200":8,"1201":5,"1205":1,"1211":11,"1212":9,"1213":8,"1268":2,"1269":4,"1740":1,"2043":6,"2691":2,"2702":2,"2704":2,"2869":1}}],["rdesc",{"2":{"134":1}}],["radius",{"2":{"2757":1}}],["radio",{"2":{"2736":1}}],["rabk",{"2":{"2546":1,"2555":1}}],["rabbit",{"2":{"143":2}}],["rapc",{"2":{"2256":1,"2257":1,"2259":1,"2550":1}}],["rapidly",{"2":{"1493":1,"1541":1,"2308":1}}],["rag",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["rarely",{"2":{"2331":1}}],["rare",{"2":{"399":1,"643":1,"2568":1}}],["rart",{"2":{"222":1}}],["rartlice",{"2":{"222":1}}],["rartand",{"2":{"222":1}}],["rart80",{"2":{"222":2}}],["rart75m",{"2":{"222":1}}],["rart75",{"2":{"222":2}}],["rart67m",{"2":{"222":1}}],["rart67",{"2":{"222":1}}],["rart60",{"2":{"222":1}}],["rart45",{"2":{"222":1}}],["ralt|mod",{"2":{"1423":1}}],["ralt",{"2":{"379":1,"589":2,"1377":1,"1378":1,"1448":1,"1779":5,"1788":1,"2074":1,"2259":2,"2514":1,"2520":2,"2522":1,"2538":2,"2541":1,"2542":1,"2547":1,"2561":1,"2563":1,"2572":2,"2651":1,"2911":1,"2929":1}}],["rastersoft",{"2":{"210":1}}],["raspberry",{"0":{"178":1,"552":1,"2410":1,"2692":1},"1":{"2693":1,"2694":1,"2695":1,"2696":1,"2697":1,"2698":1,"2699":1,"2700":1,"2701":1,"2702":1,"2703":1,"2704":1,"2705":1,"2706":1},"2":{"178":1,"191":1,"1198":1,"1201":1,"1205":1,"2044":1,"2694":1,"2695":1}}],["rand",{"2":{"1947":1,"2286":1}}],["randomly",{"2":{"2085":4}}],["randomness",{"2":{"1493":3}}],["random",{"0":{"2246":1,"2790":1},"2":{"263":1,"620":1,"1409":1,"1681":2,"1947":2,"1962":1,"2085":5,"2286":2,"2757":1,"2790":3}}],["random8",{"2":{"199":2}}],["ran",{"2":{"640":1}}],["ranges",{"0":{"231":1},"2":{"175":1,"199":2,"231":2,"236":1,"383":1,"1533":1,"1946":1,"1968":1,"2187":1,"2189":1,"2285":1}}],["range",{"0":{"1647":1,"1648":1,"2197":1,"2207":1},"2":{"149":1,"175":1,"191":2,"199":3,"231":22,"285":3,"294":1,"339":1,"593":1,"610":1,"629":4,"1431":2,"1446":4,"1462":1,"1472":5,"1583":1,"1586":1,"1588":1,"1642":3,"1645":2,"1647":1,"1648":1,"1685":1,"1741":1,"1742":1,"1846":3,"1924":1,"1962":1,"1966":1,"1967":1,"1968":2,"1978":1,"1979":1,"1981":1,"1982":1,"1983":2,"1993":1,"1994":1,"2003":1,"2013":1,"2071":1,"2079":1,"2082":3,"2185":2,"2195":3,"2197":2,"2198":5,"2200":6,"2201":14,"2205":1,"2207":5,"2219":1,"2222":1,"2260":1,"2509":1,"2519":1,"2751":1,"2754":1,"2757":3,"2806":1,"2884":1,"2912":1}}],["raison",{"2":{"612":1}}],["raises",{"2":{"521":1,"524":1,"1935":1}}],["raised",{"2":{"403":1,"405":1,"412":2,"1937":2,"2567":1,"2729":2}}],["raise",{"2":{"198":1,"265":1,"524":1,"720":1,"1417":1,"1422":1,"1430":1,"1491":1,"1521":1,"1996":2,"2525":1,"2783":7,"2785":3}}],["rainbow",{"2":{"354":1,"2085":9,"2181":2,"2183":4,"2184":4,"2185":2,"2186":1,"2187":4,"2209":1,"2210":2,"2544":2,"2757":3,"2877":1,"2894":5}}],["raindrop",{"2":{"241":2}}],["raindrops",{"2":{"114":1,"210":1,"285":1,"294":1,"328":1,"2085":6,"2894":2}}],["rainkeeb",{"2":{"143":2}}],["rainkeebs",{"2":{"143":3,"149":2}}],["rain",{"2":{"134":1,"160":1,"199":1,"210":2,"285":1,"328":1,"2085":6,"2894":2}}],["rampdown",{"2":{"1686":24}}],["rampup",{"2":{"1686":24}}],["ramlord",{"2":{"222":1}}],["rama",{"2":{"199":1,"222":4}}],["ram",{"2":{"175":1,"191":1,"236":1,"719":1,"720":1,"746":1,"753":2,"1410":1,"1661":1,"1702":1,"2054":1,"2685":2,"2686":1,"2689":1,"2711":1,"2754":5,"2756":2,"2901":1}}],["ramonimbao",{"2":{"102":3,"197":13,"199":1}}],["raw",{"0":{"2054":1,"2061":1,"2063":1},"1":{"2055":1,"2056":1,"2057":1,"2058":1,"2059":1,"2060":1,"2061":1,"2062":2,"2063":1,"2064":2},"2":{"40":1,"50":1,"62":1,"114":1,"160":1,"175":1,"210":1,"266":1,"308":1,"463":1,"575":1,"625":1,"669":1,"671":1,"676":2,"1414":1,"1417":7,"1947":3,"1954":6,"1988":1,"1989":1,"2052":1,"2054":1,"2056":5,"2057":2,"2058":2,"2059":8,"2061":1,"2286":3,"2290":4,"2690":2,"2691":1,"2755":4,"2757":3,"2795":3,"2869":1}}],["ratio",{"2":{"1541":1,"1949":1}}],["ratio65",{"2":{"222":2}}],["rationale",{"2":{"39":1}}],["rated",{"2":{"1684":1,"1685":1}}],["rates",{"2":{"702":1}}],["rate",{"0":{"137":1},"2":{"65":1,"114":1,"137":1,"143":3,"149":4,"210":1,"236":1,"285":1,"561":2,"701":2,"719":4,"1272":1,"1331":1,"1410":1,"1413":1,"1484":4,"1935":1,"1939":1,"1949":1,"1974":1,"1986":1,"2046":3,"2211":1,"2288":1,"2298":1,"2378":1,"2764":3,"2937":1}}],["rather",{"2":{"39":1,"40":1,"124":1,"212":1,"230":1,"234":1,"323":1,"474":1,"512":1,"527":1,"535":1,"561":1,"564":1,"610":1,"613":1,"629":1,"630":1,"655":1,"1192":1,"1297":1,"1330":1,"1415":1,"1455":1,"1480":1,"1801":1,"1803":1,"2009":1,"2180":1,"2400":2,"2402":1,"2441":1,"2566":1,"2622":1,"2634":1,"2651":1,"2712":1,"2726":1,"2728":2,"2757":1,"2787":1,"2834":1,"2911":1,"2920":1,"2922":1}}],["rocky",{"2":{"2626":1}}],["rocketboard",{"2":{"149":1}}],["road",{"2":{"2463":1}}],["roadmap",{"2":{"88":1,"104":1}}],["roastpotatoes",{"2":{"2423":1,"2436":1}}],["rosin",{"2":{"2421":1,"2428":2}}],["rosaline",{"2":{"222":1}}],["roving",{"2":{"2374":1}}],["rofl",{"2":{"2330":3}}],["robot",{"2":{"766":1}}],["robustness",{"2":{"222":1}}],["robust",{"2":{"76":1}}],["ro",{"2":{"431":1}}],["rooms",{"2":{"2481":1}}],["room",{"2":{"1846":1,"1954":1,"2082":1,"2290":1,"2445":1}}],["root",{"2":{"341":1,"513":1,"572":1,"609":1,"1332":1,"1376":1,"1425":1,"1538":3,"1539":1,"1850":1,"2088":1,"2417":3,"2595":1,"2596":1,"2614":1,"2674":1,"2945":1}}],["rookiebwoy",{"2":{"241":2,"249":2,"300":2,"308":1}}],["royal",{"2":{"328":1,"2567":1}}],["rot",{"2":{"308":1,"2902":1}}],["rotary",{"2":{"236":1,"690":1,"1311":1,"2865":1,"2880":1}}],["rotates",{"2":{"1953":1,"1985":3,"1987":3}}],["rotate",{"0":{"2051":1},"2":{"1953":1,"2051":4}}],["rotated",{"2":{"21":1,"24":1,"1413":1,"1953":2,"1983":1}}],["rotating",{"2":{"1670":3,"1684":1,"1954":1,"2290":1}}],["rotations",{"2":{"1988":1,"1989":1,"2764":1,"2869":1}}],["rotational",{"2":{"149":1,"1983":2}}],["rotation",{"0":{"1953":1,"1972":1},"2":{"21":5,"24":5,"199":1,"307":2,"332":7,"337":7,"1668":2,"1948":5,"1953":10,"1954":19,"1972":6,"1985":3,"1987":4,"2051":1,"2287":5,"2290":12,"2756":1,"2757":13,"2761":1,"2797":1,"2869":3}}],["rogue87",{"2":{"222":1}}],["ropt",{"2":{"191":1,"1377":1,"1448":1,"2514":1,"2522":1,"2541":1,"2542":1,"2572":1}}],["rollover",{"0":{"2833":1,"2839":1},"2":{"574":1,"1625":1,"2293":1,"2376":1,"2520":3,"2538":3}}],["rolls",{"2":{"308":1,"2914":1}}],["roll",{"2":{"294":1,"409":1,"1804":2,"2065":1}}],["rolled",{"2":{"289":1,"2926":1}}],["rollback",{"2":{"175":1}}],["rolling",{"0":{"2918":1},"2":{"134":1,"2378":1,"2913":1,"2920":3}}],["roles",{"2":{"2309":1,"2880":1}}],["role",{"2":{"114":1,"149":1,"194":1,"564":3,"2579":1,"2736":1,"2912":2,"2914":8,"2920":8,"2921":5,"2922":1}}],["roughly",{"2":{"1939":1}}],["rouge87",{"2":{"222":1}}],["routing",{"2":{"716":1,"2431":1}}],["routine",{"2":{"39":1,"574":2,"622":1,"624":1,"625":5,"1427":1,"1681":1,"2418":2,"2651":1}}],["routines",{"2":{"39":1,"125":1,"169":1,"567":1,"2687":1}}],["route",{"0":{"369":1,"370":1,"371":1,"372":1},"2":{"2429":1}}],["rounded",{"2":{"1252":1,"1292":1}}],["round",{"2":{"133":1,"134":1,"403":1,"596":1,"1478":1}}],["row1",{"2":{"2466":11}}],["row0",{"2":{"2466":12}}],["row2col",{"2":{"111":1,"561":1,"622":1,"639":3,"2719":2,"2872":1}}],["row",{"0":{"2913":1},"2":{"92":2,"114":1,"199":1,"210":1,"255":3,"289":1,"333":2,"561":1,"570":5,"624":1,"625":4,"632":1,"639":13,"1329":8,"1400":1,"1401":1,"1408":1,"1410":4,"1413":8,"1490":3,"1492":1,"1589":2,"1590":2,"1591":2,"1613":1,"1625":1,"1655":1,"1660":1,"1671":1,"1720":2,"1722":2,"1802":2,"1846":3,"1849":4,"2082":3,"2085":4,"2095":4,"2269":1,"2272":1,"2278":2,"2303":5,"2390":1,"2397":1,"2423":1,"2428":2,"2429":2,"2431":4,"2434":1,"2466":8,"2557":1,"2680":2,"2720":3,"2721":1,"2728":1,"2755":2,"2794":1,"2797":1,"2869":1,"2872":2,"2876":1,"2912":1,"2913":4,"2923":1,"2926":1,"2927":1,"2932":5,"2937":1}}],["rows",{"2":{"63":1,"111":1,"114":1,"222":2,"317":2,"328":1,"561":6,"589":1,"639":1,"1413":1,"1414":2,"1446":2,"1490":1,"1492":1,"1846":2,"1924":1,"1954":2,"2082":2,"2095":1,"2269":3,"2272":1,"2278":2,"2303":1,"2312":1,"2423":3,"2425":1,"2431":1,"2466":5,"2557":1,"2562":3,"2585":1,"2718":1,"2719":3,"2720":1,"2728":1,"2794":1,"2828":1,"2872":3,"2927":4,"2939":1}}],["romanian",{"2":{"2887":3}}],["rominronin",{"2":{"440":1,"2448":1}}],["roms",{"2":{"273":1}}],["rom",{"0":{"276":1,"284":1},"2":{"39":1,"273":1,"1713":1,"2482":1,"2505":1,"2950":1}}],["rcpc",{"2":{"2256":1,"2257":1,"2259":1,"2550":1}}],["rcbr",{"2":{"2068":1,"2546":1,"2555":1}}],["rctrl",{"2":{"1378":1}}],["rctl",{"2":{"328":1,"379":1,"589":2,"1350":1,"1377":1,"1448":1,"2259":2,"2381":1,"2514":1,"2520":2,"2522":1,"2538":2,"2541":1,"2542":1,"2547":1,"2563":1,"2572":2,"2651":1,"2925":1,"2928":1}}],["rcg",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["rcsg",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["rcs",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["rcag",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["rca",{"2":{"1377":1,"2541":1,"2542":1,"2547":1,"2572":1,"2651":1}}],["rcmd",{"2":{"1377":1,"1448":1,"2514":1,"2522":1,"2541":1,"2542":1,"2572":1}}],["rc",{"2":{"39":3,"1409":1,"2685":1}}],["ribbon",{"2":{"2431":1}}],["river",{"2":{"2085":1}}],["riverflow",{"2":{"277":1,"285":1,"2085":3}}],["riccks",{"2":{"2567":1}}],["rick",{"2":{"1804":2}}],["richly",{"2":{"2727":1}}],["rich",{"2":{"114":1,"248":1}}],["rigid",{"2":{"2425":1}}],["rigor",{"2":{"609":1}}],["right=11",{"2":{"2757":1}}],["righthand",{"2":{"568":1,"569":1}}],["rightmost",{"2":{"55":1,"317":1,"1641":1,"1720":1,"1722":1}}],["righty",{"2":{"33":2}}],["right",{"2":{"21":1,"24":1,"100":2,"114":2,"119":2,"149":2,"152":1,"160":1,"191":1,"199":2,"213":1,"214":1,"231":2,"249":1,"255":1,"307":4,"328":1,"351":1,"353":1,"379":1,"393":3,"397":1,"512":1,"543":1,"561":2,"565":2,"568":7,"569":5,"570":10,"596":1,"651":1,"687":1,"1194":1,"1197":1,"1200":1,"1377":25,"1378":1,"1423":5,"1483":1,"1492":1,"1503":1,"1523":3,"1526":1,"1590":6,"1594":2,"1595":4,"1655":2,"1666":10,"1667":1,"1692":1,"1694":1,"1779":2,"1781":2,"1788":4,"1802":1,"1843":4,"1846":1,"1849":9,"1852":1,"1933":4,"1949":3,"1954":4,"1971":1,"1977":3,"1983":8,"1987":11,"1989":7,"1990":2,"1996":1,"1997":3,"2006":1,"2048":1,"2049":1,"2065":1,"2068":6,"2082":1,"2085":15,"2091":2,"2207":1,"2255":1,"2256":7,"2257":8,"2260":1,"2269":2,"2271":1,"2272":1,"2273":7,"2274":2,"2278":10,"2288":1,"2290":2,"2301":2,"2305":1,"2310":1,"2315":12,"2327":1,"2387":1,"2388":1,"2391":1,"2393":1,"2400":1,"2405":1,"2407":1,"2409":1,"2425":1,"2428":2,"2429":1,"2512":1,"2514":8,"2516":2,"2518":1,"2520":6,"2522":12,"2538":6,"2540":4,"2541":25,"2542":25,"2546":3,"2547":25,"2550":8,"2555":3,"2572":29,"2573":6,"2606":1,"2634":2,"2651":25,"2659":1,"2669":1,"2691":3,"2707":1,"2757":6,"2778":2,"2799":2,"2841":1,"2869":1,"2871":1,"2878":1,"2880":3,"2894":2,"2926":1,"2927":2,"2929":4}}],["rising",{"2":{"1252":2}}],["risky",{"2":{"1365":1}}],["risk",{"2":{"414":1,"574":1,"757":1,"1365":1,"2427":1,"2747":1,"2903":1}}],["risc",{"0":{"553":1},"1":{"554":1},"2":{"130":2,"134":2,"153":1}}],["riot",{"2":{"210":1,"241":2,"266":1}}],["rionlion100",{"2":{"27":1}}],["rider",{"2":{"2181":1,"2544":1}}],["rid",{"2":{"210":4}}],["ringing",{"2":{"1558":1}}],["ring",{"2":{"199":1,"285":1,"1976":1}}],["rip",{"2":{"149":1}}],["ruin",{"2":{"2429":1}}],["russian",{"2":{"236":1,"2886":1,"2887":2}}],["ruled",{"2":{"2851":1}}],["rule",{"2":{"149":1,"199":1,"289":1,"294":1,"516":1,"666":1,"673":1,"2926":3,"2927":1,"2928":2}}],["ruler",{"2":{"143":2,"2427":1}}],["rules",{"0":{"571":1,"1316":1,"1464":1,"1632":2,"1678":1,"2376":1,"2418":1,"2455":1,"2889":1},"1":{"572":1,"573":1,"574":1,"575":1,"1465":1},"2":{"22":1,"39":1,"40":2,"70":29,"74":1,"75":1,"76":3,"87":1,"94":1,"103":1,"114":2,"118":2,"119":1,"133":2,"134":5,"141":1,"149":1,"175":2,"187":1,"191":2,"199":1,"213":1,"222":5,"235":1,"262":1,"266":11,"285":1,"293":1,"305":1,"308":2,"314":1,"344":1,"348":1,"426":1,"433":1,"516":1,"555":2,"558":1,"567":1,"623":1,"624":1,"625":1,"655":1,"665":3,"666":1,"667":1,"669":3,"672":2,"673":6,"691":1,"703":1,"725":1,"742":1,"743":1,"746":1,"753":1,"765":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1195":1,"1198":2,"1201":2,"1215":1,"1246":1,"1267":1,"1284":1,"1289":1,"1315":1,"1316":1,"1322":1,"1330":1,"1332":2,"1369":1,"1391":1,"1399":1,"1413":1,"1414":2,"1427":1,"1433":1,"1434":2,"1463":2,"1464":7,"1465":1,"1471":2,"1472":2,"1473":1,"1477":1,"1480":1,"1481":1,"1483":1,"1500":2,"1526":1,"1542":1,"1547":1,"1578":1,"1589":1,"1594":1,"1595":1,"1602":1,"1622":1,"1623":1,"1633":1,"1640":1,"1655":1,"1656":1,"1661":1,"1665":1,"1667":1,"1678":1,"1698":1,"1739":1,"1763":1,"1768":1,"1790":1,"1797":1,"1845":1,"1850":2,"1919":1,"1932":1,"1944":1,"1957":1,"1962":1,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1984":1,"2017":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2055":1,"2066":1,"2081":1,"2088":2,"2179":2,"2210":1,"2215":1,"2220":1,"2250":1,"2258":1,"2268":1,"2284":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2302":1,"2309":1,"2312":1,"2320":1,"2326":1,"2329":2,"2330":1,"2374":1,"2376":2,"2378":1,"2388":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2404":1,"2406":2,"2408":2,"2410":2,"2414":2,"2415":1,"2417":2,"2419":4,"2451":1,"2455":19,"2497":1,"2579":1,"2605":1,"2608":1,"2646":1,"2674":1,"2691":1,"2702":1,"2703":1,"2724":1,"2726":1,"2728":3,"2753":2,"2756":11,"2757":2,"2759":1,"2851":1,"2889":1,"2891":1,"2908":1,"2912":2,"2941":1,"2945":3,"2947":1,"2949":1}}],["runoff",{"2":{"1846":1,"2082":1}}],["rundown",{"2":{"607":1}}],["runner",{"2":{"285":3,"294":1}}],["runner3680",{"2":{"143":20}}],["running",{"0":{"398":1,"583":1,"2946":1},"2":{"40":1,"44":1,"69":2,"108":1,"132":1,"149":1,"249":1,"381":3,"404":1,"581":1,"586":1,"588":3,"598":1,"611":1,"633":1,"641":1,"688":1,"1205":1,"1252":1,"1315":1,"1316":1,"1318":1,"1526":1,"1550":1,"1551":1,"1613":1,"1625":1,"1865":1,"1867":1,"1869":1,"1871":1,"1877":1,"1878":1,"1911":1,"1917":1,"2107":1,"2109":1,"2111":1,"2113":1,"2119":1,"2120":1,"2171":1,"2177":1,"2184":1,"2375":1,"2386":1,"2387":1,"2388":1,"2417":1,"2482":1,"2508":1,"2605":1,"2616":1,"2623":1,"2625":1,"2626":1,"2627":1,"2637":2,"2639":1,"2764":1,"2847":1}}],["run",{"0":{"1523":1,"2628":1},"2":{"41":1,"90":1,"114":1,"158":2,"191":2,"199":1,"254":1,"263":1,"390":1,"426":1,"455":2,"459":3,"465":3,"469":4,"473":1,"475":1,"485":1,"487":1,"501":1,"505":1,"506":1,"513":2,"542":1,"543":1,"564":1,"574":1,"580":1,"589":1,"645":1,"649":2,"688":2,"1296":1,"1318":2,"1332":3,"1348":1,"1364":1,"1431":1,"1468":1,"1527":1,"1528":1,"1605":1,"1609":1,"1617":1,"1618":1,"1668":1,"1697":1,"1767":1,"1781":1,"1837":1,"1850":3,"1852":1,"1865":1,"1867":1,"1957":1,"1962":3,"1983":1,"1994":1,"2088":3,"2091":1,"2107":1,"2109":1,"2273":2,"2294":1,"2310":1,"2331":2,"2384":2,"2395":1,"2396":1,"2417":3,"2432":1,"2461":1,"2501":1,"2502":2,"2508":3,"2554":1,"2573":1,"2579":2,"2587":1,"2594":1,"2605":1,"2607":2,"2608":1,"2609":1,"2616":2,"2617":1,"2628":6,"2634":6,"2637":3,"2639":2,"2656":1,"2667":1,"2668":1,"2670":1,"2673":1,"2707":1,"2709":1,"2711":1,"2714":1,"2728":1,"2761":1,"2784":1,"2789":1,"2811":1,"2817":1,"2827":1,"2871":1,"2878":1,"2941":1,"2945":1,"2946":5,"2947":2,"2950":1}}],["runtime=",{"2":{"2384":1}}],["runtime",{"0":{"1661":1},"1":{"1662":1,"1663":1,"1664":1},"2":{"14":1,"720":1,"754":1,"1348":1,"2001":1,"2002":1,"2384":2,"2912":2}}],["runs",{"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"386":1,"465":2,"469":2,"492":1,"545":1,"634":1,"647":3,"1429":1,"1447":1,"1488":1,"1551":3,"1967":1,"1974":1,"1983":1,"2054":1,"2499":1,"2501":1,"2579":1,"2607":1,"2612":1,"2935":1,"2937":3}}],["r",{"0":{"2107":1,"2109":1},"1":{"2108":1,"2110":1},"2":{"22":1,"175":1,"266":2,"308":1,"317":1,"379":1,"589":2,"729":1,"732":1,"805":1,"808":1,"831":1,"834":1,"863":1,"866":1,"893":1,"896":1,"928":1,"931":1,"962":1,"965":1,"996":1,"999":1,"1030":1,"1033":1,"1064":1,"1067":1,"1098":1,"1101":1,"1132":1,"1135":1,"1166":1,"1169":1,"1197":2,"1219":1,"1222":1,"1288":2,"1378":27,"1538":2,"1804":1,"2094":1,"2096":1,"2108":1,"2110":1,"2181":1,"2198":10,"2253":1,"2296":2,"2301":2,"2396":1,"2449":1,"2481":1,"2510":3,"2522":3,"2544":1,"2563":1,"2728":1,"2755":4,"2869":2,"2882":1,"2898":1,"2927":25}}],["req",{"2":{"2216":1}}],["requried",{"2":{"249":1}}],["requesting",{"2":{"393":1,"2567":1}}],["requested",{"2":{"99":1,"179":1,"586":1,"625":1,"1954":1,"2290":1,"2568":1}}],["request",{"0":{"414":1,"2836":1},"1":{"415":1,"416":1,"417":1,"418":1},"2":{"35":1,"40":1,"87":1,"103":1,"126":1,"383":1,"414":3,"417":1,"418":1,"596":1,"603":2,"607":9,"611":1,"613":1,"683":1,"797":1,"1339":1,"1341":1,"1414":1,"1468":1,"2059":8,"2216":2,"2218":1,"2387":3,"2481":1,"2516":1,"2522":1,"2567":1,"2633":1,"2635":1,"2674":1,"2731":1,"2836":1,"2850":1,"2950":1}}],["requests",{"2":{"28":1,"69":1,"199":1,"333":1,"417":1,"578":2,"621":1,"1343":1,"2566":1,"2638":1,"2729":1,"2730":1,"2836":1,"2902":1}}],["requirement",{"2":{"236":1,"716":1,"1689":1,"2712":1,"2726":1}}],["requirements",{"0":{"1404":1,"2383":1,"2726":1,"2738":1,"2739":1},"2":{"160":1,"191":1,"488":1,"749":1,"1286":1,"1290":1,"2044":1,"2568":1,"2729":1,"2735":1,"2741":1}}],["requires",{"2":{"158":1,"397":1,"460":1,"461":2,"685":1,"749":1,"750":1,"753":1,"755":1,"757":1,"759":1,"765":1,"1246":1,"1267":1,"1298":1,"1356":1,"1365":1,"1422":1,"1535":1,"1633":1,"1920":1,"1952":1,"1966":1,"1978":1,"1981":1,"1997":1,"1999":1,"2058":1,"2278":1,"2283":1,"2292":2,"2330":1,"2331":1,"2375":1,"2386":2,"2394":1,"2400":2,"2535":1,"2568":1,"2598":1,"2607":1,"2674":1,"2687":1,"2728":2,"2729":1,"2752":1,"2754":2,"2755":4,"2757":3,"2761":1,"2908":1}}],["require",{"0":{"124":1},"2":{"58":1,"132":1,"134":1,"232":1,"297":1,"308":2,"339":1,"373":1,"403":1,"414":1,"417":2,"430":1,"514":1,"575":1,"588":1,"592":1,"646":1,"685":1,"686":1,"719":1,"753":1,"754":2,"757":1,"1317":1,"1518":1,"1681":1,"1781":1,"1787":1,"1835":1,"1974":1,"1984":1,"2095":1,"2096":1,"2191":1,"2276":1,"2292":1,"2318":1,"2325":1,"2392":1,"2426":1,"2466":1,"2499":1,"2610":1,"2711":1,"2728":1,"2729":1,"2741":1,"2754":1,"2756":3,"2757":1,"2786":1,"2892":1,"2894":1,"2899":1,"2906":1}}],["required",{"0":{"13":1,"2264":1},"1":{"2265":1},"2":{"14":1,"40":1,"43":2,"69":1,"70":1,"107":1,"118":1,"222":1,"228":1,"234":9,"262":1,"285":1,"354":1,"570":1,"575":1,"605":1,"609":1,"625":1,"630":1,"656":1,"657":1,"669":1,"691":1,"703":1,"714":1,"725":1,"742":1,"748":1,"765":1,"767":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1197":1,"1205":1,"1215":1,"1246":1,"1247":1,"1248":1,"1267":1,"1268":1,"1284":1,"1299":2,"1303":1,"1405":1,"1419":2,"1444":1,"1503":1,"1517":2,"1532":1,"1642":2,"1689":1,"1699":4,"1781":1,"1782":1,"1951":2,"1953":1,"1957":1,"1966":3,"1967":1,"1968":2,"1970":3,"1974":2,"1978":2,"1979":2,"1980":1,"1981":3,"1982":2,"1983":1,"1987":3,"2001":3,"2003":2,"2054":1,"2212":1,"2276":1,"2277":1,"2288":3,"2292":1,"2320":1,"2347":1,"2379":1,"2384":1,"2415":2,"2425":2,"2427":1,"2430":1,"2454":1,"2455":1,"2456":2,"2457":1,"2478":1,"2483":1,"2505":1,"2568":1,"2569":1,"2599":2,"2601":1,"2606":1,"2676":1,"2684":1,"2726":1,"2728":2,"2729":1,"2735":1,"2756":4,"2757":6,"2852":4,"2853":2,"2855":2,"2856":2,"2857":1,"2858":2,"2865":3,"2867":1,"2868":1,"2869":3,"2871":5,"2876":2,"2877":1,"2878":5,"2882":3,"2883":1,"2944":1,"2945":1}}],["requiring",{"0":{"30":1,"53":1,"67":1,"72":1,"85":1,"101":1,"121":1,"139":1,"155":1,"164":1,"180":1,"193":1,"204":1,"216":1,"225":1,"239":1,"252":1,"269":1,"280":1,"290":1,"299":1,"310":1,"321":1},"1":{"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"86":1,"87":1,"88":1,"89":1,"90":1,"102":1,"103":1,"104":1,"105":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"140":1,"141":1,"142":1,"143":1,"156":1,"157":1,"158":1,"159":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"181":1,"182":1,"183":1,"184":1,"185":1,"194":1,"195":1,"196":1,"197":1,"205":1,"206":1,"207":1,"208":1,"209":1,"217":1,"218":1,"226":1,"240":1,"241":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"270":1,"271":1,"272":1,"273":1,"281":1,"291":1,"300":1,"311":1,"312":1,"322":1,"323":1,"324":1,"325":1},"2":{"188":1,"234":1,"276":1,"285":1,"414":2,"609":1,"754":1,"1591":1,"1593":1,"2302":1,"2567":1,"2746":1}}],["reregister",{"2":{"1776":5,"1782":1,"1785":1}}],["reusing",{"2":{"659":1,"2569":1}}],["reused",{"2":{"2387":3,"2869":1}}],["reuse",{"2":{"134":1,"2949":1}}],["reintroduced",{"2":{"2628":1}}],["reinitializes",{"2":{"2523":1,"2752":1}}],["reinitilization",{"2":{"1960":1}}],["reinstall",{"2":{"2658":1}}],["reinstalling",{"2":{"1318":1}}],["reinstate",{"2":{"285":1}}],["reimplementing",{"2":{"447":1}}],["reimplements",{"2":{"134":1}}],["reimplemented",{"2":{"118":1}}],["rekt1800",{"2":{"222":1}}],["rejects",{"2":{"294":1}}],["reject",{"2":{"175":1,"266":1,"294":2,"308":1}}],["rebase",{"2":{"2634":10}}],["rebasing",{"0":{"2634":1}}],["rebuilding",{"2":{"1368":1}}],["rebrand",{"2":{"317":1}}],["rebranded",{"2":{"57":1}}],["reboots",{"2":{"2297":1}}],["rebooted",{"2":{"1661":1,"2813":1}}],["rebooting",{"2":{"651":1,"1948":1}}],["reboot",{"0":{"651":1,"654":1},"1":{"652":1,"653":1,"654":1},"2":{"160":1,"175":1,"191":1,"229":1,"570":1,"651":1,"687":1,"2278":1,"2331":1,"2523":1,"2691":1,"2752":1,"2787":1,"2880":1}}],["recalculations",{"2":{"2764":1}}],["recall",{"2":{"1992":1}}],["rect",{"2":{"2757":5}}],["rectangle",{"2":{"2757":1}}],["rectangles",{"2":{"153":1,"2757":2}}],["rectangular",{"0":{"2799":1},"2":{"1492":1,"2797":1,"2799":1}}],["recreate",{"2":{"2432":2}}],["recreated",{"2":{"149":1}}],["recutting",{"2":{"2431":1}}],["recurse",{"2":{"2384":1,"2387":2,"2637":4}}],["recursion",{"2":{"339":1}}],["recursive",{"2":{"149":1,"1628":1,"1661":1,"2607":1}}],["recv",{"2":{"2277":1}}],["rec2",{"2":{"1661":3,"2530":1}}],["rec1",{"2":{"1661":3,"2530":1}}],["receiving",{"0":{"2058":1},"2":{"1194":1,"1197":1,"1200":2,"2387":1,"2418":1,"2819":1}}],["receives",{"2":{"1837":1,"2466":2,"2794":1}}],["received",{"2":{"585":1,"768":1,"1467":1,"2057":1,"2058":1,"2059":1,"2061":1,"2062":1,"2295":1,"2567":1,"2732":1}}],["receive",{"0":{"779":1,"782":1,"1262":1,"1279":1,"2061":1},"1":{"780":1,"781":1,"783":1,"784":1,"1263":1,"1264":1,"1280":1,"2062":1},"2":{"175":1,"323":1,"328":1,"779":1,"782":1,"1262":1,"1272":1,"1275":1,"1276":1,"1279":1,"1281":1,"1986":1,"2016":1,"2057":1,"2059":1,"2310":1,"2471":1,"2508":1,"2750":1,"2880":1}}],["reception",{"2":{"1192":3}}],["recently",{"2":{"236":1,"2086":1}}],["recent",{"2":{"114":1,"134":2,"149":1,"160":1,"175":1,"199":1,"210":1,"312":1,"1525":1,"1962":1,"2374":1,"2656":1}}],["recolored",{"2":{"2757":3}}],["recolor",{"2":{"2757":9}}],["recognised",{"2":{"1962":1,"2470":1}}],["recognises",{"2":{"1675":1}}],["recognise",{"2":{"1446":1,"2331":1}}],["recognizes",{"2":{"1361":1,"2522":1}}],["recognized",{"2":{"1351":1,"1356":1,"1358":1,"1525":1,"1608":1,"2949":1}}],["recognize",{"0":{"1332":1},"2":{"191":1,"540":1,"686":1,"2522":1,"2862":1}}],["reconstruct",{"2":{"2634":1}}],["reconfigure",{"2":{"1594":1}}],["reconfiguration",{"2":{"757":1}}],["reconnect",{"2":{"62":1}}],["recopy",{"2":{"511":1}}],["recovering",{"0":{"687":1},"2":{"240":1}}],["recover",{"2":{"228":1}}],["recompilation",{"2":{"2475":1}}],["recompile",{"2":{"124":1,"143":4,"149":1,"2297":1}}],["recommends",{"2":{"607":1,"1627":1}}],["recommendations",{"2":{"2459":1,"2580":1,"2725":1,"2942":1}}],["recommendation",{"2":{"403":1}}],["recommend",{"2":{"160":1,"685":1,"749":1,"2011":1,"2390":1,"2397":1,"2459":1,"2460":1,"2628":1,"2667":1,"2730":1,"2942":1,"2945":1,"2950":1}}],["recommended",{"2":{"3":1,"4":1,"48":1,"354":2,"426":1,"623":1,"749":1,"1193":1,"1316":1,"1351":1,"1410":7,"1446":1,"1463":1,"1464":2,"1630":1,"1685":1,"1769":1,"1788":1,"1801":1,"1846":2,"1939":3,"1955":1,"2008":1,"2037":1,"2040":1,"2082":2,"2181":1,"2265":1,"2277":1,"2331":2,"2386":1,"2389":2,"2392":2,"2394":2,"2395":2,"2396":2,"2397":2,"2399":2,"2401":2,"2402":2,"2403":2,"2404":1,"2422":1,"2429":2,"2496":1,"2500":1,"2592":1,"2621":1,"2638":1,"2639":1,"2640":2,"2710":1,"2726":1,"2729":1,"2730":1,"2758":1,"2923":1,"2929":1}}],["records",{"2":{"2009":1,"2013":1}}],["recorded",{"2":{"1661":1,"2530":1,"2634":1,"2813":1}}],["recording",{"2":{"210":1,"328":1,"1490":4,"1661":6,"1662":1,"1663":1,"1664":3,"2530":2}}],["record",{"0":{"214":1,"631":1,"632":1,"1446":1,"1452":1,"1661":1,"2932":1,"2941":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"1662":1,"1663":1,"1664":1},"2":{"3":1,"7":1,"12":2,"48":1,"191":1,"194":2,"195":2,"214":7,"222":3,"285":1,"294":1,"307":5,"317":1,"324":3,"325":3,"593":14,"627":2,"630":2,"631":4,"632":6,"643":1,"647":3,"1329":8,"1380":3,"1381":3,"1417":8,"1420":3,"1431":3,"1446":10,"1447":9,"1452":1,"1462":3,"1471":5,"1472":9,"1503":1,"1510":3,"1517":3,"1532":1,"1533":3,"1537":1,"1605":1,"1613":2,"1638":9,"1661":3,"1662":1,"1663":3,"1664":4,"1667":1,"1689":1,"1743":7,"1795":5,"1923":1,"1924":3,"1962":4,"1992":1,"1993":3,"1994":4,"2004":1,"2005":4,"2006":4,"2009":2,"2013":3,"2015":2,"2071":2,"2073":1,"2074":1,"2075":1,"2076":5,"2077":5,"2079":5,"2181":1,"2191":5,"2225":3,"2300":3,"2310":4,"2316":4,"2318":1,"2319":1,"2456":2,"2461":1,"2530":3,"2575":5,"2576":8,"2577":5,"2610":1,"2728":1,"2783":4,"2910":1,"2911":2,"2912":8,"2920":1,"2921":1,"2922":1,"2925":3,"2928":6,"2929":1,"2931":1,"2932":2,"2940":1,"2941":59}}],["reorderable",{"2":{"191":1}}],["reordering",{"2":{"166":1,"175":1}}],["reordered",{"2":{"98":1}}],["reorg",{"2":{"114":1}}],["regress",{"2":{"2381":2}}],["regression",{"2":{"134":1,"149":2,"222":1,"2379":2,"2381":1}}],["regulated",{"2":{"2690":1}}],["regulator",{"2":{"1968":1,"2280":1}}],["regularly",{"2":{"645":1}}],["regular",{"2":{"89":1,"114":1,"685":1,"1213":1,"1457":1,"1597":2,"1681":1,"1787":1,"2300":1,"2330":1,"2423":1,"2572":1,"2915":1}}],["regex",{"2":{"1434":1}}],["regen",{"2":{"199":4}}],["regenerate",{"2":{"198":1,"199":1,"249":2,"294":1}}],["region",{"2":{"2508":1,"2756":5}}],["regions",{"2":{"1346":1,"2741":1}}],["registry",{"2":{"2709":1,"2711":1}}],["registrations",{"2":{"660":1}}],["registration",{"0":{"657":1},"2":{"63":1}}],["registered",{"0":{"2467":1},"1":{"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"1381":6,"1776":1,"1781":2,"1782":1,"1784":1,"1971":8,"2277":1,"2309":1,"2920":3,"2921":2}}],["registering",{"2":{"564":1,"1381":1,"1455":1,"1457":2,"1785":1,"1953":1}}],["register16",{"0":{"788":1,"794":1},"1":{"789":1,"790":1,"795":1,"796":1},"2":{"244":2}}],["registers",{"0":{"825":1,"853":1,"885":1,"917":1,"952":1,"986":1,"1020":1,"1054":1,"1088":1,"1122":1,"1156":1,"1190":1,"1243":1},"1":{"854":1,"886":1,"918":1,"953":1,"987":1,"1021":1,"1055":1,"1089":1,"1123":1,"1157":1,"1191":1,"1244":1},"2":{"134":1,"820":2,"822":2,"847":2,"849":2,"879":2,"881":2,"911":2,"913":2,"946":2,"948":2,"980":2,"982":2,"1014":2,"1016":2,"1048":2,"1050":2,"1082":2,"1084":1,"1116":2,"1118":1,"1150":2,"1152":1,"1184":2,"1186":1,"1213":1,"1237":2,"1239":2,"1618":1,"1665":1,"1974":1,"2466":1,"2685":2}}],["register",{"0":{"785":1,"791":1,"810":1,"820":1,"822":1,"837":1,"847":1,"849":1,"869":1,"879":1,"881":1,"899":1,"911":1,"913":1,"934":1,"946":1,"948":1,"968":1,"980":1,"982":1,"1002":1,"1014":1,"1016":1,"1036":1,"1048":1,"1050":1,"1070":1,"1082":1,"1084":1,"1104":1,"1116":1,"1118":1,"1138":1,"1150":1,"1152":1,"1172":1,"1184":1,"1186":1,"1225":1,"1237":1,"1239":1,"1320":1,"1453":1,"1457":1,"1751":1,"2025":1,"2347":1,"2357":1,"2371":1},"1":{"786":1,"787":1,"792":1,"793":1,"811":1,"821":1,"823":1,"838":1,"848":1,"850":1,"870":1,"880":1,"882":1,"900":1,"912":1,"914":1,"935":1,"947":1,"949":1,"969":1,"981":1,"983":1,"1003":1,"1015":1,"1017":1,"1037":1,"1049":1,"1051":1,"1071":1,"1083":1,"1085":1,"1105":1,"1117":1,"1119":1,"1139":1,"1151":1,"1153":1,"1173":1,"1185":1,"1187":1,"1226":1,"1238":1,"1240":1,"1752":1,"2026":1,"2348":1,"2358":1,"2372":1},"2":{"114":1,"134":1,"149":1,"174":1,"175":2,"236":3,"244":2,"249":5,"564":1,"731":1,"732":3,"785":1,"786":1,"788":1,"789":1,"791":1,"792":1,"794":1,"795":1,"797":2,"807":1,"808":4,"810":1,"811":1,"825":1,"833":1,"834":4,"837":1,"838":1,"853":1,"863":1,"865":1,"866":4,"869":1,"870":1,"885":1,"893":1,"895":1,"896":4,"899":1,"900":1,"917":1,"928":1,"930":1,"931":4,"934":1,"935":1,"952":1,"962":1,"964":1,"965":4,"968":1,"969":1,"986":1,"996":1,"998":1,"999":4,"1002":1,"1003":1,"1020":1,"1024":1,"1030":1,"1032":1,"1033":4,"1036":1,"1037":1,"1054":1,"1058":1,"1064":1,"1066":1,"1067":4,"1070":1,"1071":1,"1084":1,"1088":1,"1092":1,"1098":1,"1100":1,"1101":4,"1104":1,"1105":1,"1118":1,"1122":1,"1126":1,"1132":1,"1134":1,"1135":4,"1138":1,"1139":1,"1152":1,"1156":1,"1160":1,"1166":1,"1168":1,"1169":4,"1172":1,"1173":1,"1186":1,"1190":1,"1219":1,"1221":1,"1222":4,"1225":1,"1226":1,"1243":1,"1378":1,"1380":2,"1381":1,"1447":2,"1454":1,"1455":1,"1457":1,"1462":3,"1517":3,"1618":1,"1781":2,"1788":1,"1953":1,"1985":1,"2277":1,"2310":1,"2316":2,"2317":5,"2318":3,"2434":1,"2469":2,"2674":1,"2686":1,"2865":1,"2929":1}}],["reg",{"0":{"810":1,"837":1,"869":1,"899":1,"934":1,"968":1,"1002":1,"1036":1,"1070":1,"1104":1,"1138":1,"1172":1,"1225":1},"1":{"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1226":1},"2":{"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1226":1,"2331":2}}],["regaddr",{"0":{"785":1,"788":1,"791":1,"794":1},"1":{"786":1,"787":1,"789":1,"790":1,"792":1,"793":1,"795":1,"796":1},"2":{"786":1,"789":1,"792":1,"795":1}}],["regards",{"2":{"1518":1,"1787":1,"1974":1,"2317":1,"2676":1}}],["regard",{"2":{"763":1}}],["regardless",{"2":{"39":1,"615":1,"768":1,"1381":1,"1791":1,"2057":1,"2210":1,"2267":1,"2568":1,"2638":1,"2730":1,"2741":1,"2749":1}}],["regarding",{"0":{"17":1},"2":{"92":1,"175":1,"191":1,"201":1,"762":1,"1315":1}}],["retirement",{"2":{"2902":1}}],["retail",{"2":{"2569":1}}],["retaining",{"2":{"1470":1,"2770":1}}],["retained",{"2":{"1415":1,"2273":1,"2610":1,"2786":2}}],["retain",{"0":{"2193":1},"2":{"114":1,"175":1,"199":1,"2193":2}}],["retn",{"2":{"2516":1,"2522":1}}],["ret",{"2":{"2332":1,"2552":1}}],["retries",{"2":{"2277":1}}],["retrieves",{"2":{"2639":2}}],["retrieve",{"2":{"383":1,"2757":1}}],["retrieved",{"2":{"383":1}}],["retrieval",{"2":{"175":1,"222":1,"639":1}}],["retry",{"2":{"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1365":1}}],["retro",{"0":{"1518":1,"1519":1,"2929":1,"2930":1},"1":{"1519":1,"2930":1},"2":{"63":1,"112":2,"134":2,"210":1,"236":1,"294":1,"339":1,"564":4,"1499":1,"1517":5,"1518":11,"1519":3,"2854":2,"2929":7,"2930":3,"2931":1,"2946":2}}],["returned",{"2":{"656":1,"657":1,"658":1,"659":1,"690":1,"1594":1,"1729":1,"1840":1,"2069":1,"2193":1,"2756":11,"2925":1,"2937":1}}],["returncode",{"2":{"487":1,"543":1}}],["returns",{"2":{"487":1,"512":1,"521":1,"523":1,"524":2,"656":1,"698":1,"699":1,"761":1,"1422":1,"1536":1,"1599":1,"1620":2,"1621":1,"1668":1,"1770":1,"1839":1,"1937":1,"1954":12,"1957":1,"1968":1,"1988":6,"1989":3,"1990":1,"2008":1,"2014":1,"2076":1,"2203":1,"2290":8,"2306":1,"2319":1,"2380":1,"2461":1,"2634":2,"2757":2,"2924":1}}],["returning",{"2":{"90":1,"105":2,"214":1,"528":1,"651":1,"656":1,"1600":2,"1617":1,"1668":1,"1837":2,"2073":1,"2217":1,"2390":1,"2397":1,"2879":1,"2925":1,"2928":2}}],["return",{"0":{"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"796":1,"799":1,"1253":1,"1256":1,"1258":1,"1261":1,"1264":1,"1276":1,"1282":1,"1569":1,"1571":1,"1576":1,"1583":1,"1724":1,"1729":1,"1757":1,"1811":1,"1817":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1864":1,"1878":1,"1884":1,"1894":1,"1904":1,"1907":1,"1909":1,"1911":1,"1914":1,"1917":1,"2031":1,"2034":1,"2106":1,"2120":1,"2126":1,"2132":1,"2138":1,"2148":1,"2158":1,"2164":1,"2167":1,"2169":1,"2171":1,"2174":1,"2177":1,"2335":1,"2353":1,"2356":1,"2361":1,"2363":1,"2366":1,"2368":1},"2":{"21":2,"24":2,"40":1,"90":4,"105":7,"125":3,"134":3,"169":3,"175":2,"194":5,"195":4,"199":1,"249":3,"294":1,"307":2,"312":1,"324":1,"325":1,"328":1,"332":2,"333":1,"337":2,"354":1,"386":1,"512":4,"522":2,"523":2,"524":3,"528":1,"534":1,"588":1,"593":8,"609":3,"624":1,"625":2,"630":2,"631":3,"652":2,"653":1,"656":2,"657":1,"745":2,"1281":2,"1329":1,"1349":1,"1353":1,"1380":3,"1381":4,"1417":6,"1418":1,"1420":1,"1430":1,"1431":4,"1446":3,"1447":2,"1462":1,"1470":2,"1471":1,"1472":2,"1491":3,"1503":3,"1510":4,"1517":2,"1533":12,"1535":5,"1600":3,"1612":12,"1613":2,"1617":2,"1618":3,"1620":4,"1657":6,"1668":4,"1743":6,"1779":1,"1781":2,"1794":1,"1795":2,"1838":1,"1839":1,"1850":3,"1855":3,"1924":2,"1945":1,"1946":1,"1947":1,"1948":4,"1954":1,"1958":2,"1962":3,"1983":1,"1984":3,"1988":1,"1993":2,"1994":3,"1996":2,"1997":1,"2006":4,"2008":7,"2009":2,"2011":1,"2012":1,"2013":1,"2014":2,"2015":1,"2059":2,"2069":7,"2070":6,"2071":4,"2073":2,"2074":1,"2075":2,"2076":2,"2077":4,"2079":5,"2088":3,"2094":3,"2095":3,"2096":2,"2190":3,"2225":2,"2254":5,"2286":1,"2287":3,"2290":1,"2300":3,"2303":1,"2316":1,"2317":11,"2318":6,"2319":6,"2381":5,"2461":1,"2512":1,"2516":2,"2522":3,"2575":3,"2576":10,"2577":2,"2633":1,"2635":1,"2637":1,"2639":1,"2729":1,"2757":1,"2783":3,"2785":3,"2910":3,"2911":5,"2912":4,"2920":2,"2921":2,"2922":2,"2924":3,"2925":7,"2927":3,"2928":3,"2929":2,"2931":2,"2941":1}}],["rewinding",{"2":{"2634":1}}],["rewind",{"2":{"2068":1,"2517":3,"2522":3}}],["rework",{"0":{"196":2},"2":{"114":1,"134":1,"160":2,"175":1,"191":1,"199":1,"210":1,"236":1,"249":1,"277":1,"285":1,"328":1,"613":1,"2586":1}}],["reworked",{"2":{"60":1,"86":1,"118":1,"172":1,"175":1,"283":1}}],["rewritten",{"2":{"107":1,"1348":1,"2893":1}}],["rewrite",{"2":{"21":1,"75":1,"175":1,"191":2,"1365":2}}],["re",{"0":{"2850":1},"2":{"41":1,"107":1,"119":3,"124":1,"132":1,"134":1,"149":1,"157":1,"166":1,"172":1,"191":2,"198":1,"222":1,"224":1,"228":1,"232":1,"240":1,"241":1,"248":1,"253":1,"268":1,"270":1,"272":1,"273":1,"279":1,"281":1,"283":1,"294":1,"370":2,"383":1,"406":1,"407":1,"512":1,"514":1,"564":2,"599":1,"600":1,"604":1,"607":2,"609":1,"612":1,"618":1,"633":1,"658":1,"661":1,"687":1,"1207":1,"1209":1,"1311":1,"1318":1,"1378":1,"1382":1,"1417":5,"1420":1,"1450":1,"1490":1,"1501":1,"1593":1,"1608":1,"1609":2,"1612":1,"1671":1,"1689":1,"1785":3,"1788":1,"1796":1,"1923":1,"1996":1,"2048":1,"2263":1,"2268":1,"2273":2,"2275":2,"2330":1,"2331":1,"2379":1,"2387":3,"2429":8,"2431":2,"2434":1,"2437":1,"2460":1,"2462":1,"2464":1,"2497":1,"2508":1,"2567":1,"2583":1,"2590":1,"2595":1,"2613":1,"2616":1,"2617":1,"2629":1,"2634":1,"2638":1,"2651":1,"2652":1,"2671":1,"2673":1,"2674":1,"2677":1,"2711":1,"2713":1,"2715":1,"2725":1,"2726":2,"2728":1,"2730":1,"2742":1,"2750":1,"2756":2,"2781":1,"2789":1,"2794":2,"2795":1,"2890":1,"2891":2,"2892":2,"2894":1,"2912":1,"2929":1}}],["rear",{"2":{"2795":1}}],["reapply",{"2":{"2634":1}}],["reapplying",{"2":{"1381":1}}],["reap",{"2":{"412":1}}],["reasons",{"2":{"622":1}}],["reasonable",{"2":{"613":1,"1997":1,"2909":1}}],["reason",{"2":{"288":1,"416":1,"525":1,"613":1,"1350":1,"1378":1,"1423":1,"1450":1,"1466":1,"2265":1,"2567":1,"2568":1,"2717":1,"2726":1,"2757":1,"2912":1,"2933":1,"2945":1}}],["reacting",{"2":{"2276":1}}],["reactive",{"0":{"2087":1},"2":{"93":1,"124":1,"191":1,"199":1,"249":1,"266":1,"317":1,"1849":22,"1852":2,"2085":25,"2087":3,"2091":2,"2894":8}}],["react",{"2":{"2276":1,"2871":2,"2878":2}}],["reached",{"2":{"1818":1,"1935":2,"1939":1}}],["reaches",{"2":{"1427":1,"1934":3,"2472":1,"2634":1}}],["reach",{"2":{"418":1,"610":1,"1525":1,"1802":2,"1939":1,"2291":1,"2726":1}}],["reachable",{"2":{"249":1,"1975":5}}],["reaching",{"2":{"172":1,"1497":1,"2379":1,"2936":1}}],["realtime",{"0":{"2897":1}}],["realpath",{"2":{"2592":1,"2593":1}}],["realising",{"2":{"2567":1}}],["realized",{"2":{"1774":1}}],["realign",{"2":{"222":1}}],["realloc",{"2":{"236":1}}],["reallocate",{"2":{"199":2}}],["really",{"2":{"153":1,"1319":1,"1413":1,"1499":1,"1501":1,"1517":1,"1593":1,"1779":1,"1782":1,"1787":1,"2425":1,"2670":1,"2932":1}}],["real",{"0":{"1362":1,"2743":1},"1":{"2744":1,"2745":1,"2746":1},"2":{"39":1,"245":1,"1328":1,"1356":1,"1362":7,"1409":1,"1517":1,"2291":2,"2714":1}}],["reader",{"2":{"1612":1,"1947":7,"1954":1,"2286":7,"2290":1}}],["readers",{"2":{"519":1}}],["read32",{"2":{"647":1,"1420":1,"2277":1,"2726":1,"2757":6}}],["reads",{"2":{"561":2,"568":1,"569":1,"570":1,"639":3,"698":2,"699":3,"750":1,"1968":1,"2059":1,"2384":1,"2794":1}}],["readily",{"2":{"538":1,"2505":1}}],["readings",{"2":{"234":1}}],["reading",{"0":{"477":1,"496":1,"594":1},"1":{"478":1,"479":1,"480":1,"481":1},"2":{"114":1,"134":1,"149":1,"160":1,"191":1,"500":1,"561":2,"613":1,"626":1,"746":1,"797":1,"1417":1,"1742":1,"1840":1,"2441":1,"2455":1,"2466":1,"2502":4,"2503":1,"2615":1,"2872":1,"2906":1}}],["readability",{"2":{"512":1,"527":1,"538":1,"589":1,"1347":1,"2561":1}}],["readable",{"2":{"308":1,"1330":2,"1347":1,"2795":1,"2811":1,"2949":1}}],["ready",{"2":{"344":3,"403":1,"1332":1,"1462":1,"1483":1,"1622":1,"1957":1,"2043":1,"2298":1,"2390":1,"2397":1,"2418":1,"2502":1,"2508":1,"2582":1,"2612":1,"2616":1,"2617":1,"2630":1,"2673":1}}],["readreg",{"2":{"244":1}}],["readreg16",{"2":{"134":1,"244":1}}],["readpin",{"2":{"243":1}}],["readport",{"2":{"114":1}}],["readonly",{"2":{"236":1}}],["readd",{"2":{"199":1}}],["readmes",{"2":{"266":1}}],["readme",{"0":{"683":1,"684":1,"1467":2,"2452":1,"2715":1},"2":{"114":3,"134":1,"160":1,"175":1,"210":2,"222":1,"294":2,"308":1,"328":1,"409":1,"411":1,"612":2,"686":1,"1433":3,"1463":1,"2396":1,"2414":1,"2415":1,"2417":1,"2448":1,"2451":1,"2452":1,"2458":2,"2501":1,"2715":3,"2728":1}}],["read",{"0":{"604":1,"791":1,"794":1,"1257":1,"1275":1,"1368":1,"1727":1,"1755":1,"1947":1,"2286":1},"1":{"792":1,"793":1,"795":1,"796":1,"1258":1,"1276":1,"1728":1,"1729":1,"1756":1,"1757":1},"2":{"2":1,"21":3,"39":1,"114":2,"160":2,"194":1,"195":1,"199":1,"217":1,"243":1,"244":2,"249":1,"285":1,"294":1,"308":1,"346":1,"365":2,"473":1,"477":1,"483":1,"540":1,"589":1,"603":1,"639":3,"693":1,"698":1,"699":2,"745":1,"761":1,"766":2,"780":2,"783":2,"791":1,"792":3,"794":1,"795":3,"797":1,"1192":1,"1257":1,"1258":1,"1263":2,"1276":2,"1280":2,"1281":1,"1282":1,"1314":1,"1344":1,"1368":1,"1379":1,"1409":1,"1416":3,"1417":5,"1418":3,"1419":6,"1420":2,"1428":1,"1462":1,"1539":1,"1612":1,"1661":1,"1662":1,"1727":1,"1728":1,"1738":2,"1742":2,"1749":1,"1756":1,"1773":1,"1835":1,"1935":1,"1947":6,"1954":1,"1968":1,"1980":1,"1983":2,"1985":1,"2059":1,"2271":2,"2272":1,"2286":6,"2290":1,"2310":1,"2418":1,"2454":1,"2466":2,"2503":1,"2585":1,"2633":1,"2635":1,"2697":1,"2698":1,"2714":1,"2726":1,"2759":1,"2761":1,"2791":2,"2792":3,"2794":1,"2795":1,"2896":1,"2906":2,"2907":1,"2927":1,"2944":1,"2949":1}}],["reddit",{"2":{"2898":1}}],["redragon",{"2":{"2567":1}}],["redetect",{"2":{"1961":1}}],["redesigning",{"2":{"1368":1}}],["redefined",{"2":{"2728":1}}],["redefine",{"2":{"559":1,"1396":1,"1472":1,"2259":2}}],["redirect",{"2":{"586":1,"661":1,"1382":1,"2437":1,"2637":1}}],["redirected",{"2":{"268":1,"2566":1}}],["redistribution",{"2":{"2710":1,"2726":1,"2733":1,"2735":1,"2748":1}}],["redistributed",{"2":{"2710":1}}],["redistribute",{"2":{"1467":1,"2732":1}}],["redis",{"0":{"585":1},"2":{"366":1,"370":1}}],["redox",{"2":{"241":2,"249":3}}],["redoing",{"2":{"175":1}}],["redo",{"2":{"160":1}}],["red",{"0":{"707":1,"709":1,"735":1,"737":1,"812":1,"814":1,"820":1,"839":1,"841":1,"847":1,"871":1,"873":1,"879":1,"903":1,"905":1,"911":1,"938":1,"940":1,"946":1,"972":1,"974":1,"980":1,"1006":1,"1008":1,"1014":1,"1040":1,"1042":1,"1048":1,"1074":1,"1076":1,"1082":1,"1108":1,"1110":1,"1116":1,"1142":1,"1144":1,"1150":1,"1176":1,"1178":1,"1184":1,"1229":1,"1231":1,"1237":1,"1306":1,"1308":1},"1":{"708":1,"710":1,"736":1,"738":1,"813":1,"815":1,"821":1,"840":1,"842":1,"848":1,"872":1,"874":1,"880":1,"904":1,"906":1,"912":1,"939":1,"941":1,"947":1,"973":1,"975":1,"981":1,"1007":1,"1009":1,"1015":1,"1041":1,"1043":1,"1049":1,"1075":1,"1077":1,"1083":1,"1109":1,"1111":1,"1117":1,"1143":1,"1145":1,"1151":1,"1177":1,"1179":1,"1185":1,"1230":1,"1232":1,"1238":1,"1307":1,"1309":1},"2":{"39":1,"344":3,"403":1,"429":1,"492":2,"494":1,"652":1,"653":2,"708":2,"710":2,"729":1,"732":1,"736":2,"738":2,"805":1,"808":1,"813":2,"815":2,"821":2,"831":1,"834":1,"840":2,"842":2,"848":2,"863":1,"866":1,"872":2,"874":2,"880":2,"893":1,"896":1,"904":2,"906":2,"912":2,"928":1,"931":1,"939":2,"941":2,"947":2,"962":1,"965":1,"973":2,"975":2,"981":2,"996":1,"999":1,"1007":2,"1009":2,"1015":2,"1030":1,"1033":1,"1041":2,"1043":2,"1049":2,"1064":1,"1067":1,"1075":2,"1077":2,"1083":2,"1098":1,"1101":1,"1109":2,"1111":2,"1117":2,"1132":1,"1135":1,"1143":2,"1145":2,"1151":2,"1166":1,"1169":1,"1177":2,"1179":2,"1185":2,"1219":1,"1222":1,"1230":2,"1232":2,"1238":2,"1287":1,"1288":1,"1307":2,"1309":2,"1417":1,"1475":1,"1478":3,"1482":2,"1958":1,"2089":2,"2094":2,"2095":1,"2108":1,"2110":1,"2181":1,"2182":1,"2185":1,"2189":3,"2191":1,"2198":1,"2205":2,"2544":1,"2601":1}}],["redux",{"2":{"339":1}}],["reducing",{"2":{"69":1,"624":1,"2379":1}}],["reduces",{"2":{"203":1,"265":1,"613":1,"2379":1,"2913":1}}],["reduced",{"2":{"195":1,"1196":1,"1199":1}}],["reduce",{"0":{"55":1,"323":1,"2186":1},"2":{"50":1,"94":1,"114":2,"134":1,"149":1,"160":1,"175":6,"199":2,"201":1,"210":3,"222":4,"236":1,"266":1,"297":1,"328":1,"572":1,"1524":1,"1949":2,"2068":1,"2288":1,"2417":1,"2418":2,"2638":1,"2728":1,"2888":1,"2892":1,"2923":1}}],["reduction",{"2":{"3":1,"48":1,"149":1}}],["redundant",{"2":{"8":1,"94":1,"114":1,"222":1,"249":5,"266":3,"293":1,"305":1,"308":1,"333":3,"1619":1}}],["res2",{"2":{"2296":1,"2301":1}}],["res1",{"2":{"2296":1,"2301":1}}],["resd",{"2":{"2253":1}}],["rescue",{"2":{"1791":1,"2737":1}}],["reschedules",{"2":{"656":1}}],["resistant",{"2":{"1409":1,"1410":4,"1413":1}}],["resistance",{"2":{"744":2,"860":2,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":2,"1129":2,"1163":2,"1410":1,"2267":1,"2858":2}}],["resistors",{"2":{"1313":1,"1558":1,"2264":1,"2267":2}}],["resistor",{"2":{"236":1,"761":2,"857":2,"860":2,"921":2,"925":2,"956":2,"959":2,"990":2,"993":2,"1024":2,"1027":2,"1058":2,"1061":2,"1092":2,"1095":2,"1126":2,"1129":2,"1160":2,"1163":2,"1197":3,"1205":1,"1297":1,"1558":2,"2678":3,"2682":1}}],["res",{"2":{"701":2,"1838":3,"2252":9}}],["resynchronize",{"2":{"2637":3,"2730":1}}],["resynchronizing",{"0":{"2635":1,"2637":1},"1":{"2636":1,"2637":1},"2":{"2632":1}}],["resync",{"2":{"561":1,"1354":1,"2854":1,"2890":1}}],["responds",{"2":{"2059":1}}],["responding",{"2":{"750":1}}],["respond",{"2":{"604":1,"797":1,"1551":1,"1852":1,"2091":1}}],["responsibility",{"2":{"403":1}}],["responsible",{"2":{"367":1,"612":1,"615":1,"1297":1,"2310":1,"2579":1,"2684":1,"2764":1,"2936":3}}],["responsiveness",{"2":{"1413":1,"1852":2,"1985":1,"2091":2,"2310":1,"2764":1,"2871":1,"2878":1}}],["responsive",{"2":{"320":1,"417":1,"646":1,"2091":1,"2931":1}}],["responses",{"2":{"581":1,"2711":1}}],["response",{"2":{"312":1,"768":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"797":1,"798":1,"1413":3,"2059":10,"2469":1,"2567":2}}],["respected",{"2":{"2757":1}}],["respecting",{"2":{"2351":1}}],["respectively",{"2":{"648":1,"669":1,"685":1,"805":1,"831":1,"860":1,"863":1,"893":1,"925":1,"928":1,"959":1,"962":1,"993":1,"996":1,"1027":1,"1030":1,"1061":1,"1064":1,"1095":1,"1098":1,"1129":1,"1132":1,"1163":1,"1166":1,"1219":1,"1498":1,"1639":1,"1742":1,"1935":2,"2267":1,"2330":1,"2331":1,"2561":1,"2651":1,"2679":1,"2795":1,"2945":1}}],["respective",{"2":{"40":1,"210":1,"233":1,"234":1,"283":1,"569":1,"1198":1,"1201":1,"1300":1,"1405":1,"1448":1,"1845":1,"1937":3,"2081":1,"2222":1,"2331":1,"2557":1,"2735":1,"2754":1,"2757":1,"2773":1,"2780":1}}],["respect",{"2":{"47":1,"98":1,"191":1,"210":1,"222":1,"285":2,"294":1,"615":1,"2710":1,"2756":1,"2778":1}}],["resembles",{"2":{"2794":1}}],["reserves",{"2":{"2707":1}}],["reserved",{"2":{"520":1,"1702":1,"1946":1,"2285":1,"2449":1,"2503":1,"2519":1,"2751":1}}],["researchers",{"2":{"312":1}}],["reset6",{"2":{"2691":1}}],["resets",{"2":{"564":1,"1493":1,"1495":1,"1529":1,"1954":1,"2290":1,"2309":1,"2523":1,"2524":1,"2691":1,"2752":1,"2756":2}}],["resetting",{"0":{"2787":1},"2":{"230":1,"748":1,"1320":1,"1591":1,"1812":1,"2685":1}}],["reset",{"0":{"156":1,"182":1,"1367":1,"1819":1,"2700":1,"2788":1},"2":{"39":2,"114":2,"149":1,"156":3,"172":1,"175":4,"182":2,"191":2,"199":2,"210":1,"308":2,"339":1,"396":2,"397":3,"398":1,"411":1,"423":2,"492":6,"494":3,"651":6,"652":1,"653":1,"684":2,"685":1,"686":2,"1265":1,"1285":1,"1286":1,"1315":1,"1320":3,"1365":1,"1367":1,"1378":2,"1417":3,"1451":2,"1493":1,"1495":1,"1533":1,"1589":2,"1614":1,"1680":2,"1702":1,"1753":1,"1815":1,"1819":1,"1846":1,"1940":5,"1960":2,"1961":2,"1999":1,"2006":1,"2008":1,"2009":2,"2023":1,"2027":1,"2082":1,"2273":4,"2288":1,"2301":2,"2309":2,"2310":5,"2314":1,"2315":3,"2316":2,"2317":3,"2318":3,"2319":4,"2323":1,"2389":3,"2392":3,"2394":2,"2395":2,"2396":1,"2397":2,"2399":5,"2401":5,"2402":2,"2403":2,"2404":5,"2410":3,"2418":1,"2433":2,"2483":1,"2485":4,"2487":5,"2489":4,"2491":1,"2493":1,"2495":1,"2499":1,"2508":3,"2524":1,"2612":2,"2615":1,"2637":1,"2651":1,"2689":1,"2691":2,"2700":5,"2702":1,"2728":1,"2756":11,"2787":2,"2788":2,"2789":3,"2852":1,"2870":1}}],["resu",{"2":{"2253":1}}],["resume",{"0":{"1376":1},"2":{"210":1,"263":2,"1376":1}}],["results",{"0":{"382":1},"2":{"99":1,"103":1,"126":1,"236":1,"263":1,"366":2,"381":1,"383":1,"433":1,"516":1,"578":1,"1522":1,"1959":1,"1960":1,"1986":1,"2379":1,"2926":1,"2930":1,"2940":2}}],["resulting",{"2":{"15":1,"119":1,"378":1,"580":1,"586":1,"589":1,"1602":1,"1622":1,"1667":1,"1986":1,"2384":1,"2596":1}}],["result",{"2":{"3":2,"8":1,"48":2,"87":1,"156":1,"166":1,"181":1,"381":2,"382":1,"540":1,"657":1,"701":4,"750":1,"755":2,"797":2,"1367":1,"1427":1,"1466":1,"1492":1,"1493":1,"1499":1,"1518":1,"1519":1,"1612":1,"1622":1,"1681":1,"1959":1,"1960":1,"1977":1,"1986":2,"2309":1,"2317":1,"2569":1,"2570":1,"2597":1,"2756":2,"2757":2,"2761":1,"2902":1,"2929":2,"2949":1}}],["resort",{"2":{"1959":1,"2331":1,"2569":1}}],["resonance",{"2":{"1685":2}}],["resonant",{"2":{"1685":1}}],["resources",{"0":{"2281":1,"2578":1,"2581":1,"2642":1,"2643":1,"2644":1,"2645":1,"2646":1},"1":{"2643":1,"2644":1,"2645":1,"2646":1},"2":{"1410":1,"2299":1,"2554":1,"2565":1,"2573":1,"2581":2,"2619":1,"2642":1,"2651":1,"2704":1,"2707":1,"2734":1,"2757":2,"2762":1,"2896":1,"2942":1}}],["resource",{"2":{"123":1,"575":1,"720":1,"1662":1,"2704":1,"2765":1,"2772":1,"2888":1}}],["resolving",{"0":{"2633":1},"1":{"2634":1},"2":{"214":1,"2387":2,"2632":1,"2726":2}}],["resolved",{"2":{"2634":1}}],["resolves",{"2":{"1610":1,"1617":1}}],["resolve",{"2":{"95":1,"175":3,"236":2,"294":1,"308":2,"333":1,"570":1,"607":1,"2634":1}}],["resolution",{"0":{"1986":1},"2":{"134":1,"167":2,"222":2,"308":1,"317":1,"328":2,"339":1,"701":3,"744":2,"1292":1,"1665":2,"1666":2,"1740":3,"1742":1,"1939":1,"1970":8,"1986":11,"2046":3,"2047":1,"2252":2,"2253":5,"2254":12,"2858":2,"2865":1}}],["resolutions",{"0":{"2252":1},"2":{"63":1,"1665":1,"1666":4,"1970":1,"2756":1}}],["rests",{"2":{"2845":1}}],["resting",{"2":{"1742":1,"1749":1,"1757":1,"2428":1}}],["restricts",{"2":{"2736":1,"2931":1}}],["restricted",{"2":{"2695":1,"2736":1,"2745":2}}],["restricting",{"2":{"2931":1}}],["restriction",{"2":{"2687":1}}],["restrictions",{"0":{"2735":1},"2":{"2686":1,"2710":1,"2733":1,"2735":3,"2747":1,"2748":1,"2749":2}}],["restrictive",{"2":{"1528":1,"2736":1,"2750":1}}],["restrict",{"2":{"328":1}}],["restructuring",{"2":{"133":1,"613":1}}],["restructure",{"0":{"113":1,"133":1},"2":{"113":1,"191":2,"328":1,"525":1}}],["rest",{"2":{"243":1,"331":1,"521":1,"754":1,"755":1,"756":1,"1742":2,"1802":3,"2415":1,"2424":1,"2428":1,"2432":1,"2482":1,"2517":1,"2620":1,"2640":1,"2662":1,"2864":1,"2944":2}}],["restarted",{"2":{"1954":1}}],["restart",{"2":{"199":2,"686":1,"1316":1,"1491":1,"2660":2,"2671":1,"2673":1}}],["restarting",{"2":{"175":1}}],["restoration",{"2":{"149":1}}],["restored",{"2":{"279":1,"2394":1}}],["restore",{"2":{"62":1,"199":1,"210":3,"222":2,"285":1,"294":1,"328":1,"414":1,"1320":1,"1381":1}}],["revoke",{"2":{"2568":1,"2570":1}}],["revealed",{"2":{"312":1}}],["reverence",{"2":{"744":1,"2858":1}}],["reversed",{"2":{"2303":1}}],["reverses",{"2":{"2069":2}}],["reverse",{"0":{"1875":1,"1876":1,"1901":1,"1902":1,"2117":1,"2118":1,"2155":1,"2156":1,"2339":1},"2":{"175":1,"339":1,"1380":1,"1489":1,"1495":1,"1525":1,"1848":2,"2050":1,"2068":1,"2069":2,"2070":1,"2084":3,"2181":2,"2199":2,"2206":1,"2332":1,"2524":1,"2537":2,"2544":2,"2545":3,"2552":1,"2567":1}}],["reversing",{"2":{"46":1,"2634":1}}],["reverted",{"2":{"191":1}}],["revert",{"2":{"114":2,"134":2,"149":1,"160":1,"175":2,"191":2,"199":5,"210":3,"217":1,"222":1,"236":1,"285":1,"339":1,"2213":1,"2214":1,"2216":1,"2912":1}}],["rev7",{"2":{"277":1}}],["rev6",{"0":{"1320":1},"2":{"222":1,"393":2,"429":2,"452":2,"453":2,"454":1,"455":1,"1320":1,"1492":1,"1527":1,"2384":2}}],["reva",{"2":{"143":2}}],["revamp",{"2":{"74":1,"210":1}}],["reviewing",{"2":{"607":1,"2725":1,"2731":1}}],["reviewed",{"2":{"607":1}}],["reviewer",{"2":{"607":1}}],["reviews",{"2":{"403":1,"2728":1,"2731":2}}],["review",{"0":{"2609":1,"2731":1},"2":{"285":1,"403":2,"417":1,"1341":1,"2569":1,"2609":2,"2726":1,"2728":1,"2729":1}}],["revisit",{"2":{"539":1,"541":1}}],["revision",{"2":{"43":2,"50":1,"60":1,"86":1,"114":1,"236":3,"294":1,"442":1,"627":4,"632":1,"636":1,"638":1,"642":1,"645":1,"646":1,"650":1,"654":1,"1418":1,"1432":1,"1438":1,"1837":1,"2417":2,"2450":3,"2453":1}}],["revisions",{"2":{"43":1,"58":1,"114":1,"160":1,"249":1,"262":1,"277":1,"308":1,"411":1,"557":1,"561":1,"613":2,"753":1,"2450":4,"2684":1}}],["revised",{"2":{"236":1}}],["reviung61",{"2":{"143":2}}],["reviung5",{"2":{"143":2}}],["reviung53",{"2":{"143":2}}],["reviung41",{"2":{"143":2}}],["reviung39",{"2":{"143":2}}],["reviung34",{"2":{"143":2}}],["reviung33",{"2":{"143":2}}],["reviung",{"2":{"143":7,"149":2}}],["rev0",{"2":{"143":2}}],["rev",{"2":{"114":1,"134":3,"222":6,"226":2,"249":1,"253":1,"2057":1,"2634":4}}],["rev5",{"2":{"114":1,"222":1,"437":1,"2587":4,"2614":2}}],["rev4",{"2":{"114":1,"134":1,"210":1,"226":1,"285":1,"429":2,"473":3,"474":2,"484":1,"485":2,"684":3,"1365":3,"1438":2,"2390":2,"2397":2,"2417":5,"2583":3}}],["rev3",{"2":{"57":2,"86":4,"102":1,"134":1,"143":2,"175":1,"241":4,"253":1,"266":1,"311":4,"317":2,"434":2,"454":1,"455":1,"684":1,"1320":1,"2417":1,"2448":2,"2449":1,"2450":2,"2584":1,"2629":6}}],["rev1+rev2",{"2":{"72":1}}],["rev1",{"2":{"35":1,"55":4,"58":2,"67":3,"86":5,"102":5,"122":3,"143":34,"149":1,"159":2,"175":1,"210":1,"218":2,"222":5,"226":2,"236":2,"241":12,"249":1,"253":14,"266":2,"285":1,"291":3,"300":4,"311":1,"317":1,"684":1,"1388":1,"1390":2,"1405":2,"2273":3,"2450":2}}],["revs",{"2":{"35":3}}],["rev2",{"2":{"35":1,"55":29,"57":2,"67":3,"70":24,"72":1,"86":2,"102":6,"114":3,"143":12,"160":1,"191":3,"210":1,"222":2,"226":1,"236":3,"241":6,"277":1,"311":2,"317":1,"328":3,"379":1,"440":1,"684":1,"2448":1,"2450":2}}],["revx",{"2":{"22":1}}],["renaming",{"0":{"243":1,"245":1},"2":{"166":1,"194":1,"2729":1}}],["renamed",{"0":{"271":1},"2":{"27":1,"40":1,"142":1,"167":1,"170":1,"207":1,"271":1}}],["rename",{"0":{"142":1,"207":1},"2":{"15":1,"65":1,"94":1,"133":1,"134":3,"149":4,"160":2,"175":1,"191":4,"199":1,"210":3,"222":13,"236":4,"243":1,"249":6,"266":3,"277":4,"285":3,"308":1,"331":1,"1343":1}}],["renderers",{"2":{"2869":1}}],["rendered",{"2":{"676":1,"1474":1,"1908":1,"1910":1,"1912":1,"1915":1,"1953":1,"1954":1,"2168":1,"2170":1,"2172":1,"2175":1,"2290":1,"2756":2,"2757":1,"2799":1,"2800":1}}],["rendering",{"2":{"285":1,"1288":1,"1299":1,"1855":1,"1952":5,"1953":2,"1954":1,"2094":1,"2289":3,"2290":1,"2568":1,"2776":1}}],["renders",{"2":{"284":1,"679":1,"680":1,"1948":2,"1953":1,"1954":1,"2287":2,"2290":1}}],["render",{"2":{"21":1,"175":2,"210":1,"230":1,"1484":1,"1946":3,"1948":8,"1949":1,"1954":5,"1955":3,"2285":2,"2287":4,"2290":2,"2503":1,"2758":1}}],["refused",{"2":{"2567":1}}],["refuses",{"2":{"2567":2}}],["reflashing",{"2":{"2375":1,"2482":1}}],["reflash",{"2":{"1348":1,"1666":1}}],["reflected",{"2":{"1348":1,"2637":1}}],["reflection",{"2":{"538":1}}],["reflects",{"2":{"166":1,"2652":1}}],["reflect",{"2":{"90":1,"114":1,"166":1,"199":1,"262":1,"283":1,"285":1,"1381":1,"1678":1,"1835":1,"2464":1,"2717":1,"2728":1}}],["refills",{"2":{"720":4}}],["refill",{"2":{"719":1}}],["refine",{"2":{"74":1,"1962":1}}],["ref",{"2":{"698":3,"744":1,"1620":11,"1622":2}}],["refreshed",{"2":{"2214":1}}],["refreshes",{"2":{"647":1}}],["refreshing",{"2":{"1413":1}}],["refresh",{"2":{"393":1,"647":5,"702":1,"1935":1,"1939":1,"1953":1,"2517":2,"2522":2}}],["refers",{"2":{"1378":1,"2842":1}}],["referencing",{"2":{"1503":1,"1519":1}}],["referenced",{"0":{"591":1},"2":{"1850":1,"2088":1,"2559":1,"2637":1}}],["reference",{"0":{"1620":1,"1781":1,"1782":1,"2301":1,"2851":1},"1":{"2852":1,"2853":1,"2854":1,"2855":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2861":1,"2862":1,"2863":1,"2864":1,"2865":1,"2866":1,"2867":1,"2868":1,"2869":1,"2870":1,"2871":1,"2872":1,"2873":1,"2874":1,"2875":1,"2876":1,"2877":1,"2878":1,"2879":1,"2880":1,"2881":1,"2882":1,"2883":1},"2":{"95":1,"166":1,"175":2,"199":1,"210":1,"294":1,"339":1,"512":1,"599":2,"619":2,"698":1,"1300":1,"1381":1,"1417":1,"1425":1,"1433":1,"1533":1,"1620":8,"1622":4,"1769":1,"1781":1,"1923":1,"1928":1,"2453":1,"2479":1,"2521":1,"2568":1,"2730":1,"2796":1,"2858":1,"2908":1}}],["references",{"0":{"1927":1},"1":{"1928":1,"1929":1},"2":{"17":2,"28":1,"64":1,"95":1,"114":1,"133":1,"134":1,"175":4,"210":2,"222":2,"245":1,"266":1,"285":1,"1955":2,"2637":1}}],["refereed",{"2":{"1200":2}}],["referring",{"2":{"618":1,"757":1}}],["referred",{"2":{"212":1,"1194":1,"1197":1,"2557":1,"2558":1,"2562":1,"2639":1}}],["refer",{"2":{"233":1,"245":1,"505":1,"602":1,"670":1,"686":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1200":1,"1209":1,"1247":1,"1328":1,"1349":1,"1362":1,"1397":1,"1556":1,"1628":1,"1684":1,"1685":2,"1713":1,"1730":1,"1998":1,"2037":1,"2057":1,"2269":1,"2300":1,"2330":1,"2483":1,"2561":1,"2589":1,"2694":1,"2695":1,"2696":1,"2902":1,"2943":1}}],["refs",{"2":{"114":2,"149":1,"2634":1,"2639":2}}],["refactoring",{"0":{"125":1,"166":1,"167":1,"168":1,"169":1,"170":1,"172":1,"184":1,"614":1},"1":{"185":1},"2":{"171":1,"172":1,"175":3,"198":1,"199":1,"210":1,"235":1,"236":1,"244":1,"249":1,"266":1,"294":1,"403":1,"614":1,"2653":1,"2664":1,"2729":1}}],["refactored",{"2":{"39":1}}],["refactor",{"0":{"22":1,"23":1,"50":1,"51":1,"60":1,"87":1,"263":1},"1":{"24":1,"88":1},"2":{"22":1,"39":1,"41":1,"50":1,"72":1,"75":3,"86":1,"93":1,"94":2,"114":4,"134":2,"149":4,"160":5,"174":1,"175":6,"191":4,"199":5,"210":10,"222":4,"236":3,"249":19,"266":8,"277":8,"285":5,"294":2,"308":1,"317":15,"328":6,"333":3,"339":1,"2726":1}}],["refactors",{"0":{"19":1,"58":1},"1":{"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1},"2":{"49":1,"614":1,"2728":1}}],["reformatting",{"2":{"317":1}}],["reformat",{"2":{"1":1,"114":1}}],["remediated",{"2":{"2571":1}}],["remediation",{"0":{"2571":1}}],["remembered",{"0":{"2074":1},"2":{"2072":1,"2073":2,"2074":5,"2075":1,"2079":1}}],["remembers",{"2":{"2065":1}}],["remembering",{"2":{"563":1}}],["remember",{"2":{"494":2,"513":1,"568":1,"1417":1,"2057":1,"2072":1,"2073":2,"2074":1,"2075":1,"2079":1,"2297":1,"2298":1,"2300":1,"2331":1,"2466":2,"2627":1,"2944":1,"2950":1}}],["remnants",{"2":{"222":1}}],["remotes",{"2":{"2637":2}}],["remote",{"2":{"210":1,"236":1,"420":1,"421":1,"2046":3,"2277":1,"2387":5,"2554":3,"2573":3,"2608":2,"2637":9,"2639":9,"2651":2}}],["removal",{"0":{"89":1,"103":1,"126":1,"276":1,"284":1,"293":1,"304":1,"305":1,"314":1,"316":1,"331":1,"332":1,"337":1,"338":1,"2902":1},"1":{"104":1,"127":1,"2903":1,"2904":1},"2":{"114":1,"124":1,"126":1,"134":1,"240":1,"249":6,"279":2,"285":1,"753":1,"2000":2,"2902":2,"2903":2}}],["removes",{"2":{"17":1,"39":1,"40":1,"191":1,"453":1,"1380":1,"1417":1,"2417":1}}],["removed",{"0":{"140":1},"2":{"6":1,"8":1,"26":1,"40":6,"67":1,"86":2,"89":1,"128":1,"140":1,"156":1,"157":1,"194":2,"201":1,"206":1,"212":1,"217":1,"222":1,"228":1,"245":1,"249":1,"254":1,"255":1,"256":1,"262":1,"273":1,"276":1,"283":1,"284":1,"303":1,"304":1,"307":1,"314":1,"316":1,"327":1,"331":1,"332":1,"453":1,"1784":2,"1785":1,"1955":2,"2008":2,"2011":1,"2569":1,"2570":1,"2571":1,"2628":1,"2728":4,"2903":3}}],["remove",{"0":{"8":1,"128":1,"206":1,"208":1,"254":1,"327":1,"453":1,"2023":1,"2367":1},"1":{"2024":1,"2368":1},"2":{"4":1,"5":1,"21":3,"22":1,"24":3,"26":1,"28":1,"40":1,"64":1,"65":1,"70":1,"72":1,"75":9,"76":1,"86":1,"94":4,"114":17,"133":8,"134":15,"149":10,"160":5,"172":15,"175":42,"191":9,"199":33,"210":19,"222":23,"236":17,"249":22,"255":1,"257":1,"258":1,"259":2,"265":1,"266":22,"275":1,"277":16,"285":9,"294":10,"307":2,"308":14,"317":7,"328":3,"333":10,"339":6,"409":1,"416":1,"453":2,"455":2,"469":1,"588":1,"688":1,"1362":1,"1522":1,"1802":1,"2008":3,"2011":3,"2012":2,"2086":1,"2184":1,"2298":1,"2317":1,"2367":1,"2504":1,"2585":1,"2586":1,"2615":1,"2691":1,"2707":1,"2726":2,"2728":1,"2795":1,"2892":1,"2922":1,"2924":1}}],["removing",{"2":{"3":1,"40":1,"48":1,"134":1,"166":1,"259":1,"272":1,"273":1,"1422":1,"1535":1,"1766":1}}],["remainder",{"2":{"1954":2,"2290":2}}],["remainders",{"2":{"236":1}}],["remains",{"2":{"320":1,"1463":1,"1598":1,"1937":1,"2003":1,"2931":1}}],["remain",{"2":{"312":1,"539":1,"2218":1,"2650":1,"2754":2}}],["remaining",{"2":{"12":1,"87":1,"103":1,"114":2,"126":1,"175":1,"199":2,"222":2,"249":1,"308":1,"317":2,"1283":1,"1529":1,"1947":3,"1954":1,"2178":1,"2286":3,"2290":1,"2295":1,"2296":1,"2906":1}}],["remapped",{"2":{"1213":1,"1954":2,"2290":2}}],["remapping",{"2":{"328":1,"1213":1,"1593":1}}],["remap",{"2":{"166":1,"1198":2,"1201":2,"1213":5,"1492":1,"1953":2,"2877":1}}],["reliability",{"2":{"2331":1}}],["reliably",{"2":{"2319":1,"2331":1}}],["relies",{"2":{"2610":1}}],["relieves",{"2":{"2300":1}}],["relied",{"2":{"1956":1}}],["relying",{"2":{"1801":1,"1850":1,"2088":1}}],["rely",{"2":{"210":1,"526":1,"2590":1,"2616":1,"2764":1}}],["relay",{"2":{"1681":2}}],["relaxed",{"2":{"564":1,"1614":1,"1615":1,"2726":2}}],["relax",{"2":{"199":1}}],["relates",{"2":{"2846":1}}],["related",{"2":{"2":1,"49":1,"124":1,"131":1,"171":1,"172":1,"175":2,"178":1,"190":1,"199":1,"236":1,"265":2,"279":1,"344":3,"403":1,"456":1,"637":1,"668":1,"1340":1,"1376":1,"1427":1,"1428":1,"2310":1,"2460":1,"2503":1,"2591":1,"2640":1,"2671":1,"2717":1,"2728":3,"2757":2,"2762":1,"2889":1}}],["relation",{"2":{"2869":1}}],["relating",{"2":{"203":1,"612":1}}],["relatively",{"2":{"279":1,"368":1,"1528":1,"1634":1,"2505":1,"2638":1}}],["relatives",{"2":{"157":1}}],["relative",{"0":{"1977":1},"2":{"149":1,"191":1,"308":1,"1487":1,"1538":1,"1628":1,"1639":1,"1974":2,"2502":1,"2583":1,"2595":1,"2629":1,"2775":1}}],["reloading",{"2":{"461":1}}],["reload",{"0":{"1905":1,"2165":1},"2":{"149":1,"460":1,"1316":1,"1905":1,"2165":1,"2199":2}}],["relocalize",{"2":{"114":1}}],["relocations",{"2":{"238":1}}],["relocating",{"0":{"33":1},"2":{"236":1}}],["relocate",{"2":{"113":1,"114":2,"133":3,"134":3,"149":2,"172":1,"175":1,"199":1,"210":1,"222":1,"236":1,"277":5,"294":1,"317":2}}],["relocated",{"0":{"31":1,"54":1},"1":{"32":1,"33":1,"55":1,"56":1,"57":1,"58":1},"2":{"201":1}}],["releasing",{"2":{"564":1,"772":1,"1518":1,"1618":1,"1786":1,"1939":1,"2226":1,"2612":1,"2650":2,"2728":1,"2842":1,"2920":1,"2926":1,"2929":3}}],["releases",{"0":{"1617":1},"2":{"720":1,"1431":1,"1448":2,"1617":1,"2316":1,"2428":1,"2757":2,"2762":1,"2823":1}}],["released",{"2":{"33":1,"57":1,"320":1,"630":1,"1446":4,"1447":2,"1452":1,"1498":2,"1617":1,"1618":1,"1690":2,"1762":1,"1782":1,"1784":1,"1923":1,"1939":1,"1992":1,"1994":1,"2048":1,"2301":1,"2309":3,"2310":1,"2319":2,"2469":1,"2650":5,"2821":1,"2822":1,"2834":1,"2874":1,"2914":3,"2915":1,"2919":1,"2920":2,"2922":1,"2926":2,"2931":1,"2940":1}}],["release",{"2":{"13":1,"56":1,"111":1,"175":1,"201":1,"210":1,"238":1,"249":1,"251":1,"266":1,"268":1,"277":1,"279":1,"392":1,"402":1,"563":2,"564":1,"631":2,"772":1,"1204":1,"1353":1,"1362":2,"1377":1,"1381":3,"1395":1,"1417":2,"1447":1,"1448":2,"1455":1,"1517":2,"1518":3,"1529":1,"1594":1,"1616":1,"1617":6,"1680":1,"1754":1,"1785":1,"1786":1,"1791":1,"1934":1,"1999":1,"2024":1,"2028":1,"2259":1,"2300":1,"2309":4,"2331":1,"2345":2,"2346":2,"2567":2,"2597":1,"2601":1,"2621":1,"2628":1,"2920":2,"2921":1,"2922":1}}],["relevant",{"2":{"7":1,"21":1,"132":1,"639":1,"681":1,"1938":1,"2427":1,"2684":1,"2685":4,"2726":1,"2729":1,"2754":1,"2945":1}}],["repairing",{"2":{"2428":1}}],["reparenting",{"2":{"538":1}}],["repurposing",{"2":{"1841":1}}],["repetition",{"2":{"2076":1}}],["repetitively",{"2":{"1497":1}}],["repetitive",{"2":{"1440":1}}],["repeating",{"0":{"2068":1},"2":{"1786":1,"2065":1,"2070":1,"2072":2,"2073":1,"2074":1,"2076":1,"2077":5,"2078":3,"2772":1,"2792":1}}],["repeat",{"0":{"213":1,"1511":1,"1512":1,"1786":1,"2065":1,"2066":1,"2549":1},"1":{"2066":1,"2067":1,"2068":1,"2069":1,"2070":1,"2071":1,"2072":1,"2073":1,"2074":1,"2075":1,"2076":1,"2077":1,"2078":1,"2079":1},"2":{"195":3,"213":6,"222":3,"231":1,"308":1,"339":1,"393":1,"564":3,"656":2,"687":1,"1498":9,"1786":6,"1939":1,"2065":7,"2066":2,"2067":3,"2068":9,"2069":3,"2070":4,"2071":4,"2073":2,"2076":8,"2077":8,"2078":2,"2079":1,"2191":3,"2549":4,"2922":5}}],["repeatedly",{"2":{"1365":1,"1422":1,"2198":1,"2304":1}}],["repeated",{"0":{"2076":1,"2077":1},"2":{"64":1,"93":1,"175":1,"312":1,"656":2,"688":1,"1409":1,"1786":1,"1961":1,"2072":2,"2073":1,"2075":1,"2076":4,"2077":1,"2078":4,"2079":1,"2570":1,"2792":2,"2922":1}}],["repeats",{"2":{"63":1,"213":1}}],["replays",{"2":{"1661":1}}],["replay",{"0":{"1661":1},"1":{"1662":1,"1663":1,"1664":1},"2":{"1661":5,"2530":2,"2634":1}}],["replacing",{"0":{"17":1},"2":{"567":1,"574":2,"630":1,"1628":1,"2330":1,"2608":1}}],["replacements",{"2":{"187":1,"2895":1}}],["replacement",{"0":{"625":1,"1770":1,"1771":1,"1772":1,"1773":1},"2":{"173":1,"187":1,"215":1,"240":1,"279":1,"1388":1,"1534":1,"1538":1,"1770":1,"1776":1,"1779":1,"1781":5,"1784":2,"1785":1,"2212":1,"2564":1,"2685":1,"2686":1,"2687":1,"2688":1,"2706":1}}],["replaced",{"2":{"7":1,"8":1,"17":1,"168":1,"184":1,"195":3,"254":1,"544":1,"687":1,"1381":1,"1398":1,"1470":1,"1988":1,"2434":1,"2728":1,"2903":1}}],["replace",{"2":{"5":1,"7":1,"21":4,"24":1,"40":1,"175":1,"187":1,"191":1,"199":2,"222":1,"240":4,"266":1,"393":1,"569":1,"622":1,"1332":1,"1378":1,"1422":2,"1446":1,"1467":1,"1472":2,"1534":2,"1538":1,"1591":2,"1628":1,"1672":1,"1766":1,"1989":1,"2256":4,"2418":2,"2607":1,"2608":1,"2912":2}}],["replicated",{"2":{"2568":1}}],["replicate",{"2":{"2181":1}}],["replicates",{"2":{"1656":1,"1667":1}}],["replied",{"2":{"414":1}}],["replugging",{"2":{"1490":1}}],["replug",{"2":{"686":1,"1348":1}}],["reply",{"2":{"386":1}}],["reproducing",{"2":{"1477":1,"2568":1}}],["reproduce",{"2":{"263":1}}],["reprimanded",{"2":{"615":1}}],["repress",{"0":{"1618":1},"2":{"285":1,"1618":4}}],["representing",{"0":{"1601":1,"1794":1},"2":{"1513":1,"1514":1,"1515":1,"1527":1,"1990":4,"2473":1,"2562":1,"2846":1}}],["represented",{"2":{"766":1,"1741":1,"2757":1,"2869":1}}],["represents",{"2":{"262":1,"597":1,"1523":1,"1539":1,"1846":5,"1990":1,"2074":1,"2082":5,"2295":1,"2300":1,"2417":1,"2466":2,"2634":1,"2795":1,"2820":1,"2840":1,"2950":1}}],["representation",{"2":{"199":1,"578":1,"1378":1,"1381":1,"2453":1,"2796":1,"2851":1,"2937":1}}],["represent",{"2":{"160":1,"495":1,"1525":1,"1601":1,"1794":1,"1990":1,"2466":2,"2503":1,"2634":1,"2736":1,"2795":1}}],["rep",{"2":{"213":1,"222":1,"2066":1,"2067":1,"2549":1}}],["reposition",{"2":{"1802":1}}],["repositories",{"2":{"16":1,"1433":2,"2726":1}}],["repository",{"0":{"2592":1,"2603":1},"2":{"11":1,"126":1,"166":2,"178":1,"224":1,"228":3,"233":1,"241":1,"253":1,"265":4,"268":3,"270":1,"275":1,"281":1,"288":2,"308":1,"399":1,"409":1,"411":2,"414":1,"458":1,"576":1,"588":3,"592":1,"594":1,"607":5,"1316":1,"1343":1,"1463":1,"1628":3,"2384":1,"2458":1,"2501":1,"2590":3,"2592":2,"2594":4,"2595":1,"2597":2,"2598":2,"2599":1,"2603":1,"2607":1,"2609":1,"2610":1,"2626":1,"2632":1,"2635":1,"2637":5,"2639":3,"2662":1,"2674":3,"2717":1,"2726":1,"2727":1,"2728":4,"2731":1,"2902":2,"2903":2}}],["reported",{"2":{"1376":1,"1410":1,"1522":1,"1740":1,"2301":1,"2508":1,"2717":1,"2950":1}}],["reporting",{"2":{"312":1,"564":1,"1410":1,"2046":2,"2833":1}}],["reports",{"0":{"1990":1},"1":{"1991":1,"1992":1,"1993":1,"1994":1,"1995":1,"1996":1,"1997":1},"2":{"149":1,"190":2,"191":2,"210":1,"285":1,"564":2,"621":1,"646":1,"687":1,"1974":2,"1980":1,"1985":3,"1986":3,"1988":1,"1989":2,"1990":2,"1994":1,"1997":1,"2052":1,"2057":4,"2291":1,"2829":1,"2882":3}}],["report",{"0":{"2033":1,"2035":2},"1":{"2034":1,"2036":2},"2":{"40":4,"74":1,"114":2,"160":3,"174":1,"175":6,"199":3,"222":1,"236":3,"285":2,"308":1,"317":1,"333":1,"339":1,"367":1,"435":1,"564":1,"1356":2,"1362":2,"1378":2,"1520":1,"1521":2,"1642":1,"1646":1,"1647":1,"1648":1,"1649":1,"1650":1,"1651":1,"1652":1,"1653":1,"1750":1,"1751":1,"1753":1,"1766":1,"1784":3,"1785":3,"1840":1,"1960":2,"1961":1,"1962":1,"1983":15,"1984":5,"1985":5,"1986":1,"1987":2,"1988":18,"1989":18,"1990":16,"1992":5,"1993":11,"1994":12,"1995":1,"1996":10,"1997":13,"2014":4,"2015":4,"2020":1,"2025":1,"2027":1,"2032":1,"2033":1,"2035":1,"2036":1,"2053":2,"2057":2,"2058":1,"2059":13,"2061":1,"2063":1,"2272":1,"2481":1,"2525":2,"2840":1}}],["repo",{"0":{"6":1},"2":{"6":1,"12":1,"77":1,"283":1,"288":1,"339":1,"422":1,"429":1,"448":1,"449":1,"598":1,"609":1,"1433":1,"1485":1,"1628":2,"2261":1,"2273":1,"2458":1,"2634":2,"2639":6,"2640":1,"2728":1}}],["q=is",{"2":{"2728":1}}],["ql",{"2":{"2319":14}}],["qn",{"2":{"420":3,"421":3,"422":2,"423":2}}],["qr",{"2":{"328":1}}],["qc60",{"2":{"253":2}}],["q9",{"2":{"249":1}}],["q8",{"2":{"249":1}}],["q7",{"2":{"249":1}}],["q4z",{"2":{"241":2}}],["q4",{"2":{"226":2,"236":1}}],["q0",{"2":{"222":2,"226":4,"236":1}}],["qol",{"2":{"222":1}}],["q2m3ueu",{"2":{"684":1}}],["q2",{"2":{"191":1,"236":1}}],["q5",{"2":{"175":1,"249":1}}],["q6",{"2":{"175":1}}],["q3",{"2":{"175":1,"236":1}}],["qff",{"0":{"2792":1},"2":{"175":1,"266":1,"467":1,"468":1,"2755":6,"2757":6,"2765":2,"2767":8,"2768":12,"2769":2,"2770":1,"2771":1,"2792":1}}],["qgfimagefile",{"2":{"249":1}}],["qgf",{"0":{"2792":1},"2":{"175":1,"266":1,"466":1,"2755":4,"2757":6,"2766":1,"2767":4,"2768":2,"2769":1,"2770":1,"2771":1,"2772":2,"2773":5,"2774":10,"2775":3,"2776":7,"2777":3,"2778":6,"2779":3,"2792":1}}],["qp",{"2":{"160":1,"175":2,"191":1,"199":1,"210":1,"222":1,"236":4,"249":2,"285":1,"328":1,"2756":33,"2757":104,"2761":6,"2762":2,"2764":1}}],["qpocket",{"2":{"149":2}}],["qpockets",{"2":{"143":4}}],["q",{"2":{"149":1,"175":1,"266":1,"277":2,"379":1,"439":1,"462":1,"589":2,"1605":1,"1622":1,"2317":1,"2510":3,"2522":3,"2557":1,"2563":1,"2674":1,"2887":3}}],["qaz",{"2":{"143":2}}],["qk100",{"2":{"266":1}}],["qk21",{"2":{"236":1}}],["qk",{"0":{"156":1,"182":1,"327":1},"2":{"120":8,"156":2,"172":4,"173":1,"175":8,"182":2,"191":3,"194":2,"199":5,"213":6,"231":26,"266":1,"277":1,"285":1,"307":1,"324":1,"325":2,"339":1,"379":1,"383":3,"563":1,"589":2,"593":1,"651":2,"686":1,"1348":1,"1365":1,"1431":1,"1441":4,"1485":4,"1486":1,"1489":2,"1490":4,"1493":6,"1495":15,"1521":6,"1530":3,"1533":22,"1543":7,"1594":1,"1606":3,"1612":8,"1661":5,"1672":1,"1673":2,"1674":2,"1680":13,"1744":32,"1762":1,"1763":1,"1764":1,"1780":3,"1790":2,"1795":1,"1797":1,"1804":1,"1805":2,"1848":11,"1925":144,"1933":19,"2018":32,"2066":4,"2067":4,"2084":15,"2181":11,"2191":2,"2216":4,"2253":9,"2257":7,"2297":3,"2300":2,"2304":7,"2316":2,"2319":2,"2321":2,"2332":8,"2377":15,"2381":16,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2520":35,"2523":7,"2524":15,"2525":6,"2526":3,"2527":7,"2528":15,"2529":1,"2530":5,"2531":2,"2532":32,"2533":1,"2534":2,"2536":1,"2537":11,"2538":35,"2539":144,"2540":19,"2543":3,"2544":11,"2545":15,"2547":3,"2548":32,"2549":4,"2550":7,"2551":7,"2552":8,"2651":3,"2685":1,"2727":1,"2752":8,"2787":2,"2788":2,"2911":10,"2912":3}}],["q11",{"2":{"249":1}}],["q1v1",{"2":{"226":4,"236":1,"266":1}}],["q1",{"2":{"114":1,"175":1,"226":4}}],["qw",{"2":{"1605":4,"1622":1}}],["qwertz",{"0":{"2838":1}}],["qwertlekeys",{"2":{"222":1}}],["qwertykeys",{"2":{"2567":1}}],["qwertyydox",{"2":{"253":2}}],["qwerty",{"0":{"2293":1,"2837":1},"2":{"92":1,"191":2,"257":1,"258":1,"259":2,"631":1,"1417":1,"1422":2,"1425":1,"1426":1,"1442":1,"1449":1,"1485":1,"1619":1,"1620":3,"1622":2,"1945":2,"2070":1,"2284":2,"2292":1,"2293":1,"2302":1,"2472":1,"2473":1,"2474":4,"2558":1,"2562":1,"2786":2,"2887":4,"2913":1,"2923":1}}],["qwiic",{"0":{"128":1},"2":{"74":2,"128":2,"134":6}}],["quokka",{"2":{"249":1}}],["quote",{"2":{"1692":1,"2512":1,"2522":1,"2546":1,"2555":1}}],["quoted",{"2":{"160":1,"671":1}}],["quot",{"0":{"1362":4,"1545":2,"1600":2,"2079":2,"2314":2,"2504":2,"2632":2},"2":{"5":2,"47":2,"75":2,"92":2,"110":8,"114":4,"119":10,"134":4,"152":2,"160":6,"166":4,"171":2,"173":2,"174":2,"175":8,"189":2,"190":2,"191":5,"194":2,"199":6,"203":2,"206":2,"210":6,"212":16,"213":2,"221":2,"222":14,"230":2,"234":2,"236":8,"245":4,"249":10,"263":6,"266":6,"277":2,"289":2,"294":2,"297":2,"307":2,"308":8,"339":4,"344":6,"379":1,"383":4,"403":2,"412":4,"414":2,"433":2,"488":2,"489":2,"516":2,"521":6,"525":2,"561":6,"564":2,"582":2,"583":2,"589":2,"607":6,"610":2,"633":2,"648":2,"656":2,"657":2,"670":4,"671":2,"677":2,"698":2,"699":2,"714":2,"719":2,"746":2,"753":2,"754":2,"755":2,"756":2,"797":2,"923":4,"1094":4,"1128":4,"1198":4,"1200":2,"1201":4,"1214":2,"1283":2,"1285":4,"1286":8,"1290":2,"1295":4,"1327":8,"1330":4,"1332":2,"1348":2,"1350":4,"1351":2,"1362":2,"1365":2,"1409":2,"1413":4,"1416":2,"1417":4,"1425":4,"1427":2,"1433":2,"1438":2,"1444":66,"1446":2,"1448":14,"1455":2,"1471":4,"1472":4,"1478":2,"1484":2,"1486":6,"1489":2,"1503":2,"1504":1,"1506":1,"1515":1,"1534":2,"1535":2,"1544":4,"1545":2,"1550":2,"1589":2,"1593":4,"1595":2,"1597":8,"1600":6,"1602":2,"1605":2,"1616":2,"1630":4,"1642":2,"1647":2,"1648":2,"1667":4,"1675":2,"1681":6,"1686":2,"1718":2,"1741":2,"1789":2,"1803":2,"1804":6,"1836":2,"1949":2,"1962":2,"1977":4,"1990":2,"2048":2,"2059":6,"2065":4,"2068":6,"2069":2,"2070":4,"2071":14,"2072":2,"2074":4,"2077":2,"2079":2,"2086":2,"2094":2,"2178":2,"2181":2,"2185":12,"2225":2,"2261":2,"2273":2,"2278":2,"2288":2,"2302":2,"2317":2,"2319":5,"2320":14,"2321":12,"2322":8,"2323":18,"2325":4,"2330":6,"2331":2,"2387":10,"2390":2,"2397":2,"2414":2,"2423":2,"2427":2,"2433":6,"2436":8,"2481":2,"2486":2,"2494":2,"2502":2,"2504":2,"2512":2,"2522":2,"2544":2,"2546":1,"2553":2,"2554":6,"2555":1,"2562":8,"2563":5,"2566":2,"2567":2,"2568":4,"2573":6,"2575":3,"2586":2,"2609":6,"2614":4,"2622":4,"2627":2,"2628":2,"2636":2,"2639":4,"2640":2,"2650":4,"2651":4,"2674":14,"2704":2,"2706":2,"2711":2,"2720":4,"2721":2,"2726":6,"2727":2,"2728":15,"2729":2,"2736":2,"2738":2,"2741":2,"2755":2,"2756":2,"2757":4,"2761":2,"2765":2,"2772":4,"2785":2,"2792":2,"2795":6,"2796":142,"2797":2,"2852":16,"2853":4,"2857":2,"2864":2,"2868":4,"2869":24,"2871":10,"2872":18,"2875":2,"2876":4,"2877":6,"2878":12,"2879":2,"2880":6,"2881":2,"2882":10,"2883":4,"2913":2,"2914":8,"2915":4,"2920":18,"2921":8,"2923":2,"2926":4,"2927":16,"2931":2,"2932":2,"2936":2,"2942":4,"2943":2,"2944":2,"2945":1,"2949":4,"2950":2}}],["quirky",{"2":{"2756":1}}],["quit",{"2":{"1431":1}}],["quite",{"2":{"119":1,"429":1,"1343":1,"1523":1,"1766":1,"1957":1,"2255":1,"2317":1,"2388":1,"2887":1,"2942":1,"2944":2,"2950":1}}],["quickly",{"2":{"1690":2,"1936":1,"1939":1,"2185":1,"2317":2,"2389":1,"2392":1,"2394":1,"2395":1,"2397":1,"2427":2,"2428":2,"2499":1,"2568":1,"2663":1,"2910":1,"2913":1}}],["quicker",{"2":{"1503":1,"2428":1,"2726":2}}],["quickest",{"2":{"124":1}}],["quickstart",{"0":{"1312":1}}],["quick",{"0":{"195":1,"2382":1,"2922":1},"1":{"2383":1,"2384":1,"2385":1,"2386":1},"2":{"112":1,"114":1,"195":8,"199":3,"297":1,"308":1,"564":4,"607":1,"1422":4,"1503":1,"2187":1,"2319":1,"2434":1,"2696":1,"2897":1,"2922":13}}],["quad",{"0":{"2317":1},"2":{"2317":1}}],["quadratic",{"2":{"1934":1,"1936":1,"1939":1}}],["quality",{"2":{"719":7,"1343":1,"2569":1,"2902":1}}],["quark",{"2":{"143":2}}],["quarter",{"2":{"133":1,"173":1,"279":1}}],["quackfire",{"2":{"57":2}}],["quantum",{"0":{"153":1,"232":1,"248":1,"254":1,"613":1,"2476":1,"2523":1,"2751":1,"2753":1,"2754":1,"2755":1,"2756":1,"2757":1,"2758":1,"2760":1,"2761":1,"2762":1},"1":{"2477":1,"2478":1,"2479":1,"2480":1,"2481":1,"2752":1,"2754":1,"2755":1,"2756":1,"2757":1,"2759":1,"2760":1,"2761":2,"2762":2,"2763":1,"2764":1},"2":{"1":1,"74":1,"75":2,"94":1,"113":2,"114":7,"133":1,"134":1,"149":3,"153":5,"158":1,"160":3,"175":2,"191":2,"199":7,"210":9,"214":2,"222":3,"231":1,"232":5,"234":2,"236":1,"248":3,"249":1,"266":4,"285":2,"294":2,"317":2,"462":1,"466":1,"467":1,"468":1,"574":1,"627":1,"1335":1,"1345":1,"1414":1,"1417":1,"1470":2,"1472":1,"1485":7,"1486":2,"1489":1,"1493":1,"1532":2,"1533":1,"1638":1,"1850":1,"1929":7,"1983":1,"1984":1,"2088":1,"2183":1,"2310":2,"2412":1,"2418":3,"2477":1,"2523":1,"2562":1,"2586":1,"2662":1,"2728":2,"2751":3,"2753":20,"2754":12,"2755":4,"2756":27,"2757":4,"2758":2,"2759":4,"2761":1,"2765":1,"2772":1,"2786":1,"2787":1,"2820":1,"2825":1,"2887":1,"2933":1,"2935":1,"2936":1,"2941":4,"2945":1}}],["queried",{"2":{"1525":1}}],["queries",{"2":{"312":1}}],["query",{"0":{"2204":1},"2":{"132":1,"134":1,"352":1,"1793":1}}],["queued",{"0":{"582":1},"2":{"263":1,"381":1,"581":1}}],["queue",{"2":{"175":1,"366":1,"381":1,"585":1,"2757":1}}],["ques",{"2":{"134":1,"175":1,"2546":1,"2555":1}}],["questioned",{"2":{"2728":1}}],["questions",{"0":{"1314":1,"1334":1},"1":{"1315":1,"1316":1,"1317":1,"1318":1,"1319":1,"1320":1,"1335":1,"1336":1,"1337":1,"1338":1,"1339":1,"1340":1,"1341":1,"1342":1,"1343":1},"2":{"417":1,"604":4,"607":1,"612":1,"1314":1,"1321":1,"1342":1,"1344":1}}],["question",{"0":{"604":1},"2":{"38":1,"175":1,"588":1,"604":2,"612":1,"1558":1,"2546":1,"2555":1,"2566":1,"2850":2}}],["quefrency",{"2":{"35":1,"114":1,"317":1,"2278":1}}],["qmkuser",{"2":{"2637":2}}],["qmkurl",{"2":{"1446":4,"2728":1}}],["qmk+vial",{"2":{"2567":1}}],["qmk+current",{"2":{"39":1}}],["qmklayer",{"2":{"1533":2}}],["qmkbest",{"2":{"1446":9,"1533":2,"2728":1}}],["qmks",{"2":{"339":1}}],["qmk",{"0":{"0":1,"9":1,"16":1,"29":1,"41":1,"42":1,"52":1,"65":1,"66":1,"70":1,"76":1,"78":1,"82":1,"83":1,"95":1,"96":1,"115":1,"135":1,"150":1,"161":1,"176":1,"179":1,"192":1,"200":1,"211":1,"223":1,"237":1,"250":1,"267":1,"278":1,"286":1,"295":1,"302":1,"309":1,"318":1,"329":1,"334":1,"365":1,"373":1,"377":1,"424":1,"427":1,"429":1,"430":1,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":1,"438":1,"439":1,"440":1,"441":1,"442":1,"443":1,"444":1,"445":1,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"458":1,"459":1,"460":1,"461":1,"462":1,"463":1,"464":1,"465":1,"466":1,"467":1,"468":1,"469":1,"470":1,"471":1,"475":1,"486":1,"507":1,"555":1,"556":1,"576":1,"581":1,"586":1,"587":1,"595":1,"1324":1,"1325":1,"1335":1,"1342":1,"1343":1,"1629":1,"1630":1,"1929":1,"2291":1,"2292":1,"2298":1,"2387":1,"2390":1,"2397":1,"2412":1,"2439":1,"2447":1,"2448":1,"2477":1,"2569":1,"2579":1,"2589":1,"2590":1,"2591":1,"2598":1,"2613":1,"2614":1,"2618":1,"2628":1,"2631":1,"2643":1,"2653":1,"2661":1,"2664":1,"2672":1,"2714":1,"2752":1,"2765":1,"2772":1,"2792":1,"2793":1,"2801":1,"2876":1,"2905":1,"2934":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"177":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"212":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1,"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1,"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1,"374":1,"375":1,"376":1,"378":1,"379":1,"380":1,"381":1,"382":1,"383":1,"425":1,"426":1,"476":1,"477":1,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1,"508":1,"509":1,"510":1,"511":1,"556":1,"557":1,"558":1,"559":1,"582":1,"583":1,"584":1,"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"602":1,"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1,"2292":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2299":1,"2300":1,"2301":1,"2413":1,"2414":1,"2415":1,"2448":1,"2449":1,"2450":1,"2451":1,"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":1,"2458":1,"2459":1,"2460":1,"2461":1,"2462":1,"2463":1,"2464":1,"2465":1,"2580":1,"2581":1,"2591":1,"2592":1,"2593":1,"2594":1,"2595":1,"2596":1,"2597":1,"2599":1,"2600":1,"2601":1,"2602":1,"2603":1,"2604":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2610":1,"2614":1,"2615":1,"2619":1,"2620":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1,"2628":1,"2629":1,"2632":1,"2662":1,"2663":1,"2673":1,"2715":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2722":1,"2723":1,"2724":1,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2773":1,"2774":1,"2775":1,"2776":1,"2777":1,"2778":1,"2779":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1,"2802":1,"2803":1,"2804":1,"2805":1,"2806":1,"2807":1,"2808":1,"2809":1,"2810":1,"2811":1,"2812":1,"2813":1,"2814":1,"2815":1,"2816":1,"2817":1,"2818":1,"2819":1,"2820":1,"2821":1,"2822":1,"2823":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":1,"2832":1,"2833":1,"2834":1,"2835":1,"2836":1,"2837":1,"2838":1,"2839":1,"2840":1,"2841":1,"2842":1,"2843":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2849":1,"2935":1,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1,"2941":1},"2":{"0":3,"1":1,"2":2,"6":1,"9":3,"11":4,"13":2,"14":3,"16":1,"28":2,"29":3,"39":2,"40":2,"41":1,"42":3,"43":2,"44":1,"45":1,"52":3,"65":1,"67":1,"69":2,"70":9,"75":2,"76":1,"82":2,"83":2,"86":2,"87":1,"93":1,"94":2,"95":4,"99":1,"100":1,"102":1,"103":1,"109":1,"110":1,"111":2,"112":3,"113":1,"114":5,"116":4,"118":1,"119":2,"120":3,"122":1,"124":1,"126":1,"128":2,"130":2,"131":2,"132":2,"133":2,"134":5,"143":1,"145":1,"146":1,"152":2,"153":2,"154":1,"156":2,"158":7,"159":1,"160":2,"163":1,"165":1,"166":2,"168":1,"173":3,"178":5,"179":4,"181":1,"182":1,"183":1,"184":1,"187":3,"188":9,"189":2,"191":3,"195":1,"196":1,"197":1,"199":6,"201":3,"212":3,"213":1,"220":1,"222":10,"224":3,"228":4,"230":1,"236":6,"238":1,"240":6,"243":3,"244":1,"249":6,"251":2,"254":1,"262":1,"263":3,"265":5,"266":3,"268":4,"273":3,"275":3,"276":3,"279":3,"284":2,"285":2,"288":3,"294":2,"302":1,"308":3,"312":2,"317":3,"328":3,"331":3,"333":5,"340":1,"341":1,"344":3,"353":1,"354":3,"364":1,"365":1,"366":1,"367":2,"373":3,"375":1,"377":2,"379":1,"380":1,"381":1,"383":5,"393":5,"397":1,"399":5,"403":4,"405":2,"406":2,"407":2,"408":1,"409":3,"411":8,"412":2,"413":1,"414":9,"418":1,"420":4,"421":1,"422":3,"423":4,"425":3,"426":4,"429":22,"430":6,"431":3,"432":3,"433":4,"434":7,"435":4,"436":1,"437":5,"438":2,"439":3,"440":2,"441":2,"442":1,"443":1,"444":1,"445":1,"446":2,"447":4,"448":3,"449":3,"450":4,"452":4,"453":4,"454":2,"455":2,"456":7,"458":1,"459":4,"460":1,"461":3,"462":1,"463":4,"464":2,"465":9,"466":1,"469":5,"470":2,"471":1,"472":1,"473":5,"474":3,"475":1,"476":3,"478":1,"479":1,"480":1,"481":1,"482":3,"483":3,"486":1,"487":2,"488":4,"489":8,"490":1,"492":1,"495":2,"496":1,"499":1,"500":1,"502":1,"503":1,"505":1,"506":1,"507":2,"509":3,"510":4,"511":1,"513":1,"517":5,"542":3,"543":1,"544":2,"545":3,"548":1,"552":1,"555":4,"556":1,"558":1,"570":7,"572":1,"573":2,"575":1,"576":3,"578":4,"579":3,"580":4,"581":5,"582":1,"585":3,"586":3,"587":1,"588":6,"589":4,"591":1,"592":1,"593":1,"594":3,"595":1,"596":1,"598":1,"600":3,"603":1,"604":3,"605":2,"607":3,"609":2,"610":3,"611":2,"612":1,"613":5,"614":2,"617":2,"621":1,"622":1,"626":3,"627":1,"629":1,"630":3,"631":1,"639":2,"644":1,"646":2,"647":1,"655":1,"664":2,"665":6,"666":3,"668":1,"672":2,"673":3,"674":2,"681":1,"682":1,"684":3,"685":2,"686":1,"689":4,"690":1,"696":1,"716":1,"749":1,"750":1,"753":1,"754":1,"755":2,"756":1,"759":1,"760":1,"764":1,"1209":1,"1213":1,"1245":1,"1266":1,"1288":1,"1311":2,"1312":1,"1313":1,"1314":1,"1316":1,"1318":4,"1319":1,"1324":1,"1325":1,"1328":1,"1333":1,"1335":2,"1336":1,"1342":2,"1343":7,"1348":1,"1349":1,"1351":1,"1356":2,"1364":2,"1369":1,"1380":2,"1381":1,"1391":1,"1399":1,"1403":1,"1404":1,"1407":1,"1409":1,"1411":1,"1417":1,"1421":1,"1423":1,"1425":1,"1427":1,"1431":1,"1433":1,"1438":1,"1440":1,"1441":1,"1444":1,"1446":6,"1463":2,"1464":1,"1469":1,"1470":1,"1472":2,"1528":1,"1532":1,"1541":1,"1593":1,"1609":1,"1624":2,"1625":1,"1626":2,"1627":7,"1628":1,"1630":2,"1632":1,"1633":2,"1634":1,"1638":1,"1661":1,"1667":1,"1670":1,"1702":2,"1765":1,"1798":1,"1835":1,"1850":1,"1919":1,"1924":1,"1929":1,"1946":3,"1962":1,"1964":1,"1998":1,"2016":1,"2054":1,"2088":1,"2178":2,"2180":1,"2194":1,"2219":1,"2249":1,"2261":3,"2269":1,"2272":2,"2273":6,"2277":1,"2281":1,"2285":3,"2292":2,"2293":1,"2294":3,"2297":1,"2301":1,"2317":1,"2331":1,"2374":1,"2375":1,"2382":1,"2384":5,"2386":1,"2387":8,"2388":4,"2389":4,"2390":7,"2392":2,"2394":2,"2395":2,"2396":2,"2397":12,"2398":1,"2399":2,"2401":2,"2402":2,"2403":4,"2404":1,"2406":2,"2408":2,"2410":3,"2411":1,"2412":2,"2414":3,"2415":1,"2418":1,"2421":2,"2424":1,"2426":1,"2432":7,"2433":2,"2434":1,"2435":1,"2439":1,"2447":1,"2448":3,"2450":4,"2451":1,"2453":2,"2459":1,"2462":1,"2465":1,"2466":1,"2477":5,"2478":1,"2479":1,"2480":1,"2481":1,"2482":1,"2496":2,"2497":1,"2501":1,"2502":1,"2503":1,"2504":5,"2508":1,"2521":1,"2523":2,"2556":1,"2557":1,"2561":1,"2562":2,"2566":6,"2567":38,"2568":15,"2569":7,"2570":6,"2571":1,"2572":1,"2573":1,"2579":4,"2581":1,"2583":5,"2584":3,"2586":2,"2587":1,"2589":6,"2590":7,"2591":3,"2592":3,"2593":4,"2594":8,"2595":4,"2596":1,"2598":2,"2599":1,"2601":2,"2603":2,"2605":8,"2606":2,"2607":9,"2608":6,"2609":3,"2610":2,"2612":2,"2613":2,"2614":4,"2615":2,"2616":2,"2617":2,"2619":1,"2620":4,"2621":1,"2623":2,"2625":2,"2626":5,"2627":4,"2628":8,"2629":4,"2632":4,"2634":3,"2635":4,"2637":19,"2638":1,"2639":14,"2642":1,"2643":2,"2653":1,"2655":1,"2659":1,"2662":2,"2664":1,"2665":1,"2667":1,"2669":3,"2671":2,"2672":1,"2673":2,"2674":10,"2684":4,"2685":1,"2691":1,"2694":1,"2696":1,"2700":1,"2701":1,"2707":5,"2709":3,"2710":2,"2712":2,"2713":2,"2714":11,"2725":2,"2726":4,"2727":2,"2728":18,"2729":3,"2730":2,"2731":1,"2733":2,"2748":1,"2749":1,"2750":1,"2751":1,"2752":2,"2753":1,"2755":20,"2756":1,"2757":3,"2764":2,"2765":1,"2772":1,"2776":1,"2777":1,"2780":1,"2793":1,"2794":5,"2795":3,"2799":2,"2809":1,"2817":2,"2819":1,"2836":1,"2846":1,"2847":1,"2851":5,"2852":2,"2854":1,"2864":1,"2869":3,"2876":1,"2884":1,"2885":1,"2888":1,"2896":1,"2898":1,"2902":8,"2903":3,"2905":2,"2906":1,"2907":1,"2908":2,"2913":1,"2934":1,"2935":3,"2936":1,"2938":3,"2940":1,"2941":1,"2944":1,"2949":1}}],["fwlink",{"2":{"2674":1}}],["fknraiden",{"2":{"2425":1}}],["fkeys",{"2":{"1625":1}}],["fps",{"2":{"1939":5}}],["fpc",{"2":{"1398":1}}],["f♯",{"2":{"1925":6,"2539":6}}],["fb",{"2":{"1684":3,"1685":3}}],["fdbk",{"2":{"1680":1}}],["f+g",{"2":{"1618":1}}],["f9²",{"2":{"695":1}}],["f9¹",{"2":{"695":1}}],["f9",{"2":{"379":1,"589":2,"2511":2,"2522":2,"2564":1}}],["f8²",{"2":{"695":1}}],["f8¹",{"2":{"695":1}}],["f8",{"2":{"379":1,"589":2,"2511":2,"2522":2,"2564":1}}],["f24",{"2":{"2511":2,"2522":2}}],["f23",{"2":{"1447":2,"2511":2,"2522":2}}],["f21",{"2":{"1447":2,"2511":2,"2522":2}}],["f22",{"2":{"1447":11,"2511":2,"2522":2}}],["f20",{"2":{"1361":1,"2511":2,"2522":2}}],["f2",{"2":{"379":1,"589":2,"693":1,"695":2,"1925":1,"2511":2,"2522":2,"2539":1,"2557":1,"2564":1}}],["fm",{"2":{"341":1,"380":1,"381":1,"383":4,"426":2,"429":1,"488":1,"579":1,"580":1,"581":1,"610":1,"684":2,"1312":1,"1313":1,"1318":1,"1446":1,"2477":1,"2623":1,"2625":1,"2626":1,"2714":3}}],["fme",{"2":{"222":1}}],["fghij",{"2":{"317":1}}],["fg",{"2":{"266":1,"492":5,"494":1,"2757":9}}],["fs5",{"2":{"1925":1,"2539":1}}],["fs4",{"2":{"1925":1,"2539":1}}],["fs3",{"2":{"1925":1,"2539":1}}],["fs2",{"2":{"1925":1,"2539":1}}],["fs1",{"2":{"1925":1,"2539":1}}],["fssl",{"2":{"426":2,"488":1,"1318":1,"2623":1,"2625":1,"2626":1}}],["fs",{"2":{"249":1,"1925":1,"2539":1}}],["fc980c",{"2":{"236":1}}],["fc660c",{"2":{"236":1}}],["fxtwink",{"2":{"317":1}}],["fx",{"2":{"222":1}}],["fjlabs",{"2":{"210":1,"222":6}}],["ffff",{"2":{"2240":1}}],["ffffffff",{"2":{"2238":1}}],["ff",{"2":{"197":6,"409":3,"411":3,"421":1,"422":1,"2242":1,"2502":1}}],["ffkeebs",{"2":{"134":1}}],["f3²",{"2":{"695":1}}],["f3",{"2":{"175":1,"379":1,"589":2,"693":1,"695":3,"1925":1,"2508":1,"2511":2,"2522":2,"2539":1,"2557":1,"2564":1}}],["f303",{"2":{"39":1,"40":1,"199":1,"2406":1}}],["f5²",{"2":{"695":1}}],["f5f9b992",{"2":{"381":1}}],["f5",{"2":{"111":1,"379":1,"561":2,"570":1,"589":2,"693":2,"1546":1,"1925":1,"2278":1,"2511":2,"2522":2,"2539":1,"2564":1,"2691":1,"2720":1}}],["f4²",{"2":{"695":1}}],["f4xx",{"2":{"191":1}}],["f4x1",{"2":{"160":1,"191":1,"222":1,"285":1,"2675":1}}],["f466",{"2":{"191":1}}],["f401",{"2":{"253":1,"2406":1,"2675":1}}],["f401xe",{"2":{"131":1,"134":1}}],["f405",{"2":{"130":1,"134":1,"308":1}}],["f4",{"2":{"111":1,"131":1,"134":1,"175":1,"285":1,"379":1,"561":2,"570":1,"589":2,"693":2,"695":2,"1925":1,"2278":1,"2511":2,"2522":2,"2539":1,"2564":1,"2691":1}}],["f411",{"2":{"93":1,"2406":2,"2675":2,"2853":1,"2895":1}}],["f072",{"2":{"1299":2}}],["f0",{"2":{"111":1,"561":2,"570":1,"693":2,"695":3,"2278":1,"2508":1,"2720":1}}],["f7²",{"2":{"695":1}}],["f7¹",{"2":{"695":1}}],["f7",{"2":{"111":1,"379":1,"561":2,"570":1,"589":2,"693":2,"1368":1,"2278":1,"2511":2,"2522":2,"2564":1,"2691":1,"2720":1}}],["f6²",{"2":{"695":1}}],["f6¹",{"2":{"695":1}}],["f6",{"2":{"111":1,"379":1,"561":2,"570":1,"589":2,"693":2,"695":1,"698":1,"2278":1,"2511":2,"2522":2,"2564":1,"2691":1,"2720":1}}],["f19",{"2":{"2511":2,"2522":2}}],["f17",{"2":{"2511":2,"2522":2}}],["f16",{"2":{"2511":2,"2522":2}}],["f15",{"2":{"2511":2,"2522":3}}],["f14",{"2":{"2511":2,"2522":2}}],["f14629ed1cd7c7ec9089604d64f29a99981558e8",{"2":{"588":2}}],["f1xx",{"2":{"2508":2}}],["f18",{"2":{"1788":1,"2511":2,"2522":2,"2929":1}}],["f12",{"2":{"379":1,"589":2,"2511":2,"2522":2,"2558":1,"2564":1}}],["f11",{"2":{"379":1,"589":2,"2511":2,"2522":2,"2564":1}}],["f10²",{"2":{"695":1}}],["f10¹",{"2":{"695":1}}],["f10",{"2":{"379":1,"589":2,"695":2,"2511":2,"2522":2,"2564":1}}],["f103",{"2":{"291":1,"721":1,"2408":1}}],["f103c6",{"2":{"222":1}}],["f103xb",{"2":{"114":1}}],["f13",{"2":{"222":1,"1444":1,"2511":2,"2522":3}}],["f1",{"2":{"111":1,"120":1,"175":1,"379":1,"561":2,"570":1,"589":2,"693":2,"1441":1,"1603":1,"1925":1,"2272":1,"2278":1,"2390":1,"2397":1,"2508":1,"2511":2,"2522":2,"2539":1,"2557":1,"2558":1,"2564":1,"2720":1}}],["f",{"0":{"2511":1},"2":{"111":2,"134":1,"149":1,"175":1,"196":2,"222":1,"266":2,"328":1,"379":1,"397":1,"433":6,"436":1,"437":1,"443":1,"463":5,"561":1,"573":3,"589":2,"767":1,"1538":3,"1597":1,"1618":3,"1671":1,"1685":1,"1798":2,"1925":19,"2059":2,"2068":1,"2238":1,"2240":1,"2242":1,"2244":2,"2296":1,"2301":1,"2508":2,"2510":3,"2522":3,"2539":19,"2563":3,"2755":8,"2887":3,"2913":1,"2925":1}}],["frr",{"2":{"2301":1}}],["friction",{"2":{"1939":2,"1985":1}}],["friendly",{"0":{"1777":1},"2":{"436":1,"489":1,"1298":1,"2293":1,"2478":1}}],["friend",{"0":{"2375":1},"2":{"398":1,"2374":3,"2375":4}}],["friends",{"2":{"226":1,"236":1,"2481":1}}],["frustrates",{"2":{"2566":1}}],["frustrating",{"2":{"2317":1}}],["frustration",{"2":{"188":1}}],["fruit",{"2":{"1365":1}}],["frood",{"2":{"2706":1}}],["front",{"2":{"1471":1,"2664":1}}],["frontend",{"0":{"579":1},"2":{"579":1,"746":1}}],["fronzlebop",{"2":{"609":2}}],["frob",{"2":{"541":1}}],["from=",{"2":{"191":1}}],["from",{"0":{"5":1,"14":1,"181":1,"500":1,"687":1,"1370":1,"1905":1,"2058":1,"2165":1,"2616":1},"2":{"3":1,"6":2,"21":2,"24":1,"39":3,"40":1,"45":1,"48":1,"62":1,"63":1,"69":1,"70":1,"73":2,"74":1,"75":2,"76":1,"88":3,"90":1,"92":1,"94":1,"104":3,"113":2,"114":8,"116":1,"119":1,"127":3,"128":1,"132":2,"133":1,"134":10,"149":5,"175":9,"178":1,"185":2,"187":1,"188":2,"189":1,"191":8,"199":13,"210":7,"212":1,"217":1,"222":8,"224":1,"228":3,"230":1,"236":4,"240":1,"249":9,"263":1,"266":19,"272":1,"273":1,"275":1,"276":1,"277":5,"284":2,"285":1,"294":1,"307":1,"308":5,"312":1,"323":2,"333":2,"339":2,"366":1,"367":1,"370":1,"385":1,"386":1,"389":1,"390":1,"391":1,"393":1,"407":1,"408":1,"409":1,"413":1,"429":3,"434":2,"438":1,"439":1,"447":2,"453":2,"463":1,"469":1,"473":1,"489":3,"496":2,"500":2,"511":1,"512":1,"513":1,"516":3,"517":4,"525":1,"555":1,"561":3,"563":1,"570":3,"578":1,"581":1,"585":1,"588":2,"592":1,"600":1,"609":1,"611":1,"613":2,"628":1,"647":1,"656":1,"665":1,"669":2,"672":1,"675":1,"677":1,"686":1,"688":2,"698":2,"699":4,"704":1,"713":1,"720":1,"722":2,"727":1,"732":1,"753":1,"754":2,"774":1,"776":1,"777":1,"779":1,"780":1,"782":1,"783":1,"786":1,"789":1,"791":1,"792":2,"794":1,"795":2,"797":1,"798":1,"834":1,"861":1,"866":1,"896":1,"926":1,"931":1,"960":1,"965":1,"994":1,"999":1,"1028":1,"1033":1,"1062":1,"1067":1,"1096":1,"1101":1,"1130":1,"1135":1,"1164":1,"1169":1,"1222":1,"1257":1,"1258":1,"1260":1,"1262":1,"1276":1,"1278":1,"1292":1,"1293":1,"1294":1,"1300":1,"1312":1,"1313":1,"1316":1,"1324":1,"1325":1,"1327":1,"1343":3,"1348":2,"1357":1,"1359":1,"1371":1,"1372":1,"1373":1,"1378":1,"1389":1,"1407":1,"1417":1,"1418":1,"1422":2,"1425":3,"1427":1,"1428":1,"1464":1,"1466":1,"1481":1,"1484":1,"1487":1,"1493":1,"1497":1,"1503":1,"1525":1,"1528":1,"1533":2,"1541":1,"1546":1,"1558":1,"1567":1,"1569":1,"1594":1,"1605":1,"1610":1,"1612":1,"1617":1,"1619":4,"1620":7,"1654":2,"1661":1,"1662":1,"1685":1,"1686":1,"1712":1,"1717":1,"1720":1,"1721":1,"1722":1,"1727":1,"1735":1,"1737":1,"1738":1,"1741":1,"1742":2,"1749":1,"1752":1,"1754":1,"1766":1,"1784":2,"1785":1,"1786":2,"1787":1,"1802":1,"1840":2,"1841":1,"1846":1,"1849":4,"1850":1,"1865":1,"1866":1,"1867":1,"1884":1,"1890":1,"1892":1,"1894":1,"1905":1,"1923":2,"1936":2,"1937":1,"1939":1,"1947":2,"1948":1,"1949":2,"1953":1,"1962":1,"1963":1,"1964":1,"1968":1,"1974":1,"1980":1,"1983":4,"1985":2,"1986":1,"1988":2,"1990":5,"1999":1,"2003":1,"2012":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2037":1,"2046":1,"2059":1,"2061":1,"2065":1,"2069":1,"2079":1,"2082":1,"2085":4,"2086":1,"2088":1,"2107":1,"2108":1,"2109":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2160":3,"2162":3,"2165":1,"2184":1,"2185":1,"2191":2,"2199":2,"2206":1,"2208":1,"2214":1,"2239":1,"2241":1,"2243":1,"2245":1,"2246":1,"2252":1,"2259":1,"2260":1,"2264":1,"2265":1,"2275":2,"2277":2,"2278":1,"2280":2,"2286":2,"2287":1,"2288":1,"2294":1,"2298":1,"2303":1,"2310":1,"2315":2,"2318":1,"2319":1,"2320":1,"2324":1,"2331":2,"2367":1,"2384":1,"2387":1,"2390":1,"2397":1,"2400":1,"2403":1,"2406":1,"2408":1,"2410":1,"2416":1,"2417":2,"2418":1,"2423":5,"2427":1,"2428":3,"2429":1,"2430":1,"2431":1,"2432":2,"2434":1,"2447":1,"2450":1,"2464":1,"2466":5,"2467":1,"2470":1,"2490":1,"2499":1,"2501":1,"2502":1,"2503":2,"2506":1,"2508":2,"2559":1,"2562":1,"2564":2,"2566":1,"2567":2,"2569":2,"2570":4,"2571":1,"2583":1,"2584":1,"2585":1,"2589":1,"2606":1,"2607":1,"2609":1,"2613":2,"2615":2,"2622":1,"2628":1,"2634":3,"2637":1,"2638":1,"2639":2,"2640":1,"2643":1,"2646":1,"2657":1,"2658":1,"2663":2,"2667":1,"2669":1,"2671":1,"2672":1,"2674":1,"2678":1,"2683":1,"2690":1,"2694":1,"2701":1,"2702":1,"2705":1,"2706":1,"2719":1,"2720":1,"2721":1,"2726":2,"2728":5,"2730":2,"2734":1,"2742":1,"2753":2,"2756":12,"2757":5,"2784":2,"2789":1,"2794":4,"2795":4,"2797":1,"2819":1,"2832":1,"2845":1,"2855":1,"2857":2,"2869":1,"2870":1,"2871":3,"2877":2,"2878":3,"2880":2,"2882":1,"2886":1,"2889":2,"2902":2,"2904":1,"2907":1,"2910":3,"2912":2,"2926":1,"2927":1,"2934":1,"2935":1,"2938":2,"2939":2,"2940":3,"2945":2,"2948":1}}],["fr",{"2":{"222":1,"2301":3,"2887":4}}],["frl",{"2":{"222":2}}],["français",{"2":{"2804":1}}],["franky36",{"2":{"317":1}}],["fraction",{"2":{"1986":1}}],["fractal",{"2":{"134":2,"191":1,"210":1,"277":1,"339":1,"2085":4,"2894":1}}],["fram",{"2":{"749":1,"750":1}}],["frames",{"2":{"1939":1,"2755":1,"2772":2,"2775":1}}],["frame",{"0":{"2775":1,"2776":1,"2777":1,"2778":1,"2779":1},"2":{"1286":1,"1865":1,"1867":1,"1908":1,"1910":1,"1912":1,"1915":1,"1939":2,"1954":1,"2107":1,"2109":1,"2168":1,"2170":1,"2172":1,"2175":1,"2757":3,"2765":1,"2767":3,"2770":1,"2771":1,"2772":6,"2774":2,"2775":8,"2776":28,"2777":2,"2778":1,"2779":2}}],["frameworking",{"2":{"160":1}}],["framework",{"2":{"134":1,"365":1,"489":1,"1407":1,"2316":1,"2418":1,"2847":1,"2943":1}}],["framebuffer",{"2":{"93":1,"114":1,"236":1,"2085":1,"2756":3}}],["fragments",{"2":{"262":1}}],["fraanrosi",{"2":{"114":1}}],["fr4boards",{"2":{"67":1,"222":1}}],["fr4",{"2":{"67":1,"72":1}}],["freq",{"2":{"1493":5,"1685":1}}],["frequencies",{"2":{"1493":1}}],["frequency",{"0":{"859":1,"924":1,"958":1,"992":1,"1026":1,"1060":1,"1162":1,"2764":1},"2":{"44":1,"134":1,"160":1,"202":1,"210":2,"236":2,"285":1,"339":1,"570":1,"750":1,"759":1,"767":1,"857":3,"859":12,"921":3,"924":9,"956":3,"958":9,"990":3,"992":9,"1024":3,"1026":8,"1058":3,"1060":8,"1160":3,"1162":11,"1331":7,"1493":7,"1495":3,"1685":3,"1949":1,"1985":1,"2278":1,"2524":3,"2880":1,"2882":1}}],["frequent",{"2":{"1472":1,"1986":1}}],["frequently",{"0":{"1314":1,"1334":1},"1":{"1315":1,"1316":1,"1317":1,"1318":1,"1319":1,"1320":1,"1335":1,"1336":1,"1337":1,"1338":1,"1339":1,"1340":1,"1341":1,"1342":1,"1343":1},"2":{"370":1,"1852":1,"2091":1,"2259":1,"2317":2,"2448":1,"2726":1,"2871":1,"2878":1,"2901":1,"2912":1}}],["fresh",{"2":{"367":1,"675":1}}],["french",{"2":{"249":1,"2804":1,"2887":16}}],["freyr",{"2":{"143":2}}],["freeman",{"2":{"2942":1}}],["freebsd",{"2":{"2627":2}}],["freely",{"2":{"1343":1}}],["freezing",{"2":{"720":1}}],["freezes",{"2":{"719":1,"720":1}}],["freeze",{"2":{"719":1,"720":1}}],["freeform",{"2":{"665":1}}],["frees",{"2":{"575":1}}],["free",{"2":{"110":1,"123":1,"124":1,"384":1,"542":1,"1467":2,"1485":1,"1953":1,"2089":1,"2205":1,"2331":1,"2587":1,"2629":1,"2730":1,"2731":1,"2732":2,"2852":2,"2942":1}}],["freedoms",{"2":{"2735":1,"2750":1}}],["freed",{"2":{"35":1,"172":1,"175":1,"181":1}}],["fantastic",{"2":{"2909":1}}],["fan",{"2":{"2421":1}}],["fancy",{"2":{"538":1,"1464":2}}],["faith",{"2":{"2728":1}}],["fair",{"2":{"2566":1}}],["fairly",{"2":{"1451":1,"1537":1,"1539":1,"2423":1,"2483":1}}],["fails",{"2":{"1804":1,"2417":1,"2741":2}}],["failed",{"2":{"381":1,"455":1,"1207":1,"1209":1,"2275":1,"2277":1,"2448":1,"2634":3}}],["failing",{"2":{"174":1,"175":1,"266":1,"609":1,"1365":1,"2448":1}}],["failures",{"2":{"134":1,"149":3,"175":1,"198":1,"199":3,"236":1,"317":1,"339":1,"455":1,"609":1,"720":1,"2277":1}}],["failure",{"2":{"92":1,"149":1,"210":1,"236":3,"263":1,"277":1,"333":1,"657":2}}],["fail",{"0":{"2739":1},"2":{"88":2,"104":2,"126":1,"127":2,"185":1,"217":1,"339":1,"393":1,"660":1,"686":1,"1532":1,"1804":2,"2606":1,"2607":1}}],["faqs",{"2":{"604":1}}],["faq",{"0":{"1321":1,"1344":1,"1363":1,"2385":1},"1":{"1322":1,"1323":1,"1324":1,"1325":1,"1326":1,"1327":1,"1328":1,"1329":1,"1330":1,"1331":1,"1332":1,"1333":1,"1345":1,"1346":1,"1347":1,"1348":1,"1349":1,"1350":1,"1351":1,"1352":1,"1353":1,"1354":1,"1355":1,"1356":1,"1357":1,"1358":1,"1359":1,"1360":1,"1361":1,"1362":1,"1364":1,"1365":1,"1366":1,"1367":1,"1368":1,"1369":1,"1370":1,"1371":1,"1372":1,"1373":1,"1374":1,"1375":1,"1376":1,"2386":1},"2":{"574":1,"1337":1,"2490":1,"2565":1,"2617":1,"2934":1}}],["famous",{"2":{"487":1,"2085":1}}],["familiarity",{"2":{"2598":1,"2934":1}}],["familiarize",{"2":{"542":1}}],["familiar",{"2":{"529":1,"605":1,"608":1,"1315":1,"2387":1,"2411":2,"2580":1,"2600":1,"2633":1,"2635":1,"2869":1,"2908":1}}],["families",{"0":{"2709":1,"2710":1},"2":{"39":1,"130":1,"753":1,"757":1,"2707":1,"2709":1}}],["family",{"0":{"2711":1,"2712":1,"2713":1},"2":{"175":1,"277":1,"754":1,"2261":1,"2709":1,"2711":4,"2712":1,"2713":1,"2728":1,"2731":1}}],["facing",{"2":{"561":1,"2051":4,"2428":2,"2466":1,"2795":1}}],["face",{"2":{"277":2,"656":1,"2423":1,"2428":2,"2747":1}}],["factor",{"2":{"1493":3,"2795":1,"2853":1}}],["factory",{"2":{"191":3,"1372":1,"2399":1,"2404":1,"2498":1}}],["fact",{"2":{"35":1,"1319":1,"1342":1,"1356":1,"1417":1,"2178":1}}],["fading",{"2":{"249":1,"1849":1,"2085":2}}],["fader",{"2":{"1923":1}}],["fade",{"2":{"93":1,"1947":3,"1949":4,"2286":3}}],["fades",{"2":{"39":1,"1849":11,"2085":16}}],["fastest",{"2":{"701":1,"1937":1,"1954":1,"2880":1}}],["faster",{"2":{"403":1,"538":1,"1968":1,"2065":1,"2209":2,"2253":1,"2254":1,"2379":1,"2573":1}}],["fast",{"2":{"190":1,"297":3,"308":1,"516":1,"641":1,"1196":1,"1199":1,"1410":1,"1615":1,"1681":1,"1802":2,"1935":1,"1936":1,"1994":1,"2068":1,"2317":2,"2517":3,"2522":2,"2554":1,"2607":1,"2700":1,"2728":1,"2764":1,"2913":1,"2920":1,"2921":1,"2923":2,"2931":2}}],["fashion",{"2":{"184":1,"2568":1,"2950":1}}],["fault",{"2":{"175":1}}],["fauxclicky",{"2":{"75":1,"172":1,"175":1,"2728":1}}],["fauxpark",{"2":{"28":1,"166":1}}],["fave",{"2":{"266":1}}],["fave84",{"2":{"199":1}}],["fave84h",{"2":{"175":1}}],["favorite",{"0":{"2585":1},"2":{"2607":1}}],["favorites",{"2":{"2517":2,"2522":2}}],["favor",{"0":{"8":1},"2":{"40":1,"94":1,"505":1}}],["favour",{"2":{"3":1,"48":1,"103":1,"168":1,"184":1,"199":1}}],["fake",{"2":{"175":1,"746":1,"2567":1}}],["farther",{"2":{"2585":1}}],["farsi",{"2":{"277":1,"2887":2}}],["far",{"2":{"99":1,"172":1,"263":3,"273":1,"403":1,"628":1,"1802":1,"1976":1,"2249":1,"2291":1,"2690":1}}],["falls",{"2":{"1662":1}}],["fall",{"2":{"489":1,"530":1,"1483":1,"1970":1,"2559":1,"2616":1}}],["fallback",{"0":{"220":1},"2":{"222":2,"1503":1,"2949":1}}],["falling",{"2":{"40":1,"1252":2,"2043":1,"2634":1}}],["falsely",{"2":{"1528":2,"1788":2,"2929":2,"2931":1}}],["false",{"0":{"535":1,"1528":1},"2":{"21":2,"90":2,"105":4,"111":5,"125":3,"169":2,"194":4,"195":2,"199":1,"214":1,"249":1,"307":2,"308":2,"512":2,"535":2,"593":6,"624":1,"625":1,"630":1,"631":1,"647":2,"651":2,"652":1,"653":2,"669":3,"701":1,"797":1,"1253":1,"1380":1,"1381":4,"1405":1,"1417":3,"1431":3,"1447":1,"1462":2,"1491":2,"1503":1,"1510":1,"1517":1,"1528":1,"1533":10,"1535":4,"1544":1,"1600":2,"1612":5,"1613":1,"1617":2,"1618":1,"1621":1,"1625":1,"1657":2,"1663":1,"1668":4,"1702":2,"1743":6,"1779":1,"1781":2,"1795":1,"1804":1,"1811":1,"1817":1,"1837":1,"1851":1,"1855":2,"1945":9,"1946":2,"1948":3,"1954":3,"1958":1,"1962":2,"1967":1,"1971":4,"1974":1,"1989":1,"1993":1,"1994":2,"1996":2,"1997":1,"2006":1,"2008":4,"2009":1,"2011":2,"2012":1,"2013":1,"2073":2,"2075":1,"2076":1,"2077":1,"2079":3,"2090":1,"2094":2,"2095":3,"2096":2,"2225":1,"2284":8,"2285":1,"2290":1,"2300":1,"2331":1,"2381":2,"2575":2,"2576":3,"2577":1,"2607":1,"2674":1,"2685":2,"2754":3,"2757":2,"2783":2,"2854":12,"2856":2,"2857":3,"2860":1,"2861":4,"2863":1,"2866":1,"2870":2,"2871":4,"2872":4,"2873":1,"2875":2,"2877":6,"2878":4,"2879":1,"2880":12,"2881":1,"2882":3,"2883":1,"2893":5,"2920":1,"2921":1,"2924":2,"2928":1,"2929":1,"2931":1,"2941":1}}],["flsh",{"2":{"2313":1,"2315":8}}],["flgp",{"2":{"1848":1,"2084":1,"2537":1,"2545":1}}],["flgn",{"2":{"1848":1,"2084":1,"2537":1,"2545":1}}],["fl",{"2":{"1347":1,"2561":2,"2563":3,"2564":2}}],["flick",{"2":{"1985":1}}],["flicker",{"2":{"1550":1}}],["flickering",{"2":{"1301":1}}],["flight",{"2":{"657":1,"2646":1}}],["flipping",{"2":{"1983":1}}],["flipped",{"2":{"160":1,"1665":1,"1948":1,"2191":1,"2271":1,"2287":1,"2399":1,"2404":1}}],["flip",{"0":{"46":1},"2":{"46":1,"222":1,"1665":1,"2434":1}}],["flips",{"2":{"21":1,"24":1,"46":1,"1948":1,"2287":1}}],["flypage",{"2":{"1319":1}}],["flypage=shop",{"2":{"1319":1}}],["fly",{"0":{"2297":1},"2":{"538":1,"574":1,"1349":1,"1480":1,"1488":1,"1606":1,"1661":1,"2054":1,"2297":1,"2808":1,"2912":3}}],["flygone60",{"2":{"241":2}}],["float",{"0":{"1653":2},"1":{"1654":2},"2":{"203":2,"1535":1,"1645":2,"1654":2,"1804":3,"1839":2,"1994":4}}],["floating",{"2":{"203":2,"1297":1}}],["flowing",{"2":{"2085":1}}],["flows",{"2":{"1343":1}}],["flowtap",{"2":{"328":1}}],["flower",{"2":{"236":1,"2085":3,"2894":1}}],["flow",{"0":{"297":1,"2923":1,"2924":1,"2925":1},"1":{"2924":1,"2925":1},"2":{"149":1,"297":4,"308":3,"339":1,"384":1,"525":1,"613":1,"1266":1,"2085":4,"2298":1,"2427":1,"2428":1,"2894":1,"2913":2,"2923":9,"2924":6,"2925":17,"2931":7}}],["flux",{"2":{"2427":2}}],["flurry",{"2":{"178":1}}],["flushed",{"2":{"1908":1,"1910":1,"1912":1,"1915":1,"2168":1,"2170":1,"2172":1,"2175":1}}],["flushes",{"2":{"114":1}}],["flush",{"0":{"230":1,"711":1,"1310":1,"1646":1,"1750":1,"2032":1},"2":{"222":1,"236":2,"707":1,"711":1,"739":1,"824":1,"825":1,"851":1,"853":1,"883":1,"885":1,"915":1,"917":1,"950":1,"952":1,"984":1,"986":1,"1018":1,"1020":1,"1052":1,"1054":1,"1086":1,"1088":1,"1120":1,"1122":1,"1154":1,"1156":1,"1188":1,"1190":1,"1241":1,"1243":1,"1306":1,"1310":1,"1642":1,"1647":1,"1648":1,"1649":1,"1650":1,"1651":1,"1652":1,"1653":1,"1751":1,"1753":1,"1852":1,"1955":1,"2025":1,"2027":1,"2091":1,"2195":1,"2754":1,"2756":2,"2757":10,"2871":1,"2878":1}}],["flushing",{"2":{"175":1,"652":1,"653":1,"2754":1}}],["flavours",{"2":{"2657":1}}],["flat",{"2":{"1538":1}}],["flatbread60",{"2":{"86":2}}],["flake8",{"2":{"501":1,"506":2}}],["flask",{"2":{"368":1}}],["flasher",{"2":{"2397":1,"2483":1,"2484":1,"2488":1,"2502":2,"2819":1}}],["flashers",{"2":{"430":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":1,"2408":1,"2410":1}}],["flashes",{"2":{"2273":1,"2391":2,"2393":3,"2398":1,"2400":2,"2405":2,"2407":1,"2409":1}}],["flashed",{"0":{"1320":1},"2":{"569":1,"578":1,"683":1,"2189":1,"2273":1,"2298":1,"2374":1,"2388":1,"2393":1,"2410":1,"2432":1,"2434":1,"2482":1,"2490":1,"2502":1,"2569":1,"2901":1}}],["flashable",{"2":{"382":1}}],["flashing",{"0":{"602":1,"1788":1,"2388":1,"2433":1,"2482":1,"2502":1,"2505":1,"2508":1,"2611":1,"2613":1},"1":{"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2405":1,"2406":1,"2407":1,"2408":1,"2409":1,"2410":1,"2483":1,"2484":1,"2485":1,"2486":1,"2487":1,"2488":1,"2489":1,"2490":1,"2491":1,"2492":1,"2493":1,"2494":1,"2495":1,"2496":1,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":1,"2503":2,"2504":1,"2505":1,"2506":2,"2507":2,"2508":2,"2612":1,"2613":1,"2614":2,"2615":2,"2616":1,"2617":1},"2":{"39":1,"134":2,"175":1,"210":2,"240":3,"426":1,"430":2,"602":1,"684":1,"689":1,"1316":1,"1318":1,"1320":1,"1337":1,"1472":1,"1681":1,"2273":1,"2374":1,"2384":3,"2388":2,"2389":1,"2390":1,"2392":1,"2393":1,"2394":2,"2395":1,"2396":1,"2397":3,"2399":1,"2401":1,"2402":1,"2403":2,"2404":1,"2406":2,"2408":2,"2410":2,"2417":1,"2434":1,"2483":1,"2484":1,"2486":1,"2488":1,"2494":1,"2496":2,"2497":1,"2504":1,"2523":1,"2567":1,"2580":1,"2587":1,"2588":1,"2612":2,"2613":1,"2616":1,"2629":1,"2652":1,"2678":1,"2683":1,"2752":1,"2835":1,"2844":1,"2852":1,"2931":2}}],["flash",{"0":{"179":1,"430":1,"754":1,"755":1,"758":1,"759":1,"1337":1,"1348":1,"2386":1,"2588":1,"2615":1,"2616":1},"1":{"759":1},"2":{"39":3,"107":1,"113":1,"114":5,"124":1,"134":1,"149":1,"160":1,"179":3,"189":5,"191":4,"199":2,"210":1,"236":1,"240":1,"277":1,"294":1,"317":2,"333":1,"414":1,"430":6,"435":1,"545":1,"547":1,"568":2,"581":1,"651":1,"684":1,"685":1,"686":1,"719":1,"720":1,"746":3,"752":1,"753":6,"754":12,"755":9,"756":6,"757":5,"758":3,"759":15,"1315":2,"1320":1,"1348":2,"1365":2,"1388":2,"1472":8,"1623":1,"1664":1,"1851":1,"1974":1,"2090":1,"2184":1,"2189":1,"2273":7,"2274":2,"2315":2,"2384":3,"2387":1,"2388":3,"2389":3,"2392":3,"2393":1,"2394":2,"2395":2,"2396":1,"2397":1,"2399":1,"2400":4,"2401":1,"2402":1,"2403":2,"2404":1,"2406":2,"2408":2,"2410":2,"2417":3,"2418":1,"2433":1,"2482":4,"2490":1,"2502":8,"2503":1,"2504":1,"2508":18,"2523":1,"2597":1,"2609":1,"2611":1,"2612":1,"2613":3,"2615":4,"2616":8,"2674":2,"2679":1,"2689":1,"2691":1,"2705":10,"2711":1,"2728":3,"2752":1,"2754":1,"2757":2,"2758":1,"2864":4,"2876":1,"2888":1,"2901":1,"2906":1,"2912":1}}],["flagged",{"0":{"414":1},"1":{"415":1,"416":1,"417":1,"418":1},"2":{"199":1,"212":1,"344":3,"403":1,"414":1,"418":1,"2095":1,"2275":1}}],["flags",{"0":{"1847":1,"1895":3,"1897":3,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"2083":1,"2149":3,"2151":3,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1},"1":{"1896":3,"1898":3,"1904":1,"2150":3,"2152":3,"2158":1},"2":{"175":1,"191":1,"220":1,"277":1,"327":1,"328":4,"333":1,"507":1,"1395":2,"1847":8,"1848":2,"1852":3,"1895":1,"1896":3,"1897":1,"1898":3,"1903":1,"1904":1,"1953":1,"1954":1,"2083":8,"2084":2,"2091":3,"2095":1,"2096":2,"2149":1,"2150":3,"2151":1,"2152":3,"2157":1,"2158":1,"2290":1,"2537":2,"2545":2,"2578":1,"2691":1,"2767":3,"2776":5,"2871":5,"2878":5}}],["flag",{"2":{"175":1,"191":1,"249":1,"302":1,"307":1,"429":1,"460":1,"461":1,"463":1,"470":1,"489":1,"564":3,"688":1,"754":1,"1406":1,"1612":1,"1729":1,"1730":1,"1732":1,"1781":1,"1846":2,"1847":5,"1848":2,"1852":6,"1899":1,"1900":1,"1901":1,"1902":1,"2000":1,"2082":2,"2083":6,"2084":2,"2091":7,"2095":1,"2096":1,"2153":1,"2154":1,"2155":1,"2156":1,"2191":1,"2218":1,"2273":1,"2537":2,"2545":2,"2728":1,"2767":1,"2772":1,"2871":2,"2878":2}}],["flesh",{"2":{"2906":1}}],["flexible",{"0":{"1777":1},"2":{"538":1,"1200":1,"1205":1,"2695":2,"2704":1}}],["flexibility",{"2":{"6":1,"153":1,"555":1,"690":1,"1837":1,"2260":1,"2329":1,"2912":1,"2925":1}}],["flehrad",{"0":{"33":2},"2":{"33":6,"266":1}}],["female",{"2":{"2430":1}}],["fe1",{"2":{"2043":1}}],["feather",{"2":{"546":1,"689":1,"2375":2,"2499":1}}],["featuring",{"2":{"236":1}}],["featured",{"2":{"2571":1,"2664":1,"2727":1,"2889":1}}],["featuresobject",{"2":{"2854":1}}],["features",{"0":{"97":1,"117":1,"136":1,"151":1,"162":1,"177":1,"224":1,"238":1,"251":1,"268":1,"279":1,"287":1,"296":1,"319":1,"538":1,"562":1,"563":1,"681":1,"1471":1,"2046":1,"2689":1,"2763":1,"2945":1},"1":{"98":1,"99":1,"100":1,"118":1,"119":1,"120":1,"137":1,"138":1,"152":1,"153":1,"154":1,"163":1,"178":1,"179":1,"288":1,"289":1,"297":1,"298":1,"320":1},"2":{"3":1,"7":1,"15":1,"39":1,"48":1,"94":1,"111":13,"133":4,"134":5,"175":1,"188":1,"190":1,"191":2,"201":1,"236":2,"249":2,"266":12,"268":1,"333":1,"339":1,"398":1,"414":1,"433":3,"489":1,"538":2,"545":2,"562":1,"571":1,"574":1,"575":3,"592":1,"605":1,"609":1,"612":1,"633":1,"637":1,"640":1,"661":1,"665":1,"681":1,"1343":2,"1349":1,"1382":1,"1392":1,"1393":1,"1405":2,"1416":1,"1421":1,"1464":3,"1465":1,"1471":1,"1485":1,"1541":1,"1591":1,"1612":1,"1630":2,"1923":1,"1974":2,"2276":1,"2294":2,"2297":1,"2308":1,"2389":1,"2390":1,"2397":1,"2415":2,"2435":1,"2455":5,"2459":2,"2460":1,"2479":2,"2558":1,"2569":1,"2586":2,"2671":1,"2695":1,"2714":1,"2722":1,"2728":4,"2729":1,"2751":1,"2763":1,"2780":1,"2817":1,"2825":1,"2836":1,"2854":1,"2889":2,"2890":1,"2901":1,"2902":1,"2903":5,"2904":1,"2907":2,"2908":2,"2910":1,"2944":1,"2946":1}}],["feature",{"0":{"18":1,"574":1,"2900":1},"1":{"2901":1,"2902":1,"2903":1,"2904":1},"2":{"3":1,"18":1,"22":1,"36":1,"39":3,"48":1,"63":1,"70":13,"74":1,"75":1,"87":1,"93":1,"99":3,"103":1,"114":3,"118":1,"126":1,"133":2,"134":5,"149":1,"152":1,"160":3,"163":2,"170":1,"173":1,"174":2,"175":7,"187":1,"191":4,"195":1,"196":1,"199":2,"210":2,"222":1,"224":1,"228":2,"236":1,"248":1,"249":2,"266":1,"285":3,"288":1,"304":1,"306":1,"308":2,"312":2,"315":1,"328":1,"333":1,"414":1,"416":1,"462":1,"512":1,"514":1,"541":1,"554":1,"562":1,"563":1,"574":2,"607":3,"609":1,"612":1,"613":7,"622":1,"668":1,"672":1,"673":1,"675":2,"681":8,"703":1,"714":1,"725":1,"742":1,"765":1,"801":1,"827":1,"856":1,"888":1,"891":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1192":1,"1215":1,"1246":1,"1267":1,"1284":1,"1322":1,"1354":3,"1355":1,"1356":1,"1360":1,"1388":1,"1390":1,"1392":1,"1393":1,"1394":1,"1395":1,"1397":1,"1398":1,"1403":1,"1412":1,"1415":1,"1463":1,"1464":1,"1465":1,"1471":2,"1473":1,"1480":1,"1481":1,"1484":2,"1485":2,"1489":1,"1492":1,"1493":1,"1495":2,"1503":1,"1521":1,"1524":1,"1525":1,"1530":3,"1541":1,"1546":1,"1554":1,"1577":1,"1589":1,"1592":2,"1595":1,"1602":2,"1606":4,"1621":4,"1623":1,"1626":1,"1630":1,"1639":2,"1664":2,"1671":1,"1738":1,"1768":1,"1777":1,"1786":1,"1844":1,"1853":1,"1930":1,"1935":1,"1940":1,"1944":1,"1952":1,"1953":2,"1956":1,"1964":1,"1985":2,"1999":1,"2001":3,"2002":1,"2003":1,"2007":1,"2011":3,"2013":2,"2048":2,"2054":2,"2080":1,"2092":1,"2188":1,"2209":1,"2210":1,"2212":1,"2219":1,"2221":1,"2249":1,"2258":1,"2268":1,"2276":8,"2283":1,"2284":1,"2289":1,"2308":2,"2309":1,"2317":1,"2325":1,"2328":1,"2378":1,"2379":1,"2413":1,"2418":2,"2435":1,"2442":1,"2460":1,"2502":1,"2520":1,"2524":2,"2525":1,"2526":3,"2558":1,"2568":1,"2569":1,"2571":1,"2590":1,"2610":1,"2700":1,"2704":1,"2716":1,"2726":1,"2728":4,"2780":1,"2808":1,"2825":1,"2829":1,"2832":1,"2843":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":2,"2861":2,"2862":1,"2863":2,"2865":1,"2867":1,"2870":1,"2871":1,"2873":2,"2875":2,"2877":1,"2878":1,"2879":2,"2880":2,"2881":2,"2890":1,"2891":2,"2901":1,"2902":3,"2910":1,"2912":3,"2920":1,"2921":1,"2922":1,"2929":1,"2945":2,"2946":1,"2950":2}}],["feat",{"2":{"210":2,"236":2}}],["feker",{"2":{"191":1}}],["fedora",{"2":{"175":1,"2601":1,"2626":1}}],["felix",{"2":{"143":2}}],["few",{"0":{"1767":1},"2":{"131":1,"173":1,"201":1,"210":1,"224":1,"238":1,"366":1,"368":1,"415":1,"540":1,"568":1,"609":1,"681":1,"701":1,"719":1,"753":1,"754":1,"1327":1,"1343":1,"1388":1,"1484":1,"1523":2,"1597":1,"1621":1,"1762":1,"1766":1,"2002":1,"2280":1,"2317":1,"2388":1,"2458":1,"2579":1,"2586":1,"2605":1,"2619":2,"2632":1,"2844":1,"2887":1,"2912":2,"2950":1}}],["fewer",{"2":{"14":1,"35":1,"123":1,"2291":1,"2425":1,"2828":1}}],["fees",{"2":{"2735":1}}],["feed",{"2":{"2795":1}}],["feeding",{"2":{"2429":1}}],["feedback",{"0":{"1677":1,"1678":1,"1683":1,"2328":1},"1":{"1678":1,"1679":1,"1680":1,"1681":1,"1682":1,"1683":1,"1684":2,"1685":2,"1686":1,"1687":1,"1688":1,"1689":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2330":1},"2":{"114":1,"160":1,"172":1,"175":1,"199":1,"228":1,"609":1,"1485":1,"1664":1,"1678":4,"1680":6,"1683":1,"1687":1,"1688":1,"1690":4,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2276":1,"2880":1}}],["feeling",{"2":{"1612":1}}],["feels",{"2":{"119":1}}],["feel",{"2":{"119":1,"320":1,"1427":1,"1485":1,"1968":1,"2089":1,"2091":1,"2205":1,"2331":1,"2586":1,"2910":1,"2912":1,"2931":1}}],["ferris",{"2":{"114":1,"249":1,"294":1}}],["february",{"0":{"66":1,"135":1,"192":1,"237":1,"286":1},"1":{"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1}}],["feb",{"0":{"42":1,"329":1,"1320":1},"1":{"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"330":1,"331":1,"332":1,"333":1},"2":{"400":1,"413":7}}],["fetch",{"2":{"41":1,"366":1,"411":1,"420":1,"421":1,"422":2,"1947":2,"2286":2,"2634":2,"2637":4,"2639":5}}],["fumes",{"2":{"2429":1}}],["furthest",{"2":{"2423":1}}],["further",{"0":{"2075":1},"2":{"131":1,"134":1,"138":1,"175":1,"199":1,"210":1,"214":1,"306":1,"307":2,"315":1,"414":1,"433":1,"631":1,"701":1,"767":1,"1380":1,"1410":1,"1413":3,"1417":1,"1431":1,"1668":2,"1773":1,"1990":1,"2013":1,"2075":1,"2418":2,"2426":1,"2466":1,"2575":1,"2637":1,"2652":1,"2925":1,"2931":1,"2941":1,"2950":1}}],["fuzz",{"2":{"1686":1}}],["fulfilling",{"2":{"2435":1}}],["fulfill",{"2":{"1378":1}}],["fullremap",{"2":{"1213":2}}],["fullsize",{"2":{"175":1,"222":1,"236":1,"2423":2}}],["full",{"0":{"103":1,"104":1,"114":1,"126":1,"127":1,"134":1,"149":1,"160":1,"175":1,"191":1,"199":1,"210":1,"222":1,"236":1,"249":1,"266":1,"277":1,"285":1,"294":1,"308":1,"317":1,"328":1,"333":1,"339":1,"625":1,"1199":1,"2948":1},"1":{"104":1,"127":1,"1200":1,"1201":1},"2":{"87":3,"88":2,"93":1,"103":2,"104":2,"107":2,"114":2,"124":1,"126":2,"127":2,"131":1,"134":1,"149":1,"166":1,"173":1,"187":1,"188":1,"191":1,"213":1,"222":1,"234":1,"236":1,"241":2,"245":1,"285":1,"288":1,"298":1,"382":1,"396":1,"431":1,"476":1,"513":1,"625":1,"665":1,"687":1,"1192":1,"1193":1,"1196":1,"1199":2,"1200":1,"1201":3,"1205":1,"1207":1,"1378":1,"1485":1,"1534":1,"1544":1,"1592":1,"1603":1,"1615":1,"1618":1,"1713":1,"1769":1,"1783":1,"1817":1,"1849":4,"1939":1,"2085":15,"2194":1,"2219":1,"2301":1,"2417":1,"2435":1,"2473":1,"2568":1,"2569":2,"2583":1,"2586":1,"2629":1,"2664":1,"2674":1,"2704":2,"2728":3,"2755":3,"2906":1,"2948":1}}],["fully",{"0":{"263":1},"2":{"13":1,"266":1,"1205":1,"1288":1,"1381":1,"2086":1,"2317":1,"2434":1,"2569":1,"2571":1,"2704":1,"2889":1}}],["fuses",{"0":{"2503":1},"2":{"2497":1,"2502":1,"2503":2}}],["fuse",{"2":{"1372":1,"2496":1,"2503":5}}],["funky",{"2":{"1473":1}}],["fundamentals",{"2":{"2422":1}}],["fundamentally",{"2":{"1410":1}}],["fundamental",{"2":{"626":1,"2736":1,"2741":1}}],["func",{"2":{"94":1,"533":2}}],["functioning",{"2":{"2318":1}}],["function96",{"2":{"86":4}}],["functionally",{"2":{"1659":1,"2568":1,"2927":1}}],["functionalities",{"2":{"1616":1}}],["functionality",{"0":{"36":1,"220":1,"1494":1},"2":{"3":1,"7":1,"14":1,"20":1,"23":1,"48":1,"87":1,"93":2,"98":1,"99":2,"114":2,"123":1,"124":1,"126":1,"128":1,"133":1,"134":1,"152":1,"154":1,"175":2,"179":1,"217":1,"220":2,"266":2,"293":1,"305":1,"307":1,"312":2,"314":1,"327":1,"344":3,"373":1,"403":1,"412":4,"564":1,"574":1,"575":2,"589":1,"626":1,"630":1,"645":1,"655":1,"656":2,"721":1,"767":1,"1417":2,"1422":1,"1446":2,"1451":2,"1470":2,"1471":1,"1485":1,"1510":1,"1534":1,"1592":1,"1605":1,"1622":1,"1623":1,"1629":1,"1656":1,"1664":1,"1667":1,"1777":1,"1796":1,"1798":1,"1956":1,"1964":1,"1985":1,"1995":1,"2182":1,"2258":2,"2277":1,"2310":1,"2319":2,"2320":1,"2432":1,"2456":1,"2459":1,"2460":2,"2461":1,"2503":1,"2520":1,"2521":1,"2590":1,"2680":1,"2686":1,"2687":1,"2728":3,"2729":2,"2736":1,"2739":1,"2780":1,"2782":1,"2789":1,"2795":1,"2889":1,"2892":1,"2901":1,"2902":2,"2935":1,"2936":1,"2941":1}}],["functional",{"2":{"18":1,"210":1,"276":1,"284":1,"405":1,"406":1,"407":1,"412":2,"687":1,"757":1,"1463":1,"2569":1,"2736":1,"2741":1,"2742":1}}],["function",{"0":{"140":1,"524":1,"540":1,"632":1,"636":1,"638":1,"639":1,"642":1,"645":1,"650":1,"654":1,"1432":1,"1837":1,"2006":1,"2317":1,"2564":1,"2575":1,"2576":1},"1":{"1838":1,"1839":1},"2":{"12":2,"17":1,"24":1,"36":3,"39":2,"74":1,"90":3,"92":1,"93":2,"114":1,"125":1,"132":1,"133":1,"134":3,"149":4,"158":1,"160":1,"175":1,"185":1,"191":5,"194":1,"195":2,"199":2,"210":2,"214":1,"229":1,"230":2,"236":1,"249":2,"266":1,"273":1,"285":1,"306":1,"308":3,"312":1,"315":1,"328":3,"339":1,"340":1,"398":1,"433":2,"489":3,"492":1,"516":1,"519":3,"521":2,"522":1,"523":2,"524":2,"532":1,"540":5,"564":2,"627":1,"630":1,"633":2,"639":2,"645":2,"646":2,"647":1,"651":4,"656":2,"657":1,"672":2,"673":2,"696":2,"698":1,"699":3,"706":1,"707":1,"721":4,"723":1,"733":1,"735":1,"763":1,"768":2,"772":4,"776":1,"797":1,"809":1,"812":1,"816":1,"820":1,"822":1,"835":1,"839":1,"843":1,"847":1,"849":1,"867":1,"871":1,"875":1,"879":1,"881":1,"897":1,"903":1,"907":1,"911":1,"913":1,"932":1,"938":1,"942":1,"946":1,"948":1,"966":1,"972":1,"976":1,"980":1,"982":1,"1000":1,"1006":1,"1010":1,"1014":1,"1016":1,"1034":1,"1040":1,"1044":1,"1048":1,"1050":1,"1068":1,"1074":1,"1078":1,"1082":1,"1084":1,"1102":1,"1108":1,"1112":1,"1116":1,"1118":1,"1136":1,"1142":1,"1146":1,"1150":1,"1152":1,"1170":1,"1176":1,"1180":1,"1184":1,"1186":1,"1194":1,"1197":1,"1198":1,"1200":1,"1201":1,"1211":1,"1212":1,"1213":3,"1223":1,"1229":1,"1233":1,"1237":1,"1239":1,"1248":3,"1250":1,"1269":4,"1271":1,"1276":1,"1281":1,"1299":2,"1303":1,"1305":1,"1306":1,"1333":2,"1416":1,"1417":4,"1418":1,"1421":1,"1422":1,"1423":1,"1428":3,"1438":1,"1446":2,"1447":2,"1451":1,"1454":1,"1455":1,"1470":3,"1471":1,"1483":1,"1503":1,"1510":1,"1518":1,"1521":2,"1532":4,"1533":1,"1535":1,"1536":1,"1538":1,"1556":1,"1591":2,"1599":1,"1605":1,"1612":1,"1613":1,"1617":2,"1620":3,"1621":1,"1622":3,"1625":1,"1663":1,"1668":4,"1704":1,"1706":1,"1707":1,"1708":1,"1717":1,"1721":1,"1730":1,"1732":1,"1734":1,"1736":1,"1765":1,"1781":3,"1793":1,"1795":1,"1835":1,"1837":1,"1838":1,"1839":1,"1840":1,"1841":1,"1851":1,"1855":2,"1865":1,"1867":1,"1947":2,"1954":2,"1958":2,"1986":1,"1988":3,"1989":2,"1990":2,"1992":1,"1994":3,"1999":1,"2008":1,"2009":1,"2011":1,"2014":5,"2015":2,"2037":1,"2053":1,"2057":1,"2058":1,"2069":1,"2076":1,"2078":1,"2090":1,"2091":1,"2094":2,"2097":1,"2107":1,"2109":1,"2195":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2207":1,"2214":1,"2218":1,"2228":1,"2232":1,"2234":1,"2254":1,"2255":1,"2273":1,"2277":2,"2286":2,"2290":4,"2300":3,"2301":1,"2306":1,"2309":5,"2310":3,"2317":3,"2318":2,"2319":3,"2320":2,"2323":1,"2330":1,"2344":1,"2345":1,"2346":1,"2380":1,"2381":1,"2457":1,"2461":2,"2525":2,"2558":1,"2561":2,"2562":1,"2563":1,"2564":1,"2573":1,"2575":1,"2576":5,"2577":3,"2590":1,"2651":1,"2685":7,"2686":5,"2687":4,"2695":1,"2741":1,"2752":1,"2756":10,"2757":18,"2761":1,"2762":1,"2782":3,"2784":2,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2893":1,"2910":1,"2912":4,"2920":1,"2921":1,"2922":6,"2927":2,"2929":2,"2933":1,"2935":4,"2937":2,"2941":2,"2949":1}}],["functions",{"0":{"12":1,"243":1,"697":1,"1210":1,"1428":1,"1451":1,"1470":1,"1531":1,"1581":1,"1599":1,"1793":1,"1988":1,"1989":1,"2008":1,"2009":1,"2078":1,"2194":1,"2195":1,"2196":1,"2202":1,"2203":1,"2218":1,"2254":1,"2306":1,"2323":1,"2380":1,"2695":1,"2780":1,"2932":1,"2933":1},"1":{"698":1,"699":1,"1211":1,"1212":1,"1213":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1532":1,"1533":1,"1534":1,"1535":1,"1536":1,"1582":1,"1583":1,"2195":1,"2196":1,"2197":2,"2198":2,"2199":2,"2200":2,"2201":2,"2202":2,"2203":2,"2204":2,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1},"2":{"12":1,"21":1,"39":3,"40":1,"49":1,"62":1,"93":2,"114":2,"125":1,"134":2,"149":2,"160":1,"169":1,"174":1,"175":3,"191":1,"199":4,"214":2,"222":4,"236":2,"240":1,"243":1,"249":2,"266":1,"273":1,"285":2,"294":1,"308":1,"323":2,"331":1,"433":1,"505":1,"514":1,"529":1,"534":1,"540":4,"544":1,"592":1,"624":2,"625":1,"627":3,"630":3,"633":1,"639":2,"643":1,"646":1,"647":2,"648":2,"695":1,"716":1,"721":1,"762":1,"763":2,"764":1,"772":1,"1198":1,"1200":2,"1201":1,"1245":1,"1250":1,"1266":1,"1271":1,"1327":1,"1378":3,"1379":1,"1417":1,"1422":1,"1427":1,"1428":9,"1431":1,"1451":2,"1457":1,"1464":2,"1470":3,"1472":2,"1484":1,"1487":1,"1498":1,"1510":1,"1517":1,"1532":1,"1536":1,"1599":1,"1612":1,"1621":1,"1634":1,"1638":1,"1657":2,"1668":1,"1704":1,"1765":1,"1782":1,"1791":1,"1793":1,"1835":1,"1837":1,"1855":1,"1938":1,"1954":1,"1957":1,"1984":2,"1989":1,"1990":1,"2002":1,"2007":1,"2008":3,"2009":1,"2011":1,"2015":1,"2046":1,"2075":1,"2089":2,"2094":1,"2181":2,"2194":2,"2198":1,"2205":2,"2222":1,"2290":1,"2300":1,"2306":1,"2309":2,"2310":2,"2317":1,"2318":4,"2319":3,"2418":1,"2456":1,"2457":1,"2461":1,"2572":1,"2610":1,"2652":1,"2695":1,"2726":1,"2728":3,"2751":1,"2756":1,"2757":5,"2780":2,"2781":1,"2784":1,"2889":5,"2907":1,"2911":1,"2920":1,"2932":1,"2933":2,"2936":1,"2940":1,"2941":2}}],["fudge",{"2":{"249":1}}],["future",{"0":{"600":1,"2255":1},"1":{"2256":1,"2257":1,"2258":1,"2259":1,"2260":1},"2":{"6":1,"43":1,"110":1,"142":1,"156":1,"160":1,"166":1,"194":1,"198":1,"201":1,"262":2,"303":1,"307":1,"332":1,"340":1,"414":1,"539":1,"597":1,"600":1,"658":1,"659":1,"1266":1,"1407":1,"1410":1,"2462":1,"2569":1,"2570":1,"2571":1,"2728":1,"2729":1,"2730":1,"2902":1}}],["fn+f",{"2":{"1361":1}}],["fno",{"2":{"317":1}}],["fnv",{"2":{"191":1}}],["fn",{"0":{"3":1,"7":1,"48":1,"1356":1},"2":{"3":2,"7":4,"21":1,"28":1,"39":1,"48":2,"49":1,"114":2,"134":1,"591":2,"1347":2,"1356":2,"1470":1,"1766":2,"1779":6,"1945":3,"2190":1,"2284":3,"2296":1,"2301":1,"2309":14,"2310":10,"2314":1,"2315":2,"2316":1,"2317":1,"2318":2,"2319":1,"2563":1}}],["fischl",{"2":{"2492":1}}],["fish",{"2":{"507":1}}],["fifth",{"2":{"1833":1,"2303":1,"2309":1}}],["fifo",{"2":{"175":1}}],["five",{"0":{"1832":1},"1":{"1833":1,"1834":1},"2":{"1796":1,"2296":1,"2300":1,"2309":1,"2650":1,"2764":1,"2794":1,"2879":1}}],["figuring",{"2":{"1320":1}}],["figure",{"2":{"429":1,"729":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1410":1,"1538":2,"2317":1,"2585":1,"2617":1}}],["fiddle",{"2":{"2309":1}}],["fiddling",{"2":{"397":1}}],["fidelity",{"2":{"285":1}}],["fiuxup",{"2":{"249":1}}],["filthier",{"2":{"1528":1}}],["filterpaper",{"2":{"1540":1}}],["filter=ez",{"2":{"1312":1,"1313":1}}],["filtered",{"2":{"433":1}}],["filtering",{"0":{"2074":1},"2":{"433":1,"564":1,"1316":1,"2053":1,"2057":1,"2059":1,"2379":2,"2925":1,"2945":1}}],["filters",{"2":{"236":1,"433":1}}],["filter",{"2":{"199":1,"433":7,"443":1,"1316":1,"1409":1,"1527":2,"2455":1,"2911":2,"2920":1}}],["fills",{"2":{"2298":1,"2579":1}}],["filled",{"2":{"2085":1,"2757":9}}],["fill",{"2":{"429":1,"430":1,"437":1,"440":1,"442":1,"445":1,"618":1,"1492":1,"2059":1,"2298":1,"2720":1,"2757":3}}],["filen",{"2":{"459":1}}],["filenames",{"2":{"459":1,"519":1,"2726":1}}],["filename>",{"2":{"354":1,"463":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2502":1}}],["filename",{"2":{"317":1,"438":1,"439":2,"447":1,"448":1,"449":1,"450":1,"500":2,"519":1,"1365":1,"1633":1,"2502":1,"2508":1,"2614":1}}],["file2",{"2":{"459":1,"2640":1}}],["file1",{"2":{"459":1,"2640":1}}],["file>",{"2":{"436":1}}],["fileformat",{"2":{"199":1}}],["filegen",{"2":{"149":1}}],["file",{"0":{"499":1,"560":1,"571":1,"601":1,"617":1,"2416":1,"2614":1,"2795":1},"1":{"561":1,"562":1,"563":1,"564":1,"565":1,"566":1,"567":1,"568":1,"569":1,"570":1,"572":1,"573":1,"574":1,"575":1},"2":{"5":2,"15":1,"49":1,"65":2,"70":1,"73":1,"87":1,"114":2,"120":1,"132":2,"149":2,"173":1,"175":2,"179":1,"191":3,"222":4,"236":2,"249":1,"262":2,"266":1,"293":1,"305":1,"314":1,"328":1,"333":1,"348":1,"353":2,"367":1,"371":1,"380":1,"381":1,"393":1,"394":1,"403":1,"409":1,"412":1,"429":1,"433":1,"436":1,"452":2,"453":2,"458":1,"462":2,"463":3,"466":1,"467":1,"468":1,"489":1,"496":1,"500":3,"509":1,"511":2,"512":4,"513":2,"555":1,"560":2,"571":1,"588":2,"589":1,"592":1,"593":1,"600":4,"607":1,"612":2,"613":3,"617":2,"621":1,"623":4,"624":1,"625":1,"660":1,"666":1,"672":1,"681":1,"686":1,"753":1,"1195":2,"1198":3,"1201":3,"1206":1,"1208":1,"1209":1,"1213":1,"1327":1,"1332":1,"1365":5,"1417":1,"1420":1,"1438":2,"1439":1,"1441":1,"1464":2,"1466":4,"1470":1,"1472":3,"1485":3,"1492":2,"1502":2,"1527":6,"1589":1,"1590":2,"1602":1,"1607":1,"1622":2,"1630":1,"1631":1,"1633":4,"1634":2,"1635":1,"1636":1,"1661":1,"1662":1,"1768":1,"1786":1,"1846":1,"1850":2,"1855":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1945":1,"1946":2,"1949":1,"1957":1,"1958":1,"1998":1,"2082":1,"2088":2,"2094":1,"2188":1,"2191":1,"2271":2,"2272":1,"2273":2,"2274":2,"2275":1,"2276":1,"2284":1,"2288":1,"2301":1,"2309":2,"2312":1,"2317":2,"2384":2,"2387":1,"2388":1,"2389":1,"2390":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":2,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2414":7,"2416":1,"2417":13,"2418":9,"2419":3,"2432":1,"2433":2,"2434":1,"2450":5,"2452":1,"2453":3,"2454":5,"2455":5,"2456":5,"2457":5,"2458":1,"2464":3,"2467":1,"2497":1,"2501":1,"2502":3,"2504":5,"2508":2,"2556":1,"2560":2,"2561":1,"2562":2,"2563":1,"2565":1,"2582":1,"2584":6,"2585":3,"2587":2,"2595":1,"2606":2,"2607":7,"2609":2,"2610":3,"2611":1,"2614":5,"2629":2,"2634":13,"2638":1,"2640":1,"2652":1,"2662":1,"2667":1,"2669":3,"2672":2,"2674":7,"2700":1,"2702":2,"2703":1,"2705":1,"2709":1,"2711":1,"2716":2,"2726":1,"2728":4,"2755":10,"2757":2,"2763":1,"2765":1,"2767":6,"2771":1,"2772":2,"2774":6,"2775":3,"2786":1,"2794":4,"2795":2,"2796":3,"2797":1,"2800":2,"2851":2,"2938":1,"2944":1,"2945":6,"2949":1,"2950":1}}],["files>",{"2":{"2634":1}}],["filesystem",{"2":{"2626":1}}],["files",{"0":{"5":1,"1929":1,"2458":1,"2605":1,"2608":1,"2887":1},"2":{"1":1,"22":1,"40":4,"69":1,"73":2,"75":1,"86":1,"92":1,"113":1,"114":5,"118":1,"132":1,"133":1,"134":3,"160":2,"175":3,"191":2,"199":7,"201":2,"208":1,"212":2,"222":3,"224":2,"234":2,"236":4,"238":1,"249":3,"262":1,"266":1,"277":1,"285":2,"294":3,"308":3,"317":1,"333":1,"339":1,"344":3,"403":1,"429":1,"430":1,"433":1,"439":1,"446":1,"455":2,"458":1,"459":5,"469":1,"507":1,"512":1,"513":1,"544":2,"555":3,"558":1,"560":1,"568":1,"572":4,"574":1,"579":1,"580":1,"581":2,"589":1,"607":2,"617":1,"665":2,"668":2,"669":1,"672":1,"673":2,"1203":1,"1204":1,"1365":1,"1464":3,"1466":1,"1470":1,"1471":1,"1472":3,"1532":1,"1632":1,"1633":1,"1634":1,"1661":1,"1850":1,"2088":1,"2273":3,"2415":2,"2416":1,"2417":4,"2418":2,"2451":1,"2454":1,"2455":2,"2458":2,"2464":1,"2497":1,"2499":1,"2501":1,"2504":1,"2561":1,"2587":1,"2589":2,"2594":1,"2596":1,"2597":1,"2598":1,"2599":2,"2600":1,"2603":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2610":2,"2619":2,"2633":1,"2634":2,"2637":1,"2640":4,"2662":1,"2669":1,"2670":1,"2685":1,"2686":1,"2687":1,"2694":1,"2709":1,"2714":2,"2726":5,"2727":1,"2728":7,"2735":1,"2753":2,"2795":1,"2827":1,"2851":5,"2884":1,"2885":1,"2945":4}}],["finnish",{"2":{"2887":3}}],["finger",{"2":{"1413":1,"1971":3,"1977":1,"2070":3,"2300":1,"2301":1}}],["fingers",{"2":{"1413":1,"1497":1,"1971":1}}],["fingerprintusbhost",{"2":{"1963":1}}],["fingerprint",{"2":{"199":1,"1962":1}}],["finite",{"2":{"575":1}}],["finishing",{"0":{"2435":1},"2":{"564":1}}],["finishes",{"2":{"393":1,"2309":2,"2310":1,"2935":1}}],["finished",{"0":{"382":1,"584":1},"2":{"324":1,"378":1,"381":1,"382":1,"581":1,"707":1,"735":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1229":1,"1233":1,"1237":1,"1239":1,"1306":1,"1850":2,"2057":1,"2088":2,"2309":2,"2310":5,"2315":2,"2316":2,"2317":3,"2318":3,"2319":4,"2508":1}}],["finish",{"0":{"2345":1,"2369":1},"2":{"393":1,"1661":2,"1663":1,"1801":1,"1811":1,"2530":1,"2662":1}}],["finalized",{"2":{"2913":1}}],["finalize",{"2":{"2387":1}}],["final",{"0":{"2895":1},"2":{"555":1,"558":1,"581":1,"673":1,"1362":4,"1538":1,"2309":1,"2428":1,"2674":1,"2854":1,"2889":1,"2941":1}}],["finally",{"2":{"178":1,"392":1,"686":1,"1409":1,"1446":1,"2059":1,"2259":1,"2310":1,"2319":1,"2329":1,"2506":1,"2691":1,"2719":1}}],["finer",{"2":{"2252":1,"2522":1}}],["fine40",{"2":{"222":1}}],["fine",{"0":{"2047":1},"2":{"191":1,"1338":1,"1492":1,"1517":1,"1787":1,"1791":1,"2048":1,"2076":1,"2077":1,"2265":1,"2298":1,"2587":1,"2629":1,"2659":1,"2667":1,"2728":2,"2731":1,"2913":1,"2922":1,"2932":1}}],["finder",{"2":{"2406":1,"2408":1,"2410":1,"2614":2}}],["finds",{"2":{"1332":1,"1333":1}}],["finding",{"2":{"610":1}}],["find",{"0":{"433":1,"2850":1},"2":{"21":4,"24":1,"124":1,"222":1,"233":1,"236":2,"240":1,"245":1,"248":1,"249":1,"285":1,"393":1,"397":1,"398":1,"414":3,"418":1,"429":1,"433":4,"489":1,"505":1,"513":1,"540":3,"605":1,"607":1,"610":1,"661":1,"675":1,"687":1,"688":1,"749":1,"1200":1,"1203":1,"1204":1,"1287":1,"1337":1,"1338":1,"1340":1,"1382":1,"1405":1,"1451":1,"1503":2,"1528":1,"1681":1,"1762":1,"1788":1,"2057":1,"2208":1,"2265":1,"2273":1,"2319":1,"2384":1,"2414":2,"2417":1,"2428":1,"2430":1,"2437":1,"2503":1,"2516":2,"2522":2,"2560":1,"2561":2,"2562":1,"2580":1,"2581":1,"2585":3,"2589":1,"2634":2,"2695":1,"2717":1,"2869":1,"2910":1,"2912":2,"2927":1,"2929":1,"2935":1,"2936":1,"2940":1,"2942":1,"2947":1}}],["fields",{"2":{"175":1,"308":1,"323":1,"1630":1,"1642":1,"2663":1,"2765":1,"2772":1}}],["field",{"2":{"149":1,"308":1,"339":1,"397":1,"412":5,"688":1,"1419":20,"1630":2,"1785":1,"2310":1,"2606":1,"2795":2,"2889":1,"2927":1}}],["fitler",{"2":{"1527":2,"1538":2}}],["fits",{"2":{"1492":1,"2329":1}}],["fitness",{"2":{"1467":1,"2732":1}}],["fit",{"2":{"124":2,"134":1,"414":1,"1423":1,"1662":1,"1954":2,"2290":2,"2714":1,"2888":2}}],["fitting",{"2":{"114":1}}],["firefox",{"2":{"2589":1}}],["fired",{"2":{"2418":1}}],["fire",{"2":{"1612":3,"1681":2,"2310":1}}],["firstly",{"2":{"2256":1,"2508":1}}],["first",{"0":{"2582":1,"2659":1},"1":{"2583":1,"2584":1,"2585":1,"2586":1,"2587":1,"2588":1},"2":{"36":1,"65":1,"90":2,"113":1,"114":1,"120":1,"130":1,"157":1,"201":1,"210":1,"288":1,"317":1,"346":1,"420":2,"423":1,"489":1,"512":1,"521":1,"524":1,"555":1,"560":1,"564":1,"565":1,"603":1,"609":1,"610":2,"612":1,"613":2,"629":1,"647":1,"656":1,"657":1,"665":1,"687":1,"704":2,"706":1,"716":1,"726":1,"729":1,"733":1,"754":2,"755":1,"805":1,"809":1,"831":1,"835":1,"863":1,"867":1,"893":1,"897":1,"928":1,"932":1,"962":1,"966":1,"996":1,"1000":1,"1030":1,"1034":1,"1064":1,"1068":1,"1098":1,"1102":1,"1132":1,"1136":1,"1166":1,"1170":1,"1219":1,"1223":1,"1252":1,"1285":1,"1297":1,"1298":1,"1305":1,"1337":1,"1344":1,"1348":1,"1366":1,"1381":2,"1427":1,"1446":2,"1472":1,"1510":1,"1538":3,"1539":1,"1605":1,"1612":1,"1614":1,"1615":1,"1616":1,"1622":1,"1627":1,"1661":1,"1668":2,"1702":2,"1720":1,"1722":1,"1763":1,"1786":2,"1824":1,"1827":1,"1830":1,"1833":1,"1846":1,"1913":1,"1916":1,"1919":1,"1939":1,"1944":1,"1952":1,"1967":1,"1974":1,"1983":1,"1986":1,"2057":1,"2059":2,"2076":1,"2082":1,"2085":1,"2173":1,"2176":1,"2210":1,"2269":1,"2272":1,"2273":1,"2278":1,"2284":1,"2295":1,"2309":4,"2310":3,"2319":1,"2330":2,"2416":1,"2425":1,"2428":1,"2436":1,"2460":1,"2464":2,"2484":1,"2488":1,"2580":1,"2590":1,"2612":1,"2630":1,"2633":1,"2634":3,"2635":1,"2640":1,"2650":1,"2669":1,"2674":1,"2676":1,"2718":1,"2727":2,"2728":1,"2755":2,"2757":1,"2776":8,"2782":1,"2794":1,"2796":1,"2804":1,"2837":1,"2838":1,"2855":2,"2869":1,"2883":1,"2889":1,"2905":1,"2920":1,"2922":1,"2927":2,"2935":1,"2939":1}}],["firmwares",{"2":{"179":1,"188":1,"263":1,"430":1,"2589":1}}],["firmware",{"0":{"21":1,"24":1,"56":1,"179":1,"273":1,"276":1,"284":1,"601":1,"1337":1,"2268":1,"2432":1,"2433":1,"2434":1,"2470":1,"2473":1,"2476":1,"2477":1,"2497":1,"2504":1,"2582":1,"2587":1,"2588":1,"2815":1,"2854":1},"1":{"2269":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2275":1,"2276":1,"2277":1,"2278":1,"2477":1,"2478":1,"2479":1,"2480":1,"2481":1,"2498":1,"2499":1,"2500":1,"2501":1,"2583":1,"2584":1,"2585":1,"2586":1,"2587":1,"2588":1},"2":{"2":1,"3":1,"11":1,"14":1,"18":2,"20":2,"23":2,"26":1,"27":1,"33":1,"39":1,"43":1,"48":1,"70":3,"73":1,"107":1,"112":1,"114":3,"116":1,"124":1,"130":2,"131":1,"132":1,"145":1,"149":4,"179":1,"181":1,"201":1,"203":1,"210":2,"212":1,"224":2,"228":3,"236":1,"238":1,"240":1,"243":1,"249":4,"265":2,"266":2,"268":1,"273":5,"275":1,"276":3,"284":3,"320":1,"331":1,"340":1,"353":1,"354":1,"367":3,"371":1,"372":1,"377":1,"378":3,"379":1,"380":1,"382":5,"394":1,"403":2,"405":2,"406":2,"407":2,"408":1,"409":2,"411":2,"414":2,"422":4,"425":1,"429":8,"430":2,"432":1,"434":1,"441":1,"446":1,"447":2,"450":1,"452":2,"453":2,"456":1,"464":1,"489":1,"509":2,"510":1,"517":3,"565":1,"572":3,"574":2,"578":1,"580":2,"586":1,"588":3,"589":2,"592":2,"593":1,"594":1,"595":1,"598":1,"601":1,"602":1,"607":2,"609":1,"610":1,"611":1,"633":2,"651":4,"720":1,"754":1,"1298":1,"1311":1,"1313":1,"1316":1,"1320":1,"1335":1,"1348":1,"1365":2,"1366":1,"1388":1,"1395":1,"1421":1,"1463":1,"1472":2,"1500":1,"1521":1,"1522":1,"1524":1,"1591":1,"1627":2,"1702":1,"1849":1,"1851":1,"1948":1,"1957":2,"2001":1,"2068":1,"2085":2,"2090":1,"2181":1,"2184":1,"2189":1,"2261":2,"2270":1,"2271":1,"2272":2,"2273":2,"2275":1,"2281":1,"2297":2,"2308":1,"2309":1,"2325":1,"2374":2,"2375":2,"2379":1,"2382":1,"2384":3,"2387":4,"2391":2,"2393":3,"2398":1,"2400":4,"2405":2,"2407":2,"2409":2,"2410":1,"2414":1,"2417":2,"2418":1,"2423":2,"2431":2,"2432":7,"2434":1,"2435":1,"2450":2,"2451":1,"2459":1,"2466":5,"2467":1,"2468":1,"2469":1,"2470":3,"2473":1,"2475":1,"2477":1,"2482":1,"2484":1,"2488":1,"2496":1,"2500":1,"2501":1,"2504":6,"2506":1,"2558":1,"2559":2,"2566":2,"2567":10,"2568":9,"2569":4,"2570":3,"2571":1,"2579":1,"2580":3,"2582":2,"2583":1,"2584":1,"2585":1,"2587":3,"2588":2,"2589":1,"2590":7,"2591":1,"2594":1,"2595":1,"2596":2,"2597":1,"2598":1,"2599":1,"2607":4,"2609":3,"2611":1,"2612":2,"2613":1,"2614":6,"2615":1,"2616":2,"2617":1,"2618":1,"2628":1,"2629":5,"2630":1,"2632":1,"2637":10,"2639":6,"2643":1,"2655":1,"2659":1,"2662":1,"2664":1,"2665":1,"2667":1,"2669":1,"2671":1,"2672":1,"2673":1,"2674":6,"2675":1,"2683":1,"2684":1,"2685":1,"2686":1,"2705":1,"2714":1,"2728":5,"2731":1,"2733":2,"2734":1,"2735":1,"2739":2,"2742":1,"2747":2,"2749":1,"2750":1,"2753":1,"2755":6,"2756":12,"2757":2,"2758":1,"2759":1,"2794":2,"2807":1,"2827":1,"2851":3,"2852":1,"2854":1,"2888":1,"2889":2,"2892":2,"2893":1,"2895":1,"2901":1,"2902":4,"2904":1,"2912":1,"2920":1,"2921":1,"2931":1,"2934":1,"2937":2,"2941":1,"2948":1}}],["fixme",{"2":{"541":1}}],["fixmes",{"0":{"541":1},"2":{"541":2}}],["fixups",{"2":{"114":1}}],["fixup",{"2":{"65":1,"92":2,"114":6,"134":3,"149":3,"160":2,"175":23,"191":9,"199":9,"210":3,"222":13,"236":1,"249":7,"266":4,"277":4,"285":1,"308":1,"317":1,"328":4}}],["fixing",{"0":{"18":1},"2":{"40":1,"114":1,"199":1,"236":1,"610":1,"2730":2}}],["fixed",{"0":{"15":1},"2":{"15":1,"40":1,"73":1,"86":1,"114":1,"149":1,"160":1,"175":1,"199":1,"222":2,"236":1,"266":1,"308":1,"493":1,"629":1,"1373":1,"2473":1,"2628":1,"2651":1,"2741":1}}],["fixes",{"0":{"38":1,"62":1,"73":1,"92":1},"2":{"5":1,"73":2,"92":1,"114":3,"134":3,"149":8,"160":4,"174":2,"175":7,"191":7,"199":3,"210":1,"222":2,"236":2,"249":1,"266":2,"277":3,"285":2,"294":1,"308":2,"317":3,"328":1,"333":2,"405":1,"2678":1}}],["fix",{"0":{"44":1},"2":{"6":1,"18":1,"22":1,"40":1,"41":1,"62":1,"73":6,"74":1,"75":1,"77":1,"92":8,"94":2,"95":2,"114":68,"133":1,"134":42,"149":32,"160":12,"174":2,"175":47,"190":1,"191":40,"199":25,"210":23,"222":25,"236":17,"249":19,"266":10,"277":5,"285":4,"294":5,"308":10,"317":4,"328":7,"333":3,"339":6,"414":1,"435":3,"607":2,"613":2,"1318":1,"1339":2,"1348":1,"1490":1,"1595":1,"1961":1,"2454":1,"2474":1,"2554":2,"2573":2,"2616":1,"2628":2,"2632":1,"2651":1,"2726":1,"2735":1,"2747":1}}],["footprint",{"0":{"2186":1},"2":{"2679":1,"2689":1}}],["footnotes",{"2":{"341":1}}],["foo=none",{"2":{"533":1}}],["foo=",{"2":{"533":1}}],["foo",{"2":{"512":6,"516":1,"518":1,"533":2,"534":1,"535":2,"629":2,"631":2,"1417":1}}],["font",{"0":{"467":1,"468":1,"2765":1,"2767":1,"2770":1,"2771":1},"1":{"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1},"2":{"328":1,"467":1,"468":1,"1946":5,"1949":8,"2285":1,"2288":8,"2755":18,"2757":34,"2765":6,"2766":1,"2767":6,"2768":2,"2769":3,"2770":4,"2771":1}}],["fonts",{"2":{"153":2,"248":1,"249":1,"328":1,"1949":3,"2288":3,"2753":2,"2754":5,"2755":1,"2757":5}}],["fox",{"2":{"222":1}}],["focused",{"2":{"540":1,"2580":1}}],["focuses",{"2":{"340":1}}],["focusing",{"2":{"233":1}}],["focus",{"2":{"166":1,"201":1,"489":1,"1675":1,"1788":1,"2663":1,"2929":1}}],["foundational",{"2":{"2908":1}}],["foundation",{"2":{"1467":1,"2732":1}}],["found",{"0":{"1339":1},"2":{"124":2,"221":1,"288":1,"332":1,"337":1,"382":1,"386":1,"389":1,"397":1,"429":1,"435":1,"489":1,"505":1,"542":1,"543":1,"588":1,"605":1,"749":1,"750":1,"751":1,"761":1,"1350":1,"1377":1,"1427":1,"1485":1,"1525":1,"1532":1,"1539":1,"1738":1,"1948":1,"2057":1,"2059":1,"2287":1,"2291":1,"2293":1,"2294":1,"2374":1,"2401":1,"2412":3,"2415":2,"2418":1,"2426":1,"2435":1,"2473":1,"2508":1,"2517":1,"2572":1,"2583":1,"2590":1,"2592":1,"2628":1,"2629":1,"2683":1,"2694":1,"2710":1,"2755":1,"2757":1,"2835":1,"2906":1,"2935":1,"2950":1}}],["fourth",{"2":{"1493":1,"1830":1,"1833":1,"2300":1,"2309":1,"2315":2}}],["fourier",{"2":{"35":1}}],["four",{"0":{"1829":1},"1":{"1830":1,"1831":1},"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"143":2,"149":1,"512":1,"514":1,"588":1,"724":1,"826":1,"829":1,"855":1,"858":1,"887":1,"890":1,"919":1,"954":1,"988":1,"991":1,"1022":1,"1025":1,"1056":1,"1059":1,"1090":1,"1124":1,"1158":1,"1214":1,"1217":1,"1378":1,"1667":1,"1699":1,"2240":1,"2252":1,"2300":2,"2503":1,"2507":1,"2794":1,"2882":2}}],["folks",{"2":{"405":1,"406":1,"407":1,"408":1,"411":1}}],["foldkb",{"2":{"134":1}}],["folder2",{"2":{"1438":1}}],["folder1",{"2":{"1438":1}}],["folder>",{"2":{"1433":3}}],["folder",{"0":{"33":1,"293":1,"305":1,"314":1,"2451":1},"1":{"2452":1,"2453":1,"2454":1,"2455":1,"2456":1,"2457":1},"2":{"70":1,"72":2,"111":1,"113":3,"114":5,"133":1,"134":1,"149":20,"160":2,"191":2,"199":2,"215":1,"222":6,"236":1,"249":10,"266":1,"277":2,"293":2,"294":10,"305":2,"314":2,"317":2,"348":1,"353":2,"393":3,"397":1,"429":1,"432":1,"446":1,"556":1,"558":2,"572":1,"611":1,"612":2,"624":1,"625":1,"1433":2,"1434":3,"1438":2,"1463":2,"1466":1,"1472":1,"1485":1,"1500":1,"1502":1,"1527":4,"1850":1,"2088":1,"2412":3,"2413":1,"2414":1,"2415":1,"2417":1,"2449":1,"2450":4,"2451":2,"2454":14,"2455":15,"2462":3,"2587":1,"2605":2,"2606":2,"2608":1,"2610":1,"2614":1,"2628":1,"2629":1,"2658":1,"2659":3,"2669":3,"2672":2,"2728":1,"2795":1,"2945":5,"2947":1}}],["folders",{"0":{"558":1,"2450":1},"2":{"25":1,"27":1,"33":1,"114":1,"149":1,"210":1,"215":1,"293":1,"305":1,"308":1,"314":1,"555":1,"557":1,"558":3,"1433":1,"2417":3,"2450":3,"2454":1,"2945":1}}],["followed",{"2":{"423":1,"675":1,"1410":1,"1413":3,"1444":1,"1448":2,"1538":2,"1634":1,"1786":3,"2566":1,"2655":1,"2726":2,"2755":1,"2767":1,"2774":1,"2776":2,"2825":1,"2919":1}}],["followup",{"2":{"149":1,"224":1,"2729":1}}],["follow",{"2":{"114":1,"125":1,"169":1,"228":1,"240":1,"512":3,"612":1,"613":2,"665":1,"666":1,"668":2,"683":1,"1195":1,"1198":1,"1201":1,"1203":1,"1204":1,"1343":1,"1425":1,"1539":1,"1593":1,"1637":1,"2331":1,"2452":1,"2459":1,"2468":1,"2579":1,"2580":1,"2603":1,"2624":1,"2627":1,"2628":1,"2658":1,"2715":1,"2728":1,"2792":1,"2945":1}}],["following",{"2":{"20":1,"21":2,"23":1,"24":3,"35":1,"67":1,"86":1,"102":1,"118":1,"119":1,"122":1,"125":1,"143":1,"146":1,"158":1,"159":1,"165":1,"169":1,"182":1,"183":1,"194":2,"197":1,"212":1,"217":1,"248":1,"255":2,"256":1,"273":1,"284":1,"303":1,"306":1,"307":1,"315":1,"316":1,"338":1,"380":1,"383":1,"430":2,"433":1,"475":1,"509":1,"512":1,"521":1,"546":1,"573":1,"575":1,"593":1,"609":1,"624":1,"625":2,"647":2,"657":1,"661":1,"669":1,"674":1,"691":1,"703":1,"704":1,"721":1,"723":1,"726":1,"727":1,"729":1,"742":1,"744":1,"745":1,"761":1,"763":1,"765":1,"767":1,"768":1,"802":1,"805":1,"828":1,"829":1,"831":1,"857":1,"858":1,"859":1,"860":1,"861":1,"863":1,"889":1,"890":1,"891":1,"893":1,"921":1,"922":1,"924":1,"925":1,"926":1,"928":1,"956":1,"957":1,"958":1,"959":1,"960":1,"962":1,"990":1,"991":1,"992":1,"993":1,"994":1,"996":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1030":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1064":1,"1092":1,"1093":1,"1095":1,"1096":1,"1098":1,"1126":1,"1127":1,"1129":1,"1130":1,"1132":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1166":1,"1203":3,"1204":3,"1205":1,"1216":1,"1217":1,"1219":1,"1246":1,"1248":1,"1267":1,"1284":1,"1285":1,"1287":1,"1288":1,"1291":1,"1295":1,"1297":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1316":1,"1322":1,"1329":1,"1331":1,"1332":1,"1358":1,"1372":1,"1379":1,"1382":1,"1389":1,"1390":1,"1392":1,"1393":1,"1395":1,"1403":1,"1405":1,"1407":1,"1412":1,"1413":1,"1414":1,"1419":2,"1428":1,"1463":1,"1465":1,"1472":1,"1474":1,"1480":1,"1484":1,"1490":1,"1503":2,"1517":1,"1518":1,"1525":1,"1535":1,"1539":2,"1542":1,"1544":1,"1545":1,"1553":1,"1554":2,"1556":1,"1557":1,"1578":1,"1579":1,"1594":1,"1606":1,"1609":2,"1612":1,"1620":1,"1622":1,"1627":1,"1628":2,"1630":1,"1638":1,"1640":1,"1661":1,"1663":1,"1667":1,"1670":1,"1678":2,"1683":1,"1687":1,"1690":1,"1692":1,"1693":1,"1694":1,"1695":1,"1698":1,"1699":1,"1701":1,"1739":1,"1741":1,"1742":1,"1743":1,"1776":1,"1788":1,"1791":1,"1793":1,"1795":1,"1797":1,"1800":1,"1801":1,"1802":1,"1803":1,"1837":1,"1845":1,"1846":1,"1851":1,"1919":1,"1921":1,"1922":1,"1932":1,"1933":1,"1934":1,"1935":1,"1936":1,"1937":1,"1940":1,"1944":1,"1946":1,"1957":1,"1964":1,"1968":1,"1979":1,"1982":1,"1984":2,"1987":1,"1990":1,"1995":1,"1996":1,"1997":1,"2006":1,"2011":1,"2015":2,"2017":1,"2041":1,"2044":1,"2046":1,"2047":1,"2048":1,"2053":1,"2055":1,"2056":1,"2057":1,"2059":1,"2068":1,"2069":1,"2070":1,"2071":1,"2073":1,"2075":1,"2077":1,"2079":1,"2081":1,"2082":1,"2086":1,"2087":1,"2090":1,"2178":1,"2179":2,"2185":1,"2186":1,"2207":1,"2210":1,"2215":1,"2220":1,"2221":1,"2222":1,"2225":1,"2250":1,"2256":1,"2268":1,"2269":1,"2271":1,"2272":2,"2273":2,"2274":2,"2276":1,"2284":1,"2285":1,"2294":1,"2295":1,"2296":1,"2297":1,"2305":1,"2317":1,"2318":1,"2319":2,"2326":1,"2327":1,"2328":1,"2329":2,"2330":1,"2331":1,"2375":1,"2376":1,"2384":1,"2389":1,"2390":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":2,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2414":1,"2415":1,"2417":2,"2423":1,"2437":1,"2453":1,"2455":2,"2456":1,"2466":3,"2483":1,"2502":1,"2503":1,"2506":1,"2508":3,"2561":1,"2565":1,"2567":2,"2568":1,"2575":1,"2576":1,"2599":1,"2601":2,"2602":1,"2605":1,"2607":1,"2608":2,"2610":1,"2612":1,"2615":1,"2621":1,"2628":4,"2634":1,"2639":2,"2674":3,"2684":2,"2692":1,"2700":1,"2703":1,"2709":3,"2722":1,"2728":1,"2753":1,"2755":2,"2756":34,"2757":2,"2759":1,"2773":1,"2776":1,"2885":1,"2910":4,"2920":3,"2921":2,"2922":3,"2925":2,"2926":1,"2927":1,"2929":4,"2931":1,"2934":1,"2949":1}}],["follows",{"2":{"0":1,"9":1,"21":1,"160":1,"214":1,"231":1,"234":1,"383":1,"514":1,"572":1,"593":1,"1378":1,"1632":1,"1937":1,"2048":1,"2051":1,"2454":2,"2455":1,"2472":1,"2600":1,"2614":1,"2696":1,"2765":1,"2770":1,"2772":1,"2775":1,"2776":2,"2792":1,"2795":1}}],["forum",{"2":{"2898":1}}],["forums",{"2":{"2481":1}}],["forbids",{"2":{"2736":1}}],["forgot",{"2":{"2912":1}}],["forget",{"2":{"2074":3}}],["forgiveness",{"2":{"525":1}}],["forever",{"2":{"2936":1}}],["forever60",{"2":{"448":5}}],["foremost",{"2":{"2889":1}}],["foreground",{"2":{"494":4}}],["foreach",{"2":{"411":1}}],["forth",{"2":{"403":1,"2294":1,"2390":1,"2397":1}}],["forcing",{"2":{"303":1,"338":1,"2275":1}}],["forcibly",{"2":{"40":1,"2278":1}}],["forceon",{"2":{"763":4}}],["forces",{"2":{"574":1,"763":1,"1392":1,"1393":1,"2216":1}}],["forced",{"2":{"570":1,"1378":1,"2275":1}}],["forcefully",{"2":{"236":1}}],["force",{"0":{"195":1,"230":1,"303":2,"338":2},"2":{"112":3,"160":1,"195":4,"199":2,"222":2,"226":2,"236":3,"249":1,"277":1,"308":4,"317":1,"339":1,"411":1,"423":2,"463":2,"563":1,"652":1,"653":1,"1205":1,"1315":1,"1320":1,"1417":1,"1436":3,"1961":1,"2008":2,"2044":1,"2218":1,"2389":2,"2434":1,"2615":1,"2637":2,"2728":1,"2789":1,"2882":1}}],["forming",{"2":{"2872":1}}],["formulas",{"2":{"1968":1}}],["formula",{"2":{"1846":1,"2082":1}}],["formed",{"2":{"1525":1}}],["former",{"2":{"1315":1,"1351":1}}],["formerly",{"2":{"27":1,"1592":2,"1623":1}}],["forms",{"2":{"512":1,"1480":1,"1497":1}}],["formally",{"2":{"294":1}}],["formalise",{"2":{"175":1}}],["formatstring",{"2":{"2854":1}}],["formats",{"2":{"433":1,"436":1,"458":1,"459":1,"464":1,"2614":1,"2755":1}}],["formatters",{"2":{"114":1}}],["formatted",{"2":{"1":1,"40":1,"76":1,"541":1,"671":1,"1327":2,"2795":1}}],["formatting",{"0":{"1":1,"501":1,"503":1,"504":1,"513":1},"1":{"502":1,"503":1,"504":1,"505":1,"506":1},"2":{"73":1,"149":1,"191":1,"249":2,"333":2,"491":1,"521":1,"2653":1,"2664":1}}],["format",{"0":{"1":1,"436":1,"458":1,"459":1,"464":1,"513":1,"529":1,"1444":1,"1537":1,"2765":1,"2772":1},"1":{"1538":1,"1539":1,"2766":1,"2767":1,"2768":1,"2769":1,"2770":1,"2771":1,"2773":1,"2774":1,"2775":1,"2776":1,"2777":1,"2778":1,"2779":1},"2":{"1":2,"93":1,"112":1,"114":2,"134":5,"149":1,"160":1,"175":1,"199":1,"222":2,"248":1,"249":1,"277":1,"308":1,"383":1,"403":2,"433":1,"436":4,"437":1,"443":1,"458":1,"459":7,"464":1,"466":2,"467":2,"468":1,"491":2,"501":2,"503":1,"504":2,"513":9,"521":1,"526":1,"527":2,"529":1,"555":1,"572":2,"588":1,"592":1,"669":1,"1356":1,"1378":1,"1435":1,"1538":3,"1539":1,"1638":1,"2238":1,"2240":1,"2242":1,"2244":1,"2295":1,"2296":1,"2300":1,"2384":1,"2458":1,"2464":1,"2504":1,"2508":1,"2598":1,"2610":1,"2614":1,"2629":1,"2728":1,"2755":21,"2756":13,"2757":2,"2765":5,"2767":4,"2772":6,"2773":1,"2774":1,"2775":1,"2776":6,"2777":2,"2779":1,"2795":1,"2854":1,"2869":1,"2882":1}}],["form",{"2":{"110":1,"452":1,"453":1,"475":1,"476":1,"512":1,"1320":1,"1419":1,"1635":1,"1636":1,"2272":1,"2300":1,"2317":1,"2738":1,"2741":1,"2795":1,"2812":1,"2852":2,"2853":1,"2927":1}}],["forwards",{"2":{"2377":1,"2528":1}}],["forward",{"2":{"26":1,"27":1,"33":1,"113":1,"134":1,"168":1,"254":1,"268":1,"1417":1,"1618":1,"1846":1,"1954":1,"2068":4,"2082":1,"2181":1,"2290":1,"2449":1,"2516":1,"2517":5,"2522":5,"2544":1,"2730":1,"2947":1}}],["forked",{"0":{"2592":1},"2":{"2562":1,"2632":1,"2903":1}}],["forks",{"0":{"16":1},"2":{"411":1,"1343":1,"2902":1}}],["forking",{"2":{"11":1,"2387":1}}],["fork",{"0":{"5":1,"2638":1},"1":{"2639":1,"2640":1,"2641":1},"2":{"16":1,"36":1,"191":1,"228":1,"411":1,"607":1,"609":1,"1335":1,"1343":3,"2387":7,"2389":1,"2390":1,"2397":1,"2412":1,"2501":1,"2568":1,"2571":1,"2590":1,"2592":2,"2595":1,"2598":1,"2628":1,"2632":1,"2633":1,"2635":1,"2637":7,"2639":3,"2640":2,"2641":2,"2709":1,"2710":2,"2730":3}}],["for",{"0":{"16":1,"25":1,"44":1,"47":2,"56":1,"80":1,"138":1,"189":1,"214":1,"231":1,"246":1,"320":1,"412":1,"418":1,"507":1,"509":1,"569":1,"592":1,"593":1,"600":1,"606":1,"615":1,"619":1,"1210":1,"1318":1,"1331":1,"1341":1,"1347":1,"1380":1,"1381":1,"1437":1,"1781":1,"1782":1,"1783":1,"1924":1,"2005":1,"2009":1,"2015":1,"2298":1,"2318":1,"2319":1,"2431":1,"2631":1,"2653":1,"2661":1,"2664":1,"2672":1,"2711":2,"2712":1,"2713":1,"2726":1,"2748":1,"2850":1,"2932":1,"2945":1},"1":{"26":1,"508":1,"509":1,"510":1,"511":1,"1211":1,"1212":1,"1213":1,"1342":1,"1438":1,"1439":1,"1784":1,"1785":1,"1786":1,"2006":1,"2632":1,"2662":1,"2663":1,"2673":1},"2":{"0":1,"8":2,"9":1,"18":1,"20":3,"21":3,"23":3,"24":1,"25":1,"26":9,"29":1,"35":5,"39":14,"40":10,"41":1,"42":1,"45":1,"46":3,"47":1,"51":3,"52":1,"55":2,"63":2,"64":1,"65":4,"69":2,"70":1,"74":7,"75":3,"76":1,"81":1,"82":1,"86":2,"88":1,"89":1,"90":1,"92":4,"93":21,"94":3,"98":2,"99":4,"104":1,"107":2,"108":1,"111":1,"112":1,"114":58,"116":1,"118":5,"119":2,"120":2,"123":2,"125":3,"127":1,"128":1,"130":3,"131":1,"132":1,"133":1,"134":38,"138":2,"142":1,"145":1,"146":1,"149":33,"152":3,"153":6,"154":1,"156":2,"158":1,"160":21,"163":1,"166":4,"167":1,"169":4,"170":2,"172":7,"173":3,"174":3,"175":52,"178":3,"179":1,"181":2,"184":2,"187":4,"188":2,"189":4,"190":5,"191":45,"194":7,"195":2,"196":1,"199":28,"201":6,"203":1,"210":15,"212":7,"213":1,"214":1,"215":1,"217":2,"220":1,"221":2,"222":32,"224":1,"228":5,"229":3,"230":2,"231":2,"232":3,"234":2,"235":1,"236":26,"240":1,"241":1,"243":1,"246":1,"247":2,"248":2,"249":27,"253":1,"255":4,"256":1,"257":1,"258":1,"259":2,"262":1,"263":4,"264":1,"265":1,"266":18,"270":1,"271":1,"272":1,"273":2,"274":1,"276":1,"277":8,"279":2,"281":1,"282":1,"283":5,"284":1,"285":12,"288":3,"289":1,"292":1,"293":1,"294":10,"297":1,"298":2,"301":1,"303":1,"304":1,"305":1,"306":1,"307":2,"308":17,"313":1,"315":1,"316":1,"317":9,"320":2,"326":1,"328":4,"331":2,"332":1,"333":4,"336":1,"337":1,"338":1,"339":6,"341":2,"344":6,"346":1,"365":1,"366":1,"367":1,"369":1,"372":1,"373":1,"377":1,"378":2,"381":1,"382":4,"383":3,"384":2,"390":1,"393":6,"394":1,"396":3,"397":2,"398":2,"401":1,"402":3,"403":7,"405":4,"406":4,"407":2,"408":2,"409":3,"411":3,"412":10,"414":2,"417":3,"426":2,"429":5,"430":5,"431":1,"432":1,"433":7,"435":1,"437":3,"442":1,"443":1,"444":1,"452":2,"453":2,"454":1,"459":4,"460":1,"461":2,"462":1,"466":1,"467":2,"468":1,"472":2,"474":2,"477":2,"486":1,"489":2,"490":2,"491":3,"492":1,"495":1,"496":3,"500":1,"505":2,"507":1,"512":3,"513":3,"514":2,"516":1,"520":1,"525":3,"529":3,"530":1,"531":1,"532":1,"533":1,"538":1,"539":1,"540":1,"542":1,"544":2,"545":2,"552":1,"554":2,"555":4,"557":1,"558":1,"559":1,"561":10,"563":1,"564":21,"565":4,"568":4,"569":1,"570":11,"571":1,"572":1,"574":8,"578":1,"580":1,"581":2,"582":1,"584":1,"587":1,"588":2,"589":3,"591":1,"592":1,"593":1,"594":2,"595":1,"596":1,"599":2,"600":2,"603":4,"604":1,"607":6,"609":5,"610":3,"612":5,"613":4,"614":1,"615":2,"618":2,"623":2,"624":1,"625":3,"626":1,"627":1,"628":1,"630":2,"631":1,"633":5,"634":3,"637":1,"639":2,"645":1,"647":3,"648":1,"651":6,"652":2,"653":2,"656":3,"657":1,"660":1,"661":1,"665":1,"666":1,"667":1,"668":2,"669":3,"670":2,"672":1,"673":4,"674":1,"676":1,"681":2,"683":1,"684":3,"685":1,"686":5,"687":5,"688":2,"689":1,"690":4,"695":2,"696":1,"698":3,"699":7,"701":5,"702":1,"715":1,"716":4,"717":4,"718":1,"720":1,"721":7,"722":3,"731":1,"732":3,"741":1,"742":1,"743":1,"744":1,"746":4,"748":1,"749":5,"750":2,"751":1,"752":2,"753":4,"754":3,"755":4,"756":1,"757":2,"762":2,"766":3,"768":9,"769":1,"770":1,"772":3,"774":1,"776":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"797":3,"798":1,"801":2,"805":2,"807":1,"808":4,"820":1,"822":1,"827":2,"831":2,"833":1,"834":4,"847":1,"849":1,"856":2,"860":4,"863":2,"865":1,"866":4,"879":1,"880":3,"881":1,"882":1,"888":2,"891":1,"893":2,"895":1,"896":4,"901":1,"911":1,"913":1,"920":2,"921":4,"924":1,"925":4,"928":2,"930":1,"931":4,"936":1,"946":1,"948":1,"955":2,"958":1,"959":4,"962":2,"964":1,"965":4,"970":1,"980":1,"982":1,"989":2,"992":1,"993":4,"996":2,"998":1,"999":4,"1004":1,"1014":1,"1016":1,"1023":2,"1026":1,"1027":4,"1030":2,"1032":1,"1033":4,"1038":1,"1048":1,"1050":1,"1057":2,"1061":4,"1064":2,"1066":1,"1067":4,"1072":1,"1082":1,"1083":3,"1084":1,"1085":1,"1091":2,"1092":4,"1095":4,"1098":2,"1100":1,"1101":4,"1106":1,"1116":1,"1117":3,"1118":1,"1119":1,"1125":2,"1126":4,"1129":4,"1132":2,"1134":1,"1135":4,"1140":1,"1150":1,"1151":3,"1152":1,"1153":1,"1159":2,"1163":4,"1166":2,"1168":1,"1169":4,"1174":1,"1184":1,"1185":3,"1186":1,"1187":1,"1192":3,"1193":1,"1194":3,"1197":5,"1198":5,"1200":6,"1201":6,"1203":3,"1204":2,"1205":1,"1207":1,"1209":1,"1210":1,"1213":2,"1215":2,"1219":2,"1221":1,"1222":4,"1227":1,"1237":1,"1239":1,"1248":8,"1252":1,"1269":11,"1283":1,"1286":1,"1287":1,"1288":1,"1289":1,"1290":1,"1291":1,"1292":1,"1297":1,"1299":4,"1300":2,"1303":5,"1311":1,"1312":1,"1315":1,"1317":1,"1318":2,"1319":2,"1320":1,"1324":1,"1326":1,"1328":1,"1329":2,"1330":3,"1331":1,"1332":3,"1335":2,"1341":1,"1343":2,"1345":1,"1347":3,"1348":2,"1350":1,"1352":1,"1353":1,"1354":1,"1356":2,"1359":1,"1361":1,"1365":2,"1371":2,"1372":1,"1377":3,"1378":9,"1380":1,"1381":1,"1382":1,"1388":2,"1392":1,"1393":1,"1395":1,"1397":2,"1398":1,"1400":1,"1401":1,"1403":1,"1405":2,"1406":1,"1407":3,"1409":4,"1410":6,"1413":5,"1414":1,"1415":1,"1416":3,"1417":7,"1419":2,"1420":1,"1421":3,"1422":5,"1423":4,"1426":3,"1427":2,"1428":10,"1429":1,"1430":1,"1433":2,"1434":1,"1436":1,"1438":2,"1439":3,"1440":1,"1444":4,"1446":4,"1447":1,"1448":3,"1450":1,"1451":3,"1455":2,"1456":1,"1462":1,"1463":1,"1464":3,"1465":2,"1466":4,"1467":2,"1468":2,"1469":2,"1470":2,"1471":5,"1472":6,"1474":2,"1475":3,"1476":1,"1477":1,"1478":3,"1479":1,"1480":1,"1482":1,"1485":1,"1486":5,"1488":2,"1489":1,"1490":2,"1491":1,"1492":4,"1493":5,"1497":2,"1498":3,"1499":4,"1501":3,"1503":5,"1505":1,"1510":1,"1517":5,"1518":4,"1519":1,"1525":1,"1526":1,"1527":1,"1528":2,"1529":2,"1532":4,"1533":5,"1534":2,"1535":2,"1537":1,"1538":6,"1539":3,"1540":2,"1541":1,"1542":1,"1544":4,"1546":1,"1547":1,"1551":1,"1553":1,"1556":4,"1557":1,"1558":1,"1577":1,"1580":1,"1589":2,"1590":2,"1591":1,"1592":1,"1593":5,"1594":1,"1597":2,"1598":2,"1602":2,"1605":1,"1606":2,"1608":3,"1609":2,"1610":1,"1612":6,"1613":1,"1617":1,"1618":3,"1619":5,"1620":4,"1622":2,"1624":1,"1625":1,"1626":1,"1627":2,"1630":1,"1632":1,"1633":1,"1638":2,"1641":2,"1642":1,"1655":1,"1656":1,"1657":1,"1661":1,"1662":2,"1663":1,"1664":1,"1665":2,"1666":4,"1667":1,"1670":2,"1678":3,"1681":8,"1684":4,"1685":6,"1686":1,"1690":1,"1697":1,"1702":1,"1713":1,"1730":2,"1732":1,"1740":1,"1742":2,"1747":1,"1762":3,"1765":1,"1766":1,"1768":1,"1772":1,"1773":3,"1777":1,"1781":5,"1786":4,"1787":1,"1788":2,"1789":1,"1791":1,"1792":1,"1794":1,"1795":2,"1801":1,"1802":2,"1803":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"1835":1,"1836":2,"1838":2,"1840":2,"1841":1,"1842":1,"1843":2,"1845":2,"1846":5,"1847":2,"1849":1,"1850":4,"1851":1,"1852":1,"1853":1,"1855":1,"1923":2,"1924":1,"1926":1,"1934":2,"1935":2,"1936":4,"1937":1,"1938":2,"1939":2,"1940":1,"1941":1,"1945":3,"1946":1,"1947":3,"1948":1,"1949":6,"1951":5,"1952":14,"1953":7,"1954":8,"1956":2,"1959":1,"1960":1,"1964":3,"1966":1,"1967":4,"1968":8,"1970":5,"1971":2,"1972":3,"1974":7,"1978":1,"1980":3,"1981":1,"1983":4,"1985":8,"1986":2,"1987":3,"1988":4,"1990":1,"1995":1,"1997":2,"1998":1,"1999":2,"2001":1,"2002":1,"2004":1,"2005":2,"2007":2,"2008":7,"2014":1,"2015":2,"2037":3,"2039":1,"2041":4,"2042":3,"2043":2,"2044":3,"2047":1,"2048":1,"2051":4,"2054":1,"2056":1,"2057":5,"2059":2,"2065":2,"2068":2,"2069":2,"2070":6,"2071":1,"2072":1,"2073":1,"2075":2,"2076":3,"2078":1,"2079":1,"2081":2,"2082":5,"2083":3,"2085":1,"2086":1,"2088":4,"2090":1,"2091":1,"2092":1,"2094":1,"2095":5,"2096":2,"2178":1,"2179":6,"2182":1,"2183":2,"2185":7,"2187":7,"2188":2,"2189":1,"2191":3,"2194":2,"2201":12,"2210":2,"2214":1,"2217":1,"2218":1,"2219":1,"2220":1,"2222":5,"2232":1,"2234":1,"2247":1,"2248":1,"2249":1,"2258":1,"2259":2,"2261":3,"2264":1,"2265":6,"2267":1,"2269":1,"2273":1,"2275":5,"2276":5,"2277":5,"2278":6,"2279":1,"2281":1,"2285":1,"2286":3,"2288":4,"2289":4,"2290":5,"2291":1,"2293":1,"2295":1,"2296":2,"2297":3,"2298":5,"2300":1,"2301":1,"2302":2,"2303":1,"2304":1,"2309":7,"2310":3,"2312":3,"2313":1,"2316":1,"2317":14,"2318":8,"2319":7,"2320":2,"2322":4,"2326":1,"2327":2,"2329":4,"2330":3,"2331":6,"2351":2,"2354":1,"2357":1,"2371":1,"2374":3,"2377":1,"2378":2,"2379":3,"2381":2,"2382":2,"2384":5,"2386":1,"2387":1,"2388":3,"2389":2,"2390":2,"2391":1,"2392":2,"2393":2,"2394":1,"2395":1,"2396":3,"2397":4,"2399":2,"2400":1,"2401":2,"2402":2,"2403":4,"2404":1,"2406":5,"2408":5,"2410":5,"2413":4,"2414":7,"2416":1,"2417":14,"2418":8,"2419":1,"2423":2,"2424":2,"2425":1,"2427":3,"2428":2,"2429":1,"2430":1,"2432":2,"2433":1,"2434":2,"2435":2,"2437":1,"2439":2,"2441":1,"2442":2,"2443":2,"2444":2,"2445":3,"2446":2,"2447":1,"2448":1,"2449":1,"2450":3,"2453":4,"2454":3,"2455":3,"2456":3,"2457":1,"2459":2,"2460":1,"2461":3,"2462":1,"2465":2,"2466":2,"2470":1,"2472":1,"2473":1,"2474":1,"2482":1,"2483":2,"2490":2,"2494":1,"2496":1,"2497":1,"2499":3,"2500":3,"2502":6,"2503":3,"2504":2,"2505":1,"2508":1,"2509":1,"2517":1,"2519":1,"2520":2,"2522":2,"2523":1,"2538":2,"2547":30,"2553":1,"2557":1,"2558":2,"2560":1,"2561":5,"2562":2,"2564":1,"2565":3,"2566":2,"2567":6,"2568":3,"2569":9,"2570":1,"2571":1,"2572":1,"2573":4,"2574":1,"2575":1,"2576":3,"2578":1,"2579":4,"2580":3,"2582":1,"2583":1,"2586":1,"2587":2,"2589":4,"2590":1,"2591":1,"2594":1,"2595":2,"2598":2,"2599":2,"2601":1,"2602":1,"2605":1,"2606":1,"2607":1,"2609":1,"2612":2,"2613":2,"2614":2,"2616":2,"2617":1,"2618":1,"2619":1,"2621":1,"2622":1,"2626":1,"2627":1,"2628":1,"2629":4,"2630":1,"2637":2,"2638":1,"2639":2,"2640":1,"2645":1,"2646":1,"2650":2,"2651":32,"2652":5,"2653":6,"2658":4,"2662":1,"2663":1,"2664":3,"2667":9,"2669":2,"2670":1,"2671":2,"2673":1,"2674":11,"2675":3,"2676":1,"2677":2,"2678":2,"2679":1,"2680":2,"2683":2,"2684":2,"2685":6,"2686":1,"2687":2,"2688":1,"2689":1,"2691":2,"2692":1,"2694":4,"2695":1,"2696":1,"2700":2,"2702":1,"2703":1,"2704":1,"2706":1,"2707":3,"2709":3,"2710":2,"2711":4,"2712":1,"2713":2,"2714":8,"2716":2,"2717":1,"2722":1,"2723":3,"2724":3,"2726":6,"2727":4,"2728":21,"2729":5,"2730":4,"2731":3,"2732":2,"2733":1,"2735":1,"2741":1,"2751":2,"2752":1,"2753":3,"2754":2,"2755":3,"2756":29,"2757":19,"2758":1,"2764":2,"2765":3,"2766":1,"2767":3,"2768":1,"2769":1,"2772":3,"2773":3,"2774":1,"2775":1,"2776":2,"2777":3,"2786":2,"2791":1,"2792":2,"2794":5,"2795":3,"2796":1,"2797":1,"2799":1,"2800":1,"2804":1,"2805":1,"2806":1,"2808":1,"2809":1,"2819":1,"2820":2,"2826":1,"2828":1,"2836":1,"2837":2,"2838":1,"2839":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2851":2,"2852":3,"2854":2,"2856":1,"2858":1,"2864":1,"2868":2,"2869":5,"2871":2,"2872":1,"2876":1,"2878":2,"2879":1,"2880":3,"2882":3,"2884":4,"2886":2,"2888":1,"2889":2,"2891":1,"2892":2,"2893":1,"2894":2,"2896":1,"2901":1,"2902":3,"2903":2,"2908":1,"2909":1,"2910":7,"2911":4,"2912":5,"2913":3,"2914":3,"2920":5,"2921":4,"2922":2,"2923":1,"2924":4,"2925":3,"2926":2,"2927":5,"2928":3,"2929":4,"2930":1,"2931":5,"2932":3,"2935":5,"2936":3,"2937":4,"2938":2,"2943":2,"2945":9,"2946":2,"2947":1,"2948":2,"2949":2,"2950":3}}],["oems",{"2":{"2569":1}}],["oem",{"2":{"2567":1}}],["oemxx",{"2":{"688":2}}],["oxidisation",{"2":{"2427":1}}],["oar",{"2":{"2295":1}}],["oops",{"2":{"1365":1}}],["oob",{"2":{"191":1,"210":2,"308":1}}],["oj",{"2":{"675":1}}],["oven",{"2":{"582":1}}],["overcome",{"2":{"2750":1}}],["overcrowded",{"2":{"2462":1}}],["overhead",{"2":{"2276":1}}],["overheat",{"2":{"1681":1}}],["overhauls",{"2":{"414":1}}],["overhaul",{"0":{"157":1,"283":1},"2":{"75":1,"94":1,"133":1,"134":1,"149":1,"160":1,"166":1,"190":1,"191":2,"266":1,"285":1}}],["overloading",{"2":{"1986":1}}],["overlook",{"2":{"532":1}}],["overlay",{"0":{"2564":1},"2":{"1974":4,"2189":1,"2558":2,"2562":1,"2564":1,"2592":1,"2593":1,"2594":1}}],["overlap",{"2":{"1604":1,"1623":1,"1940":4,"2189":1,"2729":1}}],["overlapping",{"0":{"1604":1,"1940":1},"2":{"98":1,"114":1,"236":1,"277":1,"1472":1,"1609":1,"1940":3,"2756":1}}],["overwritable",{"2":{"2014":1}}],["overwritten",{"2":{"1946":1,"2394":1,"2505":1,"2683":1,"2685":1,"2702":1}}],["overwrites",{"2":{"2273":1}}],["overwrite",{"2":{"463":3,"1378":2,"1532":1,"1865":1,"1867":1,"2107":1,"2109":1,"2482":1,"2763":1,"2949":1}}],["overwriting",{"2":{"70":9,"2014":1,"2015":1}}],["overwhelmed",{"2":{"418":1}}],["overall",{"0":{"341":1},"1":{"342":1,"343":1,"344":1,"345":1,"346":1,"347":1,"348":1},"2":{"433":1,"543":1,"564":1,"717":1,"2180":1,"2753":1,"2901":1}}],["oversized",{"2":{"285":1}}],["overnumpad",{"2":{"134":1}}],["overrun",{"2":{"114":1,"774":1,"777":1,"780":1,"783":2,"786":1,"789":1,"792":1,"795":1,"1260":1,"1263":1,"1278":1,"1280":1}}],["overridable",{"2":{"222":1,"1954":2,"2290":4}}],["overriding",{"0":{"1529":1,"2192":1},"1":{"1530":1},"2":{"99":1,"160":1,"175":1,"199":1,"277":1,"294":1,"317":1,"327":1,"717":1,"754":2,"1532":1,"2189":1,"2561":1,"2851":1,"2941":1}}],["override",{"0":{"272":1,"327":1,"1465":1,"1781":1},"2":{"40":1,"74":1,"90":2,"112":1,"114":1,"125":2,"134":1,"169":2,"172":1,"175":2,"199":1,"210":1,"272":7,"277":1,"288":1,"333":1,"339":2,"436":1,"462":1,"559":1,"564":1,"565":1,"574":2,"626":1,"627":1,"630":1,"639":4,"701":1,"748":1,"749":2,"750":2,"751":1,"754":1,"755":1,"756":1,"759":2,"767":1,"768":1,"769":1,"770":1,"1203":1,"1204":1,"1248":1,"1269":1,"1485":1,"1503":1,"1533":1,"1626":1,"1668":2,"1676":4,"1766":2,"1768":1,"1769":2,"1770":2,"1771":1,"1772":1,"1773":1,"1774":8,"1776":19,"1777":7,"1779":3,"1780":3,"1781":17,"1782":4,"1783":2,"1784":4,"1785":2,"1786":2,"1787":1,"1837":1,"1954":1,"2069":1,"2192":1,"2223":1,"2250":1,"2290":1,"2416":2,"2637":1,"2684":1,"2685":2,"2686":1,"2729":1,"2756":2,"2853":1,"2886":1,"2922":1,"2931":1,"2941":1}}],["overrides",{"0":{"99":1,"639":1,"1387":1,"1766":1,"1767":1,"1769":1},"1":{"1767":1,"1768":1,"1769":1,"1770":2,"1771":2,"1772":2,"1773":2,"1774":1,"1775":1,"1776":1,"1777":1,"1778":1,"1779":1,"1780":1,"1781":1,"1782":1,"1783":1,"1784":1,"1785":1,"1786":1,"1787":1,"1788":1},"2":{"4":1,"40":1,"99":4,"114":2,"125":2,"160":1,"169":2,"191":1,"199":1,"210":1,"272":5,"308":1,"561":2,"564":1,"570":1,"627":1,"1381":1,"1387":1,"1766":2,"1768":1,"1769":1,"1774":4,"1776":4,"1777":2,"1779":1,"1780":3,"1781":1,"1783":1,"1784":2,"1786":2,"1787":4,"1788":2,"1990":1,"2008":1,"2189":3,"2416":1,"2684":1,"2720":1,"2907":1}}],["overridden",{"2":{"40":1,"557":1,"754":1,"772":1,"797":1,"1463":1,"1985":1,"1990":2,"2327":1,"2344":1,"2345":1,"2346":1}}],["overview",{"0":{"366":1,"378":1,"425":1,"487":1,"577":1,"605":1,"666":1,"2262":1,"2521":1,"2556":1,"2580":1},"1":{"379":1,"426":1,"488":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2541":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2552":1,"2557":1,"2558":1,"2559":1,"2560":1,"2561":1,"2562":1,"2563":1,"2564":1},"2":{"112":1,"552":1,"603":1,"1344":1,"1421":1,"1432":1,"2320":1,"2414":1,"2565":1,"2696":1,"2716":1,"2908":1}}],["over",{"2":{"99":1,"114":2,"124":1,"140":1,"175":1,"243":1,"307":1,"308":1,"312":1,"331":1,"364":1,"374":1,"375":1,"383":1,"440":1,"493":1,"538":1,"560":1,"561":1,"575":1,"599":1,"625":1,"749":1,"750":1,"759":1,"1196":2,"1199":2,"1283":1,"1287":1,"1372":1,"1410":1,"1413":1,"1423":1,"1447":2,"1625":1,"1627":1,"1682":1,"1943":1,"1945":1,"1947":2,"1953":1,"2048":1,"2054":1,"2087":1,"2178":1,"2179":1,"2261":1,"2283":1,"2284":1,"2286":2,"2294":2,"2295":1,"2310":1,"2375":1,"2384":1,"2418":2,"2419":1,"2427":1,"2428":1,"2434":1,"2448":1,"2467":1,"2470":1,"2482":1,"2504":1,"2567":1,"2590":1,"2651":2,"2653":1,"2658":1,"2664":1,"2707":1,"2722":1,"2807":1,"2840":1,"2907":1,"2920":1,"2936":1}}],["overflows",{"2":{"114":1}}],["overflow",{"0":{"44":1},"2":{"44":3,"114":1,"149":1,"236":1,"333":1,"1986":1}}],["ohm",{"2":{"857":2,"860":18,"921":2,"925":18,"956":2,"959":18,"990":2,"993":18,"1024":2,"1027":18,"1058":2,"1061":18,"1092":2,"1095":18,"1126":2,"1129":18,"1160":2,"1163":18}}],["oh",{"0":{"501":1},"1":{"502":1,"503":1,"504":1,"505":1,"506":1}}],["okay",{"2":{"1338":1,"1936":1,"2728":1}}],["ok",{"2":{"393":1,"455":2,"517":1,"531":1,"532":1,"538":1,"541":1,"607":1,"763":1,"1365":2,"1450":2,"1661":1,"2502":1,"2587":4,"2629":4,"2944":1}}],["oq",{"2":{"266":1}}],["odd",{"2":{"2043":1,"2466":1}}],["odelia",{"2":{"222":1}}],["odin",{"2":{"175":1,"222":2}}],["og60",{"2":{"236":1}}],["og",{"2":{"222":1}}],["ogr",{"2":{"222":1}}],["ogurec",{"2":{"143":2}}],["o",{"2":{"210":1,"266":1,"277":2,"379":1,"438":1,"439":1,"447":2,"462":1,"492":2,"500":1,"572":2,"589":2,"622":1,"1292":1,"2068":1,"2070":1,"2296":1,"2301":4,"2423":1,"2424":2,"2430":2,"2439":1,"2510":3,"2522":3,"2563":1,"2689":1,"2755":8}}],["owlab",{"2":{"2567":1}}],["owl8",{"2":{"143":2}}],["owners",{"2":{"2902":1}}],["owned",{"2":{"175":1}}],["owns",{"2":{"2761":1}}],["own",{"0":{"1327":1,"1414":1,"2636":1},"2":{"20":1,"23":1,"27":1,"33":1,"107":1,"113":1,"114":2,"134":1,"187":1,"228":1,"273":1,"284":1,"288":1,"294":1,"307":1,"373":1,"414":1,"512":1,"558":1,"609":1,"612":1,"622":1,"629":1,"661":1,"701":1,"757":1,"1356":1,"1382":1,"1414":2,"1463":1,"1471":1,"1480":2,"1485":2,"1544":1,"1556":1,"1605":1,"1626":1,"1627":1,"1630":1,"1668":1,"1836":1,"1985":1,"1986":1,"1990":1,"2057":2,"2077":2,"2255":2,"2310":1,"2325":1,"2329":1,"2331":1,"2381":1,"2388":1,"2389":1,"2402":1,"2418":2,"2437":1,"2466":1,"2473":1,"2501":1,"2553":1,"2565":1,"2566":1,"2567":1,"2568":1,"2571":1,"2584":1,"2589":1,"2590":1,"2595":1,"2598":1,"2630":1,"2635":1,"2637":1,"2652":1,"2685":1,"2686":1,"2687":1,"2726":3,"2728":2,"2730":1,"2751":1,"2754":1,"2765":1,"2772":2,"2795":1,"2807":1,"2884":1,"2912":1,"2930":1}}],["o3",{"2":{"114":1}}],["opinions",{"2":{"2942":1}}],["opmode",{"2":{"769":2}}],["opqr",{"2":{"266":1}}],["opposed",{"2":{"690":1,"1381":1,"1986":1}}],["opposite",{"2":{"213":1,"289":1,"294":1,"1268":1,"2051":1,"2494":1,"2913":1,"2926":9,"2927":2,"2928":2}}],["opportune",{"2":{"263":1}}],["opportunity",{"2":{"214":1}}],["opcode",{"2":{"210":1}}],["opus",{"2":{"159":2}}],["oper",{"2":{"2516":2,"2522":2}}],["operate",{"2":{"491":1,"1197":2,"1296":1,"1315":1,"1685":1,"2502":1}}],["operates",{"2":{"82":1,"487":1,"701":1,"1290":1,"1936":1,"2269":1,"2764":1,"2886":1}}],["operational",{"2":{"749":1}}],["operation",{"0":{"763":1,"2198":1},"2":{"690":1,"701":1,"766":1,"1196":1,"1199":1,"1201":1,"1205":1,"1253":1,"1349":1,"1974":1,"2634":1,"2676":1,"2704":2,"2757":1}}],["operations",{"0":{"410":1,"483":1},"1":{"411":1,"412":1},"2":{"266":1,"483":1,"491":1,"763":1,"1953":1,"2602":1,"2753":1,"2756":12,"2757":4,"2761":1}}],["operating",{"0":{"2472":1,"2670":1},"2":{"191":1,"461":1,"1351":1,"1934":1,"2016":1,"2294":1,"2325":1,"2382":1,"2417":2,"2471":1,"2472":1,"2475":1,"2601":1,"2717":1,"2734":1,"2739":1,"2884":1,"2931":1}}],["operators",{"2":{"1378":2}}],["operator",{"2":{"210":1,"285":1,"491":1,"529":1,"766":1,"1378":1}}],["opening",{"0":{"675":1},"2":{"512":2,"521":1,"607":1,"611":1,"613":1,"1440":1,"2057":1,"2226":1,"2255":1,"2614":1,"2651":1,"2726":1}}],["opensource",{"2":{"604":1,"1357":2}}],["opens",{"2":{"432":1,"512":2,"2296":1,"2622":1,"2795":1}}],["openocd",{"0":{"390":1},"2":{"384":1,"390":1,"393":1,"397":3,"2506":3,"2508":1}}],["opendeck",{"2":{"277":1}}],["opendrain",{"2":{"134":1,"772":2}}],["opened",{"2":{"275":1,"353":1,"2059":1,"2669":1,"2731":1}}],["open",{"0":{"1297":1,"2585":1,"2746":1},"2":{"149":1,"243":1,"265":1,"384":1,"386":1,"393":3,"414":1,"448":1,"449":1,"450":1,"460":2,"506":1,"544":1,"606":1,"607":1,"611":1,"612":1,"613":2,"614":1,"644":1,"668":1,"672":1,"684":1,"687":1,"688":2,"761":2,"1197":1,"1297":2,"1338":2,"1339":2,"1341":1,"1342":1,"1378":1,"1634":1,"1962":1,"2057":1,"2256":3,"2257":3,"2260":1,"2291":2,"2418":1,"2432":1,"2434":1,"2441":1,"2466":1,"2477":1,"2481":1,"2502":1,"2504":1,"2517":3,"2522":3,"2550":3,"2554":2,"2560":1,"2567":1,"2573":2,"2582":1,"2585":1,"2607":1,"2614":3,"2616":1,"2622":2,"2628":4,"2633":1,"2634":1,"2639":1,"2640":1,"2653":1,"2659":1,"2663":1,"2664":1,"2669":1,"2672":2,"2673":2,"2728":1,"2736":1,"2746":1,"2750":1,"2758":1,"2850":2,"2895":3,"2899":1,"2931":1}}],["opt",{"0":{"273":1},"2":{"124":3,"199":1,"273":1,"277":1,"573":1,"701":2,"1471":2,"1472":1,"2406":1,"2408":1,"2455":2,"2542":1,"2572":1,"2674":1}}],["optimal",{"2":{"1517":1,"1684":1,"1685":1}}],["optimisation",{"2":{"210":1,"236":1,"339":1}}],["optimisations",{"2":{"149":1,"2674":2}}],["optimise",{"2":{"175":1}}],["optimized",{"2":{"175":1}}],["optimize",{"2":{"114":1,"134":1,"149":1,"236":1}}],["optimization",{"2":{"40":1,"43":2,"294":1,"572":1,"2854":1,"2889":1}}],["optimizations",{"0":{"40":1,"64":1,"75":1,"94":1,"202":1,"203":1}}],["optical",{"2":{"114":1,"149":3,"191":1,"199":1,"284":1,"285":1,"1967":1,"1983":1}}],["option+right",{"2":{"2331":1}}],["option+left",{"2":{"2331":1}}],["option=com",{"2":{"1319":1}}],["optional",{"0":{"1687":1,"2583":1,"2636":1},"2":{"262":1,"308":1,"344":1,"411":1,"429":1,"430":1,"512":2,"513":1,"569":1,"666":1,"669":4,"676":1,"1463":5,"1551":3,"1612":1,"1787":1,"1794":1,"1852":1,"1967":4,"1968":9,"1970":4,"1971":17,"1972":3,"1974":10,"1975":5,"1976":3,"1977":2,"1980":4,"1983":7,"1985":15,"1986":3,"1987":5,"2003":5,"2091":1,"2179":1,"2390":1,"2397":1,"2421":1,"2451":1,"2619":1,"2662":1,"2667":1,"2671":4,"2674":2,"2700":1,"2755":1,"2765":4,"2772":3,"2906":1}}],["optionally",{"2":{"222":1,"307":1,"1205":1,"1419":2,"1467":1,"1474":1,"1477":1,"1479":1,"1666":1,"1792":1,"2044":1,"2066":1,"2068":1,"2213":1,"2298":1,"2309":1,"2329":1,"2389":1,"2399":1,"2732":1,"2924":1,"2925":1,"2931":1,"2949":1}}],["options",{"0":{"484":1,"485":1,"561":1,"566":1,"567":1,"570":1,"572":1,"573":1,"574":1,"1386":1,"1466":1,"1678":1,"1773":2,"1836":1,"1852":1,"1960":1,"2003":1,"2091":1,"2275":1,"2276":1,"2278":1,"2376":1,"2418":1,"2419":1,"2723":1,"2724":1,"2909":1},"1":{"568":1,"569":1,"570":1,"2910":1,"2911":1,"2912":1,"2913":1,"2914":1,"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1,"2921":1,"2922":1,"2923":1,"2924":1,"2925":1,"2926":1,"2927":1,"2928":1,"2929":1,"2930":1,"2931":1,"2932":1,"2933":1},"2":{"83":1,"109":1,"114":2,"128":1,"134":1,"138":1,"149":1,"152":1,"194":1,"198":1,"210":1,"217":1,"234":1,"236":2,"249":1,"303":1,"304":1,"308":1,"320":1,"339":1,"397":1,"426":1,"433":1,"452":1,"453":1,"454":1,"455":1,"460":1,"461":1,"469":1,"507":1,"557":1,"559":1,"562":1,"563":1,"567":1,"573":1,"574":1,"666":1,"668":2,"686":1,"701":2,"754":1,"755":1,"756":1,"1198":1,"1201":1,"1206":1,"1317":1,"1358":1,"1365":2,"1376":2,"1386":1,"1436":2,"1466":1,"1590":1,"1593":1,"1609":1,"1612":1,"1614":1,"1662":1,"1664":1,"1676":1,"1678":1,"1769":1,"1773":3,"1776":5,"1779":1,"1781":2,"1782":3,"1783":1,"1835":2,"1836":1,"1837":1,"1934":1,"1939":1,"1949":1,"1952":1,"1964":2,"1987":3,"2002":1,"2086":1,"2095":1,"2096":1,"2179":1,"2185":1,"2191":1,"2259":1,"2273":1,"2274":1,"2275":1,"2276":1,"2296":1,"2309":1,"2318":1,"2327":1,"2375":1,"2414":2,"2415":2,"2417":4,"2419":2,"2429":1,"2453":1,"2454":2,"2455":1,"2459":1,"2554":1,"2573":1,"2578":1,"2628":1,"2667":3,"2685":1,"2700":1,"2716":3,"2723":2,"2724":2,"2728":3,"2754":1,"2755":2,"2827":1,"2888":1,"2890":1,"2892":1,"2908":1,"2909":3,"2931":2,"2941":1,"2945":1}}],["option",{"0":{"320":1,"667":1,"1782":1},"1":{"668":1,"669":1,"670":1,"671":1,"672":1,"673":1},"2":{"22":1,"40":1,"47":1,"74":1,"75":1,"87":1,"103":1,"114":3,"126":1,"132":1,"134":2,"175":1,"191":1,"194":1,"195":1,"210":1,"222":2,"234":1,"236":1,"246":1,"249":2,"266":1,"271":1,"294":1,"297":1,"308":1,"328":2,"339":1,"513":1,"564":1,"668":2,"673":1,"1290":1,"1359":1,"1366":1,"1414":1,"1467":1,"1472":1,"1480":1,"1492":1,"1493":1,"1593":1,"1597":2,"1668":1,"1688":1,"1773":1,"1776":5,"1779":1,"1781":1,"1782":6,"1784":1,"1785":2,"1946":1,"1984":1,"1987":4,"2265":1,"2273":2,"2274":3,"2276":1,"2278":5,"2280":1,"2297":1,"2309":5,"2331":1,"2417":4,"2429":1,"2455":8,"2502":1,"2514":2,"2522":2,"2583":1,"2629":1,"2667":4,"2709":1,"2722":1,"2732":1,"2754":1,"2757":2,"2789":1,"2889":1,"2920":5,"2921":3,"2926":2,"2931":2}}],["ou",{"2":{"2377":7,"2528":7}}],["ould",{"2":{"2079":1}}],["ouput",{"2":{"1527":3}}],["our",{"2":{"76":1,"114":2,"130":1,"179":1,"182":1,"385":1,"393":1,"396":1,"414":1,"489":1,"491":1,"492":1,"504":1,"505":2,"506":1,"512":1,"514":3,"516":1,"521":1,"529":2,"538":1,"542":2,"544":1,"589":1,"592":1,"608":2,"610":2,"613":1,"615":3,"631":1,"635":1,"665":1,"684":1,"701":1,"1336":1,"1338":1,"1431":1,"1446":2,"1539":1,"2318":1,"2319":3,"2429":1,"2447":1,"2466":2,"2481":2,"2561":4,"2564":2,"2579":1,"2634":1,"2639":1,"2731":1,"2794":6,"2795":4,"2800":1,"2847":1,"2896":2,"2897":1,"2938":5,"2939":2,"2940":3}}],["outlines",{"2":{"2707":1}}],["outlined",{"2":{"2276":1,"2709":1}}],["outs",{"2":{"2702":1}}],["outside",{"2":{"12":1,"166":1,"493":1,"519":1,"1200":1,"1381":1,"1431":1,"1840":1,"1977":1,"1990":1,"2273":1,"2590":1,"2929":1,"2938":1}}],["outright",{"2":{"2569":1,"2570":1,"2663":1,"2677":1,"2892":1}}],["outreach",{"2":{"312":1}}],["outbound",{"2":{"2277":1}}],["outer",{"2":{"1802":1,"1976":1,"2180":1,"2556":1,"2869":1,"2927":1}}],["out3",{"2":{"805":2,"831":2}}],["out2",{"2":{"805":2,"831":2}}],["out1",{"2":{"805":3,"831":3}}],["outwardly",{"2":{"198":1}}],["outdated",{"2":{"149":1,"308":2,"414":1,"665":1,"2902":1}}],["outputted",{"2":{"2728":1}}],["outputting",{"2":{"491":1,"493":1,"607":1}}],["output=",{"2":{"210":1}}],["output+keymap",{"2":{"210":1}}],["outputs",{"2":{"93":1,"639":1,"1303":1,"1474":1,"2377":1,"2417":1,"2428":1,"2893":2}}],["outputselect",{"2":{"40":1,"149":1}}],["output",{"0":{"2609":1},"2":{"43":2,"65":1,"75":1,"92":1,"99":1,"114":5,"119":1,"149":2,"172":1,"175":4,"191":1,"199":3,"210":1,"214":1,"222":2,"236":1,"243":3,"249":1,"285":1,"294":1,"328":1,"339":1,"382":1,"411":1,"438":1,"439":1,"447":1,"462":1,"491":1,"492":1,"494":2,"500":2,"543":1,"561":1,"565":2,"635":6,"639":1,"645":1,"676":1,"688":1,"721":3,"729":1,"732":3,"749":1,"761":11,"805":1,"808":4,"831":1,"834":4,"863":1,"866":4,"893":1,"896":4,"928":1,"931":4,"962":1,"965":4,"996":1,"999":4,"1030":1,"1033":4,"1064":1,"1067":4,"1098":1,"1101":4,"1132":1,"1135":4,"1166":1,"1169":4,"1209":1,"1219":1,"1222":4,"1297":1,"1303":3,"1322":3,"1329":1,"1331":1,"1333":1,"1472":3,"1477":1,"1481":1,"1491":1,"1527":2,"1548":1,"1549":1,"1553":1,"1622":1,"1624":1,"1670":1,"1672":2,"1673":2,"1675":1,"1738":1,"1739":1,"1949":1,"1954":1,"1962":1,"1967":1,"1998":1,"2051":2,"2206":1,"2207":1,"2272":1,"2288":1,"2290":1,"2298":1,"2329":2,"2377":11,"2388":1,"2390":1,"2397":1,"2417":5,"2418":1,"2428":1,"2502":1,"2508":1,"2528":11,"2584":1,"2587":2,"2609":1,"2615":1,"2629":1,"2634":1,"2680":1,"2689":1,"2754":3,"2755":23,"2795":1,"2854":1,"2876":1,"2915":1,"2919":1,"2948":1,"2949":1}}],["out",{"0":{"123":1,"323":1,"1818":1,"2617":1,"2635":1,"2888":1},"1":{"2636":1,"2637":1,"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"6":1,"11":1,"39":1,"40":1,"43":1,"93":1,"113":1,"114":3,"119":1,"124":1,"133":2,"134":5,"149":2,"160":1,"175":4,"191":1,"194":1,"199":4,"228":1,"236":1,"249":1,"288":1,"328":1,"333":2,"339":2,"340":1,"376":1,"397":1,"418":1,"420":1,"429":1,"432":1,"463":1,"493":1,"499":2,"521":1,"527":1,"541":1,"564":4,"569":1,"586":1,"588":1,"610":1,"614":2,"647":2,"665":2,"677":1,"714":1,"719":1,"746":1,"749":1,"758":1,"1209":1,"1320":1,"1365":2,"1410":1,"1428":3,"1443":1,"1446":2,"1450":2,"1472":1,"1474":1,"1484":1,"1598":1,"1622":1,"1627":1,"1802":1,"1849":13,"1850":1,"1949":4,"1954":3,"1971":1,"1981":1,"1990":1,"1998":1,"2016":1,"2085":20,"2088":1,"2091":1,"2183":1,"2195":1,"2208":1,"2225":1,"2226":1,"2228":1,"2229":1,"2230":1,"2231":1,"2232":1,"2233":1,"2234":1,"2235":1,"2236":1,"2238":1,"2240":1,"2242":1,"2244":1,"2265":1,"2277":3,"2278":1,"2279":1,"2280":1,"2281":1,"2290":3,"2317":1,"2320":1,"2387":4,"2417":3,"2429":1,"2434":1,"2466":1,"2480":1,"2481":1,"2483":1,"2516":2,"2522":2,"2570":1,"2579":1,"2585":1,"2598":1,"2617":2,"2626":1,"2632":1,"2637":1,"2640":3,"2671":1,"2695":1,"2702":1,"2710":1,"2726":2,"2728":3,"2754":1,"2755":2,"2756":1,"2894":2,"2895":2,"2906":1,"2911":1,"2923":1,"2936":1,"2937":1,"2945":3,"2950":1}}],["otype",{"2":{"772":2}}],["otaku",{"2":{"143":4}}],["otg2",{"2":{"2709":1}}],["otg1",{"2":{"191":1,"2709":1}}],["otg",{"2":{"65":1,"175":1,"294":1}}],["others",{"2":{"114":1,"134":1,"149":1,"160":1,"175":1,"191":1,"199":1,"210":1,"222":1,"236":1,"263":1,"277":1,"285":1,"294":1,"308":1,"328":1,"333":1,"339":1,"533":1,"612":1,"923":1,"1094":1,"1128":1,"1199":1,"1299":2,"1376":1,"1426":1,"1467":1,"1471":1,"1480":1,"1490":1,"1503":1,"1553":1,"2178":1,"2415":1,"2431":1,"2633":1,"2705":1}}],["other",{"0":{"570":1,"1355":1,"1948":1,"2287":1,"2436":1,"2578":1,"2670":1,"2921":1},"2":{"20":1,"23":1,"40":1,"98":1,"114":2,"128":1,"134":2,"142":1,"152":2,"153":1,"175":2,"178":1,"188":1,"189":1,"190":1,"191":2,"194":8,"199":1,"201":1,"208":1,"212":2,"217":2,"221":1,"229":1,"234":1,"244":1,"288":1,"294":1,"307":1,"308":1,"320":1,"340":2,"383":1,"393":2,"396":1,"403":1,"489":1,"505":1,"507":1,"512":1,"529":1,"540":1,"544":1,"557":1,"560":1,"562":1,"564":5,"600":1,"613":1,"617":1,"620":1,"631":1,"645":1,"656":1,"657":1,"665":1,"668":2,"674":1,"688":1,"716":1,"723":1,"746":1,"766":1,"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"796":1,"799":1,"1203":1,"1204":1,"1213":1,"1248":1,"1261":1,"1264":1,"1294":1,"1300":1,"1313":2,"1317":1,"1319":2,"1333":1,"1343":2,"1349":1,"1378":6,"1381":1,"1414":1,"1417":2,"1422":2,"1425":2,"1427":2,"1428":3,"1430":1,"1431":1,"1440":1,"1442":1,"1446":5,"1448":1,"1470":2,"1472":1,"1474":1,"1477":1,"1478":1,"1485":1,"1488":1,"1499":2,"1505":1,"1528":1,"1529":1,"1532":1,"1533":2,"1546":2,"1550":1,"1593":3,"1619":1,"1620":2,"1626":1,"1633":1,"1659":1,"1662":1,"1671":1,"1704":1,"1774":1,"1777":1,"1779":1,"1782":1,"1784":1,"1785":1,"1787":1,"1789":1,"1791":1,"1795":1,"1804":1,"1923":1,"1935":1,"1952":1,"1962":1,"1964":2,"1988":1,"2011":1,"2013":2,"2068":1,"2071":1,"2072":1,"2073":1,"2075":1,"2076":1,"2077":1,"2079":1,"2189":2,"2191":1,"2208":1,"2210":1,"2252":1,"2259":2,"2260":1,"2261":1,"2275":1,"2292":1,"2293":1,"2294":2,"2317":1,"2318":1,"2319":1,"2330":1,"2331":1,"2379":1,"2417":1,"2418":2,"2419":1,"2423":1,"2428":1,"2434":1,"2439":1,"2447":1,"2453":1,"2457":1,"2466":2,"2496":1,"2503":1,"2505":1,"2520":1,"2535":1,"2558":3,"2559":1,"2561":1,"2566":1,"2567":2,"2568":4,"2569":1,"2572":1,"2589":1,"2637":1,"2650":1,"2653":2,"2664":1,"2671":1,"2677":1,"2679":1,"2690":1,"2700":1,"2702":1,"2711":1,"2726":3,"2728":2,"2729":5,"2751":1,"2756":11,"2757":1,"2782":1,"2784":1,"2817":1,"2825":1,"2837":1,"2852":1,"2854":2,"2886":1,"2895":1,"2901":1,"2902":2,"2903":1,"2911":1,"2914":6,"2916":2,"2917":3,"2918":2,"2920":4,"2921":7,"2926":6,"2927":3,"2928":7,"2930":1,"2931":1,"2933":1,"2935":4,"2946":1}}],["otherwise",{"2":{"18":1,"21":1,"220":1,"389":1,"411":1,"532":1,"611":1,"626":1,"627":1,"652":1,"653":1,"656":1,"673":1,"687":1,"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"796":1,"799":1,"1253":1,"1258":1,"1261":1,"1264":1,"1297":1,"1428":1,"1558":1,"1620":1,"1661":1,"1729":1,"1781":1,"1865":1,"1867":1,"2069":1,"2085":1,"2107":1,"2109":1,"2192":1,"2278":1,"2300":1,"2309":2,"2330":1,"2377":1,"2396":1,"2399":1,"2401":1,"2404":1,"2418":1,"2508":1,"2528":1,"2612":3,"2776":1,"2782":1,"2922":1,"2925":1,"2926":1,"2928":1,"2931":1}}],["omit",{"2":{"688":1,"754":2,"1625":1,"2502":1}}],["omitted",{"2":{"527":1,"561":2,"570":1,"644":1,"2327":1,"2384":1}}],["omkbd",{"2":{"143":12,"149":2}}],["omrontkl",{"2":{"57":2}}],["omnikey",{"2":{"27":2,"159":2,"160":1}}],["oc7",{"2":{"1925":1,"2539":1}}],["oc6",{"2":{"1925":1,"2539":1}}],["oc5",{"2":{"1925":1,"2539":1}}],["oc4",{"2":{"1925":1,"2539":1}}],["oc3",{"2":{"1925":1,"2539":1}}],["oc2",{"2":{"1925":1,"1926":1,"2539":1}}],["oc1",{"2":{"1925":1,"2539":1}}],["oc0",{"2":{"1925":1,"2539":1}}],["ocn1",{"2":{"1925":1,"2539":1}}],["ocn2",{"2":{"1925":1,"2539":1}}],["ocean",{"2":{"578":1,"586":1}}],["oceanographer",{"2":{"222":1}}],["occupied",{"2":{"1446":1}}],["occupy",{"2":{"1248":1}}],["occurrence",{"2":{"2912":1}}],["occurred",{"2":{"381":1,"647":3,"1410":1,"1413":4}}],["occurs",{"2":{"94":1,"657":1,"754":1,"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"796":1,"799":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1261":1,"1264":1,"1414":1,"2275":2,"2278":1,"2764":1,"2931":1}}],["occur",{"2":{"39":1,"44":1,"609":1,"639":2,"1680":1,"1990":1,"1992":1,"2276":1,"2277":1,"2590":1,"2700":1,"2757":1}}],["occasionally",{"2":{"1354":1,"1529":1,"2566":1}}],["occasional",{"2":{"656":1}}],["occasion",{"2":{"414":1,"1503":1}}],["ocd",{"2":{"175":1}}],["octet",{"2":{"2792":8}}],["octets",{"2":{"2773":1,"2779":1,"2792":3}}],["octd",{"2":{"1919":1,"1925":1,"2539":1}}],["octu",{"2":{"1919":1,"1925":1,"2539":1}}],["octave",{"2":{"1490":1,"1919":1,"1925":96,"1926":1,"2539":96}}],["octaves",{"2":{"1490":1}}],["octagon",{"2":{"249":1,"266":1,"308":1}}],["oct",{"2":{"55":2}}],["oscillator",{"2":{"1949":1}}],["oses",{"2":{"1784":1,"1785":1,"1786":1,"1961":1}}],["osdn",{"2":{"420":1}}],["osx",{"0":{"1357":1,"1358":1,"1361":1},"2":{"172":2,"175":2,"1357":2,"1358":2,"1359":1,"1361":1}}],["os",{"0":{"1375":1,"1673":1,"1956":1,"1959":1},"1":{"1957":1,"1958":1,"1959":1,"1960":1,"1961":1,"1962":1,"1963":1},"2":{"65":1,"160":2,"199":1,"222":1,"249":3,"285":3,"308":1,"386":1,"420":1,"1332":1,"1449":1,"1517":1,"1593":2,"1638":3,"1641":1,"1673":1,"1781":1,"1786":1,"1956":4,"1957":10,"1958":14,"1959":1,"1960":5,"1961":6,"1962":5,"2223":1,"2304":1,"2324":1,"2331":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":2,"2404":1,"2406":2,"2408":2,"2410":2,"2418":1,"2466":1,"2468":1,"2475":4,"2517":1,"2547":31,"2551":1,"2599":1,"2619":1,"2651":31,"2684":1,"2734":1,"2738":1,"2739":1,"2846":1,"2880":2,"2884":1,"2931":1}}],["osms",{"2":{"222":1}}],["osm",{"2":{"28":1,"236":1,"1472":3,"1594":1,"1765":1,"2547":1,"2650":1,"2651":6,"2652":1,"2909":1}}],["osl",{"2":{"28":1,"199":1,"236":1,"294":1,"1422":1,"1789":1,"2000":1,"2547":1,"2651":2,"2652":1,"2909":1}}],["olkb",{"0":{"2781":1,"2898":1},"1":{"2782":1,"2783":1,"2784":1,"2785":1},"2":{"604":1,"684":3,"2320":1,"2389":2,"2435":1,"2481":1,"2898":1}}],["olly",{"2":{"222":1,"249":2,"308":1}}],["oledunder",{"2":{"55":1}}],["oledback",{"2":{"55":1}}],["oleds",{"2":{"21":1,"24":1,"114":1,"153":1,"229":1,"230":1,"232":1,"248":1,"2756":1,"2890":1}}],["oled",{"0":{"23":1,"125":1,"208":1,"221":1,"230":1,"232":1,"1942":1,"1945":1,"1952":1,"1954":1,"2442":1,"2893":1},"1":{"24":1,"1943":1,"1944":1,"1945":1,"1946":1,"1947":1,"1948":1,"1949":1,"1950":1,"1951":1,"1952":1,"1953":2,"1954":1,"1955":1},"2":{"20":1,"21":11,"23":2,"24":8,"39":1,"55":11,"62":1,"63":1,"92":2,"93":2,"114":4,"125":6,"128":2,"134":7,"153":1,"175":3,"191":4,"208":3,"209":2,"210":2,"221":4,"222":2,"230":4,"232":4,"236":3,"248":2,"249":2,"308":1,"328":2,"332":6,"337":6,"339":2,"570":2,"765":1,"1246":1,"1535":2,"1943":2,"1944":1,"1945":15,"1946":5,"1947":6,"1948":15,"1949":28,"1950":2,"1951":10,"1952":29,"1953":12,"1954":77,"1955":17,"2276":6,"2435":1,"2439":1,"2442":2,"2456":1,"2728":1,"2753":7,"2756":1,"2880":2,"2893":5}}],["older",{"2":{"157":1,"400":1,"1316":1,"1332":1,"2068":1,"2183":1,"2389":1,"2560":1,"2561":1,"2684":1}}],["old",{"0":{"208":1},"2":{"12":1,"27":1,"28":1,"33":1,"36":1,"43":1,"67":1,"86":1,"102":1,"122":1,"125":1,"134":1,"143":1,"149":2,"156":1,"157":1,"159":1,"165":1,"166":2,"167":3,"169":1,"175":1,"183":1,"188":1,"189":1,"194":1,"195":1,"197":1,"205":1,"207":1,"208":1,"209":6,"210":3,"217":1,"218":1,"226":1,"232":2,"234":1,"236":1,"241":1,"243":1,"244":1,"253":1,"262":1,"270":1,"271":1,"281":1,"291":1,"300":1,"311":1,"322":1,"416":2,"512":1,"661":1,"1354":1,"1382":1,"1622":1,"1955":1,"1988":2,"1990":1,"2183":1,"2260":1,"2265":1,"2310":1,"2437":1,"2636":2,"2726":1,"2893":1}}],["obligations",{"2":{"2750":1}}],["obliterated75",{"2":{"222":1}}],["obtain",{"2":{"2037":1}}],["obtaining",{"2":{"425":1}}],["objs",{"2":{"2417":1,"2454":1}}],["obj",{"2":{"673":2}}],["objects",{"2":{"433":1,"516":1,"533":2,"1443":2,"1444":1,"2387":8,"2795":1,"2865":1,"2868":1}}],["objective",{"2":{"385":1,"2395":1}}],["object",{"0":{"1444":1},"2":{"73":1,"236":1,"433":1,"455":1,"469":1,"489":2,"492":2,"533":1,"534":1,"538":1,"668":1,"670":1,"1419":16,"1444":1,"2057":1,"2417":2,"2757":2,"2795":7,"2796":2,"2865":1,"2868":1,"2869":4,"2871":2,"2877":1,"2878":2,"2942":1}}],["observe",{"2":{"610":1,"1522":1}}],["obsolete",{"0":{"2260":1},"2":{"3":1,"48":1}}],["obviously",{"2":{"1503":1,"1541":1,"2884":1}}],["obvious",{"2":{"249":3,"512":2,"514":2,"526":1,"613":1,"2460":1,"2466":1,"2569":1}}],["obfuscate",{"2":{"199":1}}],["obosob",{"2":{"143":2,"149":2}}],["obdev",{"2":{"11":1,"1319":1}}],["onboard",{"2":{"651":1,"746":1,"748":1,"1292":1,"1293":1,"1294":1,"2179":2,"2208":1,"2679":1,"2691":1}}],["onto",{"2":{"518":1,"1336":1,"1365":1,"1532":1,"2425":1,"2429":1,"2432":1,"2484":1,"2488":1,"2497":1,"2504":1,"2714":1,"2901":1,"2912":1}}],["onyx",{"2":{"222":1}}],["onkey",{"2":{"191":1}}],["online",{"2":{"166":1,"2568":1,"2579":1,"2589":1,"2897":1}}],["only=true",{"2":{"500":3}}],["only",{"0":{"509":1,"591":1,"2441":1,"2593":1},"2":{"4":1,"47":1,"69":1,"83":1,"87":1,"98":1,"103":2,"107":1,"114":1,"116":1,"120":1,"126":2,"134":1,"168":1,"175":2,"184":1,"189":1,"194":3,"209":3,"210":1,"212":1,"233":1,"236":2,"244":1,"266":1,"303":1,"306":1,"308":2,"315":1,"317":1,"328":1,"338":1,"383":1,"397":1,"402":2,"403":1,"405":1,"406":2,"407":2,"409":2,"411":2,"412":2,"414":1,"416":1,"420":2,"421":1,"422":1,"434":3,"435":1,"459":2,"500":1,"513":1,"538":1,"555":1,"558":1,"564":1,"569":1,"570":2,"575":1,"639":1,"665":1,"677":1,"683":1,"690":1,"695":1,"696":1,"701":2,"715":1,"718":1,"719":1,"720":1,"721":1,"744":1,"751":1,"757":1,"768":1,"772":1,"805":1,"808":4,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"831":1,"834":4,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"863":1,"866":4,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"893":1,"896":4,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"921":1,"924":1,"928":1,"931":4,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"956":1,"958":1,"962":1,"965":4,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"990":1,"992":1,"996":1,"999":4,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1024":1,"1026":1,"1030":1,"1033":4,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1064":1,"1067":4,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1098":1,"1101":4,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1132":1,"1135":4,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1166":1,"1169":4,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1194":1,"1197":2,"1198":1,"1201":2,"1204":2,"1205":1,"1219":1,"1222":4,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1250":1,"1271":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1295":3,"1297":1,"1299":1,"1300":1,"1302":1,"1303":3,"1313":1,"1316":1,"1327":2,"1332":1,"1343":1,"1351":1,"1356":1,"1378":1,"1380":2,"1389":1,"1392":1,"1395":1,"1396":2,"1398":1,"1407":1,"1410":2,"1413":1,"1415":1,"1416":1,"1417":3,"1422":4,"1423":1,"1425":1,"1444":1,"1447":1,"1463":1,"1471":1,"1477":1,"1481":1,"1483":1,"1484":1,"1488":1,"1503":1,"1518":2,"1527":1,"1528":1,"1532":1,"1541":1,"1546":1,"1553":1,"1554":1,"1556":1,"1557":1,"1558":1,"1589":1,"1597":1,"1604":1,"1611":1,"1612":6,"1615":1,"1619":1,"1620":1,"1656":1,"1666":1,"1667":1,"1670":2,"1704":1,"1765":1,"1774":1,"1781":2,"1782":1,"1784":1,"1788":1,"1803":1,"1846":1,"1853":1,"1865":1,"1867":1,"1919":1,"1934":1,"1937":1,"1940":1,"1953":3,"1960":1,"1965":1,"1976":1,"1985":1,"1986":1,"1987":5,"1988":1,"1989":1,"1990":2,"1992":1,"1994":1,"1997":1,"2001":2,"2014":1,"2044":1,"2074":1,"2082":1,"2092":1,"2095":1,"2107":1,"2109":1,"2183":1,"2189":1,"2219":1,"2222":1,"2249":1,"2253":1,"2254":1,"2275":2,"2276":2,"2277":1,"2280":1,"2297":1,"2298":1,"2300":1,"2309":4,"2327":1,"2330":1,"2331":1,"2374":1,"2375":1,"2377":4,"2379":1,"2381":1,"2392":1,"2394":1,"2406":1,"2408":1,"2410":1,"2415":1,"2423":1,"2425":1,"2431":1,"2449":1,"2453":2,"2456":1,"2461":1,"2464":1,"2466":3,"2470":2,"2474":1,"2499":1,"2521":1,"2528":3,"2566":1,"2567":3,"2569":1,"2573":1,"2579":1,"2583":1,"2590":1,"2613":1,"2618":1,"2620":1,"2637":1,"2640":1,"2653":1,"2667":1,"2673":1,"2680":2,"2684":1,"2690":1,"2691":2,"2696":1,"2702":1,"2704":2,"2710":1,"2711":1,"2717":1,"2726":1,"2728":3,"2729":1,"2731":1,"2733":1,"2735":3,"2736":2,"2738":1,"2741":2,"2744":2,"2749":1,"2754":1,"2755":2,"2756":2,"2765":2,"2770":2,"2776":1,"2782":1,"2795":1,"2796":1,"2829":1,"2853":1,"2857":1,"2883":3,"2886":2,"2902":1,"2914":1,"2925":1,"2927":1,"2929":1,"2931":1,"2933":1,"2940":1,"2941":1,"2945":1,"2946":1}}],["ongoing",{"2":{"160":1,"665":1,"2728":1,"2902":1}}],["onces",{"2":{"199":1,"222":1}}],["once",{"2":{"114":1,"119":1,"134":1,"152":1,"231":1,"245":1,"303":1,"320":1,"328":1,"338":1,"382":1,"393":1,"420":1,"461":2,"489":1,"512":1,"531":1,"657":1,"659":1,"717":2,"718":2,"721":2,"753":1,"768":2,"772":1,"1195":1,"1203":2,"1204":2,"1248":2,"1250":1,"1269":1,"1271":1,"1299":2,"1303":2,"1313":1,"1332":1,"1405":1,"1406":1,"1422":1,"1427":1,"1472":3,"1498":1,"1502":1,"1503":1,"1522":1,"1556":2,"1557":2,"1593":1,"1602":1,"1704":1,"1781":1,"1796":1,"1800":1,"1802":1,"1850":1,"1936":1,"1953":2,"1960":1,"1990":1,"1992":1,"2042":1,"2048":1,"2057":2,"2088":1,"2191":1,"2193":1,"2214":1,"2280":1,"2293":1,"2298":1,"2308":1,"2309":4,"2312":1,"2331":1,"2379":1,"2387":2,"2392":1,"2394":2,"2416":2,"2418":1,"2427":1,"2432":1,"2435":1,"2466":1,"2472":1,"2559":1,"2571":1,"2595":1,"2596":2,"2597":1,"2614":1,"2618":1,"2622":1,"2650":1,"2659":1,"2660":1,"2671":1,"2673":1,"2674":1,"2726":1,"2757":2,"2767":1,"2774":1,"2794":2,"2795":1,"2833":1,"2842":1,"2912":1,"2931":1,"2938":1,"2950":1}}],["ones",{"2":{"243":1,"266":1,"331":1,"430":1,"1296":1,"1354":1,"1485":1,"1489":1,"1615":1,"1622":1,"1767":1,"1983":1,"2089":2,"2205":2,"2219":1,"2222":1,"2309":1,"2433":1,"2434":1,"2462":1,"2474":1,"2669":1,"2751":1,"2757":1,"2884":1,"2950":1}}],["oneshots",{"2":{"2890":1}}],["oneshot",{"0":{"2834":1},"2":{"28":2,"63":2,"112":2,"134":1,"160":1,"172":1,"175":2,"222":1,"266":1,"562":1,"564":4,"570":1,"1378":8,"1472":2,"2276":2,"2381":1,"2650":3,"2651":8,"2652":19,"2874":1,"2890":1}}],["onehand",{"2":{"114":1}}],["onekey",{"2":{"39":1,"175":3,"210":1,"222":1,"308":1,"2406":1,"2408":1,"2410":1,"2674":2,"2729":1}}],["one",{"0":{"357":1,"358":1,"1311":1,"1352":1,"1385":1,"1820":1,"2315":1,"2547":1,"2650":1,"2874":1},"1":{"358":1,"359":1,"1312":1,"1821":1,"1822":1,"2651":1,"2652":1},"2":{"27":1,"35":1,"40":1,"55":1,"75":1,"82":1,"89":1,"93":2,"98":1,"107":1,"114":1,"154":1,"156":1,"157":1,"160":4,"172":1,"175":1,"178":1,"191":1,"194":3,"196":1,"199":2,"201":1,"215":1,"222":2,"231":1,"241":1,"253":1,"256":1,"262":1,"268":1,"270":1,"276":1,"279":1,"281":1,"333":1,"339":1,"344":1,"353":1,"357":1,"358":1,"383":1,"403":1,"409":1,"414":1,"429":1,"433":1,"477":1,"512":2,"516":1,"518":1,"521":1,"526":2,"527":1,"560":1,"561":1,"562":1,"564":1,"567":1,"568":1,"574":3,"575":1,"588":1,"589":2,"596":1,"599":2,"609":1,"610":1,"613":1,"639":1,"671":1,"686":1,"688":2,"698":1,"701":1,"715":3,"716":1,"717":1,"718":1,"719":1,"721":1,"722":1,"805":1,"829":1,"831":1,"858":1,"863":1,"890":1,"893":1,"922":1,"923":1,"928":1,"957":1,"962":1,"991":1,"996":1,"1025":1,"1030":1,"1059":1,"1064":1,"1093":1,"1094":1,"1098":1,"1127":1,"1128":1,"1132":1,"1161":1,"1166":1,"1192":3,"1194":2,"1197":2,"1207":1,"1208":1,"1217":1,"1219":1,"1247":1,"1287":1,"1292":2,"1311":1,"1313":1,"1315":1,"1352":1,"1354":1,"1356":1,"1365":1,"1368":1,"1378":12,"1381":2,"1385":1,"1390":1,"1392":1,"1396":3,"1410":4,"1413":3,"1421":1,"1422":3,"1423":1,"1425":1,"1426":2,"1433":1,"1440":1,"1444":3,"1446":1,"1447":2,"1463":1,"1464":2,"1465":2,"1474":5,"1477":1,"1478":2,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1,"1484":4,"1486":2,"1500":1,"1501":1,"1502":1,"1503":3,"1518":2,"1519":1,"1525":1,"1533":3,"1538":2,"1539":2,"1544":1,"1546":1,"1558":1,"1594":3,"1597":3,"1609":2,"1617":2,"1619":3,"1659":1,"1661":1,"1666":1,"1670":1,"1681":1,"1740":1,"1742":1,"1765":2,"1781":1,"1782":1,"1785":2,"1787":1,"1789":2,"1798":1,"1802":1,"1804":3,"1818":1,"1837":1,"1853":1,"1935":1,"1952":2,"1953":1,"1954":1,"1957":1,"1962":1,"1964":1,"1965":2,"1970":3,"1981":1,"1986":2,"1987":3,"1989":1,"1999":2,"2000":1,"2011":1,"2043":1,"2092":1,"2214":1,"2255":1,"2256":1,"2261":1,"2265":2,"2272":2,"2274":1,"2275":2,"2277":1,"2278":1,"2295":1,"2300":3,"2301":2,"2302":1,"2304":1,"2308":3,"2310":4,"2315":1,"2317":3,"2319":1,"2328":1,"2329":1,"2330":1,"2384":2,"2390":1,"2397":1,"2406":1,"2408":1,"2410":1,"2417":2,"2418":1,"2422":1,"2423":3,"2425":1,"2428":2,"2429":1,"2432":1,"2433":1,"2466":6,"2474":1,"2482":2,"2483":1,"2490":1,"2497":1,"2503":1,"2506":1,"2547":37,"2551":1,"2562":2,"2564":1,"2567":1,"2569":1,"2573":1,"2579":1,"2586":1,"2591":1,"2601":1,"2602":1,"2603":1,"2614":2,"2634":1,"2636":1,"2637":1,"2650":9,"2651":40,"2652":7,"2669":1,"2691":1,"2705":1,"2709":1,"2711":1,"2714":1,"2728":2,"2754":3,"2757":2,"2775":1,"2777":1,"2782":1,"2794":1,"2795":1,"2841":1,"2853":1,"2854":2,"2856":1,"2857":2,"2858":1,"2859":1,"2864":2,"2871":2,"2872":1,"2874":1,"2875":1,"2877":2,"2878":2,"2880":2,"2881":1,"2883":1,"2885":2,"2886":1,"2893":1,"2894":1,"2903":1,"2909":1,"2911":2,"2920":1,"2922":1,"2927":2,"2928":1,"2931":2,"2932":1,"2941":1,"2944":1,"2945":1,"2949":1}}],["on",{"0":{"47":1,"235":1,"627":1,"720":1,"1315":1,"1317":1,"1333":1,"1356":1,"1360":1,"1361":1,"1545":1,"1597":1,"1647":1,"1649":1,"1651":1,"1708":1,"1924":1,"2011":1,"2029":1,"2192":1,"2297":1,"2312":2,"2315":1,"2316":2,"2386":1,"2419":1,"2426":1,"2592":1,"2636":1,"2921":1},"1":{"1316":1,"1317":1,"1709":1,"2030":1,"2031":1},"2":{"1":1,"2":1,"14":1,"15":2,"18":2,"20":1,"21":1,"23":1,"24":2,"39":8,"40":4,"41":1,"43":1,"44":3,"47":2,"65":3,"69":1,"73":4,"74":1,"77":1,"90":1,"92":2,"93":3,"99":1,"105":6,"107":1,"113":2,"114":23,"118":1,"123":2,"124":2,"131":1,"133":1,"134":15,"138":1,"145":1,"149":2,"152":1,"153":4,"157":1,"158":3,"160":4,"166":2,"174":1,"175":15,"179":1,"184":2,"191":8,"194":10,"195":1,"198":1,"199":7,"201":3,"203":2,"210":7,"212":1,"213":1,"217":4,"220":2,"221":1,"222":7,"228":2,"231":4,"233":1,"236":11,"240":1,"247":2,"249":4,"255":1,"263":1,"266":3,"276":2,"277":4,"279":1,"284":2,"289":1,"294":3,"302":1,"303":2,"307":1,"312":1,"320":1,"328":2,"333":2,"338":2,"339":2,"340":1,"341":1,"356":1,"365":1,"370":1,"376":2,"383":2,"384":1,"385":1,"393":8,"397":2,"398":1,"399":1,"403":1,"405":1,"406":1,"407":1,"411":2,"412":1,"414":2,"417":1,"418":2,"426":1,"433":1,"444":1,"445":1,"448":1,"449":1,"450":2,"458":1,"459":2,"461":1,"466":1,"467":1,"468":1,"470":1,"489":1,"495":1,"505":1,"512":1,"513":4,"526":1,"527":1,"538":1,"540":1,"544":1,"545":1,"555":1,"561":3,"562":1,"564":10,"565":5,"570":8,"574":1,"578":1,"579":1,"580":1,"589":1,"594":1,"599":5,"600":1,"604":3,"606":1,"607":2,"608":1,"609":4,"610":1,"613":8,"615":1,"626":1,"633":1,"637":1,"639":6,"643":1,"644":1,"648":1,"649":1,"656":1,"661":1,"664":1,"665":1,"666":1,"668":1,"672":1,"675":1,"676":1,"683":1,"684":2,"685":2,"686":3,"687":1,"690":3,"693":1,"695":3,"698":1,"699":2,"701":1,"716":2,"720":3,"721":3,"728":1,"729":5,"743":1,"746":4,"749":1,"752":1,"753":1,"754":5,"755":1,"756":2,"758":1,"759":1,"761":2,"766":1,"767":1,"768":1,"776":1,"785":1,"788":1,"791":1,"794":1,"797":1,"804":1,"805":1,"829":1,"830":1,"831":2,"858":1,"860":2,"862":1,"863":3,"890":1,"891":1,"892":1,"893":3,"922":1,"925":2,"927":1,"928":3,"957":1,"959":2,"961":1,"962":3,"991":1,"993":2,"995":1,"996":3,"1025":1,"1027":2,"1029":1,"1030":3,"1059":1,"1061":2,"1063":1,"1064":3,"1093":1,"1095":2,"1097":1,"1098":3,"1127":1,"1129":2,"1131":1,"1132":3,"1161":1,"1163":2,"1165":1,"1166":3,"1193":1,"1195":2,"1196":1,"1198":1,"1199":1,"1200":2,"1201":2,"1203":3,"1204":4,"1205":2,"1217":1,"1218":1,"1219":3,"1247":1,"1252":4,"1268":1,"1272":1,"1283":1,"1288":1,"1289":1,"1290":1,"1294":3,"1296":1,"1299":1,"1300":1,"1303":2,"1311":1,"1313":1,"1316":1,"1318":1,"1320":2,"1322":1,"1332":1,"1333":1,"1339":1,"1340":1,"1348":2,"1349":1,"1350":1,"1351":2,"1353":2,"1356":1,"1358":4,"1359":1,"1361":3,"1365":2,"1377":3,"1378":3,"1379":1,"1380":1,"1381":1,"1382":1,"1392":4,"1393":3,"1395":1,"1396":1,"1398":2,"1405":2,"1407":1,"1410":3,"1413":10,"1417":3,"1421":1,"1422":5,"1426":1,"1427":3,"1428":24,"1430":1,"1431":6,"1448":2,"1452":2,"1464":2,"1465":2,"1470":1,"1471":2,"1472":6,"1474":4,"1476":1,"1477":1,"1480":1,"1483":3,"1485":5,"1486":6,"1488":1,"1490":4,"1493":4,"1495":10,"1497":1,"1499":2,"1503":2,"1517":1,"1518":3,"1519":1,"1521":3,"1522":1,"1523":1,"1525":3,"1528":1,"1529":1,"1530":3,"1533":1,"1534":1,"1536":2,"1541":2,"1543":3,"1544":4,"1545":4,"1546":2,"1547":1,"1549":1,"1551":2,"1556":3,"1557":1,"1560":1,"1561":1,"1572":1,"1573":1,"1589":2,"1590":2,"1593":1,"1594":5,"1595":2,"1597":4,"1599":4,"1600":1,"1601":1,"1606":5,"1612":1,"1613":5,"1614":2,"1615":1,"1616":1,"1617":3,"1618":1,"1619":1,"1623":1,"1628":1,"1634":1,"1642":2,"1656":2,"1657":10,"1659":1,"1661":1,"1662":1,"1664":1,"1665":1,"1666":1,"1668":3,"1670":2,"1673":1,"1675":1,"1676":2,"1680":8,"1681":5,"1682":1,"1683":1,"1685":1,"1690":1,"1697":1,"1699":2,"1706":1,"1707":1,"1708":2,"1711":1,"1712":2,"1713":1,"1717":1,"1721":1,"1738":2,"1743":1,"1766":1,"1771":1,"1774":1,"1776":1,"1777":3,"1779":4,"1780":3,"1781":1,"1782":1,"1788":1,"1789":2,"1790":2,"1791":3,"1793":2,"1794":1,"1795":6,"1798":1,"1801":1,"1802":1,"1835":1,"1836":2,"1837":1,"1838":3,"1839":4,"1843":4,"1845":2,"1846":3,"1847":1,"1848":4,"1849":2,"1850":1,"1851":1,"1852":2,"1855":1,"1857":1,"1858":1,"1859":1,"1860":1,"1865":1,"1867":1,"1919":1,"1920":1,"1924":4,"1925":3,"1926":1,"1931":1,"1935":1,"1936":2,"1939":3,"1940":1,"1947":1,"1948":1,"1949":1,"1953":5,"1954":17,"1955":2,"1956":3,"1958":1,"1960":2,"1961":3,"1962":3,"1970":1,"1974":2,"1975":4,"1976":1,"1977":2,"1979":1,"1980":1,"1982":1,"1983":3,"1987":3,"1989":1,"1990":2,"1993":1,"1994":2,"1996":2,"1997":4,"1999":3,"2008":1,"2009":2,"2011":1,"2012":1,"2013":3,"2014":1,"2016":2,"2037":1,"2039":1,"2041":1,"2042":1,"2043":3,"2044":1,"2046":1,"2047":1,"2054":2,"2057":8,"2059":3,"2065":1,"2066":1,"2070":1,"2071":1,"2073":1,"2074":1,"2075":4,"2076":2,"2081":2,"2082":3,"2083":1,"2084":4,"2085":6,"2086":1,"2087":1,"2088":1,"2090":1,"2091":5,"2094":1,"2095":3,"2096":2,"2099":1,"2100":1,"2101":1,"2102":1,"2107":1,"2109":1,"2178":3,"2179":2,"2181":1,"2182":1,"2184":1,"2185":1,"2187":1,"2188":1,"2189":2,"2191":4,"2198":4,"2200":6,"2203":3,"2204":1,"2208":1,"2210":3,"2232":1,"2234":1,"2247":1,"2248":1,"2249":1,"2253":2,"2254":5,"2255":2,"2258":1,"2259":1,"2260":1,"2265":1,"2267":1,"2269":1,"2271":1,"2272":1,"2273":1,"2275":1,"2276":9,"2277":2,"2278":7,"2279":2,"2280":1,"2286":1,"2290":18,"2292":1,"2293":3,"2294":1,"2297":1,"2298":2,"2302":1,"2304":7,"2305":1,"2306":4,"2308":1,"2309":14,"2310":12,"2315":7,"2316":1,"2317":3,"2318":3,"2319":7,"2323":1,"2325":1,"2326":1,"2327":2,"2328":1,"2330":3,"2331":3,"2332":1,"2344":1,"2345":1,"2346":1,"2377":1,"2378":1,"2379":1,"2384":2,"2386":2,"2387":5,"2388":1,"2389":3,"2392":1,"2394":2,"2395":2,"2396":1,"2397":1,"2399":2,"2401":1,"2402":1,"2403":1,"2404":1,"2406":3,"2408":3,"2410":4,"2414":1,"2417":1,"2418":3,"2421":1,"2422":1,"2423":4,"2425":2,"2427":6,"2428":6,"2429":3,"2430":2,"2431":5,"2432":2,"2434":4,"2437":1,"2439":1,"2441":1,"2444":1,"2445":1,"2446":2,"2448":1,"2453":1,"2454":1,"2456":1,"2461":1,"2464":1,"2466":1,"2468":2,"2471":1,"2475":1,"2481":1,"2485":4,"2487":4,"2489":4,"2490":1,"2499":1,"2501":2,"2502":2,"2503":2,"2505":2,"2507":3,"2508":1,"2509":1,"2517":2,"2518":1,"2520":11,"2522":2,"2524":10,"2525":3,"2526":3,"2527":3,"2535":7,"2537":4,"2538":11,"2539":3,"2544":1,"2545":4,"2547":3,"2551":6,"2552":1,"2553":1,"2554":3,"2558":2,"2559":4,"2562":2,"2563":1,"2564":1,"2567":31,"2568":1,"2569":1,"2570":1,"2571":1,"2572":2,"2573":3,"2575":2,"2577":2,"2579":1,"2580":2,"2581":1,"2588":1,"2589":1,"2590":1,"2591":1,"2592":1,"2594":1,"2597":1,"2600":1,"2601":1,"2607":3,"2609":1,"2610":1,"2612":5,"2614":1,"2616":4,"2617":1,"2622":1,"2624":1,"2627":1,"2628":2,"2630":1,"2634":4,"2637":3,"2639":2,"2640":3,"2644":1,"2651":6,"2652":3,"2653":2,"2657":1,"2658":2,"2662":2,"2663":1,"2664":1,"2669":2,"2673":1,"2674":2,"2678":2,"2679":4,"2680":1,"2683":1,"2685":1,"2686":1,"2690":3,"2691":4,"2692":1,"2694":3,"2696":1,"2700":1,"2705":1,"2706":1,"2707":3,"2709":2,"2713":1,"2717":1,"2718":1,"2722":1,"2725":1,"2726":4,"2727":1,"2728":6,"2729":2,"2730":1,"2735":2,"2751":1,"2753":1,"2754":5,"2755":3,"2756":5,"2757":18,"2764":1,"2765":1,"2767":1,"2772":2,"2777":1,"2780":1,"2781":1,"2782":4,"2783":2,"2784":1,"2786":1,"2790":1,"2794":1,"2795":3,"2796":1,"2797":1,"2804":1,"2805":1,"2808":1,"2813":1,"2823":1,"2826":1,"2835":1,"2837":1,"2838":1,"2843":1,"2845":1,"2852":1,"2853":2,"2854":2,"2855":2,"2856":4,"2857":4,"2861":3,"2865":1,"2867":3,"2868":2,"2870":1,"2871":3,"2875":2,"2877":2,"2878":3,"2880":2,"2883":1,"2884":3,"2886":1,"2894":1,"2897":1,"2898":1,"2899":1,"2901":1,"2903":3,"2912":3,"2913":3,"2914":1,"2916":2,"2917":3,"2918":2,"2919":2,"2920":5,"2921":9,"2922":2,"2924":1,"2925":1,"2926":12,"2927":6,"2929":1,"2931":2,"2932":2,"2935":1,"2936":1,"2937":1,"2938":1,"2941":1,"2942":1,"2943":1,"2946":1}}],["often",{"0":{"2638":1},"1":{"2639":1,"2640":1,"2641":1},"2":{"99":1,"561":1,"645":1,"646":1,"685":1,"720":1,"1283":1,"1318":1,"1344":1,"1347":1,"1352":1,"1409":3,"1410":1,"1415":1,"1497":1,"1593":2,"1670":1,"1678":1,"1999":1,"2178":1,"2208":1,"2291":1,"2317":1,"2318":1,"2469":1,"2632":1,"2633":1,"2635":1,"2730":1,"2828":1,"2835":2,"2837":1,"2844":1}}],["offending",{"0":{"2567":1},"2":{"2570":1,"2571":1,"2728":1}}],["offer",{"2":{"2179":1,"2424":1}}],["offered",{"2":{"1781":1,"1783":1}}],["offers",{"2":{"1381":1,"1484":1,"1550":1,"2675":1}}],["official",{"2":{"1356":1,"1395":1,"2483":1,"2567":1,"2675":1,"2684":1,"2694":1,"2695":1,"2758":1,"2898":1}}],["officially",{"2":{"254":1,"1342":1,"1343":1,"2590":1}}],["offloaded",{"2":{"1196":1,"1199":1}}],["offload",{"2":{"768":1,"1292":1,"1293":1,"1294":1}}],["offsetof",{"2":{"1419":4}}],["offset=0",{"2":{"524":1}}],["offsets",{"2":{"210":1,"249":1,"1538":1,"1953":1,"2756":6,"2757":4,"2775":4}}],["offset",{"0":{"2775":1,"2800":1},"2":{"199":1,"210":1,"222":2,"317":1,"524":4,"754":1,"755":1,"1419":4,"1538":2,"1937":12,"1949":1,"1952":1,"2085":1,"2185":1,"2288":1,"2756":2,"2757":8,"2767":1,"2768":3,"2772":1,"2774":2,"2775":2,"2797":1,"2800":4}}],["offs",{"2":{"114":1}}],["offhand",{"2":{"21":1,"24":1,"1948":1,"2287":1}}],["off",{"0":{"1311":1,"1648":1,"1650":1,"1652":1,"1710":1,"1924":1,"2192":1,"2315":1},"1":{"1312":1},"2":{"15":1,"92":1,"105":4,"114":2,"116":1,"134":1,"149":1,"152":1,"160":1,"195":1,"210":1,"222":1,"236":1,"247":2,"328":1,"333":1,"346":1,"409":1,"418":1,"513":1,"561":1,"565":3,"570":2,"603":1,"613":1,"647":1,"651":1,"652":2,"653":2,"669":1,"719":1,"720":2,"857":2,"860":14,"1092":2,"1095":14,"1126":2,"1129":14,"1160":2,"1163":14,"1311":1,"1378":1,"1417":1,"1422":1,"1426":1,"1427":1,"1428":7,"1431":2,"1433":1,"1464":1,"1485":6,"1486":5,"1490":3,"1493":2,"1495":8,"1521":3,"1529":1,"1530":3,"1536":1,"1541":1,"1543":4,"1544":1,"1546":1,"1549":1,"1560":1,"1562":1,"1572":1,"1574":1,"1597":1,"1598":1,"1599":2,"1601":1,"1606":4,"1642":1,"1656":2,"1657":7,"1678":1,"1680":6,"1681":1,"1684":2,"1710":1,"1779":1,"1780":3,"1789":1,"1791":1,"1792":1,"1793":2,"1838":1,"1839":4,"1843":4,"1848":4,"1852":2,"1857":1,"1858":1,"1861":1,"1862":1,"1919":1,"1924":4,"1925":4,"1947":1,"1949":1,"1954":8,"1955":2,"1968":1,"1983":1,"2008":7,"2009":1,"2012":4,"2013":4,"2041":1,"2043":1,"2084":4,"2085":3,"2089":2,"2091":2,"2097":3,"2099":1,"2100":1,"2103":1,"2104":1,"2181":1,"2182":1,"2191":3,"2192":2,"2200":4,"2204":1,"2205":2,"2210":1,"2253":2,"2254":3,"2276":4,"2286":2,"2288":1,"2290":10,"2304":6,"2306":2,"2310":1,"2315":8,"2318":1,"2319":5,"2417":2,"2418":3,"2425":1,"2427":1,"2429":1,"2520":5,"2524":8,"2525":3,"2526":3,"2527":4,"2535":2,"2537":4,"2538":5,"2539":4,"2544":1,"2545":4,"2547":3,"2551":5,"2558":2,"2569":1,"2651":4,"2652":5,"2722":1,"2725":1,"2728":2,"2754":1,"2757":2,"2782":1,"2783":2,"2784":1,"2857":1,"2871":1,"2877":1,"2878":1,"2880":2,"2936":1}}],["of",{"0":{"8":1,"18":1,"23":1,"89":1,"123":1,"124":1,"262":1,"265":1,"275":1,"302":1,"303":1,"307":1,"316":1,"323":1,"327":1,"331":1,"332":1,"337":1,"338":1,"409":1,"423":1,"592":1,"615":1,"630":1,"689":1,"1349":1,"1368":1,"1410":1,"1659":1,"1788":1,"1796":1,"1838":1,"1839":1,"2000":1,"2206":1,"2474":1,"2560":1,"2635":1,"2780":1,"2801":1,"2888":1,"2944":1},"1":{"24":1,"631":1,"632":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"2561":1,"2562":1,"2563":1,"2564":1,"2636":1,"2637":1,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1,"2802":1,"2803":1,"2804":1,"2805":1,"2806":1,"2807":1,"2808":1,"2809":1,"2810":1,"2811":1,"2812":1,"2813":1,"2814":1,"2815":1,"2816":1,"2817":1,"2818":1,"2819":1,"2820":1,"2821":1,"2822":1,"2823":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":1,"2832":1,"2833":1,"2834":1,"2835":1,"2836":1,"2837":1,"2838":1,"2839":1,"2840":1,"2841":1,"2842":1,"2843":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2849":1,"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"0":1,"3":2,"4":1,"5":1,"6":1,"9":1,"11":1,"12":2,"13":1,"15":2,"20":2,"21":3,"22":1,"23":2,"24":1,"27":1,"33":1,"35":3,"39":4,"40":9,"41":1,"43":1,"48":2,"50":1,"55":1,"63":1,"64":1,"65":3,"67":1,"69":1,"70":2,"74":4,"76":3,"83":1,"86":2,"87":2,"88":2,"93":3,"94":3,"95":2,"98":2,"99":2,"103":4,"104":2,"107":3,"109":1,"112":3,"113":4,"114":15,"118":2,"119":4,"123":1,"124":3,"125":1,"126":2,"127":2,"130":2,"131":3,"132":1,"133":2,"134":21,"142":1,"149":11,"152":1,"153":3,"154":1,"156":5,"157":2,"158":1,"160":4,"166":4,"167":1,"168":2,"169":1,"170":1,"171":1,"173":3,"174":1,"175":15,"178":4,"179":1,"181":3,"182":1,"184":3,"187":1,"188":3,"189":3,"190":2,"191":16,"194":8,"195":1,"196":1,"198":4,"199":16,"201":4,"202":1,"203":1,"210":10,"212":6,"213":4,"214":5,"215":2,"220":2,"221":1,"222":20,"224":3,"228":1,"229":1,"231":1,"233":6,"234":2,"236":12,"238":5,"243":1,"245":1,"246":1,"247":1,"248":1,"249":6,"251":2,"254":2,"255":2,"256":2,"259":1,"262":5,"263":3,"265":3,"266":10,"268":2,"272":2,"273":2,"275":2,"276":1,"277":4,"279":6,"283":1,"285":9,"288":4,"293":2,"294":3,"297":3,"298":1,"303":1,"304":1,"305":2,"307":8,"308":10,"312":4,"314":2,"316":2,"317":2,"323":1,"327":1,"328":7,"331":1,"333":7,"338":1,"339":1,"350":1,"352":1,"354":1,"366":2,"367":2,"369":1,"379":2,"382":5,"383":5,"389":1,"393":2,"396":3,"397":1,"398":3,"399":1,"403":5,"407":1,"408":3,"411":2,"412":7,"414":1,"417":1,"425":1,"429":2,"430":1,"431":1,"433":3,"434":1,"435":1,"436":1,"452":1,"453":1,"454":1,"455":1,"469":1,"472":1,"489":3,"491":2,"493":2,"494":4,"495":2,"504":1,"505":1,"507":1,"509":1,"510":1,"512":13,"513":2,"514":4,"516":1,"521":1,"522":1,"523":2,"524":5,"525":2,"528":1,"529":2,"530":1,"534":1,"538":2,"540":2,"541":1,"542":2,"543":1,"544":1,"545":1,"547":1,"555":5,"559":1,"560":2,"561":12,"563":1,"564":7,"565":9,"568":2,"569":1,"570":6,"572":1,"574":1,"575":1,"576":1,"578":2,"579":2,"580":1,"581":1,"586":1,"588":4,"589":2,"591":1,"592":1,"593":2,"594":1,"599":1,"600":1,"603":1,"605":1,"607":8,"608":1,"609":3,"610":2,"613":9,"614":1,"615":4,"618":1,"620":1,"622":1,"623":1,"626":1,"627":1,"628":1,"629":2,"630":2,"631":1,"633":1,"637":2,"639":8,"643":1,"646":1,"647":2,"648":2,"651":2,"655":1,"656":4,"657":3,"660":3,"661":2,"665":10,"666":1,"671":5,"673":2,"675":2,"677":2,"683":1,"684":1,"685":1,"686":3,"687":3,"688":5,"689":1,"690":2,"691":1,"695":4,"698":1,"699":2,"701":6,"704":3,"707":1,"709":1,"715":1,"717":1,"719":8,"720":1,"721":2,"722":1,"724":1,"732":1,"734":1,"735":1,"737":1,"740":2,"746":3,"748":2,"749":5,"750":4,"751":1,"752":1,"753":5,"754":12,"755":7,"756":7,"757":3,"758":1,"759":4,"761":3,"762":2,"763":4,"764":1,"766":5,"767":1,"768":3,"772":1,"774":3,"777":3,"780":3,"783":5,"786":3,"789":3,"792":3,"795":3,"798":1,"802":1,"810":1,"812":1,"814":1,"816":1,"818":1,"826":1,"828":5,"829":1,"834":1,"837":1,"839":1,"841":1,"843":1,"845":1,"855":1,"857":6,"858":1,"860":1,"866":1,"869":1,"871":1,"873":1,"875":1,"877":1,"887":1,"889":5,"890":1,"896":1,"899":1,"903":1,"905":1,"907":1,"909":1,"919":1,"921":6,"922":1,"925":1,"931":1,"934":1,"938":1,"940":1,"942":1,"944":1,"954":1,"956":6,"957":1,"959":1,"965":1,"968":1,"972":1,"974":1,"976":1,"978":1,"988":1,"990":6,"991":1,"993":1,"999":1,"1002":1,"1006":1,"1008":1,"1010":1,"1012":1,"1022":1,"1024":7,"1025":1,"1027":1,"1033":1,"1036":1,"1040":1,"1042":1,"1044":1,"1046":1,"1056":1,"1058":7,"1059":1,"1061":1,"1067":1,"1070":1,"1074":1,"1076":1,"1078":1,"1080":1,"1090":1,"1092":6,"1093":1,"1095":1,"1101":1,"1104":1,"1108":1,"1110":1,"1112":1,"1114":1,"1124":1,"1126":6,"1127":1,"1129":1,"1135":1,"1138":1,"1142":1,"1144":1,"1146":1,"1148":1,"1158":1,"1160":7,"1161":1,"1163":1,"1169":1,"1171":1,"1172":1,"1176":1,"1178":1,"1180":1,"1182":1,"1192":2,"1193":2,"1195":1,"1196":2,"1197":2,"1198":1,"1200":6,"1201":1,"1203":3,"1204":2,"1205":5,"1207":1,"1209":1,"1213":1,"1214":2,"1216":5,"1217":1,"1222":1,"1225":1,"1229":1,"1231":1,"1233":1,"1235":1,"1245":1,"1247":1,"1250":1,"1252":3,"1260":2,"1263":2,"1266":1,"1268":1,"1271":1,"1278":2,"1280":2,"1283":2,"1285":7,"1286":2,"1287":2,"1288":1,"1291":1,"1295":2,"1300":1,"1302":1,"1303":1,"1306":1,"1308":1,"1311":1,"1313":1,"1315":2,"1316":1,"1317":1,"1319":1,"1322":1,"1327":1,"1328":1,"1329":1,"1330":1,"1332":1,"1333":1,"1335":2,"1336":2,"1337":2,"1343":5,"1345":1,"1348":1,"1349":2,"1352":1,"1353":1,"1356":5,"1359":1,"1362":3,"1365":4,"1367":2,"1368":3,"1370":1,"1372":1,"1376":1,"1378":8,"1380":1,"1381":13,"1382":2,"1390":1,"1395":1,"1396":1,"1398":2,"1400":1,"1401":1,"1404":1,"1407":3,"1410":12,"1413":11,"1414":1,"1415":3,"1416":1,"1417":6,"1418":1,"1419":3,"1420":1,"1421":3,"1422":3,"1423":6,"1425":2,"1427":4,"1428":4,"1431":4,"1432":1,"1433":5,"1434":2,"1438":1,"1439":1,"1440":2,"1443":1,"1446":2,"1448":2,"1450":1,"1451":2,"1452":1,"1455":1,"1457":1,"1462":2,"1464":1,"1465":1,"1467":4,"1470":4,"1471":3,"1472":7,"1474":3,"1477":2,"1480":2,"1484":1,"1485":5,"1486":1,"1487":1,"1488":1,"1491":1,"1492":2,"1493":5,"1495":2,"1497":1,"1498":2,"1499":1,"1502":1,"1503":4,"1510":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":2,"1518":3,"1519":1,"1521":1,"1522":3,"1524":1,"1525":2,"1528":3,"1529":1,"1530":1,"1532":2,"1533":3,"1534":4,"1535":2,"1538":12,"1539":2,"1541":4,"1544":4,"1545":1,"1546":5,"1548":1,"1549":1,"1551":1,"1553":1,"1554":1,"1558":3,"1589":2,"1591":2,"1592":1,"1593":1,"1602":2,"1605":2,"1609":5,"1612":3,"1613":1,"1614":1,"1618":1,"1620":1,"1621":2,"1622":4,"1623":2,"1626":1,"1627":1,"1628":1,"1630":1,"1633":7,"1642":3,"1644":1,"1645":4,"1653":1,"1654":2,"1655":2,"1659":1,"1661":4,"1662":3,"1663":3,"1664":2,"1666":2,"1667":2,"1668":1,"1669":1,"1670":1,"1672":2,"1678":2,"1681":5,"1686":2,"1690":1,"1691":2,"1692":2,"1693":2,"1694":2,"1695":2,"1699":4,"1704":1,"1713":2,"1715":1,"1717":2,"1720":4,"1721":1,"1722":4,"1732":1,"1733":1,"1740":2,"1741":2,"1742":4,"1746":1,"1747":1,"1751":1,"1752":1,"1753":1,"1754":1,"1755":1,"1758":1,"1759":1,"1760":1,"1762":2,"1765":2,"1766":3,"1769":1,"1774":1,"1779":2,"1781":4,"1782":4,"1783":2,"1784":4,"1785":3,"1786":3,"1787":5,"1788":5,"1789":2,"1791":2,"1792":1,"1796":1,"1798":1,"1800":1,"1801":3,"1802":8,"1803":2,"1835":1,"1836":1,"1837":2,"1840":1,"1841":1,"1842":1,"1843":2,"1845":2,"1846":14,"1849":5,"1850":2,"1851":3,"1852":5,"1863":1,"1865":1,"1867":1,"1878":1,"1906":1,"1913":2,"1916":2,"1923":3,"1934":3,"1935":4,"1936":9,"1937":1,"1938":2,"1939":3,"1940":2,"1943":1,"1945":1,"1946":1,"1947":2,"1949":5,"1950":1,"1951":3,"1952":10,"1953":2,"1954":16,"1957":2,"1959":3,"1961":1,"1962":2,"1964":1,"1965":1,"1966":4,"1967":1,"1968":2,"1970":3,"1974":8,"1976":2,"1977":4,"1978":3,"1979":1,"1980":2,"1981":5,"1982":2,"1983":7,"1985":4,"1986":4,"1989":2,"1990":1,"1992":1,"1993":1,"1994":5,"1999":1,"2001":2,"2003":2,"2006":1,"2008":5,"2009":1,"2011":1,"2012":1,"2013":1,"2014":3,"2016":2,"2021":1,"2022":1,"2023":1,"2024":1,"2025":1,"2026":1,"2027":1,"2028":1,"2029":1,"2030":1,"2034":1,"2036":1,"2037":2,"2043":2,"2044":3,"2046":1,"2047":1,"2048":1,"2051":2,"2056":2,"2057":6,"2059":2,"2062":1,"2064":1,"2065":1,"2067":1,"2068":1,"2069":3,"2070":2,"2073":1,"2076":1,"2077":1,"2078":1,"2081":2,"2082":14,"2085":10,"2086":9,"2088":2,"2090":3,"2091":6,"2094":1,"2105":1,"2107":1,"2109":1,"2120":1,"2166":1,"2173":2,"2176":2,"2178":3,"2179":6,"2180":2,"2181":1,"2183":1,"2185":6,"2187":7,"2188":2,"2189":5,"2190":2,"2191":3,"2194":1,"2198":2,"2199":4,"2203":1,"2206":3,"2207":2,"2208":1,"2209":2,"2210":1,"2211":1,"2213":1,"2214":1,"2217":2,"2219":3,"2221":1,"2222":2,"2228":1,"2230":1,"2231":1,"2232":1,"2234":1,"2235":1,"2252":1,"2256":1,"2259":1,"2260":2,"2261":1,"2264":1,"2265":1,"2266":1,"2267":2,"2269":2,"2270":1,"2272":2,"2273":1,"2274":1,"2275":10,"2276":28,"2277":2,"2278":7,"2279":1,"2280":2,"2281":1,"2283":1,"2284":1,"2285":1,"2286":2,"2288":2,"2289":4,"2290":11,"2291":4,"2292":3,"2293":2,"2294":2,"2295":16,"2296":6,"2297":3,"2298":5,"2300":17,"2301":1,"2303":1,"2305":2,"2308":3,"2309":6,"2310":6,"2312":1,"2316":1,"2317":8,"2318":4,"2319":6,"2320":1,"2323":1,"2325":3,"2326":1,"2327":2,"2328":1,"2329":5,"2330":6,"2331":4,"2348":1,"2352":1,"2362":1,"2379":6,"2381":2,"2384":1,"2386":1,"2387":2,"2388":4,"2389":2,"2390":1,"2392":2,"2394":1,"2395":1,"2396":1,"2397":2,"2399":2,"2401":2,"2402":1,"2403":4,"2404":2,"2406":2,"2408":2,"2410":2,"2412":1,"2414":1,"2415":5,"2417":12,"2418":2,"2421":1,"2423":4,"2424":4,"2425":6,"2426":1,"2427":13,"2428":5,"2429":5,"2430":2,"2431":3,"2432":4,"2434":7,"2435":2,"2437":1,"2439":2,"2446":1,"2449":1,"2450":1,"2451":1,"2453":4,"2455":3,"2456":1,"2458":1,"2459":1,"2461":2,"2464":1,"2465":1,"2466":7,"2467":1,"2468":2,"2469":2,"2470":2,"2472":2,"2474":4,"2475":4,"2477":3,"2479":3,"2481":1,"2482":4,"2483":1,"2490":2,"2494":1,"2496":1,"2497":2,"2501":2,"2502":4,"2503":5,"2504":5,"2505":1,"2507":1,"2508":3,"2509":2,"2517":2,"2519":1,"2520":4,"2521":1,"2522":1,"2524":2,"2525":1,"2526":1,"2538":3,"2549":1,"2553":1,"2556":4,"2557":4,"2558":4,"2559":2,"2560":2,"2561":3,"2562":5,"2563":2,"2564":2,"2566":1,"2567":8,"2568":9,"2569":2,"2570":2,"2571":3,"2573":4,"2575":2,"2576":3,"2579":6,"2580":2,"2582":1,"2583":1,"2584":2,"2585":4,"2586":4,"2587":3,"2590":4,"2591":1,"2593":1,"2594":1,"2595":1,"2596":2,"2597":2,"2598":2,"2601":4,"2602":1,"2607":2,"2612":3,"2614":1,"2617":1,"2619":1,"2620":1,"2626":2,"2627":3,"2628":4,"2629":3,"2632":2,"2633":1,"2634":13,"2635":2,"2636":2,"2637":1,"2638":3,"2640":3,"2641":1,"2643":1,"2650":3,"2651":1,"2652":3,"2653":1,"2655":1,"2658":2,"2659":1,"2662":1,"2663":2,"2664":1,"2665":1,"2667":1,"2669":1,"2671":2,"2674":8,"2675":2,"2676":2,"2679":1,"2680":2,"2682":1,"2684":7,"2685":8,"2686":4,"2687":2,"2690":1,"2691":2,"2693":1,"2694":3,"2695":1,"2700":3,"2702":2,"2704":1,"2705":2,"2706":1,"2707":5,"2709":3,"2710":3,"2711":4,"2713":1,"2714":5,"2715":1,"2716":2,"2717":2,"2718":2,"2719":1,"2720":4,"2721":3,"2722":2,"2725":1,"2726":10,"2727":1,"2728":11,"2729":6,"2730":1,"2731":2,"2732":4,"2738":3,"2739":1,"2741":4,"2749":1,"2751":1,"2754":9,"2755":12,"2756":21,"2757":29,"2758":1,"2764":4,"2765":5,"2767":7,"2768":1,"2769":1,"2770":1,"2771":1,"2772":6,"2773":5,"2774":6,"2775":4,"2776":6,"2777":2,"2778":2,"2779":1,"2780":2,"2784":1,"2786":1,"2787":1,"2789":2,"2790":1,"2792":4,"2794":4,"2795":4,"2796":1,"2797":1,"2799":1,"2802":2,"2803":1,"2805":1,"2807":1,"2811":1,"2812":1,"2817":1,"2818":1,"2823":1,"2825":1,"2828":2,"2831":1,"2833":2,"2835":1,"2840":1,"2841":2,"2845":2,"2846":2,"2851":2,"2852":3,"2853":2,"2854":4,"2855":1,"2856":1,"2857":4,"2858":1,"2859":1,"2860":1,"2861":2,"2862":1,"2863":2,"2864":7,"2865":2,"2868":4,"2869":19,"2870":1,"2871":13,"2872":6,"2874":2,"2875":1,"2877":5,"2878":13,"2879":1,"2880":5,"2881":1,"2882":1,"2883":2,"2884":3,"2885":3,"2886":2,"2888":2,"2889":2,"2890":1,"2892":2,"2893":2,"2894":2,"2895":3,"2896":3,"2897":1,"2901":1,"2902":6,"2903":3,"2906":2,"2907":4,"2908":1,"2909":1,"2910":4,"2912":6,"2914":2,"2915":2,"2919":2,"2920":4,"2921":3,"2922":3,"2923":7,"2924":1,"2925":3,"2926":1,"2927":7,"2929":6,"2930":1,"2931":3,"2932":3,"2933":1,"2934":1,"2935":4,"2936":2,"2937":6,"2938":6,"2939":3,"2940":3,"2941":5,"2942":3,"2944":4,"2945":4,"2946":1,"2949":1,"2950":7}}],["ordinarily",{"2":{"1518":1}}],["ordering",{"2":{"40":1,"2044":1,"2728":1}}],["order",{"0":{"1287":1,"1611":1,"1612":1,"2206":1},"2":{"39":3,"40":1,"43":1,"119":1,"124":1,"125":1,"132":1,"133":1,"134":1,"158":2,"169":1,"170":1,"172":1,"175":2,"189":1,"191":2,"206":1,"209":1,"222":1,"234":2,"272":1,"277":1,"308":1,"340":1,"383":1,"458":1,"483":1,"568":1,"572":1,"575":2,"633":1,"681":1,"685":1,"729":1,"749":1,"750":1,"754":2,"759":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1203":1,"1204":1,"1219":1,"1285":3,"1287":7,"1320":1,"1365":1,"1380":1,"1410":1,"1417":1,"1427":1,"1439":2,"1514":1,"1538":1,"1611":2,"1612":8,"1787":1,"1953":1,"2044":1,"2054":1,"2086":1,"2189":1,"2206":5,"2259":1,"2269":1,"2270":1,"2297":1,"2305":1,"2310":1,"2317":1,"2319":1,"2416":1,"2429":1,"2454":1,"2455":1,"2482":1,"2499":1,"2567":1,"2569":1,"2612":2,"2632":1,"2674":2,"2684":1,"2685":2,"2707":1,"2713":1,"2728":1,"2729":1,"2755":1,"2874":1,"2901":1,"2912":1,"2914":1,"2920":1,"2950":1}}],["ored",{"2":{"1362":1}}],["orient",{"2":{"2273":1}}],["orientation",{"2":{"2051":5,"2757":1}}],["oriented",{"2":{"634":1,"1948":1,"2287":1,"2942":1}}],["oring",{"2":{"1538":2,"2572":1}}],["originating",{"2":{"1976":1,"1977":1}}],["original",{"2":{"124":1,"656":1,"1381":1,"1662":1,"1766":1,"1963":1,"2412":1,"2464":1,"2803":1,"2929":1}}],["originally",{"2":{"113":1,"293":1,"305":1,"314":1,"1343":1,"1540":1,"2395":1,"2500":1,"2726":1}}],["origin",{"2":{"411":1,"421":2,"422":1,"423":2,"459":2,"607":1,"2608":3,"2637":6,"2639":4,"2640":1}}],["orange",{"2":{"149":1,"686":1,"1958":1,"2089":2,"2205":3}}],["organise",{"2":{"222":1}}],["organize",{"2":{"114":1,"149":1,"2450":1}}],["organization",{"2":{"11":1,"149":1,"268":1,"279":1,"348":1,"2387":1,"2450":3}}],["org",{"2":{"149":1,"604":1,"1353":1,"1358":1,"1367":1,"1375":1,"1376":1,"1467":1,"1928":1,"2732":1}}],["orbit",{"2":{"149":1}}],["orthocode",{"2":{"277":1}}],["orthograph",{"2":{"249":1}}],["ortho60",{"2":{"199":1}}],["ortholinear",{"2":{"114":1,"684":1,"1490":1,"2423":1}}],["ortho",{"2":{"70":1,"143":4,"222":3,"249":1,"1436":4,"1439":1,"1492":1,"2425":1,"2449":1,"2721":2,"2728":1,"2852":1}}],["or",{"0":{"1349":1,"1993":1,"2307":1,"2632":1,"2849":1,"2914":1,"2933":1,"2945":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1,"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1,"2921":1},"2":{"0":1,"9":1,"12":1,"13":1,"22":1,"29":1,"39":1,"42":1,"49":1,"52":1,"82":1,"87":1,"88":2,"90":2,"103":2,"104":2,"119":2,"126":2,"127":2,"131":1,"134":1,"138":1,"152":2,"153":2,"158":2,"160":1,"166":1,"175":1,"202":2,"209":1,"210":1,"212":1,"213":1,"214":2,"232":1,"234":4,"240":3,"244":1,"263":1,"268":1,"275":1,"279":2,"288":1,"302":1,"312":1,"339":1,"353":1,"370":1,"399":3,"403":1,"414":5,"417":1,"418":2,"429":7,"430":3,"433":3,"435":1,"436":1,"437":3,"439":1,"440":3,"445":2,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"459":1,"460":1,"462":1,"463":3,"470":1,"477":1,"487":1,"488":1,"492":1,"493":1,"495":1,"496":1,"507":2,"509":1,"512":3,"513":2,"516":1,"519":1,"520":1,"524":2,"528":1,"538":2,"540":1,"541":1,"544":1,"545":2,"556":1,"557":2,"561":3,"564":3,"565":2,"569":1,"570":1,"574":2,"581":1,"591":1,"592":1,"596":1,"597":1,"600":3,"604":2,"606":1,"607":3,"608":1,"610":4,"613":7,"614":1,"615":1,"622":1,"627":3,"628":1,"630":3,"639":4,"644":1,"645":2,"647":2,"648":2,"651":3,"656":1,"657":2,"660":1,"665":1,"666":1,"668":1,"669":1,"672":3,"683":2,"684":1,"686":5,"689":1,"690":2,"695":2,"698":1,"701":3,"703":1,"714":1,"715":4,"719":4,"720":6,"721":1,"723":1,"724":1,"743":1,"746":1,"748":1,"758":1,"763":2,"765":1,"766":2,"800":1,"801":1,"821":3,"823":1,"826":1,"827":1,"848":3,"850":1,"855":1,"856":1,"887":1,"888":1,"912":3,"914":1,"919":1,"920":1,"947":3,"949":1,"954":1,"955":1,"981":3,"983":1,"988":1,"989":1,"1015":3,"1017":1,"1022":1,"1023":1,"1049":3,"1051":1,"1056":1,"1057":1,"1090":1,"1091":1,"1124":1,"1125":1,"1158":1,"1159":1,"1194":1,"1195":1,"1196":1,"1197":1,"1198":1,"1200":3,"1201":1,"1205":1,"1207":1,"1214":1,"1215":1,"1238":3,"1240":1,"1246":1,"1253":1,"1256":1,"1267":1,"1284":1,"1285":1,"1287":1,"1289":2,"1290":1,"1294":1,"1297":1,"1311":1,"1313":1,"1315":2,"1316":1,"1318":2,"1322":1,"1329":1,"1342":1,"1343":1,"1346":1,"1351":1,"1352":1,"1353":2,"1362":1,"1376":2,"1377":1,"1378":2,"1381":3,"1388":1,"1390":1,"1391":1,"1409":1,"1410":1,"1413":1,"1417":3,"1421":1,"1422":5,"1423":1,"1425":1,"1426":1,"1427":2,"1428":4,"1429":1,"1430":1,"1439":1,"1440":1,"1442":2,"1444":2,"1446":3,"1448":5,"1452":1,"1457":1,"1464":1,"1465":2,"1466":2,"1467":3,"1470":2,"1471":1,"1472":2,"1473":1,"1477":3,"1478":1,"1480":3,"1481":1,"1482":1,"1483":1,"1485":1,"1486":2,"1488":1,"1490":1,"1492":2,"1493":1,"1498":2,"1499":1,"1501":1,"1503":1,"1517":3,"1522":1,"1524":1,"1525":3,"1527":3,"1528":1,"1529":1,"1532":2,"1534":1,"1537":1,"1538":1,"1541":2,"1542":1,"1543":1,"1544":1,"1545":3,"1546":1,"1547":1,"1558":1,"1560":1,"1572":1,"1590":1,"1591":1,"1593":5,"1594":5,"1595":1,"1597":2,"1601":2,"1602":1,"1605":1,"1608":1,"1609":1,"1612":6,"1613":2,"1617":1,"1618":1,"1620":1,"1621":2,"1622":1,"1623":1,"1625":1,"1626":1,"1630":3,"1631":1,"1632":1,"1634":1,"1645":1,"1655":1,"1657":2,"1661":5,"1662":1,"1668":1,"1670":1,"1671":1,"1672":1,"1673":1,"1674":1,"1678":1,"1680":1,"1685":1,"1686":1,"1687":2,"1688":1,"1697":1,"1708":1,"1712":1,"1726":1,"1728":1,"1738":1,"1740":1,"1742":1,"1749":2,"1757":1,"1765":1,"1766":1,"1767":1,"1774":1,"1776":1,"1781":2,"1782":1,"1785":1,"1788":5,"1791":2,"1794":1,"1801":1,"1804":1,"1838":1,"1839":1,"1843":3,"1846":4,"1848":1,"1850":2,"1855":2,"1857":1,"1858":1,"1865":1,"1867":1,"1923":2,"1934":2,"1935":2,"1937":2,"1939":2,"1943":3,"1945":1,"1947":1,"1948":2,"1949":1,"1953":1,"1954":10,"1956":1,"1958":1,"1964":1,"1973":2,"1974":1,"1983":4,"1986":3,"1987":2,"1994":1,"1996":1,"1999":2,"2000":2,"2001":1,"2003":1,"2008":4,"2014":1,"2016":1,"2037":2,"2039":2,"2040":2,"2041":1,"2046":2,"2051":1,"2052":1,"2054":1,"2057":3,"2068":2,"2069":1,"2072":1,"2074":1,"2075":1,"2076":1,"2078":1,"2082":4,"2084":1,"2088":2,"2094":2,"2099":1,"2100":1,"2107":1,"2109":1,"2181":2,"2184":1,"2188":1,"2191":2,"2203":1,"2211":1,"2251":1,"2253":1,"2254":4,"2258":1,"2259":2,"2260":2,"2261":3,"2265":2,"2272":1,"2273":2,"2276":1,"2277":3,"2278":2,"2279":2,"2280":1,"2284":1,"2286":1,"2287":2,"2290":5,"2292":1,"2293":1,"2294":2,"2295":1,"2298":4,"2300":5,"2301":1,"2304":2,"2309":4,"2310":2,"2317":4,"2318":4,"2319":1,"2323":1,"2327":1,"2328":1,"2329":1,"2330":2,"2331":1,"2332":1,"2365":1,"2376":1,"2379":2,"2381":2,"2383":1,"2384":3,"2387":1,"2389":3,"2392":2,"2394":1,"2395":1,"2399":2,"2401":2,"2402":1,"2404":2,"2406":3,"2408":3,"2410":3,"2411":1,"2417":3,"2418":1,"2421":1,"2423":2,"2426":1,"2427":4,"2428":1,"2429":1,"2431":2,"2432":2,"2433":1,"2434":4,"2435":2,"2444":1,"2445":1,"2449":1,"2451":1,"2453":1,"2454":1,"2455":3,"2458":1,"2465":1,"2466":2,"2470":1,"2474":1,"2482":1,"2483":1,"2486":1,"2502":3,"2508":1,"2523":1,"2527":1,"2531":1,"2534":1,"2535":1,"2537":1,"2544":1,"2545":1,"2551":1,"2552":1,"2554":1,"2558":1,"2559":1,"2561":3,"2562":3,"2567":3,"2568":3,"2569":2,"2570":1,"2572":1,"2573":2,"2584":2,"2585":2,"2586":2,"2587":2,"2589":3,"2590":1,"2594":1,"2595":1,"2612":7,"2613":1,"2614":5,"2616":3,"2617":1,"2620":1,"2626":6,"2627":1,"2638":2,"2640":2,"2650":1,"2651":2,"2652":1,"2656":2,"2659":1,"2662":1,"2663":1,"2669":1,"2671":1,"2674":1,"2676":1,"2679":1,"2685":3,"2691":1,"2692":2,"2695":1,"2703":1,"2707":3,"2709":1,"2711":1,"2714":1,"2719":1,"2720":1,"2722":2,"2725":1,"2726":3,"2727":1,"2728":18,"2729":3,"2730":1,"2731":2,"2732":5,"2734":1,"2735":2,"2738":1,"2739":3,"2752":1,"2753":1,"2754":1,"2755":1,"2756":5,"2757":12,"2764":1,"2767":1,"2769":1,"2770":1,"2772":1,"2776":2,"2780":1,"2782":1,"2784":1,"2785":1,"2786":1,"2787":2,"2788":2,"2789":3,"2790":1,"2791":1,"2794":1,"2797":1,"2805":1,"2808":1,"2813":1,"2819":1,"2825":2,"2834":1,"2841":2,"2849":1,"2852":2,"2854":1,"2869":3,"2871":1,"2877":1,"2878":1,"2886":1,"2889":2,"2892":2,"2893":2,"2894":1,"2899":1,"2902":4,"2903":3,"2906":1,"2912":1,"2913":1,"2914":4,"2915":1,"2920":2,"2921":1,"2923":1,"2925":3,"2926":5,"2927":5,"2929":5,"2931":2,"2933":2,"2940":1,"2941":1,"2947":1,"2949":1}}],["dx",{"2":{"2889":1}}],["dlls",{"2":{"2739":1}}],["dlr",{"2":{"2546":1,"2555":1}}],["dg",{"2":{"2627":1}}],["dgk6x",{"2":{"199":1,"218":2,"322":2}}],["dqt",{"2":{"2546":1,"2555":1}}],["dquote",{"2":{"521":2}}],["dquo",{"2":{"191":2,"2546":1,"2555":1,"2575":6}}],["d♯",{"2":{"1925":6,"2539":6}}],["ds5",{"2":{"1925":1,"2539":1}}],["ds4",{"2":{"1925":1,"2539":1}}],["ds3",{"2":{"1925":1,"2539":1}}],["ds2",{"2":{"1925":1,"2539":1}}],["ds1",{"2":{"1925":1,"2539":1}}],["ds",{"2":{"1925":1,"2539":1}}],["d♭",{"2":{"1925":6,"2539":6}}],["dwl",{"2":{"1681":1}}],["dwld",{"2":{"1680":1}}],["dwlu",{"2":{"1680":1}}],["dwell",{"2":{"1680":4,"1681":13,"2276":1}}],["dword",{"0":{"2238":1},"1":{"2239":1},"2":{"1416":1,"1418":1}}],["db5",{"2":{"1925":1,"2539":1}}],["db4",{"2":{"1925":1,"2539":1}}],["db3",{"2":{"1925":1,"2539":1}}],["db2",{"2":{"1925":1,"2539":1}}],["db1",{"2":{"1925":1,"2539":1}}],["dbl",{"2":{"1686":2}}],["dblsharp",{"2":{"1686":6}}],["dblclick",{"2":{"1686":14}}],["dbaas",{"2":{"1597":1}}],["db",{"2":{"1322":1,"1925":1,"2191":1,"2523":1,"2539":1,"2752":1}}],["db60",{"2":{"175":1}}],["d9",{"2":{"695":1}}],["d8",{"2":{"695":1,"2502":1}}],["d3",{"2":{"570":1,"1195":1,"1268":3,"1395":1,"1925":1,"2266":1,"2539":1,"2691":1,"2719":1,"2720":1}}],["d2",{"2":{"570":1,"1195":1,"1268":3,"1395":1,"1925":1,"2040":1,"2041":2,"2043":1,"2266":1,"2539":1,"2691":1,"2719":1,"2720":1}}],["d7",{"2":{"561":1,"565":1,"693":1,"1268":1,"1699":1,"2691":1}}],["d6",{"2":{"561":1,"693":1,"1268":1,"2431":1}}],["d60b",{"2":{"328":1}}],["d4",{"2":{"561":1,"693":1,"1553":1,"1699":1,"1925":1,"2375":1,"2539":1,"2691":1,"2719":1}}],["d5",{"2":{"561":1,"1268":1,"1392":1,"1396":1,"1553":1,"1925":1,"2041":2,"2043":1,"2390":1,"2397":1,"2539":1,"2691":2,"2720":1}}],["dnworks",{"2":{"270":2,"277":2}}],["dpi",{"2":{"1988":2,"1989":1}}],["dprint",{"2":{"1327":1,"2277":1,"2418":2}}],["dprintf",{"2":{"40":1,"1327":1,"1420":1,"2277":1,"2949":2}}],["dp3000",{"2":{"226":2,"236":1}}],["dharma",{"2":{"222":1}}],["dyn",{"2":{"1663":1}}],["dynamically",{"2":{"119":1,"2764":1,"2851":1,"2912":1}}],["dynamic",{"0":{"119":1,"1661":1,"1663":1,"2530":1,"2813":1,"2912":1},"1":{"1662":1,"1663":1,"1664":1},"2":{"119":4,"134":1,"149":2,"172":2,"175":4,"191":3,"199":1,"210":3,"222":1,"236":2,"249":1,"277":2,"328":1,"538":1,"574":1,"1661":11,"1662":7,"1663":4,"1664":6,"2530":6,"2543":6,"2813":1,"2907":1,"2910":2,"2912":10,"2941":2}}],["dymium65",{"2":{"222":1}}],["dyz",{"2":{"222":1}}],["dclk",{"2":{"2507":1}}],["dc",{"2":{"1951":2,"2756":11}}],["dc60",{"2":{"222":1}}],["dc01",{"2":{"114":2}}],["d",{"2":{"194":1,"196":8,"199":1,"222":1,"249":1,"266":3,"328":1,"354":1,"379":1,"380":1,"434":3,"491":1,"496":1,"510":1,"511":1,"572":2,"589":2,"604":1,"609":2,"610":1,"612":1,"614":1,"633":1,"1316":1,"1330":1,"1332":1,"1467":1,"1470":1,"1471":2,"1472":1,"1523":1,"1597":2,"1602":2,"1605":1,"1625":1,"1798":8,"1804":1,"1925":19,"1947":1,"2068":1,"2070":2,"2277":1,"2286":1,"2296":1,"2301":1,"2322":1,"2331":1,"2399":2,"2401":2,"2402":2,"2403":1,"2404":2,"2425":1,"2462":1,"2502":1,"2510":3,"2522":3,"2539":19,"2557":1,"2563":1,"2615":1,"2621":1,"2652":1,"2753":11,"2755":2,"2756":4,"2757":4,"2889":1,"2913":1,"2949":1}}],["dvd",{"2":{"2568":1}}],["dv",{"2":{"191":2,"1593":1}}],["dvorak",{"0":{"2812":1},"2":{"92":1,"191":1,"1422":2,"1425":1,"1426":1,"1442":1,"1593":1,"1620":3,"1622":2,"2190":1,"2562":1,"2786":2,"2812":2,"2887":14}}],["djinn",{"2":{"191":1,"266":1}}],["ddr",{"2":{"2043":3}}],["ddram",{"0":{"1736":1},"1":{"1737":1},"2":{"1729":2,"1736":1,"1737":1}}],["dd",{"2":{"172":1,"175":10,"191":2,"199":7,"222":1,"236":2,"277":6,"317":2,"328":25,"333":1,"411":2}}],["dt40",{"2":{"210":1}}],["dtisaac",{"2":{"122":1}}],["dtisaac01",{"2":{"122":2}}],["dt",{"2":{"119":3,"2543":3,"2912":22}}],["dzr",{"2":{"2301":1}}],["dz60",{"2":{"222":1,"429":2}}],["dz60rgb",{"2":{"114":1,"149":1}}],["dztech",{"2":{"102":1,"149":1,"199":1,"222":1}}],["dribin",{"2":{"2466":1}}],["driving",{"2":{"715":1,"1296":1,"1297":1}}],["drives",{"2":{"191":1,"1477":1}}],["drive",{"2":{"188":1,"561":1,"722":1,"1205":1,"1478":1,"1482":1,"1483":1,"1545":1,"1681":2,"1684":1,"1685":1}}],["driven",{"0":{"109":1,"168":1,"184":1,"664":1},"1":{"110":1,"111":1,"112":1,"185":1,"665":1,"666":1,"667":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1},"2":{"76":1,"109":1,"114":1,"149":2,"160":3,"168":1,"175":2,"184":1,"191":4,"199":13,"210":13,"212":1,"222":26,"236":6,"262":1,"266":68,"277":3,"448":1,"449":1,"555":2,"664":1,"721":1,"1297":1,"1392":1,"1393":1,"1474":2,"1545":2,"1558":1,"1844":1,"1953":1,"1964":1,"1967":1,"1968":1,"1983":1,"2080":1,"2454":1,"2680":1,"2716":1,"2722":2,"2728":2,"2851":1,"2942":1}}],["driver",{"0":{"209":1,"221":1,"233":1,"240":1,"244":1,"685":1,"690":1,"702":1,"714":1,"724":1,"741":1,"743":1,"744":1,"745":1,"746":1,"747":1,"749":1,"750":1,"751":1,"752":1,"754":1,"755":1,"756":1,"757":1,"758":1,"759":1,"764":1,"800":1,"826":1,"855":1,"887":1,"919":1,"923":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1094":1,"1124":1,"1128":1,"1158":1,"1192":1,"1202":1,"1203":1,"1204":1,"1205":1,"1214":1,"1245":1,"1266":1,"1283":1,"1289":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1299":1,"1302":1,"1303":1,"1547":1,"1548":1,"1549":1,"1550":1,"1551":1,"1553":1,"1554":1,"1556":1,"1557":1,"1580":1,"1696":1,"1845":1,"1942":1,"1955":1,"1984":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2081":1,"2282":1,"2442":1,"2697":1,"2698":1,"2699":1,"2745":1},"1":{"686":1,"687":1,"688":1,"689":1,"691":1,"692":1,"693":1,"694":1,"695":1,"696":1,"697":1,"698":1,"699":1,"700":1,"701":1,"703":1,"704":1,"705":1,"706":1,"707":1,"708":1,"709":1,"710":1,"711":1,"712":1,"713":1,"715":1,"716":1,"717":1,"718":1,"719":1,"720":1,"721":1,"722":1,"723":1,"725":1,"726":1,"727":1,"728":1,"729":1,"730":1,"731":1,"732":1,"733":1,"734":1,"735":1,"736":1,"737":1,"738":1,"739":1,"740":1,"742":1,"743":1,"744":2,"745":2,"747":1,"748":2,"749":1,"750":1,"751":1,"752":1,"759":1,"765":1,"766":1,"767":1,"768":1,"769":1,"770":1,"771":1,"772":1,"773":1,"774":1,"775":1,"776":1,"777":1,"778":1,"779":1,"780":1,"781":1,"782":1,"783":1,"784":1,"785":1,"786":1,"787":1,"788":1,"789":1,"790":1,"791":1,"792":1,"793":1,"794":1,"795":1,"796":1,"797":1,"798":1,"799":1,"801":1,"802":1,"803":1,"804":1,"805":1,"806":1,"807":1,"808":1,"809":1,"810":1,"811":1,"812":1,"813":1,"814":1,"815":1,"816":1,"817":1,"818":1,"819":1,"820":1,"821":1,"822":1,"823":1,"824":1,"825":1,"827":1,"828":1,"829":1,"830":1,"831":1,"832":1,"833":1,"834":1,"835":1,"836":1,"837":1,"838":1,"839":1,"840":1,"841":1,"842":1,"843":1,"844":1,"845":1,"846":1,"847":1,"848":1,"849":1,"850":1,"851":1,"852":1,"853":1,"854":1,"856":1,"857":1,"858":1,"859":1,"860":1,"861":1,"862":1,"863":1,"864":1,"865":1,"866":1,"867":1,"868":1,"869":1,"870":1,"871":1,"872":1,"873":1,"874":1,"875":1,"876":1,"877":1,"878":1,"879":1,"880":1,"881":1,"882":1,"883":1,"884":1,"885":1,"886":1,"888":1,"889":1,"890":1,"891":1,"892":1,"893":1,"894":1,"895":1,"896":1,"897":1,"898":1,"899":1,"900":1,"901":1,"902":1,"903":1,"904":1,"905":1,"906":1,"907":1,"908":1,"909":1,"910":1,"911":1,"912":1,"913":1,"914":1,"915":1,"916":1,"917":1,"918":1,"920":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"927":1,"928":1,"929":1,"930":1,"931":1,"932":1,"933":1,"934":1,"935":1,"936":1,"937":1,"938":1,"939":1,"940":1,"941":1,"942":1,"943":1,"944":1,"945":1,"946":1,"947":1,"948":1,"949":1,"950":1,"951":1,"952":1,"953":1,"955":1,"956":1,"957":1,"958":1,"959":1,"960":1,"961":1,"962":1,"963":1,"964":1,"965":1,"966":1,"967":1,"968":1,"969":1,"970":1,"971":1,"972":1,"973":1,"974":1,"975":1,"976":1,"977":1,"978":1,"979":1,"980":1,"981":1,"982":1,"983":1,"984":1,"985":1,"986":1,"987":1,"989":1,"990":1,"991":1,"992":1,"993":1,"994":1,"995":1,"996":1,"997":1,"998":1,"999":1,"1000":1,"1001":1,"1002":1,"1003":1,"1004":1,"1005":1,"1006":1,"1007":1,"1008":1,"1009":1,"1010":1,"1011":1,"1012":1,"1013":1,"1014":1,"1015":1,"1016":1,"1017":1,"1018":1,"1019":1,"1020":1,"1021":1,"1023":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1029":1,"1030":1,"1031":1,"1032":1,"1033":1,"1034":1,"1035":1,"1036":1,"1037":1,"1038":1,"1039":1,"1040":1,"1041":1,"1042":1,"1043":1,"1044":1,"1045":1,"1046":1,"1047":1,"1048":1,"1049":1,"1050":1,"1051":1,"1052":1,"1053":1,"1054":1,"1055":1,"1057":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1063":1,"1064":1,"1065":1,"1066":1,"1067":1,"1068":1,"1069":1,"1070":1,"1071":1,"1072":1,"1073":1,"1074":1,"1075":1,"1076":1,"1077":1,"1078":1,"1079":1,"1080":1,"1081":1,"1082":1,"1083":1,"1084":1,"1085":1,"1086":1,"1087":1,"1088":1,"1089":1,"1091":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1097":1,"1098":1,"1099":1,"1100":1,"1101":1,"1102":1,"1103":1,"1104":1,"1105":1,"1106":1,"1107":1,"1108":1,"1109":1,"1110":1,"1111":1,"1112":1,"1113":1,"1114":1,"1115":1,"1116":1,"1117":1,"1118":1,"1119":1,"1120":1,"1121":1,"1122":1,"1123":1,"1125":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1131":1,"1132":1,"1133":1,"1134":1,"1135":1,"1136":1,"1137":1,"1138":1,"1139":1,"1140":1,"1141":1,"1142":1,"1143":1,"1144":1,"1145":1,"1146":1,"1147":1,"1148":1,"1149":1,"1150":1,"1151":1,"1152":1,"1153":1,"1154":1,"1155":1,"1156":1,"1157":1,"1159":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1165":1,"1166":1,"1167":1,"1168":1,"1169":1,"1170":1,"1171":1,"1172":1,"1173":1,"1174":1,"1175":1,"1176":1,"1177":1,"1178":1,"1179":1,"1180":1,"1181":1,"1182":1,"1183":1,"1184":1,"1185":1,"1186":1,"1187":1,"1188":1,"1189":1,"1190":1,"1191":1,"1193":1,"1194":1,"1195":1,"1196":1,"1197":1,"1198":1,"1199":1,"1200":1,"1201":1,"1202":1,"1203":2,"1204":2,"1205":2,"1206":1,"1207":1,"1208":1,"1209":1,"1210":1,"1211":1,"1212":1,"1213":1,"1215":1,"1216":1,"1217":1,"1218":1,"1219":1,"1220":1,"1221":1,"1222":1,"1223":1,"1224":1,"1225":1,"1226":1,"1227":1,"1228":1,"1229":1,"1230":1,"1231":1,"1232":1,"1233":1,"1234":1,"1235":1,"1236":1,"1237":1,"1238":1,"1239":1,"1240":1,"1241":1,"1242":1,"1243":1,"1244":1,"1246":1,"1247":1,"1248":1,"1249":1,"1250":1,"1251":1,"1252":1,"1253":1,"1254":1,"1255":1,"1256":1,"1257":1,"1258":1,"1259":1,"1260":1,"1261":1,"1262":1,"1263":1,"1264":1,"1265":1,"1267":1,"1268":1,"1269":1,"1270":1,"1271":1,"1272":1,"1273":1,"1274":1,"1275":1,"1276":1,"1277":1,"1278":1,"1279":1,"1280":1,"1281":1,"1282":1,"1284":1,"1285":1,"1286":1,"1287":1,"1288":1,"1289":1,"1290":2,"1291":2,"1292":2,"1293":2,"1294":2,"1295":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":2,"1301":2,"1302":1,"1303":1,"1304":1,"1305":1,"1306":1,"1307":1,"1308":1,"1309":1,"1310":1,"1548":1,"1549":1,"1550":1,"1551":1,"1697":1,"1698":1,"1699":1,"1700":1,"1701":1,"1702":1,"1703":1,"1704":1,"1705":1,"1706":1,"1707":1,"1708":1,"1709":1,"1710":1,"1711":1,"1712":1,"1713":1,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1719":1,"1720":1,"1721":1,"1722":1,"1723":1,"1724":1,"1725":1,"1726":1,"1727":1,"1728":1,"1729":1,"1730":1,"1731":1,"1732":1,"1733":1,"1734":1,"1735":1,"1736":1,"1737":1,"1943":1,"1944":1,"1945":1,"1946":1,"1947":1,"1948":1,"1949":1,"1950":1,"1951":1,"1952":1,"1953":1,"1954":1,"1955":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2283":1,"2284":1,"2285":1,"2286":1,"2287":1,"2288":1,"2289":1,"2290":1},"2":{"11":1,"21":5,"24":5,"40":1,"65":4,"75":1,"93":3,"94":2,"107":1,"112":1,"114":12,"118":10,"128":1,"133":2,"134":8,"149":13,"160":3,"167":2,"175":18,"189":2,"190":1,"191":13,"199":4,"208":2,"209":11,"210":7,"221":2,"222":11,"224":1,"232":4,"234":8,"236":25,"240":6,"248":1,"249":11,"266":3,"277":3,"285":1,"294":3,"308":3,"317":1,"328":1,"333":1,"339":1,"685":1,"686":7,"687":6,"688":4,"689":3,"690":1,"691":2,"695":2,"702":1,"703":4,"706":1,"714":3,"715":2,"716":2,"717":3,"720":3,"721":2,"722":2,"724":1,"725":5,"726":2,"729":3,"732":2,"733":1,"734":1,"739":1,"740":2,"741":1,"742":2,"743":2,"744":3,"745":3,"746":13,"749":2,"750":2,"751":1,"752":3,"753":10,"754":3,"755":2,"756":1,"757":4,"758":4,"759":2,"765":4,"766":2,"767":2,"768":3,"772":1,"800":1,"801":5,"802":1,"805":2,"808":4,"809":1,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"824":1,"825":1,"826":1,"827":5,"828":4,"829":1,"831":5,"834":6,"835":1,"836":1,"838":1,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"851":1,"852":1,"853":1,"854":1,"855":1,"856":5,"857":4,"858":1,"863":5,"866":6,"867":1,"868":1,"870":1,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"883":1,"884":1,"885":1,"886":1,"887":1,"888":5,"889":4,"890":1,"893":5,"896":6,"897":1,"898":1,"900":1,"901":1,"902":1,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"915":1,"916":1,"917":1,"918":1,"919":1,"920":5,"921":8,"922":1,"923":4,"928":5,"931":6,"932":1,"933":1,"935":1,"936":1,"937":1,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"950":1,"951":1,"952":1,"953":1,"954":1,"955":5,"956":4,"957":1,"962":5,"965":6,"966":1,"967":1,"969":1,"970":1,"971":1,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"984":1,"985":1,"986":1,"987":1,"988":1,"989":5,"990":4,"991":1,"996":5,"999":6,"1000":1,"1001":1,"1003":1,"1004":1,"1005":1,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1019":1,"1020":1,"1021":1,"1022":1,"1023":5,"1024":4,"1025":1,"1030":5,"1033":6,"1034":1,"1035":1,"1037":1,"1038":1,"1039":1,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1053":1,"1054":1,"1055":1,"1056":1,"1057":5,"1058":4,"1059":1,"1064":5,"1067":6,"1068":1,"1069":1,"1071":1,"1072":1,"1073":1,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1086":1,"1087":1,"1088":1,"1089":1,"1090":1,"1091":5,"1092":8,"1093":1,"1094":4,"1098":5,"1101":6,"1102":1,"1103":1,"1105":1,"1106":1,"1107":1,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1120":1,"1121":1,"1122":1,"1123":1,"1124":1,"1125":5,"1126":8,"1127":1,"1128":4,"1132":5,"1135":6,"1136":1,"1137":1,"1139":1,"1140":1,"1141":1,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1154":1,"1155":1,"1156":1,"1157":1,"1158":1,"1159":5,"1160":4,"1161":1,"1166":5,"1169":6,"1170":1,"1171":2,"1173":1,"1174":1,"1175":1,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1188":1,"1189":1,"1190":1,"1191":1,"1192":2,"1193":4,"1194":2,"1195":3,"1197":2,"1198":6,"1199":2,"1200":3,"1201":6,"1203":4,"1204":4,"1205":1,"1208":1,"1214":1,"1215":5,"1216":4,"1217":1,"1219":5,"1222":6,"1223":1,"1224":1,"1226":1,"1227":1,"1228":1,"1229":1,"1231":1,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1242":1,"1243":1,"1244":1,"1246":4,"1248":1,"1250":1,"1266":1,"1267":4,"1269":1,"1271":1,"1283":1,"1284":4,"1285":1,"1289":3,"1290":3,"1291":3,"1292":3,"1293":2,"1294":2,"1299":3,"1302":1,"1303":3,"1305":1,"1318":2,"1393":2,"1476":1,"1477":3,"1480":1,"1481":1,"1483":2,"1547":1,"1548":2,"1549":3,"1550":1,"1551":2,"1553":2,"1554":2,"1556":3,"1557":2,"1578":1,"1580":1,"1678":2,"1683":1,"1739":3,"1845":5,"1943":1,"1945":2,"1964":1,"1965":2,"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1973":2,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1984":6,"1985":1,"2016":1,"2039":3,"2040":2,"2041":2,"2042":1,"2043":2,"2044":1,"2081":5,"2096":1,"2179":3,"2262":1,"2283":1,"2374":2,"2376":1,"2394":1,"2396":1,"2418":1,"2442":1,"2444":2,"2445":3,"2446":2,"2522":1,"2567":1,"2692":11,"2696":1,"2697":2,"2698":2,"2699":1,"2702":10,"2704":7,"2729":1,"2753":2,"2756":1,"2757":2,"2855":1,"2856":2,"2857":2,"2858":3,"2859":2,"2864":4,"2871":2,"2875":2,"2877":2,"2878":2,"2880":2,"2883":5}}],["drivers",{"0":{"128":1,"146":1,"389":1,"1965":1,"2439":1,"2440":1,"2696":1,"2756":1},"1":{"147":1,"148":1,"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1971":1,"1972":1,"1973":1,"1974":1,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1984":1,"2441":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2697":1,"2698":1,"2699":1},"2":{"1":1,"23":2,"65":1,"74":2,"93":1,"113":2,"114":4,"128":1,"133":2,"134":11,"190":1,"191":3,"199":1,"210":5,"222":2,"233":2,"234":1,"236":8,"249":21,"266":1,"277":2,"294":1,"389":2,"685":2,"688":3,"689":1,"724":1,"726":1,"743":1,"749":1,"750":1,"751":1,"753":1,"764":1,"826":1,"828":1,"855":1,"857":1,"887":1,"889":1,"919":1,"921":1,"923":1,"954":1,"956":1,"988":1,"990":1,"1022":1,"1024":1,"1056":1,"1058":1,"1090":1,"1092":1,"1094":1,"1124":1,"1126":1,"1128":1,"1158":1,"1160":1,"1192":1,"1193":2,"1214":1,"1216":1,"1245":1,"1266":1,"1289":1,"1295":2,"1318":1,"1405":1,"1484":1,"1546":1,"1547":2,"1551":1,"1678":1,"1844":1,"1845":1,"1846":1,"1946":1,"1953":1,"1983":2,"1984":2,"1998":1,"2039":1,"2080":1,"2081":1,"2082":1,"2261":1,"2439":1,"2444":1,"2455":1,"2696":1,"2701":1,"2702":1,"2703":2,"2728":1,"2739":2,"2745":1,"2746":1,"2753":16,"2754":1,"2756":13,"2758":1,"2759":3,"2857":1,"2883":1}}],["drgblight",{"2":{"2455":2}}],["dr",{"2":{"2301":3,"2812":1}}],["drum",{"2":{"2249":1}}],["drone",{"2":{"675":1,"681":1}}],["drops",{"2":{"2379":1}}],["dropdown",{"2":{"686":1,"1312":1,"1313":1,"2331":1,"2674":2}}],["drop",{"2":{"73":1,"114":1,"119":1,"131":3,"134":1,"187":1,"188":1,"210":2,"218":2,"222":1,"236":1,"596":1,"599":1,"1388":1,"2554":1,"2573":1,"2606":1,"2651":1,"2688":1,"2706":1}}],["dropped",{"0":{"181":1},"2":{"40":1}}],["dry",{"2":{"455":1}}],["drv",{"2":{"328":1}}],["drv2605l",{"0":{"1682":1,"1686":1,"1687":1,"1688":1},"1":{"1683":1,"1684":1,"1685":1,"1686":1},"2":{"209":2,"1678":1,"1680":4,"1682":1,"1684":5,"1685":8,"1686":3,"1687":2}}],["drhigsby",{"2":{"143":4,"149":2}}],["drastically",{"2":{"1415":1}}],["drashna",{"2":{"93":1,"114":5,"123":1,"134":1,"163":1,"175":1,"190":1,"1470":1,"2094":1}}],["drags",{"2":{"1941":1}}],["drag",{"0":{"1993":1,"1994":1},"2":{"236":1,"599":1,"1986":1,"1993":3,"1994":10,"2038":1,"2614":1}}],["drawtext",{"2":{"2757":7}}],["drawimage",{"2":{"2757":7}}],["drawing",{"0":{"2757":1},"2":{"125":5,"153":3,"1954":1,"2290":1,"2753":1,"2756":14,"2757":8,"2761":1}}],["draws",{"2":{"2756":1,"2757":1}}],["drawbacks",{"2":{"1343":1}}],["drawn",{"2":{"646":1,"678":1,"2756":2,"2757":3,"2778":1}}],["draw",{"2":{"153":1,"678":1,"2756":3,"2757":34,"2761":2,"2778":4,"2882":1}}],["drain",{"0":{"1297":1},"2":{"149":1,"243":1,"761":2,"1197":1,"1297":2}}],["draculad",{"2":{"114":1}}],["dm",{"2":{"1661":12,"1663":2,"2530":5}}],["dmote",{"2":{"226":2,"236":1}}],["dmq",{"2":{"191":1}}],["dmacros",{"2":{"1471":1}}],["dma1",{"2":{"1303":1}}],["dma",{"2":{"39":1,"40":3,"266":1,"768":4,"1292":2,"1293":1,"1294":1,"1303":4,"2689":1}}],["dmas",{"2":{"39":1}}],["dmamux",{"2":{"39":4,"1303":3}}],["dm9records",{"2":{"27":3}}],["dutch",{"2":{"2887":1}}],["duty",{"2":{"63":1,"769":2,"1541":1,"1544":1,"1546":1}}],["ducky",{"2":{"222":1}}],["duckypad",{"2":{"210":1}}],["duckduckgo",{"2":{"196":1,"1798":1}}],["dumbpad",{"2":{"175":1}}],["dummy",{"2":{"175":1,"210":1,"294":2,"696":1,"1788":4,"2929":4,"2931":1}}],["dumps",{"2":{"2417":3}}],["dump",{"2":{"39":3,"191":1,"222":1,"277":1,"625":1,"2417":5}}],["dubba175",{"2":{"143":2}}],["duplex",{"0":{"1196":1,"1199":1},"1":{"1197":1,"1198":1,"1200":1,"1201":1},"2":{"93":1,"107":3,"114":2,"175":1,"191":1,"277":1,"1192":2,"1193":2,"1196":4,"1197":1,"1198":1,"1199":4,"1200":1,"1201":3,"1205":3,"1207":2,"2704":4}}],["duplicating",{"2":{"328":1,"2684":1}}],["duplication",{"2":{"4":1,"222":1,"236":3,"285":1,"308":5,"328":1,"333":1,"665":1,"2684":1,"2728":1}}],["duplicates",{"2":{"236":1}}],["duplicated",{"2":{"75":1,"236":1,"308":1,"1702":1}}],["duplicate",{"2":{"4":1,"70":2,"75":1,"76":1,"160":1,"175":2,"191":1,"199":3,"222":2,"266":1,"277":1,"308":1,"317":1,"327":1,"333":1,"339":1,"669":1,"2434":1,"2636":2,"2775":1,"2851":1}}],["duration",{"2":{"119":1,"120":1,"210":2,"658":1,"1441":1,"1444":2,"1493":3,"1598":1,"1786":1,"2087":1,"2191":2,"2931":1}}],["durgod",{"2":{"86":4,"102":2,"114":2,"149":1,"165":4,"175":1,"199":1,"218":2,"222":1,"322":2,"328":1}}],["during",{"2":{"39":1,"103":1,"107":1,"116":1,"118":1,"126":1,"131":1,"149":1,"175":1,"185":1,"191":1,"201":1,"212":2,"236":1,"249":1,"273":1,"297":3,"308":1,"312":1,"333":1,"339":1,"455":1,"630":1,"634":1,"646":1,"651":1,"718":1,"719":1,"722":1,"749":1,"1370":1,"1486":1,"1522":1,"1546":1,"1662":1,"1681":2,"1687":1,"1947":1,"1956":1,"1957":1,"1961":1,"1999":1,"2001":2,"2002":1,"2181":1,"2189":1,"2277":1,"2286":1,"2434":1,"2685":2,"2728":1,"2756":2,"2764":1,"2775":1,"2776":1,"2860":1,"2904":1,"2923":2,"2931":1,"2941":1}}],["dualbank",{"2":{"191":1}}],["dual",{"2":{"39":3,"114":2,"149":1,"191":1,"194":1,"564":3,"574":1,"1849":4,"2085":15,"2309":1,"2418":1,"2685":8,"2894":2,"2912":2,"2914":8,"2920":8,"2921":5,"2922":1,"2929":1}}],["due",{"2":{"35":1,"114":1,"120":1,"128":1,"134":2,"153":1,"182":1,"199":1,"233":1,"236":1,"273":1,"284":1,"285":1,"308":1,"1199":1,"1288":1,"1290":1,"1292":1,"1303":1,"1318":1,"1320":1,"1348":1,"1367":1,"1490":1,"1503":1,"1524":1,"1534":1,"1846":1,"2008":1,"2082":1,"2178":1,"2294":1,"2330":1,"2331":1,"2498":1,"2504":1,"2557":1,"2562":1,"2567":2,"2628":1,"2675":1,"2682":1,"2710":1,"2726":1,"2728":1,"2753":1,"2844":1,"2901":1,"2902":1,"2938":1}}],["dfsr",{"2":{"2508":1}}],["dflash",{"2":{"1472":1}}],["df11",{"2":{"689":2,"2399":1,"2404":1}}],["df1deb37c163",{"2":{"381":1}}],["dfu",{"0":{"1318":1,"2389":1,"2390":1,"2399":1,"2402":1,"2403":1,"2404":1,"2498":1,"2612":1},"1":{"2390":1,"2391":1,"2400":1,"2405":1},"2":{"39":2,"45":1,"111":1,"114":1,"160":1,"199":1,"210":2,"240":5,"568":6,"573":4,"689":19,"1315":3,"1365":4,"1681":1,"2273":6,"2389":11,"2390":1,"2391":5,"2398":1,"2399":6,"2400":6,"2401":4,"2402":3,"2403":4,"2404":5,"2405":4,"2417":4,"2503":1,"2505":2,"2508":1,"2612":1,"2615":5,"2678":1}}],["df",{"2":{"28":1,"247":2,"317":1,"1422":1,"1656":2,"2000":1,"2509":1,"2519":1,"2535":1}}],["d14",{"2":{"695":2}}],["d13",{"2":{"695":2}}],["d12",{"2":{"695":2}}],["d11",{"2":{"695":2}}],["d10",{"2":{"695":2}}],["d1",{"2":{"24":1,"570":1,"767":2,"1195":1,"1268":2,"1395":1,"1925":1,"2040":1,"2266":1,"2275":1,"2539":1,"2691":1,"2719":1}}],["d0",{"2":{"24":1,"561":1,"570":2,"767":2,"1195":1,"1268":2,"1371":1,"1395":1,"2266":1,"2272":1,"2275":2,"2691":1}}],["dio",{"2":{"2507":1}}],["dioded",{"2":{"2466":1}}],["diodes",{"0":{"2428":1,"2438":1},"2":{"2264":1,"2421":1,"2425":1,"2427":1,"2428":3,"2429":2,"2719":1,"2828":1,"2872":2}}],["diode",{"0":{"2719":1},"2":{"70":2,"111":1,"199":1,"561":2,"1403":1,"1407":1,"1660":1,"2272":2,"2280":3,"2423":4,"2427":1,"2428":12,"2431":2,"2434":2,"2466":4,"2719":1,"2720":1,"2728":1,"2826":1,"2872":1}}],["diameter",{"2":{"1974":3}}],["diagram",{"2":{"1681":1,"2694":1}}],["diagnose",{"2":{"1329":1}}],["diagnostics",{"2":{"339":1}}],["dialog",{"2":{"1351":1}}],["die",{"2":{"1288":1}}],["dinterrupt",{"2":{"573":1}}],["ding",{"2":{"120":1,"1441":1}}],["diy",{"2":{"561":2,"2895":3}}],["dimensional",{"2":{"2303":1,"2872":1}}],["dimensions",{"2":{"1970":1,"2719":1,"2720":3}}],["dims",{"2":{"2185":1}}],["dimming",{"2":{"1541":1}}],["dimmer",{"2":{"494":1}}],["dim",{"2":{"494":1}}],["dictated",{"2":{"768":1,"1487":1}}],["dictionaries",{"0":{"527":1},"2":{"1443":1,"1622":1,"2869":2,"2871":1,"2878":1}}],["dictionary",{"0":{"1622":1},"2":{"196":1,"495":1,"497":1,"498":1,"1527":3,"1528":1,"2291":1,"2854":1,"2869":4,"2871":2,"2877":1,"2878":2}}],["dict",{"2":{"222":1,"670":1,"1529":1}}],["dilemma",{"2":{"191":2,"249":1,"311":2,"317":1}}],["dig",{"2":{"1483":1,"2479":1,"2907":1}}],["digest",{"2":{"153":1}}],["digit",{"2":{"1749":3,"2238":1,"2240":1,"2242":1,"2244":1,"2503":1,"2882":2}}],["digital",{"2":{"160":1,"578":1,"586":1,"690":1,"1398":1,"1409":2,"1739":1,"2085":3,"2430":2,"2894":1}}],["digits",{"2":{"134":1,"403":1,"1528":1,"2466":1}}],["digitizers",{"2":{"174":1,"1639":1}}],["digitizer",{"0":{"100":1,"174":1,"1639":1,"1644":1,"1646":1,"1647":1,"1648":1,"1649":1,"1650":1,"1651":1,"1652":1,"1653":1},"1":{"1640":1,"1641":1,"1642":1,"1643":1,"1644":1,"1645":2,"1646":1,"1647":1,"1648":1,"1649":1,"1650":1,"1651":1,"1652":1,"1653":1,"1654":2},"2":{"100":2,"114":1,"174":3,"175":2,"339":1,"1642":7,"1644":1,"1645":3,"1646":1,"1653":1}}],["dive",{"2":{"2435":1}}],["diverged",{"2":{"1343":1}}],["divergetm2",{"2":{"143":2}}],["diverge3",{"2":{"143":2}}],["dividing",{"0":{"342":1},"2":{"1252":1}}],["divided",{"2":{"1952":1,"2289":1}}],["divide",{"2":{"750":1,"759":1,"1949":1}}],["dividends",{"2":{"198":1}}],["divider",{"2":{"175":1,"744":6,"1738":1,"2858":5}}],["divine",{"2":{"236":1}}],["division",{"2":{"114":1}}],["divisors",{"2":{"1300":1,"1994":1}}],["divisor",{"0":{"1251":1},"1":{"1252":1,"1253":1},"2":{"114":1,"236":1,"726":2,"750":2,"759":2,"1252":3,"1265":1,"1299":2,"1300":1,"1951":1,"1967":2,"1968":1,"1974":2,"1979":2,"1982":2,"1983":2,"1994":6,"2048":2,"2288":2,"2756":11}}],["dir=",{"2":{"2592":1,"2593":1,"2594":1}}],["dirty",{"2":{"114":1,"175":2,"199":1,"230":1,"1642":1,"1645":1,"1646":1,"1747":1,"1750":1,"1948":1,"1949":1,"1952":3,"1954":5,"2289":3,"2290":2,"2636":1,"2756":5}}],["dir",{"2":{"114":1}}],["dire",{"2":{"93":1}}],["directs",{"2":{"2566":1}}],["directives",{"2":{"512":2,"555":1}}],["directive",{"2":{"187":1}}],["directional",{"0":{"259":1},"2":{"236":1,"256":1}}],["directions",{"2":{"212":2,"222":1,"307":1,"1665":1,"1667":1,"1930":1,"1939":1,"2057":1}}],["direction",{"2":{"46":3,"70":2,"111":1,"175":1,"199":1,"222":2,"561":1,"613":1,"1403":1,"1407":1,"1664":5,"1665":2,"1940":1,"1949":1,"2051":1,"2068":2,"2181":2,"2423":1,"2427":1,"2544":2,"2719":2,"2720":1,"2728":1,"2872":1}}],["directpins",{"2":{"114":1}}],["directors",{"2":{"409":1}}],["directories",{"2":{"51":1,"113":1,"114":3,"2726":1,"2728":1}}],["directory",{"2":{"26":2,"40":1,"114":1,"132":1,"133":1,"134":3,"149":2,"160":1,"210":1,"236":1,"393":1,"429":9,"430":2,"432":1,"437":2,"440":2,"442":2,"445":2,"446":1,"448":1,"449":1,"450":1,"462":1,"463":1,"505":1,"513":1,"588":1,"610":1,"623":1,"1627":1,"1628":1,"1633":1,"1850":2,"2071":1,"2088":2,"2384":1,"2413":1,"2414":1,"2419":1,"2432":1,"2450":1,"2501":1,"2502":1,"2508":1,"2583":1,"2590":1,"2594":3,"2595":1,"2596":1,"2607":2,"2614":1,"2626":1,"2629":1,"2659":3,"2662":2,"2674":2,"2684":1,"2709":1,"2714":1,"2755":6}}],["directly",{"2":{"40":1,"49":1,"132":1,"134":1,"179":1,"236":1,"344":3,"403":1,"491":1,"511":1,"565":2,"581":1,"668":1,"693":1,"721":1,"741":1,"754":1,"1200":1,"1207":1,"1290":1,"1428":2,"1483":1,"1549":1,"1558":1,"1642":1,"1659":1,"1669":1,"1773":1,"1781":1,"1795":1,"1850":1,"1923":2,"1964":1,"1983":1,"1994":1,"2044":1,"2088":1,"2183":1,"2216":1,"2278":2,"2281":1,"2329":1,"2374":1,"2375":1,"2414":2,"2424":1,"2425":1,"2466":1,"2467":1,"2473":1,"2483":1,"2496":1,"2600":1,"2620":1,"2634":1,"2658":1,"2687":1,"2690":1,"2712":1,"2720":1,"2728":2,"2768":1,"2769":1,"2776":1,"2792":1}}],["direct",{"0":{"346":1,"1313":1,"2198":1,"2720":1},"2":{"3":1,"7":1,"48":1,"63":1,"199":2,"210":6,"341":1,"472":1,"561":1,"570":5,"639":3,"1311":9,"1312":3,"1313":3,"2278":2,"2567":1,"2658":1,"2720":3,"2728":2,"2741":1,"2872":2,"2937":1}}],["dip",{"0":{"105":1,"247":1,"1655":1,"1656":1,"1659":1,"1660":1,"2863":1},"1":{"1656":1,"1657":1,"1658":1,"1659":1,"1660":1},"2":{"105":13,"114":6,"175":1,"236":3,"247":9,"249":3,"328":1,"693":1,"1655":7,"1656":10,"1657":6,"1659":1,"1660":1,"2863":3,"2880":2}}],["di",{"2":{"70":1,"212":1,"222":3,"565":2,"704":2,"1285":2,"1294":1,"1297":3,"1298":1,"2179":2,"2855":1,"2883":1}}],["didn",{"2":{"279":1,"1446":1,"2315":1,"2673":1}}],["did",{"0":{"1331":1},"2":{"21":1,"125":1,"169":1,"178":1,"209":1,"617":1,"1499":2,"1537":1,"1804":4,"2434":1,"2584":1,"2587":1,"2616":1}}],["disk",{"2":{"2406":1,"2408":1,"2410":1}}],["dis",{"0":{"1613":1}}],["disputes",{"2":{"2902":1}}],["disposal",{"2":{"2183":1}}],["displacements",{"2":{"1639":1}}],["displaying",{"2":{"2276":2}}],["displayed",{"2":{"483":1,"490":1,"1287":1,"1288":1,"2764":1,"2795":1}}],["displays",{"0":{"1952":1,"2289":1},"1":{"1953":1},"2":{"153":2,"221":1,"232":2,"236":1,"248":2,"249":1,"437":1,"646":1,"689":1,"1712":2,"1855":1,"1948":1,"1949":1,"1952":7,"1953":1,"2094":1,"2287":1,"2300":1,"2417":2,"2442":1,"2728":2,"2753":1,"2754":1,"2756":26}}],["display",{"0":{"2756":1},"2":{"20":1,"21":3,"23":1,"24":2,"39":1,"63":1,"64":1,"82":1,"83":1,"92":1,"114":1,"123":1,"125":1,"153":1,"169":1,"222":1,"236":1,"339":1,"437":1,"477":1,"645":1,"1324":1,"1325":1,"1326":1,"1535":1,"1641":1,"1699":8,"1704":1,"1706":1,"1708":1,"1710":1,"1711":1,"1713":2,"1715":1,"1717":1,"1723":1,"1724":1,"1725":1,"1726":1,"1727":1,"1730":2,"1732":2,"1736":1,"1851":1,"1935":1,"1947":3,"1948":1,"1949":3,"1950":2,"1951":5,"1952":23,"1953":2,"1954":13,"1962":1,"2090":1,"2276":2,"2283":1,"2286":4,"2287":4,"2288":5,"2289":8,"2290":14,"2298":2,"2435":1,"2453":1,"2456":1,"2522":1,"2609":2,"2717":1,"2729":1,"2753":1,"2754":5,"2756":13,"2757":46,"2758":1,"2759":2,"2761":15,"2764":1,"2794":1,"2799":1,"2851":1,"2869":1}}],["dispatched",{"2":{"2936":1}}],["dispatches",{"2":{"2936":1}}],["dispatchconsumerevent",{"2":{"1357":1}}],["dispatch",{"2":{"580":1,"2607":1,"2940":1}}],["disregarding",{"2":{"2903":1}}],["disregarded",{"2":{"344":3,"403":1,"1638":1}}],["disrupting",{"2":{"2188":1}}],["disruption",{"2":{"103":1}}],["distclean",{"2":{"2417":1}}],["distinguish",{"2":{"2317":1,"2842":1}}],["distinction",{"2":{"2564":1}}],["distinct",{"0":{"2916":1},"2":{"308":1,"1192":1,"1200":1,"1541":1,"1670":1,"2079":1}}],["distance",{"2":{"1971":9,"1983":2,"2086":1,"2431":1}}],["distances",{"2":{"1497":1,"1936":1,"1938":1}}],["distributions",{"2":{"2626":3,"2733":1,"2741":1}}],["distribution",{"2":{"2506":1,"2568":1,"2626":1,"2627":1,"2735":1,"2742":1,"2747":1}}],["distribute",{"2":{"585":1,"2735":1}}],["distributed",{"2":{"284":1,"1467":1,"2728":1,"2732":1,"2738":1,"2739":1}}],["distributable",{"2":{"284":1}}],["distros",{"2":{"1332":2,"2331":1}}],["distro",{"2":{"199":1}}],["disuse",{"2":{"285":1}}],["discretion",{"2":{"2729":1,"2903":1}}],["disclosure",{"2":{"2568":1,"2728":1}}],["disclose",{"2":{"2567":1}}],["disc",{"2":{"1679":1}}],["discusses",{"2":{"1409":1}}],["discussed",{"2":{"40":1,"613":1,"1433":1}}],["discuss",{"2":{"555":1,"2726":1}}],["discussion",{"2":{"265":1,"2899":1}}],["discarded",{"2":{"191":1,"746":1,"2755":1}}],["discovered",{"2":{"2447":1}}],["discovery",{"2":{"119":1,"175":1,"210":1,"328":1}}],["discouraged",{"2":{"344":1,"666":1,"2726":1}}],["disconnection",{"2":{"2275":1}}],["disconnect",{"2":{"149":1,"175":2,"1333":1,"2265":1}}],["disconnected",{"2":{"107":1,"134":1,"191":1,"2275":2,"2615":1}}],["discord",{"0":{"412":1},"2":{"39":1,"40":1,"201":1,"228":1,"276":1,"284":1,"405":1,"406":1,"407":1,"411":1,"412":1,"418":1,"544":1,"604":1,"606":1,"613":1,"644":1,"668":1,"672":1,"1342":1,"1634":1,"2435":1,"2481":1,"2567":1,"2612":1,"2617":1,"2706":1,"2725":1,"2726":2,"2729":1,"2897":1}}],["discharge",{"2":{"39":1}}],["disappearance",{"2":{"2903":1}}],["disappearing",{"2":{"16":1}}],["disadvantages",{"2":{"2475":1}}],["disallowed",{"2":{"2570":1}}],["disallows",{"2":{"2474":1}}],["disallow",{"2":{"1613":1}}],["disabling",{"0":{"1802":1,"2190":1,"2763":1},"2":{"18":1,"134":1,"266":1,"308":1,"545":1,"571":1,"1349":2,"1378":2,"2008":1,"2011":1,"2292":1,"2808":1,"2889":3,"2894":1,"2922":1}}],["disables",{"2":{"114":1,"297":1,"564":1,"574":1,"1417":1,"1512":1,"1593":2,"1616":1,"1621":1,"1662":1,"2008":1,"2009":1,"2755":4,"2889":3,"2913":1,"2923":1,"2925":1}}],["disabled",{"0":{"562":1},"2":{"40":1,"124":1,"134":2,"236":1,"249":1,"561":1,"613":2,"696":1,"763":2,"1372":1,"1392":1,"1417":1,"1485":1,"1493":1,"1498":2,"1501":1,"1526":1,"1533":3,"1589":1,"1610":1,"1616":1,"1623":1,"1678":2,"1681":1,"1980":1,"2001":2,"2008":1,"2011":1,"2068":1,"2192":1,"2220":1,"2258":1,"2309":1,"2331":1,"2498":4,"2754":1,"2882":1,"2923":1,"2925":1,"2935":1}}],["disable",{"0":{"15":1,"1562":1,"1574":1,"1861":1,"1862":1,"2011":1,"2103":1,"2104":1,"2200":1},"2":{"15":7,"40":1,"77":2,"114":6,"134":4,"158":1,"160":1,"167":2,"175":2,"191":1,"194":1,"195":1,"210":2,"222":2,"232":1,"236":3,"249":2,"297":1,"308":2,"328":1,"333":1,"397":1,"434":1,"494":1,"562":6,"564":1,"574":1,"651":1,"744":2,"768":1,"821":3,"823":1,"848":3,"850":1,"912":3,"914":1,"947":3,"949":1,"981":3,"983":1,"1015":3,"1017":1,"1049":3,"1051":1,"1238":3,"1240":1,"1248":1,"1372":1,"1376":1,"1378":2,"1405":1,"1412":1,"1417":2,"1471":1,"1490":2,"1533":1,"1536":1,"1594":1,"1595":1,"1606":2,"1613":2,"1621":1,"1661":1,"1684":1,"1685":1,"1779":1,"1802":1,"1935":1,"1949":2,"1988":1,"1994":3,"1996":1,"2008":3,"2011":2,"2013":2,"2046":1,"2048":2,"2097":2,"2181":1,"2184":1,"2186":2,"2189":1,"2190":1,"2200":2,"2203":1,"2217":2,"2251":1,"2253":1,"2254":4,"2260":2,"2275":2,"2288":1,"2294":1,"2298":1,"2331":1,"2377":1,"2418":4,"2502":1,"2520":2,"2528":1,"2538":2,"2607":1,"2667":1,"2674":2,"2677":1,"2755":2,"2854":1,"2858":2,"2871":1,"2877":1,"2878":1,"2879":2,"2882":1,"2889":2,"2890":2,"2891":1,"2894":2,"2912":1,"2924":2,"2925":3,"2931":2}}],["diffused",{"2":{"2178":1}}],["diffoled",{"2":{"332":1,"337":1}}],["difficulty",{"0":{"1775":1},"1":{"1776":1,"1777":1}}],["difficulties",{"2":{"1608":1}}],["difficult",{"2":{"119":1,"123":1,"125":1,"169":1,"246":1,"540":1,"1330":1,"1802":1,"1935":1,"2424":1,"2425":2,"2428":1,"2429":1,"2730":1}}],["differs",{"2":{"2721":1,"2794":1}}],["difference",{"0":{"1787":1},"2":{"1378":1,"2711":1,"2731":1}}],["differences",{"0":{"1343":1},"2":{"2622":1}}],["differentiating",{"2":{"2296":1}}],["differentiates",{"2":{"651":1}}],["differentiate",{"2":{"527":1}}],["differently",{"2":{"1490":1,"1519":1,"1936":1,"1948":1,"1956":1,"2269":1,"2278":1,"2287":1,"2308":1,"2330":1,"2517":1,"2558":1,"2930":1}}],["different",{"0":{"2012":1,"2307":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"39":1,"175":1,"215":1,"419":1,"430":1,"540":1,"558":1,"568":1,"570":2,"609":2,"613":3,"626":1,"651":1,"686":2,"695":1,"701":2,"754":1,"760":1,"1286":1,"1287":1,"1311":1,"1327":1,"1371":1,"1395":1,"1410":1,"1421":1,"1426":2,"1433":2,"1442":1,"1450":1,"1465":5,"1472":1,"1485":1,"1489":1,"1490":1,"1493":1,"1498":1,"1503":1,"1538":1,"1541":1,"1590":1,"1592":1,"1602":1,"1619":1,"1666":1,"1683":1,"1685":1,"1766":3,"1784":1,"1787":1,"1930":1,"1934":1,"1937":1,"1943":1,"1948":1,"1956":1,"1968":2,"1983":2,"2185":1,"2187":1,"2189":1,"2206":1,"2223":1,"2259":1,"2261":1,"2278":5,"2287":1,"2295":1,"2296":1,"2388":2,"2414":1,"2430":1,"2435":2,"2439":1,"2482":1,"2497":1,"2564":1,"2567":1,"2589":2,"2612":2,"2662":1,"2664":1,"2669":1,"2726":2,"2728":2,"2756":2,"2765":1,"2771":1,"2772":2,"2886":1,"2894":1,"2914":1,"2920":1,"2935":1,"2937":1,"2942":2,"2945":2}}],["differ",{"2":{"69":1,"716":1,"1974":1,"2310":1,"2497":1,"2634":1}}],["diff",{"2":{"15":1,"149":1,"294":1,"354":1,"459":1,"609":1,"2186":1,"2800":2}}],["dollars",{"2":{"2844":1}}],["dollar",{"2":{"2546":1,"2555":1}}],["dolor",{"2":{"363":1}}],["dor1",{"2":{"2043":1}}],["doe",{"2":{"1523":3,"1605":2}}],["doesnt",{"2":{"175":1,"574":1}}],["doesn",{"0":{"1348":1,"1359":1,"1366":1,"1369":1,"1370":1,"2737":1},"1":{"2738":1,"2739":1},"2":{"114":1,"414":1,"429":1,"574":1,"599":1,"613":1,"681":1,"1318":1,"1349":1,"1364":1,"1366":2,"1381":1,"1427":1,"1470":1,"1472":1,"1493":1,"1525":1,"1529":1,"1609":1,"1612":1,"1952":1,"1987":1,"2211":1,"2293":1,"2417":1,"2418":1,"2429":1,"2434":1,"2441":1,"2462":1,"2616":1,"2617":1,"2674":1,"2703":1,"2938":2,"2940":1,"2945":1}}],["does",{"0":{"615":1,"1320":1,"1498":1,"1525":1,"2471":1,"2472":1},"2":{"13":1,"18":1,"40":1,"134":1,"236":1,"276":1,"320":1,"347":1,"365":1,"367":1,"369":1,"429":1,"461":1,"492":1,"495":1,"496":1,"505":1,"521":1,"561":1,"569":1,"586":1,"599":1,"603":1,"609":3,"626":1,"631":1,"643":1,"651":1,"656":1,"685":1,"707":1,"714":1,"723":1,"735":1,"754":1,"762":1,"767":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1203":1,"1204":1,"1229":1,"1233":1,"1237":1,"1239":1,"1266":1,"1306":1,"1362":1,"1365":1,"1410":1,"1427":1,"1428":2,"1444":1,"1448":1,"1484":2,"1497":1,"1499":1,"1510":1,"1518":1,"1593":2,"1622":1,"1638":1,"1666":1,"1739":1,"1765":1,"1787":1,"1795":1,"1954":2,"2057":1,"2074":1,"2212":1,"2270":1,"2301":1,"2317":1,"2319":1,"2329":1,"2374":1,"2411":1,"2427":1,"2428":1,"2460":1,"2470":1,"2474":1,"2475":2,"2503":1,"2506":1,"2522":1,"2523":1,"2564":1,"2567":1,"2569":1,"2599":2,"2616":1,"2619":2,"2626":1,"2662":1,"2691":1,"2705":1,"2707":2,"2710":1,"2717":1,"2726":2,"2728":2,"2752":1,"2769":1,"2795":1,"2797":1,"2882":1,"2902":1,"2909":1,"2914":1,"2931":3,"2934":1,"2938":1}}],["domain",{"2":{"341":1}}],["doing",{"2":{"284":1,"367":1,"494":1,"688":1,"1327":1,"1356":1,"1428":2,"1431":1,"1485":1,"1609":1,"2417":1,"2427":1,"2677":1,"2937":1,"2948":1}}],["doio",{"2":{"175":1,"191":1,"210":1,"249":1}}],["dogtag",{"2":{"222":1,"277":1,"449":2}}],["doxygen",{"2":{"160":1,"222":1,"2709":1}}],["doubt",{"2":{"716":1,"2580":1}}],["doubled",{"2":{"695":1,"2065":1,"2317":1}}],["double",{"0":{"2312":1,"2700":1},"2":{"152":1,"203":2,"397":1,"520":1,"620":1,"687":1,"688":1,"1423":1,"1594":4,"2065":1,"2269":2,"2309":3,"2312":1,"2315":1,"2317":22,"2318":4,"2319":5,"2406":2,"2408":2,"2410":3,"2430":1,"2435":1,"2503":1,"2546":1,"2555":1,"2573":1,"2659":1,"2700":7,"2702":1,"2861":1,"2889":1}}],["dout",{"2":{"35":1}}],["dozen0",{"2":{"143":2}}],["dozens",{"2":{"112":1}}],["dosa40rgb",{"2":{"134":1}}],["doc",{"2":{"199":1,"1353":1}}],["docker",{"0":{"2382":1},"1":{"2383":1,"2384":1,"2385":1,"2386":1},"2":{"114":1,"149":1,"2382":1,"2383":2,"2384":11,"2386":2}}],["docstring",{"0":{"522":1,"523":1,"524":1},"2":{"521":2}}],["docstrings",{"0":{"521":1},"1":{"522":1,"523":1,"524":1},"2":{"514":1,"521":2}}],["docs",{"0":{"460":1,"461":1},"2":{"114":3,"149":1,"160":1,"166":1,"175":4,"191":4,"199":2,"210":1,"222":1,"236":3,"285":1,"294":1,"328":3,"339":1,"341":1,"403":1,"412":1,"460":3,"461":3,"610":3,"611":1,"613":1,"666":1,"681":3,"686":1,"1320":1,"1397":1,"2413":1,"2565":1,"2642":1,"2714":3,"2728":1}}],["doctor",{"0":{"435":1,"456":1},"2":{"114":3,"191":1,"199":3,"328":1,"333":1,"435":4,"456":1,"2616":1}}],["documenting",{"0":{"681":1},"2":{"2521":1}}],["documented",{"2":{"201":1,"312":1,"1537":1,"2396":1,"2441":1,"2461":1,"2591":1,"2746":1,"2751":1,"2840":1}}],["documents",{"2":{"22":1,"114":1,"404":1,"682":1,"1388":1,"2521":1,"2557":1,"2906":2,"2907":2,"2934":1}}],["documentation",{"0":{"12":1,"340":1,"475":1,"610":1,"611":1,"632":1,"636":1,"638":1,"639":1,"642":1,"645":1,"650":1,"654":1,"674":1,"682":1,"1432":1},"1":{"341":1,"342":1,"343":1,"344":1,"345":1,"346":1,"347":1,"348":1,"349":1,"350":1,"351":1,"352":1,"353":1,"354":1,"355":1,"356":1,"357":1,"358":1,"359":1,"360":1,"361":1,"362":1,"363":1,"476":1,"477":1,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1,"611":1,"683":1,"684":1},"2":{"12":1,"46":1,"93":1,"99":1,"118":1,"123":1,"124":1,"134":1,"138":1,"149":1,"152":1,"153":1,"166":1,"187":1,"189":1,"195":1,"196":1,"210":2,"213":1,"228":1,"229":1,"232":1,"245":1,"247":1,"277":1,"288":1,"289":1,"297":1,"298":1,"304":1,"306":1,"315":1,"316":1,"320":1,"331":1,"340":1,"431":1,"461":1,"466":1,"467":1,"468":1,"505":1,"610":5,"670":1,"674":1,"675":1,"681":2,"701":1,"755":1,"1345":1,"1379":1,"1580":1,"1766":1,"1845":1,"2016":1,"2057":1,"2081":1,"2262":1,"2276":1,"2388":1,"2426":1,"2430":1,"2435":1,"2466":1,"2477":1,"2479":1,"2481":1,"2674":1,"2728":1,"2758":1,"2813":1,"2825":1,"2829":1,"2832":1,"2841":1,"2843":1,"2846":1,"2847":1,"2943":1,"2944":1}}],["document",{"0":{"417":1},"2":{"0":1,"76":1,"93":1,"191":1,"199":1,"369":1,"399":1,"403":1,"411":1,"471":1,"486":1,"521":1,"541":1,"613":2,"674":1,"1428":1,"1467":1,"1633":1,"2300":1,"2590":1,"2633":2,"2635":2,"2653":1,"2664":1,"2675":1,"2725":1,"2726":2,"2733":1,"2795":2,"2904":1,"2934":1,"2937":1,"2938":1}}],["dots",{"2":{"544":1,"1697":2}}],["dotty",{"2":{"433":1,"670":1}}],["dotted",{"2":{"344":1}}],["dot",{"0":{"111":1},"2":{"111":1,"379":1,"589":2,"670":1,"1510":1,"1517":5,"1692":1,"2071":1,"2512":1,"2518":1,"2522":2,"2563":1,"2923":1,"2924":1}}],["downstream",{"2":{"2728":1}}],["downside",{"2":{"2704":1}}],["downward",{"2":{"1990":2}}],["downloadable",{"2":{"2568":1}}],["downloads",{"2":{"448":1,"449":1,"450":1,"581":2,"584":1,"2432":1,"2639":1}}],["downloaded",{"2":{"393":1,"2506":1,"2508":1,"2607":1,"2674":2}}],["download",{"0":{"371":1,"2658":1},"2":{"158":1,"366":1,"371":1,"372":1,"378":1,"391":1,"586":2,"600":1,"601":1,"1318":2,"2387":1,"2432":1,"2597":1,"2606":1,"2609":1,"2658":1,"2668":1,"2670":1,"2673":1}}],["down",{"0":{"649":1,"1448":1,"2821":1},"2":{"90":2,"119":3,"120":1,"149":1,"210":1,"220":1,"236":1,"255":1,"266":1,"328":1,"379":1,"589":4,"596":1,"630":1,"648":1,"649":1,"650":2,"683":1,"684":1,"686":1,"749":1,"761":1,"1351":1,"1362":1,"1389":1,"1410":6,"1413":1,"1422":1,"1425":1,"1427":1,"1441":1,"1444":6,"1447":1,"1448":3,"1454":1,"1490":2,"1493":4,"1495":2,"1498":2,"1499":1,"1503":1,"1521":3,"1522":3,"1523":1,"1533":2,"1543":2,"1589":1,"1612":2,"1624":1,"1638":3,"1668":1,"1672":1,"1673":1,"1680":2,"1685":1,"1694":2,"1762":2,"1764":1,"1767":2,"1770":2,"1776":6,"1779":3,"1781":3,"1782":6,"1784":9,"1785":6,"1786":4,"1787":1,"1848":2,"1849":7,"1925":8,"1933":5,"1935":1,"1953":1,"1954":1,"1968":1,"1985":1,"1994":1,"2009":2,"2013":1,"2057":1,"2068":10,"2084":4,"2085":7,"2091":1,"2181":4,"2218":1,"2222":1,"2253":2,"2272":1,"2290":1,"2300":4,"2309":1,"2317":1,"2319":1,"2330":1,"2390":1,"2397":1,"2418":1,"2434":1,"2458":1,"2463":1,"2466":2,"2513":1,"2516":6,"2517":5,"2518":2,"2522":14,"2524":2,"2525":3,"2527":2,"2533":1,"2537":2,"2539":8,"2540":5,"2543":2,"2544":4,"2545":4,"2554":1,"2559":1,"2563":2,"2572":1,"2573":1,"2576":1,"2585":1,"2606":1,"2612":4,"2650":1,"2651":2,"2678":1,"2757":5,"2764":1,"2821":1,"2831":1,"2834":1,"2839":1,"2842":1,"2889":1,"2894":2,"2912":14,"2914":5,"2916":4,"2917":6,"2918":4,"2920":8,"2921":2,"2922":3,"2926":5,"2950":2}}],["downbubble",{"2":{"33":2}}],["do",{"0":{"415":2,"607":1,"618":2,"1364":1,"1496":1,"1500":1,"1526":1,"1594":1,"1790":1,"2066":1,"2307":1,"2932":1},"1":{"416":2,"417":2,"418":2,"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1,"1595":1,"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"47":1,"92":2,"132":1,"191":1,"194":1,"199":2,"222":1,"231":3,"232":2,"241":1,"253":1,"268":1,"270":1,"281":1,"284":1,"303":2,"317":1,"338":2,"373":1,"415":1,"429":2,"440":1,"494":1,"499":2,"505":2,"512":4,"513":1,"514":3,"516":1,"518":1,"519":2,"526":1,"528":2,"530":1,"533":1,"540":1,"544":2,"546":1,"575":1,"597":1,"604":2,"609":1,"612":2,"613":4,"615":1,"626":1,"631":2,"633":1,"646":2,"656":1,"676":1,"683":1,"685":1,"686":1,"695":1,"718":1,"753":1,"766":1,"797":1,"923":1,"1094":1,"1128":1,"1208":1,"1266":1,"1320":2,"1348":2,"1365":1,"1378":1,"1380":3,"1409":1,"1416":1,"1417":2,"1425":1,"1427":1,"1440":2,"1444":1,"1446":1,"1447":1,"1462":1,"1470":1,"1471":2,"1472":2,"1477":1,"1480":1,"1483":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1529":1,"1589":1,"1591":1,"1592":1,"1593":1,"1601":2,"1605":1,"1609":1,"1617":1,"1622":1,"1628":1,"1661":1,"1668":1,"1776":1,"1779":1,"1788":1,"1794":1,"1795":1,"1798":1,"1801":1,"1837":1,"1846":1,"1850":1,"1851":1,"1919":1,"1939":1,"1948":1,"1953":1,"1962":1,"1987":1,"1999":1,"2013":1,"2041":3,"2043":4,"2069":1,"2082":1,"2088":1,"2090":1,"2188":2,"2206":1,"2256":1,"2270":1,"2271":1,"2272":1,"2273":1,"2279":1,"2287":1,"2301":1,"2308":2,"2309":1,"2310":1,"2317":1,"2319":1,"2376":1,"2390":1,"2397":1,"2401":1,"2414":2,"2418":2,"2425":1,"2441":1,"2458":1,"2460":1,"2461":1,"2466":1,"2471":1,"2474":1,"2482":2,"2485":1,"2487":1,"2489":1,"2490":1,"2502":1,"2503":1,"2506":1,"2553":1,"2568":1,"2579":1,"2583":1,"2584":1,"2585":1,"2587":1,"2589":2,"2594":1,"2603":1,"2607":1,"2612":1,"2616":1,"2629":1,"2636":1,"2637":2,"2638":1,"2639":1,"2641":1,"2652":1,"2656":1,"2659":2,"2660":1,"2668":1,"2673":1,"2674":1,"2685":1,"2686":1,"2687":1,"2703":1,"2710":1,"2717":1,"2718":1,"2727":1,"2728":4,"2730":1,"2757":2,"2764":1,"2782":1,"2786":3,"2787":2,"2789":1,"2791":2,"2847":1,"2851":1,"2870":1,"2884":1,"2886":2,"2888":1,"2889":1,"2890":1,"2909":1,"2912":3,"2913":2,"2920":2,"2921":2,"2929":1,"2932":1,"2936":2,"2945":1,"2948":1,"2950":1}}],["dongles",{"2":{"2508":1}}],["dongle",{"2":{"2400":2,"2505":1}}],["donating",{"2":{"604":1}}],["done",{"2":{"104":1,"114":1,"125":1,"127":2,"166":1,"169":2,"224":1,"393":1,"409":1,"420":1,"541":1,"601":1,"618":1,"656":1,"673":1,"687":1,"746":1,"760":1,"1200":1,"1248":1,"1314":1,"1378":1,"1381":1,"1390":1,"1417":1,"1431":1,"1472":1,"1502":2,"1537":1,"1538":1,"1936":1,"1953":1,"1959":1,"1990":1,"2012":1,"2280":1,"2295":1,"2387":8,"2389":2,"2394":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2427":1,"2430":1,"2432":1,"2434":1,"2435":1,"2464":2,"2473":1,"2502":1,"2582":1,"2595":1,"2618":1,"2629":1,"2638":1,"2639":1,"2673":1,"2674":1,"2728":1,"2730":2,"2731":1,"2756":22,"2757":1,"2890":1,"2895":1,"2938":1,"2945":1}}],["don",{"0":{"604":1,"1320":1,"1336":1},"2":{"21":1,"24":1,"119":1,"149":2,"175":1,"181":1,"198":1,"199":1,"210":1,"232":1,"277":2,"383":1,"455":1,"489":1,"512":1,"513":1,"514":1,"516":1,"538":1,"604":1,"613":1,"1208":1,"1248":1,"1313":1,"1319":1,"1340":1,"1343":1,"1354":2,"1365":1,"1409":1,"1415":1,"1454":1,"1470":2,"1472":1,"1490":1,"1491":1,"1517":1,"1525":1,"1537":1,"1589":1,"1609":1,"1668":1,"1766":1,"1986":1,"1999":1,"2280":1,"2297":1,"2320":1,"2327":1,"2386":1,"2427":1,"2466":1,"2561":2,"2566":1,"2579":1,"2586":1,"2593":1,"2615":1,"2616":1,"2628":1,"2658":1,"2669":1,"2694":1,"2714":1,"2717":1,"2785":1,"2794":1,"2890":3,"2894":1,"2907":1,"2912":2,"2944":1,"2950":2}}],["darmoshark",{"2":{"2567":1}}],["dave",{"2":{"2466":1}}],["dazzle",{"2":{"2065":1}}],["damage",{"2":{"1681":1,"2427":1,"2690":1}}],["damnit",{"2":{"352":1}}],["daemon",{"2":{"1316":1}}],["daunting",{"2":{"555":1}}],["daughterboard",{"2":{"311":1}}],["dashes",{"2":{"519":1,"520":1}}],["dashed",{"2":{"344":1}}],["daskeyboard4",{"2":{"308":1}}],["daskygit",{"2":{"190":1}}],["days",{"0":{"408":1},"2":{"407":1,"408":2,"412":1}}],["day",{"0":{"409":1},"2":{"222":1,"402":1,"405":1,"406":1,"407":2,"412":4,"538":1,"2567":1}}],["dac2",{"2":{"717":1}}],["dac1",{"2":{"717":5,"718":4}}],["dacs",{"2":{"717":1,"718":1}}],["dac",{"0":{"717":1,"718":1,"719":1,"1477":1,"1480":1},"1":{"720":1,"1478":1,"1479":1},"2":{"210":3,"236":2,"249":1,"716":2,"717":6,"718":7,"719":13,"720":6,"723":2,"1477":7,"1478":1,"1480":9,"1481":2,"1484":1,"1488":4,"2689":1,"2856":2}}],["dactyl",{"2":{"114":3,"175":1,"205":4,"210":14,"222":1,"226":1,"236":2,"277":1,"439":2,"2425":2,"2426":1}}],["daily",{"2":{"2667":1}}],["daily60",{"2":{"222":1}}],["dailycraft",{"2":{"143":7}}],["daisy",{"2":{"102":2}}],["dawn60",{"0":{"58":1},"2":{"58":3}}],["danish",{"2":{"2887":3}}],["danielggordon",{"2":{"2317":1}}],["danger",{"2":{"352":1,"2621":1}}],["dangerous",{"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"352":1,"399":2}}],["dango40",{"2":{"222":1}}],["dances",{"2":{"175":1,"2309":1,"2315":1,"2316":1,"2317":2,"2319":2}}],["dance",{"0":{"323":1,"2307":1,"2309":1,"2314":1,"2317":1,"2318":1,"2319":1,"2843":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"39":4,"175":1,"191":3,"199":1,"210":1,"249":1,"277":1,"323":7,"324":5,"325":8,"328":1,"562":1,"592":2,"1423":1,"1427":1,"1594":1,"1603":1,"1801":1,"2308":2,"2309":30,"2310":25,"2312":7,"2313":1,"2314":8,"2315":15,"2316":26,"2317":27,"2318":16,"2319":31,"2573":1,"2651":1,"2728":1,"2843":1,"2907":1,"2909":2,"2941":2,"2949":1}}],["datastructure",{"2":{"2560":1,"2937":2}}],["datasheets",{"2":{"766":1,"1200":1}}],["datasheet",{"2":{"149":1,"695":1,"698":1,"699":1,"724":1,"729":1,"749":3,"750":1,"754":1,"759":5,"762":1,"768":1,"800":1,"826":1,"855":1,"860":1,"863":1,"887":1,"893":1,"919":1,"925":1,"928":1,"954":1,"959":1,"962":1,"988":1,"993":1,"996":1,"1022":1,"1027":1,"1030":1,"1056":1,"1061":1,"1064":1,"1090":1,"1095":1,"1098":1,"1124":1,"1129":1,"1132":1,"1158":1,"1163":1,"1166":1,"1198":1,"1201":1,"1214":1,"1219":1,"1248":1,"1269":1,"1297":1,"1556":1,"1684":1,"1685":2,"1686":1,"1713":1,"1730":1,"2483":1,"2694":1,"2695":1}}],["datatypes",{"2":{"203":2,"2757":1}}],["datablock",{"0":{"1419":1},"1":{"1420":1},"2":{"175":1,"1419":17,"1420":4}}],["database",{"0":{"132":1,"302":1,"470":1},"2":{"132":3,"134":1,"249":1,"308":1,"429":3,"470":1,"2673":1}}],["data",{"0":{"109":1,"168":1,"184":1,"323":1,"664":1,"773":1,"776":1,"779":1,"782":2,"785":1,"788":1,"791":1,"794":1,"810":1,"837":1,"869":1,"899":1,"934":1,"968":1,"1002":1,"1036":1,"1070":1,"1104":1,"1138":1,"1172":1,"1225":1,"1254":1,"1259":1,"1262":1,"1273":1,"1277":1,"1279":1,"1537":1,"1637":1,"1719":1,"1721":1,"1725":1,"1732":2,"2057":1,"2058":1,"2061":1,"2063":1,"2276":1,"2277":1,"2771":1,"2779":1,"2792":1},"1":{"110":1,"111":1,"112":1,"185":1,"665":1,"666":1,"667":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"774":1,"775":1,"777":1,"778":1,"780":1,"781":1,"783":2,"784":2,"786":1,"787":1,"789":1,"790":1,"792":1,"793":1,"795":1,"796":1,"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1226":1,"1255":1,"1256":1,"1260":1,"1261":1,"1263":1,"1264":1,"1274":1,"1278":1,"1280":1,"1538":1,"1539":1,"1720":1,"1722":1,"1726":1,"1733":2,"2062":1,"2064":1},"2":{"35":2,"76":2,"107":4,"109":1,"114":3,"149":2,"160":3,"168":1,"175":3,"184":1,"191":6,"199":13,"202":1,"210":13,"212":2,"222":29,"236":7,"249":2,"251":1,"262":2,"266":68,"277":3,"285":1,"308":1,"312":1,"324":1,"325":1,"328":2,"333":1,"339":1,"344":2,"380":2,"396":1,"433":2,"448":1,"449":1,"463":1,"493":1,"555":2,"570":3,"578":1,"625":1,"664":1,"666":2,"668":1,"669":2,"671":2,"702":1,"716":2,"721":2,"748":1,"768":1,"774":3,"776":1,"777":3,"780":2,"783":5,"786":3,"789":3,"792":2,"795":2,"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1194":1,"1197":1,"1200":3,"1226":1,"1255":1,"1260":3,"1263":2,"1274":1,"1276":1,"1278":3,"1280":2,"1281":2,"1282":1,"1283":1,"1285":1,"1286":1,"1288":1,"1296":1,"1365":1,"1416":1,"1418":1,"1419":15,"1420":4,"1483":1,"1525":2,"1527":3,"1528":1,"1535":1,"1537":2,"1538":4,"1637":1,"1681":1,"1699":1,"1702":1,"1720":2,"1722":2,"1726":2,"1732":2,"1733":2,"1835":1,"1953":3,"1954":22,"1957":1,"1962":3,"1966":1,"1974":2,"1978":1,"1981":1,"1983":1,"1985":3,"1987":4,"1988":7,"1989":3,"2038":2,"2040":1,"2041":3,"2042":2,"2043":6,"2044":2,"2046":2,"2057":3,"2058":2,"2059":8,"2062":2,"2064":2,"2095":2,"2096":1,"2178":1,"2179":3,"2191":1,"2208":1,"2275":3,"2277":17,"2278":1,"2288":1,"2290":11,"2298":1,"2314":1,"2315":3,"2316":6,"2317":4,"2318":4,"2319":4,"2375":1,"2379":1,"2431":1,"2454":1,"2466":4,"2502":3,"2556":1,"2557":1,"2639":1,"2716":1,"2722":2,"2728":3,"2754":1,"2755":2,"2756":2,"2757":5,"2765":3,"2769":1,"2771":2,"2772":3,"2773":1,"2776":1,"2779":6,"2795":7,"2851":2,"2855":2,"2869":2,"2875":2}}],["dates",{"0":{"402":1},"2":{"412":1}}],["date",{"2":{"6":2,"43":1,"157":1,"409":1,"411":1,"412":10,"609":1,"2281":1,"2626":1,"2638":1,"2658":1,"2707":1,"2710":1,"2726":1}}],["deutsche",{"2":{"2838":1}}],["derivatives",{"2":{"2626":3,"2628":1}}],["derive",{"2":{"750":1,"759":1,"1300":1}}],["derived",{"2":{"385":1,"2499":1,"2886":1}}],["dereferencing",{"2":{"1947":1,"2286":1}}],["deghost",{"2":{"889":1,"891":1}}],["degradation",{"2":{"2754":1}}],["degrade",{"2":{"1949":1}}],["degrading",{"2":{"220":1}}],["degree",{"0":{"1953":1},"2":{"1662":1,"1664":1,"1952":2,"1953":3,"1972":3}}],["degrees",{"2":{"21":1,"24":1,"1948":1,"1983":1,"1985":3,"1987":3,"2051":1,"2287":1,"2292":1,"2757":1,"2777":1,"2869":1}}],["denied",{"2":{"2569":1}}],["denote",{"2":{"2559":1,"2776":2}}],["denoted",{"2":{"1630":1,"1954":1,"2290":1,"2765":1,"2772":1}}],["denotes",{"2":{"754":1,"755":1,"756":1,"829":1,"858":1,"890":1,"922":1,"923":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1094":1,"1127":1,"1128":1,"1161":1,"1217":1,"1286":1,"2775":1,"2776":1,"2864":1}}],["density",{"0":{"1213":1},"2":{"114":1,"2508":2}}],["deeper",{"2":{"2310":1}}],["deeply",{"2":{"670":1}}],["deep",{"2":{"555":1,"558":2,"2450":1}}],["deemen17",{"2":{"300":2,"308":1}}],["dedicate",{"2":{"2071":1}}],["dedicates",{"2":{"1311":3}}],["dedicated",{"2":{"552":1,"746":1,"1193":1,"1342":1,"1544":1,"1593":1,"1663":1,"1671":1,"1769":1,"1779":2,"1850":1,"2088":1,"2181":1}}],["dedupe",{"2":{"236":1}}],["de60",{"2":{"300":1,"308":1}}],["de60fs",{"2":{"300":1}}],["demand",{"2":{"2637":2}}],["demanding",{"2":{"2567":1}}],["demo",{"2":{"2187":1,"2278":1}}],["demonstrate",{"2":{"2569":1,"2934":1}}],["demonstrates",{"2":{"2180":1}}],["demonstrated",{"2":{"312":1}}],["demonstration",{"2":{"2059":1,"2183":1}}],["demiurge",{"2":{"222":1}}],["demultiplexer",{"2":{"149":1}}],["dekunukem",{"2":{"210":1}}],["dead",{"2":{"2650":1,"2834":1,"2886":1}}],["deadline",{"2":{"412":1,"570":1}}],["deadlocks",{"2":{"191":1}}],["deadlock",{"2":{"175":2,"199":1}}],["deaf",{"2":{"2291":1}}],["deactivating",{"2":{"2012":1,"2861":1}}],["deactivation",{"0":{"1785":1},"2":{"1779":1,"2000":2,"2008":1,"2009":1}}],["deactivates",{"2":{"1427":1,"1600":1,"1601":1,"1779":1,"1785":1,"2861":1}}],["deactivate",{"2":{"1424":1,"1600":1,"1782":1,"1999":2,"2253":1,"2254":4,"2294":1}}],["deactivated",{"2":{"1422":1,"1485":1,"1486":2,"1781":2,"1782":1,"1785":1,"1999":1}}],["deassert",{"2":{"1265":1,"1648":1,"1650":1,"1652":1}}],["deals",{"2":{"1348":1,"2718":1}}],["deal",{"2":{"1337":1,"1986":1,"2479":1}}],["dealt",{"2":{"646":1}}],["dealing",{"2":{"44":1,"2422":1}}],["de",{"0":{"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1},"2":{"134":1,"199":4,"266":1,"317":1,"891":1,"1422":2,"2070":1,"2522":1,"2887":2}}],["detrimental",{"2":{"276":1}}],["detach",{"0":{"2762":1},"2":{"266":1,"2762":2}}],["detailing",{"2":{"2632":1}}],["detail",{"2":{"191":2,"417":1,"609":1,"1359":1,"1783":1,"2310":1,"2417":1,"2521":1,"2942":1}}],["details",{"0":{"362":1,"504":1,"505":1,"506":1,"2310":1,"2565":1},"2":{"178":1,"195":1,"224":1,"228":1,"229":1,"232":1,"352":2,"365":1,"370":2,"398":1,"430":1,"495":1,"505":1,"529":1,"555":1,"564":3,"686":1,"688":1,"766":1,"1312":1,"1319":1,"1321":1,"1398":1,"1405":1,"1410":1,"1422":1,"1427":1,"1428":1,"1467":1,"1476":1,"1489":1,"1493":1,"1503":1,"1537":1,"1594":1,"1661":1,"1697":1,"1768":1,"1773":1,"1835":1,"2075":1,"2095":1,"2096":1,"2188":1,"2191":1,"2313":1,"2318":1,"2326":1,"2417":1,"2418":2,"2455":1,"2468":1,"2509":1,"2565":1,"2609":1,"2616":1,"2723":1,"2732":1,"2910":1,"2913":1,"2931":1}}],["detailed",{"0":{"71":1,"578":1,"2417":1},"1":{"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"579":1,"580":1,"581":1,"582":1,"583":1,"584":1,"585":1,"586":1,"2418":1,"2419":1},"2":{"47":1,"70":1,"426":1,"552":1,"1318":1,"1356":1,"1421":1,"1938":1,"2262":1,"2281":1,"2320":1,"2454":1,"2633":1,"2635":1,"2724":1,"2928":1}}],["detent",{"2":{"1665":1,"1670":2}}],["determining",{"2":{"1427":1,"2295":1,"2880":1,"2927":1}}],["deterministically",{"2":{"230":1}}],["determines",{"2":{"429":1,"1252":1,"2273":1,"2880":1,"2910":1}}],["determined",{"2":{"415":1,"489":1,"568":2,"569":2,"754":1,"2558":1}}],["determine",{"2":{"114":1,"119":1,"157":1,"543":1,"568":1,"569":1,"656":1,"750":1,"754":1,"768":1,"1248":1,"1269":1,"1281":1,"1492":1,"1510":1,"1556":1,"2270":1,"2271":1,"2272":2,"2318":2,"2319":1,"2566":1,"2709":2,"2729":1,"2880":1,"2940":1}}],["detects",{"2":{"2466":1}}],["detected",{"0":{"1317":1},"2":{"222":1,"266":1,"308":1,"339":1,"564":1,"754":1,"1378":1,"1638":3,"1957":2,"1958":8,"1962":1,"2275":1,"2295":1,"2384":1,"2616":1,"2674":1,"2880":2}}],["detecting",{"2":{"132":1,"570":2,"2278":2,"2279":1,"2393":1,"2579":2,"2670":1,"2764":1,"2767":1,"2773":1,"2774":1,"2936":1,"2937":1}}],["detection",{"0":{"1956":1,"1959":1,"2570":1,"2940":1},"1":{"1957":1,"1958":1,"1959":1,"1960":1,"1961":1,"1962":1,"1963":1},"2":{"114":1,"190":1,"199":4,"249":3,"285":2,"308":1,"754":1,"1396":1,"1397":1,"1532":1,"1957":1,"1959":1,"1960":7,"1961":5,"1962":3,"1987":1,"2278":1,"2279":3,"2280":2,"2937":1}}],["detect",{"2":{"112":1,"199":1,"285":1,"293":1,"305":1,"314":1,"436":1,"570":6,"686":1,"1380":1,"1381":1,"1396":1,"1535":1,"1957":1,"2278":5,"2279":3,"2280":2,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2466":1,"2674":1,"2728":1,"2828":1,"2880":2,"2950":1}}],["debating",{"2":{"2567":1}}],["debt",{"2":{"171":1,"198":1,"201":1,"212":1,"224":1,"238":1}}],["debian",{"2":{"114":3,"2601":1,"2626":1,"2628":3}}],["debouncing",{"0":{"1414":1},"2":{"94":1,"210":1,"574":1,"625":2,"1409":3,"1410":12,"1413":6,"1414":2,"1959":2,"1980":1,"2418":1}}],["debouncer",{"2":{"149":1}}],["debounce",{"0":{"1410":1,"1411":1,"1412":1,"1413":1},"1":{"1412":1,"1413":1,"1414":1},"2":{"70":2,"111":1,"112":1,"114":3,"134":1,"149":1,"191":1,"199":3,"210":2,"236":1,"308":1,"328":2,"561":1,"574":1,"625":4,"1409":3,"1410":6,"1411":1,"1412":3,"1413":10,"1414":4,"1591":1,"1960":2,"1976":1,"1977":1,"1980":1,"2003":1,"2008":4,"2014":1,"2418":1,"2728":3,"2854":2,"2872":2,"2908":1}}],["debugged",{"2":{"2794":1}}],["debuggers",{"2":{"398":1}}],["debugger",{"0":{"389":1,"396":1,"397":1,"398":1},"2":{"397":1,"1428":2,"2674":2,"2947":1,"2950":1}}],["debugging",{"0":{"384":1,"395":1,"1321":1,"1322":1,"1323":1,"1324":1,"1325":1,"1326":1,"2647":1,"2649":1,"2674":1,"2947":1},"1":{"385":1,"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"393":1,"394":1,"395":1,"396":2,"397":2,"398":2,"1322":1,"1323":1,"1324":2,"1325":2,"1326":2,"1327":1,"1328":1,"1329":1,"1330":1,"1331":1,"1332":1,"1333":1,"2648":1,"2649":1},"2":{"82":1,"114":1,"288":1,"384":1,"390":1,"393":1,"397":1,"398":1,"434":1,"561":1,"562":2,"1209":1,"1328":2,"1333":1,"1372":1,"1625":4,"1962":1,"1998":1,"2418":1,"2653":1,"2664":1,"2669":1,"2674":4,"2691":1,"2754":2,"2796":1,"2819":1,"2899":1,"2927":1}}],["debug=1",{"2":{"249":1,"2947":2}}],["debug",{"0":{"1327":1,"1328":1,"1962":1,"2052":1},"1":{"1329":1,"1330":1,"1331":1},"2":{"14":1,"24":1,"39":1,"40":1,"65":1,"114":2,"172":1,"175":2,"191":1,"199":1,"222":1,"249":2,"277":1,"285":1,"308":1,"396":1,"397":2,"398":1,"492":2,"540":1,"562":1,"574":2,"1209":2,"1322":8,"1323":1,"1324":1,"1325":1,"1326":1,"1327":3,"1331":1,"1332":1,"1333":3,"1420":1,"1428":2,"1625":4,"1962":1,"1998":2,"2052":5,"2191":4,"2417":1,"2418":4,"2523":2,"2586":1,"2599":1,"2619":1,"2674":11,"2752":2,"2754":3,"2947":1}}],["devuan",{"2":{"2601":1}}],["deviate",{"2":{"2702":1}}],["deviation",{"2":{"1971":1}}],["devised",{"2":{"2474":1}}],["device",{"0":{"118":1,"174":1,"190":1,"687":1,"1317":1,"1318":1,"1332":1,"1941":1,"1964":1,"1970":1,"1996":1,"2015":1},"1":{"1965":1,"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1971":1,"1972":1,"1973":1,"1974":1,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1984":1,"1985":1,"1986":1,"1987":1,"1988":1,"1989":1},"2":{"63":1,"70":2,"100":2,"111":1,"114":1,"118":13,"134":3,"138":3,"146":1,"149":2,"168":2,"174":3,"175":7,"184":2,"190":4,"191":7,"222":4,"240":2,"249":1,"266":1,"273":2,"285":2,"317":2,"393":1,"561":3,"564":1,"685":3,"686":3,"687":4,"688":6,"689":5,"695":1,"748":1,"762":1,"766":1,"773":1,"774":2,"776":1,"777":2,"779":1,"780":2,"782":1,"783":2,"785":1,"786":2,"788":1,"789":2,"791":1,"792":2,"794":1,"795":2,"798":2,"1196":1,"1199":1,"1252":2,"1254":1,"1257":1,"1258":1,"1259":1,"1262":1,"1268":1,"1272":1,"1315":1,"1316":1,"1317":2,"1329":1,"1332":5,"1333":1,"1370":2,"1391":1,"1399":1,"1409":2,"1638":6,"1639":2,"1678":2,"1738":2,"1923":1,"1924":3,"1929":1,"1941":1,"1945":1,"1959":1,"1960":1,"1961":1,"1962":2,"1964":3,"1965":1,"1966":4,"1967":2,"1968":1,"1969":1,"1970":1,"1973":2,"1974":2,"1976":2,"1977":1,"1978":3,"1979":2,"1980":1,"1981":4,"1982":2,"1983":10,"1984":6,"1985":23,"1986":8,"1987":15,"1988":20,"1989":9,"1990":9,"1992":3,"1993":2,"1994":1,"1996":5,"1997":6,"1998":2,"1999":3,"2001":2,"2003":1,"2014":2,"2015":10,"2016":1,"2037":1,"2051":6,"2057":5,"2059":7,"2218":5,"2276":2,"2325":1,"2388":1,"2389":2,"2391":1,"2392":2,"2393":2,"2394":3,"2395":1,"2396":3,"2397":2,"2398":1,"2399":2,"2400":1,"2401":2,"2402":2,"2403":2,"2404":2,"2405":1,"2406":2,"2408":2,"2410":2,"2454":4,"2455":1,"2499":1,"2501":1,"2502":4,"2505":1,"2563":1,"2612":3,"2615":3,"2674":3,"2717":2,"2728":1,"2756":64,"2757":52,"2761":3,"2826":1,"2835":1,"2849":1,"2875":2,"2882":2}}],["devices",{"0":{"44":1,"138":1,"1997":1},"2":{"39":3,"44":2,"138":1,"149":1,"174":1,"175":1,"189":2,"190":1,"229":1,"263":1,"266":1,"276":1,"294":1,"317":1,"393":2,"434":1,"609":2,"686":2,"687":1,"688":3,"689":1,"690":1,"695":4,"754":1,"757":1,"767":1,"776":1,"797":1,"1247":2,"1287":1,"1290":1,"1295":1,"1300":1,"1317":1,"1333":1,"1410":1,"1477":1,"1488":1,"1717":1,"1721":1,"1956":1,"1960":2,"1962":1,"1989":1,"2037":1,"2057":2,"2232":1,"2234":1,"2247":1,"2248":1,"2276":1,"2292":1,"2374":1,"2399":1,"2439":1,"2454":1,"2477":3,"2483":1,"2505":1,"2613":1,"2674":1,"2679":1,"2684":1,"2707":3,"2709":2,"2710":1,"2717":1,"2728":1,"2753":1,"2756":16,"2908":1}}],["devaddr",{"0":{"785":1,"788":1,"791":1,"794":1},"1":{"786":1,"787":1,"789":1,"790":1,"792":1,"793":1,"795":1,"796":1},"2":{"786":1,"789":1,"792":1,"795":1}}],["devastatingtkl",{"2":{"222":1}}],["dev",{"2":{"108":1,"285":1,"333":1,"387":1,"390":1,"2502":2,"2600":1,"2601":2,"2640":5,"2641":1,"2674":1}}],["developing",{"2":{"2463":1,"2477":1,"2638":1,"2653":1,"2664":1,"2730":1}}],["developed",{"2":{"2394":1,"2812":1,"2902":1}}],["developer=true",{"2":{"488":1}}],["developer",{"0":{"457":1,"488":1},"1":{"458":1,"459":1,"460":1,"461":1,"462":1,"463":1,"464":1,"465":1,"466":1,"467":1,"468":1,"469":1,"470":1},"2":{"374":1,"377":1,"488":1,"596":1}}],["developers",{"0":{"374":1,"376":1},"2":{"365":1,"384":1,"486":1,"664":1,"2417":1,"2658":2,"2814":1}}],["developments",{"2":{"2638":1}}],["development",{"0":{"364":1,"365":1,"486":1,"2653":1,"2664":1},"2":{"132":1,"160":3,"178":2,"190":1,"191":1,"198":1,"233":1,"266":1,"306":1,"308":4,"315":1,"317":8,"364":1,"376":1,"461":1,"488":1,"554":1,"611":1,"685":1,"1200":1,"1403":1,"1407":2,"1962":1,"2395":1,"2610":1,"2638":2,"2640":1,"2653":2,"2656":1,"2657":1,"2713":1,"2714":4,"2730":1,"2835":1,"2844":1,"2853":5,"2888":1,"2901":1,"2902":1,"2908":3,"2942":1}}],["develop",{"0":{"411":1},"2":{"41":1,"73":1,"76":1,"92":1,"93":1,"94":1,"114":5,"134":4,"149":3,"175":6,"179":1,"184":1,"191":7,"199":1,"210":4,"222":5,"236":2,"251":1,"266":1,"308":1,"383":2,"399":1,"402":6,"403":3,"405":1,"406":1,"407":1,"408":1,"409":5,"411":7,"412":12,"420":3,"421":3,"422":3,"423":6,"1340":1,"2310":1,"2428":1,"2728":4,"2729":1,"2903":2,"2904":1}}],["declined",{"2":{"2902":1}}],["declare",{"2":{"1407":2,"1850":2,"2088":2,"2318":1,"2319":1}}],["declared",{"2":{"1389":1,"1446":1,"1850":1,"2088":1,"2313":1}}],["declares",{"2":{"306":1,"315":1,"1957":1}}],["declarations",{"2":{"210":1,"2312":1}}],["declaration",{"2":{"175":1,"559":1}}],["decryption",{"2":{"2212":1}}],["decreasing",{"2":{"565":3,"1410":1,"2086":1}}],["decrease",{"0":{"1565":1,"1881":1,"1882":1,"1887":1,"1888":1,"2123":1,"2124":1,"2129":1,"2130":1,"2135":1,"2136":1,"2141":1,"2142":1},"2":{"181":1,"1487":1,"1520":1,"1522":1,"1543":1,"1544":1,"1565":1,"1668":2,"1680":2,"1688":1,"1848":2,"1881":1,"1882":1,"1887":1,"1888":1,"1925":4,"2084":3,"2085":1,"2086":3,"2123":1,"2124":1,"2129":1,"2130":1,"2135":1,"2136":1,"2141":1,"2142":1,"2181":8,"2201":12,"2202":2,"2253":1,"2254":3,"2381":1,"2527":1,"2537":2,"2539":4,"2544":8,"2545":3,"2764":1,"2912":1}}],["decreases",{"2":{"119":1,"1493":1,"1495":1,"2202":2,"2524":1,"2543":1,"2912":2}}],["decreased",{"2":{"39":1,"2086":1,"2379":1}}],["decays",{"2":{"2379":1}}],["decay",{"2":{"2211":1}}],["decalartion",{"2":{"149":1}}],["deceptively",{"2":{"2569":1,"2941":1}}],["deceptive",{"2":{"2567":3}}],["deception",{"2":{"2567":1,"2569":1}}],["decelerated",{"2":{"1936":4}}],["decelerates",{"2":{"1934":1}}],["decent",{"2":{"3":1,"48":1}}],["dec",{"2":{"1365":1}}],["decodable",{"2":{"1539":1}}],["decoding",{"0":{"1539":1}}],["decode",{"2":{"1537":1}}],["decoder",{"2":{"622":1,"2792":1}}],["decorators",{"0":{"536":1}}],["decorator",{"2":{"489":2}}],["decorated",{"2":{"487":1}}],["decoupled",{"2":{"189":1}}],["decouple",{"2":{"73":1,"94":1,"175":1,"210":1,"249":1,"277":1}}],["decimal",{"2":{"1365":1}}],["decides",{"2":{"2914":1}}],["decide",{"2":{"1198":1,"1201":1,"1522":2,"1612":3}}],["decided",{"2":{"87":1,"103":1,"126":1,"163":1,"168":1,"184":1,"1343":1}}],["deciding",{"2":{"512":1}}],["decisions",{"2":{"512":1,"514":1}}],["decision",{"0":{"2914":1},"1":{"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1,"2921":1},"2":{"210":1,"214":1,"243":1,"320":2,"331":1,"1410":1,"2300":1,"2567":1,"2909":1,"2913":1,"2914":3,"2915":2,"2920":1,"2928":1,"2931":2}}],["descr",{"2":{"2508":1}}],["describing",{"2":{"369":1,"403":1,"512":1,"514":1,"524":1,"681":1,"2217":1,"2852":4,"2871":1,"2878":1}}],["described",{"2":{"521":1,"615":1,"627":1,"657":1,"672":1,"689":1,"1451":1,"1538":1,"2077":1,"2255":1,"2423":1,"2451":1,"2754":1,"2931":1,"2940":1}}],["describes",{"2":{"377":1,"379":1,"384":1,"399":1,"576":1,"595":1,"664":1,"667":1,"681":1,"1553":1,"1554":1,"1748":1,"2308":1,"2674":1,"2684":1,"2714":1,"2773":1,"2777":1,"2778":1,"2779":1,"2869":1}}],["describe",{"2":{"99":1,"609":1,"2388":1,"2422":1,"2715":1,"2920":2}}],["descriptive",{"2":{"519":1,"607":1,"2640":1,"2674":1}}],["descriptions",{"2":{"749":1,"750":1,"751":1,"2674":1}}],["description",{"0":{"578":1},"1":{"579":1,"580":1,"581":1,"582":1,"583":1,"584":1,"585":1,"586":1},"2":{"119":1,"160":1,"403":1,"412":5,"484":1,"485":1,"494":1,"521":2,"599":1,"607":2,"609":1,"675":1,"683":1,"698":1,"699":1,"701":1,"704":1,"719":1,"726":1,"744":1,"746":1,"748":1,"749":1,"750":1,"751":1,"753":1,"754":1,"755":1,"756":1,"758":1,"759":1,"761":1,"767":1,"768":2,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1248":1,"1269":1,"1285":1,"1291":1,"1295":1,"1299":1,"1302":1,"1303":1,"1377":1,"1413":1,"1419":2,"1428":3,"1485":1,"1486":1,"1489":1,"1490":1,"1493":2,"1495":1,"1521":1,"1530":1,"1536":1,"1543":1,"1544":1,"1554":1,"1556":1,"1557":1,"1579":1,"1599":1,"1606":1,"1612":1,"1621":1,"1625":1,"1661":1,"1662":1,"1674":1,"1676":1,"1678":1,"1679":1,"1680":1,"1681":1,"1699":1,"1744":1,"1764":1,"1780":1,"1781":1,"1782":1,"1793":1,"1805":1,"1836":1,"1847":1,"1848":1,"1849":2,"1925":1,"1933":1,"1935":1,"1936":1,"1937":1,"1939":1,"1940":1,"1949":1,"1950":1,"1951":1,"1952":2,"1961":1,"1966":1,"1967":1,"1968":1,"1970":3,"1971":1,"1972":1,"1974":3,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1985":1,"1986":1,"1987":1,"1988":1,"1989":1,"2003":1,"2005":1,"2008":1,"2009":1,"2014":1,"2015":1,"2018":1,"2056":1,"2067":1,"2068":4,"2078":1,"2083":1,"2084":1,"2085":3,"2179":1,"2181":1,"2182":1,"2183":1,"2184":1,"2185":1,"2195":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2216":1,"2217":1,"2218":1,"2221":1,"2222":1,"2252":1,"2253":1,"2254":1,"2257":1,"2259":1,"2260":1,"2288":1,"2289":1,"2304":1,"2306":1,"2321":1,"2322":1,"2323":1,"2327":1,"2328":1,"2332":1,"2377":1,"2379":1,"2380":1,"2415":1,"2453":1,"2510":1,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2520":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2541":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2552":1,"2555":1,"2572":2,"2651":1,"2685":1,"2724":1,"2728":1,"2752":1,"2868":1,"2912":1}}],["descriptors",{"2":{"2":1,"40":1}}],["descriptor",{"0":{"2":1,"2767":1,"2774":1,"2776":1},"2":{"40":1,"114":1,"134":1,"160":1,"339":2,"1959":1,"1986":1,"2765":1,"2766":1,"2767":5,"2768":1,"2769":1,"2772":2,"2773":1,"2774":4,"2775":2,"2776":3,"2777":1}}],["descendant",{"2":{"2505":1}}],["desktop",{"2":{"1641":1,"2517":1,"2554":3,"2573":3,"2651":2}}],["deskthority",{"2":{"1368":1,"2037":1,"2466":1}}],["deskdaily",{"2":{"222":1}}],["destination",{"2":{"1353":1,"2535":1}}],["destroyed",{"2":{"513":1,"657":1}}],["desirable",{"2":{"1465":1}}],["desire",{"2":{"599":1,"2568":1}}],["desired",{"2":{"378":1,"414":1,"762":1,"1252":2,"1322":1,"1378":1,"1499":1,"1502":1,"1628":1,"1940":1,"1986":1,"2298":1,"2327":1,"2329":1,"2384":1,"2640":1,"2795":1,"2886":1,"2901":1,"2923":1}}],["designing",{"2":{"1544":1,"1556":1,"1836":1,"2422":1}}],["designate",{"2":{"2794":1}}],["designated",{"2":{"923":1,"1094":1,"1128":1,"1518":1,"2390":1,"2397":1,"2876":2}}],["designates",{"2":{"489":1,"2794":1}}],["designs",{"2":{"222":1,"2500":1,"2695":1}}],["design",{"2":{"114":1,"183":1,"222":2,"1196":1,"1199":1,"1539":1,"2902":1}}],["designers",{"2":{"125":1,"169":1,"209":1,"212":1,"233":1,"234":1,"1846":1,"2082":1,"2684":1,"2706":1}}],["designer",{"2":{"56":1,"561":2,"570":1,"639":2,"2726":1}}],["designed",{"2":{"27":1,"33":1,"1343":1,"1388":1,"2424":1,"2455":1,"2500":1,"2589":2,"2706":1,"2742":2}}],["despite",{"2":{"312":1,"2567":2,"2756":2,"2844":1}}],["def1",{"2":{"1332":2}}],["def",{"2":{"160":2,"489":1,"500":1,"522":1,"523":1,"524":1,"533":2,"534":3,"1622":1,"2059":2}}],["defs",{"2":{"114":1,"134":1,"160":1,"236":1,"573":1,"1471":2,"1472":1,"2455":2,"2728":1,"2945":1}}],["deferred",{"0":{"655":1,"656":1,"657":1,"658":1,"659":1,"660":1},"1":{"656":1,"657":1,"658":1,"659":1,"660":1},"2":{"134":1,"149":1,"333":1,"403":1,"412":1,"574":3,"655":1,"656":4,"657":4,"658":2,"659":2,"660":3,"1630":2,"1786":1,"2418":3,"2757":4}}],["deferring",{"2":{"125":1,"169":1,"639":2}}],["defer",{"2":{"114":2,"125":1,"149":1,"169":1,"236":1,"656":1,"657":1,"658":1,"659":1,"1410":9,"1413":6,"2069":1,"2854":4,"2928":1}}],["default=",{"2":{"489":1}}],["defaulting",{"2":{"328":1}}],["default60",{"2":{"317":1}}],["defaults",{"0":{"474":1,"2459":1,"2583":1},"1":{"2460":1},"2":{"69":1,"77":1,"114":1,"134":2,"149":1,"160":2,"191":2,"199":1,"236":4,"249":1,"303":1,"308":5,"317":1,"328":2,"333":1,"338":1,"557":1,"564":4,"565":1,"625":1,"719":1,"768":1,"1248":1,"1269":1,"1392":1,"1393":1,"1480":1,"1556":1,"1952":1,"1960":1,"1966":1,"1967":1,"1974":1,"1978":1,"1979":1,"1981":1,"1982":1,"1983":2,"2274":1,"2583":1,"2587":1,"2755":2,"2909":1,"2910":1}}],["default",{"0":{"137":1,"181":1,"293":1,"305":1,"314":1,"533":1,"556":1,"587":1,"1346":1,"1465":1,"2786":1,"2919":1},"1":{"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1},"2":{"18":1,"20":1,"21":1,"23":1,"28":1,"39":1,"40":2,"47":1,"69":1,"74":1,"77":1,"83":1,"93":2,"114":8,"124":1,"125":1,"134":2,"137":1,"143":2,"149":8,"156":1,"160":2,"167":8,"175":8,"179":1,"181":1,"191":10,"194":5,"195":3,"199":2,"210":1,"213":1,"217":1,"220":1,"222":5,"236":7,"249":4,"266":3,"273":1,"277":2,"283":1,"285":5,"289":1,"293":2,"294":9,"303":3,"305":2,"307":1,"308":2,"314":2,"317":6,"328":6,"338":3,"393":3,"397":1,"429":2,"430":1,"433":2,"437":1,"439":2,"444":1,"445":1,"448":1,"450":1,"452":2,"453":2,"459":1,"460":3,"462":1,"463":1,"473":2,"474":1,"476":3,"482":3,"483":3,"484":2,"485":3,"489":1,"492":2,"494":3,"533":1,"555":1,"556":1,"561":5,"568":2,"570":4,"575":1,"587":1,"588":7,"589":5,"612":1,"613":2,"622":1,"624":1,"631":1,"639":2,"660":1,"666":1,"669":4,"671":1,"683":2,"684":2,"686":2,"696":1,"701":4,"704":3,"715":1,"717":1,"719":1,"720":1,"726":1,"744":2,"746":1,"748":2,"749":2,"750":2,"751":2,"754":2,"755":1,"756":1,"757":1,"759":2,"767":1,"768":2,"769":1,"770":1,"802":1,"828":1,"857":1,"859":1,"860":2,"861":1,"889":1,"921":1,"924":1,"925":2,"926":1,"956":1,"958":1,"959":2,"960":1,"990":1,"992":1,"993":2,"994":1,"1024":1,"1026":1,"1027":2,"1028":1,"1058":1,"1060":1,"1061":2,"1062":1,"1092":1,"1095":4,"1096":1,"1126":1,"1129":4,"1130":1,"1160":1,"1162":1,"1163":3,"1164":1,"1193":1,"1198":1,"1201":1,"1203":2,"1204":2,"1205":2,"1207":2,"1208":2,"1213":2,"1216":1,"1248":1,"1269":1,"1285":1,"1287":1,"1289":1,"1290":1,"1291":1,"1295":1,"1297":1,"1299":1,"1302":1,"1303":1,"1320":1,"1322":1,"1343":1,"1359":1,"1361":1,"1366":1,"1372":1,"1388":1,"1392":1,"1395":1,"1396":1,"1397":1,"1407":1,"1412":1,"1413":1,"1416":1,"1417":13,"1419":2,"1422":6,"1425":1,"1428":18,"1430":2,"1431":1,"1433":5,"1449":1,"1455":2,"1464":1,"1465":1,"1472":1,"1484":1,"1485":1,"1486":4,"1487":2,"1489":1,"1490":1,"1491":2,"1492":1,"1493":7,"1495":1,"1501":1,"1503":3,"1510":3,"1517":4,"1526":2,"1528":1,"1532":1,"1542":1,"1544":5,"1547":1,"1548":1,"1554":1,"1556":2,"1557":1,"1579":1,"1589":2,"1590":1,"1593":2,"1595":1,"1597":1,"1598":1,"1600":2,"1608":1,"1609":2,"1610":2,"1612":5,"1620":10,"1622":1,"1623":1,"1624":1,"1625":15,"1638":3,"1662":2,"1665":3,"1667":1,"1668":2,"1670":1,"1675":1,"1678":1,"1680":1,"1681":4,"1687":1,"1699":1,"1739":1,"1740":1,"1741":1,"1742":1,"1782":2,"1784":1,"1785":1,"1786":1,"1788":2,"1800":1,"1803":1,"1836":1,"1843":1,"1846":3,"1851":1,"1852":10,"1926":1,"1934":3,"1935":2,"1936":1,"1937":3,"1939":2,"1940":1,"1945":4,"1946":2,"1949":2,"1950":1,"1951":3,"1952":4,"1954":3,"1959":1,"1962":1,"1965":1,"1966":1,"1967":1,"1968":2,"1970":2,"1971":1,"1972":1,"1974":5,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1985":5,"1986":3,"1987":1,"1990":1,"1994":4,"1996":1,"1999":1,"2001":4,"2003":3,"2004":1,"2006":1,"2011":1,"2012":7,"2014":2,"2039":1,"2044":1,"2046":3,"2048":2,"2056":2,"2068":3,"2069":3,"2072":1,"2076":1,"2082":3,"2086":1,"2090":1,"2091":14,"2095":1,"2179":2,"2182":12,"2184":1,"2185":1,"2189":1,"2190":1,"2217":1,"2220":1,"2221":2,"2223":1,"2250":1,"2258":1,"2259":2,"2260":1,"2270":1,"2271":1,"2273":2,"2275":2,"2277":1,"2278":1,"2284":2,"2285":1,"2288":2,"2289":2,"2290":1,"2293":2,"2294":1,"2297":2,"2298":1,"2304":1,"2309":2,"2317":3,"2318":2,"2319":2,"2322":5,"2323":1,"2327":2,"2328":1,"2330":1,"2331":1,"2379":2,"2381":2,"2384":3,"2389":1,"2390":2,"2397":2,"2406":1,"2408":1,"2410":1,"2414":2,"2415":1,"2417":4,"2418":7,"2432":1,"2453":5,"2459":1,"2460":2,"2466":1,"2497":1,"2498":1,"2499":2,"2522":1,"2524":1,"2535":3,"2543":2,"2558":7,"2560":1,"2561":1,"2583":3,"2584":2,"2587":4,"2593":1,"2598":1,"2599":1,"2614":2,"2615":1,"2619":1,"2626":1,"2629":7,"2640":1,"2659":1,"2662":1,"2663":2,"2667":3,"2674":2,"2685":2,"2686":1,"2687":1,"2700":1,"2701":1,"2702":2,"2705":2,"2714":3,"2717":1,"2727":3,"2728":10,"2729":4,"2754":2,"2755":2,"2756":11,"2764":1,"2786":7,"2789":1,"2795":1,"2853":1,"2854":15,"2855":2,"2856":8,"2857":14,"2858":5,"2860":2,"2861":5,"2862":1,"2863":1,"2864":1,"2865":1,"2866":3,"2867":1,"2869":3,"2870":3,"2871":22,"2872":7,"2873":1,"2875":3,"2877":24,"2878":28,"2879":3,"2880":16,"2881":2,"2882":7,"2883":4,"2884":1,"2886":1,"2889":1,"2891":1,"2894":1,"2910":1,"2911":1,"2912":4,"2914":4,"2916":2,"2917":3,"2918":2,"2920":3,"2921":3,"2922":5,"2923":1,"2924":1,"2925":2,"2926":1,"2927":1,"2928":3,"2929":3,"2931":1,"2950":1}}],["definable",{"2":{"1517":1}}],["defining",{"0":{"629":1,"2069":1,"2189":1},"1":{"2070":1,"2071":1},"2":{"35":1,"39":2,"40":1,"80":1,"120":1,"196":1,"199":1,"526":1,"627":2,"717":1,"719":1,"722":1,"1207":1,"1208":1,"1422":1,"1423":1,"1491":1,"1493":1,"1595":1,"1609":1,"1611":1,"1613":1,"1616":1,"1617":1,"1618":1,"1619":1,"1661":1,"1662":3,"1665":1,"1702":1,"1734":1,"1742":1,"1781":1,"1849":1,"1985":1,"2069":1,"2085":1,"2206":2,"2272":2,"2304":1,"2331":1,"2453":1,"2521":1,"2650":1,"2702":1,"2912":1,"2923":1,"2927":1,"2931":1}}],["definitions",{"0":{"2561":1},"2":{"40":5,"76":1,"77":1,"93":1,"166":1,"188":1,"191":1,"199":1,"201":1,"210":1,"212":3,"222":1,"333":1,"393":1,"1472":1,"1634":1,"1665":1,"1666":1,"2068":2,"2069":2,"2312":2,"2328":1,"2429":1,"2557":1,"2560":1,"2561":2,"2562":1,"2568":1,"2591":1,"2684":4,"2728":6,"2757":1,"2869":1}}],["definition",{"0":{"1702":1},"2":{"15":2,"26":2,"40":1,"65":1,"90":1,"160":1,"175":1,"181":1,"199":1,"317":1,"527":1,"570":1,"1603":1,"1620":1,"1630":1,"1689":1,"1742":1,"2189":1,"2190":1,"2272":1,"2309":1,"2312":1,"2327":1,"2521":1,"2561":1,"2562":2,"2564":1,"2684":1,"2685":1,"2686":1,"2687":1,"2702":1,"2728":1,"2765":1,"2772":1,"2850":1,"2938":4}}],["define\\tsplit",{"2":{"2271":1}}],["defined",{"0":{"2701":1},"1":{"2702":1,"2703":1},"2":{"75":1,"199":4,"247":1,"298":1,"307":2,"441":1,"512":5,"564":3,"565":3,"569":2,"597":1,"627":1,"632":1,"657":1,"704":2,"726":3,"744":1,"749":2,"750":1,"754":1,"772":1,"797":1,"802":1,"828":5,"857":5,"889":6,"921":5,"956":5,"990":5,"1024":5,"1058":5,"1092":5,"1126":5,"1160":5,"1206":1,"1216":5,"1285":3,"1287":1,"1299":2,"1302":1,"1303":2,"1345":1,"1407":1,"1417":1,"1422":1,"1425":1,"1433":1,"1434":2,"1450":1,"1455":1,"1471":1,"1486":8,"1487":1,"1498":2,"1514":1,"1518":1,"1532":1,"1544":3,"1556":1,"1558":1,"1590":1,"1591":1,"1605":1,"1611":1,"1612":3,"1624":1,"1656":2,"1661":1,"1662":4,"1665":3,"1667":2,"1678":6,"1681":6,"1687":1,"1699":6,"1702":1,"1740":1,"1747":1,"1765":1,"1815":1,"1818":1,"1835":1,"1836":5,"1850":1,"1934":1,"1937":2,"1938":2,"1949":3,"1951":1,"1952":9,"1954":2,"1960":1,"1968":6,"1970":4,"1972":3,"1974":3,"1975":1,"1976":1,"1977":2,"1979":2,"1982":2,"1985":15,"1986":1,"1987":8,"1990":4,"1992":1,"1999":1,"2003":1,"2068":3,"2077":1,"2086":1,"2088":1,"2089":1,"2091":1,"2182":4,"2183":1,"2184":12,"2185":2,"2205":1,"2221":1,"2259":3,"2260":2,"2274":1,"2279":1,"2280":1,"2288":3,"2305":3,"2309":2,"2313":1,"2319":1,"2329":1,"2344":1,"2345":1,"2346":1,"2379":6,"2381":1,"2410":1,"2414":1,"2453":1,"2456":1,"2470":1,"2475":1,"2556":1,"2559":1,"2563":3,"2594":1,"2674":1,"2706":1,"2709":2,"2728":1,"2751":1,"2753":1,"2757":1,"2765":2,"2772":2,"2786":1,"2794":1,"2884":1,"2910":1,"2926":1,"2927":1,"2945":1,"2949":2}}],["defines",{"0":{"331":1,"569":1,"1687":1},"2":{"40":1,"93":1,"114":4,"133":1,"134":3,"149":1,"175":11,"190":1,"191":2,"199":5,"210":1,"222":2,"233":1,"236":9,"249":3,"266":1,"277":1,"294":2,"308":1,"333":1,"339":1,"561":4,"569":1,"572":1,"591":1,"631":1,"690":1,"744":1,"767":1,"768":1,"829":1,"858":1,"890":1,"922":1,"923":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1094":1,"1127":1,"1128":1,"1161":1,"1213":1,"1217":1,"1286":1,"1291":1,"1295":1,"1299":1,"1302":1,"1303":1,"1479":1,"1480":1,"1484":1,"1489":1,"1498":1,"1554":1,"1556":1,"1557":1,"1635":1,"1636":1,"1637":1,"1665":2,"1702":1,"1730":1,"1771":1,"1772":1,"1774":2,"1776":1,"1849":1,"1952":7,"1953":1,"1970":1,"1985":1,"1988":1,"1989":1,"2047":1,"2048":1,"2071":1,"2077":1,"2079":1,"2085":2,"2182":1,"2184":1,"2252":2,"2259":1,"2260":4,"2289":1,"2322":1,"2375":1,"2379":2,"2390":1,"2397":1,"2561":2,"2585":1,"2673":1,"2674":1,"2701":1,"2705":1,"2709":1,"2711":1,"2721":2,"2727":1,"2728":2,"2868":1,"2894":1,"2935":1,"2945":1,"2949":1}}],["define",{"0":{"599":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1511":1,"1512":1,"1615":1,"1616":1,"1719":1,"1721":1,"2274":1},"1":{"1720":1,"1722":1},"2":{"15":2,"18":1,"21":1,"24":1,"39":2,"40":1,"46":1,"47":3,"69":1,"75":1,"94":1,"98":1,"107":1,"114":1,"120":3,"134":2,"149":1,"154":1,"157":1,"168":5,"175":4,"184":5,"191":2,"210":1,"222":1,"236":2,"249":2,"266":1,"273":3,"303":1,"307":1,"308":1,"338":1,"354":3,"383":3,"489":1,"512":1,"555":1,"561":28,"562":6,"563":3,"564":28,"565":13,"566":5,"569":6,"570":25,"630":1,"647":2,"660":2,"666":1,"701":1,"704":1,"717":8,"718":5,"719":2,"721":7,"722":1,"726":1,"727":1,"744":1,"748":1,"749":15,"750":7,"751":1,"754":6,"755":5,"756":5,"759":7,"766":3,"768":2,"802":1,"828":1,"829":1,"857":1,"858":1,"859":2,"860":4,"861":1,"889":1,"890":1,"891":1,"921":1,"922":1,"923":1,"924":2,"925":4,"926":1,"956":1,"957":1,"958":2,"959":4,"960":1,"990":1,"991":1,"992":2,"993":4,"994":1,"1024":1,"1025":1,"1026":2,"1027":4,"1028":1,"1058":1,"1059":1,"1060":2,"1061":4,"1062":1,"1092":1,"1093":1,"1094":1,"1095":4,"1096":1,"1126":1,"1127":1,"1128":1,"1129":4,"1130":1,"1160":1,"1161":1,"1162":2,"1163":4,"1164":1,"1195":2,"1198":3,"1201":6,"1203":3,"1204":3,"1205":2,"1207":1,"1208":1,"1209":1,"1216":1,"1217":1,"1248":5,"1269":1,"1285":1,"1287":1,"1288":1,"1291":1,"1295":1,"1297":1,"1299":3,"1300":1,"1301":1,"1302":1,"1303":3,"1331":1,"1347":5,"1354":2,"1369":1,"1372":1,"1392":1,"1396":1,"1405":1,"1412":1,"1417":1,"1419":8,"1420":1,"1422":1,"1431":3,"1434":1,"1440":1,"1441":2,"1446":2,"1451":1,"1464":1,"1466":1,"1472":1,"1474":9,"1477":4,"1478":1,"1479":3,"1480":6,"1481":1,"1482":3,"1483":4,"1484":2,"1485":2,"1488":1,"1489":2,"1490":2,"1491":1,"1492":1,"1493":1,"1501":2,"1502":2,"1503":1,"1510":1,"1518":2,"1520":1,"1527":3,"1544":1,"1545":1,"1546":2,"1554":1,"1556":3,"1557":3,"1579":1,"1589":2,"1590":3,"1591":1,"1594":2,"1595":1,"1597":1,"1598":1,"1600":1,"1601":2,"1602":1,"1605":2,"1608":1,"1609":8,"1610":2,"1619":1,"1620":1,"1622":1,"1625":2,"1655":4,"1662":2,"1663":1,"1665":10,"1666":10,"1667":1,"1670":4,"1676":2,"1684":5,"1685":8,"1687":3,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1702":1,"1719":1,"1720":1,"1721":2,"1722":1,"1740":4,"1741":2,"1768":1,"1786":1,"1788":5,"1792":2,"1794":1,"1795":1,"1800":1,"1801":2,"1802":1,"1803":1,"1835":1,"1836":2,"1843":1,"1846":1,"1847":1,"1849":21,"1850":1,"1851":1,"1852":16,"1921":1,"1922":1,"1924":2,"1935":1,"1936":1,"1937":6,"1938":2,"1939":1,"1940":1,"1947":1,"1949":2,"1950":1,"1951":1,"1952":4,"1954":5,"1960":3,"1962":2,"1968":1,"1983":2,"1985":1,"1986":2,"1994":2,"1998":1,"2001":2,"2003":1,"2040":2,"2041":6,"2042":3,"2043":10,"2044":2,"2046":5,"2047":3,"2048":9,"2049":1,"2050":4,"2051":3,"2052":2,"2053":1,"2056":1,"2068":1,"2069":2,"2072":1,"2077":2,"2079":1,"2082":1,"2083":1,"2085":50,"2086":6,"2087":2,"2088":1,"2090":1,"2091":21,"2095":1,"2096":1,"2179":3,"2181":1,"2182":1,"2184":1,"2185":1,"2186":3,"2188":1,"2189":5,"2191":2,"2192":1,"2193":1,"2206":2,"2207":2,"2217":1,"2221":1,"2247":1,"2248":1,"2250":1,"2259":2,"2260":4,"2271":1,"2272":2,"2273":1,"2274":2,"2275":7,"2276":10,"2277":5,"2278":12,"2286":1,"2288":1,"2289":1,"2290":1,"2293":1,"2300":1,"2301":1,"2302":1,"2309":5,"2312":1,"2316":1,"2317":1,"2318":4,"2319":1,"2322":1,"2327":2,"2328":1,"2330":1,"2331":3,"2375":3,"2379":1,"2390":4,"2397":4,"2416":2,"2418":5,"2453":1,"2454":12,"2461":1,"2556":1,"2557":1,"2561":2,"2650":4,"2652":1,"2685":5,"2700":3,"2702":1,"2705":5,"2709":4,"2718":1,"2721":1,"2728":3,"2751":2,"2752":1,"2756":13,"2764":1,"2768":4,"2786":2,"2794":3,"2890":2,"2891":1,"2892":3,"2910":2,"2912":2,"2913":4,"2920":2,"2921":2,"2922":2,"2923":1,"2924":1,"2925":2,"2926":1,"2927":4,"2928":1,"2929":7,"2931":3,"2938":1,"2945":1,"2948":1}}],["depicting",{"2":{"683":1}}],["depths",{"2":{"2756":1}}],["depth",{"2":{"614":1,"701":2}}],["depressed",{"2":{"1498":2}}],["deprecating",{"2":{"94":1}}],["deprecations",{"2":{"414":1,"2904":1}}],["deprecation",{"0":{"87":1,"88":1,"104":1,"127":1,"185":1,"264":1,"274":1,"282":1,"292":1,"301":1,"302":1,"303":1,"307":1,"313":1,"326":1,"330":1,"336":1,"2902":1,"2904":1},"1":{"88":1,"265":1,"275":1,"276":1,"283":1,"284":1,"293":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"314":1,"315":1,"316":1,"327":1,"331":1,"332":1,"337":1,"338":1,"2903":1,"2904":1},"2":{"168":1,"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"753":1,"2902":4,"2903":2}}],["deprecate",{"2":{"87":1,"94":1,"103":1,"126":1,"149":1,"168":1,"172":7,"175":7,"184":1,"191":1,"294":1,"308":2,"317":1,"328":1,"2707":1}}],["deprecated",{"0":{"17":1,"254":1,"316":1,"331":1,"332":1,"337":1},"2":{"3":1,"7":1,"15":1,"17":1,"28":1,"40":1,"48":1,"75":2,"114":2,"133":1,"134":1,"140":1,"149":1,"157":2,"166":1,"172":1,"175":3,"191":1,"194":1,"195":1,"199":2,"245":1,"249":1,"254":1,"266":1,"277":1,"294":3,"302":1,"303":2,"304":1,"316":1,"317":1,"332":1,"333":3,"338":1,"339":2,"470":1,"1592":1,"1835":1,"2181":11,"2184":2,"2520":1,"2544":10,"2889":1,"2904":1}}],["depracted",{"2":{"199":1}}],["depend",{"2":{"1272":1,"1410":1,"1464":1,"1713":1,"2522":1}}],["depends",{"2":{"716":1,"1410":1,"1838":1,"1936":1,"1974":1,"2331":1,"2344":1,"2345":1,"2346":1,"2417":1,"2705":1,"2913":1,"2931":1,"2932":1}}],["dependent",{"2":{"637":1,"723":1,"768":1,"1294":1,"1392":1,"1393":1,"1556":1,"1662":1,"1979":1,"1982":1,"1985":1,"2471":1,"2903":1}}],["dependencies",{"2":{"73":1,"158":1,"160":2,"234":1,"308":1,"317":1,"384":1,"386":1,"426":1,"1630":1,"2601":1,"2620":1}}],["dependency",{"2":{"14":1,"65":1,"390":1}}],["depending",{"2":{"15":1,"20":1,"23":1,"90":1,"220":1,"633":1,"656":1,"728":1,"746":1,"758":1,"804":1,"829":1,"830":1,"858":1,"862":1,"890":1,"892":1,"922":1,"927":1,"957":1,"961":1,"991":1,"995":1,"1025":1,"1029":1,"1059":1,"1063":1,"1093":1,"1097":1,"1127":1,"1131":1,"1161":1,"1165":1,"1217":1,"1218":1,"1294":1,"1299":1,"1303":1,"1311":1,"1556":1,"1557":1,"1617":1,"1670":2,"1680":1,"1682":1,"1837":1,"1954":1,"2085":1,"2265":1,"2317":1,"2422":1,"2429":1,"2454":1,"2499":1,"2517":1,"2657":1,"2679":1,"2765":1,"2767":1,"2772":2,"2777":1,"2781":1,"2884":1,"2901":1,"2941":1}}],["delkey",{"2":{"1381":5}}],["delegation",{"2":{"2279":1}}],["delegating",{"2":{"570":1}}],["delegates",{"2":{"2278":1}}],["delegated",{"2":{"2278":1}}],["delegate",{"2":{"2278":1}}],["deleting",{"0":{"482":1,"498":1},"2":{"519":1}}],["deleted",{"2":{"49":1,"446":1,"2399":1,"2404":1}}],["delete",{"0":{"1381":1},"2":{"8":1,"21":1,"24":1,"99":1,"152":1,"210":1,"222":1,"255":1,"266":1,"409":1,"482":1,"498":1,"687":1,"688":3,"1381":4,"1593":1,"1694":1,"1767":1,"1774":3,"1955":2,"2068":1,"2222":1,"2379":1,"2512":1,"2516":2,"2518":1,"2522":4,"2950":2}}],["delimited",{"2":{"2755":1}}],["delimiter",{"2":{"2755":1}}],["delivered",{"2":{"675":1,"681":1}}],["deliberately",{"2":{"499":1,"644":1}}],["delilah",{"2":{"143":2}}],["delikeeb",{"2":{"86":8}}],["delayed",{"2":{"1448":1,"1493":1,"1960":1,"2914":1}}],["delays",{"2":{"574":1,"656":1,"1448":1,"1934":1,"2418":1,"2685":1,"2686":1,"2687":1}}],["delay",{"0":{"1456":2,"1457":2,"1786":1,"2230":1,"2234":1,"2248":1},"1":{"2231":1,"2235":1},"2":{"74":3,"112":6,"114":4,"120":1,"149":2,"175":1,"191":5,"210":2,"236":1,"249":2,"266":2,"317":1,"328":1,"333":1,"561":4,"564":5,"566":2,"656":2,"657":1,"658":1,"720":1,"1441":1,"1444":3,"1448":4,"1455":2,"1456":1,"1486":2,"1493":1,"1662":1,"1667":3,"1786":6,"1787":1,"1935":5,"1936":2,"1939":4,"1954":1,"2003":2,"2009":1,"2014":1,"2046":1,"2086":3,"2222":1,"2228":1,"2230":1,"2232":1,"2234":2,"2247":2,"2248":2,"2327":1,"2573":1,"2685":3,"2726":3,"2776":2,"2854":5,"2858":1,"2872":1,"2873":2,"2882":1,"2914":2}}],["del",{"0":{"8":1},"2":{"8":1,"63":1,"120":1,"379":1,"498":2,"589":2,"1377":3,"1378":3,"1381":9,"1441":1,"1444":1,"1600":1,"1774":1,"2068":1,"2222":1,"2381":2,"2516":1,"2522":1,"2564":1}}],["deltas",{"2":{"1974":1,"2387":2,"2755":1}}],["delta",{"0":{"2778":1},"2":{"100":1,"210":1,"222":1,"1935":2,"1936":1,"1939":2,"1940":4,"1983":2,"2387":5,"2755":1,"2767":1,"2772":2,"2776":8,"2778":9}}],["delt",{"0":{"8":1},"2":{"8":1,"172":1,"175":1}}],["u8",{"2":{"2893":2}}],["u80",{"2":{"222":1}}],["u03a8",{"2":{"2852":2}}],["u2192",{"2":{"2800":2}}],["u2193",{"2":{"2800":2}}],["u2190",{"2":{"2800":2}}],["u2191",{"2":{"2800":2}}],["u32",{"2":{"2775":1}}],["udr1",{"2":{"2043":1}}],["udev",{"0":{"1316":1},"2":{"199":2,"426":1,"1315":2,"1316":3,"1332":1,"2417":1}}],["ubrr1l",{"2":{"2043":1}}],["ubrr1h",{"2":{"2043":1}}],["ubuntu",{"2":{"513":1,"2601":1,"2607":1,"2626":1,"2628":3,"2653":1,"2664":1}}],["ultra",{"2":{"1427":1}}],["ultimately",{"2":{"2751":1}}],["ultimate",{"2":{"516":1}}],["ukrainian",{"2":{"2887":2}}],["ukr",{"2":{"2330":1}}],["uk",{"2":{"766":1,"1593":1,"2474":1,"2887":3}}],["uz",{"2":{"509":1}}],["uzu42",{"2":{"191":2}}],["urls",{"2":{"333":1,"382":3}}],["url",{"2":{"308":2,"339":1,"382":3,"586":1,"668":1,"1630":2,"2637":1,"2639":1,"2728":1,"2795":1,"2852":2}}],["urbanvanilla",{"2":{"222":1}}],["ug",{"2":{"283":3,"589":16,"1667":10,"2181":11,"2192":1,"2544":11}}],["ugfx",{"0":{"43":1},"2":{"43":1,"114":1,"134":1}}],["u",{"2":{"266":1,"379":1,"444":2,"589":2,"1329":3,"2068":1,"2070":1,"2296":1,"2300":1,"2301":4,"2327":1,"2344":1,"2392":1,"2395":1,"2425":3,"2502":1,"2503":3,"2510":3,"2522":3,"2563":1,"2608":1,"2640":2,"2755":4}}],["uvwxyz",{"2":{"266":1,"308":1}}],["uefi",{"0":{"1376":1},"2":{"263":1}}],["umsel10",{"2":{"2043":1}}],["um",{"2":{"207":1,"2329":3,"2332":1,"2418":1,"2552":1}}],["um70",{"2":{"114":1}}],["u16",{"2":{"175":1}}],["u+ffff",{"2":{"2331":2}}],["u+10ffff",{"2":{"2329":1}}],["u+",{"2":{"2329":1}}],["u+7fff",{"2":{"2329":1}}],["u+exxx",{"2":{"175":1}}],["u+axxx",{"2":{"175":1}}],["utc",{"2":{"522":1,"523":1,"524":2}}],["utf",{"2":{"222":1}}],["ut472",{"2":{"159":2}}],["ut47",{"2":{"149":1,"328":1}}],["utilise",{"2":{"2728":1}}],["utilises",{"2":{"2707":1}}],["utilised",{"2":{"2457":1,"2902":2}}],["utilising",{"2":{"1196":1,"2707":1}}],["utilisation",{"2":{"575":1}}],["utilize",{"2":{"555":1,"2869":1}}],["utilized",{"2":{"555":1,"1205":1}}],["utilities",{"2":{"133":1,"134":1,"149":1,"426":1}}],["utility",{"2":{"39":1,"199":1,"266":1,"685":1,"1472":1,"2400":2,"2403":1,"2584":1}}],["utils",{"2":{"249":1}}],["util",{"2":{"114":1,"222":1,"236":2,"266":1,"285":2,"332":1,"337":1,"422":1,"509":1,"510":1,"511":1,"568":2,"1316":1,"1948":1,"2273":2,"2287":1,"2384":7,"2399":3,"2400":6,"2401":3,"2402":3,"2404":3,"2405":4,"2417":2,"2505":1,"2508":1,"2726":1}}],["uaccess",{"2":{"1332":3}}],["ua62",{"2":{"143":2}}],["uart1",{"2":{"2699":2}}],["uart0",{"2":{"1405":2,"2699":2}}],["uart",{"0":{"1266":1,"1271":1,"1273":1,"1275":1,"1277":1,"1279":1,"1281":1,"2699":1},"1":{"1267":1,"1268":1,"1269":1,"1270":1,"1271":1,"1272":2,"1273":1,"1274":2,"1275":1,"1276":2,"1277":1,"1278":2,"1279":1,"1280":2,"1281":1,"1282":2},"2":{"40":1,"73":1,"75":1,"133":2,"134":2,"149":4,"175":1,"199":1,"234":2,"236":2,"249":1,"294":1,"1192":1,"1266":1,"1267":3,"1268":1,"1269":12,"1271":1,"1281":1,"1395":2,"2374":2,"2375":1,"2431":1,"2692":1,"2695":1,"2699":1,"2702":4,"2704":2}}],["ucpol1",{"2":{"2043":1}}],["ucsr1b",{"2":{"2043":3}}],["ucsr1a",{"2":{"2043":3}}],["ucsr1c",{"2":{"2043":2}}],["ucsz10",{"2":{"2043":1}}],["ucis",{"0":{"2359":1,"2360":1,"2362":1,"2364":1,"2367":1,"2369":1,"2370":1,"2371":1},"1":{"2361":1,"2363":1,"2365":1,"2366":1,"2368":1,"2372":1},"2":{"199":1,"210":1,"2330":12,"2360":1,"2361":1,"2371":1,"2372":1,"2418":1,"2941":1}}],["uc",{"2":{"134":1,"172":1,"175":1,"2329":3,"2331":2,"2332":9,"2418":1,"2552":9}}],["ui",{"2":{"120":1,"175":1,"580":1}}],["uint24",{"2":{"2767":1,"2768":1,"2769":2,"2773":1,"2774":1}}],["uintptr",{"2":{"1779":2}}],["uint64",{"2":{"1420":1}}],["uint",{"2":{"134":1}}],["uint32",{"0":{"1271":1,"2033":1,"2035":1,"2238":1,"2347":1,"2354":1},"1":{"1272":1,"2034":1,"2036":1,"2239":1,"2348":1,"2355":1,"2356":1},"2":{"105":4,"114":1,"191":1,"647":1,"656":1,"1033":5,"1272":1,"1417":1,"1418":4,"1419":12,"1420":1,"1657":2,"2036":1,"2239":1,"2277":1,"2329":1,"2330":1,"2348":1,"2757":7,"2767":2,"2774":2,"2775":2}}],["uint8",{"0":{"707":3,"709":3,"712":1,"735":3,"737":3,"739":1,"773":2,"776":2,"779":2,"782":3,"785":3,"788":2,"791":3,"794":2,"797":1,"810":2,"812":3,"814":3,"816":1,"818":1,"820":1,"822":1,"835":1,"837":3,"839":3,"841":3,"843":1,"845":1,"847":1,"849":1,"851":1,"853":1,"867":1,"869":3,"871":3,"873":3,"875":1,"877":1,"879":4,"881":2,"883":1,"885":1,"897":1,"899":3,"901":2,"903":3,"905":3,"907":1,"909":1,"911":1,"913":1,"915":1,"917":1,"932":1,"934":3,"936":2,"938":3,"940":3,"942":1,"944":1,"946":1,"948":1,"950":1,"952":1,"966":1,"968":3,"970":2,"972":3,"974":3,"976":1,"978":1,"980":1,"982":1,"984":1,"986":1,"1000":1,"1002":3,"1004":2,"1006":3,"1008":3,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1020":1,"1034":1,"1036":3,"1038":2,"1040":3,"1042":3,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1054":1,"1068":1,"1070":3,"1072":2,"1074":3,"1076":3,"1078":1,"1080":1,"1082":4,"1084":2,"1086":1,"1088":1,"1102":1,"1104":3,"1106":2,"1108":3,"1110":3,"1112":1,"1114":1,"1116":4,"1118":2,"1120":1,"1122":1,"1136":1,"1138":3,"1140":2,"1142":3,"1144":3,"1146":1,"1148":1,"1150":4,"1152":2,"1154":1,"1156":1,"1170":1,"1172":3,"1174":2,"1176":3,"1178":3,"1180":1,"1182":1,"1184":4,"1186":2,"1188":1,"1190":1,"1223":1,"1225":3,"1227":2,"1229":3,"1231":3,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1243":1,"1251":1,"1254":1,"1259":1,"1262":1,"1273":1,"1275":1,"1277":1,"1306":3,"1308":3,"1566":1,"1568":1,"1582":1,"1585":1,"1587":1,"1711":2,"1719":2,"1721":2,"1725":1,"1727":1,"1730":1,"1732":1,"1734":1,"1736":1,"1751":1,"1753":1,"1755":1,"1758":1,"1865":2,"1867":1,"1869":1,"1871":1,"1877":1,"1883":1,"1889":1,"1891":1,"1893":1,"1903":1,"1912":2,"1915":2,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2061":2,"2063":2,"2107":4,"2109":3,"2111":1,"2113":1,"2119":1,"2125":1,"2131":1,"2137":1,"2143":1,"2145":1,"2147":1,"2157":1,"2159":3,"2161":3,"2172":2,"2175":2,"2230":1,"2234":1,"2242":1,"2244":1,"2334":1,"2336":1,"2340":1,"2342":1,"2351":1,"2354":1,"2357":1,"2362":1},"1":{"708":3,"710":3,"713":1,"736":3,"738":3,"740":1,"774":2,"775":2,"777":2,"778":2,"780":2,"781":2,"783":3,"784":3,"786":3,"787":3,"789":2,"790":2,"792":3,"793":3,"795":2,"796":2,"798":1,"799":1,"811":2,"813":3,"815":3,"817":1,"819":1,"821":1,"823":1,"836":1,"838":3,"840":3,"842":3,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"868":1,"870":3,"872":3,"874":3,"876":1,"878":1,"880":4,"882":2,"884":1,"886":1,"898":1,"900":3,"902":2,"904":3,"906":3,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"933":1,"935":3,"937":2,"939":3,"941":3,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"967":1,"969":3,"971":2,"973":3,"975":3,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"1001":1,"1003":3,"1005":2,"1007":3,"1009":3,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":3,"1039":2,"1041":3,"1043":3,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1069":1,"1071":3,"1073":2,"1075":3,"1077":3,"1079":1,"1081":1,"1083":4,"1085":2,"1087":1,"1089":1,"1103":1,"1105":3,"1107":2,"1109":3,"1111":3,"1113":1,"1115":1,"1117":4,"1119":2,"1121":1,"1123":1,"1137":1,"1139":3,"1141":2,"1143":3,"1145":3,"1147":1,"1149":1,"1151":4,"1153":2,"1155":1,"1157":1,"1171":1,"1173":3,"1175":2,"1177":3,"1179":3,"1181":1,"1183":1,"1185":4,"1187":2,"1189":1,"1191":1,"1224":1,"1226":3,"1228":2,"1230":3,"1232":3,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1252":1,"1253":1,"1255":1,"1256":1,"1260":1,"1261":1,"1263":1,"1264":1,"1274":1,"1276":1,"1278":1,"1307":3,"1309":3,"1567":1,"1569":1,"1583":1,"1712":2,"1720":2,"1722":2,"1726":1,"1728":1,"1729":1,"1731":1,"1733":1,"1735":1,"1737":1,"1752":1,"1754":1,"1756":1,"1757":1,"1759":1,"1866":2,"1868":1,"1870":1,"1872":1,"1878":1,"1884":1,"1890":1,"1892":1,"1894":1,"1904":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2031":1,"2062":2,"2064":2,"2108":4,"2110":3,"2112":1,"2114":1,"2120":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2158":1,"2162":3,"2231":1,"2235":1,"2243":1,"2245":1,"2335":1,"2337":1,"2341":1,"2343":1,"2352":1,"2353":1,"2355":1,"2356":1,"2358":1,"2363":1},"2":{"36":1,"90":4,"105":4,"222":1,"323":1,"625":2,"632":2,"639":3,"647":1,"708":3,"710":3,"713":1,"732":4,"736":3,"738":3,"740":1,"745":1,"774":2,"777":2,"780":2,"783":3,"786":3,"789":2,"792":3,"795":2,"798":1,"808":4,"811":2,"813":3,"815":3,"817":1,"819":1,"821":1,"823":1,"834":5,"836":1,"838":3,"840":3,"842":3,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"866":5,"868":1,"870":3,"872":3,"874":3,"876":1,"878":1,"880":4,"882":2,"884":1,"886":1,"896":5,"898":1,"900":3,"902":2,"904":3,"906":3,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"931":5,"933":1,"935":3,"937":2,"939":3,"941":3,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"965":5,"967":1,"969":3,"971":2,"973":3,"975":3,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"999":5,"1001":1,"1003":3,"1005":2,"1007":3,"1009":3,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":3,"1039":2,"1041":3,"1043":3,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1067":5,"1069":1,"1071":3,"1073":2,"1075":3,"1077":3,"1079":1,"1081":1,"1083":4,"1085":2,"1087":1,"1089":1,"1101":5,"1103":1,"1105":3,"1107":2,"1109":3,"1111":3,"1113":1,"1115":1,"1117":4,"1119":2,"1121":1,"1123":1,"1135":5,"1137":1,"1139":3,"1141":2,"1143":3,"1145":3,"1147":1,"1149":1,"1151":4,"1153":2,"1155":1,"1157":1,"1169":5,"1171":2,"1173":3,"1175":2,"1177":3,"1179":3,"1181":1,"1183":1,"1185":4,"1187":2,"1189":1,"1191":1,"1222":5,"1224":1,"1226":3,"1228":2,"1230":3,"1232":3,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1252":1,"1255":1,"1260":1,"1263":1,"1274":1,"1278":1,"1280":1,"1307":3,"1309":3,"1381":1,"1417":1,"1431":2,"1447":1,"1472":2,"1487":3,"1492":2,"1527":1,"1532":2,"1533":2,"1534":1,"1535":3,"1551":1,"1567":1,"1586":1,"1588":1,"1612":1,"1617":2,"1618":2,"1620":2,"1657":2,"1668":2,"1702":1,"1712":1,"1720":2,"1722":2,"1726":1,"1731":1,"1733":1,"1735":1,"1737":1,"1747":1,"1752":1,"1754":1,"1756":1,"1759":1,"1779":3,"1781":3,"1835":2,"1839":1,"1843":5,"1850":3,"1855":2,"1866":2,"1868":1,"1870":1,"1872":1,"1890":1,"1892":1,"1913":2,"1916":2,"1947":2,"1953":1,"1954":15,"1988":1,"1990":1,"2003":1,"2008":3,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2057":2,"2059":3,"2062":2,"2064":2,"2069":2,"2070":1,"2071":1,"2073":1,"2074":1,"2075":1,"2077":1,"2079":3,"2088":3,"2094":2,"2095":12,"2096":5,"2108":4,"2110":3,"2112":1,"2114":1,"2144":1,"2146":1,"2160":3,"2162":3,"2173":2,"2176":2,"2182":1,"2187":7,"2231":1,"2235":1,"2243":1,"2245":1,"2254":11,"2277":6,"2286":2,"2290":6,"2300":2,"2305":1,"2337":1,"2341":1,"2343":1,"2355":1,"2358":1,"2372":1,"2381":2,"2562":1,"2652":6,"2756":4,"2757":34,"2767":6,"2773":2,"2774":1,"2776":4,"2777":7,"2779":1,"2911":1}}],["uint16",{"0":{"707":1,"773":2,"776":2,"779":2,"782":3,"785":2,"788":3,"791":2,"794":3,"797":1,"1251":1,"1259":1,"1262":1,"1277":1,"1279":1,"1809":1,"1815":1,"1820":1,"1823":2,"1826":3,"1829":4,"1832":5,"2240":1,"2351":1,"2364":1},"1":{"708":1,"774":2,"775":2,"777":2,"778":2,"780":2,"781":2,"783":3,"784":3,"786":2,"787":2,"789":3,"790":3,"792":2,"793":2,"795":3,"796":3,"798":1,"799":1,"1252":1,"1253":1,"1260":1,"1261":1,"1263":1,"1264":1,"1278":1,"1280":1,"1810":1,"1811":1,"1816":1,"1817":1,"1821":1,"1822":1,"1824":2,"1825":2,"1827":3,"1828":3,"1830":4,"1831":4,"1833":5,"1834":5,"2241":1,"2352":1,"2353":1,"2365":1,"2366":1},"2":{"12":6,"36":2,"194":2,"195":2,"247":1,"307":2,"324":1,"325":1,"589":1,"593":2,"631":1,"632":3,"647":1,"708":1,"774":2,"777":2,"780":2,"783":3,"786":2,"789":3,"792":2,"795":3,"798":1,"1252":1,"1260":1,"1263":1,"1278":1,"1280":1,"1329":1,"1380":1,"1381":1,"1417":2,"1420":1,"1431":1,"1446":4,"1447":2,"1462":2,"1471":1,"1472":2,"1480":1,"1491":1,"1503":1,"1510":2,"1517":3,"1532":1,"1533":1,"1600":2,"1602":2,"1603":2,"1604":2,"1605":7,"1612":11,"1613":4,"1617":5,"1618":6,"1656":1,"1667":1,"1689":1,"1743":3,"1749":3,"1781":2,"1795":1,"1810":1,"1816":1,"1821":1,"1824":2,"1827":3,"1830":4,"1833":5,"1924":2,"1947":1,"1952":1,"1954":7,"1962":1,"1984":2,"1986":1,"1988":1,"1989":1,"1993":1,"1994":1,"2005":2,"2006":1,"2008":3,"2013":1,"2015":1,"2069":2,"2070":1,"2071":3,"2073":1,"2074":1,"2075":1,"2076":1,"2077":2,"2079":4,"2191":2,"2225":1,"2241":1,"2286":1,"2289":1,"2290":4,"2300":2,"2312":1,"2316":4,"2319":2,"2352":1,"2365":1,"2381":4,"2456":1,"2557":1,"2562":1,"2575":1,"2576":1,"2577":1,"2585":1,"2756":45,"2757":39,"2767":1,"2774":3,"2776":1,"2778":4,"2783":1,"2791":1,"2910":1,"2911":2,"2912":2,"2920":1,"2921":1,"2922":1,"2924":1,"2925":4,"2928":2,"2929":1,"2931":1,"2939":1,"2941":38}}],["uf2families",{"2":{"285":1}}],["uf2boot",{"0":{"2408":1},"1":{"2409":1},"2":{"236":1,"2408":5}}],["uf2conv",{"2":{"210":1,"222":1,"328":1}}],["uf2",{"0":{"2410":1,"2683":1},"2":{"93":1,"114":1,"160":1,"191":2,"199":3,"222":1,"294":1,"2273":2,"2406":1,"2407":2,"2408":1,"2409":2,"2410":1,"2607":1,"2700":1,"2854":1}}],["unknowingly",{"2":{"2567":1}}],["unknown",{"0":{"1318":1},"2":{"111":1,"381":1,"2317":2,"2318":2,"2319":2,"2455":1,"2508":1}}],["unblink",{"2":{"2191":4}}],["unwanted",{"2":{"1786":1,"2212":1}}],["unnecessarily",{"2":{"1248":1,"1431":1}}],["unnecessary",{"2":{"134":1,"236":1,"266":1,"277":1,"303":1,"333":1,"338":1,"609":1,"2561":1}}],["unquoted",{"2":{"671":1}}],["unusable",{"0":{"2677":1},"2":{"1320":1}}],["unusual",{"2":{"525":1,"683":1,"1589":1,"2938":1}}],["unuseful",{"2":{"266":1}}],["unused",{"0":{"1660":1},"2":{"40":1,"75":1,"149":1,"175":1,"191":1,"199":8,"333":2,"599":1,"1294":1,"1319":1,"1396":1,"1408":1,"1655":1,"1909":1,"1914":1,"2169":1,"2174":1,"2208":2,"2272":3,"2278":1,"2418":1,"2728":1,"2872":1}}],["unfiltered",{"2":{"2379":2}}],["unfamiliar",{"2":{"519":1}}],["unfortunately",{"2":{"188":1,"279":1,"596":1,"1290":1,"1499":1,"1528":1,"2554":1,"2675":1,"2886":1,"2931":1,"2942":1}}],["uncle",{"2":{"2942":1}}],["unclear",{"2":{"512":1,"517":1,"613":1}}],["unchanged",{"2":{"2911":1}}],["uncapitalizing",{"2":{"1597":1}}],["unconfigured",{"2":{"2872":1}}],["unconditionally",{"2":{"39":1,"114":1}}],["uncomment",{"2":{"1612":1}}],["uncommon",{"2":{"44":1,"1528":1}}],["uncombined",{"2":{"575":1}}],["uncovered",{"2":{"175":1}}],["unavoidable",{"2":{"2728":1}}],["unavailable",{"2":{"695":1,"761":2,"1408":1,"1419":1,"1481":1,"2043":1,"2569":1,"2722":1}}],["unacceptable",{"2":{"2568":1,"2569":2}}],["unaffected",{"2":{"1593":1}}],["unannotated",{"2":{"539":1}}],["unambiguous",{"2":{"526":1}}],["unable",{"2":{"399":1,"414":1,"2471":1,"2474":1,"2568":2,"2888":1}}],["unauthorized",{"2":{"312":1}}],["unassigned",{"2":{"236":1,"505":1}}],["unprivileged",{"2":{"2384":1}}],["unpr",{"2":{"2377":1,"2528":1}}],["unpressed",{"2":{"1409":1}}],["unpredictable",{"2":{"749":1}}],["unplugged",{"2":{"1661":1,"2813":1}}],["unplugging",{"2":{"1417":1,"1424":1,"1490":1,"2265":1}}],["unplug",{"2":{"686":1,"1348":1,"1623":1,"1661":1,"2508":1,"2612":3,"2786":2}}],["unpair",{"2":{"2377":1,"2528":1}}],["unpacking",{"2":{"526":1}}],["unparsed",{"2":{"249":1}}],["unpicking",{"2":{"303":1,"338":1}}],["unxmaal",{"2":{"236":1}}],["unshifted",{"2":{"2553":1}}],["unswap",{"2":{"2520":20,"2538":20}}],["unsplit",{"2":{"1983":1}}],["unspecified",{"2":{"1638":1}}],["unscrewing",{"2":{"1365":1}}],["unsuccessful",{"2":{"797":1}}],["unsupported",{"2":{"698":1,"699":1,"1954":1,"2261":1}}],["unsure",{"2":{"686":1,"688":1,"1957":1,"1958":1,"2431":1,"2434":1,"2583":1,"2629":1}}],["unsigned",{"2":{"210":1,"333":1,"1368":1,"1952":1,"2238":1,"2240":1,"2289":1}}],["unsent",{"2":{"2040":1}}],["unsettled",{"0":{"320":1},"2":{"328":1}}],["unset",{"2":{"160":1,"754":2,"2754":2}}],["unselect",{"2":{"114":3,"561":1}}],["unmergeable",{"2":{"2728":1}}],["unmerged",{"2":{"209":1,"403":1}}],["unmod",{"2":{"1937":4}}],["unmodified",{"2":{"1788":1,"1937":7,"2929":1}}],["unmaintained",{"2":{"114":1}}],["unrecognized",{"2":{"2949":1}}],["unrecoverable",{"2":{"2503":1}}],["unresponsive",{"2":{"1661":1,"1935":1,"1936":1}}],["unreliable",{"2":{"1296":1}}],["unrelated",{"2":{"175":1,"341":1,"344":3,"403":1}}],["unregistered",{"2":{"656":1,"1462":1,"1617":1,"1781":1}}],["unregister",{"0":{"1454":1,"1457":1,"1753":1,"2027":1},"1":{"1754":1,"2028":1},"2":{"564":1,"1353":1,"1378":1,"1380":1,"1381":1,"1447":1,"1455":2,"1456":1,"1462":2,"1517":3,"1617":2,"1618":1,"1779":1,"1781":1,"1782":1,"1788":1,"2316":1,"2317":5,"2318":3,"2929":1}}],["unregistering",{"2":{"339":1}}],["unreachable",{"2":{"333":1}}],["unreferenced",{"2":{"133":1,"134":1}}],["unloaded",{"2":{"2757":2}}],["unlocking",{"2":{"2213":1,"2218":1}}],["unlocks",{"2":{"1791":1,"1793":1,"2534":1}}],["unlock",{"0":{"2213":1},"2":{"1789":2,"1792":1,"2213":1,"2216":6,"2217":3,"2218":6,"2508":2,"2879":4}}],["unlocked",{"2":{"402":1,"411":1,"1794":1,"2214":1,"2217":1,"2218":3,"2879":1}}],["unlk",{"2":{"2216":1}}],["unlike",{"2":{"1356":1,"1639":1,"2598":1,"2869":1,"2933":1}}],["unlikely",{"2":{"154":1,"561":1,"1356":1,"2711":1}}],["unlimited",{"2":{"455":1,"469":1}}],["unless",{"2":{"175":1,"494":1,"516":1,"528":1,"536":1,"625":2,"1353":1,"1356":1,"1365":1,"1378":1,"1428":2,"1498":1,"1544":1,"1556":1,"1836":1,"2012":1,"2085":1,"2417":1,"2434":1,"2473":1,"2535":1,"2702":1,"2707":1,"2726":1,"2728":4,"2757":1}}],["unexplainable",{"2":{"2417":1}}],["unexpectedly",{"2":{"1368":1}}],["unexpected",{"2":{"87":1,"399":1,"1593":1,"1777":1}}],["unecessary",{"2":{"160":1}}],["uno",{"0":{"2486":1},"1":{"2487":1},"2":{"159":2,"160":2,"2486":2,"2487":3}}],["un",{"2":{"149":1,"175":1,"266":1,"284":1,"561":1,"1455":1,"2070":1,"2377":1,"2528":1}}],["ungodly",{"2":{"114":2}}],["unterminated",{"2":{"134":1}}],["untested",{"2":{"39":1,"542":1,"1697":1,"1943":1,"1949":1,"2288":1,"2418":2}}],["until",{"2":{"114":1,"160":1,"199":1,"279":1,"320":1,"581":1,"647":1,"657":1,"687":1,"768":1,"1351":1,"1392":1,"1393":1,"1409":1,"1422":3,"1454":1,"1491":1,"1492":1,"1503":1,"1525":1,"1594":1,"1598":1,"1762":1,"1764":1,"1786":3,"1852":1,"1934":3,"1935":2,"1939":1,"1954":1,"1959":2,"1980":1,"2000":1,"2091":1,"2304":1,"2391":1,"2393":1,"2398":1,"2400":1,"2405":1,"2432":1,"2533":1,"2535":1,"2551":1,"2569":1,"2582":1,"2634":1,"2650":2,"2726":1,"2728":2,"2757":1,"2834":1,"2912":1,"2913":1,"2914":1,"2922":2,"2931":1}}],["universal",{"2":{"2848":1,"2931":1}}],["union",{"2":{"1417":2}}],["uninsulated",{"2":{"2425":1}}],["uninstallation",{"0":{"688":1},"2":{"688":1}}],["uninstall",{"2":{"687":1,"688":4,"689":1}}],["uninteresting",{"2":{"339":1}}],["unintentional",{"2":{"175":1,"2425":1}}],["unilaterally",{"2":{"312":1}}],["unix",{"2":{"249":1,"277":1,"458":1,"2411":1,"2619":1,"2620":1,"2644":1,"2667":2}}],["unix60",{"2":{"67":1,"72":1,"222":1}}],["uniform",{"2":{"210":1}}],["unify",{"0":{"12":1},"2":{"113":1,"114":2,"149":1,"210":1,"294":3}}],["uni",{"2":{"197":2,"199":2}}],["uniquely",{"2":{"1422":1,"1999":1}}],["unique",{"2":{"160":1,"199":1,"629":2,"665":1,"1319":2,"2429":1,"2734":1}}],["unikeyboard",{"2":{"143":3,"149":2}}],["unicorne",{"2":{"134":1,"249":1}}],["unicodemap",{"0":{"207":1,"2351":1,"2354":1,"2357":1},"1":{"2352":1,"2353":1,"2355":1,"2356":1,"2358":1},"2":{"207":1,"210":2,"2418":1,"2941":1}}],["unicode",{"0":{"170":1,"2324":1,"2334":1,"2336":1,"2338":1,"2339":1,"2340":1,"2342":1,"2344":1,"2345":1,"2346":1,"2347":1,"2349":1,"2475":1,"2552":1,"2769":1,"2846":1},"1":{"2325":1,"2326":1,"2327":1,"2328":1,"2329":1,"2330":1,"2331":1,"2332":1,"2333":1,"2334":1,"2335":2,"2336":1,"2337":2,"2338":1,"2339":1,"2340":1,"2341":2,"2342":1,"2343":2,"2344":1,"2345":1,"2346":1,"2347":1,"2348":2,"2349":1,"2350":2,"2351":1,"2352":1,"2353":1,"2354":1,"2355":1,"2356":1,"2357":1,"2358":1,"2359":1,"2360":1,"2361":1,"2362":1,"2363":1,"2364":1,"2365":1,"2366":1,"2367":1,"2368":1,"2369":1,"2370":1,"2371":1,"2372":1},"2":{"70":1,"94":1,"111":1,"134":1,"149":2,"160":1,"170":3,"172":3,"175":6,"199":2,"210":2,"222":1,"339":2,"469":1,"492":1,"574":2,"592":1,"1355":1,"1527":1,"2219":2,"2324":1,"2325":2,"2326":1,"2327":12,"2328":5,"2329":6,"2330":6,"2331":21,"2332":12,"2334":1,"2335":1,"2336":1,"2338":1,"2339":1,"2344":4,"2345":2,"2346":2,"2347":1,"2349":1,"2351":1,"2352":1,"2353":1,"2354":1,"2355":1,"2356":1,"2357":1,"2358":1,"2418":5,"2474":1,"2475":2,"2552":13,"2755":18,"2765":2,"2767":3,"2769":6,"2770":2,"2846":3,"2852":2,"2886":1,"2908":1,"2941":2,"2949":1}}],["unity",{"2":{"2742":1}}],["units",{"2":{"565":3,"609":1,"714":1,"1410":2,"1792":1,"1992":1,"2003":3,"2776":1,"2795":2,"2869":4}}],["unit|integration>",{"2":{"505":1}}],["unit",{"0":{"544":1,"2847":1,"2942":1},"1":{"2943":1,"2944":1,"2945":1,"2946":1,"2947":1,"2948":1},"2":{"114":1,"134":1,"175":1,"198":1,"199":2,"249":1,"308":1,"469":1,"505":2,"542":1,"544":1,"613":1,"718":1,"768":2,"1330":1,"1410":1,"1480":1,"1662":1,"2418":1,"2729":3,"2830":1,"2847":2,"2942":2,"2943":1,"2945":2,"2948":1}}],["unite",{"2":{"114":1}}],["undone",{"2":{"2640":1}}],["undo",{"2":{"1622":1,"1992":1,"2516":2,"2522":2,"2634":1}}],["undocumented",{"2":{"8":1,"541":1}}],["unds",{"2":{"191":1,"1593":1,"1600":1,"2546":1,"2555":1}}],["undecided",{"2":{"2923":1}}],["undesired",{"2":{"1788":1,"2929":1}}],["undesirable",{"2":{"1787":1}}],["undef",{"2":{"35":1,"354":3,"559":1,"717":5,"718":3,"721":1,"768":1,"1203":1,"1204":1,"1248":1,"1269":1,"1299":1,"1303":1,"1396":1,"1405":1,"1556":1,"1557":1,"2186":4,"2416":2,"2890":2,"2894":55}}],["undefined",{"2":{"339":1,"569":1,"1413":1,"1936":1,"1939":1,"1940":1,"1945":1,"1949":1,"1951":1,"2284":1,"2379":1,"2702":1}}],["undefine",{"2":{"35":1,"559":1,"1396":1}}],["underneath",{"2":{"1541":1}}],["undertake",{"2":{"607":1}}],["underlight",{"0":{"2845":1},"2":{"574":1}}],["underlying",{"2":{"234":1,"320":1,"437":1,"475":1,"489":1,"752":1,"754":2,"755":1,"756":2,"1612":1,"1845":1,"2081":1,"2684":1,"2864":1,"2931":1}}],["undergoing",{"2":{"214":1}}],["undergoes",{"2":{"214":1}}],["underglowx",{"2":{"2455":1}}],["underglow",{"2":{"22":1,"39":1,"266":1,"277":3,"283":1,"328":1,"633":1,"641":1,"1417":2,"1430":1,"1541":1,"2083":2,"2091":1,"2178":1,"2181":11,"2188":1,"2208":1,"2435":1,"2455":3,"2544":11,"2789":1,"2894":1}}],["underside",{"2":{"686":1,"2612":1,"2845":1}}],["understood",{"2":{"538":1}}],["understands",{"0":{"2794":1},"2":{"1283":1,"2178":1,"2294":1,"2794":1}}],["understandable",{"2":{"609":1}}],["understandability",{"2":{"516":1,"538":2}}],["understanding",{"0":{"2934":1},"1":{"2935":1,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1,"2941":1},"2":{"249":1,"365":1,"417":1,"533":1,"536":1,"538":1,"613":2,"626":1,"1427":1,"1783":1,"2310":1,"2642":1,"2794":2,"2905":1,"2908":1,"2934":1}}],["understand",{"2":{"2":1,"368":1,"491":1,"516":1,"528":1,"530":1,"626":1,"644":1,"665":1,"674":1,"683":1,"1415":1,"1529":1,"1784":1,"1785":1,"2467":1,"2794":2,"2934":1}}],["underscores",{"2":{"544":1,"2561":1,"2794":1}}],["underscore",{"2":{"520":1,"1528":1,"2449":2,"2546":1,"2555":1}}],["underscore33",{"2":{"143":4}}],["under",{"2":{"22":1,"55":13,"120":1,"134":1,"149":1,"210":1,"215":1,"222":1,"249":1,"265":1,"268":1,"339":1,"393":1,"397":1,"403":1,"411":1,"429":1,"495":1,"607":1,"665":1,"670":1,"754":1,"757":1,"1320":1,"1351":1,"1441":1,"1467":1,"1493":1,"1628":1,"1850":1,"2011":2,"2057":1,"2088":1,"2275":1,"2317":1,"2331":3,"2433":2,"2465":1,"2502":1,"2586":1,"2609":1,"2610":1,"2674":3,"2704":1,"2729":1,"2732":1,"2736":3,"2756":1,"2757":1,"2835":1,"2851":1,"2902":2,"2927":1}}],["upgrading",{"2":{"2728":1}}],["upgrades",{"2":{"43":1,"114":1}}],["upgraded",{"2":{"43":1}}],["upgrade",{"0":{"14":1,"419":1,"423":1},"1":{"420":1,"421":1,"422":1,"423":1},"2":{"43":3,"65":2,"158":3,"294":1,"2706":1,"2807":1}}],["uprint",{"2":{"2418":4}}],["uprintf",{"2":{"339":1,"1327":1,"1329":1}}],["uppr",{"2":{"2321":1}}],["upper",{"0":{"2330":1},"2":{"175":1,"683":1,"719":1,"766":1,"1522":2,"1681":1,"1968":1,"1975":2,"1977":1,"2301":3,"2320":2,"2321":3,"2322":2,"2323":6,"2330":2,"2387":1,"2563":1}}],["uppercase",{"2":{"175":1,"1406":1,"2330":3,"2726":2}}],["updir",{"2":{"2071":3}}],["updater",{"2":{"422":1,"2403":3}}],["updated",{"0":{"34":1,"59":1,"86":1,"102":1,"122":1,"143":1,"159":1,"165":1,"183":1,"197":1,"205":1,"218":1,"226":1,"241":1,"253":1,"270":1,"281":1,"291":1,"300":1,"311":1,"322":1},"1":{"35":1,"60":1},"2":{"43":1,"47":1,"69":1,"83":1,"86":2,"108":1,"114":2,"126":1,"134":1,"149":1,"160":1,"166":2,"195":1,"208":1,"230":1,"241":1,"244":1,"253":1,"262":1,"270":1,"281":1,"283":1,"383":2,"411":1,"419":1,"646":2,"1835":1,"2638":1,"2639":1,"2640":2,"2728":1,"2730":3}}],["updates",{"0":{"174":1,"248":1,"255":1,"256":1,"306":1,"315":1},"1":{"257":1,"258":1,"259":1,"260":1},"2":{"5":1,"12":1,"20":1,"23":1,"45":2,"64":1,"114":2,"134":2,"149":2,"160":2,"174":1,"175":2,"191":3,"199":1,"210":1,"222":3,"236":3,"249":5,"266":3,"277":1,"285":2,"294":2,"308":2,"328":1,"339":2,"405":2,"406":2,"407":2,"408":1,"411":2,"414":1,"420":1,"511":1,"717":1,"718":1,"1348":1,"2015":1,"2595":1,"2639":1,"2667":1,"2728":1}}],["update",{"0":{"4":1,"6":1,"35":1,"43":1,"45":1,"56":1,"69":1,"77":1,"307":1,"739":1,"824":1,"825":1,"851":1,"853":1,"883":1,"885":1,"915":1,"917":1,"950":1,"952":1,"984":1,"986":1,"1018":1,"1020":1,"1052":1,"1054":1,"1086":1,"1088":1,"1120":1,"1122":1,"1154":1,"1156":1,"1188":1,"1190":1,"1241":1,"1243":1,"1348":1,"1837":1,"1838":1,"1839":1,"1841":1,"2638":1,"2782":1,"2784":1},"1":{"740":1,"852":1,"854":1,"884":1,"886":1,"916":1,"918":1,"951":1,"953":1,"985":1,"987":1,"1019":1,"1021":1,"1053":1,"1055":1,"1087":1,"1089":1,"1121":1,"1123":1,"1155":1,"1157":1,"1189":1,"1191":1,"1242":1,"1244":1,"1838":1,"1839":1,"2639":1,"2640":1,"2641":1,"2783":1,"2785":1},"2":{"11":1,"14":1,"21":1,"22":1,"36":1,"39":1,"43":3,"63":1,"65":1,"75":1,"76":1,"89":1,"90":8,"93":3,"95":1,"105":12,"114":9,"131":2,"133":1,"134":8,"149":5,"158":1,"160":3,"175":17,"191":15,"194":1,"199":5,"206":1,"210":8,"222":8,"230":1,"236":11,"240":2,"249":12,"255":1,"256":1,"266":9,"277":8,"285":7,"294":9,"307":4,"308":4,"317":4,"323":1,"328":5,"333":2,"339":4,"411":1,"412":1,"422":3,"423":2,"612":1,"647":1,"652":1,"653":1,"707":1,"716":2,"735":2,"812":2,"816":2,"820":2,"822":2,"839":2,"843":2,"847":2,"849":2,"871":2,"875":2,"879":2,"881":2,"903":2,"907":2,"911":2,"913":2,"938":2,"942":2,"946":2,"948":2,"972":2,"976":2,"980":2,"982":2,"1006":2,"1010":2,"1014":2,"1016":2,"1040":2,"1044":2,"1048":2,"1050":2,"1074":2,"1078":2,"1082":2,"1084":2,"1108":2,"1112":2,"1116":2,"1118":2,"1142":2,"1146":2,"1150":2,"1152":2,"1176":2,"1180":2,"1184":2,"1186":2,"1229":2,"1233":2,"1237":2,"1239":2,"1306":1,"1316":1,"1381":1,"1416":2,"1417":4,"1418":2,"1419":6,"1420":1,"1428":3,"1470":1,"1522":1,"1622":1,"1628":1,"1657":6,"1668":3,"1742":1,"1835":2,"1837":4,"1838":2,"1839":1,"1840":1,"1841":1,"1852":1,"1949":3,"1974":1,"1994":1,"2003":1,"2091":1,"2181":1,"2190":1,"2288":1,"2456":1,"2464":1,"2506":1,"2632":1,"2633":1,"2635":2,"2637":2,"2639":1,"2714":1,"2728":3,"2730":1,"2747":1,"2764":1,"2782":1,"2783":4,"2784":1,"2785":3,"2786":1,"2871":1,"2878":1,"2912":1,"2941":1}}],["updating",{"0":{"411":1,"422":1,"2639":1},"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"107":1,"194":1,"199":1,"249":1,"294":1,"399":1,"414":1,"416":1,"420":1,"421":1,"1949":1,"2189":1,"2288":1,"2418":1,"2726":1}}],["upe1",{"2":{"2043":1}}],["upm10",{"2":{"2043":1}}],["upward",{"2":{"1990":2}}],["upwards",{"2":{"1492":1}}],["uploading",{"2":{"586":1}}],["uploaded",{"2":{"276":2,"580":1,"2417":1,"2728":1}}],["uploads",{"2":{"273":1,"277":1,"1371":2,"2417":1,"2598":1,"2639":1}}],["upload",{"0":{"273":1},"2":{"149":1,"273":4,"366":1,"367":1,"600":1,"683":1,"1521":1,"1522":1,"2415":1,"2417":1,"2505":1,"2607":1}}],["upon",{"2":{"65":1,"283":1,"312":1,"617":1,"1343":1,"1472":1,"1544":3,"1784":1,"1960":1,"1961":1,"2182":6,"2633":1,"2635":1,"2696":1,"2701":1,"2707":1}}],["ups",{"0":{"40":1,"64":1,"75":1,"94":1},"2":{"40":1,"191":1,"266":1,"1205":1,"2267":1}}],["upstreamed",{"2":{"2707":1,"2711":1,"2713":1}}],["upstreaming",{"2":{"2567":8,"2713":1}}],["upstream",{"2":{"16":1,"43":1,"45":1,"182":1,"210":1,"222":1,"285":1,"328":1,"409":3,"411":2,"421":2,"422":1,"609":1,"1463":1,"2567":1,"2569":1,"2571":1,"2634":8,"2637":6,"2639":8,"2640":4,"2707":1,"2712":1,"2726":2,"2902":1,"2903":2}}],["up",{"0":{"412":1,"416":1,"1448":1,"2005":1,"2430":1,"2432":1,"2435":1,"2591":1,"2618":1,"2636":1,"2653":1,"2664":1,"2665":1,"2822":1},"1":{"2006":1,"2431":1,"2619":1,"2620":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1,"2628":1,"2629":1,"2666":1,"2667":1,"2668":1,"2669":1,"2670":1,"2671":1},"2":{"6":1,"13":1,"18":1,"35":1,"40":1,"46":1,"62":1,"73":3,"77":1,"90":3,"93":1,"94":3,"100":1,"114":13,"119":2,"120":3,"123":1,"124":2,"130":2,"131":1,"133":2,"134":6,"145":1,"149":5,"153":1,"156":1,"160":1,"166":1,"172":1,"175":8,"178":1,"181":1,"188":1,"198":2,"199":6,"207":1,"210":8,"217":1,"220":1,"221":1,"222":55,"224":1,"228":1,"231":2,"232":1,"236":4,"248":1,"249":1,"251":1,"266":3,"294":3,"328":1,"353":1,"354":1,"362":1,"376":1,"379":1,"393":1,"409":1,"426":1,"429":1,"446":1,"512":2,"540":2,"555":1,"558":1,"561":1,"565":2,"574":2,"575":1,"582":1,"585":1,"588":1,"589":4,"607":1,"608":1,"609":1,"611":1,"630":2,"633":1,"635":1,"637":2,"639":2,"641":1,"648":1,"656":1,"684":1,"685":1,"687":1,"688":1,"695":1,"720":2,"724":1,"748":1,"749":3,"761":1,"768":1,"800":1,"826":1,"855":1,"887":1,"919":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1124":1,"1158":1,"1197":2,"1205":1,"1214":1,"1248":1,"1252":1,"1269":1,"1303":3,"1313":1,"1339":1,"1341":1,"1372":1,"1410":8,"1413":2,"1417":2,"1425":1,"1441":2,"1444":6,"1447":1,"1448":2,"1472":1,"1473":1,"1474":1,"1485":1,"1486":1,"1490":2,"1493":4,"1495":2,"1499":1,"1521":3,"1522":2,"1523":2,"1526":1,"1527":1,"1538":1,"1543":2,"1556":1,"1612":1,"1668":1,"1680":2,"1685":1,"1694":2,"1702":1,"1738":1,"1767":2,"1776":6,"1782":1,"1788":1,"1796":1,"1804":2,"1837":1,"1848":2,"1849":7,"1925":8,"1933":5,"1968":1,"1974":2,"1979":1,"1994":1,"2006":1,"2009":1,"2013":2,"2016":1,"2037":3,"2068":10,"2071":1,"2084":4,"2085":9,"2086":2,"2096":1,"2181":4,"2185":2,"2189":1,"2222":1,"2251":1,"2253":2,"2259":1,"2260":1,"2264":1,"2267":1,"2273":1,"2278":1,"2281":1,"2296":1,"2298":1,"2309":2,"2315":1,"2319":1,"2329":2,"2330":2,"2331":2,"2332":2,"2386":1,"2387":1,"2416":1,"2418":5,"2427":1,"2432":1,"2434":1,"2444":2,"2445":1,"2450":1,"2463":1,"2466":1,"2496":1,"2501":1,"2516":7,"2517":4,"2518":2,"2522":13,"2524":2,"2525":3,"2527":2,"2537":2,"2539":8,"2540":5,"2543":2,"2544":4,"2545":4,"2552":2,"2558":1,"2559":1,"2563":1,"2582":1,"2586":2,"2591":1,"2594":1,"2597":1,"2616":1,"2618":1,"2620":1,"2629":1,"2632":1,"2638":1,"2651":1,"2653":2,"2658":1,"2663":1,"2664":1,"2665":2,"2669":3,"2674":4,"2678":2,"2680":2,"2682":2,"2690":1,"2700":1,"2707":1,"2709":1,"2726":1,"2728":1,"2729":1,"2730":1,"2757":1,"2761":1,"2792":2,"2842":1,"2879":1,"2882":2,"2892":2,"2893":1,"2894":2,"2905":1,"2912":11,"2916":4,"2917":6,"2918":4,"2920":7,"2921":2,"2922":2,"2926":5,"2929":1,"2932":1,"2939":1}}],["usd",{"2":{"2675":1,"2895":1}}],["us=yes",{"2":{"1395":1}}],["usr",{"2":{"1316":1,"2669":1}}],["usually",{"2":{"228":1,"397":1,"436":1,"533":1,"574":1,"623":1,"657":1,"684":1,"685":1,"686":1,"690":1,"754":3,"766":1,"1200":1,"1208":1,"1290":1,"1296":1,"1348":2,"1364":1,"1410":1,"1413":1,"1488":1,"1541":1,"1546":1,"1551":2,"1589":1,"1672":1,"1986":1,"1987":1,"2179":2,"2193":1,"2220":1,"2291":1,"2327":1,"2396":1,"2417":1,"2418":1,"2469":1,"2483":1,"2501":1,"2503":1,"2507":1,"2558":1,"2571":1,"2612":2,"2617":1,"2650":1,"2659":1,"2674":1,"2711":1,"2794":1,"2869":1,"2897":1,"2901":1,"2950":1}}],["usual",{"2":{"77":1,"497":1,"498":1,"630":1,"1380":1,"1381":1,"1482":1,"1690":2,"2014":1,"2071":1,"2076":1,"2912":1}}],["usability",{"2":{"222":1}}],["usable",{"2":{"107":1,"114":1,"156":1,"220":1,"231":1,"466":1,"494":1,"716":1,"754":2,"755":1,"756":1,"1417":1,"1481":1,"2261":1,"2431":1,"2559":1,"2677":3,"2755":1,"2756":1,"2864":1}}],["usart4",{"2":{"1212":1}}],["usart2",{"2":{"1211":1,"1212":1,"1213":3,"1269":4}}],["usart3",{"2":{"1203":1,"1204":1,"1211":1,"1212":1,"1213":5,"1269":1}}],["usartn",{"2":{"1203":2,"1204":2}}],["usart1",{"2":{"1198":1,"1201":1,"1211":1,"1212":1,"1213":3,"1269":2,"2043":1}}],["usart",{"0":{"1196":1,"1199":1,"2043":1},"1":{"1197":1,"1198":1,"1200":1,"1201":1},"2":{"74":1,"107":1,"191":1,"266":1,"277":1,"285":1,"1192":3,"1196":1,"1197":2,"1198":5,"1199":2,"1200":5,"1201":10,"1203":5,"1204":5,"1207":1,"1208":2,"1210":1,"1213":3,"1269":1,"2037":1,"2039":1,"2040":1,"2043":11,"2261":1,"2689":1,"2702":4,"2875":1,"2880":1}}],["usages",{"2":{"75":1,"118":1,"128":1,"140":1,"149":1,"156":1,"157":1,"182":1,"199":4,"249":1,"1357":2,"2016":1,"2653":1}}],["usage",{"0":{"323":1,"691":1,"703":1,"725":1,"742":1,"765":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1542":1,"1578":1,"1624":1,"1640":1,"1672":1,"1698":1,"1739":1,"1763":1,"1797":1,"1919":1,"1944":1,"1957":1,"2017":1,"2055":1,"2179":1,"2186":1,"2210":1,"2215":1,"2220":1,"2256":1,"2284":1,"2326":1,"2384":1,"2676":1,"2679":1,"2680":1},"1":{"1920":1,"1921":1,"1922":1,"1923":1,"1924":1,"1925":1,"1926":1,"1927":1,"1928":1,"1929":1,"2180":1,"2677":1,"2678":1,"2679":1,"2680":1},"2":{"35":1,"118":1,"156":1,"160":1,"191":1,"199":1,"222":1,"231":1,"236":1,"249":3,"266":2,"294":1,"307":1,"308":1,"328":1,"339":1,"429":5,"430":3,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":1,"438":1,"439":1,"440":1,"441":1,"442":1,"443":1,"444":1,"445":1,"446":1,"447":1,"448":2,"449":2,"450":2,"452":1,"453":1,"454":1,"455":1,"459":4,"460":2,"461":2,"462":1,"463":1,"464":1,"465":1,"469":1,"470":1,"720":2,"1196":1,"1199":1,"1205":1,"1351":1,"1410":1,"1413":2,"1609":1,"1846":1,"1974":1,"2016":1,"2044":1,"2054":1,"2056":6,"2057":3,"2059":8,"2082":1,"2509":1,"2517":1,"2557":1,"2562":1,"2594":1,"2657":1,"2678":1,"2684":1,"2704":1,"2755":6,"2794":1,"2840":1,"2882":1,"2902":1}}],["us",{"0":{"2546":1,"2553":1},"1":{"2554":1,"2555":1},"2":{"6":1,"74":1,"99":1,"114":2,"149":1,"172":1,"175":1,"191":2,"201":1,"228":1,"245":1,"381":1,"386":1,"418":1,"495":1,"538":1,"544":1,"603":1,"607":1,"613":3,"644":1,"665":2,"749":3,"1285":1,"1381":2,"1449":1,"1497":1,"1593":2,"1634":1,"1692":2,"1801":1,"1953":1,"1962":1,"2223":1,"2259":1,"2466":1,"2474":3,"2512":2,"2522":2,"2546":1,"2553":1,"2580":1,"2617":1,"2634":5,"2731":2,"2817":1,"2847":1,"2884":1,"2886":1,"2887":7,"2915":1,"2938":1,"2940":1}}],["using",{"0":{"384":1,"1371":1,"1433":1,"1441":1,"1445":1,"1520":1,"1924":1,"2318":1,"2319":1,"2597":1},"1":{"385":1,"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"393":1,"394":1,"395":1,"396":1,"397":1,"398":1,"1434":1,"1435":1,"1436":1,"1437":1,"1438":1,"1439":1,"1442":1,"1443":1,"1444":1,"1446":1,"1447":1,"1448":1,"1449":1,"1450":1,"1451":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1461":1,"1462":1,"1521":1,"1522":1,"1523":1},"2":{"5":1,"7":1,"35":1,"39":2,"40":1,"47":1,"49":2,"65":2,"73":1,"76":1,"83":1,"103":1,"111":2,"114":4,"126":1,"132":1,"149":1,"157":1,"158":1,"175":1,"191":2,"199":1,"208":1,"232":1,"234":1,"236":1,"240":2,"241":2,"244":1,"248":1,"253":2,"255":1,"270":2,"271":1,"272":1,"281":2,"289":1,"328":1,"374":2,"377":1,"381":1,"384":2,"386":1,"387":1,"388":1,"389":1,"393":1,"396":1,"414":1,"429":1,"433":1,"439":1,"450":1,"459":2,"487":1,"488":1,"490":1,"491":1,"495":1,"499":1,"500":1,"507":1,"512":1,"514":1,"516":2,"521":1,"525":1,"526":2,"529":2,"538":1,"539":1,"561":2,"562":1,"563":1,"564":1,"569":3,"570":14,"578":1,"580":1,"591":1,"593":1,"607":3,"612":1,"643":1,"651":1,"657":1,"665":1,"686":1,"687":1,"688":1,"690":1,"703":1,"719":1,"725":1,"742":1,"748":2,"755":1,"763":1,"765":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1193":2,"1200":2,"1205":1,"1213":1,"1215":1,"1246":1,"1267":1,"1283":2,"1284":1,"1286":1,"1303":1,"1311":1,"1313":1,"1315":1,"1319":1,"1333":1,"1340":1,"1347":1,"1372":1,"1378":2,"1407":1,"1410":5,"1415":1,"1416":1,"1417":5,"1419":1,"1420":1,"1422":2,"1423":1,"1428":1,"1430":1,"1438":1,"1462":1,"1472":1,"1483":1,"1488":1,"1503":1,"1517":3,"1519":1,"1538":1,"1544":1,"1551":2,"1556":1,"1589":1,"1593":1,"1594":1,"1595":2,"1609":2,"1620":3,"1622":1,"1627":1,"1630":1,"1662":1,"1663":1,"1666":1,"1667":1,"1668":1,"1670":3,"1671":1,"1686":1,"1687":1,"1697":1,"1739":1,"1742":1,"1776":1,"1787":1,"1788":1,"1791":1,"1846":2,"1850":1,"1919":1,"1923":1,"1930":1,"1935":1,"1936":1,"1938":1,"1943":2,"1948":1,"1953":3,"1956":1,"1961":1,"1965":1,"1970":1,"1971":1,"1974":2,"1984":1,"1985":1,"1986":3,"1987":2,"1989":2,"1999":2,"2015":1,"2044":1,"2048":1,"2054":1,"2059":1,"2082":2,"2088":1,"2096":1,"2097":1,"2178":1,"2184":1,"2189":3,"2191":1,"2207":1,"2210":1,"2214":1,"2223":1,"2260":1,"2261":1,"2263":2,"2265":1,"2268":1,"2273":3,"2275":2,"2278":5,"2283":1,"2287":1,"2298":1,"2305":2,"2324":1,"2331":3,"2332":1,"2378":1,"2379":1,"2387":1,"2389":2,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2411":1,"2417":1,"2418":3,"2425":1,"2428":1,"2429":4,"2430":1,"2432":3,"2444":1,"2446":1,"2448":1,"2450":1,"2454":1,"2455":1,"2460":1,"2464":1,"2474":1,"2480":1,"2486":1,"2508":1,"2552":1,"2554":1,"2563":2,"2573":1,"2580":1,"2584":1,"2586":1,"2589":1,"2590":2,"2594":1,"2595":2,"2596":1,"2598":2,"2600":2,"2609":1,"2613":1,"2616":1,"2628":1,"2634":1,"2653":1,"2664":1,"2671":1,"2673":1,"2674":3,"2676":1,"2690":1,"2692":4,"2704":1,"2713":1,"2714":2,"2726":2,"2728":5,"2730":1,"2732":1,"2747":1,"2756":3,"2757":7,"2761":1,"2794":1,"2818":1,"2819":1,"2846":1,"2885":1,"2886":1,"2887":1,"2890":1,"2891":2,"2892":2,"2893":1,"2894":1,"2908":2,"2912":3,"2926":1,"2929":1,"2931":1,"2932":2,"2941":1,"2943":1}}],["usbmodemxxxxxx",{"2":{"2502":1}}],["usbtiny",{"2":{"2490":1}}],["usbtinyisp",{"0":{"2490":1},"1":{"2491":1},"2":{"430":1,"2490":3}}],["usbs1",{"2":{"2043":1}}],["usbser",{"2":{"689":12}}],["usb2adb",{"2":{"1357":1}}],["usb2422",{"2":{"134":1}}],["usbisactive",{"2":{"266":1}}],["usbc",{"2":{"218":2}}],["usbasploader",{"0":{"2395":1,"2501":1},"2":{"328":1,"430":1,"573":1,"686":1,"689":1,"2395":3,"2501":2}}],["usbasp",{"0":{"2492":1},"1":{"2493":1},"2":{"134":1,"175":1,"430":1,"689":1,"2395":4,"2492":2,"2501":1}}],["usbpd",{"2":{"74":1}}],["usbdrv",{"0":{"11":1}}],["usb",{"0":{"2":1,"11":1,"137":1,"168":1,"184":1,"235":1,"263":1,"303":1,"338":1,"575":1,"1319":1,"1373":1,"2848":1,"2849":1,"2882":1},"1":{"185":1,"1320":1},"2":{"2":1,"11":2,"21":1,"24":1,"39":3,"40":5,"62":2,"65":1,"70":3,"73":2,"75":1,"94":2,"111":3,"112":9,"113":1,"114":7,"134":5,"137":1,"149":4,"160":6,"168":4,"175":9,"184":3,"185":2,"191":8,"199":5,"210":9,"222":1,"236":5,"240":1,"249":3,"263":2,"266":4,"285":2,"294":1,"303":1,"308":3,"317":1,"338":1,"339":2,"396":1,"545":1,"546":3,"547":1,"561":5,"568":4,"570":7,"573":1,"574":5,"575":2,"634":1,"646":1,"686":1,"688":1,"689":1,"1194":1,"1197":1,"1200":1,"1317":3,"1357":1,"1373":2,"1392":4,"1393":4,"1486":1,"1920":2,"1956":2,"1959":1,"1960":1,"1961":3,"1962":3,"1990":4,"2057":2,"2059":1,"2181":1,"2261":1,"2265":4,"2274":3,"2278":9,"2279":4,"2280":2,"2292":1,"2294":1,"2298":3,"2377":7,"2389":1,"2395":2,"2396":1,"2397":1,"2399":1,"2401":1,"2406":1,"2408":1,"2410":3,"2424":2,"2430":1,"2454":3,"2467":1,"2468":1,"2469":1,"2470":2,"2474":1,"2482":2,"2490":1,"2492":1,"2494":1,"2498":1,"2499":1,"2500":1,"2501":2,"2502":1,"2504":1,"2505":2,"2508":1,"2528":6,"2557":1,"2562":1,"2675":1,"2677":3,"2687":1,"2689":1,"2690":1,"2709":2,"2717":8,"2728":1,"2751":1,"2807":1,"2840":2,"2849":1,"2852":2,"2880":3,"2882":7,"2935":1}}],["useful",{"0":{"2780":1},"1":{"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1},"2":{"289":1,"320":1,"486":1,"514":1,"561":1,"574":1,"603":1,"637":1,"640":1,"651":1,"690":1,"722":1,"754":1,"1247":1,"1327":1,"1329":1,"1331":1,"1347":1,"1416":1,"1429":1,"1447":1,"1451":2,"1455":2,"1465":1,"1467":1,"1490":1,"1528":1,"1546":1,"1589":1,"1593":1,"1601":1,"1606":1,"1612":3,"1634":1,"1670":1,"1794":1,"1840":1,"1938":2,"1949":1,"1954":1,"1985":3,"1988":2,"1992":1,"2054":1,"2065":2,"2071":1,"2074":1,"2191":1,"2207":1,"2259":1,"2265":1,"2278":1,"2290":1,"2318":1,"2330":1,"2379":1,"2381":1,"2393":1,"2417":1,"2421":1,"2427":1,"2471":1,"2558":1,"2656":1,"2726":1,"2732":1,"2780":1,"2782":1,"2785":1,"2887":1,"2913":1,"2923":1,"2926":2,"2931":1,"2933":1}}],["useless",{"2":{"199":1,"222":1,"266":2}}],["used",{"2":{"15":1,"39":1,"40":1,"60":1,"110":1,"120":1,"157":1,"189":1,"191":2,"203":1,"214":1,"220":1,"240":1,"243":1,"285":1,"328":1,"331":1,"340":1,"341":1,"383":2,"386":1,"396":2,"403":1,"429":1,"433":2,"444":1,"474":1,"475":1,"494":1,"525":2,"526":1,"529":1,"556":1,"561":1,"563":1,"571":1,"572":2,"580":1,"588":5,"589":1,"593":1,"600":1,"610":1,"612":1,"627":2,"634":1,"645":1,"647":1,"656":1,"657":3,"658":1,"659":1,"661":2,"665":1,"695":4,"699":2,"717":2,"721":1,"722":1,"748":1,"750":1,"752":1,"753":5,"754":3,"755":4,"756":2,"757":1,"759":1,"762":2,"763":1,"764":1,"767":1,"768":2,"1192":3,"1194":1,"1196":1,"1197":1,"1198":1,"1200":2,"1203":2,"1204":1,"1205":1,"1245":1,"1248":2,"1266":1,"1269":1,"1291":1,"1299":1,"1320":1,"1324":1,"1325":1,"1326":1,"1371":1,"1378":1,"1381":1,"1382":2,"1395":2,"1421":1,"1422":2,"1423":2,"1436":1,"1441":1,"1447":1,"1448":1,"1465":1,"1472":1,"1477":1,"1480":1,"1510":1,"1518":1,"1538":1,"1545":1,"1554":1,"1594":1,"1609":1,"1630":1,"1635":1,"1636":1,"1663":1,"1678":1,"1681":1,"1734":1,"1736":1,"1771":1,"1774":2,"1776":1,"1777":2,"1781":2,"1782":1,"1787":1,"1790":1,"1851":1,"1853":1,"1939":1,"1940":1,"1941":1,"1947":1,"1949":1,"1951":3,"1952":2,"1954":3,"1962":2,"1967":1,"1968":5,"1969":1,"1973":1,"1974":1,"1980":2,"1983":1,"1985":2,"1986":2,"1987":1,"1990":1,"1992":1,"1999":1,"2001":1,"2008":2,"2012":2,"2013":1,"2042":1,"2044":3,"2059":1,"2069":1,"2071":1,"2076":3,"2077":2,"2078":1,"2090":1,"2092":1,"2181":2,"2185":2,"2193":1,"2194":1,"2223":1,"2259":1,"2260":2,"2261":1,"2265":2,"2266":1,"2272":1,"2273":1,"2275":2,"2279":1,"2283":1,"2286":1,"2290":2,"2291":1,"2296":1,"2297":2,"2301":1,"2309":3,"2313":1,"2317":6,"2318":1,"2319":3,"2320":1,"2326":1,"2331":1,"2377":1,"2379":1,"2384":1,"2389":1,"2395":1,"2401":1,"2414":1,"2418":4,"2431":1,"2435":1,"2437":2,"2439":1,"2449":2,"2450":1,"2453":2,"2454":1,"2455":1,"2469":1,"2486":1,"2505":1,"2554":1,"2559":1,"2561":2,"2564":1,"2568":1,"2569":1,"2573":3,"2575":2,"2576":1,"2597":1,"2616":1,"2626":1,"2639":1,"2640":1,"2653":1,"2673":1,"2676":1,"2677":5,"2678":2,"2679":4,"2680":4,"2691":1,"2696":1,"2709":2,"2714":3,"2726":2,"2728":9,"2751":1,"2753":1,"2756":11,"2757":12,"2761":1,"2767":2,"2773":1,"2774":1,"2776":2,"2777":2,"2792":1,"2794":1,"2796":2,"2816":1,"2820":2,"2824":1,"2826":1,"2827":1,"2844":1,"2851":1,"2852":2,"2864":1,"2871":1,"2876":1,"2878":1,"2884":1,"2886":1,"2904":1,"2913":1,"2926":2,"2927":2,"2941":1,"2948":1}}],["uses",{"2":{"8":1,"26":1,"36":1,"40":1,"89":1,"100":1,"114":1,"178":1,"206":1,"323":1,"489":1,"495":1,"554":1,"569":1,"585":1,"588":1,"589":1,"607":1,"695":2,"717":3,"721":2,"722":1,"746":1,"752":1,"1205":3,"1292":1,"1311":1,"1317":1,"1343":1,"1346":2,"1361":1,"1391":1,"1399":1,"1417":3,"1423":2,"1449":1,"1488":1,"1492":3,"1622":2,"1935":1,"1936":1,"1945":2,"1953":1,"1966":1,"1967":1,"1968":1,"1978":1,"1981":1,"1993":1,"2041":1,"2042":1,"2044":1,"2053":1,"2086":1,"2096":1,"2180":1,"2259":1,"2261":3,"2272":1,"2375":1,"2378":2,"2392":1,"2397":1,"2450":2,"2462":1,"2497":1,"2562":1,"2573":2,"2576":1,"2607":3,"2616":1,"2639":1,"2667":1,"2671":1,"2684":1,"2694":2,"2707":1,"2741":1,"2765":1,"2772":1,"2776":1,"2794":1,"2796":1,"2892":1,"2893":1,"2922":1}}],["username>",{"2":{"505":1,"1467":1,"2583":1,"2584":2,"2637":3,"2639":2}}],["username",{"2":{"444":2,"484":1,"541":3,"607":2,"1463":1,"1467":2,"2583":1,"2605":1,"2606":2,"2607":2,"2608":5,"2628":1,"2714":1,"2852":1}}],["user\`",{"2":{"307":2,"1431":1}}],["user",{"0":{"30":1,"53":1,"67":1,"72":1,"85":1,"101":1,"121":1,"139":1,"155":1,"164":1,"180":1,"193":1,"204":1,"214":1,"216":1,"225":1,"239":1,"252":1,"269":1,"280":1,"290":1,"299":1,"310":1,"321":1,"428":1,"474":1,"484":1,"490":1,"509":1,"631":1,"635":1,"641":1,"647":1,"649":2,"653":1,"1446":1,"1531":1,"1585":1,"1621":1,"1663":1,"1664":1,"1807":1,"1808":1,"1809":1,"1839":1,"1910":1,"1915":1,"2170":1,"2175":1,"2340":1,"2933":1},"1":{"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"86":1,"87":1,"88":1,"89":1,"90":1,"102":1,"103":1,"104":1,"105":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"140":1,"141":1,"142":1,"143":1,"156":1,"157":1,"158":1,"159":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"181":1,"182":1,"183":1,"184":1,"185":1,"194":1,"195":1,"196":1,"197":1,"205":1,"206":1,"207":1,"208":1,"209":1,"217":1,"218":1,"226":1,"240":1,"241":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"270":1,"271":1,"272":1,"273":1,"281":1,"291":1,"300":1,"311":1,"312":1,"322":1,"323":1,"324":1,"325":1,"429":1,"430":1,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":1,"438":1,"439":1,"440":1,"441":1,"442":1,"443":1,"444":1,"445":1,"446":1,"447":1,"448":1,"449":1,"450":1,"491":1,"492":1,"493":1,"494":1,"1447":1,"1448":1,"1449":1,"1450":1,"1532":1,"1533":1,"1534":1,"1535":1,"1536":1,"1810":1,"1811":1,"1911":1,"2171":1,"2341":1},"2":{"3":1,"4":1,"7":1,"18":1,"21":5,"24":3,"39":3,"48":1,"70":3,"75":3,"90":4,"93":1,"105":8,"114":1,"125":4,"134":1,"149":3,"154":1,"158":1,"166":2,"169":4,"175":4,"182":1,"191":6,"195":2,"196":3,"199":1,"201":2,"208":1,"210":1,"214":5,"222":4,"228":2,"229":1,"231":3,"238":1,"249":7,"277":2,"284":1,"285":1,"294":2,"303":1,"307":5,"312":2,"317":1,"324":1,"325":1,"332":1,"337":1,"338":1,"339":2,"414":4,"444":1,"474":5,"481":1,"484":4,"488":1,"489":6,"490":2,"492":3,"494":3,"499":1,"570":1,"589":1,"593":3,"609":1,"625":4,"627":5,"630":1,"631":1,"632":1,"633":1,"635":1,"636":1,"638":1,"641":1,"642":1,"645":2,"646":1,"647":4,"649":2,"650":2,"651":2,"652":1,"653":1,"654":1,"665":1,"675":1,"1322":1,"1329":1,"1380":1,"1381":1,"1416":3,"1417":35,"1418":3,"1419":11,"1420":9,"1428":2,"1430":1,"1431":2,"1432":1,"1446":4,"1447":4,"1462":2,"1465":1,"1466":1,"1470":5,"1471":2,"1472":2,"1485":1,"1487":1,"1491":2,"1517":4,"1524":1,"1527":1,"1532":5,"1533":2,"1536":1,"1585":1,"1600":2,"1601":2,"1605":1,"1628":7,"1634":4,"1635":1,"1636":1,"1638":2,"1657":4,"1661":1,"1662":2,"1663":2,"1664":4,"1668":4,"1701":1,"1702":1,"1742":2,"1743":1,"1794":2,"1795":2,"1796":1,"1798":2,"1804":2,"1807":1,"1808":1,"1809":1,"1835":1,"1837":2,"1838":1,"1839":1,"1850":3,"1855":4,"1923":1,"1924":1,"1938":1,"1945":1,"1946":1,"1947":1,"1948":3,"1952":1,"1954":5,"1955":2,"1958":3,"1962":1,"1983":3,"1986":1,"1988":4,"1989":2,"1993":3,"1994":3,"1996":2,"1997":2,"2001":1,"2005":2,"2006":1,"2011":1,"2012":2,"2013":3,"2053":1,"2068":1,"2069":3,"2070":1,"2071":2,"2072":1,"2073":2,"2074":1,"2075":1,"2076":2,"2077":3,"2079":2,"2085":3,"2087":1,"2088":3,"2094":4,"2095":3,"2096":2,"2097":1,"2181":2,"2189":1,"2190":3,"2191":5,"2212":1,"2213":1,"2216":1,"2217":1,"2218":2,"2225":1,"2277":14,"2284":1,"2286":1,"2287":2,"2290":9,"2300":3,"2306":1,"2309":2,"2310":1,"2314":1,"2315":3,"2316":7,"2317":4,"2318":5,"2319":4,"2331":1,"2340":1,"2344":1,"2345":1,"2346":1,"2381":2,"2387":4,"2402":1,"2406":1,"2408":1,"2410":1,"2413":1,"2416":1,"2418":4,"2454":2,"2455":2,"2456":1,"2460":1,"2461":3,"2468":1,"2478":1,"2575":2,"2576":2,"2577":1,"2583":2,"2589":1,"2590":1,"2592":1,"2593":1,"2594":1,"2605":1,"2608":1,"2610":2,"2628":2,"2643":2,"2652":5,"2674":1,"2679":1,"2683":1,"2704":1,"2727":1,"2728":6,"2729":2,"2753":1,"2754":1,"2756":2,"2757":10,"2783":1,"2785":2,"2794":1,"2796":2,"2879":1,"2884":1,"2912":1,"2922":1,"2933":1,"2941":3,"2949":2,"2950":1}}],["userspace",{"0":{"228":1,"451":1,"452":1,"453":1,"454":1,"455":1,"456":1,"1463":1,"1465":1,"1628":1,"2413":1,"2590":1,"2592":1,"2593":1,"2595":1,"2596":1,"2598":1},"1":{"452":1,"453":1,"454":1,"455":1,"456":1,"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1,"2591":1,"2592":1,"2593":1,"2594":1,"2595":1,"2596":1,"2597":1,"2599":1,"2600":1,"2601":1,"2602":1,"2603":1,"2604":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2610":1},"2":{"74":2,"76":1,"134":1,"175":3,"191":1,"199":1,"201":2,"210":1,"222":1,"224":1,"228":4,"236":3,"241":2,"249":1,"253":2,"265":2,"268":2,"270":2,"275":1,"281":2,"288":2,"308":2,"317":1,"328":1,"333":2,"452":6,"453":6,"454":4,"455":3,"456":8,"609":1,"1463":2,"1464":2,"1465":1,"1470":2,"1471":3,"1472":2,"1485":1,"1627":3,"1628":3,"1850":2,"2088":2,"2413":1,"2416":1,"2590":5,"2591":1,"2592":3,"2593":3,"2594":2,"2595":5,"2596":5,"2597":1,"2598":1,"2607":1,"2610":1,"2727":1,"2728":1,"2907":1}}],["users",{"0":{"1426":1,"1427":1,"1783":1},"1":{"1784":1,"1785":1,"1786":1},"2":{"0":1,"9":1,"29":1,"42":1,"46":1,"52":1,"62":1,"70":1,"114":1,"118":1,"131":1,"154":1,"156":1,"181":2,"188":1,"209":2,"212":1,"228":1,"234":1,"243":2,"263":1,"276":1,"279":2,"283":1,"284":2,"304":1,"312":2,"331":2,"332":1,"337":1,"371":1,"372":1,"384":1,"399":1,"414":5,"429":1,"447":1,"473":1,"474":1,"476":1,"482":1,"483":1,"494":1,"509":1,"510":1,"555":1,"578":1,"586":1,"612":1,"634":1,"665":1,"668":1,"762":1,"1315":1,"1343":1,"1424":1,"1427":1,"1428":2,"1433":2,"1463":4,"1464":1,"1469":1,"1470":1,"1534":1,"1593":1,"1629":1,"1663":1,"1781":1,"1803":1,"2309":1,"2327":1,"2331":1,"2413":2,"2416":1,"2454":1,"2455":1,"2459":1,"2460":3,"2461":1,"2590":2,"2605":1,"2607":2,"2610":1,"2621":2,"2626":1,"2637":1,"2638":1,"2714":1,"2728":2,"2747":1,"2750":1,"2753":1,"2757":1,"2836":1,"2901":3,"2902":1}}],["use",{"0":{"6":1,"20":1,"22":1,"23":1,"50":1,"179":1,"1345":1,"1522":1,"1767":1,"1791":1,"1941":1,"2006":1,"2013":1,"2309":1,"2387":1,"2448":1,"2944":1},"1":{"21":1,"24":1,"1523":1},"2":{"1":1,"7":1,"15":1,"20":1,"21":1,"22":1,"23":1,"24":1,"26":1,"27":1,"33":1,"35":1,"39":2,"50":1,"70":1,"74":1,"76":1,"80":1,"87":1,"89":1,"93":1,"94":3,"95":1,"99":1,"103":1,"107":1,"114":5,"118":1,"119":3,"126":1,"133":2,"134":9,"149":5,"160":3,"163":1,"174":1,"175":15,"181":1,"182":1,"189":1,"191":15,"194":2,"199":10,"203":1,"206":1,"208":2,"210":2,"217":1,"222":11,"232":1,"236":8,"240":1,"249":4,"256":1,"260":1,"266":2,"277":3,"285":4,"294":1,"302":1,"307":1,"308":8,"317":9,"320":1,"323":2,"328":1,"333":2,"367":1,"373":1,"377":1,"379":1,"392":1,"393":1,"396":1,"404":1,"411":1,"419":1,"426":1,"429":1,"430":1,"437":1,"454":1,"460":3,"461":2,"463":2,"470":1,"489":3,"491":4,"494":1,"499":1,"501":2,"504":2,"505":1,"506":1,"512":6,"513":3,"514":2,"515":1,"516":2,"519":3,"520":1,"521":2,"525":1,"526":1,"528":2,"529":1,"530":1,"531":1,"532":1,"533":1,"534":1,"536":1,"538":3,"540":1,"542":1,"543":1,"546":2,"547":1,"559":1,"561":2,"564":2,"567":1,"568":3,"569":1,"570":1,"574":1,"575":2,"581":1,"588":1,"591":1,"596":1,"599":1,"600":1,"607":2,"610":1,"617":1,"622":2,"625":2,"627":1,"629":2,"630":1,"632":1,"633":1,"645":1,"647":2,"651":1,"656":1,"665":2,"670":2,"671":1,"672":1,"675":1,"676":1,"681":1,"682":1,"683":1,"685":1,"686":1,"689":1,"691":1,"693":1,"695":1,"701":2,"703":2,"715":1,"717":12,"718":8,"719":2,"721":5,"725":2,"726":2,"729":1,"742":1,"746":1,"748":1,"754":2,"757":1,"762":1,"763":1,"765":1,"767":1,"768":7,"772":1,"797":1,"801":2,"805":1,"827":2,"831":1,"856":2,"863":1,"888":2,"893":1,"920":2,"928":1,"955":2,"962":1,"989":2,"996":1,"1023":2,"1030":1,"1057":2,"1064":1,"1091":2,"1098":1,"1125":2,"1132":1,"1159":2,"1166":1,"1192":1,"1193":1,"1195":2,"1198":1,"1200":1,"1201":1,"1203":5,"1204":5,"1205":1,"1213":2,"1215":2,"1219":1,"1246":1,"1247":1,"1248":7,"1252":1,"1253":1,"1267":1,"1269":7,"1284":2,"1297":2,"1299":7,"1301":1,"1302":2,"1303":6,"1313":1,"1315":2,"1316":1,"1319":3,"1322":2,"1327":1,"1330":1,"1346":3,"1347":1,"1348":1,"1351":1,"1354":2,"1358":1,"1364":1,"1366":1,"1368":2,"1369":1,"1378":2,"1379":1,"1381":1,"1388":2,"1390":1,"1404":2,"1405":2,"1406":1,"1410":2,"1413":1,"1414":1,"1416":1,"1417":9,"1421":1,"1422":1,"1423":2,"1427":1,"1428":3,"1431":2,"1433":1,"1438":2,"1439":2,"1440":2,"1442":2,"1446":3,"1448":2,"1450":1,"1451":1,"1454":1,"1457":2,"1463":1,"1464":1,"1465":2,"1466":1,"1467":1,"1470":7,"1471":1,"1472":4,"1473":1,"1480":3,"1481":1,"1483":2,"1491":1,"1492":2,"1517":2,"1526":1,"1529":1,"1532":2,"1535":2,"1537":1,"1538":1,"1540":1,"1544":1,"1553":1,"1554":1,"1556":6,"1557":4,"1578":1,"1589":2,"1590":1,"1593":1,"1594":2,"1595":2,"1603":1,"1605":1,"1606":1,"1609":1,"1612":1,"1619":1,"1621":1,"1622":1,"1623":2,"1624":1,"1627":1,"1630":2,"1633":3,"1662":1,"1664":1,"1670":1,"1681":1,"1682":1,"1739":1,"1741":1,"1766":3,"1769":1,"1779":2,"1781":3,"1782":1,"1784":1,"1785":1,"1788":4,"1791":2,"1793":1,"1794":1,"1795":1,"1844":4,"1846":1,"1850":2,"1851":1,"1855":2,"1923":1,"1931":1,"1933":1,"1937":2,"1938":1,"1939":1,"1945":1,"1946":1,"1949":2,"1951":1,"1952":10,"1956":1,"1958":1,"1961":2,"1966":1,"1967":1,"1968":4,"1969":1,"1973":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":5,"1985":1,"1987":1,"1990":2,"1993":1,"1995":1,"2003":1,"2009":1,"2040":1,"2041":1,"2042":1,"2043":3,"2044":1,"2046":3,"2047":2,"2048":1,"2053":1,"2054":1,"2057":1,"2066":1,"2069":3,"2070":1,"2077":2,"2079":1,"2080":4,"2082":1,"2088":2,"2090":1,"2094":2,"2096":2,"2097":1,"2179":1,"2182":5,"2184":1,"2186":1,"2188":1,"2189":1,"2191":2,"2207":1,"2249":1,"2259":1,"2260":1,"2261":2,"2264":2,"2265":2,"2267":2,"2272":1,"2274":1,"2275":3,"2276":6,"2279":1,"2280":1,"2284":1,"2285":1,"2288":2,"2289":1,"2292":1,"2294":1,"2297":2,"2298":1,"2300":1,"2301":1,"2309":2,"2310":2,"2316":1,"2317":3,"2318":3,"2319":4,"2327":1,"2329":3,"2330":2,"2374":1,"2375":1,"2377":1,"2379":2,"2384":2,"2386":1,"2388":3,"2389":1,"2390":2,"2392":1,"2397":2,"2402":1,"2403":1,"2413":1,"2414":2,"2415":1,"2417":6,"2418":3,"2428":1,"2429":3,"2431":1,"2434":2,"2435":1,"2466":2,"2475":1,"2478":2,"2481":1,"2484":1,"2488":1,"2490":1,"2500":1,"2502":1,"2519":2,"2520":1,"2522":1,"2528":1,"2561":4,"2567":1,"2568":1,"2570":1,"2573":1,"2576":1,"2583":1,"2586":1,"2589":1,"2590":3,"2591":1,"2592":1,"2593":1,"2594":3,"2595":1,"2601":1,"2606":2,"2608":1,"2612":1,"2614":1,"2617":1,"2627":2,"2628":2,"2629":1,"2634":1,"2637":1,"2640":6,"2643":1,"2645":1,"2651":1,"2652":3,"2659":1,"2667":4,"2673":1,"2674":2,"2675":1,"2676":1,"2682":1,"2685":1,"2687":1,"2691":4,"2694":1,"2695":1,"2697":2,"2698":2,"2699":2,"2702":2,"2710":1,"2711":1,"2715":1,"2717":2,"2720":2,"2726":2,"2728":8,"2730":1,"2735":1,"2754":1,"2755":3,"2756":3,"2757":3,"2758":3,"2781":1,"2784":3,"2786":4,"2787":1,"2788":1,"2789":2,"2790":1,"2794":1,"2795":3,"2853":2,"2854":1,"2856":2,"2857":2,"2858":1,"2859":1,"2864":2,"2868":1,"2871":1,"2872":2,"2875":1,"2877":1,"2878":1,"2880":3,"2881":1,"2883":1,"2886":1,"2889":3,"2894":1,"2902":1,"2903":2,"2906":2,"2911":1,"2912":4,"2913":1,"2925":1,"2927":2,"2928":1,"2929":4,"2931":2,"2932":1,"2935":1,"2938":2,"2939":1,"2949":2,"2950":1}}],["hm",{"2":{"2374":1}}],["hmcuconf",{"2":{"717":1,"718":1,"721":1,"768":1,"1248":1,"1299":1,"1303":1,"1556":1,"1557":1}}],["hc",{"2":{"2374":1,"2454":2}}],["hkcu",{"2":{"2331":1}}],["hrl",{"2":{"2301":1}}],["hrms",{"2":{"297":1,"308":1,"2913":1}}],["hl",{"2":{"2301":3}}],["hwdb",{"2":{"2471":1}}],["hw",{"2":{"1974":1}}],["hfuse",{"2":{"2503":2}}],["hf",{"2":{"1680":13,"1681":2,"1687":2}}],["hfdkb",{"2":{"205":1}}],["hz",{"2":{"767":1,"857":1,"859":11,"921":1,"924":6,"956":1,"958":6,"990":1,"992":6,"1024":1,"1026":6,"1058":1,"1060":6,"1160":1,"1162":10,"2882":1}}],["h>",{"2":{"717":2,"718":2,"721":2,"768":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1299":2,"1303":2,"1405":1,"1556":2,"1557":2,"2042":1,"2757":1}}],["h1",{"2":{"675":1,"677":3}}],["hyphen",{"2":{"1593":1}}],["hyper",{"2":{"1377":1,"2386":2,"2572":2}}],["hypr",{"2":{"1377":1,"2541":2,"2542":1,"2547":1,"2572":2,"2651":1}}],["hypothetical",{"2":{"656":1}}],["hysteresis",{"2":{"114":1}}],["h87a",{"2":{"589":5}}],["h87g2",{"2":{"249":1}}],["hungarian",{"2":{"2887":3}}],["hundreds",{"2":{"1957":1}}],["hurts",{"2":{"2566":1}}],["hurt",{"2":{"2434":1}}],["hurry",{"2":{"1499":1}}],["huge",{"2":{"1622":1}}],["hum5",{"2":{"1686":1}}],["hum4",{"2":{"1686":1}}],["hum3",{"2":{"1686":1}}],["hum2",{"2":{"1686":1}}],["hum1",{"2":{"1686":1}}],["hum",{"2":{"1686":6}}],["humbert",{"2":{"684":1,"1343":1}}],["humans",{"2":{"589":1}}],["human",{"2":{"436":1,"495":1,"1330":1,"2573":1,"2795":1,"2811":1,"2949":1}}],["hub",{"0":{"1375":1},"2":{"249":1,"1962":1}}],["hub20",{"2":{"241":2}}],["hub16",{"2":{"241":2}}],["hues",{"2":{"2085":2,"2087":2,"2187":1}}],["hueu",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2544":1,"2545":1}}],["hued",{"2":{"589":2,"1667":1,"2084":1,"2181":1,"2544":1,"2545":1}}],["hue",{"0":{"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2201":1},"1":{"2126":1},"2":{"39":1,"111":1,"167":2,"210":3,"294":1,"328":1,"354":1,"565":2,"1668":4,"2084":4,"2085":44,"2091":4,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2180":2,"2181":6,"2182":4,"2186":1,"2201":12,"2204":2,"2454":2,"2544":6,"2545":4,"2757":13,"2777":1,"2877":4,"2878":4,"2894":3}}],["h2",{"2":{"222":1,"677":2}}],["hjson",{"2":{"175":1,"199":1,"210":1,"294":4,"669":2,"2728":1}}],["hpp",{"2":{"160":1}}],["hnahkb",{"2":{"143":3,"149":1}}],["http",{"2":{"381":1,"420":1,"460":1,"581":1,"604":1,"611":1,"1467":1,"1622":1,"2732":1}}],["https",{"2":{"2":1,"11":1,"196":1,"236":1,"380":1,"381":1,"383":4,"421":1,"426":2,"429":1,"488":1,"574":1,"579":1,"580":1,"604":1,"607":1,"610":1,"683":1,"684":5,"749":7,"750":1,"766":1,"1312":1,"1313":1,"1318":1,"1319":3,"1352":1,"1353":3,"1357":2,"1358":1,"1359":3,"1361":1,"1367":2,"1368":1,"1371":2,"1375":1,"1376":2,"1446":1,"1628":1,"1798":1,"2187":1,"2384":1,"2387":4,"2458":1,"2592":1,"2593":1,"2601":1,"2608":2,"2623":1,"2624":1,"2625":1,"2626":1,"2637":8,"2639":5,"2667":1,"2674":1,"2714":3,"2728":3,"2852":1}}],["html",{"2":{"341":1,"604":1,"1319":1,"1358":1,"1368":1}}],["ht32",{"2":{"130":1,"134":1}}],["hd44780u",{"2":{"1697":1}}],["hd44780",{"0":{"1696":1,"1704":1,"1706":1,"1707":1,"1708":1,"1710":1,"1711":1,"1713":1,"1715":1,"1717":1,"1719":1,"1721":1,"1723":1,"1725":1,"1727":1,"1730":1,"1732":1,"1734":1,"1736":1},"1":{"1697":1,"1698":1,"1699":1,"1700":1,"1701":1,"1702":1,"1703":1,"1704":1,"1705":2,"1706":1,"1707":1,"1708":1,"1709":2,"1710":1,"1711":1,"1712":2,"1713":1,"1714":2,"1715":1,"1716":2,"1717":1,"1718":2,"1719":1,"1720":2,"1721":1,"1722":2,"1723":1,"1724":2,"1725":1,"1726":2,"1727":1,"1728":2,"1729":2,"1730":1,"1731":2,"1732":1,"1733":2,"1734":1,"1735":2,"1736":1,"1737":2},"2":{"64":1,"160":1,"1699":7,"1701":2,"1702":4,"1717":1,"1721":1,"1730":1,"2728":2}}],["hse",{"2":{"328":1}}],["hseclk",{"2":{"308":1}}],["hs60v2",{"0":{"1320":1}}],["hs60",{"2":{"277":1}}],["hs",{"2":{"222":1,"266":1}}],["hsv888",{"2":{"2777":1}}],["hsvs",{"2":{"175":1}}],["hsv",{"0":{"2163":2},"1":{"2164":2},"2":{"39":1,"114":1,"149":1,"285":2,"308":1,"1417":7,"2086":1,"2089":22,"2096":11,"2097":1,"2164":2,"2189":5,"2191":2,"2198":7,"2201":2,"2205":24,"2757":1,"2777":3,"2877":1,"2878":1}}],["hsgw",{"2":{"27":2}}],["hierarchies",{"2":{"2653":1,"2664":1}}],["hierarchy",{"2":{"191":1,"627":1}}],["hich",{"2":{"2079":1}}],["hires",{"2":{"1986":8}}],["hiragana",{"2":{"1358":1,"2515":2}}],["himself",{"2":{"1343":1}}],["his",{"2":{"1343":1,"2425":1,"2436":1}}],["history",{"0":{"665":1},"2":{"2557":1,"2634":1}}],["historically",{"2":{"173":1,"187":1,"273":1,"276":1,"665":1,"2569":1,"2728":1}}],["historical",{"2":{"126":1,"127":1,"241":1,"245":1,"253":1,"270":1,"281":1,"753":1,"2567":1,"2590":1}}],["hint",{"0":{"678":1},"1":{"679":1,"680":1},"2":{"678":1,"2634":1}}],["hineybush",{"2":{"589":4}}],["hinder",{"2":{"533":1}}],["hi",{"2":{"266":1,"1843":1}}],["hillside48",{"2":{"191":1}}],["hillside",{"2":{"149":1,"165":6,"175":1,"183":2}}],["hits",{"2":{"1413":1,"1849":4,"2085":5}}],["hitting",{"2":{"686":2,"1602":1,"2317":1,"2379":1,"2418":1,"2639":1,"2650":1,"2787":1,"2929":1}}],["hit",{"2":{"114":1,"152":1,"353":1,"564":1,"687":1,"1348":1,"1413":1,"1493":1,"1499":1,"1602":4,"1762":1,"1796":1,"1802":1,"1804":1,"1849":5,"1953":1,"2085":7,"2293":1,"2301":1,"2308":3,"2317":4,"2330":1,"2393":1,"2669":1,"2901":1}}],["highest",{"2":{"555":1,"719":1,"1413":1,"1417":1,"1422":1,"1425":1,"1428":2,"1430":1,"1431":1,"1493":1,"1538":1,"1539":1,"1620":1,"1791":1,"1795":3,"1843":1,"1945":1,"1994":1,"1996":1,"2011":2,"2012":2,"2095":3,"2096":1,"2284":1,"2320":1,"2534":1,"2559":1,"2784":1,"2824":1}}],["higher",{"2":{"114":1,"125":1,"169":1,"403":1,"561":1,"564":1,"719":1,"1207":1,"1422":1,"1425":2,"1427":1,"1953":1,"1974":1,"2309":1,"2318":1,"2557":2,"2559":4,"2562":1,"2726":2,"2754":1,"2756":1,"2784":1,"2903":1,"2911":2,"2922":1}}],["highlight",{"2":{"494":1}}],["highlights",{"2":{"440":1}}],["highlighted",{"2":{"272":1,"1791":1}}],["highly",{"2":{"166":1,"723":1,"1464":1,"2249":1,"2496":1,"2638":1,"2730":1}}],["high",{"0":{"1986":1},"2":{"39":2,"92":1,"114":1,"243":2,"308":1,"341":1,"414":1,"561":3,"568":1,"569":2,"576":1,"609":1,"719":4,"748":1,"761":5,"1197":1,"1205":1,"1285":2,"1286":1,"1297":1,"1415":1,"1486":1,"1493":1,"1538":2,"1544":1,"1545":1,"1577":1,"1665":1,"1670":1,"1684":2,"1685":2,"1742":3,"1801":1,"1836":1,"1838":2,"1935":2,"1986":6,"2271":1,"2298":1,"2466":1,"2498":1,"2499":1,"2500":1,"2501":1,"2503":2,"2557":1,"2562":1,"2691":1,"2709":1,"2757":1,"2799":1,"2856":1,"2857":1,"2867":1,"2903":1,"2920":1,"2921":1,"2934":1}}],["hidden",{"2":{"2780":1,"2941":1}}],["hid4java",{"2":{"2057":1}}],["hidapi",{"2":{"2057":1}}],["hidraw",{"2":{"1332":1}}],["hidbootflash",{"2":{"2396":1}}],["hidboot",{"2":{"689":1}}],["hidusb",{"2":{"240":1,"686":1,"687":2,"689":4}}],["hides",{"2":{"2563":1}}],["hide",{"2":{"199":1,"1471":1}}],["hid",{"0":{"1326":1,"1332":1,"2054":1,"2061":1,"2063":1,"2397":1,"2819":1},"1":{"2055":1,"2056":1,"2057":1,"2058":1,"2059":1,"2060":1,"2061":1,"2062":2,"2063":1,"2064":2},"2":{"2":1,"24":1,"39":2,"40":1,"114":3,"143":2,"149":2,"199":2,"210":2,"236":1,"266":1,"308":1,"430":1,"562":1,"573":1,"575":1,"685":2,"689":1,"1326":1,"1332":4,"1333":1,"1350":1,"1351":1,"1356":1,"1627":1,"1788":1,"1835":1,"1983":3,"1986":1,"1990":4,"2016":2,"2052":1,"2054":2,"2056":4,"2057":7,"2058":2,"2059":11,"2061":1,"2063":1,"2181":1,"2374":1,"2394":1,"2396":1,"2397":6,"2398":1,"2418":2,"2469":1,"2470":1,"2509":1,"2522":1,"2557":1,"2562":1,"2728":1,"2751":1,"2819":1,"2829":1,"2840":2,"2884":1,"2929":1}}],["h7",{"2":{"39":1}}],["hhkbs",{"2":{"26":2}}],["hhkb",{"0":{"25":1,"26":1,"257":1,"258":1},"1":{"26":1},"2":{"25":3,"26":8,"222":2,"256":2,"257":1,"258":1,"285":1,"1361":1}}],["hebrew",{"2":{"2887":2}}],["heir",{"2":{"2079":1}}],["heights",{"2":{"1952":1}}],["height",{"2":{"111":1,"114":1,"1949":2,"1952":3,"1953":3,"1954":1,"1970":2,"2288":2,"2289":3,"2756":16,"2757":9,"2767":2,"2774":1,"2795":1,"2869":1}}],["henkan",{"2":{"1358":1,"2515":1}}],["hence",{"2":{"716":1,"1413":1,"1488":1}}],["hey",{"2":{"405":1,"406":1,"407":1,"408":1,"411":1}}],["her",{"2":{"1673":1}}],["hertz",{"2":{"719":1}}],["herringbone",{"2":{"197":4}}],["here",{"0":{"1338":1},"2":{"21":1,"201":1,"233":1,"264":1,"274":1,"282":1,"288":1,"292":1,"301":1,"313":1,"326":1,"336":1,"369":1,"382":1,"385":1,"386":2,"389":1,"391":1,"392":1,"393":1,"396":1,"397":2,"398":1,"450":1,"512":1,"544":1,"560":1,"574":1,"593":1,"607":5,"613":2,"615":1,"624":2,"625":2,"629":1,"645":1,"668":1,"673":1,"681":1,"689":1,"719":1,"745":2,"748":1,"1312":1,"1313":1,"1319":1,"1340":1,"1346":1,"1349":1,"1365":1,"1375":1,"1378":1,"1416":1,"1417":1,"1420":1,"1433":1,"1438":1,"1446":2,"1464":2,"1466":1,"1470":1,"1492":1,"1517":1,"1518":1,"1537":1,"1540":1,"1551":2,"1591":1,"1612":4,"1617":1,"1618":1,"1625":1,"1670":1,"1779":1,"1846":1,"1961":1,"1964":1,"1990":1,"1994":1,"2011":1,"2012":1,"2057":2,"2059":1,"2079":1,"2082":1,"2096":1,"2187":1,"2188":1,"2266":1,"2273":1,"2308":1,"2309":1,"2312":1,"2317":2,"2318":2,"2319":1,"2329":1,"2387":2,"2401":1,"2416":1,"2417":1,"2418":1,"2423":1,"2427":1,"2430":1,"2432":2,"2433":1,"2434":1,"2466":2,"2468":1,"2469":1,"2473":1,"2503":2,"2506":1,"2535":1,"2563":1,"2567":1,"2586":1,"2590":1,"2592":1,"2601":1,"2621":1,"2633":1,"2634":1,"2635":1,"2637":1,"2648":1,"2649":1,"2667":1,"2669":1,"2674":1,"2683":1,"2716":1,"2720":1,"2728":1,"2730":2,"2780":1,"2791":1,"2850":1,"2886":1,"2893":1,"2904":1,"2908":1,"2912":1,"2930":1,"2932":1,"2933":2,"2938":1,"2940":1,"2942":1}}],["heated",{"2":{"2427":1}}],["heat",{"2":{"2086":1,"2425":1,"2427":3}}],["heating",{"2":{"2086":1,"2427":1,"2682":1}}],["heatmap",{"0":{"2086":1},"2":{"160":1,"191":2,"222":1,"2085":3,"2086":8,"2894":1}}],["heavily",{"2":{"1335":1,"1392":1,"1393":1,"1855":1,"2094":1,"2913":1}}],["heavy",{"2":{"149":1,"249":1,"251":1,"294":1,"1290":1,"2616":1}}],["healthy",{"2":{"687":1}}],["headings",{"0":{"677":1},"2":{"677":3}}],["heading",{"2":{"675":3}}],["headroom",{"2":{"134":2}}],["head",{"2":{"99":1,"364":1,"374":1,"375":1,"409":1,"1337":1,"1342":1,"2634":6,"2665":1,"2668":1,"2670":1}}],["headers",{"2":{"94":1,"160":1,"199":1,"222":3,"249":2,"294":3,"308":2,"333":1,"344":3,"356":1,"403":1,"612":1,"1957":1,"2726":2,"2885":1,"2886":1,"2887":1}}],["header",{"0":{"2732":1,"2766":1,"2773":1,"2887":1},"2":{"4":1,"134":1,"175":6,"191":1,"210":2,"222":1,"249":1,"277":1,"462":1,"512":1,"560":1,"593":1,"1634":2,"1662":1,"2457":1,"2464":1,"2483":1,"2494":2,"2507":1,"2612":1,"2726":4,"2765":2,"2766":2,"2767":3,"2768":3,"2769":2,"2772":2,"2773":8,"2774":3,"2775":2,"2776":3,"2777":2,"2778":2,"2779":2,"2884":1,"2885":2,"2886":3,"2887":4}}],["hecomi",{"2":{"143":2}}],["hexnumpad",{"2":{"2344":1,"2345":1,"2346":1}}],["hexadecimal",{"2":{"2238":1,"2240":1,"2242":1,"2244":1,"2329":1,"2882":2}}],["hex6c",{"2":{"222":1}}],["hex",{"2":{"94":1,"160":1,"199":1,"430":1,"446":1,"572":1,"671":2,"1315":1,"1365":6,"1472":1,"2059":1,"2222":1,"2331":2,"2384":1,"2388":1,"2389":1,"2390":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":2,"2417":3,"2418":4,"2432":1,"2433":1,"2501":2,"2502":6,"2503":1,"2504":4,"2587":3,"2589":1,"2607":1,"2614":3,"2615":1,"2629":3,"2854":1,"2949":1}}],["helo",{"2":{"1627":1,"1630":1}}],["helios",{"0":{"1397":1},"2":{"199":1,"1389":2,"1391":3,"1399":3,"1739":1,"2706":1,"2895":1}}],["helix",{"0":{"55":1},"2":{"55":52,"114":1,"133":1,"134":1,"149":1,"160":1,"222":1,"266":1,"311":6,"317":4,"1946":1}}],["held",{"2":{"160":1,"194":3,"320":1,"683":1,"1351":1,"1362":1,"1378":1,"1381":1,"1422":1,"1454":1,"1455":1,"1499":2,"1501":1,"1518":1,"1529":1,"1533":2,"1597":1,"1612":2,"1672":1,"1674":1,"1690":3,"1762":1,"1765":1,"1781":1,"1785":2,"1786":1,"1934":1,"1935":1,"1938":2,"1939":1,"1994":1,"1999":1,"2000":1,"2069":2,"2181":10,"2255":1,"2257":7,"2258":1,"2259":9,"2260":1,"2272":1,"2300":1,"2304":5,"2309":4,"2316":1,"2317":3,"2318":1,"2319":2,"2395":1,"2418":1,"2469":1,"2517":1,"2522":2,"2523":2,"2531":1,"2535":1,"2542":29,"2544":10,"2550":7,"2551":5,"2563":1,"2568":1,"2572":30,"2576":1,"2639":1,"2650":1,"2752":2,"2831":1,"2834":1,"2839":1,"2909":1,"2914":5,"2915":1,"2916":1,"2917":2,"2918":1,"2919":2,"2926":4,"2927":1,"2928":1,"2929":1,"2931":2}}],["helped",{"2":{"2636":1}}],["helper",{"2":{"39":1,"2277":1,"2424":1}}],["helpers",{"0":{"231":1},"2":{"39":1,"199":2,"222":1,"236":1,"285":1,"2566":1}}],["helping",{"2":{"2421":1,"2580":1}}],["helpful",{"2":{"680":2,"1518":1,"1801":1,"2011":1,"2184":1,"2278":1,"2428":1,"2560":1,"2561":1,"2581":1,"2897":1,"2927":1}}],["help=",{"2":{"489":1,"500":2}}],["helps",{"2":{"188":1,"297":1,"439":1,"536":1,"570":1,"1343":1,"1949":2,"2288":1,"2330":1,"2427":3,"2429":1,"2671":1,"2847":1,"2905":1,"2923":1}}],["help",{"0":{"418":1,"606":1,"2480":1,"2896":1},"1":{"2897":1,"2898":1,"2899":1},"2":{"132":1,"188":1,"228":1,"386":1,"426":1,"452":2,"453":2,"454":2,"455":2,"460":2,"461":2,"469":2,"505":1,"544":1,"603":2,"606":1,"607":1,"609":1,"610":1,"626":1,"644":1,"672":1,"674":2,"683":1,"1424":1,"1427":1,"1440":1,"1493":1,"1503":1,"1524":1,"1625":4,"1634":1,"1855":1,"1960":2,"2094":1,"2270":1,"2324":1,"2382":1,"2417":1,"2422":1,"2423":1,"2428":1,"2435":1,"2441":2,"2466":1,"2477":1,"2480":1,"2481":1,"2516":2,"2522":2,"2556":1,"2566":2,"2612":1,"2617":1,"2628":1,"2634":3,"2671":2,"2682":1,"2726":1,"2728":1,"2730":1,"2755":6,"2817":1,"2889":1,"2890":1,"2896":1,"2897":1,"2910":1}}],["hello",{"0":{"1701":1,"2225":1},"2":{"13":1,"120":1,"485":1,"489":10,"491":1,"529":1,"1441":1,"1523":3,"1627":4,"1628":1,"1630":2,"1633":2,"1638":19,"1701":1,"1718":1,"2225":3,"2302":1,"2757":1}}],["hobbyist",{"2":{"2579":1}}],["hop",{"2":{"1336":1,"2940":1}}],["hopefully",{"2":{"613":1,"2944":1}}],["hope",{"2":{"245":1,"505":1,"1467":1,"2732":1}}],["hover",{"2":{"599":1,"2674":1}}],["housings",{"2":{"2427":1}}],["housekeeping",{"0":{"646":1,"647":1},"1":{"647":1},"2":{"75":1,"92":1,"277":1,"646":2,"647":2,"1420":1,"1638":3,"2277":2,"2757":7}}],["hours",{"2":{"420":1,"604":1}}],["homebrew",{"2":{"2601":1,"2624":1}}],["home",{"0":{"1707":1,"2913":1},"2":{"277":1,"289":1,"432":1,"447":1,"452":1,"453":1,"456":4,"589":2,"1448":7,"1605":1,"1613":1,"1694":1,"1702":1,"1707":1,"1802":2,"2068":3,"2317":1,"2386":1,"2516":2,"2517":2,"2518":1,"2522":5,"2564":1,"2584":1,"2626":1,"2628":2,"2728":1,"2755":6,"2913":4,"2923":1,"2926":1,"2932":2}}],["hood",{"2":{"495":1,"670":1}}],["hoodrowg",{"2":{"222":1}}],["hooking",{"2":{"643":1,"644":1,"2037":1}}],["hooks",{"0":{"1664":1},"2":{"277":1,"284":1,"288":2,"298":1,"308":1,"626":1,"1626":1,"1664":1,"1844":1,"2080":1,"2214":1,"2298":1,"2300":2}}],["hook",{"0":{"1613":1,"2053":1},"2":{"199":1,"272":1,"643":1,"1473":1,"1585":1,"1587":1,"1620":1,"1634":1,"1638":1,"2037":2,"2690":1}}],["hooked",{"2":{"198":1,"565":1}}],["horizontally",{"2":{"1953":1,"1992":1,"2085":1}}],["horizontal",{"2":{"1939":1,"1953":1,"1968":1,"1976":1,"1986":1,"1990":1,"2757":1,"2869":1,"2871":1,"2878":1}}],["horrortroll",{"2":{"199":1,"285":1}}],["horn",{"2":{"191":1}}],["hole",{"2":{"2421":1,"2689":1}}],["holiday",{"2":{"191":1}}],["holds",{"2":{"195":1,"320":1,"1517":2,"1518":3,"1673":2,"1762":1,"2310":1,"2317":1,"2557":2,"2562":2,"2650":1,"2913":2,"2922":1,"2931":1}}],["holdings",{"2":{"222":1}}],["holding",{"0":{"1612":1},"2":{"152":2,"686":2,"1381":1,"1472":2,"1498":1,"1503":1,"1517":1,"1518":1,"1519":1,"1785":1,"1786":1,"1789":1,"1791":3,"1934":5,"1971":1,"1999":1,"2000":1,"2300":1,"2330":1,"2390":1,"2397":1,"2522":1,"2557":1,"2834":1,"2912":1,"2913":1,"2929":2,"2930":1}}],["hold",{"0":{"12":1,"195":1,"289":1,"320":2,"1386":1,"1519":1,"2316":1,"2576":1,"2577":1,"2909":1,"2914":1,"2920":1,"2921":1,"2926":1,"2927":1,"2931":1},"1":{"2910":1,"2911":1,"2912":1,"2913":1,"2914":1,"2915":2,"2916":2,"2917":2,"2918":2,"2919":2,"2920":2,"2921":2,"2922":1,"2923":1,"2924":1,"2925":1,"2926":1,"2927":2,"2928":2,"2929":1,"2930":1,"2931":1,"2932":1,"2933":1},"2":{"12":1,"112":4,"114":1,"134":2,"149":2,"175":2,"191":2,"194":8,"195":5,"199":3,"214":1,"217":3,"249":1,"289":6,"294":3,"297":3,"308":3,"320":7,"324":4,"325":4,"328":3,"339":3,"564":18,"684":1,"686":2,"1348":1,"1362":1,"1377":28,"1386":1,"1422":1,"1440":1,"1455":2,"1496":1,"1498":1,"1499":2,"1501":1,"1503":1,"1510":1,"1518":5,"1519":2,"1533":2,"1589":1,"1594":1,"1610":3,"1612":6,"1616":1,"1624":1,"1762":1,"1764":1,"1765":1,"1781":1,"1784":3,"1785":2,"1786":2,"1791":1,"1795":2,"1937":1,"1938":1,"1971":3,"1999":2,"2006":1,"2259":1,"2309":1,"2316":32,"2317":16,"2318":6,"2319":6,"2327":2,"2344":2,"2396":1,"2410":2,"2418":1,"2424":1,"2427":2,"2533":1,"2541":28,"2547":29,"2569":1,"2570":1,"2571":1,"2572":1,"2576":4,"2577":3,"2578":1,"2612":4,"2650":1,"2651":29,"2659":1,"2728":2,"2854":5,"2869":1,"2874":1,"2907":1,"2909":6,"2910":1,"2911":1,"2912":1,"2913":6,"2914":10,"2915":1,"2916":4,"2917":6,"2918":4,"2920":19,"2921":14,"2922":2,"2923":5,"2924":1,"2925":3,"2926":27,"2927":7,"2928":11,"2931":20,"2932":1,"2946":4}}],["honor",{"2":{"191":1,"2590":1}}],["honeycomb",{"2":{"159":2}}],["hot",{"2":{"2085":1,"2086":1,"2265":1,"2280":1,"2422":1,"2428":2,"2435":1}}],["hotkey",{"2":{"2068":1}}],["hotkeys",{"2":{"1529":1,"2065":1,"2068":1,"2924":1,"2926":1,"2928":1}}],["hotdox76v2",{"2":{"175":1}}],["hotswap",{"2":{"122":1,"149":1,"175":1,"199":1,"210":1,"218":2,"222":8,"241":4,"266":1,"308":1,"483":1}}],["hotfix",{"2":{"114":1,"134":1}}],["hosts",{"2":{"2817":1}}],["hosting",{"2":{"683":1,"1627":1,"2458":1,"2728":1}}],["host",{"0":{"1442":1,"1840":1,"2849":2,"2866":1,"2885":1},"2":{"113":1,"114":1,"134":1,"149":2,"166":1,"174":2,"175":3,"195":1,"199":2,"210":1,"222":1,"263":2,"285":1,"303":2,"308":2,"317":1,"333":1,"338":2,"396":1,"570":1,"574":1,"685":1,"1370":1,"1392":2,"1393":2,"1638":3,"1645":2,"1646":1,"1747":1,"1750":1,"1781":1,"1835":3,"1840":4,"1939":1,"1945":3,"1956":1,"1957":1,"1958":4,"1962":1,"1986":2,"1988":1,"1990":4,"1993":1,"2016":1,"2032":1,"2046":2,"2048":1,"2053":1,"2054":2,"2058":1,"2059":2,"2061":1,"2095":1,"2096":2,"2182":1,"2219":1,"2222":1,"2276":2,"2284":3,"2325":1,"2331":1,"2418":1,"2496":1,"2579":1,"2599":1,"2603":1,"2715":1,"2790":1,"2849":1,"2866":1,"2871":1,"2877":1,"2878":1,"2882":2,"2885":3,"2914":1,"2920":2,"2921":1,"2935":1}}],["hosted",{"2":{"93":1}}],["hostname",{"2":{"70":3}}],["however",{"2":{"555":1,"634":1,"643":1,"685":1,"690":1,"693":1,"703":1,"725":1,"754":1,"765":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1288":1,"1297":1,"1351":1,"1356":1,"1409":1,"1416":1,"1470":1,"1472":1,"1492":2,"1503":1,"1518":1,"1545":1,"1550":1,"1593":1,"1670":1,"1672":1,"1690":3,"1803":1,"1938":1,"1952":1,"1953":2,"2011":1,"2056":1,"2057":1,"2220":1,"2260":1,"2265":2,"2273":1,"2275":1,"2281":1,"2317":1,"2320":1,"2326":1,"2327":1,"2330":1,"2331":1,"2375":1,"2402":1,"2482":1,"2483":1,"2499":1,"2505":1,"2564":1,"2613":1,"2616":1,"2658":2,"2668":1,"2677":1,"2678":1,"2679":1,"2702":1,"2720":1,"2726":1,"2771":1,"2884":1,"2888":1,"2913":2,"2920":1,"2931":1,"2938":1,"2942":1,"2948":1}}],["how",{"0":{"603":1,"607":1,"626":1,"1331":1,"1337":1,"1347":1,"1364":1,"1498":1,"1500":1,"1525":1,"1526":1,"1594":1,"1790":1,"2001":1,"2002":1,"2066":1,"2076":1,"2077":1,"2309":1,"2387":1,"2438":1,"2466":1,"2467":1,"2475":1,"2632":1,"2794":1,"2796":1,"2903":1,"2904":1},"1":{"604":1,"627":1,"1595":1,"2003":1,"2004":1,"2005":1,"2006":1,"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"70":1,"76":1,"77":1,"90":1,"123":1,"153":2,"170":1,"172":1,"194":1,"263":1,"312":1,"384":1,"399":1,"471":1,"489":1,"490":1,"512":1,"561":1,"564":6,"587":1,"604":2,"607":1,"610":1,"614":2,"617":1,"626":1,"647":1,"664":1,"665":1,"668":1,"670":1,"672":1,"701":1,"829":1,"858":1,"860":1,"890":1,"922":1,"925":1,"957":1,"959":1,"991":1,"993":1,"1025":1,"1027":1,"1059":1,"1061":1,"1093":1,"1095":1,"1127":1,"1129":1,"1161":1,"1163":1,"1217":1,"1313":1,"1320":2,"1339":1,"1340":1,"1348":1,"1405":1,"1417":1,"1420":1,"1421":1,"1427":2,"1428":2,"1430":1,"1431":1,"1443":1,"1447":2,"1448":1,"1464":1,"1492":1,"1503":1,"1525":1,"1537":2,"1665":1,"1681":4,"1774":1,"1779":1,"1783":1,"1784":1,"1785":1,"1786":1,"1837":1,"1845":1,"1852":1,"1939":2,"1952":1,"1961":1,"1974":1,"1995":1,"2008":1,"2068":1,"2076":1,"2077":1,"2081":1,"2085":3,"2086":1,"2091":1,"2180":1,"2185":3,"2187":6,"2188":1,"2258":1,"2265":1,"2273":2,"2275":1,"2278":2,"2308":1,"2310":1,"2317":1,"2320":1,"2379":2,"2415":1,"2423":1,"2429":2,"2435":1,"2436":1,"2438":1,"2444":1,"2445":1,"2446":1,"2460":1,"2466":2,"2467":1,"2480":1,"2565":1,"2579":1,"2580":1,"2585":1,"2586":2,"2588":1,"2616":1,"2618":1,"2628":1,"2632":1,"2634":1,"2643":1,"2653":1,"2664":2,"2683":1,"2714":1,"2717":1,"2726":1,"2728":1,"2730":1,"2756":2,"2757":3,"2758":1,"2793":1,"2794":2,"2843":1,"2851":1,"2871":1,"2878":1,"2906":1,"2907":1,"2908":2,"2912":1,"2913":1,"2931":2,"2932":1,"2934":2,"2938":1,"2939":2,"2943":1,"2945":2}}],["h",{"0":{"560":1,"1466":1,"1631":1,"1634":1,"1852":1,"1955":1,"2003":1,"2091":1,"2159":1,"2161":1,"2416":1,"2454":1,"2457":1,"2890":1},"1":{"561":1,"562":1,"563":1,"564":1,"565":1,"566":1,"567":1,"568":1,"569":1,"570":1,"2162":1},"2":{"4":2,"5":4,"15":1,"18":1,"21":2,"24":2,"39":1,"40":8,"47":1,"65":3,"70":12,"73":2,"74":1,"75":2,"76":1,"86":2,"94":1,"114":6,"119":1,"134":1,"149":3,"168":2,"175":3,"184":2,"185":2,"188":3,"191":12,"199":12,"208":1,"210":13,"212":4,"222":10,"236":7,"246":1,"249":1,"266":12,"273":1,"277":2,"285":1,"294":1,"308":2,"328":1,"332":1,"333":3,"337":1,"344":1,"379":1,"380":1,"429":1,"433":1,"443":1,"448":1,"449":1,"450":1,"452":2,"453":2,"454":2,"455":2,"460":2,"461":2,"462":1,"469":2,"512":2,"555":2,"558":1,"560":2,"589":3,"593":1,"612":1,"647":1,"660":1,"665":3,"666":1,"667":1,"669":3,"672":2,"673":4,"691":1,"701":1,"703":1,"704":1,"717":1,"718":1,"721":3,"726":1,"727":1,"748":1,"749":3,"750":3,"751":2,"754":2,"755":2,"756":2,"759":2,"761":1,"762":1,"765":1,"767":1,"768":5,"769":1,"770":1,"802":1,"828":1,"829":1,"857":1,"858":1,"859":1,"860":1,"861":1,"889":1,"890":1,"891":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"956":1,"957":1,"958":1,"959":1,"960":1,"990":1,"991":1,"992":1,"993":1,"994":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1195":1,"1198":1,"1201":1,"1203":4,"1204":4,"1205":1,"1206":1,"1208":1,"1209":1,"1213":1,"1216":1,"1217":1,"1246":1,"1248":7,"1267":1,"1269":2,"1284":1,"1285":1,"1286":1,"1287":1,"1288":1,"1297":1,"1299":1,"1300":1,"1301":1,"1303":1,"1319":1,"1327":2,"1331":1,"1333":1,"1345":1,"1354":1,"1368":1,"1372":1,"1392":1,"1396":1,"1405":1,"1410":1,"1412":1,"1417":1,"1419":2,"1420":4,"1427":1,"1433":1,"1434":2,"1438":4,"1449":1,"1463":3,"1464":1,"1466":7,"1471":1,"1472":6,"1474":1,"1477":1,"1478":1,"1479":1,"1480":2,"1481":1,"1482":1,"1483":1,"1484":1,"1485":4,"1488":1,"1489":2,"1490":2,"1491":1,"1492":1,"1493":2,"1501":1,"1502":2,"1503":1,"1518":1,"1522":2,"1527":1,"1533":1,"1544":1,"1545":1,"1546":1,"1556":1,"1557":1,"1579":1,"1589":1,"1590":2,"1594":2,"1595":1,"1597":1,"1598":1,"1607":1,"1619":1,"1622":4,"1625":2,"1655":1,"1661":2,"1662":1,"1663":1,"1665":1,"1666":1,"1667":1,"1676":1,"1678":1,"1683":1,"1686":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1730":1,"1740":1,"1741":1,"1786":1,"1788":2,"1792":1,"1800":1,"1801":1,"1802":1,"1803":1,"1835":1,"1836":1,"1846":1,"1849":1,"1851":1,"1921":1,"1922":1,"1924":1,"1929":3,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1946":1,"1948":1,"1949":2,"1962":2,"1966":1,"1967":1,"1968":1,"1977":1,"1978":1,"1979":2,"1980":1,"1982":2,"1983":2,"1990":2,"1992":3,"1993":1,"1994":9,"1996":1,"1997":1,"1998":1,"2001":2,"2002":1,"2013":1,"2014":1,"2040":1,"2041":1,"2042":2,"2043":1,"2044":1,"2046":1,"2048":1,"2049":1,"2050":3,"2056":1,"2068":2,"2082":1,"2085":1,"2089":1,"2090":1,"2160":1,"2162":1,"2179":1,"2181":1,"2182":1,"2183":1,"2188":1,"2189":1,"2191":1,"2192":1,"2193":1,"2194":1,"2198":8,"2201":4,"2205":1,"2206":2,"2207":1,"2221":1,"2250":1,"2259":1,"2271":2,"2272":1,"2273":1,"2274":2,"2275":1,"2276":1,"2287":1,"2288":1,"2293":1,"2296":1,"2301":2,"2309":2,"2319":1,"2322":2,"2327":1,"2328":1,"2330":1,"2331":1,"2375":1,"2390":2,"2397":2,"2414":3,"2415":1,"2416":6,"2418":4,"2434":1,"2451":2,"2454":21,"2502":1,"2510":3,"2522":3,"2558":1,"2561":1,"2563":2,"2605":2,"2608":1,"2628":1,"2650":1,"2652":1,"2685":1,"2691":1,"2697":1,"2698":1,"2699":1,"2700":1,"2702":1,"2705":1,"2709":1,"2711":1,"2719":1,"2723":1,"2726":3,"2727":1,"2728":6,"2752":1,"2754":1,"2755":10,"2756":11,"2757":7,"2763":1,"2764":1,"2777":1,"2786":2,"2794":4,"2795":7,"2796":2,"2851":1,"2869":1,"2885":2,"2886":1,"2887":121,"2890":3,"2891":1,"2892":1,"2894":2,"2908":1,"2910":2,"2912":3,"2913":1,"2920":2,"2921":2,"2922":2,"2923":1,"2925":1,"2926":1,"2929":4,"2931":4}}],["hazards",{"0":{"2797":1},"1":{"2798":1,"2799":1,"2800":1}}],["hamming",{"2":{"2300":1}}],["hammer",{"2":{"394":1}}],["habit",{"2":{"1503":1,"1524":1}}],["habits",{"2":{"195":1,"2913":1}}],["hargett",{"2":{"2945":1}}],["harmful",{"2":{"2428":1,"2429":1}}],["harming",{"2":{"540":1}}],["harr",{"2":{"2068":49}}],["harvest",{"2":{"2037":1}}],["hardwired",{"2":{"2426":1}}],["hardware",{"0":{"47":1,"561":1,"721":1,"1483":1,"1658":1,"1669":1,"1679":1,"1697":1,"1943":1,"2208":1,"2263":1,"2264":1,"2278":1,"2279":1,"2283":1,"2374":1,"2439":1,"2458":1,"2483":1,"2685":1,"2686":1,"2696":1,"2717":1,"2853":1},"1":{"1659":1,"1660":1,"2264":1,"2265":2,"2266":1,"2267":1,"2280":1,"2375":1,"2484":1,"2485":1,"2486":1,"2487":1,"2488":1,"2489":1,"2490":1,"2491":1,"2492":1,"2493":1,"2494":1,"2495":1,"2697":1,"2698":1,"2699":1},"2":{"47":2,"113":1,"114":1,"133":1,"156":1,"160":1,"175":4,"178":2,"191":1,"203":1,"236":1,"249":1,"277":1,"285":2,"294":1,"414":1,"558":1,"570":1,"622":1,"624":1,"625":3,"633":2,"634":2,"637":2,"684":2,"687":1,"714":2,"715":1,"716":2,"721":2,"723":1,"746":1,"749":1,"750":1,"758":1,"768":2,"1193":1,"1196":1,"1198":1,"1199":1,"1201":1,"1266":1,"1367":1,"1405":1,"1407":1,"1409":1,"1483":4,"1546":1,"1548":1,"1550":1,"1553":1,"1681":2,"1841":1,"1850":1,"1920":1,"1943":1,"1953":1,"1964":1,"1972":3,"1984":2,"1987":1,"1988":3,"2037":1,"2088":1,"2178":1,"2212":1,"2262":1,"2278":1,"2280":1,"2292":2,"2294":1,"2375":1,"2389":1,"2439":2,"2455":2,"2456":1,"2458":1,"2459":1,"2484":1,"2488":1,"2501":1,"2502":1,"2503":1,"2563":1,"2676":1,"2684":1,"2685":2,"2686":3,"2691":1,"2696":1,"2704":1,"2707":1,"2714":2,"2716":1,"2728":4,"2729":2,"2733":1,"2735":2,"2736":1,"2739":1,"2744":1,"2748":1,"2749":1,"2758":1,"2818":1,"2856":1,"2901":1,"2902":1,"2908":1,"2935":1}}],["hardline",{"2":{"2425":1}}],["hardcoding",{"2":{"749":1}}],["hardcoded",{"2":{"175":1,"1488":1}}],["harder",{"2":{"665":1,"2478":1,"2586":1}}],["hard",{"2":{"39":1,"92":1,"263":1,"411":1,"423":2,"516":1,"540":3,"613":1,"676":1,"1802":1,"2189":1,"2447":1,"2460":1,"2579":1,"2637":1}}],["hate",{"2":{"429":1}}],["hat",{"0":{"1741":1,"1760":1},"1":{"1761":1},"2":{"285":1,"1738":1,"1741":12,"1747":2,"1760":1,"1761":1,"2601":1}}],["haierwangwei2005",{"2":{"149":1}}],["hacks",{"2":{"538":1}}],["hacking",{"2":{"376":1}}],["hackpad",{"2":{"210":1}}],["hacked",{"2":{"206":1}}],["hacky",{"2":{"160":1}}],["hack",{"2":{"114":2,"149":1}}],["happened",{"2":{"543":1,"613":1,"2218":1,"2919":1,"2950":1}}],["happen",{"2":{"432":1,"511":1,"652":1,"653":1,"687":1,"772":1,"1356":1,"1409":1,"1431":1,"2300":1,"2315":1,"2482":1,"2808":1}}],["happens",{"2":{"411":1,"579":1,"633":3,"647":1,"651":2,"1446":1,"1463":1,"1528":1,"1787":1,"1961":1,"2277":1,"2466":1,"2469":1,"2633":1,"2821":1,"2822":1,"2912":1,"2914":3,"2920":1}}],["happening",{"2":{"113":1,"651":1,"1608":1,"2390":1,"2397":1,"2929":2}}],["happy",{"2":{"119":1,"398":1,"1522":1,"2387":1,"2462":2,"2582":1}}],["haptics",{"2":{"209":1,"328":1,"1617":1}}],["haptic",{"0":{"1677":1,"1678":1,"1680":1,"1688":1,"1689":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1},"1":{"1678":1,"1679":1,"1680":1,"1681":2,"1682":2,"1683":2,"1684":2,"1685":2,"1686":2,"1687":2,"1688":2,"1689":1,"1690":2,"1691":2,"1692":2,"1693":2,"1694":2,"1695":2},"2":{"64":1,"114":2,"134":3,"160":1,"172":1,"175":1,"199":1,"209":2,"210":2,"222":1,"266":1,"651":1,"1678":14,"1680":21,"1687":1,"1688":1,"1689":3,"1690":4,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"2276":2,"2880":3,"2941":1}}],["hankaku",{"2":{"2515":1}}],["hanja",{"2":{"2515":1}}],["hangul",{"2":{"2515":1}}],["hang",{"2":{"365":1}}],["hangsheng",{"2":{"2567":1}}],["hangs",{"2":{"236":1}}],["hannah65",{"2":{"102":1}}],["handwiring",{"2":{"2424":1,"2908":1}}],["handwire",{"2":{"1298":1,"2423":2,"2435":1}}],["handwired",{"0":{"2462":1},"2":{"33":3,"39":1,"67":1,"72":1,"102":1,"114":2,"120":1,"122":1,"134":1,"149":2,"165":3,"175":5,"183":2,"199":3,"205":14,"210":1,"218":1,"222":7,"226":2,"241":1,"249":1,"253":6,"266":1,"277":3,"291":1,"294":2,"339":1,"439":2,"1441":1,"2406":1,"2408":1,"2410":1,"2414":1,"2436":1,"2462":2,"2674":1,"2675":1,"2728":1,"2729":1,"2885":1}}],["hand88",{"2":{"222":1}}],["handful",{"2":{"130":1,"134":1,"149":1,"198":1,"210":1,"222":2,"283":1,"665":1,"2399":1,"2567":1,"2710":1,"2915":1}}],["hand",{"0":{"2420":1},"1":{"2421":1,"2422":1,"2423":1,"2424":1,"2425":1,"2426":1,"2427":1,"2428":1,"2429":1,"2430":1,"2431":1,"2432":1,"2433":1,"2434":1,"2435":1,"2436":1},"2":{"114":1,"149":1,"191":1,"249":2,"277":1,"289":1,"317":1,"393":2,"568":1,"569":8,"1378":1,"1423":2,"1499":1,"1590":1,"1802":2,"2271":3,"2272":3,"2273":1,"2302":1,"2303":3,"2304":6,"2305":1,"2422":2,"2423":1,"2425":1,"2427":1,"2436":2,"2520":2,"2538":2,"2551":6,"2558":1,"2844":1,"2869":3,"2913":2,"2926":4,"2927":3}}],["handedness",{"0":{"568":1,"569":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2927":1},"1":{"569":1,"2271":1,"2272":1,"2273":1,"2274":1},"2":{"134":1,"191":1,"236":1,"568":2,"569":3,"1590":1,"1987":2,"2271":1,"2272":2,"2273":4,"2274":1,"2391":1,"2393":1,"2400":1,"2405":1,"2407":1,"2409":1,"2869":2,"2880":3,"2926":1,"2927":12,"2928":1}}],["handed",{"2":{"107":1,"199":1,"328":1,"2302":1,"2573":2,"2928":1}}],["handy",{"2":{"99":1,"630":1,"2071":1,"2561":1,"2620":1,"2899":1}}],["hands",{"0":{"2302":1,"2551":1},"1":{"2303":1,"2304":1,"2305":1,"2306":1},"2":{"94":1,"175":1,"199":2,"222":2,"231":3,"249":1,"289":1,"294":1,"568":1,"569":2,"1533":4,"1590":1,"1802":4,"1987":1,"2273":1,"2302":3,"2304":9,"2305":1,"2306":9,"2421":1,"2520":4,"2538":4,"2551":8,"2579":1,"2909":1,"2926":9,"2927":2,"2928":2}}],["handles",{"2":{"495":1,"714":1,"1291":1,"1357":1,"1589":1,"2015":1,"2077":1,"2563":1}}],["handle",{"0":{"2076":1,"2077":1},"2":{"134":1,"160":1,"174":1,"175":3,"199":2,"210":1,"214":1,"231":1,"236":1,"294":1,"307":2,"403":1,"489":1,"525":2,"632":1,"645":1,"646":1,"1336":1,"1409":1,"1471":1,"1503":1,"1532":1,"1533":1,"1784":1,"1785":1,"1964":1,"1983":1,"1988":2,"1994":3,"2015":1,"2057":1,"2076":1,"2305":1,"2310":2,"2318":1,"2753":1,"2756":11,"2757":18,"2936":1,"2938":1,"2941":1}}],["handled",{"2":{"105":2,"196":1,"561":2,"570":1,"630":1,"1431":1,"1466":1,"1517":1,"1786":1,"1959":1,"1977":1,"1999":1,"2016":1,"2058":1,"2300":1,"2308":1,"2728":1,"2757":1,"2931":1,"2941":1}}],["handlers",{"2":{"175":1,"277":1,"294":1,"2076":1,"2077":1}}],["handler",{"2":{"73":1,"175":1,"1205":1,"1292":1,"1549":1,"1954":1,"2277":4,"2290":1,"2764":1}}],["handling",{"0":{"49":1,"2009":1},"2":{"40":2,"44":1,"98":1,"114":1,"134":2,"149":1,"175":2,"199":2,"236":3,"266":4,"277":1,"285":3,"308":3,"317":2,"328":1,"406":1,"407":1,"564":8,"630":1,"1429":1,"1534":1,"1535":1,"1591":1,"1605":1,"1618":1,"1657":1,"1667":1,"1786":1,"1841":1,"2011":1,"2729":1,"2875":1,"2936":1}}],["hals",{"2":{"2739":1,"2745":1}}],["halve",{"2":{"1201":1,"2273":1}}],["halves",{"2":{"22":1,"35":1,"565":1,"569":1,"570":2,"1192":2,"1590":1,"2085":1,"2263":1,"2264":1,"2267":2,"2276":2,"2277":1,"2278":1,"2877":1}}],["halt",{"2":{"214":1,"2508":2,"2941":1}}],["hal",{"0":{"2745":1},"2":{"189":1,"701":1,"717":2,"718":2,"721":2,"768":1,"1203":2,"1204":2,"1248":1,"1299":1,"1303":1,"1556":1,"1557":1,"2684":1,"2745":1,"2746":1}}],["halberd",{"2":{"143":2}}],["halconf",{"2":{"40":2,"86":1,"717":2,"718":2,"721":2,"768":3,"1195":1,"1203":2,"1204":2,"1248":3,"1299":2,"1303":2,"1556":2,"1557":2,"2042":2}}],["halfkay",{"0":{"2394":1},"2":{"430":1,"573":1,"685":1,"689":1,"2394":3,"2396":1,"2397":1,"2844":1}}],["half",{"0":{"1196":1},"1":{"1197":1,"1198":1},"2":{"35":3,"107":2,"114":2,"149":1,"175":2,"191":2,"222":1,"236":1,"277":1,"565":5,"568":8,"569":2,"570":4,"574":1,"1192":1,"1193":1,"1196":3,"1197":1,"1198":1,"1199":2,"1200":4,"1205":2,"1207":1,"1590":3,"1666":3,"1835":1,"1852":1,"1938":1,"1939":1,"1977":1,"1983":3,"2085":2,"2091":1,"2096":1,"2179":1,"2191":1,"2264":1,"2267":1,"2269":2,"2273":1,"2278":2,"2378":1,"2426":1,"2520":2,"2538":2,"2704":2,"2794":1,"2871":1,"2877":1,"2878":1,"2880":14,"2927":2,"2939":1}}],["having",{"2":{"13":1,"149":1,"234":1,"418":1,"564":2,"618":1,"655":1,"749":1,"1207":1,"1209":1,"1318":1,"1332":1,"1381":1,"1425":1,"1455":1,"1472":1,"1503":1,"1608":1,"1622":1,"1623":1,"1850":1,"1998":1,"2071":2,"2088":1,"2275":1,"2297":1,"2330":1,"2474":1,"2590":1,"2651":1,"2671":1,"2691":1,"2728":1,"2751":1,"2784":1,"2789":1,"2829":1,"2923":1,"2950":1}}],["haven",{"2":{"179":1,"596":1,"1314":1,"1344":1,"2619":1,"2665":1}}],["have",{"0":{"604":1,"1338":1,"1341":1},"1":{"1342":1},"2":{"0":1,"1":1,"4":1,"7":1,"8":1,"9":1,"18":1,"26":1,"28":1,"29":1,"33":1,"35":1,"39":3,"40":1,"42":1,"43":1,"47":2,"49":1,"52":1,"57":1,"67":2,"69":1,"83":1,"86":1,"94":1,"98":1,"102":1,"114":1,"118":1,"122":1,"124":3,"128":1,"134":2,"140":2,"143":1,"157":2,"159":1,"165":1,"166":5,"167":1,"173":1,"175":1,"183":1,"184":1,"187":1,"188":1,"190":1,"195":1,"197":1,"198":1,"201":1,"206":1,"207":1,"208":1,"209":1,"212":3,"214":1,"220":1,"222":1,"224":1,"228":1,"231":1,"238":1,"240":1,"254":1,"255":1,"262":1,"268":1,"276":1,"277":1,"279":2,"283":4,"284":2,"294":1,"304":1,"389":1,"394":1,"399":1,"403":1,"411":1,"414":4,"418":1,"425":1,"458":2,"489":1,"490":1,"492":1,"494":1,"495":2,"499":1,"512":1,"513":1,"516":1,"527":1,"529":1,"537":1,"538":1,"546":1,"547":1,"555":1,"558":2,"561":1,"565":1,"567":1,"574":1,"589":2,"597":1,"599":1,"607":2,"608":1,"609":2,"610":1,"611":1,"612":1,"613":1,"614":2,"617":1,"627":1,"634":1,"637":1,"643":1,"646":4,"656":1,"661":1,"665":5,"673":1,"675":1,"676":1,"677":1,"678":1,"681":2,"683":1,"684":1,"685":2,"686":1,"687":1,"695":2,"702":1,"714":1,"723":1,"753":1,"762":1,"764":1,"768":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1200":1,"1219":1,"1245":1,"1247":1,"1248":1,"1266":1,"1269":1,"1286":1,"1287":1,"1300":1,"1311":1,"1313":1,"1315":1,"1321":1,"1322":1,"1340":1,"1342":2,"1343":1,"1344":1,"1353":1,"1354":2,"1359":1,"1365":1,"1366":1,"1367":1,"1368":1,"1371":1,"1378":1,"1382":1,"1398":2,"1405":1,"1409":1,"1410":1,"1413":3,"1414":1,"1416":1,"1425":1,"1426":1,"1427":1,"1433":1,"1442":1,"1444":1,"1447":1,"1462":1,"1464":3,"1465":1,"1467":1,"1470":2,"1471":2,"1472":3,"1477":1,"1481":1,"1483":1,"1485":1,"1490":1,"1492":1,"1498":2,"1499":3,"1503":2,"1517":1,"1522":3,"1527":1,"1533":1,"1538":1,"1542":2,"1546":2,"1589":3,"1591":1,"1597":1,"1602":1,"1609":2,"1612":2,"1620":1,"1622":2,"1627":2,"1641":1,"1661":1,"1666":1,"1671":1,"1680":1,"1683":1,"1739":1,"1765":1,"1781":1,"1782":1,"1800":1,"1802":3,"1947":1,"1948":1,"1952":1,"1953":1,"1956":1,"1983":1,"1984":1,"1985":1,"2016":1,"2043":1,"2085":1,"2178":1,"2183":1,"2185":1,"2261":1,"2265":1,"2267":1,"2272":1,"2273":1,"2278":3,"2280":2,"2286":1,"2287":1,"2292":1,"2293":1,"2298":1,"2300":1,"2308":1,"2309":1,"2310":4,"2317":3,"2320":1,"2328":1,"2329":1,"2330":3,"2382":1,"2384":1,"2386":1,"2387":2,"2389":1,"2392":1,"2394":1,"2399":1,"2404":1,"2417":4,"2419":1,"2422":1,"2428":2,"2429":3,"2431":2,"2432":1,"2434":1,"2435":2,"2437":1,"2448":1,"2450":1,"2452":1,"2453":4,"2454":1,"2460":2,"2462":1,"2464":2,"2466":1,"2470":1,"2472":1,"2474":2,"2475":1,"2482":1,"2483":1,"2497":1,"2499":1,"2501":1,"2506":1,"2508":1,"2553":1,"2559":1,"2561":2,"2562":1,"2563":1,"2564":2,"2565":2,"2567":1,"2568":1,"2569":3,"2571":1,"2572":1,"2579":2,"2580":1,"2582":1,"2583":1,"2584":1,"2587":2,"2589":1,"2590":1,"2594":3,"2595":1,"2596":1,"2597":1,"2601":1,"2608":2,"2612":2,"2614":2,"2616":3,"2620":1,"2626":2,"2629":1,"2632":3,"2633":2,"2634":2,"2635":1,"2636":1,"2637":2,"2638":1,"2640":2,"2655":2,"2657":1,"2658":2,"2665":1,"2669":1,"2674":1,"2676":1,"2680":1,"2682":2,"2685":1,"2687":1,"2690":1,"2696":1,"2705":1,"2707":1,"2709":1,"2710":1,"2714":2,"2717":1,"2721":1,"2722":1,"2727":1,"2728":5,"2731":2,"2732":1,"2749":1,"2751":2,"2754":1,"2756":3,"2757":1,"2772":1,"2782":1,"2785":1,"2786":2,"2791":2,"2795":1,"2884":1,"2886":1,"2890":1,"2902":1,"2907":1,"2909":1,"2911":1,"2912":1,"2927":1,"2933":1,"2934":1,"2938":5,"2944":1,"2950":1}}],["had60",{"2":{"222":1}}],["hadron",{"2":{"134":1}}],["hades",{"2":{"114":1,"218":2,"222":1}}],["had",{"2":{"7":1,"67":1,"86":1,"102":1,"116":1,"122":1,"124":1,"125":1,"143":1,"153":1,"159":1,"165":1,"166":1,"169":1,"183":1,"187":1,"189":1,"197":1,"233":1,"243":1,"245":1,"307":2,"331":1,"596":1,"1343":1,"1425":1,"1528":1,"2260":1,"2298":1,"2434":1,"2726":1}}],["hashbrowns",{"2":{"675":1}}],["hash",{"2":{"382":1,"411":3,"512":1,"589":1,"669":1,"671":1,"1692":1,"2512":1,"2522":1,"2546":1,"2555":1}}],["hasn",{"2":{"153":1,"202":1,"564":1,"596":1}}],["has",{"0":{"400":1},"2":{"1":1,"3":1,"7":1,"8":1,"15":1,"18":1,"21":1,"24":1,"39":3,"47":2,"48":1,"56":1,"57":1,"60":1,"67":1,"70":3,"82":1,"84":1,"86":3,"87":1,"90":1,"98":1,"99":1,"103":1,"109":1,"113":1,"114":2,"118":2,"123":2,"124":1,"126":1,"132":1,"137":1,"142":1,"146":1,"153":2,"154":1,"156":1,"160":1,"166":2,"168":1,"178":1,"179":1,"181":1,"182":1,"184":1,"187":1,"189":1,"190":3,"194":3,"196":1,"198":2,"199":1,"201":1,"202":1,"203":1,"206":1,"209":1,"212":2,"213":1,"217":1,"228":1,"230":1,"232":1,"233":3,"240":2,"243":2,"249":1,"262":2,"265":1,"271":1,"273":2,"277":1,"293":2,"302":1,"303":1,"305":2,"307":1,"312":4,"314":2,"315":1,"316":1,"317":1,"323":1,"331":3,"338":1,"378":1,"381":3,"382":1,"383":1,"403":1,"411":1,"419":1,"434":1,"459":1,"470":1,"486":1,"524":1,"529":1,"538":1,"554":1,"556":1,"561":2,"564":1,"569":1,"575":2,"581":1,"582":1,"583":1,"584":1,"588":1,"596":2,"599":1,"613":1,"624":2,"626":1,"634":1,"637":1,"641":1,"644":1,"646":1,"647":5,"655":1,"657":1,"659":1,"665":1,"686":2,"687":1,"689":1,"695":2,"696":1,"701":1,"729":1,"753":1,"760":1,"766":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1200":3,"1208":1,"1217":1,"1287":1,"1303":1,"1311":1,"1313":1,"1317":1,"1343":1,"1348":1,"1349":1,"1356":1,"1361":1,"1365":1,"1392":2,"1393":1,"1395":2,"1396":1,"1405":1,"1413":2,"1415":1,"1417":1,"1427":1,"1440":1,"1444":1,"1446":1,"1447":1,"1470":1,"1481":1,"1503":1,"1538":1,"1539":1,"1609":1,"1612":1,"1630":1,"1638":1,"1666":1,"1670":1,"1682":1,"1685":1,"1741":1,"1750":1,"1769":1,"1777":1,"1785":1,"1786":2,"1790":1,"1800":1,"1818":1,"1847":6,"1852":5,"1937":1,"1945":1,"1959":1,"1962":1,"1988":2,"1990":4,"2008":1,"2014":1,"2054":1,"2061":1,"2076":1,"2078":1,"2083":6,"2091":7,"2096":1,"2178":1,"2179":1,"2191":2,"2218":1,"2249":2,"2250":1,"2261":1,"2264":1,"2269":1,"2275":3,"2281":1,"2284":1,"2291":2,"2292":1,"2300":4,"2305":1,"2310":1,"2317":3,"2331":2,"2374":1,"2410":1,"2417":1,"2419":2,"2427":1,"2447":1,"2450":2,"2455":1,"2466":4,"2472":1,"2479":1,"2502":1,"2520":1,"2557":1,"2558":1,"2566":2,"2568":2,"2569":2,"2579":1,"2580":1,"2591":1,"2616":1,"2617":1,"2618":1,"2639":2,"2653":1,"2669":1,"2674":1,"2678":1,"2684":1,"2686":2,"2691":2,"2700":1,"2705":1,"2709":3,"2714":1,"2728":5,"2739":1,"2751":1,"2756":3,"2757":3,"2758":1,"2765":1,"2767":2,"2771":1,"2772":1,"2794":1,"2795":2,"2796":1,"2813":1,"2872":1,"2901":1,"2914":1,"2919":1,"2926":1,"2930":1,"2935":1,"2938":1,"2940":1,"2942":1,"2944":1,"2945":1}}],["c♯",{"2":{"1925":6,"2539":6}}],["cjoystick",{"2":{"1742":1,"1743":1}}],["c\\tuint16",{"2":{"1663":1}}],["cgram",{"0":{"1734":1},"1":{"1735":1},"2":{"1702":1,"1734":1,"1735":1}}],["cg",{"2":{"1378":1,"1485":4,"1486":4,"2520":7,"2538":7,"2924":1}}],["cédille",{"0":{"1355":1}}],["c8",{"0":{"1213":1}}],["c6",{"2":{"715":2,"1474":1,"1553":1,"2390":1,"2397":1,"2418":1,"2691":1,"2720":1}}],["c5²",{"2":{"695":1}}],["c5¹",{"2":{"695":1}}],["c5",{"2":{"693":1,"695":4,"715":2,"767":1,"1474":1,"1553":1,"1925":1,"2221":1,"2539":1}}],["c2²",{"2":{"695":2}}],["c2¹",{"2":{"695":2}}],["c2",{"2":{"693":1,"695":5,"1925":1,"2539":1,"2719":1,"2872":1}}],["c2json",{"0":{"439":1},"2":{"236":1,"439":3,"465":1}}],["c15",{"2":{"2680":1}}],["c14",{"2":{"2680":1}}],["c12832a1z",{"2":{"2283":1}}],["c13",{"2":{"1392":1,"1481":1,"2679":1,"2680":1,"2691":2}}],["c1²",{"2":{"695":2}}],["c1¹",{"2":{"695":2}}],["c1",{"2":{"693":1,"695":5,"767":1,"893":4,"1925":1,"2539":1,"2719":1,"2872":1}}],["c1ed",{"2":{"434":2}}],["c0²",{"2":{"695":2}}],["c0¹",{"2":{"695":2}}],["c0",{"2":{"693":1,"695":5,"699":2,"767":1,"2872":1}}],["ckeycode",{"2":{"2949":1}}],["ckeyrecord",{"2":{"632":1}}],["ck",{"2":{"1493":6,"1495":6,"2524":6}}],["ckled2001",{"2":{"149":1,"191":1,"209":4,"236":2,"1214":1}}],["c7",{"2":{"561":2,"570":1,"2278":1,"2720":1}}],["cdt",{"0":{"2658":1},"2":{"2657":1,"2658":2}}],["cdigitizer",{"2":{"1642":2}}],["cdeferred",{"2":{"657":1,"2757":1}}],["cd",{"0":{"432":1},"2":{"411":1,"422":5,"429":5,"432":1,"2384":1,"2501":1,"2608":1,"2755":2}}],["cdc",{"2":{"40":1,"2499":1}}],["cfloat",{"2":{"1485":1}}],["cfgr",{"2":{"701":1}}],["cfgr1",{"2":{"701":1}}],["cfg",{"2":{"397":2,"504":1,"515":1,"2508":2}}],["cformat",{"2":{"1":1,"41":1,"65":1,"199":1}}],["c3²",{"2":{"695":2}}],["c3¹",{"2":{"695":2}}],["c3",{"2":{"317":2,"693":1,"695":5,"1925":1,"1926":1,"2539":1,"2719":1}}],["c39",{"2":{"143":2}}],["cx",{"2":{"1846":1,"2082":1}}],["cxt",{"2":{"291":2,"294":2}}],["cx60",{"2":{"222":1}}],["csprintf",{"2":{"2889":1}}],["csr",{"2":{"2374":1}}],["cs5",{"2":{"1925":1,"2539":1}}],["cs4",{"2":{"1925":1,"2539":1}}],["csend",{"2":{"1448":4,"2226":2}}],["csg",{"2":{"1378":1}}],["csag",{"2":{"1378":1}}],["csa",{"2":{"1378":1,"1776":1,"2887":1}}],["cs3",{"2":{"729":2,"863":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1925":1,"2539":1}}],["cs2",{"2":{"729":2,"863":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1925":1,"2539":1}}],["cs1",{"2":{"729":2,"863":3,"928":3,"962":3,"996":3,"1030":3,"1064":3,"1098":3,"1132":3,"1166":3,"1925":1,"2539":1}}],["csx",{"2":{"727":1,"857":1,"860":4,"861":1,"921":1,"925":1,"926":1,"956":1,"959":1,"960":1,"990":1,"993":1,"994":1,"1024":1,"1027":1,"1028":1,"1058":1,"1061":1,"1062":1,"1092":1,"1095":1,"1126":1,"1129":1,"1160":1,"1163":1}}],["cstatic",{"2":{"647":1,"1447":1,"1946":1,"2285":1,"2756":1,"2757":2,"2761":1,"2791":1}}],["cstc40",{"2":{"311":4,"317":1}}],["css",{"0":{"350":1}}],["cs",{"0":{"733":1,"739":1},"1":{"734":1,"740":1},"2":{"266":1,"285":1,"726":2,"734":1,"740":1,"857":3,"860":15,"921":1,"925":2,"956":1,"959":2,"990":1,"993":2,"1024":1,"1027":2,"1058":1,"1061":2,"1092":2,"1095":6,"1126":2,"1129":6,"1160":2,"1163":6,"1378":2,"1776":2,"1925":1,"1951":2,"1966":2,"1967":2,"1974":2,"1979":2,"1981":2,"1982":2,"1983":16,"1985":3,"2375":1,"2539":1,"2756":4}}],["csy",{"2":{"236":1,"1095":3,"1096":1,"1129":3,"1130":1,"1163":3,"1164":1}}],["cbbrowne",{"2":{"1365":3}}],["cb1",{"2":{"1219":5}}],["cb1800",{"2":{"222":1}}],["cb",{"0":{"1213":1},"2":{"656":2,"657":1,"2502":1}}],["cb87v2",{"2":{"222":1}}],["cb87rgb",{"2":{"222":1}}],["cb65",{"2":{"222":1}}],["cbool",{"2":{"90":1,"105":1,"125":2,"169":2,"194":2,"195":1,"307":1,"324":1,"325":1,"593":1,"631":1,"652":1,"653":1,"1329":1,"1380":1,"1419":2,"1462":1,"1471":1,"1510":2,"1517":1,"1533":1,"1535":1,"1600":1,"1613":1,"1657":4,"1668":2,"1794":1,"1838":1,"1840":1,"1855":1,"1958":1,"1984":1,"2015":1,"2073":1,"2074":1,"2075":1,"2076":1,"2094":2,"2095":3,"2096":2,"2190":1,"2225":1,"2277":1,"2300":3,"2381":1,"2575":1,"2576":1,"2577":1,"2756":1,"2757":14,"2761":1,"2783":1,"2920":1,"2921":1,"2924":1,"2928":1,"2929":1,"2931":1}}],["cypress",{"2":{"2802":1}}],["cypher",{"2":{"222":2}}],["cycling",{"2":{"1849":1,"2085":2,"2183":1,"2187":1,"2323":1,"2327":2}}],["cycled",{"2":{"1852":1,"2091":1,"2331":1,"2871":1,"2878":1}}],["cycles",{"0":{"1376":1},"2":{"126":1,"145":1,"201":1,"224":1,"238":1,"279":1,"307":1,"752":1,"1376":1,"1410":7,"1489":2,"1490":1,"1495":3,"1702":1,"1953":1,"1980":2,"2180":1,"2524":3}}],["cycle",{"0":{"412":1,"1431":1},"2":{"63":1,"103":2,"105":1,"107":1,"116":1,"131":1,"149":1,"156":1,"166":1,"168":1,"171":1,"174":1,"178":1,"182":1,"187":1,"198":1,"201":1,"212":1,"217":1,"222":1,"224":1,"230":1,"233":1,"251":1,"262":1,"265":1,"268":1,"273":1,"275":1,"284":1,"303":1,"307":1,"327":1,"328":1,"332":1,"403":2,"405":1,"406":1,"407":1,"412":4,"561":1,"749":1,"769":2,"1286":1,"1365":1,"1431":12,"1462":1,"1484":1,"1541":1,"1543":1,"1544":1,"1546":1,"1563":1,"1675":1,"1848":4,"1849":9,"1855":1,"2084":6,"2085":21,"2091":1,"2094":1,"2181":2,"2275":1,"2327":1,"2331":1,"2332":2,"2377":2,"2502":1,"2527":1,"2528":2,"2537":4,"2544":2,"2545":6,"2552":2,"2857":1,"2871":1,"2878":1,"2894":7,"2903":2}}],["cyan",{"2":{"492":1,"494":1,"641":1,"1417":4,"2089":2,"2189":2,"2205":2}}],["cyberstar",{"2":{"222":1}}],["cccb1608",{"2":{"2387":1}}],["cc80",{"2":{"1924":3}}],["ccopyright",{"2":{"2464":3}}],["ccombo",{"2":{"1620":1}}],["cconst",{"2":{"272":2,"729":1,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1492":1,"1602":1,"1603":1,"1604":1,"1702":1,"1774":2,"1776":1,"1851":1,"2090":1,"2191":1,"2303":1,"2330":2,"2562":1,"2585":1,"2927":1,"2939":1,"2949":1}}],["cchar",{"2":{"1450":2,"2927":1}}],["ccw",{"2":{"307":4,"1667":8}}],["cc",{"0":{"1923":1},"2":{"210":3,"339":1,"1371":2,"1923":1,"1924":7}}],["ccase",{"2":{"1992":1}}],["ccar",{"2":{"191":1}}],["ccache",{"2":{"133":1,"134":2}}],["cncl",{"2":{"2516":1,"2522":1}}],["cname",{"2":{"341":1}}],["cn",{"2":{"199":1}}],["cz",{"2":{"191":4}}],["czech",{"2":{"38":1,"266":1,"2887":9}}],["c++",{"0":{"2944":1},"2":{"191":1,"384":1,"393":4,"513":1,"605":1,"2057":1,"2657":1,"2658":2,"2663":1,"2671":1,"2944":3,"2945":1}}],["cmsis",{"2":{"2674":1}}],["cmt",{"2":{"2572":1}}],["cmousekey",{"2":{"1932":1}}],["cmu",{"2":{"1928":1}}],["cmb",{"2":{"1618":4}}],["cmd=",{"2":{"2417":1}}],["cmd=yes",{"2":{"2417":2}}],["cmd",{"2":{"688":1,"1673":1,"1804":1,"1954":2,"2542":1,"2572":1}}],["cmatrix",{"2":{"625":1}}],["cmp",{"2":{"199":1,"1428":1,"2190":3}}],["cm",{"2":{"175":1,"1606":3,"1627":1,"1630":1}}],["c4²",{"2":{"695":1}}],["c4¹",{"2":{"695":1}}],["c4",{"0":{"1396":1},"2":{"173":1,"175":1,"191":1,"693":1,"695":4,"715":2,"767":1,"1389":1,"1391":5,"1396":1,"1474":1,"1553":1,"1925":1,"2539":1,"2719":1}}],["cwd",{"2":{"2674":2}}],["cw",{"2":{"172":1,"175":1,"307":4,"1594":1,"1667":8,"2529":1}}],["ctypedef",{"2":{"1417":1,"2277":1,"2316":1,"2317":1,"2767":1,"2769":1,"2773":1,"2774":1,"2775":1,"2776":1,"2777":1,"2778":1,"2779":1}}],["cts",{"2":{"1266":1,"1268":1,"1269":4}}],["ctl",{"2":{"564":1,"2313":1,"2317":3,"2520":3,"2538":3,"2542":1,"2572":1,"2926":2}}],["ct",{"2":{"324":1,"325":1,"2313":3,"2314":1,"2315":3,"2316":2}}],["ctpc",{"0":{"304":1},"2":{"160":2,"175":1,"199":2,"304":1,"308":1}}],["ctrl+g",{"2":{"2346":1}}],["ctrl+x",{"2":{"2344":1}}],["ctrl+y",{"2":{"1767":1}}],["ctrl+z",{"2":{"1602":1}}],["ctrl+delete",{"2":{"1381":1}}],["ctrl+shift+i",{"2":{"2728":1}}],["ctrl+shift+z",{"2":{"1767":1}}],["ctrl+shift+a",{"2":{"1501":2}}],["ctrl+shift+backspace",{"2":{"1381":1}}],["ctrl+shift+enter",{"2":{"688":1}}],["ctrl+scroll",{"2":{"320":1}}],["ctrl+c",{"2":{"196":1,"1798":1,"2226":1,"2393":1}}],["ctrl+alt+del",{"2":{"1381":1}}],["ctrl+alt+shift+backspace",{"2":{"1381":1}}],["ctrl+a",{"2":{"196":1,"1501":2,"1798":1,"2226":1}}],["ctrl",{"2":{"131":2,"134":2,"149":1,"199":1,"231":2,"279":1,"353":1,"683":1,"1349":1,"1378":8,"1444":3,"1448":1,"1472":1,"1529":1,"1593":1,"1595":5,"1617":1,"1676":1,"1767":2,"1776":8,"1777":1,"1781":3,"1787":1,"1788":3,"2065":3,"2068":5,"2069":8,"2226":1,"2257":2,"2381":1,"2514":2,"2520":1,"2522":2,"2538":1,"2550":2,"2576":3,"2577":2,"2652":4,"2669":1,"2673":2,"2831":1,"2889":1,"2926":2,"2929":3,"2931":2}}],["cease",{"2":{"2902":1}}],["ce10f7642b0459e409839b23cc91498945119b4d",{"2":{"2387":1}}],["ceil",{"2":{"1968":1}}],["cells",{"2":{"1553":1}}],["celebrate",{"2":{"607":1}}],["centroid",{"2":{"2871":1,"2878":1}}],["centrally",{"2":{"1343":1}}],["centos",{"2":{"2601":1,"2626":1}}],["centered",{"2":{"1742":1,"1949":1,"2477":1}}],["center",{"2":{"175":1,"462":1,"1741":2,"1846":4,"1849":1,"2082":4,"2085":4,"2185":1,"2280":2,"2871":2,"2878":2}}],["cenum",{"2":{"307":1,"591":1,"593":2,"610":1,"629":1,"1446":2,"1605":2,"1617":1,"1618":1,"1849":1,"1957":1,"1962":1,"1993":1,"1994":1,"2071":1,"2079":1,"2085":1,"2329":1,"2912":1}}],["certainly",{"2":{"276":1,"1964":1,"2483":1,"2626":1,"2726":1,"2729":1}}],["certain",{"0":{"2011":1,"2072":1},"1":{"2073":1,"2074":1,"2075":1},"2":{"149":1,"546":1,"571":1,"574":1,"575":1,"640":1,"651":1,"690":1,"716":1,"1248":1,"1320":1,"1372":1,"1455":1,"1471":2,"1541":1,"1846":2,"1926":1,"1946":1,"2011":1,"2074":1,"2082":2,"2285":1,"2295":1,"2298":1,"2300":1,"2381":1,"2775":1,"2780":1,"2871":1,"2878":1,"2886":2,"2925":4,"2948":1}}],["ce",{"2":{"134":1,"199":1,"266":1,"271":1,"311":1,"322":1,"1389":2,"1391":4,"1399":4,"2070":1,"2383":1}}],["cest73",{"2":{"114":1,"222":1}}],["cpainter",{"2":{"2756":9,"2757":3}}],["cpnl",{"2":{"2517":1,"2522":1}}],["cplay",{"2":{"1485":2}}],["cp",{"2":{"511":1}}],["cpp",{"2":{"439":1,"1357":1,"2945":1}}],["cpi",{"2":{"236":1,"249":1,"1966":2,"1967":2,"1970":2,"1974":1,"1978":2,"1979":2,"1981":2,"1982":2,"1983":8,"1984":3,"1988":4,"1989":2,"1996":2,"1997":4}}],["cpus",{"2":{"2417":2}}],["cpu",{"2":{"114":1,"573":2,"719":1,"1193":1,"1196":1,"1199":1,"1290":1,"1292":1,"1293":1,"1294":1,"2054":1,"2417":1,"2741":1,"2937":1}}],["cpuclock",{"2":{"114":1}}],["cptc",{"2":{"92":1}}],["crux",{"2":{"2910":1}}],["cryptographically",{"2":{"2790":1}}],["cryptographic",{"2":{"2711":2}}],["crystal",{"2":{"2682":1}}],["crsl",{"2":{"2516":1,"2522":1}}],["crsel",{"2":{"2516":2,"2522":2}}],["crgblight",{"2":{"2191":2,"2198":1,"2205":1}}],["crgb",{"2":{"2088":1}}],["crippled",{"2":{"2566":1,"2567":9,"2569":1}}],["cribbit",{"2":{"2425":1,"2436":1}}],["criteria",{"0":{"2748":1},"2":{"403":1,"433":1,"2008":1,"2317":1,"2707":1}}],["critical",{"2":{"402":1,"407":1,"412":1,"492":1,"538":1,"688":1,"1558":1,"1956":1,"2728":1,"2729":2,"2736":1}}],["crin",{"2":{"222":1}}],["croatian",{"2":{"2887":3}}],["crossdiy",{"2":{"2567":1}}],["crossing",{"2":{"720":1}}],["cross",{"2":{"393":1,"1849":3,"2085":3,"2894":1}}],["cropped",{"2":{"114":1}}],["credential",{"2":{"2667":1}}],["credentials",{"2":{"312":1,"2667":1}}],["credits",{"0":{"1540":1,"1963":1}}],["credit",{"2":{"1440":1,"1540":1}}],["cream|",{"2":{"681":1}}],["cream||order",{"2":{"681":1}}],["cream",{"2":{"681":1}}],["creative",{"2":{"1427":1}}],["creating",{"0":{"1769":1,"2504":1,"2630":1},"1":{"1770":1,"1771":1,"1772":1,"1773":1},"2":{"297":1,"308":1,"425":1,"500":1,"612":1,"629":1,"1203":2,"1204":2,"1332":1,"1365":1,"1442":1,"1769":1,"1990":1,"2057":1,"2179":1,"2302":1,"2330":1,"2331":1,"2447":1,"2565":1,"2579":1,"2587":1,"2594":1,"2629":1,"2638":1,"2725":1,"2734":1,"2756":11,"2757":1,"2923":1}}],["creators",{"2":{"2569":1}}],["creator",{"2":{"114":1}}],["creates",{"2":{"429":1,"438":1,"439":1,"444":1,"445":1,"450":1,"489":1,"1541":1,"2569":1,"2640":1,"2658":1}}],["created",{"2":{"114":1,"251":1,"294":1,"381":1,"1343":1,"1381":1,"1417":2,"1424":1,"1661":1,"2013":1,"2308":1,"2432":1,"2433":1,"2464":1,"2567":1,"2584":1,"2595":1,"2597":1,"2634":3,"2643":1,"2674":2,"2714":1,"2728":1,"2757":3,"2945":1}}],["create",{"0":{"141":1,"2584":1,"2603":1,"2605":1},"2":{"76":1,"132":1,"134":2,"149":1,"187":1,"188":1,"190":1,"191":1,"249":1,"293":1,"305":1,"312":1,"314":1,"379":1,"403":1,"409":1,"412":1,"429":1,"500":1,"578":1,"588":1,"596":1,"597":1,"607":1,"628":1,"666":1,"673":1,"681":2,"683":1,"766":1,"1311":1,"1350":1,"1356":1,"1417":1,"1463":1,"1471":1,"1472":1,"1485":1,"1486":1,"1500":1,"1502":1,"1527":1,"1620":1,"1627":1,"1661":1,"1767":1,"1773":1,"1781":1,"1795":1,"1850":2,"2013":1,"2088":2,"2298":2,"2317":1,"2318":1,"2329":1,"2330":1,"2387":3,"2431":1,"2473":1,"2506":1,"2556":1,"2577":1,"2579":1,"2584":2,"2594":2,"2603":1,"2605":2,"2606":1,"2630":1,"2635":1,"2636":1,"2640":1,"2714":1,"2756":2,"2757":1,"2758":1,"2761":1,"2782":1,"2796":1,"2851":1,"2906":1,"2908":1,"2945":2,"2950":1}}],["cradio",{"2":{"175":1}}],["craftwalk",{"2":{"134":1,"266":1}}],["crc8",{"2":{"114":1}}],["crc",{"2":{"107":1,"114":3,"175":1,"191":1}}],["crkbd",{"2":{"86":3,"94":1,"191":1,"222":1,"2273":3,"2567":1,"2610":1}}],["cidoo",{"2":{"2567":1}}],["cif",{"2":{"1801":1}}],["cint16",{"2":{"2757":2}}],["cint",{"2":{"354":1}}],["cipulot",{"2":{"249":1,"285":1}}],["city42",{"2":{"210":1}}],["ciruitry",{"2":{"1681":1}}],["circ",{"2":{"2546":1,"2555":1}}],["circle",{"2":{"2180":1,"2757":4}}],["circles",{"2":{"153":1,"2757":2}}],["circumvent",{"2":{"2742":1}}],["circumflex",{"2":{"2546":1,"2555":1}}],["circumstances",{"2":{"209":1,"754":2,"757":1,"1320":1,"2011":1,"2275":1,"2278":1,"2387":1,"2674":1,"2704":1,"2756":1,"2757":1}}],["circular",{"0":{"1301":1},"2":{"93":1,"190":2,"191":2,"236":1,"701":2,"1299":2,"1301":3,"1976":1,"2753":1}}],["circuitry",{"0":{"2038":1},"2":{"2037":1}}],["circuits",{"2":{"1545":1}}],["circuit",{"0":{"1297":1,"1367":1},"2":{"39":4,"1367":2,"1371":1,"1409":1,"1545":1,"1681":1,"2399":1,"2401":1,"2404":1,"2434":1,"2466":4,"2685":1,"2856":1,"2857":1}}],["cirque",{"0":{"1973":1},"1":{"1974":1,"1975":1,"1976":1,"1977":1},"2":{"118":4,"174":1,"175":4,"190":2,"191":7,"249":3,"1973":4,"1974":20,"1975":5,"1976":3,"1977":3,"1994":1,"2014":1}}],["ci",{"2":{"41":1,"50":1,"76":1,"134":1,"149":1,"179":1,"199":1,"222":2,"249":2,"294":2,"506":1,"609":1,"704":2,"2179":1,"2855":1}}],["cie1931",{"2":{"84":1,"93":1}}],["cie",{"2":{"39":1,"2757":1}}],["cvoid",{"2":{"24":1,"90":1,"105":1,"125":1,"169":1,"196":1,"624":1,"635":1,"641":1,"649":1,"745":1,"763":1,"772":1,"1322":1,"1417":2,"1487":1,"1551":1,"1591":1,"1601":1,"1701":1,"1798":1,"1855":1,"1948":1,"1997":1,"2046":1,"2053":1,"2057":1,"2059":1,"2097":1,"2191":1,"2277":1,"2314":1,"2652":4,"2685":1,"2686":1,"2687":1,"2757":10,"2762":1,"2950":1}}],["c",{"0":{"272":1,"304":1,"459":1,"469":1,"512":1,"1211":1,"1392":1,"1394":1,"1399":1,"1445":1,"1479":1,"1633":1,"1634":1,"1713":1,"1929":1,"2456":1,"2560":1,"2585":1,"2688":1,"2809":1},"1":{"1400":1,"1401":1,"1446":1,"1447":1,"1448":1,"1449":1,"1450":1,"1451":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1461":1,"1462":1,"1714":1,"2561":1,"2562":1,"2563":1,"2564":1,"2689":1,"2690":1,"2691":1},"2":{"18":1,"21":2,"24":3,"39":3,"40":6,"63":1,"64":1,"65":1,"74":1,"75":2,"77":1,"86":2,"92":1,"98":1,"105":2,"114":4,"134":5,"149":2,"153":1,"160":2,"168":1,"173":3,"175":1,"184":1,"187":2,"191":3,"196":1,"199":3,"208":1,"222":4,"231":2,"234":9,"236":2,"247":1,"249":1,"266":6,"272":1,"277":1,"285":1,"303":1,"304":2,"307":3,"308":2,"311":1,"317":2,"328":1,"338":1,"354":2,"367":1,"373":1,"379":1,"382":1,"384":1,"393":4,"429":2,"430":2,"438":1,"439":4,"455":2,"459":5,"462":1,"469":9,"500":1,"512":3,"513":1,"529":1,"548":1,"560":1,"568":1,"572":6,"588":2,"589":4,"591":1,"592":1,"593":2,"605":1,"608":2,"612":1,"623":3,"624":1,"625":2,"629":1,"647":3,"658":1,"659":1,"660":1,"666":1,"669":1,"691":1,"695":1,"717":3,"718":2,"720":1,"721":4,"722":1,"723":1,"725":1,"727":1,"729":1,"766":2,"768":3,"801":2,"805":1,"827":2,"831":1,"856":2,"859":1,"860":1,"861":1,"863":1,"888":2,"891":1,"893":1,"920":2,"924":1,"925":1,"926":1,"928":1,"955":2,"958":1,"959":1,"960":1,"962":1,"989":2,"992":1,"993":1,"994":1,"996":1,"1023":2,"1026":1,"1027":1,"1028":1,"1030":1,"1057":2,"1060":1,"1061":1,"1062":1,"1064":1,"1091":2,"1095":1,"1096":1,"1098":1,"1125":2,"1129":1,"1130":1,"1132":1,"1159":2,"1162":1,"1163":1,"1164":1,"1166":1,"1195":2,"1198":2,"1200":2,"1201":2,"1203":3,"1204":3,"1205":1,"1207":1,"1208":1,"1209":1,"1215":2,"1219":1,"1248":3,"1269":2,"1287":1,"1288":1,"1297":1,"1299":2,"1300":1,"1301":1,"1303":2,"1311":1,"1327":1,"1329":1,"1331":1,"1347":1,"1348":1,"1354":1,"1357":1,"1368":1,"1372":1,"1377":2,"1378":1,"1381":1,"1388":2,"1389":7,"1390":2,"1391":10,"1392":3,"1395":1,"1396":1,"1399":1,"1405":2,"1406":3,"1407":4,"1414":2,"1417":2,"1420":3,"1431":1,"1433":1,"1434":1,"1438":2,"1439":1,"1446":2,"1449":1,"1452":1,"1453":1,"1462":1,"1463":2,"1464":6,"1470":6,"1471":1,"1472":5,"1479":2,"1484":2,"1485":13,"1486":16,"1487":1,"1488":1,"1489":1,"1490":2,"1491":4,"1492":2,"1493":1,"1501":1,"1502":1,"1503":1,"1518":2,"1527":1,"1532":2,"1535":1,"1545":1,"1546":1,"1556":3,"1557":2,"1589":1,"1590":2,"1595":1,"1597":1,"1598":1,"1602":3,"1604":1,"1606":1,"1612":1,"1620":1,"1622":4,"1625":1,"1633":2,"1634":3,"1655":2,"1656":3,"1657":4,"1661":1,"1662":1,"1665":6,"1666":2,"1667":4,"1668":2,"1669":1,"1684":1,"1685":1,"1687":2,"1689":1,"1701":1,"1714":1,"1740":1,"1741":1,"1742":1,"1768":1,"1777":1,"1779":1,"1781":1,"1788":2,"1792":1,"1794":1,"1795":1,"1798":1,"1800":1,"1801":8,"1802":1,"1803":1,"1804":2,"1839":1,"1850":1,"1851":2,"1852":1,"1855":1,"1921":1,"1922":1,"1924":1,"1925":19,"1926":1,"1929":3,"1937":10,"1938":1,"1945":2,"1946":1,"1947":1,"1948":1,"1949":2,"1953":1,"1954":1,"1958":1,"1962":2,"1968":1,"1983":3,"1984":1,"1996":1,"1998":1,"2000":1,"2001":2,"2006":2,"2011":2,"2012":2,"2013":2,"2040":1,"2041":1,"2042":2,"2043":1,"2044":1,"2046":1,"2047":1,"2048":6,"2049":1,"2050":2,"2051":3,"2052":1,"2057":2,"2068":1,"2069":3,"2070":1,"2072":1,"2086":5,"2087":1,"2088":1,"2090":2,"2091":1,"2094":1,"2187":1,"2189":3,"2206":1,"2207":2,"2211":1,"2222":1,"2225":1,"2250":1,"2271":2,"2272":2,"2273":3,"2274":2,"2275":6,"2276":10,"2277":3,"2278":10,"2284":2,"2286":1,"2287":1,"2288":1,"2290":1,"2296":1,"2301":1,"2305":1,"2309":1,"2312":2,"2313":1,"2315":1,"2317":3,"2318":2,"2319":4,"2322":1,"2329":3,"2330":1,"2331":1,"2332":3,"2381":1,"2387":1,"2390":1,"2391":1,"2392":1,"2395":1,"2397":1,"2400":1,"2411":1,"2414":1,"2415":2,"2417":15,"2418":1,"2421":1,"2423":1,"2424":3,"2443":1,"2451":1,"2455":2,"2456":1,"2457":2,"2472":2,"2502":1,"2508":18,"2510":3,"2522":3,"2539":19,"2541":1,"2552":3,"2556":1,"2560":1,"2561":1,"2563":3,"2564":1,"2568":1,"2576":7,"2577":4,"2584":2,"2585":2,"2605":3,"2608":1,"2610":2,"2650":1,"2657":1,"2658":2,"2663":1,"2669":1,"2671":1,"2674":5,"2675":1,"2688":1,"2689":1,"2690":2,"2691":7,"2700":1,"2706":1,"2709":3,"2714":1,"2726":1,"2728":6,"2751":2,"2753":11,"2755":4,"2756":19,"2757":12,"2764":1,"2768":1,"2786":1,"2792":4,"2794":2,"2809":1,"2814":1,"2853":1,"2885":2,"2886":1,"2889":1,"2890":3,"2891":1,"2892":3,"2893":3,"2894":2,"2895":2,"2910":3,"2913":1,"2920":2,"2921":2,"2922":2,"2923":1,"2924":1,"2926":9,"2927":2,"2928":2,"2929":4,"2931":3,"2934":1,"2935":4,"2936":1,"2938":2,"2944":4,"2945":1,"2949":1}}],["caddy",{"2":{"2435":1}}],["cadence",{"2":{"399":1}}],["cadet",{"0":{"2255":1,"2550":1,"2841":1},"1":{"2256":1,"2257":1,"2258":1,"2259":1,"2260":1},"2":{"39":1,"172":1,"175":2,"249":1,"1594":1,"2255":1,"2257":7,"2258":1,"2259":3,"2260":3,"2550":8,"2841":1,"2889":1,"2941":1}}],["cag",{"2":{"1378":1}}],["ca",{"2":{"1378":1,"1622":1,"1776":1}}],["ca4",{"2":{"893":1}}],["ca3",{"2":{"893":1,"1219":2}}],["ca2",{"2":{"893":1,"1219":2}}],["ca1",{"2":{"893":1,"1219":3}}],["caveats",{"0":{"590":1,"1423":1,"1675":1,"1765":1,"1920":1,"2258":1,"2325":1,"2554":1,"2573":1},"1":{"591":1,"592":1,"593":1},"2":{"2676":1,"2728":1,"2784":1}}],["came",{"2":{"496":1,"563":1,"2869":1}}],["camps",{"2":{"188":1}}],["caution",{"2":{"600":1}}],["caught",{"2":{"418":1}}],["causing",{"2":{"156":1,"1485":1,"1986":1,"2498":1,"2677":1,"2764":1}}],["causes",{"2":{"609":1,"720":1,"1193":1,"1287":1,"1471":1,"1684":1,"2640":1}}],["caused",{"2":{"114":1,"134":1,"199":1,"210":1,"399":1,"1786":1}}],["cause",{"2":{"73":1,"88":2,"104":2,"127":2,"185":1,"212":1,"414":2,"609":1,"719":2,"1290":1,"1376":1,"1417":2,"1423":1,"1427":1,"1497":1,"1551":1,"1953":1,"1961":3,"2006":1,"2008":1,"2048":2,"2091":1,"2301":1,"2390":1,"2397":1,"2431":1,"2463":1,"2573":2,"2678":1,"2679":1,"2889":1,"2909":1}}],["cached",{"2":{"370":1}}],["cachyos",{"2":{"317":1,"2626":1}}],["cain",{"2":{"222":1}}],["caffeinated",{"2":{"222":1}}],["cables",{"2":{"1200":1,"2265":6}}],["cable",{"2":{"222":1,"686":1,"1194":1,"1197":1,"1200":1,"1981":1,"2261":1,"2264":3,"2265":1,"2266":1,"2267":1,"2274":3,"2278":1,"2410":2,"2426":1,"2430":1,"2431":1}}],["cathodes",{"2":{"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1}}],["cat24c512",{"2":{"749":2}}],["catb",{"2":{"604":1}}],["catch",{"2":{"525":1,"656":1,"1538":1}}],["catching",{"2":{"525":1}}],["cat",{"2":{"294":1}}],["caticorn",{"2":{"210":1}}],["category",{"2":{"1389":1}}],["categories",{"2":{"414":1}}],["categorize",{"2":{"110":1}}],["catered",{"2":{"384":1}}],["cater",{"2":{"166":1,"236":1,"308":1,"1192":1}}],["caterina",{"0":{"2392":1,"2499":1},"1":{"2393":1},"2":{"70":1,"568":1,"573":1,"685":1,"689":11,"2273":1,"2392":3,"2393":1,"2502":5,"2503":1}}],["casual",{"2":{"529":1}}],["cassini",{"2":{"222":1}}],["cassette42",{"2":{"143":2}}],["case",{"0":{"2330":1},"2":{"44":1,"105":2,"160":1,"194":3,"195":2,"210":1,"213":1,"231":4,"273":1,"307":2,"324":1,"325":1,"397":1,"537":1,"593":6,"597":1,"631":2,"632":1,"657":2,"686":2,"772":1,"797":1,"1248":1,"1336":1,"1354":1,"1368":1,"1378":1,"1380":1,"1381":2,"1410":1,"1417":8,"1430":4,"1431":1,"1446":5,"1447":4,"1462":1,"1471":2,"1472":1,"1491":2,"1501":1,"1503":5,"1510":6,"1517":3,"1522":2,"1527":1,"1533":15,"1537":1,"1545":1,"1589":1,"1600":6,"1605":2,"1609":1,"1612":7,"1613":1,"1617":3,"1618":4,"1620":3,"1623":1,"1657":4,"1670":1,"1743":5,"1784":1,"1795":1,"1924":1,"1945":3,"1958":5,"1959":1,"1962":2,"1984":1,"1992":1,"1994":1,"1996":1,"2006":2,"2011":1,"2012":1,"2013":1,"2069":3,"2070":5,"2071":4,"2073":1,"2074":1,"2076":2,"2077":2,"2079":14,"2095":2,"2096":1,"2178":1,"2191":5,"2225":1,"2249":1,"2284":3,"2294":1,"2310":2,"2315":4,"2316":1,"2317":12,"2318":6,"2319":7,"2330":1,"2384":2,"2418":1,"2422":1,"2425":1,"2430":1,"2449":1,"2466":1,"2482":1,"2505":1,"2570":1,"2575":1,"2576":3,"2577":1,"2616":1,"2634":1,"2690":1,"2726":1,"2783":2,"2890":1,"2910":2,"2911":2,"2912":7,"2920":2,"2921":1,"2922":1,"2924":7,"2925":2,"2926":2,"2928":2,"2929":1,"2931":3}}],["cases",{"2":{"15":1,"75":1,"166":3,"191":1,"194":1,"202":1,"234":1,"236":1,"246":1,"439":1,"511":1,"516":1,"542":1,"563":1,"643":1,"668":2,"669":1,"672":1,"703":1,"765":1,"1246":1,"1267":1,"1284":1,"1532":1,"1609":1,"1622":1,"1784":1,"1785":1,"1984":1,"2054":1,"2070":1,"2297":1,"2309":3,"2327":1,"2458":1,"2566":1,"2567":1,"2568":1,"2751":1,"2901":1,"2921":1,"2931":1}}],["carries",{"2":{"2265":1}}],["carryover",{"2":{"2259":1}}],["carefully",{"2":{"2428":1,"2944":1}}],["careful",{"2":{"533":1,"643":1,"645":1,"688":1,"1491":1,"2428":1,"2429":1,"2585":1}}],["care",{"2":{"236":1,"766":1,"774":1,"777":1,"780":1,"783":2,"786":1,"789":1,"792":1,"795":1,"1260":1,"1263":1,"1278":1,"1280":1,"1424":1,"1537":1,"1787":1,"2727":1,"2940":1}}],["carbo65",{"2":{"222":1}}],["car",{"2":{"222":1}}],["carve",{"2":{"113":1,"114":1,"133":1,"134":1}}],["card",{"2":{"111":2,"143":4,"1440":1}}],["captioning",{"2":{"2291":1}}],["capture",{"2":{"143":2,"194":1,"214":2,"312":2,"1491":1,"1962":1}}],["cap",{"2":{"1945":1,"2284":1}}],["capitalized",{"2":{"1593":2}}],["capitalization",{"2":{"191":1,"2074":1}}],["capitals",{"2":{"1593":1}}],["capital",{"2":{"222":1,"1499":2,"2650":1,"2794":1}}],["capacitors",{"2":{"1697":1}}],["capacity",{"2":{"160":1}}],["capability",{"2":{"179":1,"277":1,"312":1,"460":1,"1548":1,"2374":1,"2728":1}}],["capabilities",{"0":{"340":1,"341":1},"1":{"341":1,"342":2,"343":2,"344":2,"345":2,"346":2,"347":2,"348":2,"349":1,"350":1,"351":1,"352":1,"353":1,"354":1,"355":1,"356":1,"357":1,"358":1,"359":1,"360":1,"361":1,"362":1,"363":1},"2":{"160":1,"340":1,"1192":1,"2571":1,"2728":1,"2901":1}}],["capable",{"2":{"39":1,"153":2,"545":1,"715":1,"744":1,"1196":1,"1372":1,"1474":1,"1477":1,"1553":1,"1738":1,"2399":1,"2482":1,"2505":1,"2566":1,"2569":1,"2704":1,"2728":4,"2741":1,"2765":1,"2772":1,"2833":1}}],["capswrd",{"2":{"172":1,"175":1}}],["caps",{"0":{"152":1,"1593":1,"1594":1,"1596":1,"1601":1,"2312":1,"2529":1,"2861":1},"1":{"1594":1,"1595":2,"1596":1,"1597":2,"1598":2,"1599":2,"1600":2,"1601":2},"2":{"149":2,"152":2,"160":2,"172":2,"175":3,"191":5,"199":2,"210":2,"222":2,"231":2,"249":1,"308":1,"317":1,"379":1,"564":2,"565":1,"570":1,"589":2,"1347":3,"1349":1,"1354":1,"1455":3,"1533":1,"1544":2,"1546":4,"1593":18,"1594":9,"1595":2,"1597":6,"1598":6,"1599":9,"1600":8,"1601":6,"1603":1,"1625":1,"1693":1,"1762":2,"1835":1,"1836":2,"1838":1,"1839":13,"1840":3,"1855":1,"1945":1,"1948":1,"2094":1,"2095":2,"2096":4,"2188":1,"2189":2,"2190":1,"2276":1,"2284":1,"2287":1,"2312":5,"2313":1,"2315":2,"2330":1,"2332":1,"2513":5,"2520":17,"2522":5,"2529":3,"2538":17,"2552":1,"2563":1,"2854":1,"2857":2,"2861":7,"2867":2,"2936":1,"2941":1}}],["capsunlocked",{"2":{"143":3,"149":1,"205":4,"210":1,"249":1}}],["capslock",{"2":{"112":1,"149":1,"152":1,"1311":2,"2189":2,"2854":1}}],["calc",{"2":{"2517":1,"2522":1}}],["calculator",{"2":{"2503":1,"2517":2,"2522":2}}],["calculate",{"2":{"1846":4,"1953":1,"1994":1,"2082":4,"2185":1,"2388":1}}],["calculated",{"2":{"749":1,"754":2,"1252":1,"1747":1,"1953":1,"2379":2,"2756":1}}],["calculating",{"2":{"222":1,"1368":1,"2379":2}}],["calculation",{"0":{"2378":1},"1":{"2379":1,"2380":1,"2381":1},"2":{"40":1,"114":1,"210":3,"328":1,"333":1,"1970":2,"2379":1,"2381":2}}],["calibrating",{"2":{"1975":1}}],["calibration",{"2":{"249":1,"1975":1}}],["california",{"2":{"222":1,"437":1}}],["calice",{"2":{"222":1}}],["caller",{"2":{"1446":1}}],["called",{"2":{"39":1,"94":1,"171":1,"194":1,"214":1,"370":1,"397":1,"623":1,"625":2,"627":1,"630":2,"631":1,"633":1,"637":1,"643":1,"645":1,"646":2,"648":1,"651":1,"706":1,"733":1,"772":2,"809":1,"835":1,"867":1,"897":1,"932":1,"966":1,"1000":1,"1034":1,"1068":1,"1102":1,"1136":1,"1170":1,"1223":1,"1250":2,"1271":2,"1283":1,"1305":1,"1332":1,"1350":1,"1409":1,"1417":1,"1428":3,"1446":1,"1551":1,"1585":1,"1587":1,"1591":1,"1600":1,"1670":1,"1686":1,"1704":2,"1706":1,"1707":1,"1708":1,"1779":1,"1781":1,"1794":1,"1835":1,"1837":1,"1954":2,"1960":1,"1986":1,"2008":2,"2011":1,"2014":1,"2073":1,"2178":2,"2290":6,"2291":1,"2300":4,"2309":1,"2310":8,"2330":1,"2331":1,"2419":2,"2466":2,"2482":1,"2501":1,"2561":1,"2584":1,"2633":1,"2650":1,"2652":1,"2709":1,"2714":1,"2784":1,"2924":1,"2930":1,"2936":1,"2941":2,"2943":1}}],["calling",{"2":{"149":1,"672":1,"696":1,"1455":1,"1594":1,"1741":1,"1765":1,"1947":1,"1954":1,"1999":1,"2001":2,"2286":1,"2290":1,"2310":2,"2756":1,"2757":3}}],["callback",{"0":{"169":1,"214":1,"660":1,"1531":1,"2006":1},"1":{"1532":1,"1533":1,"1534":1,"1535":1,"1536":1},"2":{"149":1,"169":1,"175":1,"196":1,"214":2,"222":1,"294":1,"317":1,"655":1,"656":4,"657":8,"718":1,"722":1,"1292":1,"1428":6,"1481":1,"1532":2,"1533":1,"1535":1,"1536":1,"1600":4,"1657":1,"1668":1,"1794":1,"1807":1,"1808":1,"1809":1,"1865":1,"1867":1,"1908":1,"1910":1,"1911":1,"1912":1,"1915":1,"1917":1,"1961":2,"1987":1,"1988":5,"1989":2,"1993":1,"2005":3,"2061":1,"2069":1,"2073":1,"2075":1,"2077":1,"2107":1,"2109":1,"2168":1,"2170":1,"2171":1,"2172":1,"2175":1,"2177":1,"2306":1,"2316":1,"2340":1,"2342":1,"2610":1,"2652":5,"2924":4,"2925":5,"2926":1,"2931":1}}],["callbacks",{"0":{"90":1,"105":1,"229":1,"656":1,"1584":1,"1621":1,"1657":1,"1668":1,"1798":1,"1854":1,"1958":1,"1988":1,"1989":1,"2005":1,"2093":1,"2381":1,"2652":1},"1":{"1585":1,"1586":1,"1587":1,"1588":1,"1855":1,"2006":1,"2094":1,"2095":1,"2096":1,"2097":1},"2":{"93":1,"105":1,"114":2,"149":2,"175":4,"229":1,"236":2,"249":1,"277":3,"298":2,"307":2,"308":1,"328":1,"574":1,"625":1,"656":1,"660":1,"722":1,"1195":2,"1428":2,"1601":1,"1798":1,"1837":1,"1841":1,"1960":1,"1989":1,"2042":1,"2418":1,"2652":1,"2729":2}}],["call",{"0":{"1663":1},"2":{"114":1,"134":2,"175":1,"191":1,"249":2,"266":1,"294":1,"323":1,"381":1,"402":1,"405":1,"406":1,"574":1,"593":1,"598":1,"627":1,"635":1,"641":1,"647":1,"656":1,"673":1,"703":1,"707":1,"735":1,"765":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1229":1,"1233":1,"1237":1,"1239":1,"1246":1,"1267":1,"1281":1,"1284":1,"1306":1,"1350":1,"1417":1,"1428":1,"1600":1,"1661":1,"1662":2,"1663":1,"1664":1,"1835":1,"1841":1,"1850":1,"1945":1,"1954":2,"1957":1,"2008":2,"2046":1,"2058":1,"2088":1,"2198":2,"2277":1,"2284":1,"2290":2,"2461":1,"2473":1,"2651":3,"2652":1,"2653":1,"2664":1,"2741":2,"2757":3,"2794":1,"2893":1,"2936":2,"2950":3}}],["calls",{"2":{"40":1,"114":1,"133":1,"134":1,"175":2,"199":1,"266":2,"277":1,"533":1,"646":1,"2198":1,"2228":1,"2309":2,"2461":1,"2764":1,"2941":1,"2950":4}}],["candidate",{"2":{"403":1,"456":1,"2728":1}}],["candidates",{"2":{"403":1}}],["candybar",{"2":{"33":4}}],["canonical",{"2":{"383":1}}],["cannot",{"2":{"302":1,"470":1,"689":1,"695":3,"755":1,"767":1,"1503":1,"1592":1,"1610":1,"1622":1,"1723":1,"1781":1,"1939":1,"1954":2,"1985":1,"2181":1,"2386":1,"2394":1,"2399":1,"2404":1,"2482":1,"2496":1,"2505":1,"2554":1,"2567":1,"2575":1,"2589":1,"2610":1,"2676":1,"2677":2,"2679":1,"2733":1,"2735":1,"2737":1,"2747":2,"2750":1,"2757":2,"2784":1,"2886":1,"2912":3}}],["cannonkeys",{"2":{"175":1,"199":1,"222":22}}],["canada",{"2":{"2887":1}}],["canadian",{"2":{"149":1,"249":1,"2887":5}}],["canary60rgb",{"2":{"253":2}}],["canary",{"2":{"253":2}}],["canceling",{"2":{"1381":1}}],["cancelled",{"2":{"1381":1,"1765":1}}],["cancelling",{"0":{"659":1},"2":{"1533":1}}],["canceled",{"2":{"320":1,"659":1,"2931":1}}],["cancel",{"0":{"2346":1,"2370":1},"2":{"149":1,"657":1,"659":3,"1765":2,"2346":1,"2370":1,"2516":2,"2522":2,"2651":2}}],["can",{"0":{"562":1,"563":1,"564":1,"591":1,"606":1,"1315":1,"1332":1,"1333":1,"1337":1,"1345":1,"1347":1,"1368":1,"2307":1,"2386":1,"2474":1},"1":{"1316":1,"1317":1,"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"0":1,"1":1,"9":1,"29":1,"35":1,"39":1,"40":2,"42":1,"52":1,"60":1,"70":3,"73":1,"74":1,"80":1,"83":1,"98":1,"112":2,"119":2,"120":2,"124":1,"138":1,"152":1,"163":1,"175":1,"188":1,"194":1,"195":2,"199":1,"214":2,"217":1,"221":1,"228":1,"231":1,"233":1,"240":1,"262":1,"263":1,"288":2,"303":2,"306":1,"315":1,"320":1,"323":1,"328":1,"338":2,"353":1,"373":2,"377":1,"378":1,"379":2,"381":1,"383":1,"384":1,"386":1,"389":2,"393":4,"396":3,"397":1,"399":1,"402":1,"403":1,"414":1,"415":1,"416":1,"417":1,"429":3,"430":2,"433":5,"435":1,"436":1,"437":1,"443":1,"459":1,"460":1,"473":1,"474":1,"476":1,"477":2,"482":1,"483":1,"488":1,"489":1,"491":2,"492":1,"494":3,"495":1,"496":1,"497":1,"498":1,"499":1,"500":1,"501":1,"504":1,"505":4,"507":1,"508":1,"509":1,"510":1,"511":1,"512":3,"513":1,"514":1,"515":1,"533":1,"538":1,"540":1,"542":2,"543":1,"544":1,"547":1,"557":1,"558":1,"559":2,"560":1,"561":2,"562":1,"565":2,"568":1,"569":1,"570":2,"572":1,"575":6,"578":2,"579":1,"580":2,"581":1,"592":1,"593":1,"600":1,"604":1,"606":1,"607":1,"610":1,"611":1,"612":1,"613":1,"614":1,"618":1,"625":1,"627":1,"629":1,"630":1,"645":2,"646":2,"648":2,"651":1,"656":1,"657":3,"658":1,"659":1,"660":2,"665":2,"668":1,"669":1,"670":1,"671":1,"672":4,"673":1,"675":1,"678":1,"681":1,"683":1,"686":2,"687":3,"688":1,"690":2,"693":1,"695":1,"699":1,"701":3,"703":1,"715":1,"717":1,"719":3,"720":4,"721":2,"722":1,"743":1,"746":1,"748":1,"749":2,"750":2,"751":1,"758":1,"759":1,"762":1,"763":1,"765":1,"766":1,"767":1,"768":1,"772":2,"797":1,"859":1,"923":1,"924":1,"958":1,"992":1,"1026":1,"1060":1,"1094":1,"1128":1,"1162":1,"1196":1,"1197":1,"1198":1,"1201":1,"1203":1,"1204":1,"1205":2,"1206":1,"1207":2,"1208":1,"1209":1,"1213":1,"1246":1,"1247":1,"1248":2,"1250":1,"1252":1,"1267":1,"1269":1,"1271":1,"1283":2,"1284":1,"1286":1,"1288":1,"1289":1,"1296":1,"1297":1,"1298":1,"1301":1,"1311":1,"1312":1,"1313":2,"1316":2,"1318":1,"1319":2,"1320":1,"1322":1,"1324":1,"1325":1,"1326":1,"1327":1,"1329":1,"1331":1,"1332":2,"1338":1,"1340":1,"1343":2,"1348":2,"1353":1,"1354":1,"1357":1,"1358":1,"1364":1,"1365":1,"1366":1,"1368":1,"1371":1,"1373":1,"1377":2,"1378":6,"1379":1,"1380":1,"1381":1,"1388":3,"1390":1,"1392":1,"1393":1,"1396":2,"1405":1,"1406":1,"1412":1,"1413":1,"1415":1,"1416":4,"1417":5,"1419":2,"1422":3,"1423":2,"1425":1,"1427":4,"1428":4,"1429":1,"1431":1,"1433":2,"1434":1,"1436":1,"1438":2,"1440":1,"1441":2,"1442":1,"1446":1,"1447":1,"1448":6,"1450":2,"1451":2,"1452":1,"1455":1,"1463":2,"1464":2,"1465":2,"1467":2,"1468":1,"1470":7,"1471":3,"1472":4,"1473":3,"1474":2,"1477":1,"1480":1,"1481":2,"1482":1,"1483":1,"1484":1,"1485":6,"1487":1,"1488":2,"1489":1,"1490":2,"1491":2,"1492":1,"1493":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":2,"1503":3,"1517":1,"1518":1,"1526":2,"1527":1,"1528":1,"1529":1,"1532":1,"1533":1,"1535":1,"1538":2,"1541":1,"1550":1,"1551":2,"1554":1,"1558":1,"1591":2,"1593":1,"1594":1,"1600":1,"1605":2,"1606":1,"1607":1,"1608":1,"1609":3,"1610":3,"1612":2,"1613":1,"1617":2,"1618":3,"1620":1,"1621":1,"1622":2,"1625":1,"1626":1,"1628":2,"1642":2,"1655":1,"1657":1,"1661":4,"1662":1,"1664":2,"1665":6,"1666":2,"1667":1,"1668":1,"1670":2,"1676":1,"1686":2,"1687":1,"1702":1,"1704":1,"1738":3,"1739":1,"1740":1,"1741":2,"1742":2,"1762":1,"1765":2,"1766":2,"1770":1,"1777":2,"1779":2,"1781":2,"1784":2,"1787":2,"1788":1,"1794":1,"1795":2,"1798":1,"1800":1,"1801":1,"1802":3,"1838":1,"1840":1,"1844":1,"1846":3,"1849":2,"1850":2,"1851":1,"1852":1,"1855":1,"1865":1,"1867":1,"1930":1,"1933":1,"1935":3,"1936":1,"1937":2,"1938":2,"1939":1,"1940":1,"1941":1,"1946":2,"1947":2,"1948":1,"1952":2,"1953":1,"1954":2,"1956":1,"1957":1,"1958":1,"1959":1,"1962":2,"1964":2,"1965":1,"1968":2,"1970":1,"1974":2,"1976":3,"1977":1,"1983":2,"1985":3,"1986":3,"1988":3,"1989":2,"1990":4,"1998":1,"1999":1,"2001":2,"2004":1,"2008":1,"2011":2,"2014":1,"2016":1,"2039":1,"2041":1,"2042":1,"2044":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":2,"2056":1,"2057":3,"2058":1,"2065":1,"2070":2,"2071":1,"2073":1,"2074":1,"2075":1,"2076":1,"2079":1,"2080":1,"2082":3,"2085":3,"2087":1,"2088":2,"2089":1,"2090":1,"2091":1,"2094":1,"2096":2,"2097":1,"2107":1,"2109":1,"2178":1,"2182":1,"2183":1,"2184":1,"2187":1,"2188":2,"2189":3,"2190":1,"2191":2,"2205":1,"2206":2,"2207":3,"2213":1,"2214":1,"2222":1,"2223":1,"2249":1,"2250":1,"2251":1,"2258":1,"2259":2,"2260":1,"2261":1,"2264":1,"2265":1,"2271":2,"2272":2,"2273":3,"2274":1,"2275":3,"2276":1,"2277":4,"2278":2,"2279":1,"2280":1,"2286":2,"2287":1,"2290":2,"2291":1,"2292":2,"2293":2,"2294":3,"2295":1,"2297":1,"2298":2,"2300":1,"2301":1,"2304":1,"2305":1,"2308":2,"2309":1,"2316":1,"2317":2,"2318":1,"2319":2,"2322":1,"2324":1,"2326":1,"2327":2,"2328":1,"2329":2,"2330":4,"2331":3,"2344":1,"2345":1,"2346":1,"2375":2,"2377":1,"2381":1,"2384":2,"2387":5,"2396":1,"2401":1,"2406":1,"2408":1,"2410":1,"2412":1,"2414":2,"2417":4,"2418":5,"2422":1,"2423":3,"2425":2,"2426":1,"2427":2,"2429":4,"2430":2,"2431":2,"2432":3,"2435":2,"2439":1,"2441":1,"2445":1,"2450":1,"2454":3,"2455":2,"2457":1,"2458":1,"2460":1,"2461":1,"2463":1,"2464":1,"2466":4,"2467":2,"2469":2,"2470":2,"2473":2,"2474":1,"2475":1,"2480":1,"2481":1,"2482":1,"2483":1,"2486":1,"2501":1,"2502":2,"2503":2,"2504":1,"2505":1,"2506":1,"2508":3,"2535":1,"2557":2,"2558":2,"2560":1,"2561":6,"2562":1,"2566":2,"2567":1,"2569":2,"2572":3,"2573":3,"2575":2,"2576":1,"2579":3,"2580":1,"2583":4,"2584":3,"2586":1,"2587":1,"2590":3,"2592":3,"2593":1,"2594":2,"2596":1,"2597":2,"2599":1,"2600":1,"2610":2,"2612":1,"2614":1,"2616":1,"2617":1,"2618":1,"2619":1,"2628":2,"2629":2,"2634":4,"2635":1,"2636":1,"2637":1,"2639":4,"2640":7,"2650":2,"2651":1,"2652":2,"2658":2,"2662":1,"2669":2,"2673":1,"2674":4,"2677":1,"2678":4,"2679":4,"2680":1,"2682":1,"2683":1,"2685":2,"2686":1,"2691":3,"2694":1,"2695":2,"2700":1,"2701":1,"2702":1,"2703":1,"2705":1,"2709":2,"2710":1,"2711":3,"2714":1,"2716":1,"2719":2,"2720":1,"2722":1,"2726":1,"2727":1,"2728":6,"2729":2,"2730":1,"2731":2,"2732":1,"2735":1,"2753":1,"2754":4,"2755":2,"2756":37,"2757":13,"2763":1,"2764":2,"2767":1,"2774":1,"2781":1,"2786":2,"2787":2,"2789":2,"2790":1,"2811":1,"2819":1,"2834":1,"2851":1,"2852":2,"2871":1,"2876":1,"2878":1,"2884":1,"2886":1,"2889":2,"2890":3,"2891":1,"2892":3,"2893":3,"2894":2,"2899":1,"2901":2,"2902":1,"2906":1,"2910":5,"2911":2,"2912":9,"2913":1,"2920":4,"2921":3,"2922":2,"2929":3,"2931":6,"2935":2,"2938":1,"2940":1,"2941":2,"2942":1,"2944":2,"2945":2,"2946":2,"2947":2,"2950":8}}],["chunks",{"2":{"2290":1}}],["chunder",{"2":{"354":1}}],["chnu",{"2":{"1925":1,"2539":1}}],["chnd",{"2":{"1925":1,"2539":1}}],["ch9",{"2":{"1925":1,"2539":1}}],["ch8",{"2":{"1925":1,"2539":1}}],["ch7",{"2":{"1925":1,"2539":1}}],["ch6",{"2":{"1925":1,"2539":1}}],["ch582",{"2":{"2735":1,"2744":1}}],["ch5",{"2":{"1925":1,"2539":1}}],["ch4",{"2":{"721":1,"1925":1,"2539":1}}],["ch3",{"2":{"721":1,"1556":1,"1925":1,"2539":1}}],["chyn",{"2":{"721":1,"1303":2}}],["chy",{"2":{"721":1,"1483":1}}],["ch2",{"2":{"717":2,"718":2,"721":1,"1925":1,"2539":1}}],["ch16",{"2":{"1925":1,"2539":1}}],["ch15",{"2":{"1925":1,"2539":1}}],["ch14",{"2":{"1925":1,"2539":1}}],["ch13",{"2":{"1925":1,"2539":1}}],["ch12",{"2":{"1925":1,"2539":1}}],["ch11",{"2":{"1925":1,"2539":1}}],["ch10",{"2":{"1925":1,"2539":1}}],["ch1",{"2":{"716":2,"717":2,"718":2,"721":1,"722":1,"1483":1,"1925":1,"2539":1}}],["ch",{"2":{"199":1,"210":1,"612":1}}],["chrome",{"2":{"2589":1}}],["chromeos",{"2":{"175":1}}],["chromatic",{"2":{"1485":2,"1486":3,"1490":5}}],["chromatonemini",{"2":{"236":1}}],["christmas",{"2":{"39":2,"143":2,"165":2,"2181":1,"2183":2,"2184":2,"2185":4,"2544":1,"2894":1}}],["chosfox",{"2":{"2567":1}}],["chose",{"2":{"1350":1,"1482":1,"2599":1,"2619":1}}],["chosen",{"2":{"768":1,"1197":1,"1199":1,"1204":1,"1248":1,"1269":1,"1680":1,"1937":2,"2276":1,"2415":1,"2702":1,"2703":1,"2705":2,"2844":1}}],["choosing",{"0":{"1202":1,"2707":1},"1":{"1203":1,"1204":1,"1205":1,"2708":1,"2709":1,"2710":1,"2711":1,"2712":1,"2713":1},"2":{"1193":1,"1198":1,"1201":1,"2568":1,"2667":1}}],["chooses",{"2":{"1409":1,"2750":1}}],["choose",{"2":{"512":2,"514":1,"597":1,"625":1,"701":1,"1196":1,"1199":1,"1248":1,"1409":1,"1480":1,"1788":1,"1937":1,"2329":1,"2387":1,"2465":2,"2570":1,"2594":1,"2606":1,"2626":1,"2652":1,"2656":1,"2658":1,"2701":1,"2901":1,"2920":1,"2929":1}}],["chord",{"0":{"2928":1},"2":{"1444":1,"1605":1,"1612":3,"1615":1,"1622":1,"2292":1,"2298":1,"2300":12,"2926":2,"2928":2}}],["chorded",{"2":{"1381":1,"2291":1,"2300":1}}],["chording",{"2":{"574":1,"1380":1,"1602":1,"2923":1}}],["chords",{"2":{"564":1,"1484":1,"2075":1,"2297":1,"2298":1,"2300":1,"2927":2,"2928":1}}],["chordal",{"0":{"289":1,"2926":1,"2927":1},"1":{"2927":1,"2928":1},"2":{"289":4,"294":2,"2854":1,"2869":1,"2909":1,"2913":2,"2926":14,"2927":7,"2928":5}}],["chore",{"2":{"160":1,"222":1,"249":1,"308":2}}],["choc",{"2":{"143":2}}],["choco60",{"2":{"143":2}}],["choices",{"2":{"613":1,"2579":1,"2580":1,"2869":1}}],["choice",{"2":{"74":1,"124":1,"1554":1,"1613":1,"1779":1,"2057":1,"2260":1,"2297":1,"2300":1,"2317":1,"2658":1,"2659":1,"2675":1,"2676":1,"2707":1,"2714":2}}],["children",{"2":{"1538":1}}],["child",{"2":{"1538":5,"2729":1}}],["chili",{"2":{"143":2,"222":1}}],["chime",{"2":{"651":1,"1486":1}}],["chimera",{"2":{"143":8,"149":1,"2449":1}}],["chiffre",{"2":{"143":2,"210":1,"236":1}}],["chidori",{"2":{"143":2}}],["chipid",{"2":{"2508":2}}],["chip",{"2":{"130":1,"276":1,"547":1,"613":2,"723":1,"726":2,"734":1,"740":1,"746":2,"1371":1,"1681":1,"1949":1,"1952":1,"1966":1,"1967":1,"1974":1,"1979":1,"1982":1,"1983":4,"2178":1,"2374":2,"2375":3,"2431":1,"2446":1,"2502":2,"2612":1,"2679":3,"2705":2,"2729":1,"2735":1,"2754":1,"2756":11,"2818":1}}],["chipsets",{"2":{"2376":1}}],["chipset",{"2":{"2375":1}}],["chips",{"2":{"123":1,"613":1,"746":4,"749":2,"750":2,"758":1,"759":1,"1320":1,"1395":1,"2374":1,"2395":1,"2490":2,"2705":1,"2711":1,"2735":1}}],["chibios",{"0":{"43":2,"44":1,"69":1,"77":1,"263":1,"419":1,"420":1,"421":1,"423":2,"728":1,"768":1,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1218":1,"1248":1,"1269":1,"1295":1,"1555":1,"2042":1,"2684":1},"1":{"420":1,"421":1,"422":1,"423":1,"769":1,"770":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1556":1,"1557":1,"2685":1,"2686":1,"2687":1},"2":{"14":1,"39":5,"40":5,"43":6,"44":1,"65":4,"69":4,"73":1,"74":1,"77":1,"93":1,"108":2,"113":1,"114":9,"133":1,"134":8,"149":6,"160":4,"175":7,"178":1,"191":11,"199":6,"210":6,"222":2,"236":6,"249":3,"266":3,"277":1,"294":4,"308":2,"328":1,"339":6,"411":5,"419":3,"420":2,"421":8,"422":7,"547":1,"554":1,"605":1,"695":1,"696":1,"701":1,"716":2,"721":2,"723":1,"728":1,"762":1,"768":1,"797":1,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1195":1,"1196":1,"1199":1,"1203":3,"1204":3,"1218":1,"1299":1,"1303":2,"1556":1,"1557":1,"1956":1,"2042":1,"2278":1,"2279":1,"2387":2,"2417":1,"2465":1,"2684":4,"2685":2,"2686":2,"2687":3,"2696":2,"2697":1,"2698":1,"2707":10,"2709":4,"2710":3,"2711":1,"2712":2,"2713":2,"2726":1,"2728":5,"2853":1,"2935":1}}],["chevron",{"2":{"2085":4,"2894":1}}],["chew",{"2":{"300":2,"308":1}}],["cherry",{"2":{"2890":1}}],["cherryb",{"2":{"222":4}}],["chere",{"2":{"2669":1}}],["cherish",{"2":{"191":1}}],["cheap",{"2":{"114":1,"134":1,"2505":1}}],["checkmark",{"2":{"2731":1}}],["checkbox",{"2":{"2659":1}}],["checklist",{"2":{"2569":1,"2725":1}}],["checklists",{"0":{"404":1,"2725":1},"1":{"405":1,"406":1,"407":1,"408":1,"409":1,"2726":1,"2727":1,"2728":1,"2729":1,"2730":1,"2731":1,"2732":1}}],["checker",{"2":{"2434":1}}],["checkerboards",{"2":{"143":3,"149":1,"222":1}}],["checked",{"2":{"411":1,"506":1,"1518":1,"1619":1,"2012":1,"2014":1,"2273":1,"2387":4,"2640":2,"2784":1}}],["checkout",{"2":{"367":1,"409":2,"411":3,"421":2,"422":4,"423":2,"607":1,"1421":1,"1469":2,"2607":4,"2639":1,"2640":3,"2667":1}}],["checking",{"0":{"381":1,"1378":1},"1":{"1379":1,"1380":1,"1381":1},"2":{"191":1,"199":2,"308":1,"535":1,"543":1,"586":1,"588":1,"1381":1,"1451":1,"2075":2,"2295":1,"2319":1,"2587":1,"2615":2,"2629":1,"2709":1,"2725":1,"2911":1,"2920":1,"2932":1}}],["check",{"2":{"39":1,"87":1,"112":1,"114":2,"134":2,"160":2,"178":1,"191":6,"199":3,"202":1,"210":2,"222":2,"234":1,"236":1,"249":3,"254":1,"266":1,"277":2,"308":1,"333":1,"339":1,"344":3,"366":1,"376":1,"378":1,"381":2,"382":1,"403":1,"435":3,"440":1,"574":2,"609":2,"620":1,"647":7,"686":1,"687":1,"688":1,"695":1,"754":1,"1300":1,"1315":1,"1333":1,"1338":1,"1364":1,"1370":2,"1371":1,"1378":2,"1428":2,"1431":3,"1446":1,"1451":1,"1464":1,"1468":1,"1471":1,"1517":1,"1525":1,"1528":1,"1542":1,"1619":1,"1621":1,"1622":1,"1794":1,"1820":1,"1821":1,"1823":1,"1824":2,"1826":1,"1827":3,"1829":1,"1830":4,"1832":1,"1833":5,"1850":3,"1974":2,"1990":1,"1994":1,"1996":1,"2012":1,"2030":1,"2088":3,"2179":1,"2183":1,"2218":3,"2275":2,"2310":1,"2319":2,"2320":1,"2417":2,"2434":7,"2448":5,"2466":1,"2480":1,"2502":1,"2503":1,"2508":2,"2616":1,"2617":1,"2637":1,"2639":1,"2667":1,"2680":1,"2684":1,"2782":1,"2784":1,"2860":1,"2882":2,"2889":1,"2945":1}}],["checksum",{"2":{"191":1,"2417":1,"2508":2}}],["checks",{"2":{"26":2,"149":1,"199":1,"236":1,"263":1,"308":1,"344":3,"366":1,"403":1,"440":1,"459":1,"647":1,"1380":1,"1428":3,"1525":1,"1793":1,"2011":1,"2310":2,"2317":1,"2391":1,"2393":1,"2398":1,"2607":1,"2640":1}}],["chconf",{"2":{"40":2,"86":1}}],["challenges",{"2":{"2734":1}}],["challenge",{"2":{"665":1,"1442":1}}],["chatter",{"0":{"1409":1},"1":{"1410":1,"1411":1,"1412":1,"1413":1,"1414":1},"2":{"1409":1}}],["chat",{"0":{"2897":1},"2":{"606":1,"613":1,"644":1,"1634":1,"2481":1,"2617":1}}],["chains",{"2":{"1290":1,"1538":2,"2689":1}}],["chained",{"2":{"1283":1,"2178":1}}],["chain",{"2":{"393":1,"704":2,"708":1,"711":1,"1285":2,"1296":1,"1307":1,"1310":1,"1377":1,"1538":7,"1539":1,"2468":1,"2855":2,"2877":1,"2883":1,"2920":1,"2941":2}}],["chaining",{"2":{"294":1}}],["chapter1",{"2":{"266":1}}],["chances",{"2":{"596":1,"2579":1,"2638":1,"2890":1}}],["chance",{"2":{"294":1,"596":1,"1319":1,"1615":1,"2470":1,"2726":1}}],["changing",{"0":{"2206":1,"2575":1,"2576":1,"2577":1,"2764":1},"2":{"194":1,"202":1,"233":1,"236":1,"561":1,"598":1,"657":1,"1409":1,"1417":2,"1795":1,"2008":1,"2180":3,"2189":1,"2379":1,"2467":1,"2475":1,"2479":1,"2756":12}}],["changelist",{"0":{"114":1,"134":1,"149":1,"160":1,"175":1,"191":1,"199":1,"210":1,"222":1,"236":1,"249":1,"266":1,"277":1,"285":1,"294":1,"308":1,"317":1,"328":1,"333":1,"339":1}}],["changelogs",{"2":{"266":1,"413":1}}],["changelog",{"0":{"9":1,"29":1,"42":1,"52":1,"66":1,"78":1,"96":1,"115":1,"135":1,"150":1,"161":1,"176":1,"192":1,"200":1,"211":1,"223":1,"237":1,"250":1,"267":1,"278":1,"286":1,"295":1,"309":1,"318":1,"329":1,"334":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"177":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"212":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1,"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1,"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1},"2":{"99":1,"149":2,"403":3,"409":1,"417":2,"2904":1}}],["changed",{"0":{"1585":1,"1587":1},"2":{"47":1,"90":1,"114":1,"156":1,"160":1,"166":1,"170":1,"175":1,"184":1,"191":1,"199":1,"202":1,"203":1,"240":1,"256":1,"307":1,"308":1,"403":1,"459":4,"499":1,"607":2,"624":2,"625":4,"1198":1,"1201":1,"1205":1,"1412":1,"1417":1,"1429":1,"1585":1,"1587":1,"1608":1,"1675":1,"1740":1,"1779":1,"1795":1,"1846":1,"1951":1,"1954":2,"1988":2,"1990":4,"1999":1,"2056":1,"2082":1,"2273":1,"2304":1,"2328":1,"2330":1,"2340":1,"2342":1,"2387":1,"2564":1,"2640":3,"2652":7,"2912":2,"2950":3}}],["changesets",{"2":{"166":1}}],["changes",{"0":{"5":1,"10":1,"30":1,"36":1,"37":1,"53":1,"61":1,"66":1,"67":1,"68":1,"72":1,"78":1,"79":1,"85":1,"91":1,"96":1,"101":1,"106":1,"115":1,"121":1,"129":1,"131":1,"135":1,"139":1,"144":1,"150":1,"155":1,"161":1,"164":1,"171":1,"176":1,"180":1,"186":1,"192":1,"193":1,"194":1,"198":1,"200":1,"201":1,"204":1,"211":1,"212":1,"216":1,"217":1,"219":1,"223":1,"225":1,"227":1,"237":1,"239":1,"240":1,"242":1,"244":1,"250":1,"252":1,"261":1,"267":1,"269":1,"278":1,"280":1,"286":1,"290":1,"295":1,"299":1,"309":1,"310":1,"318":1,"321":1,"329":1,"334":1,"335":1,"399":1,"400":1,"403":1,"413":1,"414":1,"417":1,"600":1,"2634":1,"2636":1,"2640":1,"2641":1},"1":{"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"38":1,"39":1,"40":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"62":1,"63":1,"64":1,"67":1,"68":1,"69":2,"70":2,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":2,"81":2,"82":2,"83":2,"84":2,"85":1,"86":2,"87":2,"88":2,"89":2,"90":2,"91":1,"92":2,"93":2,"94":2,"95":2,"97":1,"98":1,"99":1,"100":1,"101":1,"102":2,"103":2,"104":2,"105":2,"106":1,"107":2,"108":2,"109":2,"110":2,"111":2,"112":2,"113":2,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":2,"123":2,"124":2,"125":2,"126":2,"127":2,"128":2,"129":1,"130":2,"131":2,"132":2,"133":2,"134":1,"136":1,"137":1,"138":1,"139":1,"140":2,"141":2,"142":2,"143":2,"144":1,"145":2,"146":2,"147":2,"148":2,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":2,"157":2,"158":2,"159":2,"160":1,"162":1,"163":1,"164":1,"165":2,"166":2,"167":2,"168":2,"169":2,"170":2,"171":1,"172":2,"173":2,"174":2,"175":1,"177":1,"178":1,"179":1,"180":1,"181":2,"182":2,"183":2,"184":2,"185":2,"186":1,"187":2,"188":2,"189":2,"190":2,"191":1,"193":1,"194":2,"195":2,"196":2,"197":2,"198":1,"199":1,"201":1,"202":2,"203":2,"204":1,"205":2,"206":2,"207":2,"208":2,"209":2,"210":1,"212":1,"213":2,"214":2,"215":2,"216":1,"217":2,"218":2,"219":1,"220":2,"221":2,"222":1,"224":1,"225":1,"226":2,"227":1,"228":2,"229":2,"230":2,"231":2,"232":2,"233":2,"234":2,"235":2,"236":1,"238":1,"239":1,"240":2,"241":2,"242":1,"243":2,"244":2,"245":2,"246":2,"247":2,"248":2,"249":1,"251":1,"252":1,"253":2,"254":2,"255":2,"256":2,"257":2,"258":2,"259":2,"260":2,"261":1,"262":2,"263":2,"264":1,"265":1,"266":1,"268":1,"269":1,"270":2,"271":2,"272":2,"273":2,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":2,"282":1,"283":1,"284":1,"285":1,"287":1,"288":1,"289":1,"290":1,"291":2,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":2,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":2,"312":2,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":2,"323":2,"324":2,"325":2,"326":1,"327":1,"328":1,"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1,"400":1,"401":1,"402":1,"403":1,"404":1,"405":1,"406":1,"407":1,"408":1,"409":1,"410":1,"411":1,"412":1,"415":1,"416":1,"417":1,"418":1},"2":{"0":3,"2":1,"9":3,"12":1,"15":1,"18":1,"21":4,"22":1,"24":4,"26":1,"29":2,"35":1,"42":2,"52":2,"67":1,"74":1,"86":1,"87":1,"103":2,"105":1,"107":1,"114":2,"116":1,"125":1,"126":2,"131":2,"133":1,"134":2,"149":1,"156":1,"166":1,"168":1,"169":1,"171":2,"172":1,"175":4,"178":2,"182":1,"187":1,"190":1,"191":3,"198":2,"199":1,"201":3,"210":2,"212":3,"217":1,"222":1,"224":3,"231":1,"233":3,"236":2,"238":2,"247":1,"251":1,"254":1,"262":1,"263":1,"265":3,"272":1,"273":1,"275":1,"276":1,"284":1,"294":1,"303":1,"307":3,"328":1,"332":1,"399":1,"400":1,"403":5,"404":1,"405":3,"406":3,"407":3,"408":2,"411":3,"412":4,"413":1,"414":9,"416":2,"417":1,"465":1,"469":1,"533":1,"564":1,"580":1,"603":1,"607":6,"609":1,"611":1,"613":4,"614":1,"640":1,"666":1,"687":1,"717":1,"718":1,"721":1,"1410":1,"1413":5,"1428":1,"1490":3,"1665":1,"1681":1,"1837":1,"1919":2,"1952":6,"1960":1,"1994":1,"2085":4,"2190":1,"2275":1,"2278":1,"2292":2,"2323":3,"2379":1,"2382":1,"2387":4,"2418":1,"2464":1,"2569":1,"2586":1,"2587":1,"2590":1,"2597":1,"2601":1,"2610":1,"2633":2,"2634":8,"2636":1,"2637":2,"2638":1,"2640":6,"2641":1,"2652":2,"2726":1,"2728":2,"2729":5,"2730":1,"2757":1,"2800":1,"2808":1,"2847":1,"2902":1,"2903":2,"2904":1,"2912":3,"2936":1,"2940":1,"2950":2}}],["change",{"0":{"0":1,"9":1,"29":1,"42":1,"52":1,"57":1,"71":1,"272":1,"401":1,"662":1,"1429":1,"1923":1,"2199":1,"2201":1,"2940":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"402":1,"1430":1,"1431":1,"1432":1},"2":{"0":3,"9":2,"13":1,"21":2,"29":2,"35":1,"39":1,"42":2,"52":2,"64":2,"87":1,"90":2,"93":1,"94":1,"95":1,"105":3,"114":4,"118":1,"133":1,"134":3,"149":2,"160":2,"166":1,"172":1,"175":7,"191":2,"198":2,"199":4,"201":1,"203":1,"212":1,"222":2,"249":4,"255":1,"257":1,"258":1,"259":2,"262":1,"263":4,"266":5,"271":1,"272":2,"277":2,"285":1,"294":1,"307":1,"312":1,"320":1,"344":6,"383":1,"399":5,"401":1,"403":4,"409":1,"411":1,"414":1,"415":1,"416":1,"417":1,"494":1,"499":1,"512":2,"513":1,"544":1,"557":1,"607":1,"609":2,"628":1,"662":1,"686":1,"701":1,"717":1,"722":1,"901":1,"936":1,"970":1,"1004":1,"1038":1,"1072":1,"1106":1,"1140":1,"1174":1,"1195":1,"1198":2,"1201":2,"1207":1,"1208":1,"1227":1,"1287":1,"1349":1,"1362":1,"1410":4,"1413":9,"1417":14,"1422":1,"1428":1,"1449":1,"1484":1,"1487":2,"1490":1,"1491":1,"1502":1,"1544":1,"1551":1,"1556":1,"1605":2,"1609":1,"1617":1,"1623":1,"1625":1,"1642":2,"1666":2,"1739":1,"1767":1,"1777":2,"1786":1,"1788":1,"1800":1,"1803":1,"1836":1,"1935":1,"1937":1,"1954":1,"1994":1,"1999":1,"2008":3,"2012":2,"2047":1,"2068":1,"2072":1,"2086":1,"2087":1,"2179":1,"2194":2,"2199":4,"2253":2,"2254":2,"2258":1,"2275":2,"2322":2,"2338":1,"2339":1,"2375":1,"2381":1,"2416":1,"2482":1,"2554":1,"2558":3,"2567":1,"2569":1,"2573":1,"2586":2,"2640":1,"2651":1,"2652":2,"2663":2,"2669":1,"2674":1,"2691":1,"2717":2,"2726":2,"2729":1,"2784":2,"2868":1,"2912":2,"2929":1,"2931":1,"2950":1}}],["channels",{"0":{"692":1},"1":{"693":1,"694":1,"695":1,"696":1},"2":{"693":1,"695":2,"701":2,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1288":1,"2431":1}}],["channel",{"2":{"47":2,"228":1,"693":1,"695":2,"696":1,"699":5,"716":1,"717":1,"721":2,"729":1,"732":3,"805":1,"808":3,"821":3,"831":1,"834":3,"848":3,"863":1,"866":3,"880":3,"893":1,"896":3,"912":3,"928":1,"931":3,"947":3,"962":1,"965":3,"981":3,"996":1,"999":3,"1015":3,"1030":1,"1033":3,"1049":3,"1064":1,"1067":3,"1083":3,"1098":1,"1101":3,"1117":3,"1132":1,"1135":3,"1151":3,"1166":1,"1169":3,"1185":3,"1219":1,"1222":3,"1238":3,"1288":1,"1303":4,"1477":2,"1483":1,"1545":2,"1556":2,"1558":1,"1919":1,"1924":2,"1925":36,"1926":1,"2539":36}}],["charging",{"2":{"2685":1}}],["charge",{"2":{"39":2}}],["charlieplex",{"2":{"2444":1}}],["charlieplexed",{"2":{"887":1}}],["chartreuse",{"2":{"2089":2,"2205":2}}],["chars",{"2":{"249":1,"266":1,"1954":2,"2290":2}}],["character",{"0":{"1702":1},"2":{"512":1,"520":1,"1333":1,"1486":1,"1496":1,"1527":1,"1593":1,"1673":2,"1702":3,"1713":4,"1714":1,"1719":1,"1720":2,"1721":1,"1722":2,"1726":1,"1728":1,"1729":1,"1949":2,"1954":5,"2219":1,"2221":2,"2222":1,"2230":1,"2231":1,"2234":1,"2235":1,"2236":1,"2237":1,"2246":1,"2288":2,"2290":5,"2317":1,"2324":1,"2329":1,"2330":4,"2331":1,"2347":1,"2348":1,"2367":1,"2418":1,"2449":1,"2472":2,"2650":1,"2755":2,"2790":1,"2884":1,"2886":2,"2927":1}}],["characters",{"0":{"1355":1,"2474":1,"2475":1},"2":{"222":1,"609":1,"1446":2,"1499":2,"1505":1,"1508":1,"1515":1,"1527":1,"1528":1,"1535":2,"1699":2,"1702":3,"1715":1,"1717":1,"1734":1,"1736":1,"1786":2,"1946":1,"1954":1,"2219":1,"2222":1,"2223":1,"2228":1,"2230":1,"2232":1,"2234":1,"2285":1,"2290":1,"2329":1,"2330":5,"2331":1,"2349":1,"2362":1,"2381":2,"2418":4,"2434":1,"2470":1,"2474":1,"2475":1,"2553":1,"2554":1,"2573":1,"2726":1,"2768":1,"2769":2,"2846":1,"2852":2,"2856":1,"2884":1,"2886":4,"2912":1}}],["charactermatrix",{"2":{"21":1,"1955":1}}],["charon",{"2":{"222":1}}],["charue",{"2":{"222":2}}],["charybdis",{"2":{"191":2,"311":24,"317":3}}],["char",{"0":{"1279":1,"1713":1,"1715":1,"1717":1,"1719":1,"1721":1,"2228":1,"2230":1,"2232":1,"2234":1,"2236":2,"2349":1},"1":{"1280":1,"1714":1,"1716":1,"1718":1,"1720":1,"1722":1,"2229":1,"2231":1,"2233":1,"2235":1,"2237":2,"2350":1},"2":{"114":1,"134":1,"521":1,"1534":3,"1535":6,"1702":1,"1714":1,"1716":1,"1718":1,"1721":1,"1851":1,"1946":1,"1947":4,"1954":12,"1955":6,"2090":1,"2229":1,"2231":1,"2233":1,"2235":1,"2237":1,"2285":1,"2286":4,"2290":12,"2331":1,"2350":1,"2727":1,"2757":4,"2893":1,"2927":1,"2949":1}}],["cumbersome",{"2":{"1622":1}}],["cuprintf",{"2":{"1330":1}}],["cuint32",{"2":{"656":1}}],["cuint16",{"2":{"195":1,"1503":1,"2069":2,"2070":1,"2077":1,"2757":4,"2910":1,"2911":2,"2912":1,"2922":1,"2925":2}}],["cu80",{"2":{"143":2,"149":1,"205":4,"210":1,"249":1}}],["cu75",{"2":{"143":2,"149":1}}],["cu24",{"2":{"143":2,"149":1}}],["cutters",{"2":{"2421":1,"2428":1}}],["cutoff",{"2":{"1968":1}}],["cutie",{"2":{"285":1}}],["cut",{"2":{"116":1,"1486":1,"1968":1,"2280":1,"2431":1,"2516":2,"2522":2,"2576":1}}],["currency",{"2":{"2474":1}}],["currentreport",{"2":{"1992":8}}],["currently",{"2":{"7":1,"65":1,"103":1,"209":1,"214":1,"262":1,"288":1,"316":1,"381":1,"383":1,"441":1,"570":2,"690":1,"715":1,"749":1,"750":2,"753":1,"755":1,"757":2,"759":2,"768":1,"1266":1,"1378":1,"1391":1,"1392":1,"1393":1,"1395":1,"1399":1,"1410":1,"1423":1,"1433":1,"1444":1,"1458":1,"1459":1,"1460":1,"1481":1,"1483":1,"1536":1,"1599":1,"1639":1,"1661":1,"1678":1,"1697":1,"1723":1,"1849":1,"1853":1,"1865":1,"1867":1,"1869":1,"1871":1,"1877":1,"1878":1,"1907":1,"1909":1,"1914":1,"1954":2,"1959":1,"1976":1,"1983":1,"2014":1,"2016":1,"2057":1,"2085":1,"2092":1,"2107":1,"2109":1,"2111":1,"2113":1,"2119":1,"2120":1,"2167":1,"2169":1,"2174":1,"2178":1,"2188":1,"2193":1,"2210":1,"2211":1,"2212":1,"2218":3,"2254":1,"2261":2,"2276":1,"2290":1,"2300":1,"2306":1,"2309":1,"2317":1,"2331":1,"2335":1,"2344":1,"2345":1,"2346":1,"2360":1,"2374":2,"2375":1,"2376":1,"2377":1,"2390":1,"2394":1,"2397":1,"2406":1,"2408":1,"2496":1,"2530":1,"2567":1,"2573":1,"2591":1,"2612":1,"2613":1,"2626":1,"2640":1,"2753":2,"2797":1,"2869":3,"2937":1}}],["current",{"0":{"4":1,"727":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1794":1},"2":{"20":1,"23":1,"39":1,"40":1,"88":1,"104":1,"114":1,"119":3,"191":2,"199":1,"266":1,"273":1,"279":1,"308":2,"403":1,"405":1,"412":3,"429":1,"454":1,"463":1,"475":1,"542":1,"563":1,"565":1,"570":4,"574":1,"592":1,"613":1,"624":1,"625":1,"639":6,"658":1,"701":1,"726":2,"727":2,"745":1,"857":2,"861":2,"901":1,"921":2,"926":2,"936":1,"956":2,"960":2,"970":1,"990":2,"994":2,"1004":1,"1024":2,"1028":2,"1038":1,"1058":2,"1062":2,"1072":1,"1092":2,"1096":2,"1106":1,"1126":2,"1130":2,"1140":1,"1160":2,"1164":2,"1174":1,"1227":1,"1265":1,"1378":4,"1381":1,"1422":1,"1427":2,"1428":2,"1431":4,"1472":1,"1521":1,"1523":1,"1533":1,"1539":1,"1558":1,"1568":1,"1569":1,"1570":1,"1575":1,"1600":1,"1601":1,"1605":1,"1620":3,"1624":1,"1625":1,"1645":1,"1678":1,"1681":2,"1728":1,"1729":2,"1747":1,"1789":1,"1794":1,"1863":1,"1883":1,"1884":1,"1893":1,"1894":1,"1903":1,"1904":1,"1906":1,"1908":1,"1910":1,"1912":1,"1915":1,"1947":3,"1948":1,"1954":10,"1988":3,"1990":1,"1994":1,"1999":1,"2000":1,"2004":1,"2008":4,"2075":1,"2085":2,"2105":1,"2125":1,"2126":1,"2131":1,"2132":1,"2137":1,"2138":1,"2147":1,"2148":1,"2157":1,"2158":1,"2163":1,"2164":1,"2166":1,"2168":1,"2170":1,"2172":1,"2175":1,"2183":1,"2204":6,"2254":2,"2259":1,"2276":4,"2286":3,"2287":1,"2290":9,"2295":3,"2300":1,"2318":1,"2319":1,"2323":3,"2327":1,"2334":1,"2363":1,"2377":1,"2380":4,"2423":1,"2466":2,"2482":1,"2517":1,"2522":1,"2525":1,"2528":1,"2543":3,"2558":1,"2570":1,"2571":1,"2579":1,"2614":1,"2634":10,"2639":1,"2641":1,"2652":1,"2658":1,"2670":1,"2680":3,"2692":1,"2729":1,"2753":1,"2757":2,"2776":1,"2880":1,"2882":2,"2889":1,"2893":3,"2912":6,"2925":1,"2937":1,"2940":2}}],["cur",{"2":{"2317":3,"2318":3,"2319":4}}],["curious",{"2":{"1537":1}}],["curly",{"2":{"2226":1,"2318":1,"2546":2,"2555":2,"2669":1}}],["curl",{"2":{"380":1,"381":1,"383":3,"426":2,"488":1,"1318":1}}],["cursorstyle",{"2":{"2669":1}}],["cursor",{"0":{"1704":1,"1708":1,"1711":1},"1":{"1705":1,"1709":1,"1712":1},"2":{"62":1,"114":1,"190":1,"191":2,"1639":1,"1642":1,"1701":1,"1702":1,"1705":3,"1707":1,"1708":1,"1709":3,"1711":1,"1713":1,"1728":2,"1736":1,"1933":8,"1934":8,"1935":11,"1936":14,"1937":12,"1938":6,"1939":8,"1940":2,"1948":1,"1954":19,"1976":1,"1985":5,"1993":2,"2068":2,"2226":1,"2290":19,"2418":1,"2540":8,"2832":1}}],["curved",{"2":{"1974":3}}],["curves",{"2":{"84":1,"1939":1}}],["curve",{"2":{"39":1,"74":1,"93":1,"1934":1,"1936":1,"1939":1,"2185":1,"2757":1}}],["customers",{"2":{"2567":3,"2569":1}}],["customer",{"2":{"621":1}}],["customarily",{"2":{"255":1}}],["customary",{"2":{"163":1,"255":1}}],["custommk",{"2":{"102":3,"1391":1}}],["customising",{"0":{"2610":1},"2":{"2610":1}}],["customisation",{"2":{"1632":1}}],["customisations",{"2":{"14":1}}],["customised",{"2":{"2568":1}}],["customise",{"2":{"1322":1,"1532":1,"2606":1,"2910":1}}],["customize",{"0":{"626":1,"2002":1,"2014":1,"2586":1},"1":{"627":1,"2003":1,"2004":1,"2005":1,"2006":1},"2":{"555":1,"596":1,"626":1,"643":1,"1770":1,"1773":1,"1784":1,"2461":1,"2653":1,"2714":1,"2924":1}}],["customized",{"0":{"1470":1},"2":{"35":2,"39":1,"1472":1,"1526":1,"1855":1,"2014":1,"2094":1,"2926":1}}],["customizing",{"0":{"1527":1,"1596":1,"2419":1},"1":{"1528":1,"1597":1,"1598":1,"1599":1,"1600":1,"1601":1},"2":{"236":1,"1446":1,"2461":1}}],["customizability",{"2":{"1517":1,"2652":1}}],["customizable",{"0":{"1617":1,"1618":1},"2":{"160":1}}],["customization",{"0":{"1662":1,"2928":1},"1":{"1663":1,"1664":1},"2":{"175":1,"633":1,"651":1,"1662":1,"1664":1,"1773":1,"1777":1,"1781":1,"1990":1,"2751":1,"2932":1}}],["custom",{"0":{"592":1,"593":1,"622":1,"628":1,"745":1,"1347":1,"1471":1,"1517":1,"1551":1,"1637":1,"1702":1,"1850":1,"1952":1,"1984":1,"1992":1,"2009":1,"2013":1,"2015":1,"2088":1,"2277":1,"2289":1,"2461":1,"2868":1},"1":{"623":1,"624":1,"625":1,"629":1,"630":1,"631":1,"632":1,"1953":1},"2":{"3":1,"7":1,"39":1,"48":1,"76":1,"80":1,"112":2,"114":2,"134":1,"149":4,"160":2,"175":3,"191":2,"222":3,"236":2,"265":1,"266":2,"277":2,"285":1,"317":1,"323":2,"328":3,"333":2,"373":1,"378":1,"538":1,"567":2,"570":2,"574":3,"578":1,"593":21,"623":1,"624":3,"626":1,"629":3,"631":1,"645":2,"719":1,"743":1,"745":1,"754":1,"1289":1,"1327":1,"1335":1,"1347":2,"1378":1,"1381":1,"1414":2,"1417":1,"1429":1,"1431":1,"1446":7,"1451":1,"1462":1,"1472":2,"1485":1,"1510":3,"1517":1,"1527":1,"1533":3,"1547":1,"1551":2,"1594":1,"1602":1,"1605":4,"1617":1,"1618":2,"1625":1,"1635":1,"1636":1,"1637":1,"1664":1,"1702":3,"1719":1,"1720":1,"1721":1,"1722":1,"1734":1,"1766":2,"1767":2,"1779":1,"1781":3,"1787":1,"1796":1,"1798":1,"1837":1,"1850":10,"1855":1,"1923":1,"1924":1,"1949":3,"1952":3,"1958":1,"1962":2,"1964":1,"1965":1,"1968":1,"1984":3,"1992":1,"1993":1,"1994":1,"2013":3,"2014":1,"2015":3,"2016":2,"2069":1,"2071":2,"2076":2,"2077":1,"2079":1,"2088":10,"2094":1,"2181":1,"2225":1,"2268":2,"2288":3,"2297":1,"2309":3,"2318":1,"2319":1,"2330":1,"2331":1,"2375":2,"2402":1,"2414":1,"2418":6,"2422":1,"2425":1,"2457":1,"2461":3,"2561":2,"2563":1,"2575":1,"2576":2,"2577":1,"2579":1,"2582":1,"2599":1,"2611":1,"2612":1,"2617":1,"2619":1,"2652":1,"2662":1,"2727":1,"2728":10,"2751":2,"2753":1,"2789":1,"2799":1,"2854":1,"2857":1,"2858":1,"2859":1,"2864":2,"2868":4,"2871":1,"2872":4,"2877":1,"2878":1,"2880":1,"2883":1,"2907":1,"2908":1,"2912":2,"2949":1}}],["cl",{"2":{"2520":5,"2538":5,"2561":2,"2564":1}}],["clk",{"2":{"2038":2,"2288":1,"2495":1,"2875":1}}],["cled",{"2":{"1846":1,"1850":1,"2082":1}}],["clearly",{"2":{"2567":1,"2568":1}}],["clearpageremainder",{"2":{"1954":1,"2290":1}}],["clears",{"2":{"1428":1,"1621":1,"1954":1,"2290":1,"2757":1}}],["clearing",{"2":{"1349":1,"1517":1,"1544":3,"2182":6}}],["cleared",{"2":{"651":1,"2685":1,"2686":1}}],["clearer",{"2":{"49":1}}],["clear",{"0":{"1458":1,"1459":1,"1460":1,"1706":1,"2020":1},"2":{"149":2,"172":1,"175":5,"199":1,"231":1,"614":1,"651":1,"1348":3,"1376":1,"1378":2,"1428":1,"1458":1,"1459":1,"1460":1,"1472":2,"1605":6,"1625":2,"1706":1,"1730":1,"1732":1,"1948":1,"1954":1,"1955":3,"1994":1,"2020":1,"2253":1,"2290":1,"2508":1,"2513":1,"2516":4,"2522":5,"2523":1,"2651":2,"2707":1,"2728":1,"2752":1,"2757":2,"2944":1}}],["cleaner",{"2":{"288":1,"2436":1}}],["cleaned",{"2":{"198":1}}],["cleaning",{"2":{"224":1,"251":1,"2427":1,"2663":1}}],["cleans",{"2":{"46":1,"446":1,"2417":1}}],["clean",{"0":{"40":1,"64":1,"75":1,"94":1,"446":1},"2":{"94":1,"114":3,"133":1,"134":2,"160":1,"175":6,"199":2,"210":2,"222":5,"236":3,"249":1,"429":1,"446":1,"455":1,"469":1,"612":1,"1409":1,"2417":3,"2663":1,"2728":1,"2942":1}}],["cleanups",{"2":{"2":1,"40":1,"149":1,"175":2,"210":7,"222":3,"236":10,"249":1,"277":1}}],["cleanup",{"0":{"2":1,"15":1,"17":1,"113":1,"133":1,"229":1,"233":1},"2":{"15":1,"45":1,"64":2,"94":1,"114":3,"149":1,"171":1,"175":2,"198":1,"199":1,"201":1,"212":1,"222":4,"224":1,"233":1,"235":1,"236":2,"249":2,"268":1,"277":1,"279":1,"308":1,"328":2,"651":1,"2567":2,"2941":1}}],["clr",{"2":{"1348":1,"1417":1,"1622":1,"2273":1,"2516":1,"2522":1,"2523":1,"2752":1,"2789":1}}],["cln",{"2":{"324":1,"325":1,"2313":1,"2316":2}}],["clusters",{"2":{"2927":1}}],["clunker",{"2":{"236":1}}],["clutter",{"2":{"2658":1}}],["cluttered",{"2":{"215":1}}],["cluttering",{"2":{"18":1}}],["club",{"2":{"114":1,"143":4,"149":1,"236":2,"285":1,"2402":2}}],["cluecard",{"2":{"111":1,"2941":1}}],["clueboards",{"2":{"2389":1}}],["clueboard",{"0":{"1320":1},"2":{"111":3,"149":1,"348":1,"379":1,"429":2,"434":2,"437":1,"454":1,"455":1,"473":2,"474":1,"484":1,"485":2,"683":3,"2414":2,"2448":2,"2449":1,"2450":7,"2560":1,"2563":1,"2583":2,"2584":1,"2629":7,"2727":1,"2851":4,"2852":3}}],["claim",{"2":{"2742":1}}],["claims",{"2":{"2741":1}}],["clauses",{"2":{"2735":2,"2748":1}}],["clause",{"2":{"2568":1,"2736":1,"2745":1}}],["clag",{"2":{"2516":1,"2522":1}}],["clayer",{"2":{"1417":1,"1430":1,"2785":2}}],["clamp",{"2":{"317":1}}],["classname",{"2":{"519":1}}],["class",{"2":{"288":1,"516":1,"534":1,"1627":1,"2590":1}}],["classic48",{"2":{"328":1}}],["classic",{"2":{"221":1,"294":1,"1368":1,"2374":1,"2741":1,"2912":1}}],["clarifications",{"2":{"339":1}}],["clarification",{"2":{"149":1,"175":1}}],["clarify",{"2":{"134":1,"2320":1}}],["claw44",{"2":{"143":2}}],["clawsome",{"2":{"102":3}}],["clangd",{"2":{"2671":1,"2673":4}}],["clang",{"0":{"1":1,"513":1},"2":{"1":1,"114":1,"132":2,"134":2,"149":1,"459":1,"513":8}}],["clogged",{"2":{"2754":1}}],["cloning",{"2":{"2387":2,"2501":1,"2594":1}}],["cloned",{"2":{"2626":1,"2662":1,"2665":1,"2672":1}}],["clones",{"2":{"271":2,"546":1,"2392":1,"2486":1,"2499":1,"2567":1,"2835":1}}],["clone",{"2":{"93":1,"421":1,"607":2,"1433":1,"2382":1,"2384":1,"2387":3,"2392":1,"2567":1,"2592":2,"2593":2,"2610":1,"2626":1,"2628":1}}],["closing",{"2":{"512":2,"2226":1,"2255":1,"2434":1}}],["closer",{"2":{"2925":1}}],["closely",{"2":{"2280":1}}],["closest",{"2":{"1538":1}}],["closes",{"2":{"403":2}}],["closed",{"2":{"402":1,"403":1,"405":1,"406":1,"407":2,"408":2,"412":2,"2291":1,"2394":1,"2466":1,"2567":1,"2568":2,"2728":1,"2746":1,"2750":1}}],["close",{"2":{"393":2,"397":1,"1645":1,"2057":1,"2059":1,"2256":3,"2257":3,"2550":3,"2622":1,"2757":6}}],["cloudline",{"2":{"222":1}}],["clocks",{"2":{"2684":1,"2685":1,"2686":1}}],["clock",{"2":{"114":1,"396":1,"561":1,"750":3,"759":3,"767":1,"769":1,"1252":5,"1294":1,"1300":1,"1949":2,"1966":1,"1967":2,"1974":2,"1978":1,"1979":1,"1981":1,"1982":1,"1983":2,"2040":1,"2041":3,"2042":2,"2043":5,"2044":2,"2179":2,"2288":1,"2503":2,"2855":1,"2875":1}}],["clockwise",{"2":{"46":2,"90":10,"647":1,"1665":1,"1668":9,"1741":1,"2051":1}}],["client",{"2":{"369":2,"1291":1,"2500":1,"2601":1,"2612":1}}],["clients",{"2":{"366":1}}],["clipping",{"0":{"2207":1},"2":{"2195":3,"2207":5}}],["clip",{"2":{"339":1}}],["click4",{"2":{"1686":1}}],["click3",{"2":{"1686":2}}],["click2",{"2":{"1686":2}}],["click1",{"2":{"1686":2}}],["clicking",{"2":{"599":3,"2387":2,"2481":1}}],["clicks",{"2":{"266":1,"1493":3,"1495":2,"1518":1,"1941":1,"2418":1,"2524":2,"2913":1}}],["clicky",{"2":{"236":1,"1485":1,"1493":18,"1495":9,"1657":2,"2524":9,"2856":2,"2941":2}}],["click",{"0":{"1493":1},"2":{"149":1,"353":2,"393":3,"397":2,"596":1,"610":1,"686":1,"687":2,"1378":1,"1493":3,"1686":15,"1968":1,"1971":3,"1976":1,"1977":2,"1992":1,"2298":3,"2387":1,"2433":1,"2554":1,"2573":1,"2614":1,"2615":1,"2659":3,"2662":2,"2669":2,"2672":2,"2674":1,"2795":1,"2832":1,"2876":1,"2913":1}}],["cli",{"0":{"188":1,"424":1,"427":1,"471":1,"475":1,"486":1,"492":1,"493":1,"1325":1,"2755":1},"1":{"425":1,"426":1,"476":1,"477":1,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1},"2":{"1":1,"94":1,"95":1,"114":6,"132":1,"134":4,"149":1,"153":1,"158":2,"160":2,"175":1,"179":1,"188":1,"191":5,"199":7,"210":1,"222":3,"236":3,"249":2,"266":1,"277":1,"285":1,"294":1,"308":2,"317":1,"328":1,"333":2,"339":1,"344":2,"354":1,"425":1,"426":1,"431":1,"465":2,"472":1,"487":2,"488":1,"489":18,"490":1,"491":3,"492":7,"493":2,"495":3,"496":6,"497":2,"498":2,"499":1,"500":8,"507":1,"525":1,"529":4,"543":3,"544":1,"665":1,"666":2,"668":1,"672":1,"673":3,"685":1,"1325":1,"1391":1,"1399":1,"2388":1,"2389":1,"2394":1,"2396":1,"2397":1,"2400":2,"2403":3,"2406":2,"2408":2,"2410":2,"2508":1,"2584":1,"2591":1,"2601":1,"2607":1,"2616":1,"2620":1,"2623":1,"2625":1,"2626":1,"2627":1,"2628":1,"2753":1,"2757":4,"2906":1,"2908":2}}],["coating",{"2":{"2427":1}}],["coarser",{"2":{"2252":1}}],["coarse",{"2":{"102":2,"205":1}}],["coil",{"2":{"1681":1,"1685":1}}],["coworkers",{"2":{"1488":1,"1493":1}}],["cowfish",{"2":{"175":1}}],["coffee|",{"2":{"681":1}}],["coffee||make",{"2":{"681":1}}],["coffee",{"2":{"675":1,"681":1}}],["coseyfannitutti",{"2":{"2501":1}}],["cosmetic",{"2":{"2276":3}}],["cosmo",{"2":{"1357":1}}],["costing",{"2":{"1538":1,"2844":1}}],["cost",{"2":{"538":1,"1661":1,"1985":1,"2379":1,"2835":1,"2844":1,"2942":1}}],["cospad",{"2":{"102":2}}],["coding",{"0":{"512":1,"514":1,"608":1},"2":{"414":1,"513":1,"603":1,"608":2,"613":1,"2057":1,"2671":1,"2908":2}}],["coders",{"2":{"2942":1}}],["codepoints",{"2":{"2846":1}}],["codegen",{"2":{"285":1}}],["code16",{"0":{"1457":4},"2":{"149":1,"191":1,"196":1,"324":1,"325":1,"328":1,"1457":1,"1517":4,"1605":3,"1618":1,"1798":1,"2181":1,"2316":4,"2318":5,"2575":1,"2576":3,"2577":2}}],["codes",{"0":{"2005":1},"1":{"2006":1},"2":{"22":1,"191":1,"1330":1,"1417":3,"1472":2,"1493":1,"1924":1,"2259":1,"2331":1,"2418":1,"2554":2,"2610":1,"2884":1,"2949":1}}],["codebases",{"0":{"34":1,"59":1,"86":1,"102":1,"122":1,"143":1,"159":1,"165":1,"183":1,"197":1,"205":1,"218":1,"226":1,"241":1,"253":1,"270":1,"281":1,"291":1,"300":1,"311":1,"322":1},"1":{"35":1,"60":1},"2":{"2944":1}}],["codebase",{"0":{"51":1,"113":1,"133":1},"2":{"11":1,"25":1,"51":1,"60":1,"86":1,"262":1,"284":1,"514":1,"538":1,"542":1,"2726":2,"2902":1,"2946":1,"2950":1}}],["code",{"0":{"1":1,"4":1,"17":1,"23":1,"206":1,"208":1,"354":1,"539":1,"592":1,"615":1,"633":1,"634":1,"637":1,"640":1,"643":1,"648":1,"651":1,"662":1,"672":1,"673":1,"1414":1,"1429":1,"1453":1,"1454":1,"1455":1,"1456":1,"1463":1,"1924":1,"2236":1,"2300":1,"2347":1,"2354":1,"2604":1,"2664":1,"2665":1,"2668":1,"2672":1,"2673":1,"2674":1,"2934":1},"1":{"24":1,"634":1,"635":2,"636":2,"637":1,"638":2,"639":2,"640":1,"641":2,"642":2,"644":1,"645":1,"649":1,"650":1,"652":1,"653":1,"654":1,"1430":1,"1431":1,"1432":1,"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1,"2237":1,"2348":1,"2355":1,"2356":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2666":1,"2667":1,"2668":1,"2669":2,"2670":1,"2671":1,"2673":1,"2935":1,"2936":1,"2937":1,"2938":1,"2939":1,"2940":1,"2941":1},"2":{"2":1,"3":1,"11":1,"12":1,"14":1,"15":1,"18":1,"21":1,"39":2,"40":4,"43":1,"48":1,"57":2,"64":1,"65":1,"70":1,"74":2,"75":1,"76":1,"90":13,"92":1,"93":2,"94":2,"105":6,"112":1,"113":3,"114":11,"123":1,"125":7,"132":1,"133":5,"134":10,"149":6,"160":2,"169":7,"174":2,"175":5,"188":1,"189":1,"190":3,"191":8,"194":2,"199":2,"203":1,"206":1,"208":1,"210":4,"212":1,"217":1,"222":1,"229":1,"231":1,"236":5,"243":1,"245":1,"249":1,"266":4,"268":1,"272":1,"285":2,"288":1,"294":1,"307":4,"308":1,"323":1,"328":2,"331":1,"339":1,"344":1,"353":1,"354":4,"365":2,"373":1,"378":1,"382":1,"393":1,"416":2,"443":1,"447":1,"459":3,"464":1,"465":1,"469":1,"489":1,"501":1,"504":2,"505":2,"506":2,"512":5,"513":2,"515":1,"516":1,"525":1,"528":1,"532":1,"537":1,"538":3,"539":1,"540":3,"541":4,"542":1,"555":1,"562":1,"563":1,"564":3,"576":1,"603":1,"609":2,"610":1,"613":1,"615":3,"622":1,"624":1,"626":1,"628":1,"633":1,"635":1,"641":1,"643":2,"645":1,"647":1,"649":2,"662":1,"666":1,"672":2,"673":1,"691":1,"703":2,"725":1,"753":1,"754":1,"756":1,"757":1,"765":2,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":2,"1267":2,"1284":2,"1322":1,"1327":1,"1329":1,"1330":1,"1331":1,"1341":1,"1343":1,"1348":1,"1357":1,"1361":1,"1378":1,"1380":2,"1381":3,"1388":1,"1390":1,"1392":1,"1393":1,"1406":3,"1410":2,"1417":1,"1428":1,"1429":1,"1431":1,"1438":1,"1440":1,"1447":3,"1451":1,"1454":1,"1455":4,"1456":1,"1462":4,"1463":1,"1467":1,"1471":2,"1472":1,"1486":1,"1487":1,"1532":1,"1533":1,"1534":1,"1535":2,"1540":1,"1591":2,"1593":1,"1594":1,"1617":1,"1618":3,"1626":1,"1667":1,"1668":5,"1681":1,"1713":1,"1738":1,"1742":1,"1767":1,"1837":2,"1838":1,"1851":1,"1923":1,"1946":1,"1949":1,"1953":1,"1968":1,"1983":1,"1988":2,"1989":2,"1994":1,"2006":1,"2011":1,"2012":1,"2013":4,"2015":3,"2057":1,"2090":1,"2181":1,"2194":1,"2207":1,"2237":1,"2277":1,"2281":1,"2285":1,"2288":1,"2297":3,"2300":1,"2305":1,"2317":11,"2318":1,"2319":4,"2329":4,"2330":3,"2331":7,"2332":3,"2344":1,"2345":1,"2346":1,"2348":2,"2354":1,"2356":1,"2357":1,"2371":1,"2379":1,"2401":1,"2412":1,"2413":1,"2414":1,"2415":1,"2416":2,"2418":7,"2441":1,"2450":1,"2456":4,"2457":1,"2461":1,"2464":2,"2552":3,"2557":6,"2562":1,"2564":1,"2566":3,"2567":10,"2568":7,"2569":4,"2571":1,"2573":1,"2575":1,"2576":2,"2580":1,"2600":1,"2603":1,"2610":1,"2645":2,"2653":5,"2662":2,"2664":8,"2667":2,"2668":1,"2670":1,"2671":4,"2673":5,"2674":6,"2685":2,"2686":1,"2714":1,"2728":8,"2729":1,"2731":1,"2733":1,"2734":4,"2736":1,"2739":2,"2741":3,"2748":1,"2749":1,"2750":1,"2757":1,"2761":2,"2769":2,"2784":1,"2809":2,"2811":2,"2836":1,"2893":3,"2896":1,"2901":1,"2902":1,"2906":1,"2912":1,"2914":1,"2935":1,"2936":2,"2943":1,"2944":1,"2950":5}}],["copper",{"2":{"2425":1}}],["copied",{"2":{"572":1,"2726":1}}],["copies",{"2":{"249":1,"1446":1,"2568":1}}],["copilot",{"2":{"333":1}}],["copying",{"2":{"2587":1,"2629":1,"2756":1}}],["copyrighted",{"2":{"1485":1}}],["copyrights",{"2":{"612":1}}],["copyright",{"0":{"2464":1},"2":{"414":1,"1467":1,"2464":2,"2567":1,"2714":2,"2732":2,"2902":1}}],["copypasta",{"2":{"114":1,"1440":1}}],["copy",{"0":{"511":1},"2":{"21":1,"114":1,"175":1,"367":1,"511":1,"607":1,"1348":1,"1467":1,"1532":1,"1628":1,"2384":2,"2387":1,"2406":2,"2408":2,"2410":2,"2516":2,"2522":2,"2568":1,"2576":1,"2577":1,"2584":1,"2590":1,"2591":1,"2592":1,"2593":1,"2594":1,"2610":1,"2614":1,"2726":1,"2728":1,"2732":1,"2756":1,"2795":2,"2924":1}}],["co",{"2":{"222":1,"766":1,"2095":1,"2852":1}}],["covered",{"0":{"1338":1},"2":{"1311":1,"2503":1}}],["cover",{"2":{"748":1,"1336":1,"1936":1,"2418":1,"2722":1}}],["covers",{"2":{"587":1,"675":1,"1314":1,"1342":1,"1344":1,"1532":1,"1934":1,"2281":1,"2329":1,"2418":1,"2664":1,"2738":1,"2739":1,"2793":1}}],["covering",{"2":{"210":1,"609":1,"2643":1}}],["coverage",{"2":{"134":2,"236":1}}],["cocoa40",{"2":{"143":2}}],["cooperate",{"2":{"2567":1}}],["cooperating",{"2":{"749":1}}],["cooler",{"2":{"2255":1}}],["cool",{"2":{"675":1,"681":5,"1463":2,"1464":2,"1850":10,"2088":10,"2255":1,"2427":1,"2428":2}}],["coordinate",{"2":{"312":1,"317":1,"1645":2,"1846":1,"2082":1,"2757":2}}],["coordinates",{"2":{"100":2,"114":1,"191":1,"277":1,"308":1,"1639":1,"1641":2,"1642":1,"1954":1,"1974":1,"2290":1,"2756":1}}],["cook",{"2":{"143":2,"222":1}}],["coexist",{"2":{"98":1,"283":1}}],["cozykeys",{"2":{"56":3}}],["col1",{"2":{"2466":13}}],["col0",{"2":{"2466":14}}],["col2row",{"2":{"561":3,"622":1,"639":3,"1403":1,"1407":1,"2390":2,"2397":2,"2680":2,"2719":1,"2872":1,"2876":2}}],["colons",{"2":{"2946":1}}],["colon",{"0":{"347":2},"2":{"1774":4,"2308":1,"2317":1,"2546":1,"2555":1}}],["coloured",{"2":{"1541":1}}],["colour",{"2":{"210":1,"339":1,"1541":1}}],["colorreco",{"2":{"2567":1}}],["color=false",{"2":{"2417":2}}],["colored",{"2":{"686":1}}],["colorizing",{"0":{"494":1},"2":{"491":1}}],["colorize",{"2":{"490":1,"491":1,"494":1}}],["colors",{"0":{"2089":1,"2205":1},"2":{"149":1,"202":1,"494":3,"1287":1,"1617":1,"2089":1,"2097":1,"2180":1,"2185":1,"2189":1,"2205":1,"2754":1,"2755":4,"2757":1,"2776":4}}],["color",{"0":{"707":1,"709":1,"735":1,"737":1,"812":1,"814":1,"839":1,"841":1,"871":1,"873":1,"903":1,"905":1,"938":1,"940":1,"972":1,"974":1,"1006":1,"1008":1,"1040":1,"1042":1,"1074":1,"1076":1,"1108":1,"1110":1,"1142":1,"1144":1,"1176":1,"1178":1,"1229":1,"1231":1,"1306":1,"1308":1,"2107":1,"2109":1,"2180":1},"1":{"708":1,"710":1,"736":1,"738":1,"813":1,"815":1,"840":1,"842":1,"872":1,"874":1,"904":1,"906":1,"939":1,"941":1,"973":1,"975":1,"1007":1,"1009":1,"1041":1,"1043":1,"1075":1,"1077":1,"1109":1,"1111":1,"1143":1,"1145":1,"1177":1,"1179":1,"1230":1,"1232":1,"1307":1,"1309":1,"2108":1,"2110":1},"2":{"114":1,"175":1,"199":1,"236":1,"339":2,"494":10,"641":1,"652":2,"653":2,"707":1,"709":1,"724":1,"735":1,"737":1,"800":1,"801":1,"805":1,"808":1,"812":1,"814":1,"816":1,"818":1,"822":1,"826":1,"827":1,"831":1,"834":1,"839":1,"841":1,"843":1,"845":1,"849":1,"855":1,"856":1,"863":1,"866":1,"871":1,"873":1,"875":1,"877":1,"881":1,"887":1,"888":1,"893":1,"896":1,"903":1,"905":1,"907":1,"909":1,"913":1,"919":1,"920":1,"928":1,"931":1,"938":1,"940":1,"942":1,"944":1,"948":1,"954":1,"955":1,"962":1,"965":1,"972":1,"974":1,"976":1,"978":1,"982":1,"988":1,"989":1,"996":1,"999":1,"1006":1,"1008":1,"1010":1,"1012":1,"1016":1,"1022":1,"1023":1,"1030":1,"1033":1,"1040":1,"1042":1,"1044":1,"1046":1,"1050":1,"1056":1,"1057":1,"1064":1,"1067":1,"1074":1,"1076":1,"1078":1,"1080":1,"1084":1,"1090":1,"1091":1,"1098":1,"1101":1,"1108":1,"1110":1,"1112":1,"1114":1,"1118":1,"1124":1,"1125":1,"1132":1,"1135":1,"1142":1,"1144":1,"1146":1,"1148":1,"1152":1,"1158":1,"1159":1,"1166":1,"1169":1,"1176":1,"1178":1,"1180":1,"1182":1,"1186":1,"1214":1,"1215":1,"1219":1,"1222":1,"1229":1,"1231":1,"1233":1,"1235":1,"1239":1,"1283":2,"1287":2,"1288":1,"1306":1,"1308":1,"1417":3,"1958":4,"2080":1,"2085":2,"2086":1,"2087":2,"2088":2,"2089":1,"2094":3,"2095":4,"2096":4,"2097":1,"2107":1,"2109":1,"2165":1,"2178":2,"2180":2,"2183":3,"2187":1,"2194":1,"2199":1,"2205":1,"2417":2,"2444":1,"2754":2,"2755":6,"2756":12,"2757":7,"2777":1,"2878":1}}],["col",{"0":{"1711":1},"1":{"1712":1},"2":{"199":1,"210":1,"561":1,"570":3,"632":1,"639":4,"1329":8,"1655":1,"1660":1,"1712":1,"1846":3,"1954":1,"2082":3,"2095":4,"2278":2,"2290":1,"2303":1,"2390":1,"2397":1,"2872":2,"2927":2}}],["coln",{"2":{"191":3,"1774":2,"2316":1,"2546":1,"2555":1}}],["collectively",{"2":{"2639":1}}],["collection",{"2":{"1328":1,"1469":1}}],["collected",{"2":{"2581":1}}],["collect",{"2":{"1962":1}}],["collaborator",{"2":{"580":1,"614":1,"2725":1,"2729":1}}],["collaborators",{"2":{"178":1,"212":1,"403":2,"2477":1,"2725":1,"2726":2,"2729":2,"2731":1}}],["collisions",{"2":{"156":1,"182":1,"1431":1}}],["collision",{"2":{"134":1,"170":1,"754":1,"1319":1}}],["colemak",{"0":{"2810":1},"2":{"175":1,"429":3,"1425":1,"1442":1,"1449":2,"1619":1,"2558":1,"2562":1,"2786":2,"2887":3}}],["coled",{"2":{"21":1,"24":1}}],["cols",{"2":{"111":1,"114":2,"561":1,"589":1,"639":2,"1368":1,"1446":2,"1492":1,"1699":1,"1846":2,"1924":1,"2082":2,"2095":1,"2303":1,"2312":1,"2557":1,"2562":3,"2585":1,"2680":1,"2719":3,"2720":1,"2728":1,"2872":1,"2927":3,"2939":1}}],["columner",{"2":{"241":2}}],["columns",{"0":{"2429":1},"2":{"222":1,"249":1,"512":1,"514":1,"561":3,"570":1,"1368":1,"1413":1,"1490":1,"1492":1,"2269":1,"2278":2,"2423":2,"2429":1,"2431":1,"2434":1,"2466":4,"2718":1,"2794":1,"2828":1,"2872":2,"2927":1}}],["column",{"0":{"1368":1},"2":{"55":1,"210":1,"266":1,"317":1,"351":2,"639":2,"1589":2,"1590":2,"1591":1,"1712":1,"1720":1,"1722":1,"1849":4,"1949":1,"1954":2,"2085":4,"2269":1,"2288":1,"2290":2,"2303":4,"2423":1,"2429":5,"2431":2,"2434":2,"2466":16,"2557":1,"2680":2,"2720":3,"2721":1,"2794":1,"2869":1,"2876":1,"2884":1,"2915":1,"2937":1}}],["courts",{"2":{"2742":1}}],["court",{"2":{"2291":1}}],["courtesy",{"2":{"615":1}}],["course",{"2":{"120":1,"123":1,"618":1,"1779":1,"2482":1,"2950":1}}],["couldn",{"0":{"2850":1}}],["could",{"0":{"1767":1},"2":{"222":1,"312":3,"414":1,"429":1,"433":1,"473":1,"540":2,"688":1,"699":1,"701":1,"1413":1,"1423":1,"1425":1,"1457":1,"1470":1,"1471":2,"1482":1,"1534":1,"1538":1,"1605":1,"1613":1,"1617":1,"1670":2,"1935":1,"1981":1,"2013":2,"2059":1,"2075":1,"2265":1,"2435":1,"2474":1,"2565":1,"2568":1,"2569":1,"2573":2,"2635":1,"2652":1,"2757":1,"2784":2,"2850":1,"2920":2,"2927":1,"2932":1,"2938":1}}],["couple",{"2":{"145":1,"408":1,"1349":1,"1448":1,"1485":1,"1529":1,"2071":1,"2275":1,"2294":1,"2428":1,"2431":1,"2784":1}}],["coupled",{"2":{"38":1,"119":1,"131":1}}],["count=6",{"2":{"2455":1}}],["count=30",{"2":{"2455":1}}],["counting",{"2":{"2387":2,"2794":1}}],["countries",{"2":{"1426":1}}],["counts",{"2":{"236":2,"277":1,"1983":1,"2076":1,"2310":1}}],["counteract",{"2":{"1788":1,"2929":1}}],["counterparts",{"2":{"1457":1}}],["counterpart",{"2":{"1423":1}}],["counters",{"2":{"520":1,"1413":1}}],["counter",{"2":{"114":1,"398":1,"1556":1,"1668":1,"2310":1}}],["count",{"0":{"2362":1},"1":{"2363":1},"2":{"39":2,"70":1,"111":1,"112":1,"167":6,"175":4,"181":1,"199":1,"210":3,"236":4,"249":4,"324":1,"354":2,"565":1,"670":2,"729":1,"749":1,"750":1,"754":1,"755":3,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1285":1,"1329":8,"1410":1,"1533":2,"1538":1,"1594":1,"1740":2,"1742":1,"1743":1,"1747":1,"1795":1,"1852":1,"1866":1,"1947":1,"1952":3,"1980":1,"2000":2,"2008":2,"2076":5,"2077":3,"2078":2,"2091":1,"2108":1,"2179":1,"2185":1,"2186":2,"2198":4,"2206":1,"2207":1,"2286":1,"2289":2,"2304":1,"2309":1,"2379":1,"2381":4,"2575":1,"2576":3,"2577":1,"2634":2,"2757":4,"2774":1,"2871":2,"2877":3,"2878":2}}],["corp",{"2":{"2612":1,"2615":2}}],["coral",{"2":{"2089":2,"2205":2}}],["corrupted",{"2":{"2482":1}}],["corruption",{"2":{"249":1,"2950":1}}],["corresponds",{"2":{"1538":1,"1926":1,"2298":1,"2317":1,"2502":1}}],["correspond",{"2":{"729":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1742":1,"2521":1,"2553":1,"2869":1,"2925":1,"2927":1}}],["corresponding",{"2":{"118":1,"181":1,"489":1,"701":1,"721":1,"1200":1,"1346":1,"1378":1,"1518":1,"1538":1,"1624":1,"1627":1,"1630":1,"1633":1,"1949":1,"2295":1,"2418":1,"2423":1,"2433":1,"2466":1,"2567":3,"2729":1,"2735":1,"2755":1,"2776":2,"2779":1,"2792":1,"2886":1,"2920":1,"2921":1}}],["corrected",{"2":{"458":1,"1534":1,"1535":2,"2757":1}}],["correctness",{"2":{"263":1,"2729":1}}],["correct",{"2":{"44":1,"114":2,"132":1,"134":1,"149":1,"191":4,"194":1,"199":2,"210":2,"222":2,"236":1,"249":2,"294":1,"328":1,"339":1,"487":1,"596":1,"597":1,"625":2,"686":1,"687":1,"689":1,"721":1,"749":1,"1200":1,"1203":1,"1204":1,"1320":1,"1416":1,"1472":1,"1492":1,"1517":1,"1524":1,"1525":1,"1528":2,"1534":2,"1535":3,"1538":1,"1590":1,"1781":1,"1956":1,"1987":1,"2044":1,"2273":1,"2331":1,"2466":1,"2606":1,"2620":1,"2669":1,"2673":1,"2674":1,"2683":1,"2711":1,"2728":1,"2757":2}}],["corrections",{"2":{"199":1,"266":1,"317":1,"1527":2}}],["correction",{"2":{"39":1,"210":1,"236":1,"249":2,"294":1,"1527":3,"1538":1,"1539":1}}],["correctly",{"2":{"21":1,"24":1,"38":1,"44":1,"73":1,"132":1,"175":2,"199":1,"263":2,"277":2,"333":1,"385":1,"394":1,"436":1,"749":1,"1329":1,"1381":1,"1414":1,"1528":1,"1668":1,"1962":1,"2298":1,"2434":2,"2554":1,"2573":1,"2590":1,"2594":1,"2608":1,"2668":1,"2674":3,"2728":1,"2729":1,"2756":4}}],["cor65",{"2":{"249":1}}],["cor",{"2":{"222":1,"281":4}}],["corner",{"2":{"1977":1,"2869":2}}],["corne",{"2":{"86":1,"92":1,"93":1,"175":1,"222":1,"285":1}}],["cortex",{"2":{"40":1,"134":1,"175":1,"210":1,"2674":4,"2689":1}}],["cored",{"2":{"2421":1,"2429":2}}],["cores",{"2":{"2042":1}}],["core",{"0":{"1":1,"10":1,"36":1,"37":1,"61":1,"68":1,"91":1,"106":1,"129":1,"144":1,"171":1,"186":1,"198":1,"219":1,"227":1,"242":1,"261":1,"613":1,"627":1,"2729":1,"2780":1},"1":{"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"38":1,"39":1,"40":1,"62":1,"63":1,"64":1,"69":1,"70":1,"92":1,"93":1,"94":1,"95":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"130":1,"131":1,"132":1,"133":1,"145":1,"146":1,"147":1,"148":1,"172":1,"173":1,"174":1,"187":1,"188":1,"189":1,"190":1,"220":1,"221":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"262":1,"263":1,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1},"2":{"1":2,"75":2,"113":5,"114":7,"118":1,"130":1,"133":3,"134":6,"140":1,"146":1,"149":3,"160":5,"163":1,"171":1,"175":2,"191":3,"198":1,"199":4,"201":1,"210":2,"222":3,"236":2,"249":2,"266":1,"277":1,"285":2,"294":2,"297":1,"308":2,"317":2,"327":1,"328":1,"333":3,"339":1,"403":2,"416":1,"459":3,"609":1,"612":1,"613":2,"627":1,"666":1,"714":1,"717":1,"1353":1,"1365":1,"1413":1,"1484":1,"1668":1,"1850":1,"2088":1,"2326":1,"2412":1,"2465":1,"2477":1,"2567":2,"2707":1,"2726":2,"2728":5,"2729":5,"2908":1,"2935":2,"2937":1}}],["congrats",{"2":{"2617":1}}],["congratulations",{"2":{"617":1}}],["conjunction",{"2":{"2319":1}}],["conu",{"2":{"1680":1}}],["conducted",{"2":{"2427":1}}],["conductors",{"2":{"1194":1,"1197":1,"1200":1}}],["conduct",{"0":{"615":1},"2":{"603":1,"615":2,"2896":1}}],["cond",{"2":{"532":1,"1680":1}}],["conditions",{"0":{"2075":1},"2":{"749":1,"1613":1,"1670":1,"2014":2,"2075":1,"2317":1}}],["conditional",{"0":{"532":1,"1406":1},"2":{"532":1}}],["condition",{"2":{"222":1,"277":1,"512":4,"1378":1,"1391":1,"1399":1,"2914":1}}],["concurrent",{"2":{"2754":1}}],["concurrently",{"2":{"2638":1}}],["concept",{"2":{"2684":1}}],["conceptually",{"2":{"2564":1}}],["concepts",{"2":{"113":1,"605":1,"2467":1,"2619":1,"2633":1,"2635":1,"2869":1,"2905":1,"2934":1}}],["conceived",{"2":{"2308":1}}],["concerning",{"2":{"1433":1}}],["concerns",{"2":{"312":2,"2903":1}}],["concern",{"2":{"312":1,"538":1,"2560":1,"2731":1}}],["concerned",{"2":{"263":1}}],["concreteflowers",{"2":{"281":2,"285":1}}],["concrete",{"2":{"234":1}}],["confuse",{"2":{"2459":1,"2797":1}}],["confused",{"2":{"1446":1}}],["confusion",{"2":{"271":1,"303":1,"338":1,"1668":1,"2569":1,"2794":1}}],["confusingly",{"2":{"1351":1}}],["confusing",{"2":{"243":1,"331":1,"409":1,"533":1,"541":1,"609":1,"2303":1,"2884":1}}],["conforms",{"2":{"2755":1}}],["conform",{"2":{"244":1,"613":1,"2447":1,"2460":1,"2721":1}}],["conf",{"2":{"134":1,"422":1,"1316":1,"2763":1}}],["conflicted",{"2":{"2634":1}}],["conflicting",{"0":{"1436":1},"2":{"2634":7}}],["conflicts",{"0":{"2633":1},"1":{"2634":1},"2":{"175":1,"403":2,"1470":1,"2298":1,"2632":1,"2634":1,"2638":1,"2726":4,"2728":1}}],["conflict",{"2":{"92":1,"175":1,"514":1,"1554":1,"1595":1,"2258":1,"2633":2,"2634":7}}],["confirm",{"2":{"409":1,"686":1,"687":1,"695":1,"754":1,"2569":1,"2709":1}}],["confirmed",{"2":{"22":1,"2435":1}}],["confident",{"2":{"399":1,"2847":1}}],["confidence",{"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"166":1,"399":1,"2709":1,"2729":1}}],["conficts",{"2":{"114":1}}],["configparser",{"2":{"495":2}}],["configuring",{"0":{"393":1,"397":1,"555":1,"1502":1,"1934":1,"2298":1,"2673":1,"2913":1},"1":{"556":1,"557":1,"558":1,"559":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1940":1},"2":{"639":1,"901":1,"936":1,"970":1,"1004":1,"1038":1,"1072":1,"1106":1,"1140":1,"1174":1,"1227":1,"1390":1,"1549":1,"2269":1,"2450":1,"2721":1,"2728":1,"2906":1}}],["configures",{"2":{"1407":1,"1486":2,"1598":1,"1678":2,"1681":3,"1742":1,"1972":3,"2275":1,"2454":1,"2855":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2861":1,"2862":1,"2863":1,"2864":1,"2865":1,"2867":1,"2870":1,"2871":1,"2873":1,"2874":1,"2875":1,"2877":1,"2878":1,"2879":1,"2880":1,"2881":1,"2883":1}}],["configured",{"0":{"564":1},"2":{"134":1,"236":1,"255":1,"256":1,"266":1,"303":1,"306":1,"315":1,"338":1,"492":1,"527":1,"561":1,"625":2,"665":1,"715":1,"716":1,"720":1,"742":1,"743":1,"744":1,"749":1,"923":3,"1094":3,"1128":3,"1197":2,"1200":1,"1213":1,"1265":1,"1285":1,"1289":1,"1297":2,"1353":1,"1407":1,"1463":1,"1474":1,"1478":1,"1487":1,"1547":1,"1592":1,"1610":1,"1678":1,"1742":2,"1776":2,"1792":1,"1959":1,"2039":1,"2046":1,"2048":1,"2070":1,"2085":1,"2095":1,"2182":1,"2190":1,"2193":1,"2213":1,"2214":1,"2217":1,"2275":1,"2558":1,"2584":1,"2597":1,"2602":1,"2616":1,"2637":3,"2668":1,"2685":2,"2686":1,"2700":1,"2701":1,"2703":1,"2722":1,"2728":1,"2756":13,"2761":1,"2858":1,"2884":1,"2912":1,"2922":1,"2928":1,"2935":1}}],["configure",{"0":{"1600":1,"2583":1,"2661":1,"2672":1},"1":{"2662":1,"2663":1,"2673":1},"2":{"76":1,"112":2,"124":1,"154":1,"170":1,"195":1,"209":1,"222":1,"308":5,"317":11,"431":1,"574":1,"623":1,"624":1,"625":1,"721":1,"728":1,"767":1,"804":1,"820":1,"822":1,"829":1,"830":1,"847":1,"849":1,"858":1,"862":1,"879":1,"881":1,"890":1,"892":1,"911":1,"913":1,"922":1,"927":1,"946":1,"948":1,"957":1,"961":1,"980":1,"982":1,"991":1,"995":1,"1014":1,"1016":1,"1025":1,"1029":1,"1048":1,"1050":1,"1059":1,"1063":1,"1082":1,"1084":1,"1093":1,"1097":1,"1116":1,"1118":1,"1127":1,"1131":1,"1150":1,"1152":1,"1161":1,"1165":1,"1184":1,"1186":1,"1195":1,"1198":1,"1201":1,"1217":1,"1218":1,"1237":1,"1239":1,"1388":1,"1403":1,"1405":1,"1415":1,"1417":2,"1484":1,"1493":1,"1545":1,"1546":1,"1551":1,"1590":1,"1593":1,"1595":1,"1598":1,"1600":1,"1609":3,"1612":1,"1667":1,"1766":1,"1779":1,"1802":1,"1836":1,"1845":1,"1983":1,"1987":1,"2048":1,"2072":1,"2081":1,"2271":1,"2272":1,"2278":1,"2298":2,"2328":1,"2415":1,"2453":1,"2454":1,"2455":2,"2456":1,"2583":1,"2584":1,"2587":1,"2616":2,"2664":1,"2697":1,"2698":1,"2703":1,"2716":1,"2720":1,"2759":1,"2786":1,"2907":1,"2908":1,"2909":1,"2912":2,"2926":1}}],["configurability",{"2":{"1777":1}}],["configurables",{"2":{"124":1,"201":1,"212":1,"302":1,"470":1}}],["configurable",{"2":{"74":1,"109":1,"134":1,"152":1,"191":1,"198":1,"221":1,"222":1,"246":1,"555":1,"717":1,"748":1,"751":1,"754":1,"755":1,"756":1,"1593":1,"1977":1,"2087":1,"2685":1,"2728":1,"2754":1,"2757":2}}],["configuratorexport",{"2":{"429":1,"430":1}}],["configurator",{"0":{"576":1,"579":1,"587":1,"595":1,"616":1,"1311":1,"2589":1,"2793":1,"2794":1,"2796":1},"1":{"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"602":1,"617":1,"618":1,"619":1,"620":1,"621":1,"1312":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"25":1,"114":1,"120":2,"154":1,"220":1,"411":1,"429":1,"430":2,"438":1,"447":1,"452":2,"453":2,"463":1,"500":2,"576":3,"578":2,"579":3,"580":1,"582":1,"583":1,"587":1,"588":3,"589":1,"591":1,"592":2,"593":1,"594":2,"595":1,"596":1,"600":1,"617":2,"621":1,"1311":1,"1336":1,"1364":1,"1441":1,"1627":1,"2414":2,"2434":1,"2450":1,"2453":1,"2477":1,"2478":1,"2589":6,"2606":1,"2607":1,"2617":1,"2710":1,"2728":2,"2793":1,"2794":4,"2795":3,"2796":3,"2797":1,"2799":1,"2851":1,"2869":1}}],["configurations",{"0":{"1519":1},"2":{"76":1,"265":1,"397":1,"433":1,"495":1,"554":1,"558":1,"613":1,"695":2,"715":1,"716":1,"749":1,"750":1,"759":1,"1519":1,"1943":1,"1968":1,"1973":1,"1988":1,"1989":1,"2316":1,"2439":1,"2674":1,"2680":1,"2704":1,"2901":1,"2909":1,"2930":1,"2946":4}}],["configuration",{"0":{"18":1,"112":1,"167":1,"471":1,"476":1,"477":1,"478":1,"482":1,"484":1,"485":1,"495":1,"496":1,"497":1,"498":1,"499":1,"500":1,"565":1,"663":1,"664":1,"700":1,"704":1,"726":1,"728":1,"743":1,"746":1,"747":1,"748":1,"749":1,"750":1,"751":1,"752":1,"753":1,"754":1,"755":1,"756":1,"757":1,"758":1,"759":1,"767":1,"768":1,"802":1,"804":1,"828":1,"830":1,"857":1,"862":1,"889":1,"892":1,"921":1,"927":1,"956":1,"961":1,"990":1,"995":1,"1024":1,"1029":1,"1058":1,"1063":1,"1092":1,"1097":1,"1126":1,"1131":1,"1160":1,"1165":1,"1194":1,"1197":1,"1200":1,"1206":1,"1216":1,"1218":1,"1247":1,"1248":1,"1268":1,"1269":1,"1285":1,"1289":1,"1295":1,"1386":1,"1390":1,"1403":1,"1405":1,"1406":1,"1415":1,"1466":1,"1544":1,"1547":1,"1552":1,"1555":1,"1579":1,"1580":1,"1607":1,"1625":1,"1676":1,"1699":1,"1740":1,"1799":1,"1836":1,"1845":1,"1846":1,"1926":1,"1949":1,"1950":1,"1951":1,"1960":1,"1985":1,"1987":1,"2039":1,"2056":1,"2081":1,"2082":1,"2182":1,"2211":1,"2217":1,"2221":1,"2259":1,"2260":1,"2263":1,"2268":1,"2278":1,"2288":1,"2303":1,"2322":1,"2327":1,"2379":1,"2717":1,"2718":1,"2722":1,"2723":1,"2754":1,"2853":1,"2854":1,"2909":1},"1":{"478":1,"479":1,"480":1,"481":1,"496":1,"497":1,"498":1,"499":1,"500":1,"665":1,"666":1,"667":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"727":1,"744":1,"745":1,"747":1,"748":2,"749":1,"750":1,"751":1,"752":1,"754":1,"755":1,"756":1,"757":1,"759":1,"769":1,"770":1,"803":1,"829":1,"858":1,"859":1,"860":1,"861":1,"890":1,"891":1,"922":1,"923":1,"924":1,"925":1,"926":1,"957":1,"958":1,"959":1,"960":1,"991":1,"992":1,"993":1,"994":1,"1025":1,"1026":1,"1027":1,"1028":1,"1059":1,"1060":1,"1061":1,"1062":1,"1093":1,"1094":1,"1095":1,"1096":1,"1127":1,"1128":1,"1129":1,"1130":1,"1161":1,"1162":1,"1163":1,"1164":1,"1207":1,"1208":1,"1217":1,"1286":1,"1287":1,"1288":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1404":1,"1416":1,"1417":1,"1418":1,"1419":1,"1420":1,"1545":1,"1546":1,"1548":1,"1549":1,"1550":1,"1551":1,"1553":1,"1554":1,"1556":1,"1557":1,"1608":1,"1609":1,"1610":1,"1611":1,"1612":1,"1613":1,"1614":1,"1615":1,"1616":1,"1617":1,"1618":1,"1619":1,"1620":1,"1741":1,"1742":1,"1743":1,"1800":1,"1801":1,"1802":1,"1803":1,"1950":1,"1951":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2264":1,"2265":1,"2266":1,"2267":1,"2269":1,"2270":1,"2271":1,"2272":1,"2273":1,"2274":1,"2275":1,"2276":1,"2277":1,"2278":1,"2328":1,"2719":1,"2720":1,"2723":1,"2724":1,"2910":1,"2911":1,"2912":1,"2913":1,"2914":1,"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1,"2921":1,"2922":1,"2923":1,"2924":1,"2925":1,"2926":1,"2927":1,"2928":1,"2929":1,"2930":1,"2931":1,"2932":1,"2933":1},"2":{"18":1,"35":1,"40":1,"65":1,"69":1,"74":1,"83":2,"114":2,"118":1,"134":2,"138":1,"141":1,"149":2,"167":4,"191":1,"194":3,"198":1,"199":1,"217":1,"222":1,"233":1,"236":3,"238":1,"251":1,"262":2,"285":1,"293":3,"305":3,"314":3,"317":2,"397":2,"431":1,"472":1,"473":2,"474":1,"475":3,"476":2,"477":2,"482":2,"483":1,"489":2,"495":4,"496":1,"497":1,"498":1,"499":3,"500":1,"504":1,"513":2,"555":4,"558":1,"564":1,"570":1,"574":1,"641":1,"663":1,"664":1,"665":1,"666":1,"717":1,"721":2,"723":1,"728":1,"744":1,"749":2,"750":2,"752":3,"754":1,"755":1,"757":1,"759":2,"768":3,"769":1,"770":1,"804":1,"830":1,"862":1,"892":1,"921":4,"927":1,"961":1,"995":1,"1024":2,"1029":1,"1058":2,"1063":1,"1092":6,"1097":1,"1126":6,"1131":1,"1160":2,"1165":1,"1171":1,"1193":1,"1194":1,"1197":1,"1198":1,"1200":2,"1201":1,"1206":1,"1213":1,"1218":1,"1248":2,"1269":1,"1297":1,"1298":1,"1299":1,"1303":2,"1386":1,"1388":1,"1390":2,"1392":1,"1393":1,"1403":1,"1405":1,"1407":1,"1466":1,"1485":1,"1502":1,"1550":1,"1556":1,"1557":1,"1607":1,"1612":2,"1668":1,"1670":2,"1835":1,"1837":1,"1846":1,"1905":1,"1926":2,"1934":1,"1946":1,"1949":1,"1974":2,"1987":4,"2082":1,"2085":1,"2165":1,"2179":1,"2199":1,"2211":1,"2259":1,"2276":1,"2278":1,"2292":2,"2303":1,"2317":1,"2432":1,"2450":2,"2453":1,"2454":1,"2567":1,"2578":1,"2616":1,"2628":1,"2668":1,"2674":2,"2683":1,"2702":1,"2703":1,"2704":1,"2709":1,"2716":1,"2722":1,"2728":12,"2851":2,"2871":1,"2878":1,"2907":1,"2912":1,"2913":1,"2928":1,"2938":1}}],["configs",{"2":{"40":1,"77":1,"175":1,"199":1,"249":2,"285":1,"422":1,"1985":3}}],["config",{"0":{"69":1,"77":1,"83":1,"431":1,"475":1,"560":1,"719":1,"1466":1,"1486":1,"1631":1,"1748":1,"1852":1,"2003":1,"2091":1,"2416":1,"2454":1,"2890":1},"1":{"476":1,"477":1,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1,"561":1,"562":1,"563":1,"564":1,"565":1,"566":1,"567":1,"568":1,"569":1,"570":1,"720":1,"1749":1},"2":{"4":2,"15":1,"18":1,"21":2,"24":2,"39":1,"40":1,"47":1,"70":12,"74":1,"75":1,"76":1,"77":2,"83":2,"92":1,"93":2,"95":2,"114":5,"119":1,"133":2,"134":3,"149":1,"160":4,"167":6,"168":2,"175":10,"184":2,"185":2,"191":4,"199":21,"210":3,"212":1,"222":16,"224":1,"236":10,"246":1,"249":27,"262":2,"266":5,"273":1,"277":2,"285":3,"303":1,"308":1,"317":1,"328":27,"333":4,"338":1,"339":1,"344":1,"397":3,"429":2,"431":5,"471":1,"472":1,"473":1,"474":1,"475":1,"476":2,"478":1,"479":1,"480":1,"481":1,"482":1,"483":1,"488":1,"489":4,"495":4,"496":5,"497":2,"498":2,"499":2,"515":1,"555":2,"557":1,"558":1,"560":2,"579":1,"647":1,"660":1,"665":3,"666":2,"667":1,"669":4,"672":4,"673":4,"704":1,"717":1,"718":1,"721":2,"726":1,"727":1,"748":1,"749":2,"750":2,"751":1,"754":2,"755":2,"756":2,"759":2,"767":1,"768":1,"769":1,"770":1,"802":1,"828":1,"829":1,"857":1,"858":1,"859":1,"860":1,"861":1,"889":1,"890":1,"891":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"956":1,"957":1,"958":1,"959":1,"960":1,"990":1,"991":1,"992":1,"993":1,"994":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1195":1,"1198":1,"1201":1,"1203":1,"1204":1,"1205":1,"1206":1,"1208":1,"1209":1,"1213":1,"1216":1,"1217":1,"1248":3,"1269":1,"1285":1,"1286":1,"1287":1,"1288":1,"1297":1,"1300":1,"1301":1,"1312":1,"1313":1,"1317":1,"1319":1,"1331":1,"1354":1,"1372":1,"1392":1,"1396":1,"1405":1,"1410":1,"1412":1,"1417":21,"1419":2,"1420":12,"1433":1,"1463":1,"1466":3,"1474":1,"1477":1,"1478":1,"1479":1,"1480":2,"1481":1,"1482":1,"1483":1,"1484":1,"1485":1,"1487":1,"1488":1,"1489":1,"1490":2,"1491":1,"1492":1,"1493":1,"1501":1,"1502":2,"1503":1,"1518":1,"1522":2,"1544":1,"1545":1,"1546":1,"1579":1,"1589":1,"1590":1,"1594":2,"1595":1,"1597":1,"1598":1,"1607":1,"1612":1,"1619":1,"1625":2,"1655":1,"1661":1,"1662":1,"1663":1,"1665":1,"1666":1,"1667":1,"1676":1,"1678":1,"1680":1,"1683":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1740":1,"1741":1,"1742":1,"1743":1,"1768":1,"1786":1,"1788":2,"1792":1,"1800":1,"1801":1,"1802":1,"1803":1,"1835":1,"1836":2,"1846":4,"1849":1,"1851":1,"1921":1,"1922":1,"1924":2,"1926":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1949":1,"1962":1,"1966":1,"1967":1,"1968":1,"1977":1,"1978":1,"1979":2,"1980":1,"1982":2,"1983":2,"1985":2,"1998":1,"2001":2,"2002":1,"2013":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2049":1,"2050":2,"2056":1,"2068":1,"2082":4,"2085":1,"2086":1,"2090":1,"2095":2,"2096":1,"2179":1,"2181":1,"2182":1,"2188":1,"2189":1,"2191":2,"2192":1,"2193":1,"2206":2,"2207":1,"2221":1,"2250":1,"2259":1,"2271":2,"2272":2,"2273":1,"2274":2,"2275":1,"2276":1,"2293":1,"2301":1,"2302":1,"2303":3,"2305":1,"2309":2,"2319":1,"2322":3,"2327":1,"2328":1,"2330":1,"2331":1,"2375":1,"2390":2,"2397":2,"2414":2,"2415":1,"2416":7,"2418":4,"2451":1,"2454":23,"2558":1,"2583":3,"2592":1,"2593":1,"2594":1,"2605":1,"2607":1,"2608":1,"2650":1,"2652":1,"2685":1,"2691":1,"2694":1,"2700":1,"2702":1,"2705":1,"2714":1,"2719":1,"2723":2,"2724":1,"2728":4,"2752":1,"2754":1,"2756":11,"2757":2,"2764":1,"2786":1,"2851":1,"2880":4,"2890":3,"2891":1,"2892":1,"2894":2,"2908":1,"2910":2,"2911":1,"2912":3,"2913":1,"2920":2,"2921":2,"2922":2,"2923":1,"2926":1,"2929":4,"2931":4}}],["connects",{"0":{"1659":1},"2":{"1655":1,"2466":1}}],["connector",{"2":{"1398":1,"2265":1,"2494":1}}],["connectivity",{"2":{"2674":1,"2677":1}}],["connecting",{"0":{"396":1},"2":{"396":1,"923":1,"1094":1,"1128":1,"1313":1,"2265":1,"2427":2,"2483":1,"2602":1}}],["connection",{"2":{"92":1,"285":1,"308":1,"328":1,"570":1,"574":1,"1192":1,"1193":1,"1197":1,"1951":3,"2206":2,"2261":1,"2265":2,"2275":4,"2278":1,"2279":1,"2374":1,"2425":1,"2554":2,"2573":2,"2651":1,"2677":1,"2678":1,"2880":3}}],["connected",{"2":{"92":1,"149":1,"166":1,"249":1,"561":1,"565":1,"704":2,"716":1,"721":1,"726":3,"734":1,"740":1,"744":2,"802":1,"805":1,"828":1,"829":1,"831":1,"857":1,"858":1,"863":1,"889":1,"890":1,"893":1,"921":1,"922":1,"928":1,"956":1,"957":1,"962":1,"990":1,"991":1,"996":1,"1024":1,"1025":1,"1030":1,"1058":1,"1059":1,"1064":1,"1092":1,"1093":1,"1098":1,"1126":1,"1127":1,"1132":1,"1160":1,"1161":1,"1166":1,"1200":2,"1216":1,"1217":1,"1219":1,"1247":1,"1252":1,"1285":1,"1294":1,"1313":1,"1465":1,"1474":1,"1475":1,"1486":3,"1545":1,"1546":1,"1558":2,"1659":1,"1681":2,"1682":1,"1699":4,"1852":1,"1951":1,"1966":3,"1967":1,"1974":3,"1978":2,"1979":1,"1981":3,"1982":1,"1983":4,"2091":1,"2179":6,"2208":1,"2261":1,"2267":1,"2272":1,"2274":3,"2275":2,"2278":1,"2288":3,"2375":1,"2396":1,"2423":1,"2466":4,"2508":1,"2612":1,"2615":1,"2679":1,"2682":1,"2687":1,"2690":2,"2695":1,"2718":1,"2720":1,"2721":1,"2855":2,"2856":2,"2857":2,"2858":1,"2863":1,"2865":2,"2867":5,"2872":3,"2875":2,"2876":4,"2880":1,"2883":1}}],["connect",{"0":{"1660":1},"2":{"82":1,"92":1,"434":2,"767":1,"1247":1,"1268":1,"1311":1,"1313":1,"1655":1,"1660":1,"1962":2,"2263":1,"2266":1,"2267":1,"2374":1,"2428":1,"2429":1,"2430":2,"2434":1,"2483":1,"2485":1,"2487":1,"2489":1,"2494":1,"2507":1,"2508":1}}],["cons",{"2":{"2329":1,"2425":1}}],["consecutive",{"2":{"1971":5,"2320":1}}],["consequences",{"0":{"2747":1}}],["consequence",{"2":{"1423":1,"1528":1,"1593":1}}],["consequently",{"2":{"657":1}}],["consult",{"2":{"389":1,"701":1,"716":1,"754":1,"762":1,"1297":1,"2729":1}}],["consulted",{"2":{"157":1}}],["consuming",{"2":{"2598":1}}],["consumes",{"2":{"1953":1}}],["consume",{"2":{"1365":1,"1410":1}}],["consumed",{"2":{"588":1}}],["consumer",{"2":{"231":1,"236":1,"1351":1,"1357":1,"2283":1,"2517":1}}],["consumer2rn42",{"2":{"40":1}}],["consumer2bluefruit",{"2":{"40":1}}],["consumption",{"2":{"134":1,"222":1,"561":1,"648":1,"2454":3}}],["consist",{"2":{"2296":1}}],["consisting",{"2":{"1443":1,"2449":1}}],["consists",{"2":{"366":1,"472":1,"2869":1}}],["consistency",{"2":{"40":1,"114":2,"160":1,"167":1,"233":1,"285":1,"327":1,"512":1,"521":1,"529":1,"610":1,"623":1,"2726":2}}],["consistently",{"2":{"94":1,"174":1,"175":1,"191":2,"1287":1}}],["consistent",{"2":{"39":1,"175":1,"199":1,"293":1,"305":1,"314":1,"512":1,"561":1,"656":1,"674":1,"2756":1,"2854":1}}],["considers",{"2":{"2741":1,"2920":1}}],["considering",{"2":{"1597":1,"2776":1}}],["considerations",{"0":{"1365":1,"2265":1,"2279":1,"2569":1},"1":{"2280":1},"2":{"2676":1}}],["considerably",{"2":{"113":1}}],["consider",{"0":{"416":1},"2":{"416":1,"450":1,"540":1,"607":1,"613":1,"1414":1,"1622":1,"1791":1,"2431":1,"2432":1,"2567":2,"2684":1,"2685":1,"2686":1,"2712":1,"2713":1,"2895":1,"2913":1}}],["considered",{"2":{"241":1,"253":1,"270":1,"281":1,"307":1,"412":2,"569":1,"659":1,"1409":1,"1410":1,"1600":1,"1762":1,"1960":1,"1968":3,"1976":2,"2051":1,"2381":1,"2450":1,"2453":1,"2731":1,"2757":1,"2772":1,"2776":1,"2920":1,"2921":1}}],["construction",{"2":{"2756":2}}],["constructed",{"2":{"2059":1}}],["constrains",{"2":{"2913":1}}],["constraint",{"2":{"2901":1}}],["constraints",{"0":{"2734":1,"2901":1},"2":{"123":1,"134":1,"153":1,"720":1,"1300":1,"2330":1,"2888":1,"2901":2,"2902":1}}],["constraining",{"2":{"1427":1}}],["constrain",{"2":{"191":1,"339":1,"1528":1,"1983":3,"2931":1}}],["constrained",{"2":{"123":1,"433":1,"2765":1,"2772":1,"2888":1}}],["const",{"0":{"773":1,"776":1,"782":1,"785":1,"788":1,"1259":1,"1277":1,"1715":1,"1717":1,"1721":1,"2228":1,"2230":1,"2232":1,"2234":1,"2349":1},"1":{"774":1,"775":1,"777":1,"778":1,"783":1,"784":1,"786":1,"787":1,"789":1,"790":1,"1260":1,"1261":1,"1278":1,"1716":1,"1718":1,"1722":1,"2229":1,"2231":1,"2233":1,"2235":1,"2350":1},"2":{"247":1,"272":1,"307":1,"589":1,"774":1,"777":1,"783":1,"786":1,"789":1,"1260":1,"1278":1,"1419":2,"1446":2,"1527":1,"1534":1,"1535":2,"1602":1,"1603":1,"1604":1,"1605":6,"1617":1,"1618":1,"1656":1,"1667":1,"1716":1,"1718":1,"1722":1,"1774":2,"1776":6,"1777":3,"1779":1,"1924":1,"1946":1,"1947":1,"1954":13,"2187":7,"2189":6,"2191":3,"2229":1,"2231":1,"2233":1,"2235":1,"2277":5,"2285":1,"2286":1,"2290":10,"2305":1,"2312":1,"2329":1,"2350":1,"2557":1,"2562":1,"2757":7}}],["constantly",{"2":{"2295":1}}],["constant",{"0":{"1937":1},"2":{"175":1,"198":1,"519":1,"1450":1,"1498":1,"1593":1,"1934":3,"1935":2,"1937":2,"1938":1,"1939":1,"2767":2,"2774":2,"2912":1}}],["constants",{"0":{"383":1},"2":{"76":1,"172":1,"175":1,"285":1,"383":10,"701":1,"1423":1,"1593":1,"1788":1,"2929":1}}],["constellation",{"2":{"102":3,"114":1,"222":1}}],["consoles",{"2":{"82":1,"434":1}}],["console",{"0":{"82":1,"434":1,"1333":1},"2":{"40":1,"70":1,"82":2,"93":1,"111":1,"114":4,"119":2,"134":3,"249":1,"277":1,"308":1,"434":9,"574":2,"575":1,"625":1,"1209":1,"1322":1,"1325":1,"1329":2,"1332":2,"1333":2,"1365":1,"1376":1,"1428":2,"1535":1,"1592":1,"1624":1,"1625":7,"1627":1,"1962":4,"1975":1,"1998":1,"2418":1,"2754":2,"2947":1,"2949":1}}],["consolidating",{"2":{"251":1}}],["consolidation",{"0":{"32":1,"209":1},"2":{"40":2,"198":1,"224":1,"233":1,"266":1,"2729":1}}],["consolidated",{"0":{"1472":1},"2":{"208":1}}],["consolidate",{"0":{"215":1},"2":{"175":1,"199":1,"210":1,"215":1,"222":1,"236":1,"249":1,"285":1,"294":2,"1472":1}}],["consolidates",{"2":{"40":1}}],["contiguous",{"2":{"2207":1}}],["continually",{"2":{"1365":1}}],["continuations",{"2":{"199":1}}],["continuing",{"2":{"409":1}}],["continued",{"2":{"238":1,"262":1}}],["continues",{"2":{"133":1,"251":1,"429":1,"1597":1,"1600":1,"1985":1,"2300":1,"2634":1,"2888":1}}],["continue",{"2":{"64":1,"160":1,"240":1,"246":1,"416":1,"1446":1,"1600":2,"1791":1,"1811":1,"1911":1,"1917":1,"1940":1,"2171":1,"2177":1,"2260":1,"2331":1,"2607":1,"2634":2,"2728":1}}],["continuously",{"2":{"1791":1,"1990":1}}],["continuous",{"0":{"1688":1},"2":{"22":1,"1680":6,"1688":1,"1985":1,"1986":1,"2198":2}}],["cont",{"2":{"1680":1}}],["contoller",{"2":{"1197":1}}],["contacted",{"2":{"2567":1}}],["contacts",{"2":{"1410":1,"2429":1,"2434":1,"2466":1}}],["contact",{"0":{"1409":2},"1":{"1410":2,"1411":2,"1412":2,"1413":2,"1414":2},"2":{"596":1,"1409":5,"1645":4,"1653":1,"1654":2,"1985":1,"2427":1,"2428":3,"2466":1}}],["contained",{"2":{"487":1,"668":1,"1850":1,"2088":1,"2851":1}}],["container",{"2":{"222":1,"687":1,"688":1,"2384":2,"2607":1,"2610":1,"2769":1,"2777":1}}],["contains",{"2":{"433":3,"555":2,"557":1,"559":1,"632":1,"731":1,"807":1,"833":1,"865":1,"895":1,"930":1,"964":1,"998":1,"1032":1,"1066":1,"1100":1,"1134":1,"1168":1,"1221":1,"1281":1,"1283":1,"1362":4,"1433":3,"1633":1,"1644":1,"1746":1,"1766":1,"1983":1,"2178":1,"2296":1,"2300":1,"2427":1,"2502":1,"2590":1,"2640":1,"2652":1,"2728":1,"2765":2,"2768":1,"2769":1,"2770":2,"2772":2,"2777":1,"2779":1,"2795":3,"2851":2,"2869":2,"2871":1,"2878":1,"2927":1}}],["contain",{"2":{"236":1,"268":1,"544":1,"581":1,"588":3,"701":1,"721":1,"1433":1,"1681":1,"1818":1,"2059":1,"2329":1,"2376":1,"2452":1,"2456":2,"2457":1,"2608":1,"2717":1,"2720":1,"2726":2,"2769":1,"2946":1}}],["containing",{"0":{"423":1},"2":{"156":1,"175":2,"222":1,"265":1,"284":1,"293":1,"305":1,"307":1,"314":1,"382":1,"475":1,"564":1,"1720":1,"1722":1,"1747":1,"2057":1,"2058":1,"2059":1,"2318":1,"2349":1,"2450":1,"2474":1,"2585":1,"2597":1,"2728":1,"2729":1,"2765":1,"2772":1,"2779":1,"2886":1,"2945":1}}],["context",{"2":{"656":1,"1192":1,"1779":1,"1781":4,"2516":1,"2522":2,"2560":1,"2734":1}}],["contexts",{"2":{"540":1}}],["content",{"0":{"2437":1},"1":{"2438":1},"2":{"149":1,"266":1,"294":2,"357":1,"358":1,"359":1,"360":1,"361":5,"362":1,"380":1,"397":1,"749":1,"1332":1,"1472":1,"1627":1,"1946":1,"1948":2,"2044":1,"2287":2,"2437":1,"2453":1,"2569":1,"2605":1,"2607":1,"2634":1,"2669":1,"2764":2}}],["contents",{"2":{"40":1,"230":1,"607":2,"675":1,"677":2,"1798":1,"1954":3,"2189":1,"2206":1,"2290":1,"2504":1,"2562":1,"2634":1,"2726":1,"2756":2,"2767":1,"2774":1,"2775":1,"2795":2,"2949":1}}],["contrast",{"2":{"1796":1,"2183":1,"2283":1,"2288":2}}],["control+click",{"2":{"2669":1}}],["control+shift",{"2":{"1788":1,"2929":1}}],["control+shift+escape",{"2":{"1676":1}}],["control+a",{"2":{"1448":1}}],["control+alt+delete",{"2":{"1377":1}}],["control+right",{"2":{"686":1}}],["controls",{"0":{"1776":1},"2":{"574":1,"690":1,"727":1,"766":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1207":1,"1404":1,"1503":1,"1544":1,"1546":1,"1612":3,"1738":1,"1836":5,"2014":1,"2085":2,"2275":1,"2585":1,"2754":2,"2757":1,"2815":1}}],["controllable",{"2":{"489":1,"1546":1}}],["controlling",{"2":{"181":1,"724":1,"826":1,"855":1,"887":1,"919":1,"954":1,"988":1,"1022":1,"1056":1,"1090":1,"1124":1,"1158":1,"1214":1,"1781":1,"1782":1,"2002":1}}],["controlled",{"2":{"35":1,"648":1,"660":1,"1682":1,"1786":1,"1985":1,"2087":1,"2210":1,"2650":1,"2757":4}}],["controllerwords",{"2":{"175":1}}],["controllerworks",{"2":{"175":1}}],["controllers",{"2":{"40":1,"134":1,"222":1,"565":1,"721":1,"1197":1,"1388":1,"1391":1,"1399":1,"1920":1,"1953":1,"1969":1,"2179":1,"2189":1,"2261":2,"2263":1,"2265":2,"2273":5,"2278":1,"2430":1,"2706":1}}],["controller",{"0":{"2038":1,"2430":1},"1":{"2431":1},"2":{"26":2,"40":1,"92":1,"93":1,"114":1,"134":1,"191":2,"210":2,"215":1,"221":1,"222":2,"719":1,"1199":1,"1311":1,"1315":1,"1415":1,"1465":1,"1490":1,"1662":1,"1738":1,"1923":1,"1949":1,"1952":1,"1961":1,"1962":1,"1970":1,"1973":1,"1983":1,"2037":1,"2038":1,"2265":1,"2271":2,"2272":1,"2273":6,"2278":2,"2281":1,"2323":1,"2410":1,"2423":1,"2424":2,"2426":1,"2430":1,"2431":5,"2433":1,"2435":1,"2466":2,"2485":1,"2487":1,"2489":1,"2589":2,"2675":1,"2679":2,"2682":2,"2756":2,"2757":1,"2883":1,"2888":1,"2895":1}}],["control",{"0":{"265":1,"275":1,"727":1,"760":1,"820":1,"822":1,"825":1,"847":1,"849":1,"853":1,"861":1,"911":1,"913":1,"917":1,"926":1,"946":1,"948":1,"952":1,"960":1,"980":1,"982":1,"986":1,"994":1,"1014":1,"1016":1,"1020":1,"1028":1,"1048":1,"1050":1,"1054":1,"1062":1,"1096":1,"1130":1,"1164":1,"1237":1,"1239":1,"1243":1,"1369":1,"1923":1,"1940":1,"2007":1,"2008":1,"2010":1,"2013":1,"2047":1},"1":{"761":1,"762":1,"763":1,"821":1,"823":1,"848":1,"850":1,"854":1,"912":1,"914":1,"918":1,"947":1,"949":1,"953":1,"981":1,"983":1,"987":1,"1015":1,"1017":1,"1021":1,"1049":1,"1051":1,"1055":1,"1238":1,"1240":1,"1244":1,"2008":1,"2009":1,"2010":1,"2011":2,"2012":2,"2013":1},"2":{"63":1,"114":1,"149":1,"195":1,"199":2,"231":1,"236":3,"249":1,"265":1,"268":1,"275":1,"277":1,"285":1,"308":1,"331":1,"489":1,"490":1,"494":2,"525":1,"573":1,"574":2,"625":1,"669":1,"686":2,"690":1,"726":1,"760":2,"761":1,"820":2,"822":2,"825":1,"847":2,"849":2,"853":1,"857":1,"860":1,"911":2,"913":2,"917":1,"921":1,"925":1,"946":2,"948":2,"952":1,"956":1,"959":1,"980":2,"982":2,"986":1,"990":1,"993":1,"1014":2,"1016":2,"1020":1,"1024":1,"1027":1,"1048":2,"1050":2,"1054":1,"1058":1,"1061":1,"1092":1,"1095":1,"1126":1,"1129":1,"1160":1,"1163":1,"1237":2,"1239":2,"1243":1,"1266":1,"1283":1,"1303":1,"1311":1,"1369":2,"1377":14,"1378":3,"1417":1,"1443":1,"1448":2,"1457":1,"1464":1,"1472":1,"1486":4,"1491":1,"1498":1,"1503":1,"1510":1,"1541":1,"1546":1,"1551":1,"1592":1,"1676":1,"1690":1,"1776":1,"1837":1,"1844":1,"1923":1,"1940":2,"1964":1,"1968":1,"2002":1,"2007":1,"2011":1,"2013":1,"2048":1,"2080":1,"2091":1,"2178":2,"2181":1,"2187":1,"2209":1,"2210":1,"2255":1,"2256":4,"2257":2,"2298":1,"2309":1,"2317":1,"2318":1,"2319":1,"2331":1,"2379":2,"2418":2,"2427":1,"2445":1,"2460":1,"2503":1,"2514":2,"2517":4,"2520":17,"2522":7,"2523":1,"2538":17,"2541":16,"2542":14,"2547":14,"2550":2,"2572":20,"2573":2,"2612":1,"2650":1,"2651":14,"2717":1,"2752":1,"2832":1,"2856":1,"2882":1,"2889":2,"2910":1,"2920":1,"2921":1,"2922":1,"2929":1}}],["contributor",{"2":{"2747":1,"2797":1}}],["contributors",{"2":{"178":1,"603":2,"2728":1}}],["contribution",{"0":{"607":1},"2":{"603":1,"607":1,"2713":1}}],["contributions",{"2":{"603":1,"607":1,"609":1,"2747":1}}],["contributing",{"2":{"416":1,"610":1,"2387":1,"2570":1,"2632":2,"2730":1}}],["contribute",{"0":{"603":1},"1":{"604":1},"2":{"346":1,"433":1,"488":1,"542":1,"603":1,"605":1,"609":1,"2331":1,"2447":1,"2481":2}}],["contributed",{"2":{"123":1,"2308":1}}],["contrib",{"0":{"43":1,"421":1,"423":1},"2":{"43":2,"69":1,"108":1,"114":2,"134":2,"160":1,"175":2,"178":1,"191":4,"199":1,"210":1,"249":1,"294":1,"328":1,"339":3,"411":1,"419":1,"421":2,"422":1,"554":1,"2387":1,"2707":3,"2710":1,"2713":2}}],["convenient",{"2":{"1597":1,"1842":1,"1985":1,"2068":1,"2653":1,"2664":1}}],["conveniently",{"2":{"1538":1}}],["convenience",{"2":{"766":1,"2222":1,"2572":1,"2757":1}}],["conventional",{"2":{"2923":1}}],["convention",{"2":{"249":1,"591":1,"1410":5,"1637":1,"2639":1,"2696":1,"2727":1}}],["conventions",{"0":{"4":1,"512":1,"514":1,"608":1},"2":{"134":2,"243":1,"331":1,"414":1,"513":1,"603":1,"608":2,"610":1,"613":1,"1410":2,"2671":1,"2908":2}}],["convey",{"2":{"172":1,"494":1}}],["conversely",{"2":{"2912":1}}],["conversation",{"2":{"544":1,"668":1}}],["conversions",{"2":{"65":1,"77":1,"173":1,"266":25,"1407":1}}],["conversion",{"0":{"1955":1,"2691":1},"2":{"39":1,"187":1,"222":3,"696":1,"717":1,"718":1,"1288":1}}],["converts",{"2":{"182":1,"466":1,"467":1,"468":1,"2096":1,"2755":3,"2795":1,"2914":1}}],["converters",{"0":{"173":1,"187":1,"1388":1,"1389":1,"1391":1,"1399":1},"1":{"1389":1,"1390":1,"1391":1,"1392":2,"1393":2,"1394":2,"1395":2,"1396":2,"1397":2,"1398":2,"1399":1,"1400":2,"1401":2,"1402":1,"1403":1,"1404":1,"1405":1,"1406":1,"1407":1,"1408":1},"2":{"160":2,"173":4,"175":2,"187":1,"191":2,"199":1,"302":1,"304":1,"306":1,"315":1,"470":1,"1389":1,"1405":1,"2589":1}}],["converter",{"0":{"271":1,"306":1,"315":1},"2":{"114":1,"133":1,"134":1,"160":2,"165":2,"173":2,"175":3,"191":4,"199":3,"218":3,"222":1,"249":1,"271":1,"277":1,"285":1,"306":1,"308":1,"315":1,"317":1,"328":1,"690":1,"1388":1,"1389":1,"1390":3,"1392":1,"1393":1,"1403":1,"1405":1,"1406":1,"1407":2,"1678":1,"1697":1,"2756":1,"2795":1,"2797":1}}],["converted",{"2":{"12":1,"40":1,"212":1,"249":1,"443":1,"447":1,"670":1,"1417":1,"2375":1,"2584":1,"2610":1,"2728":1,"2755":1,"2800":1}}],["convert",{"0":{"304":1,"466":1,"468":1},"2":{"93":1,"114":1,"134":1,"149":4,"153":1,"160":3,"187":1,"191":1,"222":2,"236":3,"266":3,"277":2,"288":1,"304":2,"308":1,"317":2,"463":1,"1288":1,"1298":1,"1388":3,"1390":1,"1391":42,"1392":1,"1399":15,"1406":2,"1423":1,"2223":1,"2691":2,"2753":1,"2755":4,"2757":2,"2795":2,"2893":1,"2949":2}}],["converting",{"0":{"11":1},"2":{"153":1,"173":1,"251":1,"467":1,"1388":1,"1540":1,"2755":2}}],["comfort",{"2":{"2913":1}}],["comfortably",{"2":{"1802":1}}],["comfortable",{"2":{"665":1,"672":1,"2065":1,"2317":1,"2387":1,"2910":1}}],["com4",{"2":{"2674":1}}],["comx",{"2":{"2502":1}}],["com>",{"2":{"2464":4}}],["coming",{"2":{"228":1,"1311":4,"1612":1,"1963":1,"2466":1}}],["come",{"2":{"538":1,"1372":1,"2178":1,"2300":1,"2326":1,"2399":1,"2401":1,"2402":1,"2404":1,"2427":1,"2475":1}}],["comet46",{"2":{"143":2,"149":1,"191":1}}],["comes",{"2":{"99":1,"233":1,"494":1,"517":1,"683":1,"1479":1,"1499":1,"1686":1,"1783":1,"1791":1,"2277":1,"2389":1,"2394":1,"2434":1,"2599":1,"2619":1,"2657":1,"2757":1}}],["comb",{"2":{"231":1,"1622":5}}],["combination",{"2":{"320":1,"542":1,"543":1,"561":1,"665":1,"686":1,"699":2,"1423":1,"1595":3,"1602":1,"1624":1,"1625":1,"1667":1,"1766":1,"1770":1,"1781":2,"1787":1,"1899":1,"1900":1,"1901":1,"1902":1,"1983":1,"2153":1,"2154":1,"2155":1,"2156":1,"2663":1,"2931":1}}],["combinations",{"2":{"99":1,"294":1,"716":1,"763":1,"1389":1,"1407":1,"1676":1,"1766":2,"1787":1,"1943":1,"2068":1,"2075":1,"2381":1,"2417":1,"2572":1,"2650":1,"2913":1,"2931":1}}],["combining",{"2":{"191":1,"575":1,"1378":1,"1518":1,"1618":1,"2390":1,"2397":1,"2886":1,"2913":1,"2926":1}}],["combines",{"2":{"1516":1,"1609":1}}],["combinedmap",{"2":{"2301":1}}],["combined",{"0":{"1938":1,"1997":1},"2":{"191":1,"312":1,"555":1,"575":3,"1422":1,"1661":1,"1795":1,"1934":1,"1938":3,"1939":1,"1987":2,"1989":9,"1997":2,"1999":1,"2065":1,"2178":1,"2301":2,"2425":1,"2499":1,"2504":1,"2851":2}}],["combinedkeys",{"2":{"114":1}}],["combine",{"0":{"1795":1},"2":{"64":1,"249":1,"483":1,"518":1,"665":1,"1377":1,"1448":1,"1989":2,"1997":1,"2048":1,"2189":1,"2572":1}}],["combo\`",{"2":{"1613":1}}],["combo2",{"2":{"1602":2,"1603":1,"1604":2}}],["combo1",{"2":{"1602":2,"1603":1,"1604":2}}],["combos",{"0":{"1602":1,"1604":1,"1610":1,"1619":1,"1787":1},"1":{"1603":1,"1604":1,"1605":1,"1606":1,"1607":1,"1608":1,"1609":1,"1610":1,"1611":1,"1612":1,"1613":1,"1614":1,"1615":1,"1616":1,"1617":1,"1618":1,"1619":1,"1620":2,"1621":1,"1622":1},"2":{"36":1,"98":3,"114":2,"191":1,"222":1,"328":2,"564":2,"1602":1,"1603":1,"1604":3,"1605":5,"1608":2,"1609":10,"1610":1,"1611":1,"1612":5,"1613":3,"1614":1,"1615":2,"1616":1,"1617":2,"1618":2,"1619":3,"1622":6,"1787":3,"1796":1,"1956":1,"2907":1,"2926":2}}],["combo",{"0":{"98":1,"1608":1,"1612":1,"1613":1,"1614":1,"1615":1,"1616":1,"1620":1,"2862":1},"1":{"1615":1,"1616":1},"2":{"36":7,"98":3,"112":2,"114":1,"149":2,"160":1,"172":1,"175":1,"199":2,"210":1,"214":1,"222":3,"285":2,"339":1,"564":20,"574":2,"1594":1,"1602":9,"1603":3,"1604":6,"1605":36,"1606":7,"1608":2,"1609":5,"1610":7,"1611":1,"1612":80,"1613":12,"1614":1,"1615":2,"1616":1,"1617":19,"1618":23,"1619":1,"1620":16,"1621":9,"1622":7,"2418":1,"2595":1,"2728":1,"2755":2,"2862":3,"2941":1}}],["competitive",{"2":{"2568":1}}],["compensating",{"2":{"2051":1}}],["compensated",{"2":{"2731":1}}],["compensate",{"2":{"1410":1,"1493":1,"2051":4}}],["comprising",{"2":{"2657":1,"2869":1,"2879":1}}],["comprise",{"2":{"2585":1}}],["comprises",{"2":{"396":1}}],["compression",{"2":{"2387":1,"2765":1,"2767":3,"2772":1,"2776":4}}],["compressing",{"2":{"2387":2}}],["comprehensions",{"0":{"530":1},"2":{"530":1,"531":1}}],["comprehensive",{"2":{"505":1,"542":1}}],["compromised",{"2":{"312":1}}],["composite",{"2":{"2037":1}}],["composed",{"2":{"1609":1}}],["compose",{"2":{"210":1,"1378":1,"1835":1,"1836":2,"1838":1,"2867":2}}],["component",{"2":{"1641":2,"2738":2,"2741":1,"2777":3,"2877":1,"2878":1,"2943":1}}],["components",{"2":{"130":1,"1287":1,"1313":1,"2427":1,"2729":1,"2739":1,"2741":1,"2747":1}}],["computationally",{"2":{"1413":1}}],["computed",{"2":{"1986":1,"2378":1}}],["compute",{"2":{"175":1,"2378":1}}],["computers",{"0":{"2467":1},"1":{"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1}}],["computer",{"2":{"62":1,"600":1,"626":1,"687":1,"1370":1,"1442":1,"1443":1,"1446":1,"1453":1,"1454":1,"1493":1,"1523":3,"1625":1,"1766":1,"1788":1,"1840":1,"1938":1,"1939":1,"1962":1,"1986":2,"1990":2,"2054":1,"2085":1,"2272":1,"2387":4,"2418":1,"2477":1,"2517":2,"2522":2,"2554":1,"2573":1,"2579":4,"2598":1,"2605":1,"2637":1,"2639":1,"2650":1,"2651":1,"2790":1,"2813":1,"2846":1,"2849":1,"2922":1,"2929":1,"2935":1,"2940":1,"2946":1}}],["computing",{"2":{"143":9,"149":1,"165":2,"270":2,"277":1,"317":1}}],["companies",{"2":{"2802":1}}],["companying",{"2":{"1613":1}}],["company",{"0":{"32":1},"2":{"33":1}}],["compact",{"2":{"538":1,"684":1,"1427":1,"2572":1}}],["comparing",{"2":{"2295":1,"2940":1}}],["comparisons",{"2":{"222":1}}],["comparison",{"0":{"2915":1},"1":{"2916":1,"2917":1,"2918":1},"2":{"174":1,"175":2,"248":1,"333":1}}],["compares",{"2":{"1988":1,"2940":1}}],["compared",{"2":{"1974":1,"2568":1,"2616":1,"2728":1,"2921":1}}],["compare",{"2":{"41":1,"411":1,"2639":1,"2911":1,"2915":1}}],["compatible",{"0":{"306":1,"315":1,"545":1,"1638":1},"1":{"546":1,"547":1,"548":1,"549":1,"550":1,"551":1,"552":1,"553":1,"554":1},"2":{"132":3,"134":1,"149":1,"187":1,"199":1,"294":1,"306":2,"315":2,"320":1,"366":1,"384":1,"545":1,"554":1,"578":2,"1283":1,"1324":1,"1388":1,"1390":1,"1391":1,"1405":1,"1407":2,"1467":1,"1633":1,"1665":1,"1943":1,"1973":1,"2261":2,"2263":1,"2273":4,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":1,"2408":1,"2410":1,"2421":1,"2505":1,"2589":1,"2680":1,"2690":1,"2705":3,"2706":1,"2709":2,"2714":3,"2726":1,"2736":1,"2748":1,"2756":11,"2853":1,"2895":1,"2908":1,"2931":1}}],["compatiblitly",{"2":{"75":1}}],["compatibility",{"0":{"1373":1,"1374":1,"1407":1,"1408":1,"2262":1},"1":{"1375":1,"1408":1},"2":{"21":1,"24":1,"98":1,"114":1,"191":1,"249":1,"262":1,"273":1,"276":1,"285":1,"293":1,"305":1,"312":1,"314":1,"316":1,"331":1,"514":1,"516":1,"575":1,"720":1,"1389":1,"1403":1,"1407":2,"1550":1,"2260":1,"2331":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2404":1,"2406":1,"2408":1,"2410":1,"2567":1,"2707":1,"2709":1,"2726":1,"2728":2}}],["compilable",{"2":{"2450":6}}],["compilation",{"0":{"132":1,"302":1,"470":1},"2":{"26":1,"88":2,"104":2,"114":2,"127":2,"132":3,"134":6,"149":4,"175":2,"185":1,"191":6,"199":2,"210":5,"222":5,"236":2,"249":1,"254":1,"266":1,"285":1,"308":3,"317":1,"381":3,"429":5,"470":1,"538":1,"572":2,"581":1,"586":1,"601":1,"623":2,"2417":2,"2455":1,"2456":1,"2597":1,"2904":1}}],["compiliation",{"2":{"285":1,"294":1}}],["compiling",{"0":{"2596":1},"2":{"58":1,"73":2,"92":1,"134":1,"378":2,"381":1,"425":1,"429":6,"455":1,"469":1,"571":1,"572":1,"583":1,"592":1,"598":1,"609":1,"1337":1,"1395":1,"1464":1,"1472":2,"1944":1,"2210":1,"2284":1,"2297":1,"2411":1,"2417":7,"2585":1,"2757":2}}],["compiledfirmware",{"2":{"430":1}}],["compiledb",{"2":{"132":1,"134":1,"302":1,"429":2,"470":1,"2673":1}}],["compiled",{"2":{"40":1,"166":1,"222":2,"371":1,"430":1,"434":1,"572":1,"579":1,"589":1,"592":1,"1438":1,"1472":1,"2432":1,"2434":1,"2580":1,"2587":1,"2609":1,"2674":2,"2888":1,"2889":1,"2907":1,"2935":2,"2946":1}}],["compiles",{"2":{"39":1,"191":1,"199":1,"455":1,"609":1,"1468":1,"1472":1,"2417":1,"2587":1,"2734":1,"2945":1}}],["compile",{"0":{"369":1,"370":1,"371":1,"372":1,"380":1,"429":1,"455":1,"582":1,"583":1,"584":1,"601":1,"620":1,"2811":1},"2":{"14":1,"18":1,"26":2,"27":1,"33":1,"73":1,"114":8,"120":1,"132":2,"134":3,"149":1,"160":1,"175":1,"191":2,"199":3,"294":1,"302":1,"308":1,"353":1,"366":4,"369":1,"373":1,"377":1,"380":3,"381":1,"382":2,"384":1,"422":1,"429":20,"430":1,"448":1,"449":1,"450":1,"455":2,"470":1,"473":8,"479":1,"480":1,"481":2,"483":5,"485":2,"496":2,"517":3,"563":1,"578":3,"581":4,"586":1,"588":1,"593":1,"601":1,"613":3,"1366":1,"1388":1,"1395":1,"1441":1,"1466":1,"1500":1,"1503":1,"1521":1,"1522":1,"1595":1,"2294":1,"2297":1,"2384":1,"2387":1,"2403":1,"2414":1,"2417":7,"2432":3,"2501":1,"2523":1,"2587":3,"2590":1,"2594":1,"2596":3,"2598":1,"2607":1,"2616":1,"2618":1,"2629":2,"2655":1,"2669":1,"2673":3,"2674":1,"2683":1,"2714":1,"2734":1,"2752":2,"2827":2,"2851":1,"2906":1,"2948":1}}],["compilers",{"2":{"2739":1}}],["compiler",{"0":{"365":1,"586":1},"2":{"11":1,"73":1,"149":1,"175":1,"199":1,"308":1,"365":1,"367":1,"375":1,"582":1,"585":2,"586":1,"1446":1,"1470":1,"2455":1,"2598":1,"2738":1,"2944":1,"2946":1}}],["comply",{"2":{"581":1,"2465":1}}],["complicated",{"2":{"540":1,"1415":1,"1416":1,"1423":1,"1469":1,"1492":1,"1605":1,"2309":1,"2423":1,"2564":1,"2573":1,"2612":1}}],["compliance",{"2":{"210":1,"263":1,"2566":1,"2567":1,"2747":1,"2750":1}}],["compliant",{"2":{"14":1}}],["compliation",{"2":{"114":1}}],["complaints",{"2":{"154":1}}],["complements",{"2":{"2070":1}}],["complementary",{"2":{"93":1,"249":1,"294":1,"721":2,"1303":4}}],["completing",{"2":{"2428":1,"2434":1}}],["completion",{"0":{"507":1},"1":{"508":1,"509":1,"510":1,"511":1},"2":{"279":1,"507":1,"508":1,"510":1,"763":1,"2653":1,"2664":1}}],["completes",{"2":{"1804":1,"2466":1,"2914":1,"2940":1}}],["completed",{"2":{"581":1,"584":1,"1286":1,"1388":1,"2387":2,"2428":1,"2597":1,"2608":1,"2622":1,"2674":1,"2687":1,"2821":1,"2904":1}}],["complete",{"0":{"127":1},"2":{"70":1,"126":1,"236":2,"263":1,"344":3,"367":1,"381":2,"403":1,"507":1,"509":1,"510":3,"511":2,"672":1,"684":1,"753":1,"1205":1,"1208":1,"1248":1,"1343":1,"1492":1,"1534":1,"1796":1,"1800":1,"2319":1,"2345":1,"2369":1,"2428":1,"2430":1,"2508":1,"2586":1,"2587":1,"2591":1,"2633":1,"2659":1,"2663":1,"2716":1,"2726":1,"2728":1,"2748":1,"2870":1}}],["completely",{"2":{"39":1,"195":2,"262":1,"266":1,"564":1,"1422":1,"1485":1,"1490":1,"1522":1,"1616":1,"1661":1,"1766":2,"1779":1,"2422":1,"2428":1,"2502":1,"2558":1,"2586":1}}],["complex",{"0":{"523":1,"1347":1,"2313":1},"1":{"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"134":1,"530":1,"626":1,"671":1,"1417":1,"1451":1,"1602":1,"1657":1,"1781":1,"1850":5,"2054":1,"2088":5,"2313":1,"2423":1}}],["complexity",{"2":{"3":1,"48":1,"153":1,"222":1,"530":1,"2318":1,"2753":1}}],["commercial",{"2":{"2403":1,"2707":1,"2728":2,"2735":1,"2747":1}}],["commenting",{"2":{"417":1}}],["commented",{"2":{"199":1,"2728":2}}],["comment",{"2":{"92":1,"149":2,"175":2,"418":1,"512":1,"514":1,"2728":1}}],["comments",{"2":{"77":1,"114":1,"191":1,"222":1,"417":1,"505":1,"512":2,"514":2,"615":1,"1661":1,"1662":1,"1926":1,"2728":2}}],["comm",{"2":{"379":1,"589":2,"1593":1,"2512":1,"2522":1,"2563":1,"2923":1,"2924":1}}],["committee",{"2":{"2706":1}}],["committed",{"2":{"2387":1,"2609":1,"2635":1,"2640":1}}],["committing",{"2":{"609":1,"2730":1}}],["commits",{"2":{"613":1,"2634":5,"2635":1,"2637":2,"2640":1,"2667":1}}],["commit",{"0":{"2604":1,"2608":1,"2638":1},"1":{"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2639":1,"2640":1,"2641":1},"2":{"199":1,"409":1,"411":4,"422":1,"579":1,"588":3,"589":2,"607":1,"609":2,"2387":2,"2595":1,"2598":1,"2600":1,"2601":1,"2603":1,"2608":3,"2609":1,"2610":1,"2632":1,"2633":1,"2634":9,"2635":1,"2638":1,"2640":5,"2667":1,"2730":2}}],["comms",{"2":{"175":2,"191":1,"2753":1}}],["comma",{"2":{"526":1,"527":3,"671":2,"1528":1,"1692":1,"2277":1,"2317":1,"2327":1,"2512":1,"2518":1,"2522":2,"2585":1,"2669":1}}],["commas",{"2":{"160":1,"222":1,"1633":1,"2585":1,"2727":1}}],["command+option+escape",{"2":{"1676":1}}],["command+\`",{"2":{"348":1,"1675":1}}],["commandline",{"2":{"285":1}}],["commands",{"0":{"427":1,"428":1,"451":1,"457":1,"2516":1,"2755":1},"1":{"429":1,"430":1,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":1,"438":1,"439":1,"440":1,"441":1,"442":1,"443":1,"444":1,"445":1,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"458":1,"459":1,"460":1,"461":1,"462":1,"463":1,"464":1,"465":1,"466":1,"467":1,"468":1,"469":1,"470":1},"2":{"55":1,"93":1,"114":2,"132":2,"134":1,"149":1,"153":1,"158":1,"188":1,"199":1,"333":1,"409":2,"411":1,"425":1,"429":3,"455":1,"465":2,"474":2,"499":1,"543":2,"561":1,"574":2,"1316":1,"1333":1,"1472":1,"1528":1,"1730":1,"1953":1,"1954":1,"2291":1,"2417":2,"2418":2,"2449":1,"2503":1,"2591":1,"2601":1,"2605":2,"2608":1,"2614":1,"2619":1,"2639":1,"2644":2,"2673":2,"2757":2}}],["command",{"0":{"82":1,"83":1,"188":1,"1595":1,"1623":1,"1730":2,"2460":1,"2616":1,"2644":1},"1":{"1624":1,"1625":1,"1731":2},"2":{"1":1,"43":2,"51":2,"65":1,"70":3,"82":1,"83":1,"93":1,"111":1,"114":1,"158":1,"160":1,"188":1,"191":1,"199":1,"222":2,"302":2,"308":1,"353":1,"354":2,"387":1,"393":3,"425":1,"429":2,"430":3,"431":1,"432":1,"433":1,"434":1,"435":1,"437":1,"440":1,"441":1,"442":2,"443":1,"444":1,"445":2,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"458":1,"459":2,"460":1,"461":2,"462":1,"463":1,"464":1,"465":1,"466":2,"467":2,"468":2,"469":1,"470":2,"473":2,"474":2,"475":1,"483":1,"489":1,"496":2,"513":1,"543":1,"561":1,"574":1,"589":1,"611":1,"686":2,"688":1,"768":1,"1315":2,"1322":1,"1325":1,"1349":1,"1366":2,"1388":1,"1435":1,"1468":1,"1472":2,"1592":2,"1594":1,"1595":7,"1623":3,"1624":3,"1625":6,"1730":2,"1731":2,"2258":3,"2273":1,"2288":1,"2302":1,"2331":1,"2384":1,"2387":2,"2389":2,"2392":1,"2394":2,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2417":7,"2418":1,"2460":4,"2502":2,"2503":1,"2508":3,"2514":2,"2522":2,"2572":2,"2583":1,"2584":1,"2587":1,"2589":1,"2590":1,"2594":2,"2595":1,"2596":1,"2608":1,"2613":2,"2616":3,"2619":1,"2628":5,"2629":1,"2634":2,"2639":2,"2640":1,"2644":1,"2653":1,"2655":1,"2664":1,"2669":1,"2673":4,"2714":1,"2728":1,"2755":5,"2816":1,"2889":1,"2945":1,"2950":2}}],["communicate",{"2":{"1247":1,"1316":1,"2054":1,"2264":1,"2392":1,"2506":1}}],["communicates",{"2":{"512":1,"2295":1,"2736":1}}],["communicated",{"0":{"2904":1},"2":{"414":1,"2903":1,"2904":1}}],["communicating",{"2":{"244":1,"1272":1,"1697":1,"1943":1,"2057":1,"2283":1,"2426":1}}],["communications",{"2":{"2275":1}}],["communication",{"0":{"2275":1},"2":{"20":1,"414":1,"567":1,"570":3,"1192":3,"1196":1,"1197":1,"1198":1,"1199":1,"1205":1,"1207":2,"1208":1,"1209":2,"1286":1,"1395":2,"1945":2,"1966":1,"1967":1,"1970":1,"1974":2,"1978":1,"1980":1,"1981":1,"1983":1,"2054":1,"2261":1,"2265":2,"2268":1,"2275":8,"2276":1,"2278":4,"2279":1,"2418":2,"2741":2,"2880":1}}],["community",{"0":{"288":1,"298":1,"1397":1,"1401":1,"1626":1,"1627":1,"1628":1,"1629":1,"2706":1},"1":{"1627":1,"1628":1,"1629":1,"1630":2,"1631":2,"1632":2,"1633":2,"1634":2,"1635":2,"1636":2,"1637":2,"1638":2},"2":{"70":2,"116":1,"160":1,"191":1,"199":1,"201":1,"212":1,"222":25,"236":3,"249":1,"266":2,"285":2,"288":3,"294":1,"298":1,"308":6,"312":1,"317":1,"328":2,"333":1,"414":1,"429":1,"514":1,"612":1,"627":4,"1343":4,"1391":1,"1397":1,"1398":2,"1399":1,"1401":1,"1433":4,"1436":1,"1626":1,"1627":5,"1628":1,"1629":1,"1630":2,"1633":2,"1635":1,"1636":1,"1638":2,"2308":1,"2447":1,"2477":3,"2481":1,"2566":1,"2567":3,"2568":3,"2627":1,"2642":1,"2706":1,"2728":3,"2731":1,"2852":1,"2869":2,"2896":1}}],["commonly",{"2":{"69":1,"171":1,"232":1,"526":1,"2178":1,"2194":1,"2265":1,"2317":1,"2423":1,"2733":1,"2844":1}}],["common",{"0":{"20":1,"22":1,"23":1,"80":1,"1846":1,"1974":1,"1985":1,"2082":1,"2424":1,"2735":1},"1":{"21":1,"24":1},"2":{"5":1,"8":1,"20":2,"22":1,"74":3,"75":1,"86":1,"92":1,"93":1,"94":3,"107":1,"113":1,"114":5,"133":4,"134":5,"149":2,"160":1,"175":1,"191":2,"199":2,"210":1,"212":1,"215":1,"222":2,"236":2,"248":1,"285":2,"293":1,"305":1,"314":1,"317":2,"440":1,"561":1,"564":1,"574":1,"591":1,"628":1,"656":1,"714":1,"764":1,"1245":1,"1266":1,"1272":1,"1321":1,"1333":1,"1337":1,"1365":1,"1424":1,"1440":1,"1446":1,"1470":1,"1497":1,"1503":1,"1612":1,"1615":1,"1669":1,"1948":1,"1952":1,"1961":1,"1987":2,"1993":1,"2068":1,"2079":1,"2279":1,"2287":1,"2317":1,"2326":1,"2418":1,"2433":1,"2439":1,"2455":4,"2466":1,"2508":15,"2572":1,"2616":1,"2639":1,"2714":1,"2728":1,"2755":1,"2806":1,"2808":1,"2826":1,"2848":1,"2851":1,"2935":1,"2941":1,"2945":1,"2949":2}}],["com",{"2":{"2":1,"11":1,"196":1,"222":1,"236":1,"420":1,"421":2,"574":1,"600":1,"604":1,"607":1,"683":1,"684":5,"749":7,"750":1,"1319":2,"1352":1,"1353":2,"1357":2,"1359":3,"1361":1,"1376":1,"1605":2,"1628":1,"1798":1,"1952":10,"2187":1,"2384":1,"2387":3,"2393":1,"2458":1,"2502":1,"2506":1,"2592":1,"2593":1,"2608":3,"2637":8,"2639":5,"2674":2,"2728":3,"2898":1}}],["4bpp",{"2":{"2776":2}}],["4+i",{"2":{"2757":2}}],["4t",{"2":{"2252":1}}],["4=25",{"2":{"1954":1}}],["4×",{"2":{"1665":1}}],["49",{"2":{"1527":1,"1686":1,"1968":1}}],["470ω",{"2":{"1558":1}}],["47",{"2":{"1492":1,"1686":1}}],["479b",{"2":{"381":1}}],["43",{"2":{"1492":1,"1686":1,"1968":1}}],["432",{"2":{"1490":1}}],["4352",{"2":{"607":1}}],["44",{"2":{"1492":1,"1527":1,"1686":1,"1968":1}}],["440",{"2":{"1490":1,"1493":1}}],["44100u",{"2":{"719":1}}],["42",{"0":{"1359":1},"2":{"1359":1,"1483":1,"1492":1,"1527":1,"1686":1,"2296":1,"2374":5}}],["4226",{"2":{"39":1}}],["4kib",{"2":{"2186":1}}],["4k2",{"2":{"924":1,"958":1,"992":1}}],["4k",{"2":{"859":1,"860":2,"925":2,"959":2,"993":2,"1027":2,"1061":2,"1095":2,"1129":2,"1163":2}}],["4key",{"2":{"143":2}}],["451",{"2":{"2308":1}}],["45°",{"2":{"1741":1}}],["453",{"2":{"1162":2}}],["45",{"2":{"855":1,"1492":1,"1686":1,"1953":1,"2081":1}}],["45pm",{"2":{"412":1}}],["412",{"2":{"2449":1}}],["41",{"2":{"1492":1,"1686":1,"1968":1}}],["4173",{"2":{"461":1}}],["4198",{"2":{"93":1}}],["4a7b",{"2":{"380":1,"381":1}}],["4rows",{"2":{"311":1}}],["4ghz",{"2":{"285":1,"2377":3,"2528":3}}],["4pplet",{"2":{"222":3}}],["4800",{"2":{"1272":1}}],["48",{"2":{"165":2,"183":1,"222":1,"236":1,"887":1,"988":1,"1124":1,"1686":1,"1846":2,"1926":1,"1936":1,"1968":1,"2081":3,"2082":2,"2277":2,"2871":1,"2878":1}}],["4871",{"2":{"2":1}}],["460800",{"2":{"1207":1}}],["46",{"2":{"165":2,"1492":1,"1686":1,"1968":1,"2424":1}}],["40kb",{"2":{"2689":1}}],["400",{"2":{"1936":1,"1978":2,"2454":1,"2518":1,"2522":1}}],["400000",{"2":{"767":1}}],["400000l",{"2":{"561":1}}],["4000",{"2":{"665":1}}],["40ms",{"2":{"1608":1}}],["403",{"2":{"1359":2}}],["4095u",{"2":{"719":2,"1488":2}}],["4096",{"2":{"131":1,"134":1}}],["40percentclub",{"2":{"266":1,"322":4,"328":2}}],["40",{"2":{"149":1,"191":1,"222":1,"540":1,"684":1,"1492":1,"1608":1,"1686":5,"1935":1,"1937":1,"1939":1,"1968":1,"1974":1,"2086":1,"2185":1,"2694":1,"2764":1}}],["401",{"2":{"114":1}}],["4x4",{"2":{"1436":3,"2721":2,"2728":1}}],["4x5",{"2":{"210":1}}],["4x8",{"2":{"143":2}}],["4x7",{"2":{"143":2}}],["4x6",{"2":{"143":2,"149":1,"210":1,"311":8,"317":1}}],["4x",{"2":{"114":1,"1684":1,"1685":1,"1974":3}}],["4x12",{"2":{"70":1,"1436":3,"1439":1,"1492":1}}],["4",{"0":{"108":1,"405":1,"599":1,"2317":1,"2472":1,"2629":1},"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"70":1,"93":1,"108":1,"111":1,"114":5,"134":2,"172":1,"175":3,"210":1,"222":2,"236":1,"249":1,"266":2,"317":1,"339":1,"348":1,"354":2,"379":1,"412":4,"420":5,"422":1,"507":1,"512":2,"514":1,"570":1,"589":2,"693":1,"695":22,"696":1,"719":1,"726":1,"759":1,"768":2,"772":2,"828":1,"857":1,"859":1,"860":2,"889":1,"921":2,"924":2,"925":2,"956":1,"958":2,"959":2,"990":1,"992":2,"993":2,"1024":1,"1027":2,"1058":1,"1061":2,"1092":2,"1095":2,"1126":2,"1129":2,"1160":1,"1163":2,"1207":1,"1216":1,"1247":1,"1252":1,"1300":1,"1398":1,"1416":1,"1423":2,"1431":1,"1450":2,"1453":1,"1492":1,"1538":1,"1590":4,"1609":2,"1625":2,"1665":2,"1666":2,"1681":1,"1684":1,"1685":1,"1686":1,"1697":1,"1702":2,"1741":2,"1744":3,"1846":5,"1852":1,"1925":31,"1926":1,"1933":2,"1935":1,"1937":1,"1953":2,"1954":1,"1968":3,"1971":1,"1979":1,"2018":3,"2038":3,"2082":5,"2091":1,"2183":3,"2185":1,"2189":4,"2206":1,"2207":3,"2239":1,"2240":1,"2252":1,"2264":2,"2265":3,"2267":3,"2275":1,"2288":1,"2295":1,"2296":2,"2301":1,"2303":5,"2315":2,"2317":1,"2377":1,"2387":3,"2416":1,"2450":2,"2454":3,"2455":2,"2466":1,"2507":1,"2510":2,"2515":2,"2518":2,"2522":9,"2528":1,"2532":3,"2539":31,"2540":2,"2548":3,"2563":1,"2573":1,"2628":2,"2695":1,"2751":1,"2754":2,"2755":2,"2757":3,"2765":1,"2772":1,"2776":2,"2795":4,"2796":3,"2865":1,"2869":4,"2871":1,"2877":1,"2878":1,"2879":1,"2893":1,"2937":1,"2950":2}}],["p>need",{"2":{"2634":2}}],["p>",{"2":{"2634":3}}],["p>for",{"2":{"2634":1}}],["p9",{"2":{"2518":1,"2522":1,"2939":1}}],["p7",{"2":{"2518":1,"2522":1,"2939":1}}],["p5",{"2":{"2518":1,"2522":1,"2939":1}}],["p3",{"2":{"2518":1,"2522":1,"2939":1}}],["p3d",{"0":{"255":1},"2":{"222":1,"241":5,"249":1,"266":1}}],["ppls",{"2":{"2518":1,"2522":1,"2939":1}}],["pp",{"2":{"2317":1}}],["p6",{"2":{"1743":1,"2518":1,"2522":1,"2939":1}}],["p4",{"2":{"1743":1,"2518":1,"2522":1,"2939":1}}],["p2",{"2":{"1743":1,"2518":1,"2522":1,"2939":1}}],["p8",{"2":{"1743":1,"2518":1,"2522":1,"2939":1}}],["p0",{"2":{"1743":2,"2518":1,"2522":1,"2939":1}}],["p1",{"2":{"2518":1,"2522":1,"2939":1}}],["p146279",{"2":{"1368":1}}],["p1800fl",{"2":{"102":2,"114":1}}],["pqrs",{"2":{"1358":1}}],["pbr",{"2":{"2301":1}}],["pb",{"2":{"2018":32,"2548":32}}],["pb11",{"2":{"1211":1,"1212":1,"1213":1}}],["pb10",{"2":{"1211":1,"1212":1,"1213":1}}],["pb4",{"2":{"1211":1}}],["pb3",{"2":{"1211":1}}],["pb7",{"2":{"1211":1,"1212":1,"1213":1}}],["pb6",{"2":{"1211":1,"1212":1,"1213":1}}],["pnp",{"2":{"1545":1}}],["pnputil",{"2":{"688":2}}],["png",{"2":{"683":1,"2753":1,"2755":4}}],["photos",{"2":{"2612":1}}],["phonetic",{"2":{"2291":1}}],["phone",{"2":{"2265":1}}],["phrases",{"2":{"1440":1,"1446":1}}],["phpshop",{"2":{"1319":1}}],["php",{"2":{"1319":1,"1353":1,"1367":1,"1375":1,"1376":1}}],["physically",{"2":{"1287":1,"1465":1,"2453":1,"2860":1,"2915":1}}],["physical",{"0":{"1842":1,"2938":1},"1":{"1843":1},"2":{"599":2,"684":1,"1287":1,"1362":3,"1410":1,"1433":2,"1434":1,"1589":1,"1842":1,"1846":7,"2082":7,"2086":1,"2278":1,"2300":1,"2425":1,"2563":1,"2612":1,"2721":3,"2794":3,"2795":2,"2823":1,"2869":1,"2915":1,"2916":2,"2917":3,"2918":2,"2927":1,"2938":2,"2939":1}}],["phapbgs",{"2":{"2295":1,"2296":1}}],["phantagom",{"2":{"222":1}}],["phantom",{"2":{"222":1}}],["phase",{"2":{"175":1,"1252":1,"1285":3,"1295":2}}],["pjrc",{"2":{"546":2,"551":4,"685":1,"1326":1,"2394":1,"2397":1,"2488":1,"2819":1}}],["pdot",{"2":{"2518":1,"2522":1,"2939":1}}],["pd3",{"2":{"2266":1}}],["pd1",{"2":{"2266":1,"2267":1}}],["pd0",{"2":{"1371":1,"2266":1,"2267":1}}],["pd9",{"2":{"1211":1,"1212":1,"1213":1}}],["pd8",{"2":{"1211":1,"1212":1,"1213":1}}],["pd6",{"2":{"1211":1,"1213":1}}],["pd5",{"2":{"1211":1,"1213":1,"2043":1}}],["pdr",{"2":{"921":1,"925":8,"956":1,"959":9,"990":1,"993":9,"1024":1,"1027":9,"1058":1,"1061":9,"1092":1,"1095":9,"1126":1,"1129":9,"1160":1,"1163":9}}],["pdfs",{"2":{"1597":1}}],["pdf",{"2":{"285":2,"1367":1,"1371":2,"1422":1,"2535":1}}],["pd2",{"2":{"175":1,"2043":1,"2266":1}}],["pwl",{"2":{"2301":1}}],["pwr",{"2":{"1351":1,"2038":1,"2296":1,"2301":1,"2517":1,"2522":1}}],["pw88",{"2":{"210":1,"241":2}}],["pwmd4",{"2":{"1556":1}}],["pwmd2",{"2":{"1303":1}}],["pwmd1",{"2":{"721":1,"722":1,"1483":1}}],["pwmd11tim1",{"2":{"716":1}}],["pwm3360",{"2":{"149":1}}],["pwm",{"0":{"47":1,"721":1,"722":1,"739":1,"824":1,"851":1,"859":1,"883":1,"915":1,"924":1,"950":1,"958":1,"984":1,"992":1,"1018":1,"1026":1,"1052":1,"1060":1,"1086":1,"1120":1,"1154":1,"1162":1,"1188":1,"1241":1,"1293":1,"1303":1,"1481":1,"1483":1,"1548":1,"1553":1,"1556":1},"1":{"740":1,"852":1,"884":1,"916":1,"951":1,"985":1,"1019":1,"1053":1,"1087":1,"1121":1,"1155":1,"1189":1,"1242":1,"1482":1},"2":{"39":1,"40":1,"47":4,"93":1,"134":3,"160":1,"175":2,"191":3,"210":1,"236":4,"249":8,"266":1,"285":3,"339":2,"652":1,"653":1,"711":1,"715":2,"716":5,"721":10,"722":2,"723":2,"731":1,"732":3,"735":1,"739":1,"807":1,"808":4,"812":1,"816":1,"824":1,"833":1,"834":4,"839":1,"843":1,"851":1,"857":3,"859":11,"865":1,"866":4,"871":1,"875":1,"883":1,"895":1,"896":4,"903":1,"907":1,"915":1,"921":3,"924":8,"930":1,"931":4,"938":1,"942":1,"950":1,"956":3,"958":8,"964":1,"965":4,"972":1,"976":1,"984":1,"990":3,"992":8,"998":1,"999":4,"1006":1,"1010":1,"1018":1,"1024":3,"1026":7,"1032":1,"1033":4,"1040":1,"1044":1,"1052":1,"1058":3,"1060":7,"1066":1,"1067":4,"1074":1,"1078":1,"1086":1,"1100":1,"1101":4,"1108":1,"1112":1,"1120":1,"1134":1,"1135":4,"1142":1,"1146":1,"1154":1,"1160":3,"1162":10,"1168":1,"1169":4,"1176":1,"1180":1,"1188":1,"1221":1,"1222":4,"1229":1,"1233":1,"1241":1,"1289":1,"1293":2,"1303":15,"1310":1,"1392":1,"1393":1,"1474":2,"1481":3,"1483":7,"1541":2,"1546":2,"1547":1,"1548":2,"1549":2,"1550":1,"1553":2,"1554":1,"1556":11,"2431":1,"2689":1,"2695":1,"2856":2,"2857":3,"2883":2}}],["pt",{"2":{"210":3}}],["pmo",{"2":{"2567":1}}],["pmns",{"2":{"2518":1,"2522":1,"2939":1}}],["pmeg2005eh",{"2":{"2280":1}}],["pm2040",{"2":{"191":2,"277":1,"317":1,"1389":1,"1391":4}}],["pmw3325",{"2":{"1982":3}}],["pmw3320",{"0":{"1981":1},"2":{"222":1,"1981":6}}],["pmw33xx",{"0":{"273":1,"276":1,"284":1},"2":{"190":2,"191":3,"199":1,"236":1,"249":1,"273":3,"276":1,"277":1,"1983":23}}],["pmw3389",{"2":{"149":2,"199":1,"1983":1}}],["pmw3360",{"2":{"114":3,"118":1,"149":4,"160":1,"1983":1,"1985":1,"2728":1}}],["pmw",{"0":{"1982":1,"1983":2},"2":{"118":1,"339":1,"1982":1,"1983":6}}],["pcmm",{"2":{"2518":1,"2522":1}}],["pcint",{"2":{"2041":1}}],["pc",{"2":{"1358":3}}],["pc13",{"2":{"2508":1}}],["pc11",{"2":{"1211":1,"1212":1,"1213":1}}],["pc10",{"2":{"1211":1,"1212":1,"1213":1}}],["pc5",{"2":{"1211":1,"1212":1}}],["pc4",{"2":{"1211":1,"1212":1}}],["pca9505",{"2":{"191":1}}],["pca9555",{"2":{"149":1}}],["pcba",{"2":{"2895":3}}],["pcbheaven",{"2":{"2466":1}}],["pcb1",{"2":{"2410":2}}],["pcb",{"2":{"51":2,"114":1,"134":2,"191":2,"210":2,"222":2,"308":1,"311":1,"328":1,"684":2,"1196":1,"1200":1,"1329":1,"1365":1,"2389":1,"2392":1,"2394":1,"2395":2,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2422":1,"2453":1,"2483":1,"2612":4,"2690":1,"2695":1,"2714":1,"2728":1,"2794":1,"2845":1,"2852":1}}],["pcbs",{"2":{"27":2,"51":1,"114":1,"249":1,"2389":1,"2458":1,"2690":3}}],["pseudocode",{"2":{"2792":1}}],["pseudorandomly",{"2":{"2790":1}}],["pseudorandom",{"2":{"2246":1}}],["psls",{"2":{"2518":1,"2522":1,"2939":1}}],["pste",{"2":{"2516":1,"2522":1}}],["pstr",{"2":{"1535":1,"1701":1,"1702":1,"1718":1,"1945":11,"1948":2,"2247":1,"2248":1,"2284":11,"2893":2}}],["psi",{"2":{"1702":3}}],["pscr",{"2":{"379":1,"589":2,"2516":1,"2522":1,"2564":1}}],["ps",{"0":{"1367":1,"1941":1,"2037":1,"2046":1,"2875":1},"1":{"2038":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2045":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1},"2":{"133":1,"134":1,"175":1,"190":1,"191":1,"222":3,"236":1,"266":1,"285":1,"1941":1,"2037":2,"2046":1,"2875":6}}],["psp",{"2":{"118":1}}],["ps2avrgb",{"0":{"2500":1},"2":{"235":1,"1291":1,"2396":1,"2500":1,"2612":1}}],["ps2",{"2":{"114":2,"133":1,"134":1,"149":1,"210":1,"2039":2,"2040":5,"2041":9,"2042":5,"2043":17,"2044":3,"2046":17,"2047":4,"2048":10,"2049":1,"2050":4,"2051":3,"2052":2,"2053":1,"2875":1}}],["punctuation",{"0":{"1692":1,"2512":1},"2":{"1593":1,"1692":1,"2381":1}}],["pulsing",{"2":{"1686":6,"2085":2}}],["pulses",{"2":{"1665":2,"1849":9,"2085":2}}],["pulse",{"2":{"1286":3,"1541":1,"1686":1,"2085":10,"2087":1}}],["pulled",{"2":{"1297":1,"1681":1,"2390":1,"2397":1,"2680":1}}],["pulldown",{"2":{"857":3,"860":12,"921":2,"925":3,"956":2,"959":3,"990":2,"993":3,"1024":2,"1027":3,"1058":2,"1061":3,"1092":2,"1095":3,"1126":2,"1129":3,"1160":2,"1163":3,"1558":1}}],["pulls",{"2":{"367":1,"370":1,"2728":1}}],["pullup",{"2":{"134":1,"236":1,"772":2,"857":3,"860":12,"921":2,"925":3,"956":2,"959":3,"990":2,"993":3,"1024":2,"1027":3,"1058":2,"1061":3,"1092":2,"1095":3,"1126":2,"1129":3,"1160":2,"1163":3,"1297":2}}],["pulling",{"2":{"14":1,"39":1,"43":1,"1297":1,"2726":1}}],["pull",{"0":{"414":1,"2836":1},"1":{"415":1,"416":1,"417":1,"418":1},"2":{"2":1,"28":1,"35":1,"69":1,"87":1,"103":1,"126":1,"243":1,"333":1,"409":2,"411":2,"414":3,"417":1,"418":1,"421":1,"422":1,"596":1,"603":2,"607":9,"611":1,"613":1,"683":1,"749":1,"761":5,"1197":2,"1205":2,"1213":1,"1297":2,"1313":1,"1339":1,"1341":1,"1343":1,"1414":1,"1468":1,"2264":1,"2267":2,"2387":3,"2481":1,"2633":1,"2635":2,"2638":1,"2639":2,"2640":2,"2678":3,"2680":1,"2682":1,"2691":1,"2730":1,"2731":1,"2836":1,"2850":1,"2902":1,"2950":1}}],["pupdr",{"2":{"772":2}}],["puzzle",{"2":{"673":1}}],["pumps",{"2":{"1667":1}}],["pumpkinpad",{"2":{"241":1}}],["pumpkin",{"2":{"175":1,"241":1,"249":1}}],["pumkinpad",{"2":{"249":1}}],["public",{"0":{"2380":1},"2":{"249":1,"328":1,"1467":3,"2465":1,"2568":1,"2732":3}}],["publishing",{"0":{"2641":1}}],["publish",{"2":{"172":1,"175":2,"191":1,"199":1,"383":1,"2641":1}}],["published",{"2":{"166":2,"383":1,"688":1,"1467":1,"2452":1,"2458":1,"2732":1,"2840":1}}],["pushed",{"2":{"579":1,"766":1,"1413":4,"1667":1,"2757":1}}],["pushbutton",{"2":{"255":1}}],["push",{"2":{"243":1,"262":1,"402":1,"409":3,"411":3,"420":2,"421":2,"422":2,"423":2,"607":2,"761":3,"1213":1,"1297":1,"1478":1,"2387":2,"2428":1,"2590":1,"2595":1,"2597":2,"2601":1,"2607":1,"2608":2,"2637":6,"2639":4,"2640":5,"2641":2}}],["putc",{"0":{"1713":1},"1":{"1714":1}}],["puts",{"0":{"1715":1,"1717":1},"1":{"1716":1,"1718":1},"2":{"1701":1,"1702":1,"1717":1,"2523":1,"2752":1}}],["putting",{"2":{"476":1,"2418":1,"2459":1,"2474":1,"2852":1}}],["put",{"0":{"2612":1},"2":{"134":1,"166":1,"168":1,"283":1,"284":1,"509":1,"585":1,"599":1,"603":1,"609":1,"613":1,"633":1,"645":1,"686":2,"1484":1,"1791":1,"2049":1,"2050":2,"2300":1,"2315":1,"2317":2,"2330":1,"2413":1,"2434":1,"2523":1,"2569":1,"2570":1,"2579":1,"2612":1,"2728":1,"2731":1,"2751":1,"2752":1,"2795":1}}],["puca",{"2":{"134":1}}],["purchases",{"2":{"2567":1}}],["purchased",{"2":{"2505":1}}],["purchase",{"2":{"2293":1,"2567":1}}],["purple",{"2":{"2089":2,"2189":2,"2205":2,"2622":2}}],["purposes",{"2":{"461":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1947":1,"2059":1,"2286":1,"2450":1,"2504":1,"2674":1,"2795":1,"2824":1}}],["purpose",{"2":{"417":2,"491":1,"1303":1,"1467":1,"1557":1,"2276":8,"2653":1,"2664":1,"2732":1,"2754":1}}],["pur",{"2":{"921":1,"925":10,"956":1,"959":9,"990":1,"993":9,"1024":1,"1027":9,"1058":1,"1061":9,"1092":1,"1095":9,"1126":1,"1129":9,"1160":1,"1163":9}}],["purely",{"2":{"2326":1}}],["purejavahidapi",{"2":{"2057":1}}],["pure",{"2":{"293":1,"305":1,"314":1}}],["purge",{"2":{"134":1,"238":1}}],["pursuit40",{"2":{"143":2}}],["pursuit",{"2":{"109":1}}],["peer",{"2":{"2806":2}}],["peej",{"2":{"222":1}}],["peql",{"2":{"2518":1,"2522":1}}],["pepper",{"2":{"2317":3}}],["pep8",{"2":{"514":1}}],["pent",{"2":{"2518":1,"2522":1,"2939":1}}],["penalize",{"2":{"2381":1}}],["pendulum",{"2":{"2085":3,"2894":1}}],["pending",{"2":{"658":1,"659":1,"2567":2}}],["pen",{"2":{"1974":1}}],["pedal",{"2":{"1925":1,"2539":1}}],["peaks",{"2":{"2427":1}}],["peak",{"2":{"1684":1,"1685":2}}],["pearl",{"2":{"222":5}}],["pe1",{"2":{"1211":1}}],["pe0",{"2":{"1211":1}}],["pegasushoof",{"2":{"199":2}}],["petruziamini",{"2":{"266":1}}],["pet",{"2":{"175":1}}],["people",{"2":{"119":2,"179":2,"187":2,"188":1,"209":1,"231":1,"244":2,"288":1,"505":1,"540":1,"541":1,"609":1,"612":1,"613":1,"626":1,"633":1,"661":1,"665":2,"674":1,"683":1,"1321":1,"1335":1,"1344":1,"1347":1,"1376":1,"1382":1,"1421":1,"1427":1,"1497":1,"1626":1,"2382":1,"2418":1,"2435":1,"2437":1,"2447":2,"2481":1,"2564":1,"2583":2,"2589":1,"2633":1,"2730":1,"2835":1,"2897":1,"2909":1,"2910":1,"2932":1,"2948":1}}],["peiorisboards",{"2":{"102":1}}],["perpetually",{"2":{"2902":1}}],["perhaps",{"2":{"1779":1,"2927":1}}],["permitted",{"2":{"1788":1,"2726":1,"2727":1,"2749":1,"2929":1}}],["permissions",{"2":{"1315":1,"2735":1}}],["permission",{"2":{"199":1,"333":1}}],["permissive",{"0":{"2920":1},"2":{"112":2,"191":1,"564":4,"1519":1,"2316":1,"2317":1,"2854":2,"2909":1,"2913":2,"2914":1,"2916":2,"2917":3,"2918":2,"2920":11,"2921":2,"2926":5}}],["permanently",{"2":{"1690":1}}],["perks",{"2":{"1381":1}}],["perfectly",{"2":{"540":1,"2617":1}}],["perfect",{"2":{"228":1,"607":1,"1503":1,"2913":1}}],["perform",{"2":{"639":2,"696":1,"745":1,"1602":1,"1766":1,"1787":1,"1947":1,"1958":1,"1994":1,"2067":1,"2070":1,"2213":1,"2216":1,"2217":1,"2280":1,"2286":1,"2382":1,"2483":1,"2549":1,"2652":1,"2674":1,"2685":1,"2756":12,"2879":1,"2920":2,"2921":2}}],["performed",{"2":{"574":1,"651":1,"755":1,"756":1,"1742":1,"2502":1}}],["performs",{"2":{"184":1,"487":1,"586":1,"754":1,"755":1,"756":1,"757":1,"2065":2,"2068":2,"2390":1,"2397":1,"2935":1}}],["performing",{"2":{"134":1,"2216":2}}],["performance",{"2":{"93":1,"190":1,"191":1,"203":1,"236":1,"538":1,"643":2,"644":1,"1331":1,"1410":3,"1413":1,"1551":1,"1949":1,"1953":1,"1985":1,"2179":1,"2746":1,"2754":1}}],["perceptible",{"2":{"2937":1}}],["percentage",{"2":{"1583":1,"1586":1,"1588":1}}],["percent",{"0":{"1582":1,"1585":1,"1587":1},"1":{"1583":1},"2":{"529":1,"745":1,"2546":1,"2555":1}}],["perc",{"2":{"191":2,"2546":1,"2555":1}}],["person",{"2":{"1503":1,"2884":1}}],["personal",{"2":{"160":1,"175":1,"1319":1,"1352":1,"2387":1,"2458":1,"2460":1,"2598":2,"2602":1,"2603":1,"2608":1,"2628":1,"2630":1,"2667":1,"2727":1}}],["perspective",{"2":{"393":6,"398":1,"2643":1,"2707":1}}],["persisted",{"2":{"1926":1}}],["persistence",{"2":{"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1}}],["persistent",{"0":{"663":1,"1415":1,"2786":1,"2789":1},"1":{"1416":1,"1417":1,"1418":1,"1419":1,"1420":1},"2":{"131":1,"663":1,"1415":1,"1419":2,"1422":1,"1428":3,"1486":1,"1526":1,"1702":1,"1962":1,"2273":1,"2323":1,"2523":1,"2752":1,"2754":1,"2786":2,"2789":1,"2912":1}}],["persists",{"2":{"303":1,"338":1,"1422":1}}],["persist",{"2":{"134":1,"533":1,"560":1,"1990":1,"2327":2,"2331":1,"2418":1}}],["perimeter",{"2":{"1976":1}}],["periodic",{"2":{"2469":1}}],["periodically",{"2":{"378":1,"511":1,"581":1,"1551":1,"2310":1}}],["periods",{"2":{"1633":1,"2317":1,"2379":3}}],["period",{"2":{"112":1,"199":1,"236":1,"264":1,"265":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"399":2,"412":1,"472":1,"561":1,"655":1,"775":1,"778":1,"781":1,"784":1,"787":1,"790":1,"793":1,"796":1,"799":1,"1256":1,"1258":1,"1261":1,"1264":1,"1498":2,"1517":1,"1528":1,"1544":1,"1556":2,"1608":1,"1681":1,"1762":1,"1789":1,"2379":1,"2650":1,"2764":1,"2857":1}}],["peripherals",{"0":{"2696":1},"1":{"2697":1,"2698":1,"2699":1},"2":{"118":2,"146":1,"178":1,"222":1,"229":2,"234":3,"244":1,"716":1,"753":1,"768":1,"1200":1,"1205":1,"1210":1,"1213":1,"1248":1,"1269":1,"1405":1,"1477":1,"1964":1,"2684":1,"2692":1,"2695":1,"2696":1,"2729":1,"2734":1}}],["peripheral",{"0":{"234":1},"2":{"39":1,"175":2,"191":1,"199":1,"234":1,"714":1,"716":1,"750":1,"755":3,"756":1,"759":1,"768":5,"1193":1,"1197":1,"1199":1,"1203":3,"1204":3,"1205":5,"1213":1,"1248":3,"1253":1,"1269":3,"1293":1,"1294":2,"1302":1,"1303":1,"1477":1,"2044":4,"2695":1,"2697":1,"2698":1,"2699":1,"2707":2,"2711":2,"2739":1,"2746":1}}],["per",{"0":{"1510":1,"1612":1,"1801":1,"1924":1,"2378":1,"2419":1,"2928":1,"2932":1},"1":{"2379":1,"2380":1,"2381":1},"2":{"0":1,"9":1,"12":1,"29":1,"42":1,"52":1,"63":2,"92":1,"93":1,"112":6,"114":2,"149":1,"168":1,"175":1,"191":1,"194":3,"195":2,"198":1,"199":4,"201":1,"212":1,"222":1,"224":1,"238":1,"307":1,"317":1,"516":1,"518":1,"527":1,"564":16,"588":1,"615":1,"643":1,"717":1,"749":1,"768":1,"1248":2,"1269":1,"1283":2,"1313":1,"1333":1,"1410":8,"1413":10,"1422":1,"1446":1,"1471":1,"1475":1,"1477":1,"1484":1,"1487":1,"1498":2,"1503":1,"1518":2,"1541":1,"1594":1,"1612":9,"1638":1,"1665":1,"1670":1,"1801":3,"1852":3,"1855":1,"1935":1,"1936":3,"1937":8,"1939":1,"1949":1,"1983":3,"2091":5,"2094":1,"2178":1,"2182":3,"2252":6,"2275":1,"2305":1,"2309":2,"2319":2,"2378":1,"2568":1,"2569":1,"2728":1,"2755":1,"2757":3,"2765":1,"2769":1,"2772":1,"2854":4,"2871":1,"2878":1,"2884":1,"2894":1,"2903":1,"2910":1,"2912":2,"2920":2,"2921":1,"2922":1,"2925":1,"2928":2,"2929":1,"2932":1,"2937":2}}],["pkg",{"2":{"2627":1}}],["pk",{"2":{"94":1,"114":1,"199":1,"1410":1,"1413":3,"2854":3}}],["pgm",{"2":{"160":1,"1612":1}}],["pgup",{"2":{"90":2,"220":1,"379":2,"589":2,"1668":2,"2068":1,"2516":1,"2522":1,"2563":1,"2564":1}}],["pgdn",{"2":{"90":2,"120":1,"220":1,"379":2,"589":2,"1441":1,"1668":2,"2068":1,"2516":1,"2522":1,"2563":1,"2564":1}}],["pywinusb",{"2":{"2057":1}}],["pyhidapi",{"2":{"2057":1,"2059":1}}],["pytest",{"0":{"465":1},"2":{"277":1,"317":1,"465":5,"501":1,"502":1,"506":1,"542":1}}],["pythonimport",{"2":{"2059":1}}],["pythonistas",{"2":{"514":1}}],["pythonfrom",{"2":{"354":1}}],["python3",{"2":{"158":1,"1528":1}}],["python",{"0":{"13":1,"464":1,"514":1},"2":{"13":1,"70":2,"76":1,"149":1,"158":1,"160":2,"285":2,"344":3,"464":2,"465":2,"489":4,"491":1,"501":1,"503":1,"505":2,"514":2,"516":1,"520":1,"525":1,"538":1,"542":1,"543":1,"544":2,"608":2,"666":3,"672":2,"673":3,"1528":1,"2057":1,"2059":1,"2755":1}}],["pyformat",{"2":{"199":1}}],["py",{"2":{"76":1,"114":1,"210":1,"344":3,"489":1,"519":1,"543":1,"544":1,"666":3,"672":1,"673":3,"2627":2}}],["pirate",{"0":{"2494":1},"1":{"2495":1},"2":{"2494":2,"2495":1}}],["piezos",{"2":{"1478":1}}],["piezo",{"2":{"716":2,"722":1,"1475":1,"1478":1,"1479":1,"1482":2}}],["piece",{"2":{"540":1,"673":1,"1378":1,"2292":1,"2434":1,"2472":1}}],["pieces",{"2":{"249":1,"540":1,"2427":2,"2619":1,"2942":1}}],["pitch",{"2":{"231":1,"1490":3,"1925":4,"2539":4}}],["pi50",{"2":{"222":2}}],["piantor",{"2":{"222":1}}],["piggy60",{"2":{"218":4,"222":2}}],["pizza65",{"2":{"175":1}}],["pizzakeyboards",{"2":{"175":1}}],["pi60",{"2":{"175":1,"236":1}}],["pio0",{"2":{"1205":1,"1302":1,"2044":1}}],["pio1",{"2":{"249":1,"1205":2,"1302":2,"2044":2}}],["pio",{"0":{"1205":1,"1292":1,"1302":1,"2044":1},"2":{"175":3,"191":2,"222":1,"249":1,"1197":1,"1198":3,"1201":3,"1205":7,"1292":2,"1295":2,"1302":2,"1393":2,"2044":4,"2692":2,"2704":4}}],["pi",{"0":{"178":1,"552":1,"1397":1,"2410":1,"2692":1},"1":{"2693":1,"2694":1,"2695":1,"2696":1,"2697":1,"2698":1,"2699":1,"2700":1,"2701":1,"2702":1,"2703":1,"2704":1,"2705":1,"2706":1},"2":{"173":1,"175":1,"178":1,"191":1,"199":1,"1198":1,"1201":1,"1205":1,"1389":2,"1391":5,"1399":5,"2044":1,"2694":1,"2695":1,"2706":1,"2895":1}}],["pipe",{"2":{"1788":1,"2546":1,"2555":1,"2929":1}}],["pipes",{"2":{"396":1}}],["pipeline",{"2":{"198":1,"1667":1,"2729":1}}],["pip",{"2":{"158":2,"1528":1}}],["pillow",{"0":{"158":1},"2":{"158":2,"160":1,"2755":1}}],["pistachio",{"2":{"134":1,"143":6,"210":1}}],["picture",{"2":{"2728":1}}],["picro",{"2":{"2706":1}}],["pic",{"2":{"2494":1}}],["picks",{"2":{"2416":1}}],["picky",{"2":{"514":1}}],["picking",{"2":{"156":1}}],["picked",{"2":{"130":2,"145":1,"178":1,"221":1,"232":1,"248":1,"582":1,"1527":1}}],["pick",{"2":{"120":1,"487":1,"494":1,"512":1,"585":1,"608":1,"687":1,"699":1,"1319":1,"1483":1,"1590":1,"1763":1,"1790":1,"1970":2,"1987":3,"2066":1,"2714":1,"2717":1,"2901":1}}],["picolibc",{"2":{"134":1,"308":1}}],["pico",{"2":{"55":15,"175":1,"178":1,"199":1,"236":1,"241":4,"308":1,"317":1,"339":1,"756":1,"2410":1,"2694":2}}],["pimoroni",{"0":{"1980":1},"2":{"114":2,"118":2,"191":1,"1980":9}}],["pixdata",{"2":{"2754":1,"2757":3}}],["pixart",{"2":{"328":1,"339":1}}],["pixels",{"2":{"1936":2,"1939":2,"1947":3,"1949":1,"1954":5,"1971":5,"2286":3,"2288":1,"2290":5,"2757":9,"2767":2,"2774":2,"2776":2}}],["pixel",{"2":{"134":1,"149":1,"191":1,"199":1,"210":2,"248":1,"277":1,"285":1,"328":1,"339":1,"1936":1,"1954":2,"2085":9,"2290":2,"2754":1,"2755":2,"2756":5,"2757":7,"2765":2,"2772":2,"2776":8,"2778":4,"2894":3}}],["pix",{"2":{"74":2}}],["pid>",{"2":{"434":1}}],["pid",{"0":{"1319":1},"1":{"1320":1},"2":{"70":1,"111":1,"168":1,"184":1,"191":1,"249":2,"266":1,"317":2,"434":1,"561":1,"688":1,"689":1,"1319":1,"1356":1,"2569":1,"2717":3,"2728":1,"2882":1}}],["pink",{"2":{"2089":2,"2205":2}}],["pinky",{"2":{"1497":1}}],["pinwheels",{"2":{"2085":3,"2894":1}}],["pinwheel",{"2":{"1849":4,"2085":12,"2894":3}}],["ping",{"0":{"797":1},"1":{"798":1,"799":1},"2":{"797":2,"2728":1}}],["pintomux",{"2":{"199":1,"698":1,"699":1}}],["pinouts",{"2":{"1395":1,"1666":1,"2424":1,"2508":1}}],["pinout",{"2":{"191":1,"570":2,"693":1,"1397":1,"1398":1,"1666":1,"2424":1,"2430":1,"2507":1,"2694":1,"2706":2}}],["pinnacle",{"2":{"118":2,"175":1,"190":1,"191":2,"1973":3,"1974":19,"1975":5,"1976":3,"1977":3,"2014":1}}],["pinxx",{"2":{"114":1}}],["pins>",{"2":{"2278":2}}],["pins",{"0":{"1546":1,"2677":1,"2678":1},"2":{"39":1,"70":1,"111":2,"112":2,"114":2,"134":1,"175":2,"191":2,"199":2,"222":1,"236":2,"249":1,"277":1,"328":1,"396":2,"561":8,"570":12,"622":1,"634":1,"635":2,"639":11,"665":1,"668":1,"690":1,"693":1,"695":4,"715":1,"721":1,"722":1,"723":1,"726":1,"727":1,"767":2,"768":2,"772":1,"805":1,"828":1,"831":1,"857":1,"860":1,"861":1,"863":1,"889":1,"893":1,"921":1,"922":1,"923":1,"925":1,"926":1,"928":1,"956":1,"957":1,"959":1,"960":1,"962":1,"990":1,"993":1,"994":1,"996":1,"1024":1,"1027":1,"1028":1,"1030":1,"1058":1,"1061":1,"1062":1,"1064":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1098":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1132":1,"1160":1,"1161":1,"1163":1,"1164":1,"1166":1,"1196":1,"1198":1,"1200":2,"1201":2,"1210":1,"1213":4,"1216":1,"1219":1,"1247":2,"1248":3,"1266":1,"1268":2,"1269":2,"1294":1,"1297":1,"1311":1,"1372":1,"1395":1,"1398":1,"1400":1,"1401":1,"1407":2,"1408":2,"1474":2,"1477":1,"1478":1,"1481":1,"1482":1,"1486":1,"1546":3,"1551":1,"1553":1,"1558":2,"1655":3,"1665":5,"1666":7,"1670":9,"1681":4,"1682":1,"1699":3,"1836":1,"1838":1,"1952":7,"1979":1,"1982":1,"1983":8,"2042":1,"2044":1,"2208":3,"2272":1,"2278":9,"2375":1,"2396":1,"2423":1,"2427":1,"2430":2,"2431":3,"2433":1,"2441":1,"2483":3,"2507":1,"2508":1,"2612":1,"2675":1,"2676":1,"2677":2,"2679":2,"2680":5,"2682":1,"2686":1,"2690":2,"2691":1,"2693":1,"2694":2,"2695":1,"2701":1,"2703":2,"2704":1,"2718":2,"2719":3,"2720":7,"2728":1,"2756":2,"2818":1,"2828":1,"2856":1,"2857":2,"2863":2,"2865":1,"2872":6,"2880":3}}],["pin",{"0":{"243":1,"306":1,"315":1,"733":2,"739":2,"1194":1,"1197":1,"1200":1,"1251":1,"1313":1,"1407":1,"1408":1,"1659":1,"2271":1,"2272":1,"2676":1,"2694":1,"2720":1},"1":{"734":2,"740":2,"1252":1,"1253":1,"1408":1,"2677":1,"2678":1,"2679":1,"2680":1},"2":{"18":2,"35":1,"70":2,"93":1,"111":1,"112":2,"114":5,"134":1,"149":1,"160":4,"174":1,"175":1,"187":1,"190":1,"191":2,"199":4,"210":1,"212":3,"222":8,"236":1,"243":33,"249":3,"266":1,"277":10,"294":1,"308":2,"339":1,"554":1,"561":5,"565":4,"568":3,"569":7,"570":1,"635":5,"639":3,"695":1,"696":1,"698":5,"699":9,"704":6,"716":1,"721":5,"722":4,"726":8,"734":3,"740":3,"744":3,"749":5,"750":2,"759":2,"760":1,"761":34,"768":4,"772":2,"802":3,"828":2,"829":1,"857":2,"858":1,"863":1,"889":2,"890":1,"893":1,"921":2,"928":1,"956":2,"962":1,"990":2,"991":1,"996":1,"1024":2,"1025":1,"1030":1,"1058":2,"1059":1,"1064":1,"1092":2,"1098":1,"1126":2,"1132":1,"1160":2,"1166":1,"1193":1,"1194":3,"1195":2,"1197":5,"1198":3,"1200":12,"1201":7,"1205":2,"1211":2,"1212":2,"1213":6,"1216":2,"1217":1,"1219":1,"1247":3,"1248":13,"1252":2,"1265":1,"1269":8,"1285":3,"1294":2,"1297":4,"1298":1,"1299":4,"1303":1,"1311":13,"1312":4,"1313":5,"1371":2,"1389":1,"1395":2,"1396":2,"1403":1,"1407":3,"1409":1,"1465":1,"1473":1,"1474":10,"1475":2,"1477":4,"1478":3,"1479":3,"1480":2,"1481":5,"1482":4,"1483":5,"1486":9,"1544":4,"1545":2,"1546":4,"1549":2,"1553":1,"1554":1,"1556":2,"1558":3,"1590":1,"1655":1,"1659":1,"1670":1,"1678":5,"1681":8,"1699":6,"1738":1,"1739":1,"1742":4,"1749":3,"1836":11,"1838":9,"1951":7,"1952":3,"1966":12,"1967":3,"1968":6,"1974":3,"1978":8,"1979":4,"1981":12,"1982":4,"1983":11,"1985":16,"2037":1,"2038":2,"2040":2,"2041":4,"2042":2,"2043":2,"2044":3,"2179":11,"2208":2,"2266":2,"2267":2,"2271":4,"2272":3,"2275":2,"2278":1,"2288":6,"2375":4,"2390":2,"2397":2,"2418":3,"2431":1,"2485":3,"2487":3,"2489":3,"2494":2,"2499":1,"2507":1,"2677":3,"2678":4,"2679":4,"2682":1,"2685":2,"2690":1,"2691":1,"2694":2,"2695":2,"2700":1,"2702":15,"2704":2,"2720":1,"2728":1,"2756":70,"2853":1,"2855":6,"2856":5,"2857":4,"2858":3,"2863":1,"2865":8,"2867":10,"2872":4,"2875":6,"2876":8,"2880":7,"2883":3}}],["p",{"0":{"776":1,"1717":1,"1721":1,"2232":1,"2234":1},"1":{"777":1,"778":1,"1718":1,"1722":1,"2233":1,"2235":1},"2":{"47":1,"222":1,"266":3,"317":1,"328":1,"354":1,"379":1,"433":4,"455":2,"460":2,"589":2,"693":2,"767":1,"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1247":1,"1268":1,"1535":3,"1538":1,"1539":1,"1545":1,"1553":1,"1554":1,"1597":1,"1628":1,"1701":1,"1702":2,"1945":8,"1946":1,"1948":2,"1954":7,"1955":6,"2068":1,"2181":1,"2247":1,"2248":1,"2284":8,"2285":1,"2290":3,"2296":2,"2301":2,"2317":2,"2392":2,"2395":1,"2502":3,"2510":3,"2522":3,"2544":1,"2563":1,"2605":1,"2673":4,"2893":2}}],["pliers",{"2":{"2421":1,"2428":1}}],["pl",{"2":{"2301":3}}],["plover",{"0":{"2293":1,"2294":1},"1":{"2295":1,"2296":1,"2297":1},"2":{"1417":1,"1430":1,"1657":4,"2291":1,"2292":2,"2293":5,"2294":6,"2298":2,"2299":2,"2887":4}}],["ploopyco",{"2":{"266":1,"285":1,"291":4,"317":1}}],["ploopy",{"2":{"134":1,"199":1,"294":1}}],["ply2",{"2":{"1661":2,"2530":1}}],["ply1",{"2":{"1661":2,"2530":1}}],["ply8x",{"2":{"300":2,"308":1}}],["plywrks",{"2":{"222":1,"300":2,"308":1}}],["plump",{"2":{"2434":1}}],["pluggable",{"2":{"2265":1}}],["plugging",{"2":{"1348":1,"1589":1,"2261":1,"2265":1,"2396":1,"2612":1,"2717":1}}],["plugged",{"2":{"568":4,"686":1,"1332":1,"2325":1,"2377":1,"2528":1,"2849":1}}],["plug",{"2":{"684":1,"686":1,"1378":1,"1661":1,"2433":1,"2502":1,"2508":1,"2612":2}}],["plugins",{"0":{"2657":1,"2660":1},"1":{"2658":1,"2659":1,"2660":1},"2":{"2657":1,"2660":1}}],["plugin",{"2":{"504":1,"513":1,"2410":2,"2653":1,"2658":1,"2660":1,"2674":1}}],["plunger",{"2":{"1681":1}}],["plunge",{"2":{"288":1}}],["plus",{"2":{"143":2,"191":2,"210":1,"222":2,"226":1,"241":4,"1954":1,"2290":1,"2423":1,"2518":1,"2522":1,"2546":1,"2555":1}}],["plenty",{"2":{"547":1,"1802":1}}],["plexus75",{"2":{"143":2}}],["pleased",{"2":{"224":1}}],["please",{"2":{"27":1,"33":1,"39":1,"47":1,"49":1,"195":1,"196":1,"228":1,"240":1,"273":1,"276":1,"284":1,"302":1,"391":1,"470":1,"505":2,"512":1,"514":1,"538":1,"544":1,"594":1,"599":1,"602":1,"604":2,"609":1,"610":1,"613":3,"619":1,"620":1,"621":1,"644":1,"683":1,"701":1,"1200":1,"1290":1,"1338":2,"1339":1,"1398":1,"1414":1,"1463":1,"1467":1,"1595":1,"1634":1,"1661":1,"1662":1,"1684":1,"1685":1,"1788":1,"2037":1,"2040":1,"2057":1,"2179":1,"2189":1,"2331":1,"2415":1,"2441":1,"2452":1,"2455":1,"2461":1,"2565":1,"2567":1,"2579":1,"2589":1,"2615":1,"2633":1,"2635":1,"2696":1,"2697":1,"2698":1,"2714":2,"2715":2,"2727":1,"2731":1,"2758":1,"2759":1,"2761":1,"2896":1,"2929":1,"2943":1}}],["plastic",{"2":{"2429":1}}],["placing",{"2":{"2182":1,"2466":1}}],["placement",{"2":{"2267":1,"2317":1}}],["placeholder",{"2":{"1470":1,"1795":1}}],["placed",{"2":{"380":1,"540":1,"1298":1,"1541":1,"1558":1,"1639":1,"1949":1,"2267":1,"2280":1,"2434":1,"2454":1,"2455":1,"2466":1,"2596":1,"2610":1,"2716":1,"2728":2,"2913":1}}],["place",{"2":{"114":1,"166":1,"191":2,"194":1,"249":1,"284":1,"462":1,"511":1,"512":1,"533":1,"634":1,"681":2,"691":1,"1348":2,"1353":1,"1356":1,"1431":1,"1467":1,"1485":1,"1527":1,"1546":1,"1603":1,"2273":1,"2280":1,"2312":1,"2317":1,"2406":1,"2408":1,"2410":1,"2413":1,"2422":1,"2425":1,"2428":3,"2430":1,"2431":1,"2435":1,"2468":1,"2561":2,"2640":1,"2715":1,"2800":1,"2884":1,"2893":1,"2897":1,"2912":1,"2950":1}}],["places",{"2":{"111":1,"393":1,"529":1,"610":1,"669":1,"1622":1,"1642":1,"2317":1,"2505":1,"2794":1,"2927":1,"2938":1}}],["plates",{"2":{"2458":1}}],["plate",{"2":{"2421":2,"2422":4,"2425":1}}],["plat",{"2":{"133":1,"134":1}}],["platforms",{"2":{"40":1,"93":1,"137":1,"156":1,"160":1,"175":1,"191":1,"210":1,"514":1,"613":1,"760":1,"761":1,"1193":1,"1195":1,"1324":1,"2935":2}}],["platform",{"2":{"40":2,"65":1,"75":1,"111":1,"113":4,"114":4,"123":1,"133":5,"134":5,"149":1,"160":1,"173":1,"175":1,"178":2,"199":7,"222":1,"285":1,"714":1,"761":1,"1192":1,"1404":1,"1405":1,"1550":1,"1556":1,"1943":1,"2745":1,"2749":1,"2756":2,"2803":1,"2935":4,"2946":1}}],["plans",{"2":{"2948":1}}],["planning",{"0":{"2423":1},"1":{"2424":1},"2":{"2422":1,"2426":1,"2431":1,"2432":1}}],["planned",{"2":{"88":1,"613":1,"2210":1,"2421":1,"2425":1}}],["plan",{"2":{"143":2,"614":1,"677":1,"2327":2,"2423":2,"2618":1}}],["planck",{"0":{"50":1,"1320":1},"2":{"50":1,"270":2,"277":2,"393":2,"429":2,"437":1,"442":1,"452":2,"453":2,"454":1,"455":1,"684":7,"1320":1,"1343":1,"1365":4,"1430":1,"1438":4,"1439":2,"1463":2,"1480":2,"1492":2,"1527":1,"2057":1,"2249":1,"2293":1,"2303":1,"2384":2,"2387":1,"2390":2,"2397":2,"2417":8,"2423":2,"2436":1,"2449":1,"2587":4,"2610":1,"2614":2}}],["plain",{"2":{"1594":1,"2181":1,"2544":1,"2563":1,"2599":2,"2619":2,"2653":1,"2664":1}}],["plain60",{"2":{"57":2}}],["plaid",{"2":{"27":2,"249":1}}],["player",{"2":{"2517":1,"2522":1}}],["played",{"2":{"719":2,"1487":1,"1686":2}}],["plays",{"2":{"1485":12,"1486":16}}],["playback",{"2":{"1444":1,"1490":2,"2253":1,"2254":1,"2522":1}}],["playing",{"2":{"631":1,"714":1,"719":1,"1484":1,"1490":2,"1523":3,"1601":1,"2254":1}}],["play",{"0":{"17":2},"2":{"17":2,"210":1,"398":1,"538":1,"631":2,"1417":2,"1444":1,"1473":1,"1485":3,"1490":1,"1503":1,"1535":2,"1605":1,"1657":2,"1661":2,"1664":2,"1776":9,"1783":1,"1804":5,"1839":3,"2221":1,"2328":6,"2517":2,"2522":2,"2530":2,"2674":2,"2786":1,"2856":1,"2942":1}}],["pave",{"2":{"2569":1}}],["paper",{"2":{"2298":2}}],["pam8302",{"2":{"1486":1}}],["pa0",{"2":{"1212":1}}],["pa3",{"2":{"1211":1,"1212":1,"1213":1}}],["pa2",{"2":{"1211":1,"1212":1,"1213":1}}],["pa1",{"2":{"1212":1}}],["pa15",{"2":{"1211":1,"1212":1}}],["pa14",{"2":{"1211":1,"1212":1}}],["pa11",{"2":{"721":1}}],["pa10",{"2":{"721":1,"1211":1,"1212":1,"1213":1}}],["pa9",{"2":{"721":1,"1211":1,"1212":1,"1213":1}}],["pa8",{"2":{"721":1,"1483":2}}],["pasted",{"2":{"2728":1}}],["paste",{"2":{"1962":1,"2387":1,"2504":1,"2516":2,"2522":2,"2576":1,"2577":1,"2607":1,"2728":1,"2795":1}}],["past",{"0":{"400":1,"413":1},"2":{"1501":1,"2518":1,"2522":1,"2569":1,"2930":1,"2939":1}}],["passes",{"2":{"1428":1,"1534":1,"2178":1}}],["passed",{"2":{"194":1,"433":2,"444":1,"446":1,"455":2,"469":3,"647":2,"656":1,"657":1,"1247":1,"1248":1,"1283":1,"1517":1,"1532":2,"1781":1,"1786":2,"1954":2,"1988":1,"1989":1,"2089":1,"2205":1,"2275":1,"2290":2,"2310":2,"2448":1,"2466":1,"2791":2}}],["passing",{"2":{"433":1,"565":1,"1954":1,"1989":1,"2290":1,"2318":1,"2448":1,"2579":1}}],["passwords",{"2":{"1440":1,"2790":1}}],["password",{"2":{"312":1,"2608":1}}],["pass",{"2":{"12":1,"114":1,"130":1,"134":1,"149":2,"344":3,"403":1,"459":1,"491":2,"500":1,"506":1,"513":1,"533":1,"535":4,"1422":1,"1490":1,"1538":1,"1539":1,"2466":2,"2508":1,"2757":1,"2886":1}}],["pauses",{"2":{"720":1}}],["pause",{"2":{"398":1,"561":1,"1444":1,"1694":1,"1776":8,"2516":2,"2517":2,"2522":4,"2612":1}}],["paus",{"2":{"379":1,"589":2,"2516":1,"2522":1,"2564":1}}],["pay",{"2":{"2272":1}}],["payloads",{"2":{"2057":1}}],["payload",{"0":{"379":1},"2":{"379":1,"380":1,"2057":1}}],["paying",{"2":{"198":1}}],["paw3222",{"2":{"1979":3}}],["paw3204",{"2":{"191":1,"1978":3}}],["paw",{"0":{"1978":1,"1979":1},"2":{"328":1,"1978":2,"1979":1}}],["pain",{"2":{"2431":1}}],["painter",{"0":{"153":1,"232":1,"248":1,"466":1,"467":1,"468":1,"2753":1,"2754":1,"2755":1,"2756":1,"2757":1,"2758":1,"2760":1,"2761":1,"2762":1},"1":{"2754":1,"2755":1,"2756":1,"2757":1,"2759":1,"2760":1,"2761":2,"2762":2,"2763":1,"2764":1},"2":{"153":5,"158":1,"160":1,"191":1,"199":2,"222":2,"232":5,"248":3,"249":1,"285":1,"294":2,"466":1,"467":1,"468":1,"2753":21,"2754":12,"2755":11,"2756":48,"2757":44,"2758":2,"2759":5,"2761":3}}],["paid",{"2":{"604":1,"2731":1}}],["pairs",{"0":{"2330":1},"2":{"588":1,"671":1,"1655":1,"2070":1,"2331":1,"2851":1}}],["pair",{"2":{"213":1,"307":1,"1670":1,"2044":1,"2347":1,"2351":1,"2377":1,"2528":1}}],["pachi",{"2":{"222":2,"277":1}}],["packaging",{"2":{"2427":1,"2569":1,"2738":1}}],["package",{"2":{"386":1,"420":2,"519":1,"520":1,"1318":1,"1528":1,"2506":1,"2626":1,"2627":1,"2657":1,"2658":2,"2659":1,"2707":1,"2710":1,"2827":1}}],["packages",{"2":{"182":1,"393":1,"2506":1,"2626":1,"2670":1,"2707":1}}],["pack",{"2":{"393":1,"2387":1,"2671":2}}],["packs",{"2":{"393":3,"2278":1}}],["packed",{"2":{"236":2,"328":1,"1747":1,"1788":2,"2765":1,"2767":1,"2768":1,"2769":2,"2772":1,"2773":1,"2774":1,"2775":1,"2776":1,"2777":1,"2778":1,"2779":1,"2929":2}}],["packets",{"2":{"263":1,"1962":2,"2295":2,"2296":2,"2300":1}}],["packet",{"2":{"236":2,"263":1,"561":1,"2295":5,"2296":3,"2300":2,"2882":1}}],["packing",{"2":{"199":1}}],["packrat",{"2":{"143":2}}],["pacman",{"2":{"160":1,"2506":1,"2601":1}}],["pal2",{"2":{"2755":3}}],["pal256",{"2":{"2755":3}}],["pal4",{"2":{"2755":3}}],["pal16",{"2":{"2755":3}}],["palsetpadmode",{"2":{"772":2}}],["palettes",{"2":{"2754":1}}],["palette",{"0":{"2770":1,"2777":1},"2":{"160":1,"249":1,"2673":2,"2754":1,"2755":6,"2765":2,"2767":1,"2770":3,"2772":3,"2776":14,"2777":8}}],["paladinpad",{"2":{"134":1}}],["paladin64",{"2":{"122":2,"222":1}}],["pal",{"2":{"133":1,"134":1,"222":1,"721":2,"762":1,"768":2,"772":6,"1195":2,"1198":1,"1200":2,"1201":1,"1248":3,"1269":4,"1299":2,"1303":1,"1396":1,"1483":1,"1556":1,"2042":1}}],["patent",{"2":{"2735":1}}],["patience",{"2":{"2731":1}}],["patient",{"2":{"604":1}}],["patching",{"2":{"2634":1}}],["patch",{"2":{"222":1,"294":2,"2634":3}}],["patterns",{"2":{"440":1,"665":2,"1634":1,"2079":1,"2447":1,"2742":1}}],["pattern",{"2":{"118":1,"125":1,"169":1,"198":1,"308":1,"317":1,"487":1,"627":1,"2828":1,"2912":1}}],["path=",{"2":{"2628":1}}],["path=raw",{"2":{"2059":1}}],["pathlib",{"2":{"354":1}}],["paths",{"2":{"132":1,"134":1,"149":1,"191":1,"199":1,"308":2,"393":1,"607":1,"2670":1}}],["path",{"2":{"6":1,"40":1,"114":1,"222":1,"308":1,"354":3,"393":2,"397":1,"452":1,"453":1,"463":1,"465":1,"484":1,"485":2,"509":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1463":2,"1525":1,"1628":3,"2059":1,"2384":1,"2387":4,"2417":4,"2432":1,"2502":1,"2508":3,"2583":1,"2594":1,"2595":1,"2605":1,"2607":2,"2628":2,"2629":1,"2640":3,"2669":3,"2674":7,"2755":1}}],["padding",{"2":{"2765":1,"2772":1,"2889":1}}],["paddlegame",{"2":{"114":1}}],["pads",{"2":{"684":1,"1670":1,"2280":2}}],["pad",{"0":{"2518":1},"2":{"114":2,"175":1,"236":1,"241":5,"249":2,"266":1,"333":1,"1472":1,"1665":2,"2014":1,"2278":1,"2280":3,"2427":1}}],["pans",{"2":{"1954":1,"2290":1}}],["pan",{"2":{"222":1,"294":1,"328":1,"1954":1,"2290":1}}],["panel",{"2":{"153":1,"248":1,"1945":2,"2331":1,"2517":2,"2522":2,"2753":2,"2756":35,"2757":4}}],["panels",{"2":{"123":1,"153":2,"248":1,"2729":1,"2756":3,"2757":3}}],["pandora",{"2":{"114":1,"222":1}}],["pancake",{"2":{"27":2}}],["paren",{"2":{"2546":2,"2555":2}}],["parens",{"2":{"2318":1}}],["parenthesis",{"2":{"2255":1,"2256":6,"2257":6,"2550":6}}],["parentheses",{"0":{"528":1},"2":{"528":2,"2259":1,"2318":1}}],["parent",{"2":{"72":1,"149":1,"249":1,"266":1,"293":1,"305":1,"314":1,"432":1,"612":1,"2659":1}}],["parity",{"2":{"2043":1,"2298":1}}],["paryz",{"2":{"199":1}}],["parse",{"2":{"149":1,"671":1}}],["parsing",{"2":{"76":1,"92":1,"175":1,"191":1,"199":1,"222":1,"236":1,"308":1,"439":1,"489":1,"495":1,"2670":1,"2767":1,"2773":1,"2774":1}}],["paragraphs",{"0":{"676":1}}],["paragraph",{"2":{"675":2,"676":2}}],["params",{"2":{"199":1,"1850":11,"2088":11}}],["parameter",{"2":{"175":1,"323":1,"328":1,"519":1,"657":1,"1286":1,"1410":1,"1456":1,"1837":1,"2273":2,"2384":1,"2651":1,"2757":2}}],["parameters",{"2":{"70":1,"249":1,"766":1,"1253":1,"1365":1,"2384":3,"2454":1,"2558":1,"2728":1}}],["parallel",{"2":{"114":1,"134":1,"236":1,"429":3,"455":4,"469":5,"1454":1,"1558":1,"2428":1,"2756":1}}],["party",{"2":{"383":1,"516":1,"603":1,"2331":1,"2903":1}}],["participating",{"2":{"2896":1}}],["particular",{"0":{"2012":1},"2":{"512":1,"514":1,"519":1,"559":1,"612":3,"695":2,"772":1,"797":1,"1366":1,"1428":1,"1431":1,"1467":1,"1485":1,"1538":1,"1556":1,"1713":1,"1996":1,"2011":1,"2077":1,"2320":1,"2381":1,"2419":2,"2429":2,"2468":1,"2503":1,"2506":1,"2585":1,"2655":1,"2709":1,"2732":1,"2820":1}}],["particularly",{"2":{"289":1,"526":1,"605":1,"668":1,"1296":1,"2278":1,"2923":1,"2926":1}}],["parties",{"2":{"288":1,"1626":1,"2569":1,"2707":1}}],["partialremap",{"2":{"1213":2}}],["partially",{"2":{"191":1,"199":1,"236":2,"328":1,"723":1,"2746":1}}],["partial",{"2":{"39":1,"1392":1,"1393":1,"1534":1,"2379":1,"2756":1}}],["parts",{"0":{"2421":1},"2":{"187":1,"366":1,"541":1,"605":1,"768":1,"1248":1,"1269":1,"1994":2,"2429":1,"2503":2,"2633":1,"2945":1}}],["part",{"2":{"67":1,"76":1,"86":1,"114":2,"134":1,"160":1,"172":5,"175":5,"191":2,"199":1,"222":8,"236":1,"262":1,"266":32,"354":1,"513":1,"528":1,"529":1,"613":1,"633":1,"661":1,"672":1,"683":1,"701":1,"1209":1,"1332":1,"1382":1,"1416":1,"1427":1,"1451":1,"1470":2,"1472":1,"1491":1,"1525":1,"1532":1,"1533":1,"1546":1,"1661":1,"1803":1,"1846":2,"2082":2,"2219":1,"2275":5,"2278":1,"2297":1,"2381":1,"2387":1,"2432":1,"2434":2,"2437":1,"2483":1,"2517":1,"2562":2,"2601":2,"2632":3,"2634":2,"2638":1,"2651":1,"2668":1,"2674":1,"2684":1,"2709":1,"2738":2,"2739":1,"2787":1,"2840":1,"2935":1,"2945":1}}],["page=shop",{"2":{"1319":1}}],["pagesize",{"2":{"2508":1}}],["pages",{"2":{"277":1,"341":1,"579":1,"661":1,"1382":1,"1405":1,"2508":3,"2581":1,"2696":1}}],["page",{"0":{"675":1,"901":2,"936":2,"970":2,"1004":2,"1038":2,"1072":2,"1106":2,"1140":2,"1174":2,"1227":2},"1":{"902":2,"937":2,"971":2,"1005":2,"1039":2,"1073":2,"1107":2,"1141":2,"1175":2,"1228":2},"2":{"46":1,"124":1,"178":1,"179":1,"194":1,"217":1,"221":1,"249":1,"340":2,"341":1,"365":1,"377":1,"384":1,"392":1,"413":1,"552":1,"555":2,"576":1,"578":1,"587":1,"595":1,"610":2,"626":1,"661":2,"664":1,"674":1,"675":4,"677":1,"681":3,"682":1,"729":1,"749":2,"750":2,"759":2,"769":1,"770":1,"863":1,"893":1,"901":1,"902":2,"928":1,"936":1,"937":2,"962":1,"970":1,"971":2,"996":1,"1004":1,"1005":2,"1030":1,"1038":1,"1039":2,"1064":1,"1072":1,"1073":2,"1098":1,"1106":1,"1107":2,"1132":1,"1140":1,"1141":2,"1166":1,"1174":1,"1175":2,"1219":1,"1227":1,"1228":2,"1314":1,"1321":1,"1330":1,"1337":1,"1342":2,"1344":1,"1351":2,"1357":2,"1378":1,"1379":1,"1382":2,"1388":1,"1398":1,"1409":1,"1694":2,"1697":1,"1953":2,"1954":7,"2016":1,"2037":1,"2056":3,"2057":1,"2059":4,"2068":2,"2290":7,"2387":1,"2411":1,"2418":4,"2437":3,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2453":1,"2480":1,"2481":1,"2490":1,"2508":8,"2509":1,"2516":4,"2517":3,"2518":2,"2521":2,"2522":6,"2609":1,"2622":1,"2653":1,"2664":1,"2684":1,"2707":1,"2714":1,"2716":1,"2723":1,"2724":1,"2726":1,"2751":1,"2780":1,"2793":1,"2851":1,"2852":3,"2905":1}}],["pong",{"2":{"2728":1}}],["podman",{"2":{"2383":2,"2384":3}}],["poop",{"2":{"2330":1}}],["poor",{"2":{"2317":1,"2902":2}}],["pop",{"2":{"2434":1}}],["populated",{"2":{"2938":1}}],["populates",{"2":{"2269":1}}],["populate",{"2":{"1417":1,"2714":1,"2938":1}}],["popularity",{"2":{"2810":1}}],["popular",{"2":{"236":1,"263":1,"2089":1,"2205":1,"2569":1,"2675":1,"2814":1,"2895":1,"2913":1}}],["popping",{"2":{"236":1}}],["polish",{"2":{"2887":2}}],["policies",{"0":{"2900":1},"1":{"2901":1,"2902":1,"2903":1,"2904":1},"2":{"2567":1}}],["policy",{"0":{"2749":1,"2902":1},"1":{"2903":1,"2904":1},"2":{"1316":1,"2749":1,"2903":1}}],["policy=default",{"2":{"1316":1}}],["polilla",{"2":{"253":2}}],["polarity",{"2":{"1252":1,"2685":1}}],["polaris",{"2":{"222":1,"447":4}}],["pololu",{"2":{"689":1,"2392":1,"2499":1}}],["polled",{"2":{"191":1,"1985":1}}],["poll",{"2":{"191":1,"570":2,"581":1,"2043":1,"2278":2,"2882":1}}],["polling",{"0":{"137":1},"2":{"112":1,"114":1,"137":1,"149":2,"285":1,"294":1,"561":2,"1985":1,"2880":2,"2882":1}}],["potentiometer",{"2":{"690":1,"1738":1,"1923":1}}],["potential",{"2":{"11":1,"142":1,"149":1,"262":1,"312":3,"435":1,"456":1,"2054":1,"2057":1}}],["potentially",{"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"130":1,"399":1,"646":1,"688":1,"1415":1,"1423":1,"1593":1,"2057":1,"2065":1,"2265":1,"2379":1,"2568":1,"2573":1,"2886":1}}],["potato65s",{"2":{"222":1}}],["pocketavr",{"0":{"2490":1},"1":{"2491":1},"2":{"2490":3}}],["pocket",{"2":{"226":1,"236":1}}],["pockettype",{"2":{"57":2}}],["poc",{"2":{"191":1}}],["poker",{"2":{"122":1,"328":1}}],["portuguese",{"2":{"2887":7}}],["port>",{"2":{"2502":1}}],["portmento",{"2":{"1925":1,"2539":1}}],["portb",{"2":{"1474":1}}],["portc",{"2":{"1474":1}}],["porting",{"2":{"1329":1,"2712":1,"2728":1,"2749":1}}],["portions",{"2":{"1803":1,"2568":1}}],["portion",{"2":{"228":1,"2418":1,"2691":1,"2869":1}}],["portamento",{"2":{"1925":1,"2539":1}}],["portability",{"2":{"764":1,"1245":1,"1266":1}}],["portal",{"2":{"122":2}}],["port",{"2":{"114":1,"134":2,"288":1,"294":1,"460":5,"461":1,"568":3,"685":1,"1373":2,"1925":1,"2294":3,"2298":2,"2393":1,"2484":1,"2486":1,"2488":1,"2490":1,"2492":1,"2494":1,"2499":1,"2502":2,"2539":1,"2674":3,"2677":1,"2689":1,"2735":1}}],["ports",{"0":{"1841":1},"2":{"114":1,"175":2,"1551":1,"2502":1,"2689":1,"2709":1}}],["powering",{"2":{"1558":1}}],["powerful",{"2":{"1421":1,"2316":1,"2478":1,"2579":1,"2675":1}}],["powers",{"2":{"1192":1,"2714":1,"2830":1}}],["powered",{"2":{"396":1,"433":1,"596":1,"1681":1,"1961":1,"2701":1}}],["poweron",{"2":{"249":1}}],["poweroff",{"2":{"222":1,"285":1}}],["power",{"0":{"538":1,"649":1,"1351":1,"1376":1},"2":{"70":1,"112":1,"134":3,"210":1,"222":1,"231":1,"262":1,"266":1,"561":2,"648":2,"649":1,"650":2,"665":1,"698":1,"720":1,"746":1,"749":2,"1252":1,"1296":1,"1351":3,"1370":1,"1376":1,"1407":1,"1415":1,"1422":2,"1486":5,"1558":1,"1638":3,"1678":1,"1702":1,"2208":1,"2301":1,"2323":2,"2331":1,"2418":1,"2454":4,"2516":2,"2517":2,"2522":4,"2535":1,"2579":1,"2690":1,"2728":1,"2757":7,"2856":2,"2882":1}}],["pose",{"2":{"1296":1}}],["possibility",{"2":{"2071":1,"2293":1,"2434":1}}],["possibilities",{"2":{"1766":1,"1773":1,"1846":1,"2082":1,"2435":1}}],["possible",{"2":{"44":1,"98":1,"99":1,"140":1,"224":1,"293":1,"305":1,"314":1,"339":1,"344":3,"381":1,"403":1,"417":1,"429":1,"525":1,"542":1,"555":2,"588":1,"604":1,"643":1,"646":1,"647":1,"715":1,"716":1,"720":1,"753":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1199":1,"1217":1,"1294":1,"1303":1,"1315":1,"1356":1,"1405":1,"1424":1,"1428":1,"1433":2,"1440":1,"1503":1,"1602":1,"1604":1,"1605":1,"1612":1,"1620":1,"1623":1,"1630":1,"1661":1,"1663":1,"1676":1,"1795":1,"1843":1,"1923":2,"1935":1,"1936":1,"1938":1,"1962":1,"1974":1,"1985":1,"2016":1,"2037":1,"2040":1,"2048":1,"2072":1,"2079":1,"2086":1,"2097":1,"2189":1,"2261":1,"2267":1,"2275":2,"2300":1,"2309":1,"2310":1,"2316":1,"2317":1,"2318":1,"2329":1,"2330":1,"2331":3,"2374":2,"2384":1,"2388":1,"2416":1,"2418":2,"2423":1,"2428":1,"2429":1,"2453":1,"2454":1,"2461":1,"2482":1,"2504":1,"2568":1,"2569":1,"2573":1,"2579":1,"2620":1,"2626":1,"2628":1,"2658":1,"2667":1,"2674":1,"2685":1,"2686":1,"2710":1,"2728":7,"2776":3,"2791":1,"2869":1,"2901":1,"2902":1,"2904":1,"2925":1,"2928":1,"2943":1,"2948":1,"2950":1}}],["possibly",{"2":{"18":1,"40":1,"1299":2}}],["possess",{"2":{"767":1,"1288":1,"1291":1,"2505":1}}],["possesses",{"2":{"693":1}}],["positive",{"2":{"524":2,"1954":1,"2290":1}}],["positives",{"2":{"199":1,"1503":1}}],["positioning",{"0":{"1641":1},"2":{"2757":1}}],["positional",{"2":{"452":1,"453":1}}],["positions",{"2":{"191":1,"210":1,"222":1,"1619":1,"1702":1,"1846":2,"1968":2,"2082":2,"2453":1,"2728":2,"2794":1,"2869":1,"2891":1,"2927":1}}],["position",{"0":{"1329":1,"1653":1},"1":{"1654":1},"2":{"62":1,"222":1,"1329":1,"1353":1,"1539":1,"1641":2,"1642":1,"1653":1,"1654":2,"1665":1,"1670":1,"1707":1,"1711":1,"1728":1,"1741":2,"1747":1,"1760":1,"1761":1,"1791":1,"1802":2,"1846":9,"1947":1,"1954":9,"1968":1,"1974":3,"2082":9,"2086":1,"2286":1,"2290":9,"2293":1,"2428":1,"2721":1,"2860":1,"2869":5,"2871":3,"2878":3,"2880":1,"2927":2,"2937":1}}],["pos",{"2":{"191":1,"1665":1,"2195":1,"2197":1}}],["postage",{"2":{"2424":2}}],["postprocess",{"2":{"191":1}}],["post",{"0":{"369":1,"410":1,"640":1,"641":1,"642":1,"1632":1,"2686":1},"1":{"411":1,"412":1,"641":1,"642":1},"2":{"74":1,"133":2,"134":3,"191":3,"266":2,"369":1,"378":1,"380":2,"405":1,"406":1,"633":2,"641":2,"642":2,"647":3,"1322":1,"1377":1,"1417":3,"1420":1,"1447":2,"1638":6,"1701":1,"1702":1,"1997":1,"2097":1,"2189":1,"2191":4,"2277":1,"2300":1,"2454":10,"2455":8,"2572":1,"2637":2,"2686":2,"2728":1,"2730":1,"2756":2,"2757":4,"2761":1,"2941":6}}],["posted",{"2":{"39":1,"2729":1}}],["points",{"2":{"512":1,"1538":1,"1781":1,"2300":1,"2310":1,"2329":3,"2330":3,"2331":5,"2418":3,"2434":1,"2684":1}}],["pointer",{"2":{"323":1,"774":1,"777":1,"780":1,"783":2,"786":1,"789":1,"792":1,"795":1,"1260":1,"1263":1,"1278":1,"1280":1,"1535":1,"1930":1,"1947":5,"1954":1,"1964":1,"1968":1,"2057":1,"2058":1,"2062":1,"2064":1,"2286":5,"2290":1,"2310":2}}],["pointers",{"2":{"114":1,"210":1,"581":1}}],["pointed",{"2":{"11":1}}],["point",{"0":{"2347":1,"2354":1},"1":{"2348":1,"2355":1,"2356":1},"2":{"94":2,"203":2,"236":1,"317":1,"402":1,"409":1,"411":1,"412":1,"640":1,"657":1,"661":1,"686":1,"687":2,"1348":1,"1382":1,"1517":1,"1528":1,"1538":1,"1609":1,"1670":1,"1757":1,"1846":2,"1999":1,"2082":2,"2272":1,"2310":2,"2317":1,"2319":1,"2329":1,"2331":1,"2332":3,"2348":2,"2354":1,"2356":1,"2357":1,"2371":1,"2418":1,"2431":1,"2437":1,"2462":1,"2552":3,"2564":1,"2592":1,"2634":2,"2637":1,"2674":2,"2685":1,"2714":1,"2719":1,"2756":1,"2769":2,"2871":1,"2878":1,"2888":1,"2913":1,"2915":1,"2923":1,"2935":1}}],["pointless",{"2":{"40":1,"94":1,"222":1,"236":1,"277":1}}],["pointing",{"0":{"118":1,"138":1,"174":1,"190":1,"1941":1,"1964":1,"1996":1,"1997":1,"2015":1},"1":{"1965":1,"1966":1,"1967":1,"1968":1,"1969":1,"1970":1,"1971":1,"1972":1,"1973":1,"1974":1,"1975":1,"1976":1,"1977":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":1,"1984":1,"1985":1,"1986":1,"1987":1,"1988":1,"1989":1},"2":{"6":1,"63":1,"118":12,"134":3,"138":4,"149":4,"174":4,"175":6,"190":5,"191":8,"222":3,"249":1,"266":1,"273":1,"285":2,"298":1,"317":2,"564":1,"1638":6,"1639":1,"1941":1,"1964":2,"1965":1,"1966":3,"1967":1,"1974":2,"1976":2,"1977":1,"1978":2,"1979":1,"1981":3,"1982":1,"1983":7,"1984":5,"1985":22,"1986":8,"1987":16,"1988":17,"1989":11,"1990":9,"1992":3,"1993":2,"1994":1,"1995":1,"1996":5,"1997":6,"1998":2,"1999":3,"2001":2,"2003":1,"2014":2,"2015":10,"2276":5,"2439":1,"2455":1,"2872":1,"2908":1}}],["pryce",{"2":{"2942":1}}],["prf5",{"2":{"2377":1,"2528":1}}],["prf4",{"2":{"2377":1,"2528":1}}],["prf3",{"2":{"2377":1,"2528":1}}],["prf2",{"2":{"2377":1,"2528":1}}],["prf1",{"2":{"2377":1,"2528":1}}],["prune",{"2":{"421":1,"422":2}}],["pr12345",{"2":{"403":1}}],["practical",{"0":{"2747":1},"2":{"2466":1,"2576":1,"2902":1,"2903":1}}],["practically",{"2":{"399":1,"2324":1,"2503":1}}],["practice",{"2":{"1378":1,"1499":1,"1523":1,"2463":1,"2757":1}}],["practices",{"0":{"674":1,"2631":1},"1":{"2632":1},"2":{"414":1,"514":1,"674":1,"2726":1,"2730":1}}],["pragma",{"2":{"134":1,"199":1,"222":1,"303":1,"338":1,"512":1,"717":2,"718":2,"721":2,"768":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1299":2,"1303":2,"1405":1,"1472":1,"1502":1,"1556":2,"1557":2,"1850":1,"2042":1,"2088":1,"2416":2,"2726":1,"2794":2}}],["pr20584",{"2":{"222":1}}],["pristine",{"2":{"2728":2}}],["price",{"2":{"2675":1}}],["private",{"2":{"2568":1,"2728":1}}],["privately",{"2":{"2568":1}}],["privileged",{"2":{"2417":1}}],["privileges",{"2":{"1316":1,"1332":1}}],["prir",{"2":{"2516":1,"2522":1}}],["principle",{"2":{"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1934":1,"2713":1}}],["println",{"2":{"2652":12}}],["printed",{"2":{"1209":1,"1998":1,"2059":1,"2418":1,"2435":1,"2507":1,"2627":1,"2694":1,"2884":1}}],["printedpad",{"2":{"277":1}}],["printer",{"2":{"175":1}}],["prints",{"2":{"160":1,"1333":1,"1428":2,"1627":1,"2754":1}}],["print",{"2":{"75":2,"114":1,"119":1,"149":1,"199":1,"249":1,"339":2,"433":6,"437":1,"455":2,"493":1,"529":1,"562":1,"625":2,"1327":9,"1329":1,"1333":3,"1450":1,"1625":5,"1694":1,"1713":1,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1962":7,"2059":7,"2418":13,"2516":2,"2522":2,"2543":1,"2912":1,"2950":1}}],["printing",{"0":{"491":1,"493":1},"1":{"492":1,"493":1,"494":1},"2":{"39":1,"222":1,"491":1,"562":1,"1592":1,"1736":1}}],["printf",{"0":{"14":1},"2":{"160":1,"191":4,"396":1,"491":1,"526":1,"529":1,"1316":1,"1535":1,"2889":1}}],["prioritized",{"2":{"403":1}}],["prioritizes",{"2":{"312":1}}],["priority",{"2":{"236":1,"555":2,"768":4,"2559":1}}],["prior",{"2":{"251":1,"297":1,"308":1,"605":1,"2516":2,"2522":2}}],["primitives",{"2":{"2753":1}}],["primarily",{"2":{"634":1,"1199":1,"1346":2,"2500":1,"2909":1}}],["primary",{"2":{"175":1,"716":1,"1475":1,"1639":1,"1943":1,"2276":1,"2283":1,"2382":1,"2880":2}}],["prime",{"2":{"328":1}}],["prime+",{"2":{"285":1,"328":1}}],["primekb",{"2":{"222":1}}],["primus75",{"2":{"222":1}}],["prnt",{"2":{"119":1,"2543":1,"2912":3}}],["preamble",{"0":{"2438":1}}],["prerequisite",{"2":{"2383":1}}],["prerequisites",{"0":{"623":1,"2599":1,"2619":1,"2621":1,"2622":1,"2624":1,"2654":1,"2667":1},"1":{"2655":1,"2656":1},"2":{"308":1,"460":1,"461":1}}],["preloaded",{"2":{"1686":1,"2399":1,"2404":1}}],["pregenerated",{"2":{"719":1}}],["pretty=oneline",{"2":{"588":1,"589":1}}],["pretty",{"2":{"437":1,"512":1,"608":1,"613":1,"1327":1,"1340":1,"1342":1,"1364":1,"1470":1,"2042":1,"2425":1,"2466":1,"2616":1,"2617":1}}],["pretend",{"2":{"100":1}}],["predetermined",{"2":{"1590":1}}],["predefined",{"0":{"1513":1,"1514":1,"1515":1,"1516":1},"2":{"231":1,"719":1,"1480":1,"1513":1,"1514":1,"1515":1,"1516":1,"1741":1,"2016":1,"2069":1,"2786":1}}],["predicted",{"2":{"399":1}}],["precompiled",{"2":{"2501":1,"2735":2,"2741":2,"2744":1,"2750":1}}],["precomputed",{"2":{"1488":1}}],["precalculated",{"2":{"1952":2,"1953":3,"2289":1}}],["precedence",{"0":{"2559":1},"2":{"568":1,"2189":2,"2270":1,"2419":1,"2557":2,"2824":1,"2920":1,"2925":1,"2927":1}}],["preceding",{"2":{"297":1,"2923":1,"2924":1}}],["precision",{"2":{"210":2,"690":1,"1681":1,"1743":12}}],["precisely",{"2":{"1769":1}}],["precise",{"2":{"134":1,"1936":1,"1939":1,"1940":1}}],["preonic",{"2":{"222":1,"1320":1}}],["preflashed",{"2":{"2394":1}}],["preformatted",{"2":{"354":1}}],["preferring",{"2":{"2728":1}}],["preferred",{"2":{"116":1,"448":1,"449":1,"450":1,"2384":1,"2432":1,"2458":1,"2628":2,"2709":1,"2727":2,"2728":2,"2764":1,"2794":1}}],["prefers",{"2":{"2717":1}}],["preferable",{"2":{"1410":1,"1681":1,"2009":1}}],["preferably",{"2":{"581":1,"1434":1,"2659":1,"2728":1}}],["prefer",{"2":{"344":3,"403":1,"491":1,"493":1,"499":1,"512":1,"516":2,"527":1,"529":1,"535":1,"538":1,"539":1,"540":1,"1325":1,"1410":1,"2593":1,"2727":1,"2728":1,"2942":1}}],["preferences",{"2":{"353":1,"494":1,"1675":1,"2331":1,"2669":1}}],["preference",{"2":{"328":1,"2606":1,"2728":2,"2914":1}}],["prefix=",{"2":{"420":1}}],["prefixed",{"2":{"236":1,"494":2,"1422":1,"1444":1,"2520":1,"2563":1,"2572":1,"2884":1}}],["prefix",{"2":{"199":3,"236":1,"249":1,"266":1,"1444":1,"1448":1,"1625":1,"2222":1,"2329":1,"2453":1,"2651":1,"2945":1}}],["prebuilt",{"0":{"179":1},"2":{"179":2,"1326":1,"2401":1}}],["preinstalled",{"2":{"2178":1}}],["preinstall",{"2":{"160":1}}],["preprocess",{"2":{"2310":1,"2941":1}}],["preprocessor",{"2":{"222":1,"512":3,"555":1,"1446":1,"2417":2,"2751":1}}],["prepend",{"2":{"1850":1,"2088":1}}],["prepended",{"2":{"1634":1,"1635":1,"1636":1}}],["prep",{"2":{"114":1,"149":1,"236":1}}],["preparing",{"2":{"455":1,"1468":1}}],["prepare",{"0":{"2620":1},"1":{"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1},"2":{"149":1,"210":1,"249":1,"408":1,"2207":1,"2331":1,"2425":1,"2620":1}}],["prepared",{"2":{"134":1,"613":1,"2569":1}}],["prepares",{"2":{"56":1}}],["preparation",{"2":{"86":1,"142":1,"1954":1,"2290":1}}],["presumably",{"2":{"1319":1}}],["prescribe",{"2":{"2720":1}}],["presc",{"2":{"770":1}}],["preset",{"2":{"1407":1}}],["presets",{"2":{"160":3,"719":1,"1952":3}}],["presence",{"2":{"249":1,"1378":1,"1974":1}}],["presented",{"2":{"2569":1}}],["presents",{"2":{"581":1,"685":1,"1442":1,"2394":1,"2396":1,"2734":1}}],["present",{"2":{"24":1,"212":2,"217":1,"228":1,"229":1,"236":1,"433":2,"446":1,"463":1,"521":1,"567":1,"594":1,"620":1,"693":1,"695":1,"746":1,"754":1,"758":1,"1407":1,"1408":1,"1410":1,"1465":1,"1628":1,"1631":1,"1632":1,"1962":1,"2294":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":2,"2401":2,"2404":2,"2406":1,"2408":1,"2410":1,"2453":1,"2474":1,"2612":1,"2634":1,"2709":2,"2717":1,"2728":3,"2766":1,"2773":1,"2777":1,"2886":1}}],["pressplayid",{"2":{"2567":1}}],["pressure",{"2":{"1639":1,"1974":1}}],["presses",{"2":{"312":1,"564":1,"626":2,"720":1,"1431":1,"1448":2,"1525":1,"1609":1,"1618":1,"1673":2,"1743":1,"1787":1,"1933":1,"1941":1,"1988":1,"2087":1,"2272":1,"2276":1,"2317":1,"2469":2,"2579":2,"2823":1,"2825":1,"2833":1,"2884":1}}],["pressed",{"0":{"1452":1},"2":{"36":2,"98":1,"194":2,"199":1,"210":1,"213":1,"289":2,"294":1,"297":1,"307":2,"324":1,"325":1,"564":1,"593":6,"630":1,"631":5,"632":1,"647":1,"1329":9,"1377":1,"1380":1,"1381":1,"1409":2,"1417":6,"1420":1,"1422":3,"1431":1,"1446":8,"1447":4,"1452":2,"1458":1,"1459":1,"1460":1,"1462":1,"1471":2,"1472":1,"1490":1,"1498":1,"1499":1,"1517":1,"1538":1,"1591":1,"1593":1,"1597":1,"1598":2,"1604":1,"1605":3,"1611":1,"1612":4,"1615":1,"1618":2,"1627":1,"1672":1,"1674":1,"1676":4,"1687":1,"1690":1,"1743":5,"1764":2,"1766":1,"1767":2,"1770":2,"1772":1,"1774":1,"1776":1,"1781":4,"1782":4,"1784":5,"1785":3,"1786":4,"1787":2,"1795":1,"1798":1,"1800":1,"1801":1,"1923":1,"1924":1,"1940":1,"1962":2,"1988":1,"1992":1,"1993":1,"1994":3,"1999":4,"2000":2,"2003":1,"2006":1,"2009":3,"2013":2,"2031":1,"2048":1,"2065":1,"2067":1,"2068":1,"2069":1,"2076":4,"2077":5,"2079":2,"2086":2,"2191":1,"2225":2,"2259":1,"2293":1,"2295":1,"2300":6,"2301":1,"2302":1,"2309":3,"2310":3,"2316":1,"2317":4,"2320":1,"2434":1,"2466":6,"2469":1,"2531":1,"2533":2,"2535":1,"2549":1,"2575":1,"2576":3,"2577":2,"2579":1,"2650":2,"2651":1,"2685":1,"2783":2,"2821":1,"2829":1,"2861":1,"2872":3,"2912":4,"2914":4,"2921":3,"2923":2,"2926":5,"2931":1,"2937":2,"2940":2}}],["press",{"0":{"1611":1,"1612":1,"2469":1,"2921":1},"2":{"99":1,"114":1,"134":1,"175":2,"194":7,"199":1,"213":2,"217":2,"235":1,"266":1,"312":1,"393":1,"398":2,"564":9,"600":1,"601":2,"631":1,"632":1,"647":1,"684":2,"688":1,"1348":1,"1364":1,"1365":1,"1377":28,"1378":1,"1409":1,"1417":1,"1446":1,"1448":1,"1455":1,"1485":5,"1486":5,"1498":2,"1501":1,"1517":2,"1518":1,"1522":3,"1523":3,"1525":1,"1529":1,"1600":3,"1611":1,"1612":5,"1614":2,"1615":1,"1624":2,"1661":4,"1752":1,"1762":2,"1766":1,"1786":1,"1787":1,"1789":1,"1795":1,"1803":1,"1930":1,"1937":1,"1962":2,"1968":1,"1971":2,"1980":1,"2022":1,"2026":1,"2065":2,"2071":1,"2073":1,"2086":1,"2272":1,"2293":1,"2297":1,"2300":2,"2304":1,"2310":1,"2317":2,"2319":2,"2330":1,"2389":2,"2392":2,"2394":2,"2395":2,"2397":2,"2402":1,"2403":1,"2433":1,"2466":4,"2469":1,"2471":1,"2541":28,"2551":1,"2564":1,"2612":3,"2617":1,"2673":2,"2728":1,"2790":1,"2834":2,"2843":1,"2852":1,"2854":2,"2912":1,"2914":1,"2916":2,"2917":3,"2918":2,"2919":1,"2920":6,"2921":9,"2922":3,"2923":1,"2924":1,"2926":6,"2931":1}}],["pressing",{"2":{"73":1,"99":1,"213":2,"222":1,"394":1,"599":1,"600":1,"686":1,"1333":1,"1370":1,"1381":1,"1409":1,"1440":1,"1518":1,"1593":1,"1594":3,"1597":1,"1608":1,"1618":1,"1767":2,"1774":2,"1791":1,"1935":2,"1936":1,"1939":1,"1993":1,"1999":1,"2065":1,"2072":1,"2076":1,"2077":1,"2466":1,"2650":3,"2652":2,"2834":1,"2839":1,"2842":1,"2861":2,"2914":1,"2920":1,"2929":2}}],["pre",{"0":{"214":1,"634":1,"635":1,"636":1,"2685":1,"2701":1},"1":{"635":1,"636":1,"2702":1,"2703":1},"2":{"24":2,"191":1,"194":1,"214":4,"222":2,"266":1,"285":1,"430":1,"439":1,"633":1,"635":2,"636":2,"749":1,"750":1,"1395":1,"1638":6,"1986":1,"2423":1,"2429":1,"2470":1,"2685":2,"2686":1,"2701":1,"2703":1,"2728":4,"2938":1,"2941":3}}],["prev",{"2":{"1489":1,"1495":1,"1667":1,"1680":1,"1776":2,"1848":1,"2084":1,"2181":1,"2331":1,"2332":1,"2377":4,"2517":2,"2522":1,"2524":1,"2528":4,"2537":1,"2544":1,"2545":1,"2552":1,"2925":5}}],["preview",{"2":{"611":1,"2671":2,"2728":2}}],["previewing",{"0":{"611":1}}],["previously",{"2":{"40":1,"47":1,"166":1,"168":1,"181":1,"184":1,"185":1,"234":1,"276":1,"283":1,"757":1,"1962":1,"2213":1,"2272":1,"2295":1,"2719":1,"2757":1}}],["previous",{"2":{"14":2,"56":1,"57":1,"58":1,"98":1,"107":1,"124":1,"126":1,"145":1,"149":1,"175":1,"217":1,"231":1,"279":1,"331":1,"406":1,"411":2,"413":1,"559":1,"688":1,"689":1,"1353":1,"1381":1,"1489":1,"1495":1,"1680":2,"1776":1,"1848":2,"1875":1,"1876":1,"1901":1,"1902":1,"2059":1,"2068":2,"2084":2,"2117":1,"2118":1,"2155":1,"2156":1,"2181":1,"2199":2,"2200":2,"2295":1,"2309":1,"2319":1,"2332":1,"2339":1,"2377":1,"2416":2,"2428":1,"2451":1,"2466":1,"2517":1,"2522":1,"2524":1,"2528":1,"2537":2,"2544":1,"2545":2,"2552":1,"2583":1,"2607":1,"2609":1,"2634":1,"2728":1,"2757":1,"2923":2,"2925":3,"2931":1,"2940":1,"2949":1}}],["prevention",{"2":{"889":1}}],["preventing",{"2":{"174":2,"175":1,"229":1,"2000":1,"2008":2,"2570":2}}],["prevent",{"2":{"170":1,"175":2,"199":1,"210":1,"222":1,"249":1,"308":1,"312":1,"333":1,"409":1,"564":1,"575":1,"592":1,"656":1,"677":1,"754":1,"763":1,"1785":1,"2000":1,"2013":1,"2212":1,"2260":1,"2298":1,"2418":1,"2585":1,"2678":1,"2683":1,"2726":1,"2794":1,"2886":1,"2931":1}}],["prevented",{"2":{"103":1}}],["prevents",{"2":{"6":1,"1455":1,"1786":1,"1990":1,"2912":1}}],["pros",{"2":{"2329":1,"2425":1}}],["professional",{"2":{"2291":1}}],["profile5",{"2":{"2377":1,"2528":1}}],["profile4",{"2":{"2377":1,"2528":1}}],["profile3",{"2":{"2377":1,"2528":1}}],["profile2",{"2":{"2377":1,"2528":1}}],["profile1",{"2":{"2377":1,"2528":1}}],["profiles",{"2":{"1970":1,"2669":1}}],["profile",{"2":{"509":1,"510":1,"511":1,"2377":10,"2528":10}}],["profiler",{"2":{"222":1}}],["proficient",{"2":{"414":1,"2905":1}}],["prone",{"2":{"1425":1,"1524":1,"1610":1,"1614":1,"2913":1}}],["proving",{"2":{"2566":1}}],["providing",{"2":{"610":1,"673":1,"1480":1,"2453":2,"2461":1,"2566":2,"2568":1,"2569":1,"2667":1,"2684":1,"2711":1,"2758":1}}],["provided",{"2":{"70":1,"125":1,"169":1,"179":1,"288":1,"312":1,"425":1,"444":1,"489":2,"570":7,"746":2,"753":1,"757":3,"1300":1,"1326":1,"1343":1,"1398":1,"1404":1,"1446":1,"1528":1,"1626":1,"1627":1,"1630":1,"1681":1,"1738":1,"1742":2,"1781":1,"1970":2,"1983":1,"1984":1,"1986":1,"2277":1,"2298":1,"2300":1,"2448":1,"2503":1,"2567":17,"2568":1,"2569":2,"2626":1,"2627":1,"2642":1,"2711":1,"2728":4,"2729":1,"2926":1}}],["provides",{"2":{"14":1,"35":1,"69":1,"179":1,"189":1,"373":1,"460":1,"554":1,"612":1,"622":1,"624":1,"629":1,"702":1,"723":1,"741":1,"1194":1,"1197":1,"1200":1,"1283":1,"1577":1,"1738":1,"1801":1,"1835":1,"1846":1,"1939":1,"1985":3,"2058":1,"2082":1,"2194":1,"2291":1,"2620":1,"2653":1,"2664":1,"2667":1,"2671":1,"2734":1,"2741":1,"2817":1,"2884":1}}],["provide",{"2":{"4":1,"160":1,"199":1,"201":1,"234":1,"285":1,"288":1,"308":1,"461":1,"495":1,"515":1,"575":1,"625":1,"761":1,"1388":1,"1390":1,"1392":1,"1393":1,"1407":1,"1517":1,"1526":1,"1527":1,"1626":1,"1628":1,"1629":1,"1630":2,"1634":2,"1638":2,"1681":1,"1742":1,"1835":1,"1837":1,"1842":1,"1843":1,"1923":1,"1985":1,"2265":1,"2418":1,"2460":1,"2506":1,"2566":2,"2568":2,"2571":1,"2701":1,"2703":1,"2707":1,"2736":1,"2739":1,"2741":1,"2751":1}}],["proves",{"2":{"540":1}}],["probe",{"2":{"2508":1,"2674":5}}],["probability",{"2":{"2185":1}}],["probably",{"2":{"233":1,"393":1,"531":1,"686":1,"1361":1,"1365":1,"1796":1,"1957":1,"2417":1,"2429":2,"2434":1,"2502":1,"2658":1,"2662":1,"2948":1}}],["problem",{"0":{"1376":1,"1788":1},"2":{"1319":1,"1352":1,"1359":1,"1371":1,"1427":1,"1470":1,"1497":1,"1503":1,"1593":1,"1961":2,"2466":1,"2736":1,"2931":1,"2944":1}}],["problems",{"0":{"621":1},"2":{"222":1,"254":1,"399":1,"435":4,"440":1,"456":1,"600":1,"607":1,"1373":1,"1424":1,"1485":1,"2417":1,"2448":1,"2567":1,"2586":1,"2616":1,"2677":1,"2742":1,"2947":1}}],["problematic",{"2":{"123":1,"254":1,"2747":1}}],["proceed",{"2":{"686":1,"2603":1}}],["procedures",{"2":{"2580":1}}],["procedure",{"0":{"419":1},"1":{"420":1,"421":1,"422":1,"423":1},"2":{"175":1,"191":1,"2269":1,"2277":1,"2728":1}}],["processes",{"2":{"404":1}}],["processed",{"2":{"114":1,"1425":1,"1446":2,"1464":1,"1466":1,"1491":2,"1612":1,"2016":1,"2300":2,"2320":1,"2562":1,"2784":1,"2823":1}}],["processors",{"2":{"605":1,"2298":1,"2465":2,"2935":1}}],["processor==stm32f411",{"2":{"433":3}}],["processor",{"2":{"70":1,"111":2,"175":1,"199":1,"439":1,"668":1,"1936":1,"2579":2,"2689":1,"2830":1,"2853":1}}],["processing",{"0":{"98":1,"1803":1},"2":{"4":1,"98":1,"112":1,"125":1,"169":1,"175":1,"199":1,"214":3,"249":1,"288":2,"294":1,"307":2,"564":1,"627":1,"630":1,"631":1,"646":1,"647":1,"763":1,"1292":1,"1293":1,"1294":1,"1417":1,"1472":1,"1533":2,"1535":1,"1609":1,"1610":1,"1618":1,"1626":2,"1667":1,"1723":1,"1803":1,"1964":1,"2000":1,"2013":1,"2015":1,"2300":2,"2454":1,"2559":1,"2575":1,"2576":3,"2764":2,"2870":1,"2941":1}}],["process",{"0":{"13":1,"49":1,"214":1,"631":1,"632":1,"1446":1,"1532":1,"1533":1,"2731":1,"2941":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"1533":1},"2":{"0":1,"1":1,"3":1,"7":1,"9":1,"29":1,"36":3,"42":1,"48":1,"52":1,"76":1,"94":1,"114":1,"156":1,"191":2,"210":3,"212":1,"214":6,"222":3,"235":1,"236":1,"266":1,"277":1,"285":1,"294":1,"307":2,"317":2,"324":1,"325":1,"399":1,"404":1,"413":1,"415":1,"416":1,"417":1,"572":1,"593":5,"603":1,"613":1,"627":2,"630":3,"631":2,"632":2,"633":3,"640":1,"643":1,"647":1,"651":1,"653":1,"666":2,"687":1,"688":1,"763":2,"1329":1,"1380":3,"1381":2,"1388":2,"1417":4,"1420":1,"1431":2,"1446":4,"1447":5,"1462":1,"1471":2,"1472":5,"1485":6,"1486":12,"1518":1,"1527":1,"1532":4,"1533":2,"1605":3,"1617":3,"1618":6,"1622":1,"1638":12,"1661":2,"1663":2,"1667":1,"1668":1,"1681":1,"1743":1,"1755":1,"1795":2,"1852":2,"1923":1,"1924":1,"1929":2,"1949":1,"1958":4,"1959":1,"1962":2,"1993":1,"1994":1,"2009":1,"2013":1,"2015":2,"2053":1,"2071":1,"2076":2,"2077":1,"2079":5,"2091":2,"2181":2,"2191":3,"2225":1,"2277":1,"2300":3,"2310":5,"2316":2,"2318":1,"2325":1,"2402":1,"2428":2,"2429":1,"2441":1,"2456":1,"2461":1,"2466":1,"2559":1,"2575":2,"2576":1,"2577":1,"2580":1,"2591":1,"2606":1,"2610":2,"2612":1,"2621":2,"2626":1,"2632":1,"2714":1,"2722":1,"2728":1,"2729":1,"2734":1,"2783":1,"2811":1,"2871":2,"2878":2,"2880":1,"2912":1,"2937":1,"2940":1,"2941":45}}],["proprietary",{"0":{"2733":1,"2746":1},"1":{"2734":1,"2735":1,"2736":1,"2737":1,"2738":1,"2739":1,"2740":1,"2741":1,"2742":1,"2743":1,"2744":1,"2745":1,"2746":1,"2747":1,"2748":1,"2749":1,"2750":1},"2":{"2567":1,"2733":1,"2734":1,"2735":1,"2736":1,"2737":1,"2741":3,"2742":1,"2746":1,"2747":2,"2749":1,"2750":1}}],["props",{"2":{"2516":1,"2522":1}}],["proposed",{"2":{"344":3,"403":1,"414":1,"2733":1}}],["prophet",{"2":{"222":1}}],["property",{"2":{"534":1,"1370":1,"2757":2}}],["properties",{"0":{"534":1},"2":{"308":1,"393":2,"534":1,"688":1,"1708":1,"1990":1,"2663":1,"2869":2}}],["proper",{"2":{"189":1,"458":1,"1315":1,"1316":1,"2607":1,"2676":1,"2678":1,"2711":1}}],["properly",{"2":{"175":1,"210":1,"249":1,"328":1,"561":1,"564":1,"1353":1,"1615":1,"1802":1,"1954":1,"2091":1,"2280":1,"2298":1,"2470":1,"2490":1,"2498":1,"2651":1,"2662":1,"2793":1}}],["propagated",{"2":{"500":1}}],["propagate",{"2":{"149":1}}],["prologues",{"2":{"160":1}}],["promenade",{"2":{"294":1}}],["promethium",{"2":{"114":1}}],["prompts",{"2":{"308":1,"2628":4}}],["prompt",{"2":{"294":1,"308":1,"333":1,"435":1,"444":2,"688":1,"2502":1,"2522":1,"2608":1,"2622":1,"2667":1}}],["prompted",{"2":{"187":1,"2659":1}}],["promote",{"2":{"199":1,"333":1,"2567":1}}],["prominent",{"2":{"2797":1}}],["prominently",{"2":{"131":1}}],["promises",{"2":{"2750":1}}],["promicro",{"0":{"2441":1,"2835":1},"2":{"153":1,"210":1,"271":2,"277":1,"306":2,"311":14,"315":2,"317":2,"439":2,"1313":1,"1389":14,"1403":1,"1407":1,"2441":1,"2714":1,"2853":2}}],["programs",{"0":{"2796":1},"2":{"1788":2,"1986":2,"2068":1,"2582":1,"2704":1,"2929":2,"2935":1}}],["program",{"0":{"1315":1},"1":{"1316":1,"1317":1},"2":{"398":1,"489":1,"491":2,"540":1,"613":1,"665":1,"754":1,"1205":1,"1292":1,"1311":1,"1467":3,"1593":1,"1605":1,"2054":1,"2251":1,"2291":1,"2418":1,"2432":1,"2579":2,"2599":3,"2619":3,"2732":3,"2807":1,"2935":3,"2946":1}}],["programmed",{"2":{"2617":1}}],["programmer>",{"2":{"2502":1}}],["programmers",{"2":{"529":1,"2490":1,"2502":1,"2508":1}}],["programmer",{"0":{"389":1},"2":{"389":1,"1315":3,"1523":3,"1928":1,"2389":4,"2392":1,"2395":2,"2417":1,"2484":1,"2486":1,"2488":1,"2490":1,"2492":1,"2494":1,"2502":2,"2580":1,"2615":3,"2887":3}}],["programmatically",{"2":{"1742":1,"1850":1,"2088":1,"2297":1,"2326":1}}],["programmatic",{"2":{"1686":1}}],["programmable",{"0":{"2016":1,"2020":1,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2032":1,"2033":1,"2035":1,"2548":1},"1":{"2017":1,"2018":1,"2019":1,"2020":1,"2021":1,"2022":2,"2023":1,"2024":2,"2025":1,"2026":2,"2027":1,"2028":2,"2029":1,"2030":2,"2031":2,"2032":1,"2033":1,"2034":2,"2035":1,"2036":2},"2":{"134":4,"149":1,"172":1,"174":1,"175":3,"231":3,"1292":1,"2016":2,"2018":64,"2020":1,"2032":1,"2033":1,"2034":1,"2035":1,"2036":1,"2460":1,"2548":65,"2704":1,"2941":1}}],["programming",{"0":{"630":1,"2461":1},"1":{"631":1,"632":1},"2":{"605":1,"2054":1,"2057":1,"2478":1,"2503":1,"2568":1,"2579":1,"2589":1,"2615":1,"2664":1,"2809":1,"2818":2,"2934":1}}],["progressively",{"2":{"201":1}}],["progress",{"2":{"113":1,"381":1,"714":1,"2218":1}}],["progressed",{"2":{"109":1}}],["progmem",{"2":{"94":1,"114":1,"149":1,"247":1,"307":1,"589":1,"729":1,"776":1,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1446":2,"1527":1,"1535":1,"1540":1,"1602":2,"1603":2,"1604":2,"1605":6,"1617":1,"1618":1,"1656":1,"1667":1,"1702":1,"1717":1,"1718":1,"1721":1,"1722":1,"1924":1,"1946":1,"1954":3,"2187":7,"2189":5,"2191":3,"2232":1,"2234":1,"2285":1,"2290":3,"2303":1,"2305":1,"2312":1,"2329":1,"2330":1,"2557":1,"2562":2,"2585":1,"2927":1,"2939":1}}],["pro",{"0":{"271":1,"1391":1,"1394":2,"2484":1,"2702":1},"1":{"1392":1,"1393":1,"1394":1,"1395":1,"1396":1,"1397":1,"1398":1,"2485":1},"2":{"77":1,"86":2,"102":3,"114":12,"134":2,"143":2,"149":2,"159":4,"160":2,"173":1,"175":2,"178":1,"187":1,"191":4,"197":2,"199":1,"210":3,"236":2,"271":2,"317":2,"322":2,"546":1,"568":1,"685":1,"689":2,"1317":1,"1389":1,"1391":7,"1396":1,"1398":1,"1400":1,"1401":1,"1406":1,"2261":1,"2263":1,"2266":1,"2267":1,"2273":2,"2279":1,"2392":1,"2393":1,"2421":1,"2423":1,"2424":2,"2484":2,"2485":3,"2486":1,"2499":3,"2503":1,"2589":1,"2688":1,"2690":1,"2691":6,"2700":2,"2702":2,"2703":1,"2706":1,"2714":2,"2835":1,"2887":4,"2895":3}}],["producing",{"2":{"93":1,"2178":1}}],["production",{"0":{"2462":1,"2504":1},"2":{"461":1,"2390":3,"2397":3,"2462":1,"2504":2}}],["products",{"2":{"142":1,"749":3,"1319":1,"2571":1,"2747":1,"2851":1}}],["product",{"2":{"70":1,"134":2,"168":2,"175":2,"184":2,"561":2,"689":1,"749":4,"750":1,"1319":4,"1332":1,"2057":2,"2059":5,"2390":2,"2397":2,"2483":1,"2566":1,"2568":1,"2728":1,"2852":2,"2882":1}}],["producers",{"2":{"2569":1}}],["produced",{"2":{"430":1,"561":1,"2071":2,"2402":1,"2403":1,"2802":1,"2803":1}}],["produces",{"2":{"303":1,"338":1,"1480":1,"1597":2,"1802":1,"2071":2,"2079":2}}],["produce",{"2":{"39":1,"185":1,"220":1,"266":1,"721":1,"1518":3,"1527":1,"1602":1,"1926":1,"2429":1,"2474":1,"2501":1,"2589":1,"2926":3}}],["protozoa",{"2":{"222":2}}],["prototypist",{"2":{"143":2,"149":1,"210":2,"222":3}}],["prototypes",{"2":{"133":1,"134":1,"2457":1,"2728":1}}],["prototype",{"2":{"114":1,"175":1,"2462":1,"2726":1}}],["proto",{"2":{"114":1,"134":1,"253":1}}],["protocol=serial",{"2":{"266":1,"277":1}}],["protocols",{"0":{"2297":1},"2":{"133":1,"134":1,"2292":1,"2294":2,"2297":3,"2298":1,"2374":1}}],["protocol",{"0":{"2294":1},"1":{"2295":1,"2296":1,"2297":1},"2":{"40":1,"75":1,"111":2,"112":1,"113":1,"114":1,"133":3,"134":3,"160":1,"175":1,"191":2,"199":2,"210":1,"236":2,"249":1,"263":1,"265":1,"266":1,"396":1,"570":1,"575":1,"1283":1,"1286":1,"1682":1,"1966":1,"1978":1,"1981":1,"2046":1,"2178":1,"2276":1,"2294":1,"2295":2,"2296":2,"2297":6,"2298":2,"2300":4,"2374":1,"2392":1,"2402":1,"2469":1,"2746":1,"2806":2,"2880":3,"2881":2,"2935":2,"2936":1}}],["proton",{"0":{"304":1,"1211":1,"1392":1,"1479":1,"2688":1},"1":{"2689":1,"2690":1,"2691":1},"2":{"39":3,"40":2,"77":1,"134":2,"160":1,"173":2,"187":2,"304":1,"308":1,"548":1,"568":1,"723":1,"768":1,"1200":2,"1248":1,"1269":1,"1311":1,"1389":1,"1390":2,"1391":3,"1392":2,"1395":1,"1405":1,"1406":2,"1479":1,"1556":1,"2273":1,"2400":1,"2421":1,"2423":1,"2424":1,"2674":2,"2688":1,"2690":2,"2691":6,"2895":1}}],["protected",{"2":{"2807":1}}],["protection",{"2":{"312":1}}],["protect",{"2":{"16":1,"749":1,"2466":1}}],["project¹",{"2":{"2662":1}}],["projectcain",{"2":{"249":1,"333":1}}],["projects",{"0":{"1311":1,"2462":1},"1":{"1312":1},"2":{"215":1,"561":2,"665":1,"2388":1,"2412":1,"2452":1,"2454":1,"2658":1,"2659":1}}],["project",{"0":{"32":1,"605":1,"2414":1,"2449":1,"2662":1},"2":{"201":1,"222":2,"353":1,"393":1,"414":1,"519":1,"560":1,"603":1,"607":1,"615":1,"1311":1,"1343":1,"1963":1,"2291":1,"2382":2,"2411":1,"2412":2,"2414":2,"2434":1,"2462":3,"2464":1,"2659":1,"2662":5,"2663":6,"2714":4,"2817":1}}],["pr",{"0":{"416":1,"423":1,"2569":1,"2725":1},"1":{"2726":1,"2727":1,"2728":1,"2729":1,"2730":1,"2731":1,"2732":1},"2":{"1":1,"22":1,"26":1,"39":1,"47":1,"130":1,"134":1,"149":2,"175":1,"198":1,"199":1,"229":1,"236":1,"255":1,"256":1,"265":1,"273":1,"275":1,"308":1,"344":12,"403":11,"406":1,"407":1,"408":1,"409":1,"416":1,"422":1,"505":1,"506":2,"609":2,"612":1,"613":2,"1410":1,"1413":3,"1433":1,"1605":1,"2297":1,"2301":3,"2567":5,"2569":2,"2726":8,"2728":8,"2729":6,"2731":2,"2854":2}}],["prs",{"0":{"28":1,"2726":1,"2727":1,"2728":1,"2729":1},"2":{"1":1,"11":1,"134":1,"172":1,"199":1,"201":1,"224":1,"233":1,"251":2,"265":1,"268":2,"275":1,"279":1,"307":1,"399":1,"402":4,"403":4,"405":3,"406":1,"407":1,"412":9,"458":1,"609":1,"613":1,"2567":5,"2569":3,"2570":1,"2571":1,"2725":1,"2726":1,"2727":1,"2728":4,"2729":3,"2730":1,"2731":3}}],["tft",{"2":{"2439":1,"2756":1}}],["tsr",{"2":{"2301":1}}],["tsangan",{"2":{"222":2,"285":1,"308":1,"328":1}}],["tl",{"2":{"2301":3,"2321":2}}],["tps65",{"2":{"1969":1,"1970":2}}],["tps43",{"2":{"1969":1,"1970":2}}],["tpyo",{"2":{"1534":1}}],["tpm754",{"2":{"1367":2}}],["t6181",{"2":{"1368":1}}],["t1l",{"2":{"1295":1}}],["t1h",{"2":{"1285":1,"1286":1,"1295":1}}],["tmpu",{"2":{"2253":1}}],["tmpd",{"2":{"2253":1}}],["tm023023",{"2":{"1973":1}}],["tm035035",{"2":{"1973":1}}],["tm040040",{"2":{"1973":1}}],["tm1812",{"2":{"1287":1}}],["tmk",{"0":{"613":1,"1343":1},"2":{"1":1,"28":1,"39":1,"75":2,"113":4,"114":5,"133":3,"134":3,"191":1,"199":1,"210":2,"574":2,"1319":2,"1335":1,"1343":6,"1352":2,"1353":4,"1359":2,"1361":2,"1365":1,"1371":1,"1376":2,"2374":1,"2412":3,"2557":1,"2562":1,"2612":1,"2803":1,"2935":1}}],["t0l",{"2":{"355":1,"1295":1}}],["t0h",{"2":{"355":1,"1285":1,"1286":1,"1295":1}}],["td",{"2":{"324":1,"325":1,"1603":2,"2309":1,"2312":4,"2313":1,"2315":1,"2316":1,"2317":41,"2318":26,"2319":25}}],["tbkmini",{"2":{"311":8,"317":2}}],["tbk",{"2":{"277":1}}],["tty",{"2":{"2502":1}}],["ttyacmx",{"2":{"2502":1}}],["ttf",{"2":{"467":1,"2753":1,"2755":3,"2757":1}}],["tt",{"2":{"194":1,"564":1,"1422":3,"1690":1,"1789":1,"2000":1,"2304":2,"2535":1,"2551":1,"2909":2,"2922":1}}],["tube",{"2":{"2425":1}}],["tuning",{"2":{"2076":1,"2922":1,"2928":1}}],["tuned",{"2":{"1974":1,"2722":1}}],["tunes",{"2":{"1473":1}}],["tune",{"2":{"191":2,"1769":1,"1787":1,"2077":1,"2786":1,"2913":1,"2932":1}}],["tuple",{"2":{"526":2,"528":1}}],["tuples",{"0":{"526":1},"2":{"526":1}}],["tutorial",{"0":{"2579":1},"1":{"2580":1,"2581":1},"2":{"389":1,"766":1,"2589":1,"2598":2,"2644":1,"2646":1,"2655":1,"2906":2}}],["tuw",{"2":{"328":1}}],["tuv",{"2":{"266":1}}],["tuvw",{"2":{"249":1}}],["turquoise",{"2":{"2089":2,"2205":2}}],["turing",{"2":{"2008":2}}],["turkish",{"2":{"134":1,"2887":6}}],["turnaround",{"2":{"265":1,"2591":1}}],["turn",{"0":{"2315":1},"2":{"92":1,"124":1,"152":1,"210":1,"409":1,"647":1,"669":1,"674":1,"718":1,"1195":1,"1207":1,"1288":1,"1322":1,"1485":1,"1543":2,"1545":1,"1549":1,"1561":1,"1562":1,"1573":1,"1574":1,"1680":2,"1708":1,"1710":1,"1780":2,"1789":1,"1791":1,"1792":1,"1843":2,"1848":2,"1852":1,"1859":1,"1860":1,"1861":1,"1862":1,"1925":2,"1947":1,"1954":2,"2013":1,"2084":2,"2085":3,"2091":1,"2101":1,"2102":1,"2103":1,"2104":1,"2191":2,"2200":4,"2210":1,"2249":1,"2286":1,"2290":2,"2293":1,"2304":5,"2315":2,"2418":1,"2527":2,"2535":3,"2537":2,"2539":2,"2545":2,"2551":5,"2564":1,"2704":1,"2728":1,"2784":1,"2856":1,"2857":1,"2867":1,"2871":1,"2877":1,"2878":1,"2936":1}}],["turned",{"2":{"77":1,"613":2,"1491":1,"1546":1,"1642":1,"1670":1,"1839":1,"1961":1,"2191":1,"2330":1,"2651":1,"2722":1}}],["turns",{"2":{"21":1,"24":1,"152":1,"561":1,"1417":1,"1428":10,"1485":2,"1490":2,"1493":2,"1495":6,"1521":2,"1530":2,"1536":2,"1593":1,"1594":4,"1595":2,"1597":1,"1598":1,"1599":2,"1601":1,"1606":2,"1793":2,"1838":2,"1852":1,"1948":1,"1949":1,"1954":3,"2091":1,"2288":1,"2290":4,"2306":2,"2309":1,"2417":2,"2524":6,"2525":2,"2526":2,"2535":2,"2547":2,"2651":2,"2755":1,"2782":2,"2861":2}}],["turning",{"2":{"15":1,"46":1,"134":1,"195":1,"328":1,"651":1,"1485":1,"1947":1,"2012":1,"2286":1,"2418":1,"2811":1,"2936":1}}],["tzarc",{"2":{"189":1,"191":1,"288":1}}],["txbolt",{"2":{"2295":1,"2881":1}}],["txen1",{"2":{"2043":1}}],["txled",{"2":{"1392":1,"1396":1}}],["tx",{"0":{"782":2,"2295":1},"1":{"783":2,"784":2},"2":{"277":1,"783":3,"1197":4,"1198":3,"1200":8,"1201":6,"1205":1,"1211":11,"1212":9,"1213":8,"1268":2,"1269":4,"2294":1,"2295":3,"2296":1,"2298":1,"2301":4,"2691":2,"2702":3,"2704":2}}],["txt",{"2":{"175":1,"463":2,"1527":1,"1529":1,"2634":4}}],["txuu",{"2":{"143":2}}],["typ65+",{"2":{"222":1}}],["typists",{"2":{"1410":1,"2920":1,"2921":1}}],["typically",{"2":{"672":1,"1288":1,"1297":1,"1343":1,"1346":1,"1425":1,"1498":1,"1742":1,"1790":1,"1951":1,"1986":1,"2317":1,"2418":1,"2455":1,"2456":1,"2562":1,"2735":1,"2805":1,"2807":1,"2845":1,"2927":1,"2937":1,"2938":1}}],["typical",{"2":{"194":1,"489":1,"1422":1,"1558":1,"1593":1,"1986":1,"2562":1,"2566":1}}],["typing",{"0":{"2071":1,"2086":1},"2":{"152":1,"195":1,"222":1,"246":1,"297":3,"308":1,"645":1,"1425":1,"1493":1,"1522":1,"1529":2,"1535":1,"1597":2,"1801":1,"1802":2,"1999":1,"2065":1,"2071":2,"2079":2,"2085":3,"2086":6,"2209":1,"2231":1,"2235":1,"2291":1,"2302":1,"2317":5,"2331":1,"2379":5,"2434":1,"2673":2,"2831":1,"2894":1,"2913":3,"2923":2,"2931":2,"2932":1,"2946":1}}],["typographic",{"2":{"199":1}}],["typos",{"2":{"134":2,"249":1,"308":1,"1524":1,"1525":3,"1527":1,"1528":2,"1532":1}}],["typo",{"2":{"114":4,"134":4,"149":3,"175":1,"191":1,"249":1,"1525":3,"1527":3,"1528":4,"1529":2,"1532":2,"1533":4,"1534":4,"1535":4,"1538":4,"1539":1}}],["typeid",{"2":{"2765":2,"2767":1,"2768":1,"2769":1,"2770":2,"2771":2,"2772":2,"2774":1,"2775":1,"2776":1,"2777":1,"2778":1,"2779":1}}],["typed",{"2":{"1443":2,"1523":1,"1524":1,"1625":1,"1784":1,"1785":1,"1786":9,"2070":2,"2071":1,"2317":1,"2330":1,"2912":1,"2913":1}}],["typedef",{"2":{"236":1,"1420":1,"1953":1,"1954":1,"2277":1,"2290":1,"2317":1,"2318":1,"2319":2,"2768":1}}],["typeof",{"2":{"1419":4}}],["typewriter",{"2":{"236":1}}],["typenames",{"2":{"191":1}}],["typestring",{"2":{"2854":1}}],["types",{"0":{"671":1,"1410":1},"2":{"114":2,"119":1,"149":1,"175":1,"196":2,"236":1,"555":2,"609":1,"671":1,"1627":1,"1678":1,"1798":2,"1952":1,"2065":1,"2071":1,"2225":1,"2226":2,"2388":2,"2543":1,"2755":2,"2841":1,"2912":1}}],["type",{"0":{"539":1,"1945":1},"2":{"39":2,"111":1,"112":1,"114":2,"132":1,"143":2,"149":1,"152":2,"160":1,"199":1,"210":1,"222":1,"236":4,"249":3,"273":1,"277":1,"333":2,"380":1,"386":1,"432":1,"504":1,"539":1,"555":1,"574":1,"600":1,"609":1,"639":1,"669":1,"687":2,"688":1,"701":1,"1368":2,"1409":1,"1410":1,"1413":2,"1414":1,"1440":1,"1442":2,"1444":1,"1446":2,"1472":1,"1490":1,"1493":1,"1522":2,"1529":2,"1538":1,"1539":2,"1593":2,"1602":1,"1615":1,"1642":1,"1762":1,"1766":2,"1802":2,"1846":3,"1952":4,"1953":1,"1966":1,"1978":1,"1981":1,"1983":1,"1984":1,"2008":1,"2009":1,"2014":1,"2082":3,"2209":1,"2228":1,"2229":1,"2230":1,"2231":1,"2232":1,"2233":1,"2234":1,"2235":1,"2236":1,"2237":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":1,"2245":1,"2246":1,"2273":1,"2289":3,"2302":2,"2303":1,"2317":4,"2318":2,"2319":1,"2327":1,"2330":1,"2374":1,"2417":1,"2418":1,"2449":1,"2455":6,"2468":1,"2502":1,"2612":1,"2650":3,"2674":1,"2675":1,"2753":1,"2756":2,"2765":1,"2767":2,"2768":2,"2769":2,"2772":1,"2773":4,"2774":2,"2775":2,"2776":2,"2777":2,"2778":2,"2779":2,"2841":1,"2871":1,"2878":1,"2946":1}}],["tweezers",{"2":{"2421":1,"2428":1}}],["tweetydabird",{"2":{"311":8,"317":1}}],["tweak",{"2":{"119":1,"285":1,"2086":1,"2185":1,"2578":1}}],["tweaks",{"0":{"2893":1},"2":{"94":1,"149":1,"277":1,"294":1,"2676":1}}],["tw40",{"2":{"241":2}}],["tw",{"2":{"93":1,"2181":1,"2544":1}}],["twisting",{"2":{"2427":1}}],["twinkling",{"2":{"2185":1}}],["twinkle",{"2":{"74":1,"93":1,"114":1,"231":1,"2181":2,"2183":2,"2184":2,"2185":3,"2187":2,"2544":2,"2894":1}}],["twi",{"2":{"249":1}}],["twig50",{"2":{"175":1}}],["twice",{"2":{"92":1,"1498":1,"2252":1,"2308":1,"2309":1,"2312":1,"2392":1,"2499":1,"2861":1}}],["two",{"0":{"359":1,"360":1,"1823":1},"1":{"1824":1,"1825":1},"2":{"21":1,"24":1,"25":1,"39":1,"51":1,"114":1,"149":1,"196":2,"210":1,"214":1,"255":1,"277":1,"289":1,"344":1,"359":1,"360":1,"396":1,"473":1,"491":1,"538":1,"555":1,"609":1,"613":1,"631":1,"648":1,"665":1,"673":2,"685":1,"693":1,"715":2,"722":1,"1192":3,"1200":2,"1252":1,"1296":1,"1351":1,"1378":1,"1381":2,"1395":1,"1398":2,"1410":1,"1422":1,"1433":1,"1446":1,"1464":1,"1474":1,"1478":1,"1482":1,"1486":1,"1503":1,"1517":1,"1538":3,"1539":1,"1609":1,"1614":1,"1617":1,"1627":1,"1632":1,"1634":1,"1656":1,"1661":1,"1667":1,"1670":3,"1697":1,"1740":1,"1742":1,"1743":1,"1798":2,"1804":1,"1919":1,"1923":1,"1944":1,"1948":1,"1953":2,"1969":1,"1971":3,"2015":1,"2038":1,"2042":1,"2058":1,"2079":1,"2085":1,"2186":1,"2189":1,"2208":1,"2210":1,"2226":1,"2242":1,"2261":3,"2263":2,"2266":1,"2267":1,"2287":1,"2295":2,"2300":1,"2301":1,"2310":1,"2317":2,"2427":3,"2460":1,"2558":1,"2569":1,"2573":1,"2614":1,"2634":1,"2638":1,"2674":1,"2691":1,"2701":1,"2704":1,"2731":1,"2792":1,"2920":2,"2926":4,"2942":2,"2950":1}}],["tkd",{"2":{"2567":1}}],["tkm",{"2":{"114":1,"222":1}}],["tkl87",{"2":{"270":1,"277":1}}],["tklfrlnrlmlao",{"2":{"222":1}}],["tkl",{"2":{"51":2,"110":1,"197":6,"222":5,"226":2,"236":1,"253":2,"281":2,"2301":1,"2594":1,"2728":1}}],["tkc",{"2":{"33":4,"222":3}}],["tkc1800",{"0":{"23":1,"24":1},"1":{"24":1},"2":{"23":2,"24":1,"33":2,"2797":1}}],["tgr",{"2":{"122":2,"134":1}}],["tg",{"2":{"28":1,"1422":2,"2000":3,"2013":2,"2309":1,"2319":3,"2535":1}}],["tainting",{"2":{"2747":1}}],["tacworks",{"2":{"2567":1}}],["tate",{"2":{"2079":1}}],["talking",{"2":{"613":1,"2261":1}}],["talk",{"2":{"607":1,"613":2,"614":1,"1252":1,"2387":1,"2508":1}}],["tandem",{"2":{"419":1}}],["tahoe",{"2":{"339":1}}],["tag+=",{"2":{"1332":1}}],["tagging",{"2":{"420":1}}],["tagged",{"2":{"402":1}}],["tag",{"2":{"222":1,"228":1,"354":1,"409":2,"411":1,"420":2,"421":1,"612":1,"2674":1,"2675":1}}],["tags",{"0":{"110":1},"2":{"110":5,"420":2,"421":1,"422":2,"2639":1,"2795":1,"2852":2}}],["tabbing",{"2":{"1380":1}}],["tabs",{"0":{"356":1},"1":{"357":1,"358":1,"359":1,"360":1,"361":1},"2":{"356":1,"512":1,"514":1,"2432":1,"2727":1}}],["tabsification",{"2":{"175":1}}],["tab",{"0":{"357":1,"360":1,"361":1,"507":1,"1380":1,"1505":1},"1":{"358":1,"359":1,"508":1,"509":1,"510":1,"511":1},"2":{"210":1,"356":1,"379":1,"393":3,"397":1,"507":2,"508":1,"509":1,"510":4,"511":2,"579":1,"580":1,"589":2,"688":1,"1347":3,"1370":1,"1380":4,"1462":14,"1504":1,"1505":1,"1510":2,"1516":1,"1604":1,"1605":3,"1618":4,"1622":2,"2069":9,"2222":2,"2298":2,"2317":2,"2381":1,"2512":2,"2522":2,"2554":1,"2557":1,"2563":1,"2573":1,"2609":1,"2651":1,"2663":2,"2795":1}}],["tables",{"0":{"351":1},"2":{"2223":1,"2696":1,"2840":1,"2885":1,"2886":1}}],["tablet",{"2":{"100":1,"1421":1}}],["table",{"0":{"462":1,"2768":1,"2769":1},"2":{"55":1,"160":1,"175":1,"199":1,"247":1,"285":1,"462":3,"675":1,"677":2,"681":1,"688":1,"695":1,"719":3,"723":1,"1198":1,"1201":1,"1480":1,"1553":1,"1554":1,"1846":1,"1999":1,"2082":1,"2183":1,"2303":1,"2329":2,"2330":7,"2372":1,"2418":2,"2427":1,"2472":1,"2692":1,"2705":1,"2757":2,"2767":6,"2768":4,"2769":3}}],["taking",{"2":{"346":1,"414":1,"603":1,"2079":1,"2189":1,"2468":1,"2634":1,"2663":1,"2920":1}}],["takashicompany",{"2":{"249":2,"449":2}}],["takashiski",{"2":{"143":4,"149":2}}],["takai",{"2":{"149":1}}],["taken",{"2":{"414":1,"489":1,"1424":1,"1642":1,"2309":1,"2479":1}}],["take",{"0":{"1331":1},"2":{"134":1,"175":2,"194":1,"210":1,"236":1,"288":1,"302":1,"393":1,"397":1,"420":1,"470":1,"474":1,"572":1,"604":1,"613":1,"665":1,"766":1,"774":1,"777":1,"780":1,"783":2,"786":1,"789":1,"792":1,"795":1,"1260":1,"1263":1,"1278":1,"1280":1,"1351":1,"1448":1,"1783":1,"1786":1,"1787":1,"1954":1,"2189":1,"2210":1,"2269":1,"2319":1,"2419":1,"2428":1,"2461":1,"2579":1,"2707":1,"2731":1,"2758":1,"2889":1,"2901":1,"2939":1,"2945":1,"2950":1}}],["takes",{"2":{"39":1,"474":1,"748":1,"1356":1,"1372":1,"1409":1,"1619":1,"1681":1,"1771":1,"1772":1,"1773":1,"1786":1,"1957":1,"2297":1,"2309":1,"2317":1,"2387":1,"2563":1,"2633":1,"2824":1,"2893":1,"2925":1,"2927":1}}],["taurus",{"2":{"114":1}}],["ta65",{"2":{"57":2}}],["taro",{"2":{"143":2}}],["targeted",{"2":{"2279":1,"2711":1}}],["target2initiator",{"2":{"2277":4}}],["targets",{"0":{"2391":1,"2393":1,"2398":1,"2400":1,"2405":1,"2407":1,"2409":1,"2595":1,"2596":1},"2":{"188":1,"191":1,"199":1,"201":1,"215":1,"236":1,"279":1,"293":3,"294":1,"305":3,"314":3,"433":11,"452":2,"453":2,"454":2,"455":1,"605":1,"1407":1,"2273":1,"2279":1,"2417":1,"2595":1,"2596":2,"2597":1,"2674":3,"2729":1}}],["targeting",{"2":{"149":1,"412":3,"1196":1,"1199":1,"2712":1,"2727":1,"2728":1}}],["target",{"0":{"2000":1,"2008":1,"2012":1,"2014":1},"2":{"39":2,"94":1,"114":3,"149":1,"160":1,"198":1,"236":1,"240":1,"266":23,"294":1,"317":1,"354":1,"423":4,"430":1,"433":2,"455":1,"514":1,"721":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"798":1,"1198":1,"1201":1,"1300":1,"1388":1,"1391":1,"1399":1,"1406":1,"1407":1,"1427":1,"1472":1,"1952":4,"1962":1,"1999":6,"2000":12,"2001":1,"2003":1,"2006":1,"2008":8,"2009":1,"2011":4,"2012":6,"2013":1,"2014":3,"2015":1,"2384":5,"2389":1,"2390":2,"2392":1,"2394":1,"2395":1,"2396":1,"2397":3,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2417":5,"2475":1,"2483":2,"2494":1,"2502":1,"2508":1,"2616":2,"2657":1,"2663":2,"2674":3,"2726":1,"2729":1,"2756":3}}],["tartan",{"2":{"27":2}}],["tasks",{"2":{"76":1,"149":1,"425":1,"574":1,"651":1,"1550":1,"1602":1,"2935":1}}],["task",{"0":{"125":1,"647":1,"2015":1,"2764":1},"2":{"21":2,"24":1,"39":1,"64":1,"84":1,"93":1,"113":1,"114":1,"125":4,"134":5,"149":2,"222":1,"266":2,"277":1,"317":1,"628":1,"640":1,"646":2,"647":2,"656":1,"1392":1,"1393":1,"1420":1,"1551":1,"1638":6,"1852":1,"1945":2,"1946":1,"1947":1,"1948":1,"1954":5,"1955":4,"1974":1,"1983":2,"1985":2,"1988":2,"1989":3,"1990":2,"1993":2,"1994":1,"1996":1,"1997":1,"2014":1,"2015":8,"2091":1,"2277":2,"2284":2,"2286":1,"2287":1,"2290":4,"2310":1,"2580":1,"2632":1,"2754":4,"2757":7,"2764":5,"2871":1,"2878":1,"2936":3}}],["tapdance",{"2":{"2318":11}}],["tape",{"2":{"2298":2,"2425":2,"2435":2}}],["tapped1",{"2":{"2572":1}}],["tapped",{"2":{"289":1,"297":1,"320":1,"564":1,"1381":1,"1422":1,"1423":1,"1462":1,"1533":2,"1594":1,"1612":2,"1690":3,"2000":1,"2257":7,"2259":7,"2260":3,"2304":2,"2308":1,"2309":4,"2317":2,"2318":3,"2517":1,"2522":1,"2535":2,"2542":29,"2550":7,"2551":2,"2572":29,"2573":1,"2650":1,"2909":1,"2914":1,"2920":3,"2923":1,"2926":2,"2928":1,"2931":1}}],["tapping",{"0":{"119":1,"195":1,"1612":1,"2543":1,"2910":1,"2912":1,"2929":1},"1":{"2911":1,"2912":1,"2930":1},"2":{"12":2,"39":1,"63":1,"112":11,"119":11,"134":2,"149":1,"160":1,"172":1,"175":1,"191":1,"194":1,"195":6,"199":3,"210":3,"214":1,"289":1,"294":1,"297":1,"320":1,"339":1,"562":2,"564":12,"574":2,"1422":2,"1466":1,"1498":1,"1499":2,"1503":1,"1518":6,"1519":1,"1522":1,"1533":2,"1538":1,"1594":6,"1610":1,"1690":1,"1788":2,"1795":1,"1976":3,"1977":1,"2000":2,"2003":1,"2065":2,"2259":1,"2304":2,"2309":9,"2310":4,"2317":4,"2318":1,"2319":7,"2395":1,"2543":9,"2650":1,"2841":1,"2854":1,"2890":2,"2909":1,"2910":10,"2911":9,"2912":51,"2913":1,"2914":6,"2915":2,"2919":6,"2920":6,"2921":4,"2922":8,"2923":2,"2926":4,"2929":11,"2930":2,"2931":4,"2941":1}}],["taps",{"0":{"320":1,"2314":1,"2574":1,"2916":1},"1":{"2575":1,"2576":1,"2577":1},"2":{"98":1,"175":1,"191":1,"194":7,"222":1,"289":1,"294":1,"297":1,"308":1,"320":1,"328":1,"564":2,"720":1,"1422":2,"1455":1,"1518":2,"1519":1,"1594":2,"1788":1,"1801":1,"1803":2,"1974":2,"2226":1,"2304":1,"2309":1,"2310":1,"2316":1,"2317":2,"2318":1,"2554":2,"2728":1,"2911":2,"2912":2,"2923":1,"2926":1,"2929":1,"2931":2,"2949":1}}],["tap",{"0":{"12":1,"48":1,"194":1,"195":1,"217":1,"297":1,"323":1,"1384":1,"1386":1,"1448":1,"1455":1,"1456":1,"1457":2,"1519":1,"1795":1,"2246":1,"2307":1,"2309":1,"2312":2,"2316":1,"2317":1,"2318":3,"2319":1,"2542":1,"2572":1,"2575":1,"2577":1,"2700":1,"2790":1,"2842":1,"2843":1,"2909":1,"2914":1,"2917":1,"2922":1,"2923":1,"2924":1,"2925":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1,"2573":1,"2574":1,"2575":1,"2576":1,"2577":1,"2578":1,"2910":1,"2911":1,"2912":1,"2913":1,"2914":1,"2915":2,"2916":2,"2917":2,"2918":2,"2919":2,"2920":2,"2921":2,"2922":1,"2923":1,"2924":2,"2925":2,"2926":1,"2927":1,"2928":1,"2929":1,"2930":1,"2931":1,"2932":1,"2933":1},"2":{"12":3,"28":1,"39":3,"74":1,"90":8,"112":5,"120":3,"134":1,"149":4,"152":2,"175":4,"191":7,"194":14,"195":10,"196":1,"199":6,"210":3,"214":3,"217":3,"222":3,"249":1,"266":1,"277":1,"289":2,"294":1,"297":8,"308":7,"317":1,"320":4,"323":7,"324":10,"325":13,"328":2,"383":1,"562":1,"564":18,"592":2,"686":1,"1384":1,"1386":1,"1422":6,"1423":1,"1427":1,"1441":3,"1444":4,"1448":7,"1450":1,"1455":3,"1456":1,"1462":2,"1472":1,"1496":2,"1498":2,"1499":2,"1510":1,"1517":4,"1518":6,"1519":1,"1532":1,"1533":11,"1535":1,"1538":1,"1594":4,"1597":1,"1603":2,"1605":3,"1610":1,"1612":17,"1618":3,"1667":1,"1668":4,"1690":5,"1762":1,"1788":1,"1789":3,"1791":2,"1795":6,"1798":1,"1801":1,"1803":1,"1937":3,"1971":8,"1976":4,"1977":5,"1999":4,"2000":2,"2065":1,"2181":1,"2222":1,"2226":1,"2255":2,"2259":4,"2260":2,"2297":2,"2304":4,"2308":1,"2309":35,"2310":21,"2312":8,"2313":1,"2314":5,"2315":12,"2316":59,"2317":53,"2318":29,"2319":49,"2327":1,"2344":4,"2345":3,"2346":3,"2381":8,"2396":1,"2399":2,"2401":2,"2402":1,"2403":1,"2404":2,"2406":4,"2408":4,"2410":5,"2542":1,"2551":1,"2572":3,"2573":3,"2574":2,"2575":5,"2576":7,"2577":5,"2578":2,"2650":2,"2651":1,"2652":2,"2700":7,"2702":1,"2728":1,"2790":1,"2825":1,"2842":1,"2843":1,"2854":4,"2861":1,"2870":3,"2874":2,"2890":2,"2907":2,"2909":9,"2910":1,"2911":13,"2912":8,"2913":6,"2914":4,"2915":2,"2919":1,"2920":11,"2921":4,"2922":14,"2923":15,"2924":8,"2925":20,"2926":3,"2928":6,"2929":2,"2931":9,"2932":1,"2941":2,"2946":4,"2949":1}}],["ti",{"2":{"2802":1}}],["tie",{"2":{"2794":1}}],["tied",{"2":{"419":1,"2475":1,"2796":1}}],["tin",{"2":{"2427":1}}],["tiny",{"0":{"2683":1}}],["tinyuf2",{"0":{"2406":1},"1":{"2407":1},"2":{"93":1,"191":1,"199":1,"277":1,"2406":5,"2683":2}}],["tinyprintf",{"0":{"14":1}}],["tion",{"2":{"2079":2}}],["tilde",{"2":{"1777":2,"2546":1,"2555":1,"2886":1}}],["tild",{"2":{"1423":1,"2546":1,"2555":1,"2573":1}}],["tips",{"0":{"680":1,"1437":1},"1":{"1438":1,"1439":1},"2":{"1935":1,"1936":1,"1939":1,"2427":1,"2429":1}}],["tip",{"0":{"1649":1,"1650":1},"2":{"288":1,"352":2,"383":1,"488":1,"504":1,"555":1,"596":1,"598":1,"599":1,"651":1,"656":1,"680":4,"687":1,"717":1,"749":1,"767":1,"768":1,"1192":1,"1209":1,"1303":1,"1388":1,"1390":1,"1412":1,"1413":2,"1415":1,"1428":1,"1446":2,"1451":1,"1472":1,"1503":1,"1528":1,"1532":1,"1533":1,"1534":1,"1535":1,"1590":1,"1633":1,"1639":2,"1641":1,"1645":2,"1649":1,"1650":1,"1656":1,"1661":1,"1667":2,"1668":1,"1740":1,"1835":1,"1849":1,"1850":1,"1940":1,"1946":1,"1957":1,"1962":1,"1970":1,"1998":1,"2016":1,"2075":1,"2085":2,"2088":1,"2095":1,"2096":1,"2179":1,"2181":1,"2188":1,"2212":1,"2219":1,"2266":1,"2273":2,"2274":1,"2278":2,"2309":1,"2318":1,"2387":1,"2450":1,"2453":1,"2454":1,"2455":1,"2499":1,"2501":1,"2503":1,"2517":1,"2583":1,"2586":1,"2590":1,"2600":1,"2605":1,"2608":1,"2610":1,"2613":1,"2619":1,"2626":1,"2628":2,"2629":1,"2633":1,"2635":1,"2639":1,"2640":2,"2669":1,"2702":1,"2717":1,"2721":1,"2756":1,"2757":5,"2758":1,"2786":1,"2790":1,"2794":1,"2795":1,"2902":1,"2910":1,"2920":1,"2922":1}}],["tiger80",{"2":{"222":1}}],["tiger910",{"2":{"143":2}}],["tighter",{"2":{"2085":2,"2590":1}}],["tight",{"2":{"175":1,"1290":1}}],["ticking",{"2":{"2390":1,"2397":1}}],["tick3",{"2":{"1686":1}}],["tick2",{"2":{"1686":1}}],["tick1",{"2":{"1686":1}}],["tick",{"2":{"160":2,"285":1,"339":1,"647":1,"687":1,"1686":6,"1986":2}}],["ticks",{"2":{"15":1,"64":1,"191":1,"1556":1,"2762":1}}],["title",{"2":{"149":1,"341":1,"356":1,"607":2,"675":1}}],["tim4",{"2":{"1556":3}}],["tim2",{"2":{"1303":2}}],["timx",{"2":{"721":2,"1303":5,"1483":1}}],["tim8",{"2":{"717":3,"723":1}}],["tim7",{"2":{"717":3}}],["tim6",{"2":{"717":3,"718":3}}],["tim15",{"2":{"1557":2}}],["tim1",{"2":{"716":1,"721":6,"722":1,"1483":1}}],["timingr",{"2":{"770":5}}],["timings",{"2":{"175":1,"1196":1,"1199":1,"1612":1}}],["timing",{"0":{"1286":1,"1612":1},"2":{"44":1,"74":1,"112":1,"134":2,"149":1,"222":1,"564":4,"656":1,"755":1,"1285":1,"1286":1,"1290":1,"1295":2,"1670":1,"1787":1,"1801":3,"2686":1,"2726":2,"2754":1,"2757":1,"2870":1,"2910":1,"2922":2}}],["timeframe",{"2":{"2310":1}}],["timely",{"2":{"2277":1,"2568":1}}],["timeline",{"2":{"127":1,"2729":1}}],["timed",{"0":{"1818":1},"2":{"574":1,"647":1,"2418":1}}],["time80",{"2":{"222":1}}],["timer1",{"2":{"715":1,"2418":1}}],["timer3",{"2":{"715":1}}],["timers",{"0":{"2791":1},"2":{"43":1,"44":1,"655":1,"717":1,"721":1,"1303":2,"1554":3,"1557":1,"2687":1,"2791":1}}],["timer",{"0":{"44":1,"1549":1,"1554":1,"1557":1,"1614":1,"1615":1,"1616":1,"1819":1},"1":{"1615":1,"1616":1},"2":{"39":1,"44":1,"74":1,"114":4,"134":1,"149":2,"175":1,"199":3,"210":1,"285":1,"294":3,"308":1,"328":2,"564":5,"647":7,"717":5,"718":2,"721":3,"722":2,"1303":1,"1410":4,"1413":4,"1420":3,"1462":6,"1474":2,"1481":1,"1483":2,"1498":1,"1546":1,"1547":1,"1549":2,"1553":22,"1554":8,"1557":2,"1613":1,"1614":2,"1615":2,"1616":2,"1812":1,"1815":1,"1819":1,"1947":1,"1999":1,"2006":1,"2009":1,"2277":2,"2286":1,"2310":1,"2726":3,"2757":12,"2791":5,"2857":2}}],["time",{"0":{"1412":1,"2315":1},"2":{"15":1,"18":1,"39":2,"40":1,"43":2,"73":1,"112":1,"123":1,"124":1,"134":1,"140":1,"152":1,"153":1,"166":1,"175":1,"188":1,"189":1,"191":3,"210":1,"228":1,"243":1,"265":2,"283":1,"331":1,"346":1,"383":1,"389":1,"392":1,"393":2,"414":1,"420":1,"473":1,"489":1,"493":1,"511":2,"513":1,"522":2,"523":2,"524":3,"542":1,"544":1,"566":1,"572":2,"579":1,"580":1,"603":1,"604":1,"630":1,"632":1,"646":1,"647":5,"655":1,"656":6,"657":1,"658":1,"665":1,"749":2,"766":1,"768":1,"772":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"798":1,"860":6,"1095":6,"1129":6,"1163":6,"1192":1,"1208":1,"1292":1,"1329":8,"1378":1,"1389":1,"1409":3,"1410":7,"1412":1,"1413":2,"1428":1,"1429":1,"1455":1,"1466":1,"1472":2,"1477":1,"1484":3,"1485":1,"1486":1,"1493":1,"1498":5,"1501":1,"1503":1,"1522":2,"1525":1,"1533":1,"1546":1,"1579":1,"1594":2,"1595":1,"1598":1,"1608":1,"1610":1,"1612":1,"1662":1,"1667":1,"1670":1,"1672":1,"1680":2,"1681":8,"1762":1,"1786":1,"1787":1,"1789":1,"1792":1,"1800":1,"1801":1,"1802":4,"1853":1,"1935":8,"1936":1,"1937":8,"1939":4,"1940":1,"1947":1,"1949":1,"1953":4,"1954":1,"1957":2,"1959":1,"1960":1,"1961":1,"1965":1,"1971":9,"1976":2,"1983":1,"1986":2,"1999":1,"2003":4,"2011":1,"2014":2,"2046":1,"2057":1,"2085":1,"2087":1,"2092":1,"2181":1,"2191":1,"2231":1,"2235":1,"2258":1,"2273":1,"2275":2,"2286":1,"2288":1,"2291":2,"2294":2,"2297":1,"2309":6,"2310":2,"2317":1,"2319":2,"2327":1,"2378":1,"2379":3,"2414":1,"2428":1,"2430":1,"2466":2,"2469":1,"2475":1,"2502":1,"2566":2,"2590":1,"2591":2,"2595":1,"2598":1,"2612":1,"2616":1,"2633":1,"2634":1,"2637":1,"2640":1,"2650":2,"2663":1,"2685":1,"2726":2,"2728":2,"2731":4,"2734":1,"2753":1,"2754":5,"2757":3,"2764":1,"2776":1,"2784":1,"2791":1,"2851":1,"2854":1,"2861":1,"2862":1,"2870":1,"2872":2,"2873":1,"2874":1,"2880":2,"2882":1,"2889":1,"2895":1,"2903":1,"2910":1,"2915":1,"2916":2,"2917":3,"2918":2,"2925":2,"2931":1,"2935":1,"2937":1}}],["timeout=1000",{"2":{"2059":1}}],["timeouts",{"2":{"15":1,"199":1,"2276":1,"2925":1}}],["timeout",{"0":{"15":1,"773":1,"776":1,"779":1,"782":1,"785":1,"788":1,"791":1,"794":1,"797":1,"1208":1,"1503":1,"1598":1,"1792":1,"1800":1,"1801":1,"1802":1},"1":{"774":1,"775":1,"777":1,"778":1,"780":1,"781":1,"783":1,"784":1,"786":1,"787":1,"789":1,"790":1,"792":1,"793":1,"795":1,"796":1,"798":1,"799":1},"2":{"15":7,"39":1,"74":1,"93":1,"112":2,"134":2,"152":1,"158":1,"160":1,"167":4,"175":3,"191":4,"222":1,"297":1,"328":1,"564":5,"570":7,"647":17,"768":1,"774":1,"775":2,"776":1,"777":1,"778":2,"780":1,"781":2,"783":1,"784":2,"786":1,"787":2,"789":1,"790":2,"792":1,"793":2,"795":1,"796":2,"798":1,"799":2,"802":2,"828":2,"857":2,"889":2,"921":2,"956":2,"990":2,"1024":2,"1058":2,"1092":2,"1126":2,"1160":2,"1208":2,"1216":2,"1256":2,"1258":2,"1261":2,"1264":2,"1291":2,"1498":3,"1501":1,"1502":1,"1503":5,"1512":1,"1518":1,"1520":1,"1521":3,"1522":5,"1523":1,"1598":4,"1608":2,"1612":1,"1792":2,"1800":1,"1801":4,"1802":3,"1815":1,"1818":2,"1852":1,"1949":5,"1954":1,"1970":2,"1974":2,"1980":2,"2008":6,"2091":1,"2214":2,"2217":4,"2275":1,"2278":6,"2288":1,"2290":1,"2317":1,"2525":3,"2650":1,"2700":2,"2754":2,"2861":1,"2870":2,"2871":3,"2874":1,"2878":3,"2879":4,"2880":2,"2883":2,"2923":3,"2925":3,"2930":1}}],["timestamp",{"2":{"1410":6}}],["timestamps",{"2":{"199":1,"222":1,"434":1,"2276":1,"2880":1}}],["times",{"2":{"0":2,"9":2,"29":2,"42":2,"52":2,"210":1,"234":1,"433":2,"455":1,"469":2,"564":3,"643":1,"649":1,"688":1,"748":1,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1409":1,"1410":1,"1518":1,"1523":2,"1538":2,"1681":1,"1690":1,"1934":2,"2076":1,"2078":1,"2191":3,"2252":5,"2308":2,"2317":1,"2417":1,"2535":1,"2650":2,"2652":1,"2775":1,"2792":1,"2841":1,"2843":1,"2874":1,"2912":2,"2937":3}}],["tidy",{"2":{"40":1,"114":3,"131":1,"133":1,"134":3,"149":2,"199":3,"210":1,"222":3,"249":1,"266":3,"308":1,"328":1,"2425":1,"2431":1}}],["tedious",{"2":{"2386":1,"2583":1}}],["telephony",{"2":{"2016":1}}],["telling",{"2":{"2567":1}}],["tells",{"2":{"1444":1,"1470":1,"1846":1,"2082":1,"2260":1,"2470":1,"2634":2,"2640":1,"2794":2,"2940":1}}],["tell",{"2":{"105":2,"233":1,"263":1,"492":1,"588":1,"599":1,"612":1,"1962":1,"2272":2,"2418":1,"2567":1,"2573":1,"2635":1,"2950":1}}],["tekezo",{"2":{"1359":2}}],["tee",{"2":{"1316":1}}],["teensys",{"2":{"685":1,"2394":1,"2417":1}}],["teensy++",{"2":{"546":1,"2280":1,"2423":1,"2424":1}}],["teensy2",{"2":{"218":2}}],["teensypp",{"2":{"218":2}}],["teensy",{"0":{"81":1,"108":1,"2280":1,"2431":1,"2488":1,"2844":1},"1":{"2489":1},"2":{"81":1,"93":1,"108":1,"114":4,"131":1,"134":1,"149":2,"191":1,"199":1,"218":2,"354":4,"546":1,"551":4,"570":1,"684":1,"1311":1,"2280":3,"2394":5,"2397":1,"2417":2,"2421":1,"2423":1,"2424":1,"2430":1,"2431":1,"2434":2,"2488":2,"2489":3,"2844":1}}],["ten",{"2":{"2079":1}}],["tend",{"2":{"403":1,"1538":1,"2756":1}}],["tentative",{"0":{"88":1},"2":{"191":1}}],["tegic",{"2":{"253":2}}],["teach",{"2":{"2619":1,"2632":1}}],["teaching",{"2":{"191":1}}],["teal",{"2":{"641":1,"2089":2,"2205":2}}],["teardown",{"2":{"339":1}}],["team",{"0":{"265":1,"275":1},"2":{"116":1,"265":3,"268":1,"273":1,"275":2,"276":1,"284":1,"312":5,"418":1,"1343":1,"2566":4,"2567":3,"2569":1,"2570":2,"2902":3,"2903":1}}],["team0110",{"2":{"102":1}}],["technology",{"2":{"1409":1}}],["technologies",{"2":{"1409":1}}],["technique",{"2":{"1409":1,"1541":1,"1788":1,"2425":1,"2574":1,"2913":1,"2929":1}}],["techniques",{"2":{"538":1,"2425":1}}],["technically",{"2":{"1356":1,"1409":1,"2279":1}}],["technical",{"0":{"588":1,"1953":1},"2":{"70":1,"201":1,"212":1,"224":1,"238":1,"604":1,"766":1,"1343":1,"1476":1,"2749":1,"2750":1}}],["tech",{"2":{"171":1,"175":1,"198":1,"199":1,"222":23,"341":1,"2567":1,"2728":3}}],["tempo",{"0":{"1487":1},"2":{"1487":10,"1493":1,"2086":1,"2252":1,"2253":4,"2254":10}}],["temporarily",{"2":{"273":1,"396":1,"1366":1,"1381":1,"1520":1,"1521":1,"1606":1,"2418":1,"2483":1,"2912":1,"2923":1}}],["temporary",{"2":{"114":1,"249":1,"279":1,"455":1,"1362":1,"1422":1,"1661":1}}],["temperature",{"2":{"696":2,"2086":3,"2427":1}}],["temp",{"2":{"455":1,"1472":7}}],["templates",{"0":{"682":1},"1":{"683":1,"684":1},"2":{"266":1,"277":1,"373":1,"444":1,"682":1}}],["template",{"0":{"683":1,"684":1,"2605":1},"2":{"40":1,"277":1,"308":1,"373":1,"612":1,"681":1,"1467":1,"1470":1,"1838":1,"2452":1,"2605":1,"2715":1,"2728":1}}],["textwidth",{"2":{"2757":4}}],["text",{"0":{"458":1,"491":1,"494":1,"2585":1,"2645":1},"1":{"492":1,"493":1,"494":1},"2":{"110":1,"111":2,"153":1,"199":1,"236":1,"341":1,"362":1,"448":1,"449":1,"450":1,"458":3,"490":1,"491":4,"493":1,"494":7,"678":1,"1365":1,"1440":1,"1527":2,"1528":1,"1538":1,"1971":1,"2330":1,"2418":1,"2432":1,"2434":1,"2504":1,"2582":1,"2585":1,"2599":3,"2607":1,"2619":3,"2622":1,"2634":2,"2640":1,"2645":2,"2653":1,"2663":1,"2664":1,"2757":4,"2795":1,"2852":2,"2886":1}}],["terpstra",{"2":{"1377":1,"2572":1}}],["terry",{"2":{"191":1}}],["terrazzo",{"2":{"92":2}}],["term\`",{"2":{"2317":1}}],["terms",{"0":{"2801":1},"1":{"2802":1,"2803":1,"2804":1,"2805":1,"2806":1,"2807":1,"2808":1,"2809":1,"2810":1,"2811":1,"2812":1,"2813":1,"2814":1,"2815":1,"2816":1,"2817":1,"2818":1,"2819":1,"2820":1,"2821":1,"2822":1,"2823":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":1,"2832":1,"2833":1,"2834":1,"2835":1,"2836":1,"2837":1,"2838":1,"2839":1,"2840":1,"2841":1,"2842":1,"2843":1,"2844":1,"2845":1,"2846":1,"2847":1,"2848":1,"2849":1},"2":{"1410":1,"1467":1,"1518":1,"1630":1,"2319":1,"2329":1,"2732":1,"2735":1,"2736":1,"2748":1,"2749":1,"2765":1,"2772":1,"2911":1,"2912":1}}],["terminated",{"2":{"1538":3,"1602":1}}],["terminator",{"2":{"272":1,"1702":1}}],["terminals",{"2":{"2622":1}}],["terminal",{"2":{"175":1,"191":1,"353":5,"386":2,"492":1,"494":1,"1325":1,"1535":1,"1675":1,"2221":1,"2317":1,"2434":1,"2502":1,"2582":1,"2587":1,"2616":1,"2620":1,"2622":3,"2628":3,"2669":9}}],["terminology",{"2":{"249":2}}],["term",{"0":{"119":1,"195":1,"1608":1,"2543":1,"2850":1,"2910":1,"2912":1,"2922":1,"2925":1},"1":{"2911":1,"2912":1},"2":{"12":2,"39":1,"112":3,"114":1,"119":9,"134":2,"160":1,"172":1,"175":1,"191":1,"194":1,"195":9,"199":3,"210":2,"262":1,"283":1,"289":1,"339":1,"564":18,"574":2,"1422":3,"1466":1,"1498":1,"1518":1,"1519":1,"1594":4,"1602":1,"1608":1,"1610":2,"1612":8,"1614":1,"1615":1,"1976":3,"1977":1,"2003":1,"2309":9,"2310":4,"2317":3,"2318":1,"2319":6,"2543":9,"2707":1,"2805":1,"2833":1,"2839":1,"2845":1,"2850":1,"2854":2,"2862":1,"2899":1,"2909":1,"2910":10,"2911":8,"2912":51,"2913":2,"2914":6,"2915":1,"2919":6,"2920":6,"2921":4,"2922":17,"2923":4,"2925":7,"2926":4,"2929":2,"2931":2,"2941":1}}],["testgroup",{"2":{"2945":1}}],["testlist",{"2":{"2945":3}}],["tester",{"2":{"2434":2}}],["testers",{"2":{"402":1,"405":1,"406":1}}],["tested",{"2":{"39":3,"273":1,"347":1,"723":1,"1452":1,"1943":1,"2249":1,"2317":1,"2450":1,"2653":1}}],["testing",{"0":{"501":1,"502":1,"505":1,"542":1,"723":1,"2434":1,"2647":1,"2648":1,"2847":1,"2942":1},"1":{"502":1,"503":1,"504":1,"505":1,"506":1,"543":1,"544":1,"2648":1,"2649":1,"2943":1,"2944":1,"2945":1,"2946":1,"2947":1,"2948":1},"2":{"312":3,"399":1,"402":1,"411":1,"414":1,"456":1,"542":1,"1330":1,"1331":1,"1364":1,"1523":1,"1953":1,"2418":1,"2617":1,"2707":1,"2847":2,"2942":2,"2943":1,"2945":1,"2948":1}}],["test",{"0":{"469":1,"1364":1,"2617":1,"2629":1,"2943":1},"2":{"39":1,"134":3,"149":2,"175":1,"199":3,"222":2,"236":3,"249":3,"266":1,"277":1,"285":1,"339":4,"354":2,"465":9,"469":16,"501":1,"505":1,"542":1,"543":1,"544":1,"1364":1,"1365":1,"1539":1,"1602":4,"1603":2,"1604":4,"1657":4,"2181":1,"2183":2,"2184":2,"2298":1,"2434":2,"2449":1,"2544":1,"2617":2,"2729":1,"2894":1,"2942":1,"2943":3,"2944":3,"2945":4,"2946":5,"2947":2,"2948":2}}],["tests",{"0":{"543":1,"544":1,"2945":1,"2946":1,"2947":1,"2948":1},"2":{"1":1,"114":1,"134":3,"149":1,"160":1,"175":1,"189":1,"191":1,"196":1,"198":1,"199":2,"210":1,"263":1,"285":1,"308":1,"465":3,"469":2,"501":1,"505":8,"542":5,"543":2,"544":4,"613":1,"1522":1,"2729":3,"2847":1,"2942":1,"2943":1,"2945":7,"2946":4,"2947":3,"2948":1}}],["t",{"0":{"604":1,"620":1,"707":4,"709":3,"712":1,"731":1,"733":1,"735":3,"737":3,"739":2,"773":5,"776":5,"779":5,"782":7,"785":6,"788":6,"791":6,"794":6,"797":3,"807":1,"810":2,"812":3,"814":3,"816":1,"818":1,"820":1,"822":1,"833":1,"835":1,"837":3,"839":3,"841":3,"843":1,"845":1,"847":1,"849":1,"851":1,"853":1,"865":1,"867":1,"869":3,"871":3,"873":3,"875":1,"877":1,"879":4,"881":2,"883":1,"885":1,"895":1,"897":1,"899":3,"901":2,"903":3,"905":3,"907":1,"909":1,"911":1,"913":1,"915":1,"917":1,"930":1,"932":1,"934":3,"936":2,"938":3,"940":3,"942":1,"944":1,"946":1,"948":1,"950":1,"952":1,"964":1,"966":1,"968":3,"970":2,"972":3,"974":3,"976":1,"978":1,"980":1,"982":1,"984":1,"986":1,"998":1,"1000":1,"1002":3,"1004":2,"1006":3,"1008":3,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1020":1,"1032":1,"1034":1,"1036":3,"1038":2,"1040":3,"1042":3,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1054":1,"1066":1,"1068":1,"1070":3,"1072":2,"1074":3,"1076":3,"1078":1,"1080":1,"1082":4,"1084":2,"1086":1,"1088":1,"1100":1,"1102":1,"1104":3,"1106":2,"1108":3,"1110":3,"1112":1,"1114":1,"1116":4,"1118":2,"1120":1,"1122":1,"1134":1,"1136":1,"1138":3,"1140":2,"1142":3,"1144":3,"1146":1,"1148":1,"1150":4,"1152":2,"1154":1,"1156":1,"1168":1,"1170":1,"1172":3,"1174":2,"1176":3,"1178":3,"1180":1,"1182":1,"1184":4,"1186":2,"1188":1,"1190":1,"1221":1,"1223":1,"1225":3,"1227":2,"1229":3,"1231":3,"1233":1,"1235":1,"1237":1,"1239":1,"1241":1,"1243":1,"1251":3,"1254":2,"1257":1,"1259":3,"1262":3,"1271":1,"1273":1,"1275":1,"1277":2,"1279":1,"1306":3,"1308":3,"1315":1,"1320":1,"1332":1,"1333":1,"1336":1,"1338":1,"1348":1,"1350":1,"1351":1,"1359":1,"1366":1,"1368":1,"1369":1,"1370":1,"1566":1,"1568":1,"1582":1,"1585":1,"1587":1,"1644":1,"1711":2,"1719":2,"1721":2,"1725":1,"1727":1,"1730":1,"1732":1,"1734":1,"1736":1,"1746":1,"1748":1,"1751":1,"1753":1,"1755":2,"1758":2,"1760":1,"1781":1,"1782":1,"1809":1,"1815":1,"1820":1,"1823":2,"1826":3,"1829":4,"1832":5,"1865":2,"1867":1,"1869":1,"1871":1,"1877":1,"1883":1,"1889":1,"1891":1,"1893":1,"1895":1,"1897":1,"1903":1,"1912":2,"1915":2,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2033":1,"2035":1,"2061":2,"2063":2,"2107":4,"2109":3,"2111":1,"2113":1,"2119":1,"2125":1,"2131":1,"2137":1,"2143":1,"2145":1,"2147":1,"2149":1,"2151":1,"2157":1,"2159":3,"2161":3,"2163":1,"2172":2,"2175":2,"2230":1,"2234":1,"2238":1,"2240":1,"2242":1,"2244":1,"2334":1,"2336":1,"2340":1,"2342":1,"2347":1,"2351":2,"2354":2,"2357":1,"2362":1,"2364":1,"2386":1,"2737":1,"2850":1},"1":{"708":4,"710":3,"713":1,"732":1,"734":1,"736":3,"738":3,"740":2,"774":5,"775":5,"777":5,"778":5,"780":5,"781":5,"783":7,"784":7,"786":6,"787":6,"789":6,"790":6,"792":6,"793":6,"795":6,"796":6,"798":3,"799":3,"808":1,"811":2,"813":3,"815":3,"817":1,"819":1,"821":1,"823":1,"834":1,"836":1,"838":3,"840":3,"842":3,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"866":1,"868":1,"870":3,"872":3,"874":3,"876":1,"878":1,"880":4,"882":2,"884":1,"886":1,"896":1,"898":1,"900":3,"902":2,"904":3,"906":3,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"931":1,"933":1,"935":3,"937":2,"939":3,"941":3,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"965":1,"967":1,"969":3,"971":2,"973":3,"975":3,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"999":1,"1001":1,"1003":3,"1005":2,"1007":3,"1009":3,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1033":1,"1035":1,"1037":3,"1039":2,"1041":3,"1043":3,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1067":1,"1069":1,"1071":3,"1073":2,"1075":3,"1077":3,"1079":1,"1081":1,"1083":4,"1085":2,"1087":1,"1089":1,"1101":1,"1103":1,"1105":3,"1107":2,"1109":3,"1111":3,"1113":1,"1115":1,"1117":4,"1119":2,"1121":1,"1123":1,"1135":1,"1137":1,"1139":3,"1141":2,"1143":3,"1145":3,"1147":1,"1149":1,"1151":4,"1153":2,"1155":1,"1157":1,"1169":1,"1171":1,"1173":3,"1175":2,"1177":3,"1179":3,"1181":1,"1183":1,"1185":4,"1187":2,"1189":1,"1191":1,"1222":1,"1224":1,"1226":3,"1228":2,"1230":3,"1232":3,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1252":3,"1253":3,"1255":2,"1256":2,"1258":1,"1260":3,"1261":3,"1263":3,"1264":3,"1272":1,"1274":1,"1276":1,"1278":2,"1280":1,"1307":3,"1309":3,"1316":1,"1317":1,"1567":1,"1569":1,"1583":1,"1645":1,"1712":2,"1720":2,"1722":2,"1726":1,"1728":1,"1729":1,"1731":1,"1733":1,"1735":1,"1737":1,"1747":1,"1749":1,"1752":1,"1754":1,"1756":2,"1757":2,"1759":2,"1761":1,"1810":1,"1811":1,"1816":1,"1817":1,"1821":1,"1822":1,"1824":2,"1825":2,"1827":3,"1828":3,"1830":4,"1831":4,"1833":5,"1834":5,"1866":2,"1868":1,"1870":1,"1872":1,"1878":1,"1884":1,"1890":1,"1892":1,"1894":1,"1896":1,"1898":1,"1904":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2031":1,"2034":1,"2036":1,"2062":2,"2064":2,"2108":4,"2110":3,"2112":1,"2114":1,"2120":1,"2126":1,"2132":1,"2138":1,"2144":1,"2146":1,"2148":1,"2150":1,"2152":1,"2158":1,"2162":3,"2164":1,"2231":1,"2235":1,"2239":1,"2241":1,"2243":1,"2245":1,"2335":1,"2337":1,"2341":1,"2343":1,"2348":1,"2352":2,"2353":2,"2355":2,"2356":2,"2358":1,"2363":1,"2365":1,"2366":1,"2738":1,"2739":1},"2":{"12":9,"21":3,"24":3,"36":3,"90":4,"94":2,"105":8,"114":4,"119":1,"149":3,"153":1,"172":1,"175":2,"179":1,"181":1,"188":2,"191":1,"194":9,"195":6,"198":1,"199":2,"202":1,"209":1,"210":1,"222":3,"232":1,"247":1,"249":1,"266":1,"272":3,"277":2,"279":1,"300":2,"307":3,"308":3,"323":3,"324":5,"325":6,"328":1,"332":2,"337":2,"353":1,"379":1,"383":1,"411":1,"414":2,"429":1,"434":2,"444":1,"455":3,"465":4,"469":2,"489":1,"512":1,"513":2,"514":1,"516":1,"533":1,"538":1,"557":1,"560":1,"564":1,"574":1,"589":3,"593":4,"596":2,"597":1,"599":1,"604":1,"610":1,"613":4,"624":1,"625":3,"631":2,"632":10,"634":1,"637":1,"639":7,"645":1,"647":4,"656":2,"665":1,"672":1,"681":1,"708":4,"710":3,"713":1,"720":2,"729":1,"732":4,"734":1,"736":3,"738":3,"740":2,"745":1,"774":4,"777":4,"780":4,"783":6,"786":5,"789":5,"792":5,"795":5,"798":2,"805":2,"808":4,"811":2,"813":3,"815":3,"817":1,"819":1,"821":1,"823":1,"831":2,"834":5,"836":1,"838":3,"840":3,"842":3,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"863":2,"866":5,"868":1,"870":3,"872":3,"874":3,"876":1,"878":1,"880":4,"882":2,"884":1,"886":1,"893":2,"896":5,"898":1,"900":3,"902":2,"904":3,"906":3,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"928":2,"931":5,"933":1,"935":3,"937":2,"939":3,"941":3,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"962":2,"965":5,"967":1,"969":3,"971":2,"973":3,"975":3,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"996":2,"999":5,"1001":1,"1003":3,"1005":2,"1007":3,"1009":3,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1030":2,"1033":5,"1035":1,"1037":3,"1039":2,"1041":3,"1043":3,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1064":2,"1067":5,"1069":1,"1071":3,"1073":2,"1075":3,"1077":3,"1079":1,"1081":1,"1083":4,"1085":2,"1087":1,"1089":1,"1098":2,"1101":5,"1103":1,"1105":3,"1107":2,"1109":3,"1111":3,"1113":1,"1115":1,"1117":4,"1119":2,"1121":1,"1123":1,"1132":2,"1135":5,"1137":1,"1139":3,"1141":2,"1143":3,"1145":3,"1147":1,"1149":1,"1151":4,"1153":2,"1155":1,"1157":1,"1166":2,"1169":5,"1171":2,"1173":3,"1175":2,"1177":3,"1179":3,"1181":1,"1183":1,"1185":4,"1187":2,"1189":1,"1191":1,"1196":1,"1197":1,"1208":1,"1219":2,"1222":5,"1224":1,"1226":3,"1228":2,"1230":3,"1232":3,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1248":1,"1252":3,"1255":1,"1260":2,"1263":2,"1272":1,"1274":1,"1278":2,"1280":2,"1307":3,"1309":3,"1313":1,"1314":1,"1318":1,"1319":1,"1329":2,"1332":1,"1338":1,"1340":1,"1343":1,"1344":1,"1349":1,"1354":2,"1364":1,"1365":3,"1366":2,"1368":1,"1380":3,"1381":5,"1409":1,"1415":1,"1417":9,"1418":4,"1419":12,"1420":9,"1423":1,"1427":1,"1428":4,"1430":2,"1431":4,"1432":4,"1446":8,"1447":5,"1448":1,"1450":1,"1454":1,"1462":3,"1465":2,"1466":1,"1470":8,"1471":2,"1472":9,"1480":1,"1485":1,"1487":3,"1490":2,"1491":2,"1492":2,"1493":1,"1503":3,"1510":4,"1517":8,"1525":2,"1526":1,"1527":1,"1529":1,"1532":5,"1533":4,"1534":1,"1535":3,"1537":1,"1538":5,"1551":1,"1567":1,"1586":1,"1588":1,"1589":1,"1600":2,"1602":3,"1603":3,"1604":5,"1605":9,"1609":2,"1612":22,"1613":8,"1616":1,"1617":10,"1618":11,"1620":2,"1622":1,"1642":1,"1656":1,"1657":4,"1663":1,"1664":5,"1666":1,"1667":1,"1668":3,"1689":2,"1702":1,"1712":1,"1720":2,"1722":2,"1726":1,"1731":1,"1733":1,"1735":1,"1737":1,"1742":1,"1743":6,"1747":3,"1749":4,"1752":1,"1754":1,"1756":1,"1759":2,"1761":1,"1766":1,"1769":2,"1770":1,"1773":2,"1774":4,"1776":7,"1777":3,"1779":6,"1781":9,"1783":1,"1794":1,"1795":3,"1801":1,"1804":1,"1810":1,"1816":1,"1821":1,"1824":2,"1827":3,"1830":4,"1833":5,"1835":3,"1837":2,"1838":1,"1839":2,"1840":1,"1843":5,"1846":2,"1850":7,"1855":2,"1866":2,"1868":1,"1870":1,"1872":1,"1890":1,"1892":1,"1896":1,"1898":1,"1913":2,"1916":2,"1924":3,"1945":1,"1947":4,"1948":2,"1952":2,"1953":2,"1954":30,"1956":1,"1957":2,"1958":1,"1961":1,"1962":2,"1983":4,"1984":5,"1986":2,"1987":1,"1988":7,"1989":3,"1990":5,"1992":1,"1993":4,"1994":10,"1996":4,"1997":3,"1999":1,"2003":1,"2005":4,"2006":2,"2008":10,"2011":2,"2012":2,"2013":2,"2014":1,"2015":4,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2036":1,"2046":2,"2053":1,"2057":2,"2059":3,"2062":2,"2064":2,"2069":6,"2070":3,"2071":5,"2073":3,"2074":3,"2075":3,"2076":2,"2077":5,"2079":15,"2082":2,"2088":7,"2094":2,"2095":13,"2096":9,"2108":4,"2110":3,"2112":1,"2114":1,"2144":1,"2146":1,"2150":1,"2152":1,"2160":3,"2162":3,"2164":1,"2173":2,"2176":2,"2179":1,"2181":1,"2187":7,"2189":6,"2190":5,"2191":7,"2211":1,"2222":1,"2225":2,"2231":1,"2235":1,"2239":1,"2241":1,"2243":1,"2245":1,"2253":1,"2254":13,"2272":2,"2275":1,"2277":20,"2280":1,"2284":1,"2286":4,"2287":2,"2289":1,"2290":16,"2293":1,"2296":2,"2297":1,"2300":9,"2301":2,"2303":2,"2304":1,"2305":1,"2309":1,"2312":2,"2314":2,"2315":5,"2316":18,"2317":14,"2318":11,"2319":16,"2320":1,"2327":1,"2329":1,"2330":2,"2331":1,"2337":1,"2341":1,"2343":1,"2348":1,"2352":1,"2355":1,"2358":1,"2365":1,"2372":1,"2381":6,"2386":1,"2387":1,"2403":1,"2417":1,"2418":1,"2427":1,"2428":1,"2429":4,"2434":2,"2441":1,"2456":3,"2462":1,"2466":2,"2490":1,"2510":3,"2522":3,"2542":42,"2544":1,"2551":1,"2557":1,"2559":1,"2561":2,"2562":3,"2563":1,"2566":2,"2572":42,"2573":1,"2575":3,"2576":2,"2577":2,"2579":2,"2585":1,"2586":1,"2593":1,"2615":1,"2616":2,"2617":1,"2619":1,"2628":1,"2634":2,"2652":6,"2658":1,"2665":1,"2667":1,"2669":2,"2673":1,"2674":1,"2694":1,"2703":1,"2707":1,"2714":1,"2717":1,"2728":1,"2731":1,"2739":1,"2756":103,"2757":131,"2761":2,"2767":16,"2768":7,"2769":5,"2773":7,"2774":13,"2775":5,"2776":11,"2777":10,"2778":9,"2779":4,"2782":1,"2783":2,"2785":5,"2791":1,"2794":1,"2884":1,"2889":1,"2890":3,"2894":1,"2907":2,"2909":1,"2910":4,"2911":7,"2912":9,"2915":2,"2916":5,"2917":8,"2918":5,"2919":3,"2920":2,"2921":2,"2922":9,"2924":1,"2925":10,"2926":10,"2927":2,"2928":6,"2929":2,"2931":5,"2933":1,"2938":2,"2939":1,"2940":1,"2941":81,"2942":1,"2944":1,"2945":1,"2950":3}}],["tr6",{"2":{"1925":1,"2539":1}}],["tr5",{"2":{"1925":1,"2539":1}}],["tr4",{"2":{"1925":1,"2539":1}}],["tr3",{"2":{"1925":1,"2539":1}}],["tr2",{"2":{"1925":1,"2539":1}}],["tr1",{"2":{"1925":1,"2539":1}}],["tr0",{"2":{"1925":1,"2539":1}}],["trn1",{"2":{"1925":1,"2539":1}}],["trn2",{"2":{"1925":1,"2539":1}}],["trn3",{"2":{"1925":1,"2539":1}}],["trn4",{"2":{"1925":1,"2539":1}}],["trn5",{"2":{"1925":1,"2539":1}}],["trn6",{"2":{"1925":1,"2539":1}}],["trns",{"2":{"307":6,"379":118,"589":152,"1353":1,"1422":1,"1427":2,"1791":1,"2069":3,"2070":1,"2071":1,"2077":1,"2095":1,"2259":3,"2260":1,"2509":1,"2519":1,"2522":1,"2535":1,"2559":4,"2561":2,"2564":1,"2794":1}}],["trp",{"2":{"1686":1}}],["trrs",{"2":{"1200":1,"2261":1,"2263":1,"2264":2,"2265":2,"2266":1,"2267":1,"2278":1,"2426":1}}],["trsu",{"2":{"1925":1,"2539":1}}],["trsd",{"2":{"1925":1,"2539":1}}],["trst",{"2":{"1285":1,"1286":1}}],["trs",{"2":{"1194":1,"1197":1,"2266":1}}],["troubleshoot",{"2":{"2382":1}}],["troubleshooting",{"0":{"616":1,"1209":1,"1595":1,"1961":1,"1998":1},"1":{"617":1,"618":1,"619":1,"620":1,"621":1},"2":{"1209":1,"1321":1,"1328":1,"1960":2,"1998":1,"2281":1,"2598":1}}],["trouble",{"2":{"608":1,"1365":1,"2434":1}}],["tronguylabs",{"2":{"114":1,"218":4}}],["trk2",{"2":{"328":1}}],["trk1",{"2":{"277":1}}],["trkeyboard",{"2":{"277":1,"328":1}}],["trying",{"2":{"607":1,"1503":1,"1986":1,"2016":1,"2272":1,"2317":2,"2441":1,"2566":1,"2629":1,"2913":1}}],["try",{"2":{"228":1,"520":1,"525":2,"536":1,"600":1,"604":1,"610":1,"613":1,"614":1,"686":1,"772":1,"1332":2,"1333":1,"1358":1,"1366":1,"1376":1,"1425":1,"1433":1,"1477":1,"1986":1,"2059":1,"2317":1,"2429":1,"2434":1,"2490":1,"2508":2,"2612":1,"2616":1,"2662":1,"2674":1,"2720":1,"2728":1,"2784":1,"2912":1,"2945":1}}],["treated",{"2":{"2000":4,"2004":1,"2006":1,"2463":1,"2522":1}}],["treating",{"2":{"615":1,"2520":1,"2538":1}}],["treat",{"2":{"191":1,"671":1,"1426":1,"2207":1,"2520":1,"2538":1,"2937":1}}],["treadstone48",{"2":{"143":4}}],["treadstone32",{"2":{"143":2}}],["tree",{"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"143":2,"165":2,"175":1,"199":2,"399":1,"495":1,"1300":1,"1425":1,"1525":1,"2598":2,"2634":1}}],["truth",{"2":{"665":2}}],["trunk",{"2":{"134":1}}],["truetype",{"2":{"2755":1}}],["true",{"0":{"258":1,"535":1},"2":{"46":1,"90":3,"105":6,"111":8,"169":1,"194":3,"195":1,"230":1,"249":1,"256":1,"258":1,"303":3,"324":1,"325":1,"338":3,"380":1,"456":1,"512":1,"535":2,"593":1,"630":1,"631":2,"647":1,"651":1,"652":1,"668":1,"669":3,"701":1,"717":7,"718":5,"721":3,"746":1,"768":3,"1195":1,"1200":1,"1203":2,"1204":2,"1248":2,"1252":1,"1253":1,"1269":1,"1282":1,"1299":2,"1303":2,"1329":1,"1380":2,"1381":4,"1405":1,"1417":4,"1420":1,"1431":1,"1446":3,"1447":1,"1462":2,"1471":1,"1472":1,"1491":1,"1510":2,"1517":1,"1533":2,"1535":2,"1536":1,"1544":1,"1556":2,"1557":2,"1571":1,"1576":1,"1599":1,"1600":3,"1612":6,"1613":1,"1617":1,"1618":2,"1621":1,"1625":2,"1630":1,"1642":2,"1657":4,"1668":2,"1701":2,"1724":1,"1729":1,"1743":1,"1781":2,"1794":1,"1795":1,"1804":2,"1811":1,"1817":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1837":1,"1839":2,"1847":2,"1852":1,"1855":1,"1864":1,"1907":1,"1911":1,"1917":1,"1924":2,"1948":1,"1954":16,"1958":1,"1962":1,"1971":3,"1984":1,"1988":1,"1989":1,"1993":1,"1994":1,"1996":1,"1997":1,"2001":2,"2006":2,"2008":3,"2009":2,"2011":2,"2014":3,"2031":1,"2042":1,"2044":2,"2052":1,"2071":1,"2073":2,"2074":1,"2075":1,"2076":1,"2077":1,"2079":2,"2083":2,"2091":1,"2094":1,"2106":1,"2167":1,"2171":1,"2177":1,"2182":1,"2190":1,"2203":1,"2225":1,"2290":12,"2293":1,"2300":3,"2306":1,"2310":1,"2316":1,"2317":2,"2319":2,"2327":1,"2361":1,"2366":1,"2368":1,"2381":2,"2461":1,"2575":1,"2576":7,"2577":1,"2607":1,"2709":5,"2757":5,"2783":1,"2854":1,"2856":2,"2857":1,"2871":3,"2877":3,"2878":3,"2882":1,"2912":1,"2920":1,"2921":1,"2924":2,"2928":3,"2929":1,"2931":1,"2935":1}}],["tr",{"2":{"134":1,"2301":3}}],["trim",{"2":{"2428":1}}],["tried",{"2":{"2620":1,"2909":1}}],["trie",{"0":{"1537":1},"1":{"1538":1,"1539":1},"2":{"1525":4,"1527":1,"1537":1,"1538":4,"1539":1}}],["tries",{"2":{"561":1,"1538":1,"2579":1,"2614":1}}],["triangle",{"2":{"1480":1}}],["trickier",{"2":{"1427":1}}],["tricky",{"2":{"1425":1,"1525":1,"2387":1,"2950":1}}],["triplet",{"2":{"1288":1,"2757":1}}],["triple",{"2":{"521":2,"2317":5}}],["trinity",{"2":{"222":1}}],["tri",{"0":{"2320":1,"2781":1,"2782":1,"2784":1},"1":{"2321":1,"2322":1,"2323":1,"2782":1,"2783":2,"2784":1,"2785":2},"2":{"199":2,"222":1,"1428":3,"1470":3,"2320":1,"2321":2,"2322":4,"2323":7,"2567":21,"2728":2,"2782":1,"2783":4,"2784":1,"2785":4}}],["triggered",{"2":{"297":1,"564":1,"651":1,"718":1,"1664":4,"1690":3,"1781":1,"2008":1,"2923":1}}],["triggers",{"0":{"1528":1},"2":{"195":1,"1518":1,"1781":1,"1788":1,"1796":1,"1976":2,"2091":1,"2913":2,"2923":1,"2929":1}}],["triggering",{"2":{"98":1,"564":1,"1681":1,"2259":1,"2276":1}}],["trigger",{"2":{"95":1,"98":1,"114":1,"175":1,"198":1,"564":1,"580":1,"645":1,"651":1,"656":4,"717":2,"718":1,"1378":1,"1380":1,"1381":1,"1528":3,"1589":1,"1590":1,"1591":1,"1613":3,"1662":1,"1681":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1766":1,"1776":7,"1779":2,"1781":4,"1782":6,"1784":8,"1785":6,"1786":1,"1788":1,"1976":1,"1977":1,"2008":1,"2009":1,"2014":1,"2091":1,"2607":1,"2609":1,"2610":1,"2685":1,"2784":1,"2912":2,"2922":2,"2929":1,"2931":2}}],["trivial",{"2":{"95":1,"266":1,"1781":1,"2464":1,"2557":1}}],["travel",{"2":{"1971":7,"2185":1,"2423":1}}],["travis",{"2":{"1":1,"50":1}}],["trapezoid",{"2":{"1480":1}}],["trailing",{"2":{"222":2,"520":1,"526":1,"527":3,"1252":2}}],["traditional",{"2":{"2590":1}}],["traditionally",{"2":{"125":1,"169":1,"240":1,"2563":1,"2568":1}}],["tradestation",{"2":{"33":2}}],["tracing",{"0":{"2950":1},"2":{"2418":1,"2950":3}}],["trace=x",{"2":{"2950":1}}],["traced",{"2":{"2640":1,"2950":5}}],["trace",{"2":{"2280":1,"2418":1,"2950":4}}],["traceability",{"2":{"403":1}}],["tractyl",{"2":{"114":1,"149":2,"308":1}}],["tracked",{"2":{"1939":1}}],["tracker++",{"2":{"1447":1}}],["tracker",{"2":{"1447":3,"2008":5}}],["tracks",{"0":{"2251":1},"2":{"1934":1,"2251":2,"2634":1,"2950":2}}],["trackpoints",{"2":{"2037":1}}],["trackpoint",{"0":{"1367":1,"2038":1},"2":{"266":1,"2037":4,"2048":1}}],["trackpad",{"0":{"1969":1,"1973":1},"1":{"1970":1,"1971":1,"1972":1,"1974":1,"1975":1,"1976":1,"1977":1},"2":{"191":2,"249":1,"1969":1,"1970":3,"1973":1,"1974":6,"1977":4,"1994":1}}],["trackpads",{"2":{"191":1,"1969":1,"1973":1}}],["tracking",{"2":{"134":1,"714":1,"1967":1,"1983":1,"2072":1,"2817":1}}],["trackballs",{"2":{"1986":1}}],["trackball",{"0":{"1980":1},"2":{"114":3,"118":2,"191":1,"199":1,"246":1,"291":2,"1980":11,"1986":1}}],["track",{"2":{"74":2,"1381":2,"1776":6,"1974":5,"2014":1,"2068":1,"2253":1,"2254":19,"2295":1,"2300":1,"2427":1,"2517":10,"2522":8,"2756":1,"2909":1,"2950":3}}],["transcription",{"2":{"2291":1}}],["translucent",{"2":{"2178":1}}],["translating",{"2":{"2651":1}}],["translation",{"2":{"472":1,"2291":1}}],["translatable",{"2":{"1446":1}}],["translated",{"2":{"2016":1,"2568":1}}],["translates",{"2":{"698":1,"699":1,"2891":1}}],["translate",{"2":{"99":1,"1684":1,"2751":1}}],["transmitted",{"2":{"2375":1,"2754":1,"2914":1}}],["transmitting",{"2":{"1194":1,"1197":1,"1200":2,"2276":5}}],["transmit",{"0":{"773":1,"776":1,"782":1,"1259":1,"1277":1},"1":{"774":1,"775":1,"777":1,"778":1,"783":1,"784":1,"1260":1,"1261":1,"1278":1},"2":{"328":1,"749":1,"750":1,"774":1,"776":1,"777":1,"783":1,"786":1,"789":1,"1272":1,"1273":1,"1277":1,"2880":1}}],["transmissions",{"2":{"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1}}],["transmission",{"2":{"202":1,"263":1,"1192":3,"1252":1,"1296":1}}],["transistor",{"2":{"1545":4,"1558":1}}],["transitions",{"2":{"340":1,"1409":2,"1473":1,"2865":1}}],["transitioned",{"2":{"268":1}}],["transition",{"2":{"236":1,"265":1,"283":1,"1409":1,"1686":60}}],["transient",{"0":{"751":1},"2":{"149":1,"746":2,"751":3,"2864":1}}],["transparency",{"0":{"2559":1},"2":{"2559":1,"2767":2,"2776":3}}],["transparent",{"2":{"231":1,"307":1,"1422":1,"1788":1,"1791":1,"2260":1,"2519":2,"2522":2,"2559":4,"2561":1,"2767":1,"2776":3,"2929":1}}],["transposition",{"2":{"1925":15,"1926":1,"2539":15}}],["transpose",{"2":{"210":1,"1925":15,"2539":15}}],["transported",{"2":{"74":1}}],["transport",{"0":{"107":1},"2":{"74":1,"75":1,"111":1,"112":3,"114":1,"134":1,"160":1,"191":1,"266":1,"277":1,"567":1,"570":9,"1852":1,"1945":2,"1985":1,"2091":1,"2262":1,"2268":2,"2275":1,"2276":1,"2277":2,"2418":2,"2667":1,"2753":1,"2880":2}}],["transformation",{"2":{"2046":1,"2912":1}}],["transformations",{"2":{"169":1,"184":1,"191":1}}],["transform",{"2":{"1983":1,"2051":1}}],["transferring",{"2":{"1953":1,"2756":1}}],["transfers",{"2":{"160":1}}],["transfer",{"2":{"107":1,"768":1,"2275":1,"2277":1,"2297":1,"2469":1,"2756":2,"2757":2}}],["transactions",{"2":{"1207":1,"2277":1}}],["transaction",{"2":{"149":1,"175":2,"191":1,"266":1,"570":2,"1251":1,"1265":1,"1637":1,"2277":12,"2754":1}}],["toward",{"2":{"2428":1}}],["towards",{"2":{"111":1,"175":1,"194":1,"262":1,"384":1,"665":1,"1558":1,"2319":2,"2845":1}}],["to=michi",{"2":{"1391":2}}],["to=imera",{"2":{"1391":2}}],["to=liatris",{"2":{"1391":2,"1399":2}}],["to=helios",{"2":{"1391":2,"1399":2}}],["to=elite",{"2":{"1391":2,"1399":2}}],["to=rp2040",{"2":{"1391":2,"1399":2}}],["to=svlinky",{"2":{"1391":2}}],["to=stemcell",{"2":{"1391":2,"1399":2}}],["to=sparkfun",{"2":{"1391":2}}],["to=bonsai",{"2":{"1391":2}}],["to=bit",{"2":{"1391":2}}],["to=blok",{"2":{"1391":2}}],["to=kb2040",{"2":{"1391":2}}],["to=",{"2":{"1388":1}}],["to=proton",{"2":{"304":1,"1388":1,"1391":2,"2691":1}}],["tolerant",{"2":{"1297":1,"1298":1,"2680":1,"2693":1}}],["tour",{"2":{"613":1}}],["touching",{"2":{"2428":1}}],["touchdown",{"2":{"2014":1}}],["touch",{"2":{"191":1,"210":4,"222":44,"266":1,"273":1,"276":1,"284":1,"1973":1,"1974":1,"1976":4,"1977":1,"2428":2,"2434":1,"2605":2,"2725":1}}],["touchpads",{"2":{"174":1,"175":1,"244":1,"2037":1,"2047":1}}],["touchpad",{"2":{"118":2,"1974":1,"2046":1}}],["todo",{"2":{"505":1,"624":2,"625":4}}],["today",{"2":{"405":1,"406":1,"407":1}}],["tokens",{"2":{"475":1,"491":2,"494":1}}],["tokenn",{"2":{"431":1}}],["token2",{"2":{"431":1}}],["token1",{"2":{"431":1}}],["token",{"2":{"333":1,"657":4,"658":3,"659":5,"2602":1,"2608":1,"2667":1,"2757":6}}],["tokyokeyboard",{"2":{"102":1,"114":1}}],["tokyo60",{"2":{"102":2,"114":2}}],["tones",{"2":{"719":6,"1474":1,"1477":1,"1484":1,"1486":1}}],["tone",{"0":{"1484":1},"2":{"210":1,"631":3,"674":1,"1417":2,"1477":1,"1484":5,"1486":1}}],["tofujr",{"2":{"236":1}}],["tofu60",{"2":{"236":2}}],["tofu",{"2":{"199":1}}],["totally",{"2":{"1992":1}}],["total",{"2":{"175":4,"749":1,"750":1,"751":1,"759":1,"1285":1,"1286":1,"1661":1,"2267":1,"2387":2,"2388":1,"2431":1,"2586":1,"2757":2,"2767":4,"2774":4,"2892":1}}],["tominabox1",{"2":{"143":5,"149":2,"210":1,"236":1}}],["tops",{"2":{"2428":1}}],["topmost",{"2":{"1425":1,"1720":1,"1722":1}}],["topic=41989",{"2":{"1376":1}}],["topic=14290",{"2":{"1375":1}}],["topic=50176",{"2":{"1367":1}}],["topic=57008",{"2":{"1353":1}}],["topics",{"0":{"661":1,"1382":1,"1402":1,"2906":1,"2907":1,"2908":1},"1":{"662":1,"663":1,"1383":1,"1384":1,"1385":1,"1386":1,"1387":1,"1403":1,"1404":1,"1405":1,"1406":1,"1407":1,"1408":1},"2":{"2617":1,"2906":1,"2907":2}}],["topic",{"2":{"412":5,"1378":1,"1634":1,"2503":1}}],["top",{"2":{"100":1,"149":1,"255":1,"411":1,"561":1,"571":1,"617":1,"668":1,"673":2,"684":1,"691":1,"746":1,"1327":1,"1348":1,"1417":1,"1422":1,"1427":2,"1485":1,"1590":2,"1641":1,"1668":1,"1741":1,"1802":1,"1845":1,"1846":1,"1849":1,"1954":1,"2011":1,"2057":1,"2070":1,"2081":1,"2082":1,"2085":2,"2269":1,"2290":1,"2296":1,"2317":1,"2326":1,"2428":1,"2450":2,"2454":13,"2455":13,"2464":1,"2503":1,"2561":1,"2562":2,"2585":1,"2612":1,"2634":1,"2659":1,"2669":1,"2674":2,"2715":1,"2717":1,"2728":1,"2755":1,"2757":5,"2778":3,"2794":1,"2795":1,"2796":1,"2860":1,"2869":2,"2885":1}}],["too",{"2":{"94":1,"105":1,"134":1,"153":1,"172":1,"222":1,"233":1,"530":1,"532":1,"536":1,"574":1,"608":1,"651":1,"657":1,"677":1,"686":1,"719":4,"720":3,"1320":1,"1365":2,"1409":1,"1415":1,"1417":1,"1423":1,"1451":1,"1472":1,"1488":1,"1493":1,"1497":1,"1525":1,"1602":1,"1802":1,"1935":6,"1936":1,"1994":1,"2280":2,"2305":1,"2309":1,"2317":1,"2319":1,"2418":1,"2427":1,"2428":1,"2429":1,"2461":1,"2573":1,"2590":1,"2652":1,"2716":1,"2726":2,"2728":2,"2895":1,"2912":1,"2950":1}}],["tool",{"2":{"166":1,"383":1,"386":1,"389":1,"393":1,"489":1,"578":1,"600":1,"1359":1,"2331":1,"2448":1,"2484":1,"2486":1,"2488":1,"2567":1,"2589":1,"2728":1,"2795":1}}],["toolchains",{"2":{"294":1,"393":1,"426":1}}],["toolchain",{"0":{"387":1},"2":{"134":1,"387":1,"414":1,"2662":1,"2674":1}}],["toolbox",{"0":{"1324":1,"2613":1,"2614":1},"1":{"2614":1,"2615":1},"2":{"82":1,"119":1,"131":1,"179":2,"240":3,"354":1,"578":1,"686":1,"689":1,"1318":1,"1324":1,"1333":1,"1624":1,"2273":2,"2386":1,"2388":1,"2389":2,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":2,"2433":2,"2477":1,"2496":1,"2508":1,"2599":1,"2609":1,"2612":1,"2613":3,"2614":2,"2615":1,"2619":1}}],["tooling",{"2":{"70":1,"198":1,"383":1,"665":1,"2657":1}}],["tools",{"0":{"388":1,"1323":1},"1":{"1324":1,"1325":1,"1326":1},"2":{"39":1,"166":1,"373":1,"384":1,"387":1,"388":1,"390":1,"393":1,"490":2,"600":2,"665":2,"684":1,"1323":1,"1335":1,"1365":1,"1946":1,"1962":1,"2273":1,"2298":2,"2388":1,"2400":1,"2422":1,"2496":1,"2589":1,"2653":2,"2658":1,"2664":2,"2665":1,"2671":1,"2906":1}}],["tog",{"2":{"172":1,"175":1,"231":1}}],["togg",{"2":{"172":2,"175":3,"235":1,"285":1,"303":1,"338":1,"589":4,"1322":1,"1485":1,"1490":1,"1493":1,"1495":3,"1521":1,"1526":1,"1529":1,"1530":1,"1543":1,"1594":1,"1606":1,"1680":1,"1780":1,"1848":1,"1925":1,"2084":1,"2181":1,"2191":2,"2192":1,"2210":1,"2216":1,"2253":1,"2304":2,"2418":1,"2520":7,"2523":1,"2524":3,"2525":1,"2526":1,"2527":1,"2529":1,"2537":1,"2538":7,"2539":1,"2544":1,"2545":1,"2547":1,"2551":1,"2651":1,"2752":1}}],["toggling",{"0":{"1422":1},"1":{"1423":1},"2":{"39":1,"1290":1,"1416":1,"1422":1,"1994":1,"1999":1,"2008":1,"2009":1,"2097":1,"2191":1,"2319":1,"2418":1,"2686":1,"2889":1}}],["toggles",{"0":{"2184":1},"2":{"721":1,"1417":1,"1422":1,"1428":1,"1481":1,"1485":1,"1490":1,"1493":1,"1495":3,"1521":1,"1530":1,"1536":1,"1599":1,"1606":1,"1621":1,"1793":1,"2210":1,"2306":1,"2309":1,"2520":1,"2524":3,"2525":1,"2526":1,"2529":1,"2535":1,"2538":1,"2547":1,"2651":1,"2652":1,"2922":1}}],["toggled",{"2":{"565":1,"722":1,"749":1,"1422":1,"2418":1,"2652":1,"2685":1,"2728":1}}],["toggleterminal",{"2":{"353":1,"2669":1}}],["togglepin",{"2":{"243":1}}],["toggle",{"0":{"327":1,"1560":1,"1572":1,"1857":1,"1858":1,"2099":1,"2100":1,"2319":1},"2":{"28":1,"39":2,"93":1,"112":2,"114":1,"149":1,"160":1,"210":1,"222":1,"231":3,"243":1,"339":1,"564":6,"722":1,"761":1,"1366":1,"1416":1,"1422":4,"1485":1,"1490":1,"1493":1,"1495":3,"1521":1,"1529":1,"1530":1,"1533":1,"1536":1,"1543":3,"1560":1,"1572":1,"1594":1,"1599":1,"1606":2,"1621":1,"1625":6,"1680":8,"1690":3,"1779":1,"1780":2,"1789":1,"1795":2,"1848":2,"1857":1,"1858":1,"1925":2,"1993":1,"1994":1,"1999":2,"2000":2,"2008":4,"2009":4,"2013":4,"2084":2,"2099":1,"2100":1,"2181":2,"2191":2,"2200":4,"2216":2,"2253":3,"2254":7,"2304":9,"2306":1,"2309":1,"2319":1,"2399":1,"2404":1,"2520":13,"2523":2,"2524":3,"2525":1,"2526":1,"2527":3,"2529":1,"2535":1,"2537":2,"2538":13,"2539":2,"2544":2,"2545":2,"2547":1,"2551":4,"2650":2,"2651":1,"2652":2,"2685":1,"2686":1,"2752":2,"2854":1,"2874":1,"2909":1,"2922":1}}],["together",{"2":{"72":1,"384":1,"516":1,"575":1,"603":1,"668":1,"923":1,"1094":1,"1128":1,"1193":1,"1283":1,"1362":1,"1603":1,"1605":1,"1627":1,"1949":1,"2048":1,"2068":1,"2178":1,"2207":1,"2280":1,"2309":1,"2315":1,"2416":1,"2427":2,"2459":1,"2504":1,"2572":1,"2612":1,"2720":1,"2728":1,"2739":1,"2742":1,"2925":1,"2926":3}}],["to",{"0":{"3":1,"4":1,"5":1,"6":1,"7":1,"11":1,"14":1,"15":1,"16":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"33":1,"36":1,"48":1,"49":1,"50":1,"57":1,"142":1,"179":1,"181":1,"188":1,"263":1,"265":1,"275":1,"304":1,"520":1,"587":1,"603":1,"604":1,"626":1,"667":1,"668":1,"672":1,"673":1,"687":1,"1331":1,"1336":1,"1341":1,"1342":1,"1431":1,"1499":1,"1613":1,"1627":1,"1628":1,"1659":1,"1660":1,"1767":2,"1787":1,"1788":1,"1931":1,"2001":1,"2002":1,"2006":2,"2008":1,"2013":1,"2057":1,"2186":1,"2309":1,"2387":1,"2436":1,"2473":1,"2475":1,"2586":1,"2595":1,"2608":1,"2632":1,"2678":1,"2714":1,"2780":1,"2788":1,"2938":1},"1":{"21":1,"24":1,"26":1,"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"604":1,"627":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"1342":1,"1932":1,"1933":1,"2003":1,"2004":1,"2005":1,"2006":1,"2715":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2722":1,"2723":1,"2724":1,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1},"2":{"0":1,"1":2,"2":3,"3":1,"4":2,"5":3,"6":4,"7":1,"9":1,"11":2,"12":2,"13":2,"14":3,"15":3,"16":1,"17":1,"18":5,"20":3,"21":5,"22":3,"23":3,"24":5,"26":2,"27":2,"28":1,"29":1,"33":2,"35":6,"36":3,"38":1,"39":21,"40":9,"41":2,"42":1,"43":9,"45":1,"47":4,"48":1,"49":2,"50":1,"52":1,"56":2,"58":1,"62":1,"63":4,"64":4,"65":4,"69":2,"70":6,"72":1,"73":3,"74":8,"75":2,"76":5,"77":3,"82":5,"83":1,"87":3,"88":2,"89":1,"90":6,"92":3,"93":14,"94":5,"95":2,"98":2,"99":5,"100":2,"103":2,"104":2,"105":3,"107":5,"109":1,"110":3,"112":2,"113":6,"114":48,"116":1,"118":4,"119":8,"120":2,"123":4,"124":6,"125":9,"126":3,"127":2,"128":2,"130":3,"131":1,"132":3,"133":8,"134":38,"137":1,"140":1,"142":1,"149":60,"152":3,"153":11,"154":4,"156":2,"157":2,"158":4,"160":27,"163":1,"166":6,"168":2,"169":9,"170":2,"171":1,"172":3,"173":4,"175":40,"178":2,"179":4,"181":1,"182":4,"184":2,"185":1,"187":5,"188":5,"189":4,"190":1,"191":32,"194":8,"195":7,"198":3,"199":36,"201":5,"202":1,"203":2,"206":3,"208":3,"209":2,"210":28,"212":4,"213":4,"214":3,"215":1,"217":4,"220":3,"222":64,"224":2,"228":7,"230":3,"231":3,"232":4,"233":5,"234":4,"235":4,"236":33,"240":7,"241":1,"243":1,"244":3,"245":2,"246":1,"247":1,"249":38,"253":1,"255":4,"256":1,"257":1,"258":1,"259":2,"262":2,"263":4,"265":5,"266":87,"268":4,"270":1,"271":1,"272":5,"273":5,"275":3,"276":5,"277":24,"279":3,"281":1,"283":5,"284":3,"285":18,"288":4,"289":1,"293":3,"294":17,"297":2,"304":2,"305":3,"306":1,"307":7,"308":27,"312":6,"314":2,"315":1,"317":16,"320":1,"323":5,"327":2,"328":32,"331":1,"332":1,"333":9,"337":1,"339":12,"340":2,"341":4,"344":21,"346":1,"353":2,"354":1,"364":2,"365":3,"366":1,"367":4,"371":1,"372":1,"373":2,"374":1,"375":2,"377":1,"378":1,"379":2,"380":2,"381":2,"383":6,"384":1,"385":1,"386":2,"387":1,"388":1,"389":1,"392":2,"393":8,"396":2,"397":4,"398":1,"399":1,"402":4,"403":19,"405":2,"406":2,"407":3,"408":2,"411":8,"412":10,"413":1,"414":14,"415":1,"416":4,"417":1,"418":1,"419":2,"420":2,"422":3,"423":1,"425":1,"426":2,"429":4,"430":5,"432":1,"433":6,"434":3,"435":3,"437":2,"443":2,"447":2,"448":1,"449":1,"450":1,"452":6,"453":4,"455":3,"456":2,"458":3,"459":3,"460":3,"461":3,"462":1,"463":5,"465":1,"466":1,"467":2,"468":1,"469":4,"473":1,"474":2,"475":2,"476":1,"477":1,"482":2,"483":1,"485":1,"486":1,"487":2,"488":3,"489":6,"490":2,"491":4,"492":3,"493":1,"494":9,"495":4,"496":1,"499":3,"500":5,"501":2,"504":2,"505":3,"506":1,"509":4,"510":2,"511":3,"512":7,"513":4,"514":5,"515":1,"516":6,"519":1,"521":1,"524":1,"525":3,"527":4,"528":2,"529":1,"530":2,"531":1,"532":2,"533":2,"536":1,"537":1,"538":6,"540":5,"541":3,"542":3,"543":2,"544":1,"547":1,"555":6,"557":1,"558":2,"559":2,"561":13,"563":1,"564":19,"565":11,"566":1,"568":8,"569":4,"570":3,"571":1,"572":5,"574":6,"575":4,"578":3,"579":1,"580":2,"581":2,"585":2,"586":2,"587":2,"588":5,"589":4,"591":2,"592":1,"593":4,"594":1,"596":7,"597":1,"600":3,"601":1,"602":1,"603":4,"604":7,"605":2,"607":17,"608":1,"609":6,"610":5,"611":1,"612":2,"613":13,"614":3,"615":1,"617":1,"618":2,"620":1,"622":2,"623":3,"624":2,"625":5,"626":4,"627":3,"628":2,"629":7,"630":3,"632":1,"633":4,"639":4,"640":2,"641":2,"643":2,"644":1,"645":1,"646":3,"647":7,"651":5,"652":3,"653":3,"654":2,"655":3,"656":5,"657":5,"658":1,"659":1,"660":1,"661":3,"664":1,"665":10,"666":7,"667":1,"668":7,"669":8,"670":5,"671":1,"672":4,"673":5,"674":2,"675":2,"677":1,"678":2,"681":7,"682":1,"683":4,"684":2,"685":2,"686":9,"687":4,"688":3,"689":3,"690":3,"691":2,"693":2,"695":1,"696":3,"698":2,"699":2,"701":4,"702":1,"703":2,"704":4,"708":3,"710":3,"711":1,"713":2,"714":1,"715":1,"716":1,"717":4,"718":4,"719":1,"720":7,"721":6,"722":2,"724":1,"725":2,"726":6,"727":3,"728":1,"729":4,"732":1,"734":2,"736":3,"738":3,"739":1,"740":1,"742":2,"744":7,"745":1,"746":4,"748":3,"749":5,"750":5,"752":1,"753":7,"754":12,"755":5,"756":3,"757":2,"758":1,"759":3,"760":2,"763":5,"764":1,"765":2,"766":2,"767":2,"768":10,"772":3,"773":1,"774":5,"776":1,"777":5,"780":5,"783":9,"785":1,"786":7,"788":1,"789":7,"792":6,"795":6,"797":2,"798":1,"800":1,"801":2,"802":3,"804":1,"805":4,"811":1,"813":3,"815":3,"817":1,"819":1,"824":1,"825":1,"826":1,"827":2,"828":3,"829":2,"830":1,"831":4,"834":1,"838":1,"840":3,"842":3,"844":1,"846":1,"851":1,"853":1,"855":1,"856":2,"857":3,"858":2,"859":1,"860":3,"861":3,"862":1,"863":5,"866":1,"870":1,"872":3,"874":3,"876":1,"878":1,"883":1,"885":1,"887":1,"888":2,"889":3,"890":2,"891":2,"892":1,"893":5,"896":1,"900":1,"902":1,"904":3,"906":3,"908":1,"910":1,"915":1,"917":1,"919":1,"920":2,"921":3,"922":2,"923":1,"924":1,"925":3,"926":3,"927":1,"928":5,"931":1,"935":1,"937":1,"939":3,"941":3,"943":1,"945":1,"950":1,"952":1,"954":1,"955":2,"956":3,"957":2,"958":1,"959":3,"960":3,"961":1,"962":5,"965":1,"969":1,"971":1,"973":3,"975":3,"977":1,"979":1,"984":1,"986":1,"988":1,"989":2,"990":3,"991":2,"992":1,"993":3,"994":3,"995":1,"996":5,"999":1,"1003":1,"1005":1,"1007":3,"1009":3,"1011":1,"1013":1,"1018":1,"1020":1,"1022":1,"1023":2,"1024":3,"1025":2,"1026":1,"1027":3,"1028":3,"1029":1,"1030":5,"1033":1,"1037":1,"1039":1,"1041":3,"1043":3,"1045":1,"1047":1,"1052":1,"1054":1,"1056":1,"1057":2,"1058":3,"1059":2,"1060":1,"1061":3,"1062":3,"1063":1,"1064":5,"1067":1,"1071":1,"1073":1,"1075":3,"1077":3,"1079":1,"1081":1,"1086":1,"1088":1,"1090":1,"1091":2,"1092":3,"1093":2,"1094":1,"1095":3,"1096":3,"1097":1,"1098":5,"1101":1,"1105":1,"1107":1,"1109":3,"1111":3,"1113":1,"1115":1,"1120":1,"1122":1,"1124":1,"1125":2,"1126":3,"1127":2,"1128":1,"1129":3,"1130":3,"1131":1,"1132":5,"1135":1,"1139":1,"1141":1,"1143":3,"1145":3,"1147":1,"1149":1,"1154":1,"1156":1,"1158":1,"1159":2,"1160":3,"1161":2,"1162":1,"1163":3,"1164":3,"1165":1,"1166":5,"1169":1,"1173":1,"1175":1,"1177":3,"1179":3,"1181":1,"1183":1,"1188":1,"1190":1,"1192":1,"1194":2,"1195":3,"1196":2,"1197":6,"1198":5,"1199":3,"1200":9,"1201":6,"1203":5,"1204":6,"1205":1,"1207":1,"1208":2,"1209":3,"1213":2,"1214":1,"1215":2,"1216":3,"1217":2,"1218":1,"1219":5,"1222":1,"1226":1,"1228":1,"1230":3,"1232":3,"1234":1,"1236":1,"1241":1,"1243":1,"1245":1,"1246":2,"1247":5,"1248":12,"1252":6,"1254":1,"1255":1,"1259":1,"1260":4,"1263":4,"1266":1,"1267":2,"1268":1,"1269":9,"1272":1,"1274":1,"1276":1,"1278":4,"1280":4,"1281":1,"1282":1,"1283":1,"1284":2,"1285":2,"1286":1,"1287":3,"1288":7,"1290":1,"1291":1,"1292":3,"1293":1,"1294":2,"1295":1,"1296":1,"1297":5,"1298":2,"1299":6,"1300":3,"1301":2,"1302":1,"1303":6,"1307":3,"1309":3,"1310":1,"1311":6,"1312":4,"1313":4,"1315":2,"1316":1,"1317":1,"1318":2,"1319":1,"1320":5,"1322":4,"1323":1,"1324":1,"1325":1,"1326":1,"1327":1,"1328":1,"1329":4,"1330":1,"1331":3,"1332":2,"1336":1,"1337":2,"1338":1,"1339":1,"1340":3,"1342":5,"1343":3,"1345":2,"1346":1,"1347":2,"1348":5,"1349":4,"1350":1,"1351":1,"1353":3,"1354":1,"1356":4,"1357":1,"1358":1,"1359":2,"1362":1,"1364":1,"1365":8,"1366":4,"1367":1,"1368":2,"1369":2,"1370":1,"1372":2,"1373":1,"1376":2,"1377":1,"1378":13,"1380":4,"1381":7,"1382":3,"1388":7,"1389":1,"1390":5,"1391":14,"1392":4,"1394":1,"1395":4,"1396":4,"1397":2,"1398":2,"1399":5,"1400":1,"1401":1,"1403":3,"1405":3,"1406":2,"1407":5,"1408":1,"1409":8,"1410":4,"1412":1,"1413":1,"1414":3,"1415":3,"1416":5,"1417":27,"1418":2,"1419":3,"1420":1,"1421":2,"1422":16,"1423":10,"1424":3,"1425":3,"1426":1,"1427":3,"1428":9,"1430":1,"1431":4,"1433":7,"1434":2,"1435":1,"1436":2,"1438":3,"1439":4,"1440":6,"1441":1,"1442":4,"1443":2,"1446":12,"1447":5,"1448":2,"1449":1,"1450":2,"1451":3,"1452":1,"1453":1,"1454":2,"1455":2,"1457":3,"1462":1,"1463":3,"1464":5,"1465":2,"1466":1,"1467":3,"1468":1,"1470":5,"1471":9,"1472":18,"1473":4,"1474":2,"1475":2,"1477":2,"1478":6,"1479":1,"1480":7,"1481":2,"1482":5,"1483":6,"1484":3,"1485":7,"1486":7,"1487":3,"1488":1,"1489":2,"1490":10,"1491":2,"1492":10,"1493":7,"1495":1,"1497":1,"1498":2,"1499":3,"1500":1,"1501":1,"1502":1,"1503":9,"1510":3,"1517":3,"1518":7,"1520":2,"1522":11,"1524":4,"1525":6,"1526":4,"1527":2,"1528":7,"1529":3,"1532":4,"1533":2,"1534":4,"1535":6,"1536":1,"1537":4,"1538":17,"1539":9,"1540":3,"1541":1,"1543":1,"1544":4,"1545":4,"1546":7,"1549":4,"1551":5,"1554":2,"1556":8,"1557":3,"1558":6,"1567":2,"1569":1,"1578":2,"1579":1,"1589":9,"1590":4,"1591":6,"1592":4,"1593":6,"1594":5,"1595":2,"1598":2,"1599":1,"1600":3,"1601":2,"1602":5,"1603":1,"1604":1,"1605":3,"1606":1,"1608":3,"1609":5,"1610":2,"1612":12,"1613":1,"1614":1,"1615":1,"1617":1,"1618":2,"1619":2,"1620":2,"1621":2,"1622":7,"1623":4,"1624":4,"1625":9,"1626":2,"1627":6,"1628":4,"1629":3,"1630":7,"1631":1,"1633":4,"1634":2,"1639":2,"1640":1,"1641":2,"1642":4,"1645":4,"1646":1,"1654":2,"1655":4,"1656":2,"1659":3,"1660":1,"1661":8,"1662":5,"1663":3,"1664":3,"1665":2,"1666":2,"1667":4,"1668":3,"1669":2,"1671":1,"1672":1,"1675":3,"1676":1,"1678":3,"1680":4,"1681":13,"1682":2,"1684":1,"1685":4,"1687":2,"1688":1,"1690":4,"1697":1,"1698":1,"1699":6,"1701":1,"1702":2,"1705":2,"1707":1,"1709":2,"1711":1,"1712":5,"1713":3,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1720":2,"1722":2,"1725":1,"1726":2,"1728":1,"1730":3,"1731":1,"1732":2,"1733":1,"1735":3,"1736":1,"1737":3,"1738":1,"1739":1,"1740":1,"1741":2,"1742":5,"1747":2,"1749":1,"1750":1,"1752":2,"1754":2,"1756":1,"1759":2,"1761":1,"1762":2,"1765":1,"1766":8,"1768":4,"1769":2,"1770":1,"1772":1,"1773":1,"1774":2,"1776":3,"1777":3,"1779":4,"1781":23,"1782":2,"1783":2,"1784":3,"1785":4,"1786":3,"1787":4,"1788":11,"1789":4,"1790":1,"1791":4,"1792":1,"1793":1,"1794":2,"1795":2,"1796":3,"1797":2,"1800":2,"1801":5,"1802":11,"1803":5,"1804":1,"1809":1,"1810":2,"1811":2,"1815":1,"1816":1,"1821":1,"1824":2,"1827":3,"1830":4,"1833":5,"1835":3,"1836":2,"1837":1,"1839":2,"1841":2,"1843":3,"1844":3,"1845":3,"1846":14,"1847":2,"1849":6,"1850":8,"1851":2,"1852":8,"1855":3,"1858":1,"1860":1,"1862":1,"1866":2,"1868":1,"1870":2,"1871":1,"1872":2,"1873":1,"1874":2,"1875":1,"1876":2,"1880":1,"1882":1,"1884":1,"1886":1,"1888":1,"1890":2,"1891":1,"1892":2,"1894":1,"1896":1,"1897":1,"1898":1,"1899":1,"1900":2,"1901":1,"1902":2,"1908":1,"1910":1,"1911":1,"1912":1,"1915":1,"1917":1,"1919":3,"1921":2,"1922":2,"1923":5,"1925":49,"1926":2,"1930":1,"1931":2,"1932":2,"1933":5,"1934":3,"1935":8,"1936":4,"1937":9,"1938":7,"1939":11,"1940":1,"1944":3,"1945":1,"1946":2,"1947":5,"1948":4,"1949":10,"1951":1,"1952":11,"1953":9,"1954":31,"1957":2,"1958":1,"1959":1,"1960":2,"1961":4,"1962":8,"1964":4,"1965":2,"1966":6,"1967":4,"1968":11,"1969":2,"1970":3,"1971":5,"1973":2,"1974":9,"1975":1,"1976":3,"1977":2,"1978":5,"1979":5,"1980":3,"1981":7,"1982":4,"1983":18,"1984":3,"1985":9,"1986":8,"1987":1,"1988":7,"1989":3,"1990":15,"1992":2,"1993":5,"1994":8,"1995":1,"1997":3,"1998":4,"1999":4,"2000":2,"2001":1,"2002":1,"2003":3,"2004":2,"2006":1,"2008":4,"2009":3,"2011":3,"2012":5,"2013":2,"2015":1,"2016":6,"2017":1,"2022":2,"2024":2,"2026":2,"2028":2,"2030":2,"2032":1,"2037":5,"2038":1,"2043":4,"2046":4,"2047":1,"2048":9,"2049":1,"2050":2,"2051":1,"2052":2,"2053":2,"2054":3,"2055":1,"2056":1,"2057":11,"2058":4,"2059":1,"2062":1,"2064":2,"2065":2,"2068":4,"2069":5,"2070":3,"2071":2,"2072":4,"2074":2,"2077":4,"2078":5,"2079":1,"2080":3,"2081":3,"2082":14,"2083":2,"2085":21,"2086":7,"2087":1,"2088":8,"2089":5,"2090":2,"2091":13,"2094":3,"2095":1,"2096":7,"2097":2,"2100":1,"2102":1,"2104":1,"2108":4,"2110":3,"2112":2,"2113":1,"2114":2,"2115":1,"2116":2,"2117":1,"2118":2,"2122":1,"2124":1,"2126":1,"2128":1,"2130":1,"2132":1,"2134":1,"2136":1,"2138":1,"2140":1,"2142":1,"2144":2,"2145":1,"2146":2,"2148":1,"2150":1,"2151":1,"2152":1,"2153":1,"2154":2,"2155":1,"2156":2,"2160":6,"2161":1,"2162":6,"2168":1,"2170":1,"2171":1,"2172":1,"2175":1,"2177":1,"2178":6,"2179":9,"2180":1,"2181":4,"2182":9,"2184":2,"2185":12,"2186":1,"2187":6,"2188":3,"2189":11,"2191":6,"2192":2,"2193":2,"2194":3,"2195":1,"2198":20,"2199":7,"2200":3,"2201":9,"2202":3,"2205":5,"2206":2,"2207":3,"2208":6,"2210":3,"2211":3,"2212":1,"2213":3,"2214":1,"2215":1,"2216":1,"2217":4,"2219":2,"2220":1,"2221":2,"2222":2,"2223":3,"2225":1,"2226":1,"2229":1,"2231":2,"2233":1,"2235":2,"2237":1,"2239":2,"2241":2,"2243":2,"2245":2,"2247":1,"2248":1,"2249":2,"2250":1,"2251":2,"2252":1,"2253":3,"2254":4,"2258":1,"2259":2,"2260":11,"2261":1,"2263":2,"2264":2,"2265":3,"2266":1,"2267":3,"2268":3,"2269":2,"2270":2,"2271":6,"2272":14,"2273":9,"2274":6,"2275":11,"2276":19,"2277":20,"2278":10,"2280":6,"2281":3,"2284":4,"2285":2,"2286":5,"2287":2,"2288":9,"2289":2,"2290":26,"2292":2,"2293":14,"2294":10,"2295":5,"2296":4,"2297":8,"2298":10,"2300":13,"2301":4,"2302":1,"2303":2,"2304":1,"2305":3,"2306":1,"2309":12,"2310":10,"2312":2,"2315":3,"2316":2,"2317":25,"2318":6,"2319":21,"2320":6,"2322":4,"2323":1,"2325":1,"2326":3,"2327":8,"2328":7,"2329":10,"2330":9,"2331":17,"2332":7,"2337":1,"2338":1,"2339":1,"2348":1,"2350":1,"2352":1,"2364":1,"2365":1,"2369":1,"2374":3,"2375":4,"2376":1,"2377":11,"2378":2,"2379":7,"2380":1,"2381":5,"2382":3,"2384":9,"2386":3,"2387":14,"2388":5,"2389":4,"2390":7,"2392":7,"2393":2,"2394":4,"2395":3,"2396":3,"2397":10,"2399":5,"2400":2,"2401":5,"2402":3,"2403":2,"2404":5,"2406":8,"2408":8,"2410":8,"2411":3,"2412":1,"2413":1,"2415":2,"2416":4,"2417":21,"2418":33,"2419":1,"2422":2,"2423":10,"2424":2,"2425":5,"2427":9,"2428":16,"2429":12,"2430":7,"2431":12,"2432":5,"2433":1,"2434":8,"2435":2,"2436":1,"2437":2,"2439":2,"2441":2,"2444":4,"2445":2,"2446":1,"2447":5,"2450":3,"2452":2,"2453":3,"2454":2,"2455":5,"2456":3,"2458":2,"2459":3,"2460":4,"2461":2,"2462":3,"2464":5,"2465":1,"2466":18,"2467":1,"2469":1,"2470":4,"2471":2,"2472":3,"2473":1,"2474":5,"2475":3,"2478":1,"2479":2,"2480":1,"2481":5,"2482":7,"2483":9,"2484":2,"2485":2,"2486":1,"2487":2,"2488":2,"2489":2,"2490":1,"2494":1,"2496":1,"2498":2,"2499":2,"2501":2,"2502":8,"2503":5,"2504":3,"2505":2,"2506":3,"2507":1,"2508":12,"2519":1,"2520":3,"2521":3,"2524":1,"2527":1,"2528":11,"2535":1,"2539":49,"2540":3,"2547":1,"2552":7,"2553":1,"2554":3,"2556":1,"2557":2,"2558":5,"2559":5,"2560":2,"2561":4,"2562":1,"2563":4,"2564":3,"2565":1,"2566":6,"2567":15,"2568":10,"2569":9,"2570":3,"2572":2,"2573":11,"2575":3,"2576":7,"2577":3,"2579":7,"2580":4,"2582":1,"2583":5,"2584":3,"2585":3,"2586":8,"2587":7,"2588":4,"2589":3,"2590":8,"2591":5,"2592":3,"2593":2,"2594":6,"2595":8,"2596":2,"2597":3,"2598":4,"2599":5,"2600":1,"2601":2,"2602":1,"2603":3,"2605":1,"2606":4,"2607":1,"2608":1,"2609":5,"2610":4,"2611":1,"2612":6,"2613":3,"2614":4,"2615":4,"2616":9,"2617":3,"2618":3,"2619":5,"2620":4,"2621":2,"2622":1,"2624":1,"2627":2,"2628":12,"2629":6,"2630":2,"2632":8,"2633":2,"2634":16,"2635":4,"2636":5,"2637":13,"2638":4,"2639":14,"2640":22,"2641":4,"2642":1,"2643":1,"2645":2,"2646":1,"2650":1,"2651":11,"2652":6,"2653":3,"2655":1,"2656":4,"2657":1,"2658":8,"2659":3,"2660":1,"2662":1,"2663":3,"2664":3,"2665":3,"2667":4,"2668":3,"2669":11,"2670":1,"2671":5,"2673":7,"2674":28,"2675":3,"2676":2,"2679":2,"2680":1,"2682":4,"2683":2,"2684":3,"2685":17,"2686":5,"2687":2,"2690":2,"2691":6,"2694":5,"2695":3,"2696":2,"2697":1,"2698":1,"2700":5,"2701":1,"2702":3,"2703":3,"2705":4,"2706":1,"2707":7,"2709":11,"2710":4,"2711":1,"2712":1,"2713":3,"2714":8,"2715":2,"2716":1,"2717":3,"2718":2,"2720":5,"2721":4,"2722":2,"2726":9,"2727":6,"2728":39,"2729":8,"2730":5,"2731":6,"2735":2,"2736":4,"2739":1,"2741":3,"2742":1,"2748":1,"2749":1,"2750":1,"2751":2,"2752":1,"2753":7,"2754":7,"2755":15,"2756":42,"2757":61,"2758":7,"2759":4,"2761":6,"2762":1,"2764":6,"2766":1,"2767":2,"2770":1,"2771":1,"2774":2,"2775":3,"2777":3,"2778":7,"2779":1,"2780":1,"2782":2,"2784":6,"2785":3,"2786":5,"2787":3,"2788":2,"2789":5,"2790":3,"2791":1,"2792":3,"2793":1,"2794":13,"2795":10,"2796":3,"2797":1,"2799":1,"2800":2,"2806":1,"2807":2,"2808":1,"2823":1,"2824":2,"2825":2,"2827":2,"2828":2,"2831":1,"2833":1,"2836":3,"2841":1,"2842":2,"2843":1,"2844":1,"2846":2,"2851":4,"2852":3,"2854":2,"2855":3,"2856":4,"2857":7,"2858":6,"2859":1,"2860":2,"2862":1,"2863":1,"2864":4,"2865":3,"2867":6,"2869":5,"2870":1,"2871":12,"2872":6,"2873":1,"2874":2,"2875":3,"2876":6,"2877":10,"2878":14,"2879":7,"2880":18,"2881":1,"2882":3,"2883":2,"2884":3,"2885":1,"2886":7,"2888":7,"2889":6,"2890":5,"2891":2,"2892":2,"2894":4,"2895":2,"2897":2,"2901":5,"2902":9,"2903":1,"2905":3,"2906":3,"2907":3,"2908":2,"2909":4,"2910":9,"2911":4,"2912":21,"2913":5,"2914":3,"2915":2,"2919":2,"2920":6,"2921":5,"2922":11,"2923":5,"2924":4,"2925":4,"2926":5,"2927":7,"2928":4,"2929":15,"2930":1,"2931":13,"2932":2,"2933":2,"2934":2,"2935":1,"2936":3,"2937":3,"2938":10,"2939":4,"2940":4,"2941":7,"2942":2,"2943":3,"2944":3,"2945":6,"2946":2,"2947":4,"2948":3,"2949":9,"2950":17}}],["th",{"2":{"1622":1}}],["th+tl",{"2":{"1285":1}}],["thus",{"2":{"403":1,"1205":1,"1288":1,"1368":1,"1378":1,"1462":1,"1501":1,"1593":1,"1788":1,"2269":1,"2319":1,"2394":1,"2470":1,"2475":1,"2570":1,"2634":1,"2696":1,"2703":1,"2741":1,"2886":1,"2912":1,"2920":1,"2929":1}}],["thumb",{"2":{"199":1,"294":1,"2927":2}}],["threads",{"2":{"2387":1}}],["threading",{"0":{"537":1}}],["threshold",{"0":{"246":1},"2":{"246":2,"249":1,"2003":1,"2931":1}}],["three",{"0":{"361":1,"1826":1},"1":{"1827":1,"1828":1},"2":{"98":1,"175":1,"196":1,"344":1,"361":1,"521":1,"555":1,"618":1,"633":1,"639":1,"1351":1,"1503":1,"1520":1,"1521":1,"1538":1,"1604":2,"1670":2,"1784":2,"1798":1,"1801":1,"1835":1,"1934":1,"1945":1,"1954":1,"2037":1,"2191":1,"2252":2,"2284":2,"2292":1,"2300":2,"2308":1,"2310":3,"2317":1,"2330":1,"2466":1,"2522":1,"2910":1,"2912":2,"2914":1}}],["throttling",{"2":{"646":1,"2275":1}}],["throttled",{"2":{"2277":1}}],["throttle",{"2":{"149":1,"570":1,"1974":1,"1985":2,"1986":1,"2275":1,"2754":1,"2757":6}}],["thrown",{"2":{"575":1}}],["throw",{"2":{"114":1,"1365":1}}],["throughout",{"2":{"1766":1}}],["through",{"0":{"1431":1},"2":{"110":1,"160":1,"181":1,"224":1,"232":1,"323":1,"381":1,"416":2,"433":1,"561":1,"588":1,"593":1,"633":1,"639":1,"665":1,"690":1,"721":1,"744":1,"1319":1,"1343":1,"1411":1,"1422":2,"1431":1,"1433":1,"1462":1,"1472":1,"1480":1,"1483":1,"1484":2,"1489":2,"1490":2,"1495":3,"1507":1,"1508":1,"1513":1,"1514":2,"1532":1,"1541":1,"1543":1,"1558":1,"1563":1,"1592":1,"1594":1,"1629":1,"1667":2,"1681":2,"1742":2,"1795":1,"1848":4,"1852":1,"2011":1,"2084":6,"2085":1,"2087":1,"2091":1,"2181":2,"2238":1,"2240":1,"2242":1,"2244":1,"2252":1,"2309":1,"2310":1,"2327":2,"2331":1,"2332":2,"2377":2,"2387":1,"2392":1,"2421":1,"2423":1,"2427":1,"2429":1,"2432":1,"2441":1,"2466":3,"2470":1,"2474":1,"2479":1,"2506":1,"2524":3,"2527":1,"2528":2,"2537":4,"2544":2,"2545":6,"2552":2,"2559":1,"2560":1,"2568":1,"2621":1,"2632":1,"2662":1,"2674":1,"2689":1,"2707":1,"2709":1,"2712":2,"2728":3,"2730":1,"2741":1,"2751":1,"2757":3,"2805":1,"2871":1,"2878":1,"2882":2,"2902":1,"2926":1,"2928":1,"2935":1}}],["thomas",{"2":{"2492":1,"2643":1}}],["thoughts",{"0":{"2895":1}}],["thought",{"2":{"541":1,"2430":1,"2579":1}}],["though",{"2":{"40":1,"396":1,"1371":1,"1380":1,"1464":1,"1477":1,"1498":1,"1528":1,"1541":1,"1781":1,"1785":1,"1786":1,"2424":1,"2427":1,"2429":1,"2640":1}}],["those",{"2":{"23":1,"39":1,"113":1,"190":1,"263":1,"265":1,"276":1,"366":1,"383":1,"489":1,"513":1,"538":1,"578":1,"600":2,"610":1,"703":1,"725":1,"753":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1200":1,"1215":1,"1284":1,"1349":1,"1351":1,"1358":1,"1470":1,"1472":1,"1473":1,"1490":1,"1503":1,"1522":1,"1788":1,"1801":1,"1837":1,"1855":1,"1953":1,"1986":1,"2043":1,"2094":1,"2294":1,"2300":1,"2329":1,"2387":1,"2431":1,"2469":1,"2562":1,"2580":1,"2590":1,"2605":1,"2669":1,"2690":1,"2709":1,"2718":1,"2733":1,"2751":1,"2756":1,"2780":1,"2789":1,"2885":1,"2888":1,"2889":1,"2902":1,"2912":1,"2929":1,"2932":2,"2938":2,"2945":2,"2947":1}}],["thickness",{"2":{"2422":1}}],["thicker",{"2":{"1974":1}}],["thiers",{"2":{"1528":1}}],["thier",{"2":{"1527":3,"1528":8}}],["thing",{"0":{"604":1},"2":{"201":1,"543":1,"568":1,"1338":1,"1378":1,"1388":1,"1415":1,"1446":3,"2317":1,"2474":1,"2718":1,"2886":1,"2932":1,"2944":1}}],["things",{"0":{"2307":1},"1":{"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1},"2":{"40":1,"113":1,"119":1,"158":1,"230":1,"340":1,"367":1,"414":1,"415":1,"448":1,"449":1,"450":1,"513":1,"514":1,"521":1,"560":1,"604":1,"613":2,"614":1,"626":1,"631":1,"633":1,"666":1,"690":1,"1340":1,"1365":1,"1447":1,"1450":1,"1490":1,"1491":1,"1503":1,"1592":1,"1919":1,"2038":1,"2276":2,"2280":1,"2300":2,"2317":1,"2326":1,"2387":1,"2390":1,"2397":1,"2417":1,"2428":2,"2432":1,"2434":2,"2456":1,"2466":1,"2473":1,"2503":1,"2563":1,"2564":1,"2568":1,"2579":2,"2612":1,"2632":2,"2665":1,"2668":1,"2685":1,"2731":1,"2739":1,"2889":1}}],["thinkpad",{"2":{"1368":1,"2037":1}}],["thinking",{"2":{"243":1,"331":1}}],["thinks",{"2":{"166":1}}],["think",{"2":{"119":1,"228":1,"512":1,"514":1,"540":1,"607":1,"613":1,"1319":1,"1499":2,"1762":1,"2460":1,"2466":1,"2726":1,"2884":1,"2935":1,"2950":1}}],["third",{"2":{"39":1,"288":1,"383":1,"603":1,"657":1,"717":1,"1493":1,"1626":1,"1786":1,"1827":1,"1830":1,"1833":1,"2303":2,"2309":1,"2317":1,"2320":1,"2331":1,"2569":1,"2728":1,"2903":1}}],["this",{"0":{"604":1,"1329":1,"1330":1},"2":{"0":1,"3":1,"5":1,"6":2,"11":1,"13":1,"18":1,"20":1,"21":1,"22":1,"23":1,"24":1,"26":3,"35":2,"39":6,"40":2,"43":1,"44":2,"47":2,"48":1,"49":1,"69":1,"70":2,"87":1,"88":1,"90":2,"99":3,"103":1,"104":1,"107":1,"111":1,"116":1,"119":1,"120":1,"123":1,"125":3,"126":2,"127":1,"131":1,"132":2,"133":1,"143":2,"149":1,"152":2,"154":1,"156":1,"166":2,"169":3,"171":1,"173":1,"174":1,"178":1,"179":1,"187":2,"188":1,"194":4,"198":1,"201":3,"202":1,"203":2,"206":2,"209":1,"212":2,"220":1,"222":1,"224":1,"228":2,"229":1,"230":2,"231":1,"233":1,"240":1,"243":1,"244":1,"251":1,"255":2,"256":1,"262":1,"263":5,"265":1,"268":1,"271":1,"273":4,"275":1,"276":2,"279":2,"302":1,"303":1,"306":1,"307":3,"312":5,"315":1,"320":1,"327":1,"331":1,"338":1,"340":1,"341":1,"346":1,"348":1,"350":1,"352":6,"353":1,"354":1,"355":2,"362":1,"365":2,"366":1,"369":1,"370":1,"371":1,"372":1,"374":1,"377":2,"378":1,"381":1,"382":2,"384":3,"385":1,"386":1,"388":1,"389":1,"390":1,"393":4,"396":1,"397":2,"399":3,"402":1,"403":3,"404":1,"405":1,"406":1,"407":1,"411":3,"412":5,"413":1,"414":2,"417":1,"420":1,"429":4,"430":3,"431":1,"432":1,"433":1,"434":1,"435":1,"436":1,"437":2,"439":1,"440":1,"441":1,"442":2,"443":1,"444":1,"445":2,"446":1,"447":1,"448":1,"449":1,"450":1,"452":2,"453":2,"454":2,"455":2,"456":1,"458":1,"459":1,"460":2,"461":4,"462":2,"463":1,"464":1,"465":2,"466":2,"467":2,"468":2,"469":3,"470":1,"471":1,"472":1,"474":1,"486":1,"488":1,"489":5,"492":1,"493":1,"494":1,"495":3,"499":1,"505":2,"506":1,"507":1,"509":2,"512":2,"516":1,"523":1,"524":2,"525":1,"526":1,"529":1,"537":1,"539":1,"540":1,"541":2,"542":1,"543":1,"544":2,"554":1,"555":1,"556":1,"557":2,"559":1,"560":1,"561":1,"564":3,"567":1,"569":2,"570":1,"571":1,"572":2,"574":2,"575":3,"576":1,"579":1,"580":2,"582":2,"583":2,"584":1,"587":1,"588":8,"591":1,"592":1,"593":6,"594":1,"595":1,"598":2,"600":4,"603":2,"607":1,"609":1,"610":1,"611":1,"613":3,"622":1,"623":2,"624":1,"625":3,"626":1,"629":2,"631":2,"633":2,"634":4,"635":1,"637":2,"639":5,"640":3,"641":1,"644":2,"645":2,"646":1,"647":1,"648":3,"651":5,"655":1,"656":2,"657":4,"658":1,"659":1,"660":1,"661":3,"664":1,"665":3,"667":1,"668":3,"669":4,"670":1,"672":3,"673":1,"674":1,"675":4,"676":1,"679":2,"680":2,"681":1,"682":1,"683":1,"684":2,"686":2,"687":6,"688":5,"689":1,"690":2,"691":2,"695":4,"699":2,"701":2,"702":1,"706":1,"707":1,"717":1,"719":1,"721":3,"722":2,"725":1,"727":1,"729":2,"733":1,"735":1,"741":1,"742":2,"746":2,"749":1,"750":1,"752":2,"753":4,"754":4,"755":1,"756":1,"757":3,"760":1,"762":1,"766":1,"767":1,"768":2,"769":1,"770":1,"772":2,"776":1,"797":2,"801":1,"805":2,"809":1,"812":1,"816":1,"820":1,"822":1,"827":1,"829":1,"831":2,"835":1,"839":1,"843":1,"847":1,"849":1,"856":1,"858":1,"860":1,"861":1,"863":2,"867":1,"871":1,"875":1,"879":1,"881":1,"888":1,"890":1,"891":2,"893":2,"897":1,"903":1,"907":1,"911":1,"913":1,"920":1,"922":1,"923":1,"925":1,"926":1,"928":2,"932":1,"938":1,"942":1,"946":1,"948":1,"955":1,"957":1,"959":1,"960":1,"962":2,"966":1,"972":1,"976":1,"980":1,"982":1,"989":1,"991":1,"993":1,"994":1,"996":2,"1000":1,"1006":1,"1010":1,"1014":1,"1016":1,"1023":1,"1025":1,"1027":1,"1028":1,"1030":2,"1034":1,"1040":1,"1044":1,"1048":1,"1050":1,"1057":1,"1059":1,"1061":1,"1062":1,"1064":2,"1068":1,"1074":1,"1078":1,"1082":1,"1084":1,"1091":1,"1093":1,"1094":1,"1095":1,"1096":1,"1098":2,"1102":1,"1108":1,"1112":1,"1116":1,"1118":1,"1125":1,"1127":1,"1128":1,"1129":1,"1130":1,"1132":2,"1136":1,"1142":1,"1146":1,"1150":1,"1152":1,"1159":1,"1161":1,"1163":1,"1164":1,"1166":2,"1170":1,"1176":1,"1180":1,"1184":1,"1186":1,"1192":1,"1193":2,"1194":2,"1197":2,"1199":1,"1200":5,"1203":1,"1204":1,"1205":2,"1208":2,"1214":1,"1215":1,"1217":1,"1219":2,"1223":1,"1229":1,"1233":1,"1237":1,"1239":1,"1247":1,"1248":1,"1250":1,"1252":1,"1265":1,"1266":1,"1271":1,"1272":1,"1276":1,"1281":1,"1283":2,"1290":2,"1292":3,"1293":1,"1294":2,"1296":1,"1297":2,"1298":1,"1299":1,"1303":1,"1305":1,"1306":1,"1312":1,"1313":1,"1314":1,"1315":2,"1319":2,"1320":5,"1321":1,"1329":1,"1330":1,"1331":1,"1332":3,"1336":1,"1342":2,"1344":1,"1347":1,"1348":5,"1349":1,"1350":1,"1352":1,"1354":5,"1356":3,"1357":1,"1359":2,"1361":1,"1365":1,"1366":1,"1368":1,"1370":1,"1377":1,"1378":1,"1380":3,"1381":4,"1382":3,"1388":3,"1389":2,"1392":1,"1398":1,"1404":1,"1407":2,"1409":2,"1410":1,"1412":1,"1413":3,"1415":3,"1416":2,"1417":16,"1420":1,"1421":1,"1422":7,"1423":4,"1425":2,"1427":1,"1428":1,"1429":2,"1430":1,"1431":2,"1434":1,"1435":1,"1438":1,"1441":1,"1442":3,"1444":1,"1446":2,"1447":5,"1448":3,"1449":1,"1450":1,"1452":2,"1453":1,"1454":2,"1455":3,"1458":1,"1459":1,"1460":1,"1462":3,"1463":3,"1464":4,"1465":2,"1466":2,"1467":5,"1468":1,"1470":3,"1471":6,"1472":11,"1473":1,"1479":1,"1480":1,"1481":1,"1484":1,"1485":6,"1488":1,"1490":6,"1491":4,"1492":5,"1493":7,"1498":3,"1499":1,"1502":1,"1503":7,"1510":2,"1518":3,"1520":1,"1524":1,"1526":1,"1527":3,"1528":3,"1529":2,"1532":1,"1533":1,"1534":1,"1535":3,"1537":3,"1538":6,"1539":1,"1540":1,"1541":1,"1545":2,"1546":3,"1548":1,"1549":1,"1550":1,"1551":1,"1554":1,"1556":1,"1557":1,"1558":2,"1577":1,"1578":1,"1589":4,"1591":3,"1593":2,"1594":3,"1595":1,"1597":2,"1601":1,"1602":2,"1605":2,"1606":1,"1608":1,"1609":3,"1610":1,"1612":2,"1614":1,"1616":1,"1620":3,"1622":2,"1623":2,"1624":1,"1627":1,"1628":1,"1631":1,"1633":3,"1635":1,"1636":1,"1639":1,"1641":1,"1642":1,"1655":2,"1656":2,"1661":2,"1662":4,"1663":1,"1664":1,"1665":3,"1666":1,"1667":2,"1668":2,"1670":3,"1672":1,"1675":1,"1676":2,"1681":2,"1683":1,"1685":2,"1687":1,"1688":1,"1689":1,"1697":1,"1702":2,"1704":1,"1706":1,"1707":1,"1708":1,"1717":1,"1721":1,"1730":1,"1732":1,"1734":1,"1736":1,"1738":1,"1739":1,"1740":1,"1765":1,"1766":2,"1768":1,"1770":2,"1772":1,"1774":4,"1776":2,"1779":3,"1781":16,"1782":1,"1783":2,"1784":1,"1785":1,"1786":7,"1788":2,"1790":1,"1794":1,"1795":2,"1800":2,"1801":4,"1802":3,"1803":4,"1804":1,"1838":3,"1839":1,"1840":1,"1841":1,"1844":1,"1846":6,"1847":2,"1855":2,"1865":1,"1867":1,"1913":2,"1916":2,"1926":1,"1935":3,"1936":2,"1937":1,"1938":7,"1939":2,"1940":1,"1945":1,"1946":1,"1947":2,"1948":1,"1949":2,"1952":1,"1953":4,"1956":1,"1957":2,"1959":1,"1960":2,"1961":2,"1964":1,"1966":1,"1967":1,"1968":3,"1969":2,"1973":2,"1976":3,"1977":2,"1978":1,"1979":2,"1980":1,"1981":1,"1982":2,"1983":4,"1985":4,"1986":4,"1990":14,"1992":2,"1993":2,"1994":2,"1999":1,"2008":1,"2011":1,"2014":2,"2016":2,"2040":1,"2044":1,"2048":2,"2054":2,"2057":1,"2065":1,"2069":1,"2071":1,"2072":1,"2074":2,"2075":1,"2076":1,"2077":1,"2080":1,"2082":6,"2083":2,"2086":3,"2089":1,"2091":2,"2094":2,"2096":4,"2097":1,"2107":1,"2109":1,"2173":2,"2176":2,"2178":2,"2180":1,"2181":2,"2183":3,"2189":2,"2191":1,"2201":12,"2205":1,"2206":1,"2207":1,"2213":1,"2219":1,"2221":1,"2226":2,"2228":1,"2232":1,"2234":1,"2247":1,"2248":1,"2249":1,"2250":1,"2259":1,"2260":1,"2261":1,"2263":1,"2265":2,"2270":1,"2271":4,"2272":2,"2273":5,"2274":3,"2275":13,"2276":19,"2277":4,"2278":17,"2283":1,"2284":1,"2285":1,"2286":2,"2287":1,"2288":2,"2289":1,"2292":3,"2294":3,"2297":1,"2298":1,"2300":10,"2303":1,"2308":1,"2309":8,"2310":5,"2313":2,"2316":1,"2317":6,"2318":2,"2319":8,"2320":3,"2322":1,"2325":2,"2327":1,"2329":1,"2330":3,"2331":8,"2344":1,"2345":1,"2346":1,"2375":1,"2377":2,"2378":2,"2379":5,"2381":1,"2382":3,"2384":2,"2386":2,"2387":5,"2388":1,"2389":1,"2390":1,"2391":1,"2392":1,"2393":2,"2394":1,"2395":1,"2396":2,"2397":2,"2399":1,"2400":1,"2401":2,"2402":2,"2403":2,"2404":1,"2406":3,"2408":3,"2410":3,"2411":1,"2413":1,"2414":4,"2416":1,"2417":3,"2418":21,"2422":2,"2423":2,"2425":1,"2427":4,"2428":5,"2429":1,"2431":2,"2434":1,"2435":2,"2437":3,"2441":2,"2444":1,"2450":3,"2451":1,"2453":4,"2454":2,"2455":2,"2456":5,"2457":3,"2460":3,"2464":1,"2466":14,"2467":1,"2468":1,"2469":3,"2470":1,"2471":1,"2473":1,"2474":1,"2477":1,"2481":1,"2482":3,"2490":1,"2499":2,"2500":1,"2501":2,"2502":2,"2503":3,"2504":2,"2505":2,"2506":1,"2508":2,"2519":1,"2521":2,"2522":1,"2554":3,"2556":1,"2558":1,"2560":1,"2561":1,"2562":5,"2563":1,"2564":4,"2565":1,"2566":1,"2568":3,"2569":3,"2571":1,"2572":2,"2573":7,"2574":1,"2577":1,"2579":2,"2580":3,"2581":1,"2582":1,"2583":1,"2584":2,"2585":3,"2586":1,"2587":2,"2589":1,"2590":1,"2591":1,"2594":1,"2595":2,"2597":1,"2598":4,"2603":1,"2610":1,"2612":5,"2614":2,"2616":9,"2618":1,"2621":1,"2622":1,"2628":5,"2629":2,"2632":3,"2633":2,"2634":4,"2635":1,"2637":4,"2639":5,"2640":3,"2641":1,"2650":3,"2651":3,"2652":1,"2653":2,"2658":2,"2659":1,"2663":1,"2664":2,"2667":6,"2668":1,"2669":3,"2671":4,"2673":1,"2674":6,"2675":1,"2678":2,"2679":1,"2680":1,"2682":1,"2683":1,"2684":2,"2685":8,"2686":5,"2687":4,"2690":3,"2691":1,"2694":1,"2695":2,"2700":1,"2702":1,"2703":2,"2704":1,"2707":2,"2709":3,"2711":1,"2712":2,"2714":2,"2715":1,"2719":1,"2720":1,"2721":1,"2725":2,"2726":5,"2727":2,"2728":5,"2729":2,"2730":2,"2731":1,"2732":3,"2733":2,"2734":1,"2741":4,"2750":1,"2751":2,"2753":1,"2754":3,"2755":8,"2756":1,"2757":7,"2764":3,"2765":1,"2767":1,"2769":1,"2772":1,"2773":1,"2774":1,"2775":3,"2776":5,"2777":1,"2778":1,"2779":1,"2782":4,"2784":5,"2785":1,"2786":5,"2790":2,"2793":1,"2794":5,"2795":3,"2835":1,"2851":1,"2852":2,"2860":1,"2869":3,"2882":1,"2884":3,"2886":2,"2889":8,"2890":3,"2891":3,"2893":5,"2895":1,"2899":1,"2901":1,"2902":1,"2905":1,"2906":1,"2910":6,"2911":2,"2912":4,"2913":1,"2914":7,"2915":1,"2919":1,"2920":7,"2921":5,"2922":2,"2923":3,"2924":1,"2925":4,"2926":5,"2927":3,"2929":4,"2931":7,"2934":1,"2935":2,"2936":3,"2937":3,"2938":5,"2939":2,"2940":3,"2941":4,"2944":1,"2945":1,"2950":4}}],["thank",{"2":{"2502":1}}],["thanks",{"2":{"235":1,"346":1,"603":1,"2387":1,"2447":1,"2472":1,"2730":1}}],["thankyou",{"2":{"116":1}}],["than",{"0":{"1355":1},"2":{"14":1,"36":1,"39":1,"40":1,"63":1,"112":1,"124":1,"152":1,"153":1,"181":1,"191":1,"194":1,"201":1,"212":2,"230":1,"234":1,"251":1,"323":1,"340":1,"433":4,"474":1,"477":1,"512":3,"514":1,"527":1,"535":1,"541":1,"561":1,"564":1,"570":2,"609":1,"613":1,"626":2,"629":1,"630":1,"655":1,"688":1,"754":1,"1192":2,"1199":1,"1247":1,"1296":1,"1297":1,"1330":1,"1365":1,"1368":1,"1413":1,"1423":1,"1425":1,"1426":1,"1427":3,"1442":1,"1446":1,"1455":1,"1463":1,"1470":1,"1490":1,"1491":1,"1498":1,"1499":1,"1503":2,"1518":2,"1529":1,"1532":1,"1533":2,"1538":1,"1593":2,"1609":1,"1670":1,"1681":1,"1766":1,"1781":1,"1801":1,"1803":1,"1923":1,"1953":2,"1954":1,"1965":1,"1986":1,"1988":1,"2009":1,"2011":1,"2180":1,"2183":1,"2207":1,"2260":1,"2275":1,"2293":1,"2295":1,"2309":4,"2310":1,"2318":1,"2400":2,"2402":1,"2417":2,"2418":1,"2427":1,"2441":1,"2454":1,"2466":1,"2490":1,"2499":1,"2559":1,"2569":1,"2573":2,"2589":1,"2591":1,"2622":1,"2634":1,"2650":1,"2651":1,"2677":1,"2712":1,"2727":1,"2728":2,"2729":1,"2751":1,"2757":1,"2784":1,"2787":1,"2791":1,"2834":1,"2911":1,"2914":4,"2919":2,"2920":1,"2922":2,"2925":1,"2949":1,"2950":1}}],["that",{"0":{"562":1,"563":1,"564":1,"1338":1,"1341":1,"1468":1,"2000":1},"1":{"1342":1},"2":{"0":3,"5":1,"6":2,"9":3,"13":1,"14":1,"18":1,"21":2,"24":1,"26":2,"28":1,"29":3,"35":1,"36":1,"39":2,"40":3,"42":3,"46":2,"47":1,"52":3,"70":1,"73":2,"75":1,"87":1,"90":1,"94":2,"95":1,"98":1,"99":1,"103":1,"110":1,"112":1,"114":3,"123":2,"124":2,"125":1,"126":1,"131":1,"132":2,"149":4,"152":2,"153":1,"154":1,"156":1,"163":2,"166":4,"169":1,"175":2,"178":1,"181":1,"190":1,"191":5,"194":1,"195":1,"199":3,"206":1,"214":3,"220":1,"224":1,"230":1,"233":1,"240":2,"243":1,"255":1,"256":1,"262":1,"263":1,"268":1,"275":1,"276":1,"297":1,"303":1,"306":1,"312":2,"314":1,"315":1,"317":2,"323":1,"327":1,"331":1,"338":1,"340":1,"362":1,"365":1,"367":1,"369":1,"373":2,"378":1,"381":1,"383":3,"386":2,"393":1,"396":1,"399":5,"403":3,"406":1,"407":2,"408":1,"409":1,"411":3,"412":2,"414":5,"415":1,"416":3,"417":1,"423":1,"429":2,"432":1,"443":1,"444":1,"458":1,"459":1,"461":1,"473":1,"474":2,"487":1,"490":1,"493":1,"494":4,"495":1,"496":1,"505":1,"511":1,"512":5,"513":1,"516":1,"519":1,"524":1,"525":1,"526":2,"530":1,"532":1,"533":2,"538":2,"539":1,"540":3,"541":2,"542":1,"547":1,"554":1,"555":1,"556":2,"557":1,"558":1,"559":1,"560":1,"561":1,"565":2,"568":3,"571":2,"578":2,"579":1,"582":1,"583":1,"584":1,"588":5,"589":2,"592":2,"593":2,"596":1,"597":3,"599":1,"604":1,"607":3,"609":6,"612":2,"613":4,"615":2,"623":1,"626":2,"627":1,"629":2,"630":2,"633":2,"634":1,"637":1,"643":2,"645":1,"646":2,"651":2,"656":2,"657":2,"658":1,"660":1,"661":2,"665":4,"668":1,"670":1,"673":1,"675":1,"681":1,"683":1,"685":1,"686":1,"687":2,"688":1,"689":2,"695":2,"696":3,"699":2,"701":2,"719":3,"721":1,"722":1,"723":1,"749":1,"750":1,"753":1,"754":1,"756":2,"759":1,"763":3,"797":1,"1192":2,"1196":1,"1197":1,"1198":1,"1200":1,"1203":3,"1204":3,"1206":1,"1209":1,"1213":1,"1283":1,"1290":1,"1291":1,"1312":1,"1313":1,"1315":1,"1316":1,"1318":1,"1327":1,"1336":3,"1338":1,"1342":2,"1343":1,"1348":1,"1349":1,"1350":1,"1356":2,"1365":3,"1371":1,"1372":1,"1377":1,"1378":3,"1380":1,"1381":4,"1382":2,"1389":1,"1398":3,"1406":1,"1407":1,"1409":3,"1410":2,"1413":6,"1415":1,"1416":3,"1417":11,"1418":1,"1419":3,"1421":1,"1422":6,"1423":1,"1424":1,"1427":5,"1428":3,"1429":1,"1433":1,"1438":2,"1440":1,"1446":5,"1447":1,"1448":2,"1449":1,"1451":1,"1452":1,"1455":1,"1464":6,"1466":1,"1467":2,"1470":8,"1471":4,"1472":14,"1477":1,"1481":1,"1484":2,"1485":4,"1486":1,"1487":1,"1491":1,"1492":4,"1497":2,"1499":1,"1500":1,"1501":2,"1502":1,"1503":4,"1510":1,"1514":1,"1516":1,"1517":1,"1518":1,"1522":1,"1523":1,"1524":1,"1526":1,"1527":2,"1528":2,"1532":1,"1533":3,"1538":2,"1539":1,"1542":1,"1544":1,"1545":1,"1551":1,"1554":1,"1558":1,"1589":5,"1590":1,"1591":3,"1592":2,"1593":2,"1597":1,"1600":3,"1605":1,"1612":2,"1615":1,"1621":1,"1623":1,"1628":1,"1630":1,"1633":1,"1645":1,"1661":3,"1662":2,"1664":3,"1666":2,"1671":2,"1681":4,"1684":1,"1686":1,"1687":1,"1738":1,"1740":1,"1769":1,"1771":1,"1772":1,"1773":1,"1774":1,"1776":1,"1781":5,"1784":1,"1785":1,"1786":2,"1787":3,"1788":4,"1789":1,"1790":1,"1791":2,"1794":1,"1795":2,"1801":2,"1802":1,"1835":1,"1836":5,"1838":1,"1846":3,"1849":2,"1919":1,"1923":1,"1930":1,"1934":2,"1937":1,"1948":1,"1952":2,"1953":1,"1954":3,"1957":1,"1965":2,"1967":2,"1968":2,"1974":1,"1976":2,"1983":3,"1984":1,"1985":4,"1986":2,"1987":1,"1988":2,"1990":1,"1992":3,"1994":1,"1998":1,"1999":4,"2007":1,"2008":2,"2009":1,"2011":2,"2012":1,"2013":4,"2014":3,"2016":1,"2048":1,"2054":1,"2057":1,"2065":1,"2069":1,"2070":3,"2072":1,"2074":2,"2082":3,"2085":4,"2086":2,"2087":1,"2178":1,"2179":2,"2187":1,"2189":1,"2198":1,"2209":1,"2210":1,"2211":1,"2216":1,"2218":1,"2219":1,"2222":1,"2258":1,"2260":1,"2261":1,"2263":1,"2264":1,"2265":3,"2266":1,"2267":1,"2270":1,"2272":5,"2273":1,"2275":3,"2276":1,"2277":1,"2278":8,"2279":1,"2280":2,"2281":1,"2287":1,"2289":1,"2290":3,"2291":1,"2292":1,"2294":1,"2295":3,"2296":1,"2297":1,"2298":3,"2300":1,"2301":1,"2303":1,"2308":2,"2309":6,"2310":6,"2317":12,"2318":1,"2319":5,"2320":1,"2329":1,"2331":1,"2375":1,"2377":1,"2379":1,"2381":2,"2382":2,"2384":2,"2386":1,"2387":3,"2388":1,"2389":3,"2390":1,"2394":1,"2397":1,"2399":2,"2404":2,"2411":1,"2413":1,"2414":3,"2415":1,"2417":9,"2418":3,"2419":1,"2422":1,"2423":1,"2424":1,"2425":1,"2427":2,"2428":6,"2429":1,"2430":3,"2431":3,"2434":4,"2435":1,"2437":2,"2439":1,"2447":2,"2452":1,"2453":6,"2454":2,"2456":1,"2459":1,"2460":2,"2461":4,"2462":1,"2463":1,"2464":2,"2466":13,"2471":1,"2474":3,"2482":1,"2484":1,"2485":1,"2487":1,"2488":1,"2489":1,"2496":1,"2498":1,"2501":1,"2502":1,"2503":1,"2508":2,"2521":2,"2530":1,"2553":1,"2559":1,"2560":1,"2562":1,"2563":1,"2564":2,"2566":1,"2567":1,"2569":1,"2570":2,"2572":1,"2573":1,"2578":1,"2579":4,"2580":1,"2582":1,"2583":1,"2584":2,"2585":6,"2586":2,"2587":1,"2589":3,"2590":1,"2599":4,"2600":1,"2601":1,"2606":1,"2607":2,"2609":1,"2611":1,"2612":1,"2616":3,"2617":1,"2619":4,"2622":1,"2626":1,"2627":1,"2628":3,"2629":3,"2630":1,"2633":2,"2634":9,"2635":2,"2636":1,"2637":2,"2639":4,"2640":9,"2650":2,"2652":1,"2653":2,"2657":1,"2658":1,"2659":1,"2664":1,"2665":1,"2667":2,"2668":1,"2669":1,"2670":2,"2671":3,"2672":1,"2673":1,"2674":2,"2676":2,"2679":1,"2684":1,"2685":2,"2686":1,"2687":2,"2690":1,"2694":1,"2695":2,"2701":1,"2702":1,"2705":1,"2706":1,"2707":1,"2709":4,"2710":1,"2711":1,"2716":2,"2717":2,"2721":3,"2722":1,"2726":1,"2727":1,"2728":6,"2729":5,"2731":6,"2732":1,"2733":1,"2738":1,"2754":6,"2755":1,"2756":2,"2757":5,"2758":1,"2765":1,"2767":1,"2772":1,"2776":1,"2780":3,"2781":1,"2782":1,"2784":2,"2786":3,"2787":2,"2790":1,"2792":1,"2794":4,"2795":3,"2796":1,"2797":1,"2803":1,"2805":1,"2807":2,"2808":1,"2810":1,"2814":1,"2815":1,"2817":2,"2820":1,"2821":1,"2822":1,"2825":1,"2827":1,"2828":1,"2829":1,"2830":1,"2831":2,"2832":1,"2833":2,"2834":1,"2840":2,"2843":1,"2844":1,"2845":1,"2847":1,"2852":1,"2869":1,"2871":1,"2878":1,"2886":3,"2889":4,"2890":4,"2891":1,"2892":2,"2894":1,"2901":2,"2902":2,"2906":1,"2907":1,"2909":1,"2910":1,"2912":12,"2914":3,"2915":1,"2919":1,"2920":2,"2921":1,"2922":2,"2923":1,"2926":3,"2927":1,"2929":4,"2932":3,"2934":1,"2935":3,"2937":4,"2938":4,"2940":2,"2941":1,"2943":1,"2944":3,"2945":9,"2946":1,"2948":5,"2950":3}}],["theory",{"2":{"2677":1}}],["theories",{"2":{"2296":1}}],["thekey",{"2":{"218":4,"222":1}}],["thermal",{"2":{"175":1}}],["thereafter",{"2":{"1936":1}}],["thereby",{"2":{"69":1}}],["therefore",{"2":{"18":1,"439":1,"695":2,"763":2,"766":1,"768":1,"1193":1,"1196":1,"1199":1,"1205":1,"1681":1,"1953":1,"1959":1,"2044":1,"2396":1,"2931":1,"2944":1}}],["there",{"0":{"618":1,"1343":1,"1499":1,"2933":1},"2":{"18":1,"99":1,"123":1,"131":1,"152":1,"154":1,"173":1,"178":1,"181":1,"190":1,"198":1,"201":1,"212":1,"224":1,"233":1,"238":1,"268":1,"276":1,"279":1,"288":1,"348":1,"353":1,"368":1,"381":1,"399":1,"403":1,"411":1,"415":1,"422":1,"473":1,"487":1,"491":1,"494":1,"508":1,"513":1,"544":1,"555":1,"564":1,"568":1,"581":1,"584":1,"593":1,"596":1,"597":1,"613":3,"620":1,"633":1,"651":1,"657":1,"660":1,"668":1,"685":1,"690":1,"714":1,"715":1,"719":1,"749":1,"750":3,"752":1,"755":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1206":1,"1219":1,"1282":1,"1296":1,"1297":1,"1311":1,"1336":3,"1337":3,"1346":1,"1350":1,"1351":1,"1365":2,"1378":2,"1395":1,"1409":2,"1416":2,"1428":2,"1444":1,"1448":1,"1451":1,"1462":1,"1481":1,"1484":1,"1485":1,"1487":1,"1498":2,"1502":1,"1503":2,"1510":2,"1517":1,"1518":1,"1522":2,"1524":1,"1529":1,"1538":1,"1593":1,"1612":1,"1615":1,"1620":1,"1621":1,"1623":1,"1627":1,"1641":1,"1662":2,"1664":1,"1671":1,"1676":1,"1681":1,"1685":1,"1787":1,"1794":1,"1835":1,"1855":1,"1919":1,"1923":1,"1937":2,"1944":1,"1952":1,"1954":1,"1964":1,"1965":1,"1968":1,"1984":1,"1987":1,"2002":1,"2007":1,"2014":1,"2016":1,"2037":1,"2044":1,"2079":1,"2094":1,"2179":1,"2183":1,"2198":1,"2210":1,"2211":1,"2220":1,"2261":1,"2270":1,"2272":1,"2275":1,"2276":1,"2278":1,"2280":1,"2284":1,"2290":1,"2292":1,"2295":1,"2300":1,"2309":1,"2310":1,"2316":1,"2317":1,"2325":2,"2326":1,"2381":1,"2384":1,"2387":1,"2388":1,"2416":1,"2418":1,"2422":1,"2424":1,"2425":1,"2427":1,"2428":1,"2431":1,"2433":1,"2435":1,"2439":1,"2450":1,"2481":1,"2482":1,"2499":1,"2501":1,"2560":1,"2568":1,"2569":1,"2579":2,"2580":2,"2581":1,"2585":1,"2586":1,"2590":1,"2609":1,"2614":1,"2617":1,"2619":2,"2652":5,"2657":1,"2659":1,"2662":1,"2668":1,"2669":2,"2671":1,"2676":1,"2683":1,"2710":1,"2716":1,"2720":1,"2722":1,"2725":1,"2726":1,"2729":1,"2730":1,"2750":1,"2753":1,"2756":1,"2757":1,"2780":1,"2781":2,"2784":1,"2786":1,"2787":1,"2792":1,"2794":1,"2886":1,"2887":1,"2888":1,"2889":2,"2890":1,"2892":1,"2895":3,"2896":1,"2897":3,"2902":1,"2913":1,"2931":2,"2933":2,"2937":1,"2942":3,"2944":1,"2945":2,"2947":1,"2948":1}}],["thedogkeyboard",{"2":{"143":2,"222":1}}],["they",{"2":{"124":1,"125":2,"169":2,"172":1,"196":1,"198":1,"214":1,"243":1,"265":1,"273":2,"276":1,"283":3,"331":1,"366":1,"370":2,"396":1,"414":1,"472":1,"475":1,"483":1,"489":1,"491":1,"494":1,"505":1,"512":1,"514":1,"525":1,"575":1,"578":1,"588":1,"597":1,"612":1,"633":1,"640":1,"661":1,"693":1,"702":1,"720":1,"763":1,"1248":1,"1351":1,"1378":2,"1382":1,"1417":1,"1427":1,"1448":2,"1514":1,"1532":2,"1533":4,"1542":1,"1597":1,"1611":1,"1612":1,"1616":1,"1628":1,"1661":2,"1662":1,"1665":1,"1787":1,"1788":1,"1846":2,"1983":1,"1986":1,"1999":1,"2006":1,"2016":2,"2048":2,"2056":1,"2072":1,"2082":2,"2181":1,"2191":1,"2261":1,"2265":1,"2278":1,"2300":2,"2308":2,"2310":2,"2317":1,"2320":1,"2331":1,"2374":1,"2401":1,"2413":1,"2429":2,"2434":1,"2437":1,"2454":1,"2460":1,"2466":1,"2499":1,"2502":1,"2553":1,"2561":1,"2565":1,"2566":2,"2567":1,"2576":1,"2589":1,"2590":2,"2594":1,"2677":1,"2680":2,"2691":1,"2711":1,"2717":1,"2720":1,"2726":2,"2728":4,"2729":2,"2741":1,"2742":1,"2750":1,"2751":1,"2756":4,"2757":2,"2782":1,"2794":1,"2796":1,"2800":1,"2884":1,"2886":1,"2889":2,"2909":2,"2912":1,"2913":2,"2929":1,"2937":1,"2946":1}}],["the60",{"2":{"102":3}}],["then",{"0":{"2315":1},"2":{"39":1,"70":1,"120":2,"152":1,"235":1,"289":1,"353":1,"366":1,"376":1,"393":1,"414":1,"416":1,"491":1,"559":1,"564":1,"565":1,"569":1,"586":1,"593":1,"599":2,"600":1,"612":1,"647":1,"656":1,"660":1,"666":1,"672":1,"688":1,"691":1,"701":1,"703":1,"720":1,"749":1,"763":1,"765":1,"768":1,"1246":1,"1248":2,"1267":1,"1284":1,"1297":1,"1318":1,"1332":1,"1336":1,"1338":2,"1339":1,"1348":1,"1365":1,"1377":2,"1378":1,"1407":1,"1409":1,"1410":1,"1415":1,"1417":2,"1422":1,"1446":1,"1448":2,"1455":1,"1457":1,"1462":1,"1464":1,"1470":2,"1471":2,"1472":1,"1482":1,"1485":1,"1492":2,"1498":5,"1499":1,"1500":1,"1503":2,"1525":1,"1527":1,"1539":2,"1594":3,"1598":1,"1602":1,"1614":1,"1618":1,"1622":2,"1624":1,"1628":1,"1642":1,"1656":1,"1661":1,"1666":1,"1667":1,"1678":2,"1681":3,"1738":1,"1762":1,"1763":1,"1768":1,"1781":1,"1784":2,"1785":3,"1786":3,"1787":1,"1797":1,"1849":9,"1851":1,"1855":1,"1939":1,"1945":1,"1958":1,"1962":1,"1965":1,"1968":1,"1985":1,"1992":1,"1999":2,"2000":1,"2058":1,"2059":2,"2065":1,"2066":1,"2073":1,"2076":1,"2085":15,"2086":1,"2090":1,"2094":1,"2096":1,"2179":1,"2210":1,"2222":1,"2226":2,"2260":1,"2268":1,"2269":1,"2271":1,"2272":1,"2277":2,"2278":1,"2284":1,"2300":2,"2309":2,"2310":3,"2312":1,"2315":1,"2317":2,"2319":3,"2329":2,"2330":2,"2331":3,"2344":4,"2387":1,"2391":1,"2393":1,"2398":1,"2399":1,"2400":1,"2401":1,"2404":1,"2405":1,"2416":2,"2417":2,"2418":1,"2427":2,"2432":1,"2450":1,"2453":1,"2466":1,"2474":1,"2483":1,"2504":1,"2508":1,"2562":1,"2567":2,"2616":1,"2620":1,"2632":1,"2633":1,"2634":4,"2635":1,"2637":1,"2639":1,"2640":2,"2641":1,"2650":2,"2663":1,"2669":3,"2674":1,"2680":1,"2704":1,"2728":2,"2756":11,"2757":3,"2782":2,"2789":2,"2790":1,"2800":1,"2834":1,"2889":1,"2895":1,"2910":1,"2912":3,"2914":2,"2920":3,"2921":2,"2922":2,"2925":1,"2926":2,"2929":1,"2932":1,"2935":1,"2938":1,"2942":1,"2945":1,"2949":2,"2950":3}}],["themself",{"2":{"414":1}}],["themselves",{"2":{"233":1,"317":1,"414":1,"588":1,"1620":1,"1622":1,"2590":1,"2703":1,"2794":1}}],["theme",{"2":{"233":1}}],["them",{"2":{"2":1,"154":1,"170":1,"179":1,"209":1,"213":1,"215":1,"234":2,"272":1,"273":1,"284":1,"366":1,"396":1,"435":2,"512":2,"514":2,"528":1,"530":1,"538":1,"561":1,"586":1,"596":1,"607":1,"618":1,"621":1,"629":2,"677":1,"681":1,"721":1,"1247":1,"1369":1,"1377":1,"1396":1,"1410":1,"1425":1,"1426":1,"1427":1,"1428":1,"1448":1,"1457":1,"1462":1,"1463":1,"1470":1,"1471":1,"1472":1,"1485":1,"1503":1,"1541":1,"1556":1,"1594":1,"1597":1,"1606":1,"1612":1,"1613":1,"1661":1,"1676":1,"1843":1,"1923":2,"1935":1,"1961":1,"1974":1,"2004":1,"2016":1,"2048":1,"2057":1,"2071":1,"2079":1,"2178":2,"2189":2,"2259":2,"2260":1,"2261":1,"2265":1,"2298":1,"2315":1,"2319":1,"2325":1,"2327":1,"2330":1,"2387":1,"2388":3,"2418":2,"2426":1,"2427":1,"2428":1,"2429":1,"2435":1,"2447":1,"2458":2,"2461":1,"2462":1,"2463":1,"2483":1,"2498":1,"2503":1,"2520":1,"2561":1,"2567":2,"2568":1,"2572":1,"2573":1,"2581":1,"2586":1,"2589":2,"2596":1,"2608":1,"2610":1,"2612":2,"2627":1,"2632":1,"2634":3,"2637":1,"2640":2,"2670":1,"2676":1,"2691":2,"2702":1,"2720":1,"2729":1,"2757":1,"2800":1,"2884":1,"2889":1,"2894":1,"2902":1,"2909":1,"2913":1,"2920":1,"2933":1,"2942":1,"2945":1,"2950":1}}],["the",{"0":{"13":1,"32":1,"56":1,"381":1,"385":1,"386":1,"387":1,"396":1,"397":1,"398":1,"401":1,"411":1,"412":1,"499":1,"560":1,"571":1,"611":1,"615":1,"619":1,"630":1,"668":1,"1203":1,"1204":1,"1205":1,"1300":1,"1337":1,"1346":1,"1350":1,"1659":3,"1660":2,"1788":1,"1794":1,"1796":1,"2000":1,"2006":1,"2038":1,"2057":1,"2058":1,"2206":2,"2250":1,"2255":1,"2297":1,"2300":1,"2416":1,"2422":1,"2423":1,"2425":1,"2428":1,"2429":1,"2430":1,"2431":1,"2433":1,"2470":1,"2471":1,"2472":1,"2473":1,"2502":1,"2503":1,"2579":1,"2586":1,"2595":1,"2614":1,"2616":1,"2636":1,"2660":1,"2662":1,"2737":1,"2764":1,"2786":1,"2787":1,"2789":1,"2794":1,"2795":1,"2796":1,"2850":1,"2888":1,"2932":2,"2936":1,"2946":1,"2947":1},"1":{"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"402":1,"561":1,"562":1,"563":1,"564":1,"565":1,"566":1,"567":1,"568":1,"569":1,"570":1,"572":1,"573":1,"574":1,"575":1,"631":1,"632":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"2256":1,"2257":1,"2258":1,"2259":1,"2260":1,"2424":1,"2426":1,"2427":1,"2428":1,"2429":1,"2431":1,"2503":1,"2580":1,"2581":1,"2738":1,"2739":1,"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1,"2937":1,"2938":1,"2939":1,"2940":1,"2941":1},"2":{"0":1,"1":1,"2":1,"3":2,"4":2,"5":3,"6":3,"7":3,"8":1,"9":1,"11":4,"12":3,"13":2,"14":2,"15":4,"17":2,"18":5,"20":4,"21":13,"22":1,"23":3,"24":12,"25":1,"26":7,"27":1,"33":3,"35":7,"36":2,"39":24,"40":18,"41":1,"43":3,"44":1,"45":1,"46":3,"47":5,"48":2,"49":3,"51":1,"55":5,"56":3,"58":1,"60":1,"62":3,"65":3,"67":4,"69":2,"70":17,"73":3,"74":3,"76":1,"83":3,"86":5,"87":4,"88":2,"90":4,"92":1,"93":2,"94":2,"99":4,"100":1,"102":1,"103":6,"104":2,"105":3,"107":4,"110":1,"112":1,"113":3,"114":13,"116":3,"118":5,"119":8,"120":3,"122":1,"123":3,"124":8,"125":8,"126":5,"127":2,"128":2,"130":1,"131":4,"132":2,"134":5,"137":1,"138":1,"140":1,"142":1,"143":3,"146":1,"149":10,"152":5,"153":4,"154":1,"156":6,"157":6,"158":4,"159":1,"160":6,"165":1,"166":13,"168":3,"169":9,"170":2,"171":1,"172":1,"173":4,"175":10,"178":6,"179":4,"181":4,"182":2,"183":1,"184":3,"187":2,"188":4,"189":5,"190":6,"191":12,"194":23,"195":6,"196":6,"197":2,"198":3,"199":7,"201":6,"203":1,"206":3,"207":1,"208":2,"209":2,"210":9,"212":8,"213":7,"214":6,"215":3,"217":5,"220":5,"221":3,"222":11,"224":3,"228":6,"229":2,"230":4,"231":1,"232":4,"233":5,"234":5,"235":3,"236":3,"238":1,"240":9,"243":4,"244":1,"245":4,"246":3,"247":1,"248":3,"249":4,"251":5,"254":6,"255":16,"256":3,"257":1,"258":1,"259":4,"262":6,"263":7,"264":1,"265":14,"266":4,"268":3,"271":6,"272":4,"273":7,"274":1,"275":4,"276":4,"277":2,"279":4,"282":1,"283":5,"284":4,"285":2,"288":6,"289":5,"292":1,"293":5,"297":6,"298":2,"301":1,"302":2,"303":5,"304":1,"305":5,"306":2,"307":8,"308":2,"312":11,"313":1,"314":5,"315":2,"316":2,"320":12,"323":6,"326":1,"328":2,"331":5,"332":1,"333":1,"336":1,"338":4,"339":4,"340":2,"341":1,"344":16,"346":1,"348":1,"353":4,"354":1,"356":1,"364":1,"365":2,"366":6,"367":7,"368":1,"369":5,"370":3,"371":1,"372":1,"373":2,"374":1,"375":2,"376":2,"377":1,"378":3,"379":3,"380":3,"381":8,"382":6,"383":8,"384":2,"385":3,"386":4,"387":2,"389":2,"392":3,"393":24,"394":2,"396":11,"397":10,"398":6,"399":4,"401":1,"403":20,"404":1,"408":3,"409":4,"411":8,"412":13,"413":1,"414":6,"415":1,"416":4,"417":2,"418":1,"419":2,"422":3,"423":5,"425":2,"426":3,"429":8,"430":9,"431":2,"432":2,"433":12,"434":1,"436":2,"437":3,"439":1,"441":1,"442":1,"443":2,"444":2,"446":2,"447":2,"448":2,"449":2,"450":1,"452":3,"453":3,"454":1,"455":3,"458":1,"459":1,"460":5,"461":4,"462":2,"463":2,"465":1,"466":2,"467":2,"468":2,"469":3,"470":2,"472":2,"473":1,"474":1,"475":4,"476":2,"477":1,"482":1,"484":3,"485":5,"487":5,"488":3,"489":23,"490":3,"491":3,"492":7,"493":2,"494":14,"495":6,"496":5,"497":1,"498":1,"499":3,"500":2,"501":1,"504":1,"505":1,"507":2,"509":2,"510":3,"511":3,"512":32,"513":7,"514":2,"516":4,"517":1,"521":9,"522":1,"523":1,"524":2,"525":2,"526":1,"527":2,"529":3,"530":1,"531":1,"533":1,"535":1,"538":1,"539":1,"540":3,"541":1,"542":6,"543":1,"544":3,"546":2,"552":2,"554":2,"555":9,"556":2,"557":1,"558":1,"559":1,"560":3,"561":31,"562":1,"563":3,"564":25,"565":14,"567":1,"568":17,"569":11,"570":35,"571":2,"572":11,"573":1,"574":15,"575":9,"576":4,"578":3,"579":4,"580":5,"581":11,"582":1,"583":1,"584":2,"585":2,"586":5,"588":19,"589":13,"591":2,"592":5,"593":9,"594":2,"595":1,"596":6,"597":3,"598":1,"599":6,"600":5,"601":3,"603":3,"604":1,"605":1,"607":30,"609":13,"610":6,"611":2,"612":8,"613":11,"614":1,"615":4,"617":3,"618":2,"620":1,"622":3,"623":1,"624":2,"625":8,"627":11,"628":3,"629":2,"630":7,"631":2,"632":3,"633":8,"634":3,"635":2,"637":3,"639":13,"640":2,"641":3,"643":2,"645":2,"646":5,"647":6,"648":2,"651":15,"655":1,"656":18,"657":18,"658":3,"659":2,"660":3,"661":1,"665":4,"666":5,"668":1,"669":5,"670":1,"671":1,"672":1,"673":5,"675":3,"676":2,"677":2,"681":1,"682":1,"683":8,"684":11,"685":10,"686":27,"687":13,"688":18,"689":7,"690":2,"691":2,"693":2,"695":14,"696":5,"698":8,"699":12,"701":12,"702":1,"703":6,"704":11,"706":1,"707":2,"708":5,"709":1,"710":3,"711":2,"712":1,"713":1,"714":7,"715":1,"716":5,"717":8,"718":5,"719":9,"720":11,"721":15,"722":6,"723":2,"725":4,"726":11,"727":3,"728":2,"729":4,"731":1,"732":8,"733":1,"734":3,"735":2,"736":6,"737":1,"738":3,"739":2,"740":5,"742":2,"744":11,"745":1,"746":10,"748":3,"749":22,"750":10,"751":3,"752":5,"753":7,"754":29,"755":17,"756":13,"757":7,"758":4,"759":18,"761":3,"762":4,"763":11,"764":1,"765":4,"766":12,"767":6,"768":18,"769":1,"770":1,"772":3,"773":1,"774":7,"775":1,"776":1,"777":7,"778":1,"779":1,"780":6,"781":1,"782":1,"783":9,"784":1,"785":1,"786":8,"787":1,"788":1,"789":8,"790":1,"791":1,"792":7,"793":1,"794":1,"795":7,"796":1,"797":2,"798":4,"799":1,"801":4,"802":5,"803":1,"804":2,"805":7,"807":1,"808":8,"809":1,"810":2,"811":2,"812":2,"813":6,"814":1,"815":3,"816":2,"817":4,"818":1,"819":1,"820":2,"821":6,"822":2,"823":4,"824":2,"825":2,"827":4,"828":9,"829":5,"830":2,"831":7,"833":1,"834":10,"835":1,"836":1,"837":2,"838":3,"839":2,"840":6,"841":1,"842":3,"843":2,"844":4,"845":1,"846":1,"847":2,"848":6,"849":2,"850":4,"851":2,"852":1,"853":2,"854":1,"856":4,"857":14,"858":5,"859":2,"860":6,"861":4,"862":2,"863":10,"865":1,"866":10,"867":1,"868":1,"869":2,"870":3,"871":2,"872":6,"873":1,"874":3,"875":2,"876":4,"877":1,"878":1,"879":2,"880":9,"881":2,"882":5,"883":2,"884":1,"885":2,"886":1,"888":4,"889":9,"890":5,"891":3,"892":2,"893":10,"895":1,"896":10,"897":1,"898":1,"899":2,"900":3,"901":2,"902":2,"903":2,"904":6,"905":1,"906":3,"907":2,"908":4,"909":1,"910":1,"911":2,"912":6,"913":2,"914":4,"915":2,"916":1,"917":2,"918":1,"920":4,"921":18,"922":5,"923":5,"924":2,"925":6,"926":5,"927":2,"928":10,"930":1,"931":10,"932":1,"933":1,"934":2,"935":3,"936":2,"937":2,"938":2,"939":6,"940":1,"941":3,"942":2,"943":4,"944":1,"945":1,"946":2,"947":6,"948":2,"949":4,"950":2,"951":1,"952":2,"953":1,"955":4,"956":14,"957":5,"958":2,"959":6,"960":5,"961":2,"962":10,"964":1,"965":10,"966":1,"967":1,"968":2,"969":3,"970":2,"971":2,"972":2,"973":6,"974":1,"975":3,"976":2,"977":4,"978":1,"979":1,"980":2,"981":6,"982":2,"983":4,"984":2,"985":1,"986":2,"987":1,"989":4,"990":14,"991":5,"992":2,"993":6,"994":5,"995":2,"996":10,"998":1,"999":10,"1000":1,"1001":1,"1002":2,"1003":3,"1004":2,"1005":2,"1006":2,"1007":6,"1008":1,"1009":3,"1010":2,"1011":4,"1012":1,"1013":1,"1014":2,"1015":6,"1016":2,"1017":4,"1018":2,"1019":1,"1020":2,"1021":1,"1023":4,"1024":16,"1025":5,"1026":2,"1027":6,"1028":5,"1029":2,"1030":10,"1032":1,"1033":10,"1034":1,"1035":1,"1036":2,"1037":3,"1038":2,"1039":2,"1040":2,"1041":6,"1042":1,"1043":3,"1044":2,"1045":4,"1046":1,"1047":1,"1048":2,"1049":6,"1050":2,"1051":4,"1052":2,"1053":1,"1054":2,"1055":1,"1057":4,"1058":16,"1059":5,"1060":2,"1061":6,"1062":5,"1063":2,"1064":10,"1066":1,"1067":10,"1068":1,"1069":1,"1070":2,"1071":3,"1072":2,"1073":2,"1074":2,"1075":6,"1076":1,"1077":3,"1078":2,"1079":4,"1080":1,"1081":1,"1082":2,"1083":9,"1084":2,"1085":5,"1086":2,"1087":1,"1088":2,"1089":1,"1091":4,"1092":18,"1093":5,"1094":5,"1095":6,"1096":5,"1097":2,"1098":10,"1100":1,"1101":10,"1102":1,"1103":1,"1104":2,"1105":3,"1106":2,"1107":2,"1108":2,"1109":6,"1110":1,"1111":3,"1112":2,"1113":4,"1114":1,"1115":1,"1116":2,"1117":9,"1118":2,"1119":5,"1120":2,"1121":1,"1122":2,"1123":1,"1125":4,"1126":18,"1127":5,"1128":5,"1129":6,"1130":5,"1131":2,"1132":10,"1134":1,"1135":10,"1136":1,"1137":1,"1138":2,"1139":3,"1140":2,"1141":2,"1142":2,"1143":6,"1144":1,"1145":3,"1146":2,"1147":4,"1148":1,"1149":1,"1150":2,"1151":9,"1152":2,"1153":5,"1154":2,"1155":1,"1156":2,"1157":1,"1159":4,"1160":16,"1161":5,"1162":2,"1163":6,"1164":5,"1165":2,"1166":10,"1168":1,"1169":10,"1170":1,"1171":2,"1172":2,"1173":3,"1174":2,"1175":2,"1176":2,"1177":6,"1178":1,"1179":3,"1180":2,"1181":4,"1182":1,"1183":1,"1184":2,"1185":9,"1186":2,"1187":5,"1188":2,"1189":1,"1190":2,"1191":1,"1192":4,"1193":5,"1194":3,"1195":4,"1196":1,"1197":8,"1198":10,"1199":3,"1200":23,"1201":10,"1203":16,"1204":17,"1205":13,"1207":4,"1208":1,"1209":4,"1213":3,"1215":4,"1216":9,"1217":5,"1218":2,"1219":10,"1221":1,"1222":10,"1223":1,"1224":1,"1225":2,"1226":3,"1227":2,"1228":2,"1229":2,"1230":6,"1231":1,"1232":3,"1233":2,"1234":4,"1235":1,"1236":1,"1237":2,"1238":6,"1239":2,"1240":4,"1241":2,"1242":1,"1243":2,"1244":1,"1245":1,"1246":4,"1247":4,"1248":14,"1250":2,"1252":11,"1253":3,"1254":1,"1255":1,"1256":1,"1257":1,"1258":3,"1259":1,"1260":3,"1261":1,"1262":1,"1263":2,"1264":1,"1265":3,"1266":2,"1267":4,"1268":3,"1269":12,"1271":2,"1272":2,"1274":1,"1276":3,"1278":3,"1280":2,"1281":1,"1283":4,"1284":6,"1285":13,"1286":7,"1287":8,"1288":7,"1290":4,"1291":6,"1292":6,"1293":2,"1294":6,"1295":3,"1296":3,"1297":9,"1298":5,"1299":10,"1300":5,"1301":2,"1302":3,"1303":11,"1305":1,"1306":2,"1307":5,"1308":1,"1309":3,"1310":2,"1311":3,"1312":4,"1313":5,"1314":1,"1315":3,"1316":4,"1318":6,"1319":1,"1320":3,"1322":5,"1325":1,"1327":1,"1329":2,"1330":4,"1331":3,"1332":4,"1335":1,"1336":2,"1337":1,"1338":3,"1339":1,"1341":1,"1343":5,"1346":2,"1348":15,"1349":3,"1350":3,"1351":4,"1352":4,"1353":1,"1355":1,"1356":8,"1359":1,"1360":1,"1361":1,"1362":9,"1364":1,"1365":14,"1366":1,"1367":1,"1370":1,"1372":8,"1376":1,"1377":5,"1378":24,"1379":2,"1380":7,"1381":23,"1382":1,"1388":5,"1389":1,"1390":3,"1391":1,"1392":4,"1393":1,"1395":2,"1396":3,"1397":1,"1398":5,"1399":1,"1400":1,"1401":1,"1403":3,"1404":1,"1405":1,"1406":1,"1407":8,"1409":10,"1410":17,"1412":1,"1413":9,"1414":2,"1415":5,"1416":4,"1417":39,"1418":5,"1419":7,"1420":2,"1421":3,"1422":17,"1423":13,"1424":1,"1425":6,"1426":2,"1427":10,"1428":19,"1429":1,"1430":4,"1431":9,"1432":4,"1433":13,"1434":8,"1435":1,"1436":1,"1438":3,"1439":3,"1441":1,"1442":1,"1444":3,"1446":19,"1447":7,"1448":8,"1450":1,"1451":3,"1452":1,"1453":2,"1454":3,"1455":4,"1456":1,"1457":2,"1460":1,"1462":6,"1463":8,"1464":10,"1465":8,"1466":7,"1467":9,"1469":1,"1470":10,"1471":7,"1472":20,"1474":3,"1475":5,"1476":1,"1477":5,"1478":2,"1479":1,"1480":5,"1481":4,"1482":4,"1483":4,"1484":6,"1485":13,"1486":12,"1487":5,"1488":5,"1489":3,"1490":9,"1491":1,"1492":16,"1493":18,"1495":5,"1497":3,"1498":11,"1499":6,"1500":1,"1501":2,"1502":2,"1503":12,"1504":1,"1505":1,"1509":1,"1510":3,"1514":1,"1517":10,"1518":9,"1519":1,"1521":6,"1522":9,"1523":3,"1525":11,"1526":2,"1527":13,"1528":4,"1529":7,"1530":4,"1532":4,"1533":6,"1534":10,"1535":8,"1537":4,"1538":42,"1539":14,"1540":1,"1541":6,"1542":1,"1543":5,"1544":16,"1545":9,"1546":11,"1548":3,"1549":4,"1550":2,"1551":4,"1553":4,"1554":7,"1556":9,"1557":5,"1558":11,"1560":1,"1561":1,"1562":1,"1564":1,"1565":1,"1566":1,"1567":1,"1568":1,"1569":1,"1570":1,"1571":1,"1575":1,"1577":1,"1578":1,"1579":2,"1580":1,"1583":2,"1586":2,"1588":2,"1589":11,"1590":9,"1591":5,"1592":3,"1593":12,"1594":7,"1595":4,"1597":3,"1598":2,"1600":7,"1601":1,"1602":5,"1603":2,"1604":2,"1605":4,"1606":3,"1608":4,"1609":10,"1610":5,"1611":3,"1612":22,"1613":3,"1614":6,"1615":5,"1616":3,"1617":5,"1618":1,"1619":5,"1620":17,"1621":9,"1622":14,"1623":2,"1624":6,"1625":27,"1626":1,"1627":4,"1628":11,"1630":15,"1631":2,"1632":1,"1633":11,"1634":9,"1635":1,"1636":1,"1637":1,"1638":2,"1639":3,"1640":1,"1641":11,"1642":8,"1644":2,"1645":13,"1646":2,"1647":2,"1648":2,"1649":2,"1650":2,"1651":2,"1652":2,"1653":3,"1654":4,"1655":6,"1656":2,"1657":1,"1659":5,"1660":3,"1661":19,"1662":18,"1663":6,"1664":2,"1665":3,"1666":11,"1667":8,"1668":7,"1669":4,"1670":4,"1671":1,"1672":4,"1673":1,"1675":2,"1678":7,"1681":41,"1682":2,"1683":1,"1684":2,"1685":8,"1686":1,"1687":3,"1688":1,"1689":3,"1690":6,"1691":2,"1692":2,"1693":2,"1694":2,"1695":2,"1698":1,"1699":13,"1701":1,"1702":6,"1704":2,"1705":2,"1706":1,"1707":2,"1708":2,"1709":2,"1710":1,"1711":3,"1712":2,"1713":9,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1720":8,"1722":8,"1723":1,"1724":1,"1725":1,"1726":3,"1727":1,"1728":3,"1729":5,"1730":6,"1731":1,"1732":4,"1733":1,"1734":1,"1735":1,"1736":3,"1737":1,"1738":3,"1739":4,"1740":2,"1741":6,"1742":16,"1743":1,"1746":2,"1747":5,"1749":5,"1750":2,"1751":2,"1752":2,"1753":2,"1754":2,"1755":2,"1756":1,"1757":1,"1758":2,"1759":3,"1760":2,"1761":1,"1762":1,"1763":1,"1764":2,"1765":5,"1766":5,"1768":1,"1769":2,"1771":1,"1774":4,"1776":4,"1777":2,"1779":4,"1781":27,"1782":10,"1783":1,"1784":17,"1785":12,"1786":13,"1787":3,"1788":9,"1789":9,"1790":3,"1791":15,"1792":1,"1793":2,"1794":4,"1795":9,"1796":1,"1797":2,"1798":7,"1800":4,"1801":3,"1802":17,"1803":5,"1804":3,"1805":1,"1807":1,"1808":1,"1809":1,"1810":2,"1811":1,"1812":2,"1813":1,"1814":1,"1815":4,"1816":1,"1817":2,"1818":3,"1819":1,"1820":2,"1821":1,"1822":1,"1823":2,"1824":2,"1825":1,"1826":2,"1827":3,"1828":1,"1829":2,"1830":4,"1831":1,"1832":2,"1833":5,"1834":1,"1835":6,"1836":15,"1837":6,"1838":6,"1840":6,"1841":4,"1842":2,"1843":5,"1844":3,"1845":5,"1846":34,"1847":3,"1848":4,"1849":5,"1850":10,"1851":6,"1852":13,"1853":2,"1855":4,"1863":1,"1865":3,"1866":2,"1867":3,"1868":1,"1869":1,"1870":1,"1871":1,"1872":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":2,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":1,"1891":1,"1892":1,"1893":1,"1894":1,"1895":1,"1896":1,"1897":1,"1898":1,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":1,"1905":1,"1906":1,"1907":1,"1908":1,"1910":1,"1911":1,"1912":1,"1913":4,"1915":1,"1916":4,"1917":1,"1919":2,"1921":1,"1922":1,"1923":4,"1926":3,"1930":1,"1932":1,"1933":1,"1934":10,"1935":14,"1936":23,"1937":13,"1938":7,"1939":11,"1940":4,"1944":2,"1945":5,"1946":5,"1947":18,"1948":3,"1949":17,"1950":2,"1951":14,"1952":28,"1953":18,"1954":84,"1956":2,"1957":3,"1958":4,"1959":5,"1960":5,"1961":7,"1962":17,"1964":4,"1965":1,"1966":12,"1967":11,"1968":14,"1969":3,"1970":8,"1973":4,"1974":25,"1975":8,"1976":2,"1977":4,"1978":9,"1979":7,"1980":12,"1981":12,"1982":7,"1983":26,"1984":4,"1985":13,"1986":11,"1987":12,"1988":13,"1989":11,"1990":23,"1992":4,"1993":7,"1994":15,"1995":3,"1996":2,"1997":2,"1998":3,"1999":16,"2000":2,"2001":4,"2002":1,"2004":1,"2006":3,"2007":1,"2008":19,"2009":1,"2011":8,"2012":4,"2013":4,"2014":7,"2015":3,"2016":6,"2017":1,"2020":1,"2021":1,"2022":2,"2023":1,"2024":2,"2025":2,"2026":2,"2027":2,"2028":2,"2029":1,"2030":2,"2031":1,"2032":2,"2033":1,"2034":1,"2035":1,"2037":3,"2038":3,"2041":1,"2042":3,"2043":1,"2044":9,"2046":9,"2047":4,"2048":13,"2049":1,"2050":2,"2051":6,"2052":2,"2053":3,"2054":5,"2055":1,"2056":7,"2057":23,"2058":6,"2059":15,"2061":1,"2062":3,"2064":3,"2065":10,"2066":2,"2067":2,"2068":10,"2069":17,"2070":4,"2071":7,"2072":1,"2073":5,"2074":3,"2075":3,"2076":8,"2077":5,"2078":5,"2079":1,"2080":3,"2081":5,"2082":34,"2083":4,"2084":6,"2085":9,"2086":17,"2087":3,"2088":10,"2089":4,"2090":6,"2091":19,"2092":2,"2094":5,"2096":6,"2097":1,"2105":1,"2107":3,"2108":4,"2109":3,"2110":3,"2111":1,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":2,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":1,"2145":1,"2146":1,"2147":1,"2148":1,"2149":1,"2150":1,"2151":1,"2152":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":1,"2159":1,"2160":3,"2161":1,"2162":3,"2163":1,"2164":1,"2165":1,"2166":1,"2167":1,"2168":1,"2170":1,"2171":1,"2172":1,"2173":4,"2175":1,"2176":4,"2177":1,"2178":12,"2179":20,"2180":10,"2181":3,"2182":20,"2183":3,"2184":1,"2185":21,"2186":1,"2187":9,"2188":1,"2189":15,"2190":4,"2191":12,"2192":1,"2193":1,"2194":3,"2198":18,"2199":15,"2201":14,"2202":6,"2205":4,"2206":10,"2207":8,"2208":4,"2209":6,"2210":4,"2211":3,"2212":1,"2213":2,"2214":5,"2215":1,"2216":1,"2217":2,"2218":5,"2219":7,"2220":1,"2221":6,"2222":10,"2223":1,"2225":2,"2226":3,"2229":1,"2231":3,"2233":1,"2235":3,"2237":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":1,"2245":1,"2246":1,"2249":2,"2250":2,"2251":3,"2252":6,"2253":12,"2254":26,"2255":3,"2256":4,"2258":3,"2259":20,"2260":13,"2261":6,"2262":1,"2264":1,"2265":9,"2266":4,"2267":9,"2268":2,"2269":13,"2270":1,"2271":7,"2272":13,"2273":24,"2274":8,"2275":18,"2276":45,"2277":11,"2278":31,"2279":1,"2280":15,"2281":4,"2284":5,"2285":3,"2286":18,"2287":3,"2288":19,"2289":10,"2290":69,"2291":3,"2292":3,"2293":7,"2294":6,"2295":23,"2296":8,"2297":11,"2298":18,"2299":1,"2300":22,"2301":4,"2302":3,"2303":5,"2305":6,"2308":6,"2309":46,"2310":31,"2312":1,"2313":2,"2315":4,"2316":2,"2317":25,"2318":10,"2319":30,"2320":7,"2321":6,"2322":9,"2323":9,"2325":3,"2326":2,"2327":10,"2328":13,"2329":12,"2330":17,"2331":15,"2334":1,"2335":1,"2336":1,"2337":1,"2338":1,"2339":1,"2340":1,"2341":1,"2342":1,"2343":1,"2344":3,"2345":3,"2346":3,"2347":1,"2348":2,"2350":1,"2351":3,"2352":2,"2353":1,"2354":3,"2355":2,"2357":3,"2358":2,"2359":1,"2362":2,"2363":1,"2364":2,"2365":1,"2366":1,"2367":2,"2368":1,"2369":1,"2370":1,"2371":2,"2372":2,"2374":2,"2375":11,"2376":2,"2377":3,"2378":4,"2379":11,"2380":2,"2381":7,"2382":3,"2383":1,"2384":16,"2387":6,"2388":9,"2389":11,"2390":13,"2391":3,"2392":13,"2393":5,"2394":10,"2395":13,"2396":10,"2397":25,"2398":1,"2399":11,"2400":7,"2401":11,"2402":11,"2403":11,"2404":10,"2405":3,"2406":22,"2407":2,"2408":22,"2409":2,"2410":28,"2411":2,"2412":6,"2413":2,"2414":11,"2415":6,"2416":7,"2417":57,"2418":27,"2419":1,"2421":1,"2422":4,"2423":21,"2424":2,"2425":7,"2426":1,"2427":25,"2428":45,"2429":18,"2430":10,"2431":24,"2432":11,"2433":4,"2434":28,"2435":5,"2437":1,"2439":1,"2441":3,"2442":1,"2443":1,"2444":2,"2445":2,"2446":3,"2449":1,"2450":5,"2451":2,"2452":3,"2453":12,"2454":9,"2455":13,"2456":4,"2457":1,"2458":2,"2459":3,"2460":1,"2461":5,"2462":3,"2463":1,"2464":11,"2465":3,"2466":44,"2467":1,"2468":2,"2469":5,"2470":5,"2471":3,"2472":3,"2473":3,"2474":5,"2475":5,"2477":2,"2478":1,"2479":1,"2480":1,"2481":4,"2482":10,"2483":14,"2485":8,"2486":1,"2487":8,"2489":8,"2490":5,"2494":5,"2496":4,"2497":7,"2498":2,"2499":8,"2500":1,"2501":4,"2502":16,"2503":17,"2504":12,"2505":6,"2506":5,"2507":7,"2508":17,"2509":4,"2517":9,"2519":2,"2520":11,"2521":2,"2522":7,"2523":4,"2524":5,"2525":6,"2526":4,"2527":5,"2528":3,"2530":1,"2533":2,"2534":1,"2535":4,"2537":4,"2538":8,"2543":3,"2545":6,"2549":2,"2553":2,"2554":7,"2556":3,"2557":8,"2558":7,"2559":10,"2560":3,"2561":6,"2562":11,"2563":13,"2564":5,"2565":1,"2566":8,"2567":10,"2568":14,"2569":8,"2570":7,"2571":3,"2572":4,"2573":12,"2575":3,"2576":2,"2578":1,"2579":5,"2580":2,"2581":1,"2582":1,"2583":8,"2584":5,"2585":7,"2586":5,"2587":5,"2589":4,"2590":11,"2591":1,"2592":1,"2593":1,"2594":12,"2595":4,"2596":5,"2597":2,"2598":3,"2599":2,"2600":2,"2601":6,"2602":1,"2605":3,"2606":9,"2607":5,"2608":5,"2609":8,"2610":7,"2612":16,"2613":7,"2614":8,"2615":2,"2616":14,"2617":2,"2619":2,"2620":3,"2621":3,"2622":5,"2623":1,"2624":1,"2625":1,"2626":7,"2627":5,"2628":13,"2629":6,"2632":3,"2633":3,"2634":60,"2635":1,"2636":2,"2637":5,"2638":2,"2639":18,"2640":14,"2641":2,"2642":3,"2643":1,"2645":1,"2650":9,"2651":9,"2652":8,"2653":5,"2655":4,"2656":3,"2657":3,"2658":6,"2659":14,"2662":13,"2663":9,"2664":3,"2665":2,"2667":9,"2668":2,"2669":15,"2670":5,"2671":4,"2672":1,"2673":6,"2674":51,"2675":2,"2676":2,"2678":3,"2679":10,"2680":6,"2682":4,"2683":3,"2684":7,"2685":15,"2686":8,"2687":5,"2688":2,"2690":8,"2691":10,"2692":2,"2693":2,"2694":14,"2695":4,"2696":2,"2697":2,"2698":2,"2700":10,"2702":7,"2703":3,"2704":8,"2705":4,"2706":2,"2707":8,"2709":15,"2710":2,"2711":9,"2712":1,"2713":2,"2714":11,"2715":3,"2716":3,"2717":14,"2718":4,"2719":4,"2720":6,"2721":9,"2722":2,"2723":1,"2724":1,"2725":1,"2726":15,"2727":2,"2728":52,"2729":14,"2731":5,"2732":8,"2733":2,"2734":1,"2736":2,"2737":1,"2738":5,"2739":2,"2741":4,"2747":1,"2750":1,"2751":3,"2752":4,"2753":6,"2754":17,"2755":40,"2756":111,"2757":129,"2758":3,"2759":3,"2761":9,"2762":2,"2764":3,"2765":7,"2766":2,"2767":12,"2768":3,"2769":6,"2770":8,"2771":3,"2772":8,"2773":5,"2774":4,"2775":9,"2776":12,"2777":6,"2778":11,"2779":5,"2782":2,"2784":7,"2785":1,"2786":8,"2787":2,"2788":1,"2789":4,"2790":2,"2792":3,"2793":1,"2794":17,"2795":36,"2796":12,"2797":6,"2799":2,"2800":6,"2803":1,"2804":3,"2805":1,"2807":1,"2808":1,"2811":1,"2812":2,"2813":3,"2815":1,"2816":1,"2817":2,"2818":1,"2824":1,"2825":1,"2826":1,"2827":1,"2828":2,"2830":1,"2831":1,"2834":4,"2837":3,"2838":3,"2839":1,"2840":2,"2841":1,"2843":1,"2845":6,"2846":1,"2848":1,"2849":1,"2850":2,"2851":9,"2852":12,"2853":8,"2854":5,"2855":9,"2856":9,"2857":14,"2858":11,"2859":2,"2860":5,"2861":3,"2862":2,"2863":4,"2864":8,"2865":6,"2866":1,"2867":13,"2868":4,"2869":41,"2870":4,"2871":29,"2872":9,"2873":2,"2874":4,"2875":8,"2876":6,"2877":22,"2878":36,"2879":6,"2880":35,"2881":3,"2882":14,"2883":8,"2884":15,"2885":6,"2886":7,"2888":2,"2889":7,"2890":2,"2891":2,"2892":4,"2894":1,"2895":2,"2897":1,"2898":1,"2901":5,"2902":12,"2903":8,"2905":2,"2906":5,"2907":3,"2909":3,"2910":10,"2912":43,"2913":3,"2914":34,"2915":5,"2919":10,"2920":43,"2921":22,"2922":20,"2923":13,"2924":9,"2925":9,"2926":24,"2927":22,"2928":6,"2929":15,"2930":2,"2931":23,"2932":5,"2933":1,"2934":2,"2935":13,"2936":8,"2937":7,"2938":13,"2939":4,"2940":10,"2941":5,"2943":3,"2944":5,"2945":20,"2946":7,"2947":5,"2948":3,"2949":8,"2950":25}}],["theirs",{"2":{"2464":1}}],["their",{"2":{"0":2,"9":2,"29":2,"42":2,"52":2,"58":1,"67":1,"83":1,"86":1,"102":1,"107":1,"114":1,"122":1,"123":1,"124":1,"125":1,"134":1,"143":1,"154":1,"157":1,"159":1,"163":1,"165":1,"166":1,"169":1,"181":1,"183":1,"187":1,"190":2,"197":1,"210":1,"228":2,"233":1,"234":1,"251":1,"263":1,"275":1,"284":3,"288":1,"369":1,"372":1,"373":1,"399":2,"411":1,"414":4,"433":1,"434":1,"447":1,"492":1,"494":1,"499":1,"512":1,"543":1,"555":2,"569":1,"578":3,"586":1,"604":1,"609":1,"612":1,"615":1,"646":1,"661":1,"689":1,"714":1,"716":1,"762":1,"805":2,"831":2,"863":2,"893":2,"928":2,"962":2,"996":2,"1030":2,"1064":2,"1098":2,"1132":2,"1166":2,"1219":2,"1287":1,"1321":1,"1343":2,"1376":1,"1382":1,"1405":1,"1423":1,"1457":1,"1517":1,"1527":2,"1528":1,"1612":1,"1620":1,"1626":1,"1629":1,"1641":1,"1839":1,"1843":1,"1846":2,"1937":1,"1985":1,"1986":2,"2079":1,"2082":2,"2193":1,"2200":2,"2222":1,"2325":1,"2327":1,"2329":1,"2331":1,"2388":1,"2389":2,"2392":1,"2402":1,"2441":2,"2456":1,"2460":3,"2464":2,"2501":1,"2521":1,"2553":1,"2566":4,"2567":3,"2568":1,"2569":3,"2571":3,"2583":1,"2589":1,"2590":1,"2628":2,"2637":1,"2694":1,"2696":1,"2710":1,"2721":1,"2726":3,"2728":2,"2730":1,"2735":1,"2754":2,"2757":1,"2758":1,"2772":1,"2780":1,"2797":1,"2835":1,"2884":1,"2909":1,"2911":1,"2920":1,"2949":1}}],["these",{"0":{"2739":1},"2":{"0":1,"7":1,"9":1,"11":1,"18":1,"27":1,"28":1,"29":1,"42":1,"49":1,"52":1,"67":1,"86":1,"120":2,"124":1,"166":1,"172":1,"213":2,"254":1,"268":2,"273":1,"276":1,"279":4,"288":1,"304":1,"307":2,"312":1,"383":1,"399":1,"473":1,"490":1,"491":1,"500":2,"501":1,"512":1,"529":1,"532":1,"538":3,"544":1,"555":1,"562":1,"563":1,"568":1,"574":1,"575":1,"579":1,"581":1,"588":1,"589":1,"604":2,"612":1,"613":1,"630":4,"632":1,"633":1,"639":1,"643":1,"646":3,"665":3,"669":1,"670":1,"671":1,"673":1,"674":1,"676":1,"693":1,"695":1,"720":1,"721":1,"729":1,"754":1,"860":1,"863":1,"893":1,"925":1,"928":1,"959":1,"962":1,"993":1,"996":1,"1027":1,"1030":1,"1061":1,"1064":1,"1095":1,"1098":1,"1129":1,"1132":1,"1163":1,"1166":1,"1195":1,"1198":1,"1200":1,"1201":1,"1203":1,"1204":1,"1209":1,"1219":1,"1283":1,"1322":1,"1343":3,"1345":1,"1346":1,"1351":1,"1359":1,"1377":1,"1378":1,"1396":1,"1398":1,"1408":1,"1415":1,"1417":1,"1422":2,"1425":1,"1428":1,"1438":1,"1440":1,"1441":1,"1448":1,"1457":1,"1470":1,"1472":1,"1479":1,"1485":1,"1489":1,"1493":1,"1510":1,"1514":1,"1517":1,"1522":1,"1524":1,"1533":2,"1541":1,"1556":2,"1558":1,"1589":2,"1590":2,"1603":1,"1607":1,"1609":1,"1612":1,"1625":1,"1626":1,"1632":1,"1634":1,"1641":1,"1661":1,"1676":1,"1681":1,"1682":1,"1686":1,"1697":1,"1741":1,"1766":1,"1769":1,"1784":1,"1798":1,"1836":1,"1837":1,"1846":1,"1849":2,"1855":1,"1926":1,"1949":1,"1952":3,"1953":1,"1962":1,"1973":1,"1984":1,"1986":2,"1990":1,"1994":1,"1998":1,"2016":1,"2046":1,"2057":2,"2065":1,"2068":2,"2082":1,"2085":3,"2089":2,"2094":1,"2178":1,"2179":1,"2181":2,"2182":1,"2184":1,"2187":1,"2188":1,"2189":1,"2191":1,"2205":2,"2219":1,"2222":1,"2252":1,"2260":1,"2265":1,"2272":1,"2275":1,"2276":1,"2277":1,"2294":1,"2297":1,"2300":1,"2301":2,"2317":1,"2320":1,"2322":1,"2323":1,"2329":1,"2330":1,"2331":1,"2390":1,"2403":1,"2417":2,"2418":2,"2424":1,"2425":1,"2430":1,"2434":2,"2463":1,"2490":1,"2497":1,"2498":1,"2505":1,"2517":2,"2519":1,"2553":1,"2554":2,"2559":1,"2561":3,"2565":1,"2566":1,"2572":1,"2573":1,"2580":1,"2585":1,"2594":1,"2619":1,"2628":1,"2637":1,"2642":1,"2650":2,"2677":1,"2684":1,"2691":1,"2694":2,"2696":1,"2701":1,"2702":2,"2705":1,"2706":1,"2709":1,"2710":1,"2717":1,"2721":1,"2722":1,"2725":1,"2727":1,"2728":3,"2731":1,"2741":2,"2751":1,"2756":6,"2757":2,"2819":1,"2840":1,"2845":1,"2851":1,"2884":1,"2887":1,"2889":1,"2890":1,"2892":1,"2894":3,"2906":1,"2907":3,"2909":1,"2912":1,"2913":1,"2925":1,"2931":2,"2939":1,"2942":1,"2949":1}}],["w25x10cl",{"2":{"2705":2}}],["w25q080",{"2":{"2705":2}}],["wuque",{"2":{"2567":1}}],["wmp",{"2":{"2522":1}}],["wm",{"2":{"2522":1}}],["w^wr^sd",{"2":{"2302":1}}],["wfav",{"2":{"2517":1,"2522":1}}],["wfwd",{"2":{"2068":1,"2517":1,"2522":1}}],["wfi",{"2":{"210":1}}],["www",{"2":{"604":1,"684":1,"749":7,"750":1,"766":1,"1319":2,"1367":1,"1467":1,"2187":1,"2317":1,"2517":7,"2522":7,"2732":1}}],["wt",{"2":{"236":1,"249":2,"2728":2}}],["wt80",{"2":{"222":2}}],["wt75",{"2":{"222":3}}],["wt70",{"2":{"222":1}}],["wt69",{"2":{"222":1}}],["wt65",{"2":{"222":8}}],["wt60",{"2":{"199":1,"222":8}}],["w1",{"2":{"222":1,"241":2,"249":1}}],["wk",{"2":{"222":1}}],["wkl",{"2":{"149":1}}],["wl",{"2":{"191":2,"339":1,"2301":3}}],["wbak",{"2":{"2068":1,"2517":1,"2522":1}}],["wbg7",{"2":{"191":1}}],["wb32fq95xx",{"2":{"549":1}}],["wb32fq95",{"2":{"160":1}}],["wb32f3g71xx",{"2":{"549":1}}],["wb32f3g71",{"2":{"134":1}}],["wb32",{"0":{"549":1,"2403":1},"2":{"160":1,"175":4,"191":4,"199":2,"210":1,"236":1,"2403":4}}],["wstp",{"2":{"2517":1,"2522":1}}],["wsch",{"2":{"2517":1,"2522":1}}],["ws2811",{"2":{"1283":1,"2178":1,"2443":1}}],["ws2812s",{"2":{"1287":1}}],["ws2812c",{"2":{"1283":1,"2178":1}}],["ws2812b",{"2":{"1283":1,"1287":2,"2178":1}}],["ws2812",{"0":{"1283":1,"1305":1,"1306":1,"1308":1,"1310":1,"2443":1,"2883":1},"1":{"1284":1,"1285":1,"1286":1,"1287":1,"1288":1,"1289":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1,"1295":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1304":1,"1305":1,"1306":1,"1307":2,"1308":1,"1309":2,"1310":1},"2":{"39":1,"40":2,"93":2,"134":2,"149":1,"175":3,"191":4,"199":1,"209":4,"210":1,"212":2,"222":7,"234":2,"236":1,"249":3,"266":2,"285":2,"294":1,"333":1,"339":2,"565":3,"702":1,"1193":2,"1283":1,"1284":4,"1285":10,"1286":2,"1287":3,"1288":2,"1289":2,"1290":1,"1291":3,"1292":1,"1295":6,"1296":1,"1297":2,"1299":6,"1300":1,"1301":1,"1302":1,"1303":7,"1306":1,"1307":1,"2081":1,"2096":1,"2178":1,"2179":4,"2443":1,"2689":1,"2692":1,"2877":2,"2878":1,"2883":3}}],["wsl",{"2":{"158":1,"1472":1,"2626":3}}],["w64",{"2":{"158":1,"2506":2}}],["w",{"2":{"134":1,"199":1,"212":2,"222":1,"241":1,"249":1,"266":4,"379":1,"434":1,"589":2,"1283":1,"1288":4,"1593":2,"1605":1,"1622":1,"1741":1,"1766":1,"1937":8,"2068":1,"2079":6,"2296":1,"2301":1,"2317":1,"2392":1,"2395":1,"2502":1,"2503":3,"2510":3,"2522":3,"2557":1,"2563":1,"2755":4,"2795":3,"2796":1,"2869":2,"2927":1}}],["wch",{"2":{"2735":1,"2741":1,"2744":1}}],["wc",{"2":{"116":1}}],["wp",{"2":{"114":1,"749":5}}],["wpm",{"0":{"2378":1},"1":{"2379":1,"2380":1,"2381":1},"2":{"93":1,"114":1,"134":1,"149":1,"175":2,"199":1,"570":2,"1801":1,"2085":1,"2276":3,"2291":1,"2378":4,"2379":24,"2380":4,"2381":9,"2880":2,"2889":2,"2893":12,"2941":1}}],["womier",{"2":{"2567":1}}],["wobkey",{"2":{"2567":1}}],["wonder",{"2":{"2474":1,"2950":1}}],["wondering",{"2":{"607":1,"2932":1}}],["wonderland",{"2":{"57":2}}],["won",{"0":{"620":1},"2":{"209":1,"411":1,"557":1,"613":1,"1450":1,"1466":1,"1470":1,"1472":1,"1490":1,"1801":1,"1961":1,"2179":1,"2309":1,"2429":1,"2490":1,"2634":1,"2731":1,"2782":1,"2884":1,"2907":1,"2912":1,"2942":1}}],["woodkeys",{"2":{"143":6,"149":2}}],["wootpatoot",{"2":{"70":1}}],["worst",{"2":{"2570":1}}],["worse",{"2":{"1356":1,"2265":1}}],["worrying",{"0":{"2632":1}}],["worry",{"2":{"1340":1}}],["worth",{"2":{"598":1,"1605":1,"2309":1,"2769":1,"2945":1}}],["worldsemi",{"2":{"1283":1}}],["world",{"0":{"1701":1,"2225":1,"2743":1},"1":{"2744":1,"2745":1,"2746":1},"2":{"489":4,"491":1,"529":1,"1328":1,"1346":1,"1409":2,"1523":3,"1627":2,"1628":1,"1630":1,"1633":2,"1638":19,"1701":1,"2225":2,"2302":1,"2846":1}}],["world1",{"2":{"120":1,"1441":1}}],["wordtypo",{"2":{"1534":1}}],["wordtpyo",{"2":{"1534":1}}],["words",{"2":{"1446":1,"1524":1,"1525":1,"1528":8,"1534":3,"1804":1,"2068":1,"2291":2,"2317":1,"2330":1,"2378":1,"2572":1,"2914":1}}],["word",{"0":{"152":1,"627":1,"1593":1,"1594":1,"1596":1,"1600":1,"1601":1,"2240":1,"2378":1,"2529":1,"2861":1},"1":{"1594":1,"1595":2,"1596":1,"1597":2,"1598":2,"1599":2,"1600":2,"1601":2,"2241":1,"2379":1,"2380":1,"2381":1},"2":{"152":3,"160":3,"172":1,"175":2,"191":2,"199":1,"210":1,"222":3,"249":1,"308":1,"519":1,"1381":1,"1527":1,"1528":3,"1532":1,"1533":1,"1534":2,"1593":14,"1594":10,"1595":2,"1597":8,"1598":7,"1599":9,"1600":11,"1601":6,"1612":1,"2065":1,"2068":2,"2317":2,"2379":2,"2381":1,"2481":1,"2529":3,"2861":7,"2941":1}}],["workman",{"2":{"1442":1,"2887":6}}],["worked",{"2":{"665":1,"2575":1,"2619":1}}],["worker",{"2":{"367":1}}],["workers",{"0":{"367":1},"2":{"366":1,"367":1}}],["workbench",{"2":{"353":1,"2659":2,"2669":1}}],["workarounds",{"0":{"2740":1,"2798":1},"1":{"2741":1,"2742":1,"2799":1,"2800":1},"2":{"1296":1,"2733":1,"2749":1}}],["workaround",{"0":{"206":1},"2":{"149":1,"160":5,"199":2,"206":2,"210":1,"249":2,"294":1,"339":1,"1484":1,"1518":1,"2097":1}}],["workflows",{"2":{"262":1,"1407":1,"2597":1,"2605":2,"2607":1,"2608":1}}],["workflow",{"0":{"2607":1,"2609":1},"2":{"134":1,"175":1,"179":1,"191":1,"199":1,"201":1,"423":1,"580":1,"610":1,"2382":1,"2598":2,"2607":3,"2609":3,"2610":4}}],["workings",{"0":{"1783":1},"1":{"1784":1,"1785":1,"1786":1},"2":{"1998":1}}],["working",{"0":{"617":1,"1349":1,"1350":1,"1351":1,"1424":1,"2631":1},"1":{"1425":1,"1426":1,"1427":1,"2632":1},"2":{"114":1,"158":1,"376":1,"425":1,"429":1,"448":1,"449":1,"450":1,"458":1,"540":2,"575":1,"607":1,"613":1,"665":2,"749":1,"750":1,"755":1,"759":1,"1320":1,"1359":1,"1376":1,"1409":1,"1542":1,"1943":2,"2038":1,"2179":1,"2275":1,"2319":1,"2331":1,"2383":1,"2432":2,"2434":2,"2435":1,"2448":1,"2460":1,"2508":1,"2565":1,"2583":1,"2599":1,"2601":1,"2617":1,"2653":1,"2658":1,"2663":1,"2674":2,"2714":1,"2726":1}}],["workshop",{"2":{"1368":1}}],["workspaceroot",{"2":{"2674":2}}],["workspace",{"2":{"353":1,"2659":1,"2669":1,"2670":1,"2671":2,"2672":1}}],["works",{"0":{"2438":1,"2466":1},"2":{"100":1,"191":1,"199":1,"222":4,"263":2,"308":1,"347":1,"434":1,"471":1,"540":1,"569":1,"591":1,"664":1,"723":1,"1193":1,"1286":1,"1313":1,"1316":1,"1320":1,"1361":1,"1421":1,"1488":1,"1490":1,"1498":1,"1503":1,"1529":1,"1534":1,"1537":1,"1593":1,"1594":2,"1597":1,"1685":1,"1783":1,"1976":1,"1977":1,"1986":1,"2014":1,"2076":1,"2180":1,"2265":1,"2269":1,"2273":1,"2310":1,"2319":3,"2320":1,"2330":1,"2331":4,"2410":1,"2425":1,"2438":1,"2466":1,"2486":1,"2504":1,"2559":1,"2574":1,"2589":1,"2663":1,"2674":1,"2742":1,"2908":1,"2934":1,"2950":1}}],["work",{"0":{"1359":1,"1366":1,"1369":1,"1370":1,"1498":1,"1525":1},"2":{"13":2,"18":1,"39":1,"40":2,"43":1,"114":1,"131":1,"134":1,"142":1,"160":1,"166":2,"173":2,"175":3,"194":1,"199":2,"210":1,"236":1,"251":2,"266":1,"277":1,"293":1,"305":1,"308":1,"314":1,"383":1,"398":1,"411":1,"416":1,"420":1,"439":1,"494":1,"511":1,"547":1,"574":2,"593":1,"600":1,"604":1,"607":2,"613":3,"664":1,"665":1,"763":1,"797":1,"1197":1,"1203":1,"1204":1,"1313":1,"1315":1,"1318":1,"1349":1,"1366":2,"1368":1,"1381":2,"1417":2,"1422":1,"1427":2,"1450":1,"1457":1,"1462":1,"1472":3,"1490":4,"1503":3,"1519":1,"1522":1,"1616":1,"1619":1,"1676":1,"1680":1,"1787":2,"1791":1,"1795":1,"1919":1,"1920":1,"1954":1,"1956":1,"1981":1,"1986":1,"1987":1,"1996":1,"2001":2,"2008":1,"2188":1,"2192":1,"2261":1,"2293":1,"2298":1,"2301":1,"2310":1,"2317":1,"2325":1,"2327":1,"2329":1,"2386":1,"2397":1,"2399":1,"2411":1,"2417":1,"2431":1,"2434":1,"2447":2,"2456":1,"2464":2,"2466":1,"2467":1,"2475":1,"2496":1,"2499":1,"2554":1,"2573":1,"2586":1,"2594":1,"2617":1,"2619":1,"2633":1,"2634":1,"2636":1,"2650":1,"2662":1,"2674":1,"2678":1,"2685":1,"2741":1,"2742":1,"2757":1,"2908":1,"2920":1,"2921":1,"2934":1,"2938":1}}],["wouldn",{"2":{"1616":1,"2950":1}}],["would",{"2":{"44":1,"73":1,"98":1,"179":1,"194":3,"263":1,"293":1,"305":1,"314":1,"375":1,"393":1,"538":1,"539":1,"544":1,"564":1,"588":1,"589":1,"591":1,"607":1,"670":1,"703":1,"720":4,"721":2,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1203":1,"1204":1,"1215":1,"1252":1,"1284":1,"1299":1,"1303":1,"1342":1,"1372":1,"1378":2,"1409":1,"1421":1,"1423":3,"1425":1,"1448":4,"1453":1,"1478":1,"1479":1,"1492":1,"1517":2,"1519":1,"1528":2,"1538":2,"1556":1,"1557":1,"1602":1,"1604":1,"1608":1,"1625":1,"1668":1,"1685":1,"1781":1,"1787":1,"1791":1,"1850":1,"1853":1,"1923":1,"1936":1,"1992":1,"2009":1,"2011":2,"2013":2,"2048":1,"2079":1,"2088":1,"2092":1,"2096":1,"2186":1,"2191":1,"2192":1,"2193":1,"2211":1,"2300":3,"2302":1,"2303":1,"2310":1,"2317":2,"2331":1,"2375":1,"2381":1,"2423":1,"2466":2,"2520":1,"2559":2,"2572":1,"2573":4,"2583":1,"2629":2,"2667":1,"2694":1,"2712":1,"2728":1,"2741":1,"2757":3,"2786":2,"2794":1,"2902":1,"2919":2,"2920":1,"2921":1,"2944":1,"2948":3}}],["wref",{"2":{"2517":1,"2522":1}}],["wraps",{"2":{"1954":3,"2201":4,"2290":3}}],["wrapping",{"2":{"676":1,"1448":1}}],["wrapped",{"2":{"249":1,"495":1}}],["wrappers",{"2":{"191":1}}],["wrap",{"2":{"199":1,"512":3,"513":1,"514":3,"1485":1,"1699":2,"2318":1}}],["wrote",{"2":{"189":1,"447":1,"463":1,"473":1,"474":1,"476":1,"482":1,"483":1}}],["wrongly",{"2":{"1352":1}}],["wrong",{"0":{"18":1,"687":1},"2":{"5":1,"15":1,"92":1,"191":1,"240":1,"249":1,"492":1,"610":1,"1287":1,"1318":1,"1365":1,"1534":1,"2569":1,"2617":1}}],["written",{"2":{"179":1,"230":1,"499":1,"605":2,"1416":1,"1417":1,"1858":1,"1860":1,"1862":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"2100":1,"2102":1,"2104":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2183":1,"2198":9,"2199":3,"2200":3,"2201":7,"2202":3,"2281":1,"2455":1,"2502":1,"2508":2,"2563":1,"2612":1,"2615":1,"2757":1,"2807":1,"2809":1,"2944":2,"2949":1}}],["writing",{"0":{"499":1,"1629":1},"1":{"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1},"2":{"65":1,"70":1,"112":1,"134":1,"166":1,"189":1,"383":1,"429":1,"447":1,"489":2,"493":1,"500":1,"542":2,"544":1,"674":1,"746":4,"749":1,"753":1,"758":1,"1415":1,"1451":1,"1525":1,"1686":1,"1954":6,"2290":6,"2291":1,"2330":1,"2387":1,"2455":1,"2502":2,"2685":1,"2715":1,"2755":4,"2757":1,"2943":1,"2948":1}}],["writereg16",{"2":{"244":1}}],["writereg",{"2":{"244":1,"249":1}}],["writepinlow",{"2":{"243":1}}],["writepinhigh",{"2":{"243":1}}],["writepin",{"2":{"160":1,"243":1}}],["writes",{"2":{"114":1,"754":1,"755":1,"756":1,"757":1,"1415":1,"1417":1,"1428":1,"1841":1,"1954":9,"2290":9,"2686":1,"2755":2}}],["write",{"0":{"785":1,"788":1,"810":1,"837":1,"869":1,"899":1,"934":1,"968":1,"1002":1,"1036":1,"1070":1,"1104":1,"1138":1,"1172":1,"1225":1,"1254":1,"1273":1,"1725":1},"1":{"786":1,"787":1,"789":1,"790":1,"811":1,"838":1,"870":1,"900":1,"935":1,"969":1,"1003":1,"1037":1,"1071":1,"1105":1,"1139":1,"1173":1,"1226":1,"1255":1,"1256":1,"1274":1,"1726":1},"2":{"21":4,"62":1,"114":2,"149":1,"189":1,"243":3,"244":2,"249":5,"294":1,"333":2,"483":1,"486":1,"499":1,"500":1,"505":2,"512":1,"514":1,"544":1,"612":1,"613":1,"644":1,"672":1,"673":1,"683":1,"749":2,"753":1,"754":2,"755":3,"756":3,"761":3,"766":2,"774":1,"777":1,"783":1,"785":1,"786":2,"788":1,"789":2,"1254":1,"1255":1,"1260":2,"1274":1,"1278":2,"1365":2,"1415":1,"1417":5,"1418":1,"1420":1,"1428":1,"1448":1,"1451":1,"1535":1,"1622":1,"1725":1,"1838":6,"1851":1,"1945":9,"1946":1,"1947":1,"1948":2,"1954":17,"1955":18,"1980":1,"2016":1,"2054":1,"2059":1,"2090":1,"2284":9,"2285":1,"2286":1,"2290":11,"2508":4,"2588":1,"2686":1,"2714":1,"2742":1,"2792":2,"2893":5,"2943":1,"2944":2,"2945":1}}],["whlr",{"2":{"1933":1,"2068":1,"2540":1}}],["whll",{"2":{"1933":1,"2068":1,"2540":1}}],["whld",{"2":{"1667":1,"1933":1,"2068":1,"2540":1}}],["whlu",{"2":{"1667":1,"1933":1,"2068":1,"2540":1}}],["wh",{"2":{"220":2}}],["why",{"0":{"1496":1,"1497":1,"2386":1,"2438":1,"2737":1,"2739":1,"2932":1,"2933":1},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1,"2738":1,"2739":1},"2":{"188":1,"512":1,"514":1,"541":1,"860":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1378":1,"1427":1,"2474":1,"2733":1,"2741":2,"2851":1,"2932":1,"2950":1}}],["whom",{"2":{"2517":1,"2522":1}}],["whoeveryouare",{"2":{"2387":3}}],["whose",{"2":{"489":1,"2297":1,"2912":1}}],["who",{"2":{"119":2,"179":1,"181":1,"188":3,"209":1,"220":1,"231":1,"234":1,"279":1,"529":1,"538":1,"561":1,"612":1,"664":1,"665":1,"1440":1,"1850":1,"2088":1,"2331":1,"2447":1,"2452":1,"2460":2,"2566":1,"2569":2,"2580":2,"2735":1}}],["whole",{"0":{"479":1,"604":1},"2":{"116":1,"263":1,"516":1,"557":1,"560":1,"1342":1,"1381":1,"1528":1,"1538":1,"1681":1,"1953":1,"2379":1,"2429":1,"2434":1,"2466":1,"2914":1,"2932":1,"2948":1}}],["whatever",{"2":{"561":3,"632":1,"1350":1,"1425":1,"1438":1,"1947":1,"1962":1,"2183":1,"2277":1,"2286":1,"2599":1,"2619":1,"2640":1,"2849":1,"2912":1}}],["what",{"0":{"400":1,"403":1,"415":1,"615":1,"618":1,"619":1,"1335":1,"1338":1,"1339":1,"1342":1,"1343":1,"1345":1,"1346":1,"1362":1,"1673":1,"2470":1,"2471":1,"2472":1,"2477":1},"1":{"416":1,"417":1,"418":1},"2":{"40":1,"99":1,"119":2,"166":1,"228":1,"246":1,"251":1,"254":1,"365":1,"494":1,"505":1,"521":1,"533":2,"575":1,"586":1,"598":1,"599":1,"603":1,"609":1,"626":1,"633":2,"645":1,"661":1,"665":1,"675":1,"689":1,"721":1,"1336":1,"1361":1,"1365":1,"1382":1,"1392":1,"1393":1,"1421":1,"1427":2,"1428":2,"1444":1,"1446":1,"1484":1,"1537":1,"1538":1,"1609":1,"1687":1,"1781":2,"1786":1,"1796":1,"1846":3,"1953":1,"2072":1,"2082":3,"2188":1,"2273":1,"2300":1,"2308":1,"2309":1,"2310":1,"2317":1,"2319":1,"2387":1,"2423":1,"2425":1,"2430":1,"2437":1,"2452":1,"2454":1,"2466":3,"2467":1,"2468":1,"2470":2,"2473":1,"2497":2,"2503":1,"2561":1,"2587":1,"2616":1,"2617":1,"2628":1,"2633":1,"2638":1,"2640":1,"2713":1,"2714":1,"2725":1,"2728":2,"2730":1,"2757":1,"2781":1,"2795":1,"2869":1,"2910":2,"2913":1,"2938":1,"2944":1}}],["wheatfield",{"2":{"159":2}}],["wheels",{"2":{"1986":2}}],["wheel",{"2":{"112":1,"210":1,"285":1,"320":1,"566":1,"1933":8,"1935":12,"1936":12,"1937":1,"1939":1,"1940":3,"1985":2,"1986":5,"2068":2,"2087":1,"2180":2,"2540":8,"2873":1}}],["whereas",{"2":{"651":1,"695":2,"720":1,"1641":1,"2912":1}}],["wherever",{"2":{"555":1,"1623":1,"2869":1,"2902":1,"2904":1}}],["where",{"0":{"606":1,"1336":1},"2":{"94":1,"99":1,"134":1,"140":1,"175":1,"194":1,"199":1,"222":1,"231":1,"249":1,"266":1,"293":1,"294":1,"305":1,"314":1,"328":1,"366":1,"433":10,"505":1,"517":1,"541":1,"543":1,"559":1,"561":2,"570":1,"585":1,"610":2,"633":2,"637":1,"749":1,"829":1,"858":1,"890":1,"922":1,"923":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1094":1,"1127":1,"1128":1,"1161":1,"1196":1,"1199":2,"1203":1,"1204":1,"1207":1,"1217":1,"1287":1,"1378":1,"1380":1,"1381":1,"1413":2,"1428":1,"1493":1,"1525":1,"1538":1,"1617":1,"1685":1,"1720":1,"1722":1,"1738":1,"1757":1,"1783":1,"1846":2,"1855":1,"1962":2,"1984":1,"1994":1,"2068":2,"2082":2,"2094":1,"2198":9,"2201":2,"2212":1,"2300":2,"2329":2,"2330":1,"2414":2,"2417":1,"2421":1,"2429":2,"2430":1,"2432":1,"2434":1,"2452":1,"2453":1,"2466":1,"2503":1,"2508":1,"2535":1,"2562":1,"2563":1,"2585":2,"2594":1,"2614":1,"2638":2,"2662":1,"2694":1,"2715":1,"2716":1,"2720":1,"2726":1,"2728":6,"2729":1,"2730":1,"2757":2,"2775":1,"2777":1,"2778":1,"2794":2,"2888":1,"2913":1,"2924":1,"2927":1,"2934":1,"2936":2,"2938":1,"2948":1,"2950":1}}],["whether",{"2":{"39":1,"202":1,"234":1,"416":1,"496":1,"540":1,"639":2,"651":1,"746":1,"758":1,"763":1,"766":1,"1281":1,"1303":1,"1378":1,"1499":1,"1517":1,"1525":2,"1544":1,"1645":1,"1705":2,"1709":2,"1723":1,"1726":1,"1728":1,"1747":1,"1781":1,"1793":2,"1814":1,"1818":1,"1838":1,"1846":1,"1937":1,"1962":1,"2082":1,"2254":3,"2272":1,"2276":1,"2300":1,"2310":2,"2317":1,"2319":1,"2327":1,"2360":1,"2503":1,"2567":1,"2685":1,"2750":1,"2754":1,"2756":1,"2757":1,"2767":1,"2857":1,"2872":4,"2927":1}}],["whenever",{"2":{"263":1,"344":3,"403":2,"631":1,"643":1,"647":1,"651":1,"672":1,"755":1,"756":1,"1203":1,"1446":1,"1529":1,"1630":1,"1666":1,"1992":1,"2011":1,"2086":1,"2190":1,"2194":1,"2275":1,"2302":1,"2379":1,"2468":1,"2469":1,"2559":1,"2590":1,"2597":1,"2652":1,"2757":1,"2941":1}}],["when",{"0":{"401":1,"423":1,"1348":1,"2012":1},"1":{"402":1},"2":{"18":1,"39":1,"40":1,"44":1,"58":1,"65":2,"74":1,"92":2,"93":1,"94":1,"107":1,"111":1,"114":6,"133":1,"134":2,"149":1,"160":1,"175":5,"191":2,"195":1,"199":7,"210":5,"222":3,"230":1,"233":1,"234":2,"236":3,"240":1,"241":1,"246":1,"247":1,"249":4,"253":1,"263":1,"266":1,"270":1,"281":1,"289":1,"294":3,"297":1,"303":1,"307":1,"308":2,"312":1,"317":2,"328":2,"333":1,"338":1,"339":2,"367":1,"378":1,"393":1,"399":1,"403":1,"404":1,"423":1,"452":2,"453":2,"475":2,"485":1,"490":1,"492":1,"494":1,"495":1,"499":1,"500":1,"506":2,"512":3,"516":2,"518":1,"524":1,"526":2,"527":2,"533":1,"536":1,"538":1,"540":1,"541":1,"555":1,"561":2,"564":1,"565":4,"569":2,"570":16,"572":1,"581":1,"585":1,"586":1,"588":1,"598":1,"600":1,"601":1,"609":1,"610":1,"612":1,"613":1,"624":1,"625":1,"627":2,"629":1,"630":1,"631":3,"637":1,"645":1,"648":2,"651":1,"665":1,"666":1,"668":2,"669":1,"674":1,"682":1,"683":1,"685":1,"687":1,"688":2,"699":1,"719":2,"746":1,"749":1,"763":1,"1193":1,"1204":1,"1247":1,"1285":1,"1296":1,"1297":1,"1315":1,"1316":2,"1318":1,"1327":2,"1329":2,"1331":1,"1332":1,"1343":2,"1345":1,"1350":1,"1362":1,"1366":2,"1368":1,"1377":1,"1381":1,"1408":1,"1409":2,"1410":1,"1413":4,"1417":4,"1419":1,"1422":5,"1423":1,"1424":1,"1425":1,"1426":2,"1427":2,"1436":1,"1440":1,"1442":1,"1444":1,"1446":6,"1455":1,"1463":1,"1464":1,"1468":2,"1484":1,"1485":13,"1486":17,"1497":1,"1498":2,"1499":1,"1512":1,"1517":2,"1519":1,"1528":2,"1533":4,"1535":1,"1544":1,"1545":1,"1546":1,"1550":1,"1558":1,"1585":1,"1587":1,"1589":1,"1590":1,"1593":1,"1595":1,"1597":1,"1600":1,"1601":3,"1602":1,"1604":1,"1611":1,"1612":2,"1613":1,"1618":1,"1622":2,"1625":1,"1627":1,"1661":1,"1662":2,"1664":3,"1665":1,"1670":1,"1672":2,"1674":2,"1681":4,"1684":1,"1685":1,"1687":1,"1690":6,"1734":1,"1736":1,"1739":1,"1742":1,"1766":1,"1767":4,"1770":1,"1774":2,"1776":1,"1777":1,"1779":1,"1781":1,"1782":4,"1784":1,"1785":2,"1786":2,"1789":1,"1791":1,"1794":1,"1798":2,"1804":2,"1807":1,"1808":1,"1809":1,"1836":1,"1837":2,"1841":1,"1852":1,"1934":1,"1935":1,"1937":2,"1938":1,"1940":1,"1944":1,"1949":2,"1953":1,"1954":2,"1958":1,"1960":3,"1961":3,"1968":1,"1974":1,"1985":1,"1986":3,"1987":1,"1989":1,"1990":2,"1992":1,"1994":2,"1999":4,"2000":4,"2008":1,"2009":1,"2011":1,"2012":1,"2013":1,"2014":4,"2015":1,"2048":1,"2051":1,"2061":1,"2068":1,"2074":2,"2076":1,"2077":1,"2078":2,"2091":1,"2096":1,"2178":1,"2181":10,"2182":1,"2184":1,"2185":1,"2189":5,"2191":1,"2192":2,"2210":2,"2221":1,"2225":1,"2255":2,"2257":14,"2258":1,"2259":17,"2260":4,"2261":1,"2272":1,"2273":2,"2274":1,"2276":1,"2278":7,"2279":1,"2284":1,"2290":4,"2294":1,"2300":2,"2304":4,"2305":1,"2308":1,"2309":10,"2310":4,"2317":4,"2318":4,"2319":1,"2325":1,"2327":3,"2328":6,"2330":2,"2340":1,"2342":1,"2377":4,"2379":6,"2382":1,"2384":1,"2390":1,"2397":1,"2417":5,"2422":1,"2425":1,"2427":1,"2428":3,"2431":1,"2434":2,"2450":1,"2453":2,"2455":1,"2459":1,"2460":1,"2463":1,"2466":6,"2469":1,"2475":1,"2502":1,"2503":1,"2517":2,"2521":1,"2522":2,"2528":3,"2531":2,"2535":3,"2542":58,"2544":10,"2550":14,"2551":4,"2554":1,"2558":1,"2561":1,"2568":1,"2572":62,"2573":1,"2576":1,"2579":2,"2585":1,"2587":1,"2594":1,"2610":1,"2616":1,"2622":1,"2629":1,"2633":3,"2634":1,"2638":1,"2651":1,"2652":6,"2659":2,"2670":1,"2673":2,"2683":1,"2685":1,"2700":1,"2715":1,"2722":1,"2725":1,"2728":5,"2730":2,"2753":1,"2755":4,"2756":4,"2757":1,"2764":2,"2776":1,"2796":2,"2813":1,"2821":1,"2822":1,"2861":1,"2871":1,"2872":1,"2877":2,"2878":1,"2880":1,"2884":1,"2886":1,"2899":1,"2902":1,"2903":1,"2904":1,"2909":1,"2912":3,"2913":4,"2914":4,"2920":2,"2921":2,"2922":1,"2923":2,"2925":3,"2926":3,"2931":3,"2935":2,"2937":1,"2940":2,"2950":1}}],["whistles",{"2":{"2728":1}}],["whitefacemountain",{"2":{"277":1}}],["whitefox",{"2":{"143":2,"236":1}}],["white",{"2":{"266":1,"492":1,"494":2,"589":1,"1288":5,"1417":1,"1958":1,"2089":2,"2198":1,"2205":3,"2776":4}}],["whitespace",{"2":{"222":4,"512":1,"513":1,"609":1,"675":1,"1527":1,"2563":1}}],["whilst",{"2":{"198":1,"460":1,"2569":1,"2710":1}}],["while",{"0":{"320":1},"2":{"11":1,"27":1,"39":1,"73":1,"175":1,"194":3,"199":2,"214":1,"294":1,"328":1,"393":1,"408":1,"555":1,"564":1,"612":1,"627":1,"649":1,"665":1,"686":3,"714":1,"723":1,"1343":1,"1348":1,"1351":1,"1362":2,"1381":1,"1395":1,"1405":1,"1407":1,"1409":3,"1413":2,"1415":1,"1440":1,"1443":1,"1451":1,"1470":1,"1490":1,"1528":1,"1529":1,"1533":1,"1550":1,"1592":1,"1593":2,"1597":2,"1600":2,"1612":1,"1661":1,"1664":1,"1678":1,"1681":1,"1702":1,"1766":1,"1781":1,"1784":3,"1785":1,"1788":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1954":7,"1959":1,"1994":1,"1996":1,"2000":1,"2004":1,"2006":1,"2013":1,"2041":3,"2043":4,"2065":1,"2073":1,"2089":1,"2205":1,"2210":1,"2213":1,"2217":1,"2252":1,"2259":1,"2272":1,"2275":1,"2290":5,"2296":2,"2300":1,"2304":3,"2317":1,"2318":1,"2319":1,"2387":1,"2395":1,"2396":1,"2410":2,"2417":2,"2418":1,"2434":1,"2439":1,"2448":1,"2551":3,"2556":1,"2563":2,"2564":1,"2571":1,"2581":1,"2586":1,"2587":1,"2612":3,"2676":1,"2754":1,"2764":1,"2792":1,"2820":1,"2831":1,"2834":1,"2839":1,"2851":1,"2879":1,"2909":1,"2911":1,"2913":1,"2914":3,"2923":1,"2928":1,"2929":1,"2935":1,"2937":1,"2946":1}}],["whichever",{"2":{"283":1,"1492":1,"2058":1,"2300":1}}],["which",{"0":{"1329":1,"1330":1,"1600":1},"2":{"0":1,"9":1,"17":1,"20":1,"23":1,"29":1,"35":1,"39":3,"40":1,"42":1,"52":1,"69":1,"108":1,"118":1,"119":1,"134":1,"149":1,"154":1,"158":1,"175":1,"188":1,"194":1,"203":2,"212":1,"220":1,"233":1,"236":1,"246":1,"265":1,"288":3,"312":1,"320":1,"379":1,"383":2,"389":1,"393":1,"396":2,"399":1,"403":1,"420":1,"460":1,"474":1,"475":1,"489":1,"492":1,"512":1,"526":1,"529":1,"533":1,"546":1,"555":3,"562":1,"563":2,"564":2,"569":1,"572":1,"588":3,"599":1,"609":1,"611":1,"613":1,"633":1,"645":1,"648":1,"674":1,"683":1,"686":1,"695":3,"714":1,"715":1,"720":3,"721":2,"753":1,"760":1,"765":1,"768":2,"797":1,"1193":1,"1200":1,"1207":1,"1208":1,"1209":1,"1246":1,"1248":2,"1267":1,"1269":1,"1286":1,"1287":1,"1288":1,"1291":1,"1320":1,"1330":1,"1331":1,"1348":1,"1349":2,"1357":1,"1362":1,"1365":3,"1368":1,"1378":1,"1379":1,"1381":1,"1409":1,"1410":2,"1419":2,"1422":2,"1423":1,"1436":1,"1444":1,"1446":2,"1448":3,"1479":1,"1480":1,"1481":1,"1483":1,"1484":1,"1487":2,"1491":3,"1498":1,"1501":1,"1503":1,"1504":1,"1506":1,"1508":1,"1510":1,"1515":1,"1519":1,"1523":1,"1535":1,"1546":2,"1548":1,"1589":2,"1593":1,"1595":1,"1600":2,"1610":1,"1617":1,"1618":1,"1622":1,"1626":3,"1627":2,"1628":1,"1633":1,"1634":2,"1639":1,"1656":1,"1657":1,"1659":2,"1664":1,"1665":1,"1667":1,"1670":2,"1680":1,"1683":1,"1738":1,"1770":1,"1771":1,"1772":1,"1773":1,"1781":3,"1784":1,"1786":1,"1787":1,"1788":1,"1791":1,"1794":1,"1796":1,"1843":1,"1852":3,"1935":2,"1936":3,"1939":1,"1947":1,"1948":1,"1953":3,"1954":1,"1956":2,"1957":2,"1962":1,"1970":1,"1973":1,"1974":2,"1986":3,"1990":3,"1999":1,"2048":1,"2058":1,"2059":1,"2065":1,"2068":1,"2077":1,"2079":1,"2091":5,"2182":3,"2187":1,"2188":1,"2210":1,"2225":1,"2252":1,"2270":2,"2278":2,"2286":1,"2287":1,"2303":1,"2309":4,"2317":1,"2319":2,"2325":1,"2326":1,"2329":2,"2379":1,"2384":3,"2386":1,"2387":1,"2394":1,"2395":1,"2397":1,"2417":2,"2418":1,"2427":3,"2431":2,"2448":1,"2451":1,"2454":1,"2455":1,"2466":3,"2470":1,"2499":1,"2501":1,"2504":2,"2505":1,"2535":1,"2558":1,"2562":1,"2563":1,"2566":2,"2567":1,"2568":3,"2569":2,"2573":2,"2592":1,"2597":1,"2616":1,"2628":1,"2635":1,"2637":3,"2639":3,"2640":2,"2645":1,"2674":1,"2678":1,"2684":1,"2690":1,"2695":2,"2696":1,"2700":3,"2702":1,"2703":1,"2704":1,"2707":1,"2709":1,"2718":1,"2728":1,"2729":1,"2751":2,"2753":1,"2756":2,"2757":4,"2764":1,"2767":1,"2776":2,"2794":4,"2795":4,"2813":2,"2823":1,"2841":1,"2844":1,"2857":1,"2869":1,"2871":4,"2872":1,"2877":5,"2878":6,"2880":1,"2882":1,"2884":1,"2887":1,"2889":1,"2893":2,"2901":1,"2912":1,"2914":2,"2922":1,"2929":1,"2931":1,"2932":1,"2935":1,"2936":1,"2937":1,"2938":1,"2941":1,"2942":1,"2944":1,"2950":3}}],["waz",{"2":{"2295":1,"2296":1}}],["warranty",{"2":{"1467":2,"2732":2}}],["warn",{"2":{"114":1,"160":1,"669":1,"2508":1}}],["warnings",{"0":{"2463":1,"2690":1},"2":{"95":1,"160":1,"175":1,"185":1,"222":1,"236":2,"308":1,"317":1,"339":1,"414":1,"2417":1,"2463":2,"2904":1}}],["warning",{"2":{"13":1,"40":1,"107":1,"114":1,"134":1,"149":1,"153":1,"154":1,"160":1,"166":1,"191":2,"199":3,"228":1,"236":4,"266":1,"308":1,"352":3,"383":1,"492":1,"596":1,"597":1,"599":1,"600":1,"633":1,"669":1,"679":2,"686":1,"688":1,"748":1,"750":1,"753":1,"754":1,"755":1,"759":1,"1193":1,"1197":1,"1297":1,"1407":1,"1440":1,"1463":2,"1466":1,"1485":1,"1535":1,"1589":1,"1622":1,"1627":1,"1634":1,"1666":1,"1668":1,"1788":1,"1835":1,"1952":1,"1954":2,"1984":1,"1985":2,"1986":2,"1987":1,"2057":1,"2181":1,"2184":1,"2191":1,"2249":1,"2261":2,"2265":1,"2276":1,"2277":1,"2294":1,"2298":1,"2309":1,"2323":1,"2331":1,"2386":1,"2485":1,"2487":1,"2489":1,"2490":1,"2494":1,"2503":2,"2585":1,"2589":1,"2590":1,"2591":2,"2594":1,"2606":1,"2607":1,"2616":2,"2622":1,"2626":1,"2627":1,"2637":1,"2651":1,"2674":1,"2693":1,"2727":1,"2752":1,"2753":1,"2756":4,"2757":3,"2761":1,"2794":2,"2901":1,"2922":1,"2927":1,"2929":1,"2949":1}}],["watch",{"2":{"1365":1,"2187":1,"2589":1,"2942":1}}],["watchdog",{"2":{"175":1,"210":2,"294":1,"570":3,"2278":5,"2880":2}}],["waffling60",{"2":{"236":1}}],["waffling80",{"2":{"222":1}}],["waveshare",{"2":{"2756":3}}],["wavetable",{"2":{"1480":1}}],["waveforms",{"2":{"1686":1}}],["waveform",{"0":{"1686":1},"2":{"249":1,"1480":5,"1488":2,"1680":2,"1686":2}}],["wave",{"2":{"210":1,"266":1,"721":1,"1480":3,"1684":1,"1849":8,"2085":5,"2894":1}}],["walk",{"2":{"2387":1,"2560":1,"2621":1,"2632":1,"2730":1}}],["walter",{"2":{"175":1}}],["wallaby",{"2":{"143":2}}],["wako",{"2":{"1343":1,"2412":1}}],["waka60",{"2":{"266":1}}],["wakizashi40",{"2":{"222":1}}],["wakizashi",{"2":{"149":1}}],["wakes",{"2":{"648":1}}],["wakeup",{"0":{"649":1},"2":{"112":1,"114":1,"191":1,"199":2,"210":3,"236":1,"561":2,"574":1,"647":2,"648":1,"649":2,"650":2,"1638":3,"2757":1,"2882":2}}],["wake",{"0":{"648":1,"650":1,"1370":1,"1376":1},"1":{"649":1,"650":1},"2":{"62":1,"73":1,"231":1,"328":1,"561":1,"574":1,"1351":1,"1370":2,"2517":3,"2522":3}}],["wanted",{"2":{"1471":1,"1472":1,"1499":1,"2322":1}}],["wanten",{"2":{"143":2}}],["wanting",{"2":{"1252":1,"2317":1,"2431":1,"2706":1,"2780":1}}],["wants",{"2":{"210":1,"1518":1,"2580":1,"2636":1,"2940":1}}],["want",{"0":{"604":1,"1341":1,"1342":1},"1":{"1342":1},"2":{"125":1,"169":1,"188":1,"194":1,"232":1,"307":1,"403":1,"435":1,"474":1,"510":1,"511":1,"516":1,"533":1,"538":1,"540":1,"561":3,"564":3,"570":2,"596":1,"597":1,"598":1,"600":1,"603":1,"607":1,"626":1,"630":1,"633":5,"640":1,"645":1,"664":1,"668":1,"717":1,"718":1,"763":1,"1207":1,"1208":1,"1319":1,"1365":1,"1378":3,"1392":1,"1396":1,"1415":1,"1416":1,"1417":7,"1418":1,"1422":1,"1425":2,"1426":1,"1427":1,"1438":1,"1440":1,"1446":2,"1447":1,"1448":1,"1449":1,"1451":1,"1455":1,"1467":1,"1468":2,"1470":2,"1471":1,"1472":5,"1483":1,"1492":2,"1498":1,"1525":1,"1529":1,"1535":1,"1551":2,"1589":2,"1612":4,"1619":1,"1624":1,"1663":1,"1766":1,"1788":1,"1803":1,"1844":1,"1846":2,"1850":1,"1852":1,"1855":1,"1923":1,"1935":1,"1937":1,"1947":1,"1954":1,"1958":1,"1962":1,"1974":1,"2011":1,"2048":1,"2080":1,"2082":2,"2088":1,"2091":1,"2094":1,"2096":1,"2097":1,"2183":1,"2189":1,"2191":2,"2206":1,"2207":1,"2211":1,"2251":1,"2260":1,"2264":1,"2280":1,"2286":1,"2290":1,"2293":2,"2297":1,"2300":1,"2301":1,"2309":4,"2310":1,"2317":4,"2331":1,"2381":2,"2384":1,"2387":1,"2417":2,"2418":1,"2419":1,"2423":1,"2425":1,"2427":1,"2429":1,"2430":2,"2431":1,"2435":1,"2460":1,"2461":1,"2474":1,"2482":1,"2496":1,"2558":1,"2560":1,"2584":1,"2593":1,"2594":1,"2595":1,"2611":1,"2614":1,"2628":4,"2635":1,"2636":1,"2637":1,"2640":1,"2651":2,"2665":1,"2671":1,"2674":1,"2690":1,"2694":1,"2702":1,"2731":1,"2754":1,"2782":1,"2785":2,"2786":2,"2787":1,"2790":1,"2886":1,"2890":2,"2912":1,"2927":1,"2929":1,"2942":1,"2945":1,"2950":2}}],["waits",{"2":{"574":1,"658":1,"1410":1,"1455":2,"1730":1,"1732":1,"2400":1,"2405":1,"2914":1}}],["waiting",{"2":{"175":1,"191":1,"230":1,"381":1,"570":1,"582":1,"1329":1,"1332":2,"1455":1,"1662":1,"2278":1,"2279":1,"2591":1}}],["wait",{"2":{"92":1,"94":2,"112":1,"113":1,"114":4,"149":1,"191":3,"210":2,"263":1,"266":1,"308":1,"398":1,"574":2,"607":1,"647":1,"657":1,"772":2,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"798":1,"1410":1,"1462":1,"1591":1,"1852":1,"2046":1,"2091":1,"2185":1,"2187":6,"2222":1,"2231":1,"2235":1,"2309":1,"2315":4,"2317":1,"2327":1,"2389":1,"2392":2,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":4,"2408":4,"2410":4,"2612":1,"2726":1,"2754":1,"2872":1,"2880":2,"2882":3,"2922":1,"2923":1}}],["waaffle",{"2":{"86":4}}],["wasn",{"2":{"1612":1,"2915":1}}],["wasting",{"2":{"489":1}}],["wasdat",{"2":{"57":4,"160":1}}],["was",{"0":{"414":1},"1":{"415":1,"416":1,"417":1,"418":1},"2":{"6":1,"8":1,"43":1,"44":1,"113":1,"125":1,"163":1,"169":1,"173":2,"189":1,"194":1,"202":1,"203":1,"243":1,"245":1,"251":1,"255":1,"263":1,"271":1,"293":1,"305":1,"314":1,"331":1,"347":1,"386":1,"389":1,"414":1,"423":2,"531":1,"564":1,"588":1,"609":2,"617":1,"665":1,"723":1,"1204":1,"1253":1,"1343":1,"1350":2,"1417":1,"1525":1,"1535":1,"1617":2,"1781":1,"1784":1,"1786":1,"1789":1,"1817":1,"1953":2,"1954":7,"1962":2,"2012":1,"2065":1,"2069":4,"2281":2,"2290":4,"2295":1,"2310":2,"2319":1,"2366":1,"2368":1,"2429":1,"2464":1,"2466":1,"2562":1,"2567":1,"2607":1,"2628":1,"2634":4,"2640":1,"2685":1,"2706":1,"2755":1,"2803":1}}],["ways",{"2":{"303":1,"306":1,"315":1,"338":1,"399":1,"491":1,"496":1,"497":1,"498":1,"508":1,"568":1,"599":1,"610":1,"613":1,"684":1,"1348":1,"1409":2,"1416":1,"1422":1,"1423":1,"1427":1,"1440":1,"1529":1,"1593":1,"1835":1,"2002":1,"2270":1,"2292":1,"2422":2,"2435":1,"2460":1,"2481":1,"2559":1,"2612":1,"2632":2}}],["way",{"2":{"0":1,"9":1,"29":1,"40":1,"42":1,"52":1,"120":1,"124":1,"154":2,"194":2,"210":1,"254":1,"285":2,"399":1,"416":1,"426":1,"436":1,"492":1,"495":2,"542":1,"593":1,"613":2,"643":1,"696":1,"750":1,"1283":1,"1311":1,"1312":1,"1416":1,"1424":1,"1433":1,"1464":1,"1470":1,"1472":2,"1478":1,"1491":1,"1534":1,"1538":2,"1541":1,"1589":1,"1623":1,"1741":1,"1766":1,"1786":1,"1788":1,"1802":1,"1846":1,"1935":1,"1985":1,"1986":1,"1990":1,"1994":1,"2058":1,"2071":1,"2082":1,"2178":1,"2277":1,"2298":1,"2331":1,"2379":1,"2397":1,"2425":1,"2427":1,"2466":3,"2481":1,"2499":1,"2504":1,"2559":1,"2562":1,"2569":1,"2594":1,"2613":1,"2634":2,"2636":1,"2640":1,"2663":1,"2690":1,"2700":1,"2726":1,"2731":1,"2750":1,"2794":1,"2795":1,"2872":1,"2886":1,"2902":1,"2925":1,"2929":1,"2945":1,"2948":1}}],["wikipedia",{"2":{"1378":1,"1935":1,"2466":1}}],["wiki",{"2":{"574":1,"2037":1,"2299":1}}],["wipe",{"2":{"2789":1}}],["wiper",{"2":{"1738":1}}],["wip",{"2":{"277":1}}],["wiping",{"0":{"2789":1},"2":{"175":1,"2427":1}}],["witf",{"2":{"222":1}}],["within",{"2":{"21":1,"24":1,"40":1,"67":1,"75":1,"86":1,"94":1,"102":1,"122":1,"124":1,"126":1,"132":1,"133":1,"134":1,"141":2,"143":1,"149":2,"159":1,"165":1,"174":1,"175":1,"183":1,"195":1,"197":1,"199":1,"210":1,"212":1,"231":1,"236":2,"254":1,"266":1,"285":2,"288":1,"293":1,"297":1,"305":1,"307":1,"308":1,"312":1,"314":1,"317":1,"339":1,"383":1,"399":1,"422":1,"432":1,"491":1,"494":1,"519":1,"545":1,"570":1,"639":2,"669":1,"670":1,"676":1,"749":1,"750":1,"755":1,"1327":1,"1388":1,"1423":1,"1431":1,"1451":1,"1484":1,"1487":1,"1498":1,"1528":2,"1590":1,"1597":1,"1602":1,"1612":1,"1614":1,"1615":1,"1622":1,"1626":1,"1627":1,"1628":1,"1630":1,"1634":1,"1645":1,"1681":1,"1850":1,"1865":1,"1867":1,"1959":1,"1970":1,"2076":1,"2088":1,"2107":1,"2109":1,"2181":1,"2262":1,"2267":1,"2278":1,"2310":1,"2317":1,"2318":1,"2392":1,"2413":1,"2414":2,"2418":1,"2475":1,"2517":1,"2522":1,"2559":1,"2594":1,"2598":1,"2663":1,"2711":2,"2721":1,"2728":2,"2751":2,"2772":1,"2775":1,"2868":1,"2884":1,"2902":1,"2903":3,"2908":1,"2920":3,"2921":2,"2922":1,"2923":2,"2926":1,"2931":1,"2936":1,"2937":1,"2941":1}}],["without",{"0":{"2097":1},"2":{"13":1,"39":2,"70":1,"80":1,"112":1,"125":1,"152":2,"169":1,"179":1,"188":1,"191":1,"194":1,"228":1,"273":2,"276":1,"285":1,"308":1,"328":1,"352":1,"414":1,"429":1,"447":1,"473":1,"489":1,"529":1,"540":1,"559":1,"570":1,"574":1,"603":1,"613":1,"641":3,"644":1,"763":1,"1367":1,"1378":4,"1424":1,"1467":2,"1472":1,"1485":1,"1503":1,"1518":4,"1529":1,"1544":1,"1550":1,"1600":1,"1623":1,"1663":1,"1777":1,"1801":2,"1850":1,"1938":1,"1981":1,"1985":1,"1999":1,"2016":1,"2071":1,"2088":1,"2097":1,"2188":1,"2212":1,"2216":2,"2226":1,"2272":1,"2275":1,"2278":1,"2279":1,"2291":1,"2292":1,"2294":1,"2297":1,"2302":1,"2331":2,"2382":1,"2384":2,"2396":1,"2417":2,"2418":1,"2460":1,"2466":1,"2471":1,"2503":1,"2567":34,"2590":1,"2640":1,"2650":1,"2677":1,"2691":1,"2728":1,"2732":2,"2735":1,"2751":1,"2757":4,"2784":1,"2800":1,"2909":1,"2923":1,"2929":3,"2931":1,"2936":1,"2950":1}}],["with",{"0":{"1":1,"17":1,"513":1,"685":1,"1324":1,"1325":1,"1326":1,"1342":1,"1359":1,"1424":1,"1433":1,"1771":1,"1772":1,"1773":1,"1795":1,"1941":1,"2230":1,"2234":1,"2293":1,"2294":1,"2300":1,"2387":1,"2598":1,"2613":1,"2631":1,"2674":1},"1":{"686":1,"687":1,"688":1,"689":1,"1425":1,"1426":1,"1427":1,"1434":1,"1435":1,"1436":1,"1437":1,"1438":1,"1439":1,"2231":1,"2235":1,"2295":1,"2296":1,"2297":1,"2599":1,"2600":1,"2601":1,"2602":1,"2603":1,"2604":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2610":1,"2614":1,"2615":1,"2632":1},"2":{"1":1,"5":1,"6":2,"7":2,"8":1,"15":1,"17":1,"20":2,"21":5,"23":2,"24":2,"26":1,"39":3,"40":1,"44":1,"60":1,"69":1,"72":1,"77":1,"83":1,"84":1,"86":1,"92":1,"93":1,"98":4,"100":1,"107":1,"111":1,"114":11,"119":2,"123":1,"124":1,"126":1,"131":2,"134":6,"138":1,"149":7,"153":1,"154":1,"156":1,"157":1,"160":4,"166":5,"170":1,"173":1,"174":1,"175":6,"178":2,"181":1,"182":1,"187":1,"188":3,"190":2,"191":9,"194":2,"195":1,"196":1,"198":1,"199":7,"206":1,"209":1,"210":5,"212":1,"222":9,"230":2,"231":2,"236":1,"240":3,"241":1,"243":1,"244":1,"249":8,"253":1,"254":1,"263":1,"264":1,"265":1,"266":4,"268":1,"270":1,"273":3,"274":1,"276":1,"277":1,"279":2,"281":1,"282":1,"283":1,"284":2,"285":7,"288":1,"289":2,"292":1,"293":1,"294":4,"301":1,"302":1,"305":1,"307":1,"308":1,"312":2,"313":1,"314":2,"320":3,"326":1,"327":1,"328":3,"331":1,"336":1,"344":1,"353":1,"354":2,"356":1,"366":1,"383":2,"384":1,"386":1,"393":2,"402":1,"403":4,"409":1,"411":1,"412":1,"414":1,"419":1,"422":1,"423":2,"425":1,"429":8,"430":2,"433":1,"434":1,"436":1,"439":2,"448":1,"449":1,"450":1,"459":3,"470":1,"475":3,"487":1,"489":1,"490":1,"494":2,"496":1,"512":2,"514":3,"521":2,"527":2,"531":1,"532":1,"536":1,"538":2,"540":2,"542":2,"544":1,"545":3,"547":1,"548":1,"554":1,"561":1,"564":1,"567":1,"568":3,"569":1,"570":2,"573":1,"574":2,"581":2,"600":2,"604":1,"605":2,"607":6,"608":2,"609":4,"612":2,"613":3,"615":1,"617":1,"618":1,"622":1,"627":2,"643":1,"644":1,"646":1,"665":1,"669":1,"670":1,"672":2,"675":2,"676":1,"681":1,"684":1,"685":2,"686":2,"687":2,"688":2,"689":2,"693":1,"695":1,"703":1,"714":1,"716":4,"717":1,"719":1,"721":2,"722":2,"725":1,"754":3,"757":1,"761":3,"785":1,"788":1,"791":1,"794":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1192":1,"1193":1,"1197":1,"1200":4,"1203":1,"1204":2,"1205":2,"1207":1,"1209":1,"1210":1,"1215":1,"1247":1,"1272":1,"1284":1,"1286":2,"1288":2,"1311":1,"1312":1,"1315":4,"1316":2,"1318":1,"1319":2,"1332":3,"1333":2,"1335":1,"1336":1,"1339":1,"1342":1,"1343":2,"1348":2,"1359":1,"1362":1,"1365":1,"1366":1,"1368":1,"1371":1,"1372":1,"1377":2,"1378":8,"1380":1,"1381":2,"1388":1,"1390":1,"1395":1,"1398":1,"1400":1,"1401":1,"1405":1,"1406":1,"1409":2,"1410":1,"1412":1,"1413":2,"1414":1,"1416":1,"1417":1,"1422":4,"1424":1,"1425":2,"1431":1,"1433":2,"1435":1,"1438":1,"1439":1,"1446":1,"1448":1,"1449":1,"1450":1,"1455":1,"1456":1,"1457":1,"1462":1,"1463":3,"1464":1,"1465":3,"1467":3,"1472":3,"1474":1,"1475":2,"1477":2,"1478":2,"1479":1,"1480":3,"1482":2,"1484":1,"1485":1,"1486":2,"1490":3,"1498":2,"1499":1,"1500":1,"1503":3,"1518":2,"1522":4,"1523":3,"1525":1,"1527":2,"1532":1,"1535":1,"1538":14,"1539":2,"1553":1,"1554":2,"1589":1,"1592":1,"1594":2,"1595":1,"1597":3,"1600":1,"1602":2,"1603":1,"1604":1,"1605":2,"1609":2,"1610":3,"1612":2,"1615":1,"1618":2,"1619":1,"1620":1,"1622":1,"1625":6,"1627":1,"1628":2,"1633":1,"1634":1,"1635":2,"1636":2,"1639":1,"1645":1,"1656":1,"1660":1,"1662":1,"1664":1,"1665":2,"1666":1,"1667":1,"1671":2,"1672":1,"1678":1,"1681":1,"1684":1,"1686":1,"1688":1,"1689":1,"1690":2,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1697":1,"1739":3,"1740":1,"1741":1,"1742":1,"1743":1,"1766":2,"1770":1,"1774":1,"1776":5,"1777":1,"1779":2,"1781":2,"1782":1,"1786":2,"1787":3,"1788":1,"1791":1,"1795":1,"1801":2,"1840":1,"1843":3,"1846":1,"1850":2,"1851":1,"1853":1,"1855":1,"1919":1,"1934":1,"1936":1,"1940":2,"1941":1,"1945":2,"1946":2,"1947":1,"1949":1,"1952":7,"1953":2,"1954":2,"1960":2,"1968":1,"1969":1,"1970":1,"1974":2,"1978":1,"1980":2,"1983":1,"1985":3,"1986":1,"1987":1,"1994":2,"1996":1,"1998":1,"1999":3,"2002":1,"2007":1,"2008":1,"2044":1,"2048":1,"2051":1,"2054":1,"2057":2,"2059":3,"2065":2,"2068":3,"2069":1,"2071":1,"2074":1,"2075":1,"2076":3,"2079":1,"2082":1,"2085":2,"2087":2,"2088":2,"2090":1,"2092":1,"2094":1,"2095":2,"2097":1,"2178":2,"2179":1,"2181":1,"2187":1,"2189":4,"2192":1,"2206":1,"2209":1,"2210":1,"2219":2,"2222":2,"2228":1,"2230":1,"2232":1,"2234":2,"2247":2,"2248":2,"2249":1,"2251":1,"2256":7,"2258":2,"2259":8,"2260":3,"2264":1,"2267":1,"2272":1,"2273":9,"2274":2,"2275":1,"2277":4,"2278":4,"2279":1,"2280":1,"2286":1,"2289":1,"2290":1,"2291":2,"2292":4,"2293":1,"2294":1,"2298":2,"2301":1,"2308":1,"2309":5,"2310":1,"2316":1,"2317":3,"2319":6,"2324":1,"2326":1,"2327":3,"2330":3,"2331":2,"2374":2,"2375":3,"2384":1,"2387":5,"2388":1,"2389":2,"2390":2,"2391":1,"2392":3,"2393":2,"2394":1,"2395":2,"2396":1,"2397":3,"2399":3,"2400":1,"2401":2,"2402":1,"2403":1,"2404":2,"2405":1,"2406":1,"2408":1,"2410":3,"2411":4,"2412":1,"2417":3,"2418":4,"2422":1,"2423":2,"2424":1,"2425":4,"2427":2,"2428":1,"2431":1,"2432":1,"2434":2,"2445":1,"2449":1,"2450":2,"2458":1,"2465":1,"2466":1,"2469":1,"2471":1,"2473":1,"2475":1,"2477":1,"2482":1,"2483":1,"2486":1,"2490":2,"2496":2,"2499":1,"2504":1,"2505":1,"2506":2,"2509":1,"2520":1,"2535":1,"2553":1,"2557":1,"2558":2,"2560":1,"2562":1,"2563":2,"2567":8,"2568":2,"2569":1,"2572":1,"2575":2,"2576":1,"2577":1,"2582":1,"2583":3,"2584":1,"2587":1,"2589":2,"2590":1,"2592":1,"2598":4,"2599":1,"2600":1,"2601":1,"2602":1,"2605":1,"2607":5,"2608":2,"2613":1,"2614":1,"2617":2,"2619":3,"2628":2,"2629":2,"2633":2,"2634":5,"2635":1,"2637":4,"2639":1,"2640":1,"2651":1,"2652":1,"2653":1,"2655":1,"2659":1,"2662":2,"2669":1,"2671":1,"2674":3,"2678":1,"2679":3,"2680":1,"2682":1,"2684":1,"2685":1,"2687":1,"2690":1,"2691":2,"2705":4,"2707":2,"2709":1,"2710":1,"2711":1,"2713":1,"2714":2,"2718":1,"2719":1,"2721":1,"2725":2,"2726":6,"2727":1,"2728":6,"2729":1,"2730":1,"2732":1,"2733":2,"2735":1,"2736":1,"2738":1,"2746":2,"2750":2,"2753":1,"2755":1,"2756":24,"2757":12,"2758":3,"2761":2,"2764":1,"2767":1,"2775":1,"2776":1,"2778":1,"2779":1,"2789":1,"2792":3,"2795":1,"2796":1,"2799":1,"2814":1,"2817":1,"2827":1,"2828":1,"2835":1,"2850":2,"2851":2,"2854":1,"2869":1,"2871":1,"2878":1,"2884":1,"2885":1,"2886":1,"2890":2,"2895":1,"2896":1,"2897":1,"2902":1,"2903":1,"2905":1,"2908":1,"2909":1,"2912":6,"2913":1,"2915":1,"2920":1,"2921":1,"2922":2,"2923":1,"2926":11,"2927":5,"2929":2,"2931":4,"2932":1,"2934":1,"2935":1,"2938":3,"2939":1,"2946":1,"2947":3,"2949":1,"2950":3}}],["wild",{"2":{"2308":1}}],["wildcard",{"2":{"469":1}}],["wildcards",{"2":{"433":3}}],["wilba",{"2":{"175":1,"199":1,"222":23,"2728":3}}],["willing",{"2":{"2731":1}}],["willoucom",{"2":{"210":1}}],["will",{"0":{"403":1,"2903":1,"2904":1},"2":{"0":1,"5":1,"7":1,"9":1,"11":1,"12":1,"13":3,"29":1,"35":1,"39":1,"42":1,"43":1,"47":1,"52":1,"70":1,"88":3,"89":1,"90":3,"103":1,"104":3,"105":2,"107":1,"110":2,"120":1,"126":1,"127":3,"132":3,"152":1,"153":1,"156":1,"166":2,"185":3,"195":2,"198":1,"201":3,"206":1,"208":1,"212":1,"214":2,"217":1,"220":3,"228":1,"230":1,"240":2,"255":1,"256":1,"262":1,"263":2,"265":3,"272":1,"273":1,"275":1,"276":1,"283":1,"303":1,"306":1,"307":5,"327":1,"332":1,"353":1,"365":1,"382":1,"384":1,"393":3,"396":2,"398":1,"399":2,"403":1,"407":1,"412":5,"417":1,"420":2,"429":2,"430":1,"432":1,"436":1,"437":1,"440":1,"442":1,"444":2,"445":1,"446":1,"463":1,"474":1,"483":1,"488":1,"489":4,"490":1,"492":1,"494":2,"500":1,"505":2,"506":1,"507":1,"509":2,"511":1,"513":3,"527":2,"533":2,"537":1,"546":1,"555":1,"556":1,"560":1,"561":1,"562":1,"563":1,"565":2,"571":1,"574":2,"578":1,"581":2,"584":1,"585":1,"586":1,"589":1,"592":1,"593":1,"596":1,"597":1,"599":1,"600":2,"601":1,"607":2,"609":1,"613":2,"615":1,"626":1,"627":1,"629":1,"630":3,"633":1,"639":4,"643":1,"645":1,"647":1,"649":2,"651":3,"652":1,"653":1,"656":1,"657":3,"658":1,"659":1,"665":1,"666":1,"672":1,"674":2,"675":2,"676":1,"677":1,"685":1,"686":2,"688":2,"699":3,"701":2,"721":1,"723":1,"746":4,"749":1,"750":1,"754":3,"757":1,"766":1,"797":1,"1203":1,"1204":1,"1209":2,"1252":1,"1265":1,"1276":1,"1281":1,"1288":1,"1292":1,"1297":1,"1300":1,"1312":1,"1315":1,"1319":1,"1320":1,"1322":1,"1329":1,"1332":2,"1336":1,"1347":1,"1348":4,"1365":2,"1366":1,"1367":1,"1368":1,"1377":2,"1380":1,"1388":1,"1390":1,"1398":1,"1407":1,"1409":4,"1410":2,"1412":1,"1417":6,"1422":3,"1423":2,"1425":2,"1427":3,"1431":1,"1433":1,"1440":1,"1446":1,"1448":1,"1454":1,"1458":1,"1459":1,"1460":1,"1462":5,"1463":1,"1464":2,"1465":1,"1466":2,"1467":1,"1470":1,"1472":7,"1483":1,"1485":2,"1490":2,"1491":2,"1492":2,"1493":4,"1498":2,"1499":3,"1501":1,"1503":4,"1518":5,"1520":1,"1522":1,"1526":1,"1527":3,"1528":1,"1532":2,"1533":2,"1535":2,"1544":1,"1546":1,"1589":2,"1593":2,"1602":1,"1603":1,"1604":1,"1605":1,"1609":1,"1620":5,"1622":1,"1628":1,"1631":1,"1633":1,"1641":1,"1656":1,"1661":1,"1666":2,"1667":1,"1668":3,"1670":1,"1671":1,"1672":2,"1673":3,"1675":1,"1676":1,"1678":1,"1680":1,"1681":4,"1685":1,"1687":4,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1713":1,"1729":2,"1762":2,"1765":1,"1776":7,"1781":5,"1782":3,"1784":2,"1785":1,"1786":3,"1788":3,"1789":1,"1795":2,"1802":1,"1803":1,"1804":2,"1835":1,"1837":3,"1839":1,"1840":1,"1852":2,"1865":1,"1867":1,"1919":2,"1923":1,"1926":1,"1935":3,"1936":3,"1940":2,"1947":2,"1949":1,"1953":1,"1954":2,"1957":1,"1962":1,"1974":2,"1977":1,"1984":1,"1985":3,"1986":2,"1987":1,"1988":1,"1989":1,"1990":3,"1994":3,"1996":1,"1998":2,"1999":3,"2000":3,"2001":2,"2006":1,"2008":2,"2012":1,"2014":4,"2046":1,"2048":4,"2054":1,"2057":1,"2074":1,"2076":1,"2086":1,"2087":3,"2091":2,"2095":1,"2096":1,"2097":1,"2107":1,"2109":1,"2182":1,"2188":1,"2189":4,"2191":3,"2208":1,"2209":1,"2210":2,"2213":1,"2214":1,"2219":1,"2221":1,"2222":1,"2249":1,"2259":1,"2261":1,"2264":2,"2268":1,"2271":1,"2272":3,"2273":2,"2275":2,"2276":1,"2277":1,"2278":4,"2280":1,"2286":2,"2288":1,"2290":2,"2292":2,"2294":3,"2297":1,"2298":1,"2300":3,"2301":2,"2304":1,"2309":6,"2317":3,"2319":1,"2323":1,"2325":1,"2329":4,"2330":3,"2331":3,"2347":1,"2378":1,"2379":5,"2382":1,"2384":3,"2387":1,"2388":3,"2389":2,"2390":1,"2393":1,"2396":1,"2397":1,"2403":1,"2415":1,"2416":1,"2417":6,"2418":7,"2419":1,"2421":1,"2422":1,"2423":3,"2426":1,"2427":3,"2428":7,"2429":1,"2431":1,"2434":1,"2435":1,"2448":1,"2450":2,"2454":1,"2460":2,"2463":1,"2466":5,"2467":1,"2471":2,"2482":1,"2483":1,"2484":1,"2488":1,"2490":1,"2497":2,"2501":1,"2502":1,"2506":3,"2507":1,"2522":1,"2554":1,"2560":1,"2561":1,"2564":2,"2568":1,"2569":3,"2570":2,"2571":3,"2573":2,"2575":1,"2580":1,"2582":1,"2585":1,"2587":2,"2589":2,"2590":2,"2591":2,"2592":1,"2595":1,"2596":2,"2597":2,"2598":2,"2601":2,"2602":1,"2603":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":2,"2610":2,"2612":3,"2613":1,"2614":1,"2615":1,"2616":2,"2617":2,"2619":1,"2621":2,"2622":1,"2624":1,"2626":2,"2628":5,"2632":1,"2634":1,"2635":1,"2637":3,"2640":1,"2641":1,"2650":4,"2651":2,"2652":1,"2656":1,"2657":2,"2658":1,"2659":2,"2662":1,"2663":2,"2665":1,"2667":1,"2669":2,"2674":5,"2683":1,"2690":1,"2704":1,"2707":1,"2709":4,"2711":1,"2713":1,"2714":1,"2717":3,"2725":1,"2726":5,"2727":2,"2728":6,"2729":3,"2730":1,"2731":1,"2732":1,"2751":2,"2753":2,"2754":4,"2755":1,"2756":1,"2757":7,"2761":1,"2780":1,"2784":3,"2786":1,"2795":4,"2813":1,"2842":1,"2852":2,"2869":1,"2871":1,"2878":1,"2889":6,"2899":1,"2902":2,"2903":4,"2904":2,"2906":1,"2912":3,"2914":1,"2919":2,"2920":6,"2921":3,"2922":7,"2926":3,"2929":7,"2935":4,"2936":2,"2937":1,"2938":3,"2940":1,"2941":1,"2945":1,"2946":2,"2950":3}}],["wise",{"2":{"756":1,"768":1,"1248":1,"1269":1}}],["wisdom",{"2":{"163":1}}],["wishes",{"2":{"1628":1}}],["wished",{"2":{"589":1}}],["wishing",{"2":{"284":1,"486":1}}],["wish",{"2":{"1":1,"152":1,"217":1,"231":1,"232":1,"265":1,"429":1,"559":1,"1467":1,"1627":1,"1668":1,"1777":1,"1851":1,"2058":1,"2090":1,"2181":1,"2267":1,"2297":1,"2416":2,"2567":2,"2590":1,"2591":2,"2592":1,"2613":1,"2685":1,"2686":1,"2703":1}}],["widht",{"2":{"1527":2}}],["width",{"2":{"111":1,"114":1,"677":1,"754":1,"755":1,"756":1,"1527":2,"1541":1,"1939":1,"1949":2,"1952":3,"1953":3,"1954":1,"1970":2,"2288":2,"2289":3,"2756":16,"2757":8,"2768":4,"2774":1,"2795":1,"2869":1,"2889":1}}],["widely",{"2":{"2653":1,"2709":1}}],["wider",{"2":{"414":1,"512":1,"514":2}}],["widen",{"2":{"175":1}}],["wide",{"0":{"510":1,"511":1},"2":{"77":1,"172":1,"677":1,"1849":3,"2085":3,"2663":1,"2705":1,"2757":3,"2799":1,"2884":1,"2894":1}}],["winc",{"2":{"2327":1,"2328":1,"2332":1,"2344":1,"2552":1}}],["wincompose",{"2":{"175":1,"2327":1,"2328":1,"2331":4,"2332":2,"2344":1,"2345":1,"2346":1,"2552":2}}],["window",{"2":{"393":3,"412":2,"688":1,"1208":1,"1610":2,"1612":2,"1675":1,"1935":1,"2502":1,"2560":1,"2582":1,"2587":1,"2616":1,"2663":1,"2669":2,"2700":1}}],["windows",{"0":{"240":1,"388":1,"2386":1,"2666":1},"1":{"2667":1,"2668":1,"2669":1},"2":{"73":1,"158":1,"240":1,"388":2,"393":1,"458":1,"513":1,"685":1,"687":1,"689":1,"1318":1,"1326":1,"1351":1,"1361":1,"1370":1,"1462":1,"1618":2,"1675":1,"1676":1,"1784":1,"1957":1,"1958":1,"2016":1,"2057":1,"2328":1,"2331":5,"2332":3,"2384":1,"2386":6,"2396":1,"2406":1,"2408":1,"2410":1,"2498":1,"2502":2,"2506":1,"2514":2,"2516":1,"2522":4,"2552":3,"2554":1,"2572":2,"2573":1,"2599":1,"2605":2,"2613":1,"2614":1,"2619":1,"2626":1,"2627":1,"2664":1,"2667":3,"2669":2,"2674":4,"2717":1,"2739":1}}],["winusb",{"2":{"240":2,"689":13}}],["wings",{"2":{"222":2,"266":1}}],["wings42",{"2":{"143":6}}],["winkeyless",{"2":{"222":1}}],["winkeys",{"2":{"222":1}}],["winni",{"2":{"222":1}}],["winry25",{"2":{"317":1}}],["winry25tc",{"2":{"143":2,"149":1}}],["winry315",{"2":{"277":1}}],["winry",{"2":{"143":1,"149":1}}],["wins",{"2":{"70":13}}],["win",{"2":{"70":1,"134":1,"266":1,"1673":1,"2328":1,"2332":1,"2542":1,"2552":1,"2572":1}}],["wired",{"2":{"565":2,"1313":1,"1479":1,"1546":1,"1558":1,"1659":1,"1669":2,"1968":1,"2265":1,"2278":1,"2429":1,"2485":1,"2487":1,"2489":1,"2566":1,"2567":11,"2569":2,"2844":1,"2848":1,"2932":1}}],["wires",{"2":{"396":1,"1192":1,"1200":1,"2264":2,"2265":4,"2266":1,"2267":1,"2427":1,"2429":5,"2430":1,"2431":4,"2434":2,"2483":2}}],["wireless",{"0":{"2373":1,"2528":1,"2744":1,"2859":1},"1":{"2374":1,"2375":1,"2376":1,"2377":1},"2":{"241":1,"2377":1,"2528":2,"2566":1,"2567":20,"2569":2,"2728":10,"2736":1,"2806":2,"2859":1}}],["wire",{"2":{"35":2,"114":1,"396":1,"1192":5,"1194":1,"1197":1,"1283":2,"1287":1,"1395":1,"2178":2,"2208":1,"2281":1,"2421":3,"2422":1,"2423":3,"2425":9,"2427":1,"2428":2,"2429":5,"2434":1,"2436":1,"2466":3,"2468":1}}],["wiring",{"0":{"35":1,"1475":1,"1478":1,"1482":1,"2266":1,"2267":1,"2420":1,"2425":1,"2430":1,"2485":1,"2487":1,"2489":1,"2491":1,"2493":1,"2495":1,"2507":1},"1":{"1479":1,"2421":1,"2422":1,"2423":1,"2424":1,"2425":1,"2426":2,"2427":2,"2428":2,"2429":2,"2430":1,"2431":2,"2432":1,"2433":1,"2434":1,"2435":1,"2436":1},"2":{"35":3,"134":1,"716":1,"1478":1,"1482":1,"1681":1,"1954":2,"1983":1,"2085":1,"2290":2,"2422":1,"2425":1,"2427":1,"2429":1,"2434":1,"2436":1,"2483":1,"2508":1,"2674":1,"2721":1,"2828":1}}],["welcomed",{"2":{"2731":1}}],["welcome",{"2":{"2659":1}}],["well",{"2":{"39":1,"40":2,"90":1,"107":1,"131":1,"132":1,"152":1,"153":1,"188":1,"198":1,"201":1,"203":1,"212":1,"224":1,"229":1,"232":1,"243":1,"249":1,"263":1,"265":1,"272":1,"298":1,"331":1,"393":1,"398":1,"433":1,"494":1,"571":1,"605":1,"613":1,"665":1,"689":1,"699":1,"756":1,"1198":1,"1201":1,"1381":1,"1421":1,"1434":1,"1472":1,"1483":1,"1490":1,"1498":1,"1503":1,"1534":1,"1540":1,"1594":1,"1630":1,"1681":1,"1786":1,"1787":1,"1837":1,"1843":1,"1983":1,"1986":1,"2014":1,"2075":1,"2086":1,"2255":2,"2261":1,"2292":1,"2298":1,"2310":1,"2317":1,"2327":1,"2329":1,"2384":1,"2390":1,"2397":1,"2418":2,"2422":1,"2447":1,"2461":1,"2502":1,"2508":1,"2535":1,"2567":1,"2569":1,"2591":1,"2707":1,"2751":1,"2753":2,"2894":1,"2932":1}}],["wetting",{"2":{"2427":1}}],["wet",{"2":{"2427":1}}],["wete",{"2":{"197":4}}],["west",{"2":{"1741":1,"2051":1}}],["westberrytech",{"0":{"549":1},"2":{"130":1,"134":1}}],["week",{"0":{"407":1},"2":{"412":1}}],["weeks",{"0":{"405":1,"406":1},"2":{"228":1,"412":7,"2567":1}}],["webhost",{"2":{"2634":3}}],["webpage",{"2":{"1315":1}}],["webserver",{"2":{"460":1}}],["website",{"2":{"70":1,"2425":1,"2432":1,"2434":1,"2436":1,"2452":1,"2817":1}}],["web",{"2":{"364":1,"373":1,"576":1,"610":1,"661":1,"1382":1,"2317":1,"2437":1,"2600":1}}],["weikav",{"2":{"2567":1}}],["weighting",{"2":{"1968":1}}],["weight",{"2":{"1684":2,"1685":3,"2300":1}}],["weights",{"2":{"249":1,"1968":6}}],["weird",{"2":{"1490":1,"2789":1}}],["weirdo",{"2":{"143":7,"149":2,"222":1}}],["werror=array",{"2":{"160":1}}],["weren",{"2":{"199":1}}],["were",{"2":{"98":1,"128":1,"131":1,"170":1,"172":1,"181":1,"190":1,"215":1,"229":1,"234":2,"244":1,"251":1,"254":1,"256":1,"263":2,"268":1,"272":1,"273":1,"279":1,"283":1,"512":1,"514":1,"1398":1,"1425":1,"1499":1,"1517":1,"1538":1,"1592":1,"1604":1,"1631":1,"1632":1,"1786":1,"1962":1,"1996":1,"2048":1,"2065":1,"2069":1,"2076":1,"2077":1,"2183":1,"2280":1,"2569":1,"2589":1,"2634":2,"2755":1,"2800":1,"2894":1,"2920":1}}],["went",{"2":{"125":1,"169":1,"1953":1}}],["wealthier",{"2":{"1528":2}}],["weact",{"0":{"2675":1},"1":{"2676":1,"2677":1,"2678":1,"2679":1,"2680":1,"2681":1,"2682":1,"2683":1},"2":{"308":1,"548":2,"2675":3,"2683":1,"2895":1}}],["wear",{"0":{"189":1,"752":1,"753":1,"754":1,"755":1,"756":1,"757":1},"1":{"754":1,"755":1,"756":1,"757":1},"2":{"114":1,"175":1,"189":1,"191":4,"222":1,"236":5,"249":1,"277":1,"308":1,"333":1,"746":2,"752":3,"753":6,"754":8,"755":7,"756":5,"2864":3}}],["weakly",{"2":{"772":1,"797":1,"1591":1,"2344":1,"2345":1,"2346":1}}],["weak",{"0":{"1362":1},"2":{"65":1,"93":1,"114":1,"149":2,"175":1,"210":1,"328":1,"339":1,"570":1,"625":4,"1362":7,"1470":2,"1472":1,"1517":2,"1532":1,"1600":2,"1689":1,"1954":2,"2276":1,"2290":4,"2381":3,"2728":1}}],["we",{"0":{"1496":1,"2438":1,"2932":1},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1},"2":{"0":1,"9":1,"29":1,"40":2,"41":1,"42":1,"52":1,"83":1,"89":1,"92":1,"93":1,"111":1,"112":1,"172":2,"187":1,"194":2,"201":1,"224":1,"228":1,"245":2,"263":1,"273":1,"277":1,"283":1,"380":1,"384":1,"393":7,"396":3,"399":3,"404":1,"406":1,"407":1,"408":1,"425":1,"489":6,"492":1,"495":1,"499":1,"501":1,"504":1,"505":2,"506":1,"512":6,"513":1,"514":5,"515":1,"516":4,"518":1,"521":1,"527":1,"529":3,"530":1,"537":1,"538":2,"539":2,"540":1,"542":1,"543":1,"544":1,"555":1,"571":1,"589":2,"596":1,"603":2,"604":1,"609":2,"610":1,"612":1,"613":3,"614":2,"615":1,"621":1,"627":2,"661":1,"665":4,"670":2,"671":1,"685":1,"701":4,"721":1,"1313":1,"1320":1,"1335":1,"1340":1,"1341":1,"1342":2,"1382":1,"1396":1,"1410":1,"1417":5,"1420":1,"1424":1,"1431":2,"1446":8,"1447":1,"1462":1,"1472":1,"1499":7,"1518":1,"1525":4,"1528":1,"1538":7,"1539":1,"1618":2,"1622":1,"1623":1,"1657":1,"1661":1,"1947":2,"1952":1,"1953":2,"1959":1,"1996":2,"2059":1,"2189":4,"2190":1,"2191":2,"2261":1,"2286":2,"2310":3,"2316":2,"2319":4,"2387":1,"2390":1,"2397":1,"2422":1,"2429":1,"2431":2,"2437":1,"2441":1,"2447":2,"2448":2,"2458":1,"2459":1,"2460":1,"2462":3,"2466":9,"2560":1,"2561":1,"2563":1,"2564":1,"2565":1,"2579":1,"2580":1,"2581":1,"2582":1,"2620":1,"2628":1,"2632":2,"2634":4,"2639":1,"2657":1,"2663":2,"2667":1,"2668":1,"2669":1,"2673":1,"2680":1,"2728":1,"2730":1,"2731":3,"2751":1,"2794":3,"2795":3,"2796":1,"2836":1,"2909":1,"2920":2,"2932":2,"2938":3,"2939":2,"2940":3,"2941":1}}],["i+7",{"2":{"2757":1}}],["i+=8",{"2":{"2757":3}}],["i++",{"2":{"1850":2,"1947":1,"1948":1,"2088":2,"2095":2,"2096":1,"2286":1}}],["i2s",{"2":{"2689":1}}],["i2c0",{"2":{"2697":2}}],["i2cv2",{"0":{"770":1},"2":{"770":1}}],["i2cv1",{"0":{"769":1},"2":{"769":1}}],["i2cd0",{"2":{"2697":1}}],["i2cd1",{"2":{"768":2,"2697":1,"2702":1}}],["i2cd2",{"2":{"199":1,"768":1}}],["i2c3",{"2":{"768":1}}],["i2c2",{"2":{"768":4}}],["i2c1",{"2":{"768":7,"769":3,"770":5,"2697":2,"2702":2}}],["i2c",{"0":{"244":1,"749":1,"764":1,"766":1,"772":1,"773":2,"776":2,"779":2,"782":2,"785":2,"788":2,"791":2,"794":2,"797":2,"1291":1,"1950":1,"2267":1,"2446":1,"2697":1},"1":{"765":1,"766":1,"767":1,"768":1,"769":1,"770":1,"771":1,"772":1,"773":1,"774":3,"775":3,"776":1,"777":3,"778":3,"779":1,"780":3,"781":3,"782":1,"783":3,"784":3,"785":1,"786":3,"787":3,"788":1,"789":3,"790":3,"791":1,"792":3,"793":3,"794":1,"795":3,"796":3,"797":1,"798":3,"799":3},"2":{"20":1,"23":2,"35":1,"75":1,"92":1,"114":1,"118":2,"134":4,"149":1,"175":1,"191":5,"199":2,"222":1,"232":1,"234":4,"236":4,"244":9,"249":7,"266":1,"285":1,"294":5,"328":1,"355":1,"561":2,"570":3,"746":2,"749":19,"764":1,"765":3,"766":5,"767":3,"768":16,"769":1,"772":4,"773":1,"774":1,"775":3,"776":2,"777":1,"778":3,"779":1,"780":1,"781":3,"782":1,"783":1,"784":3,"785":1,"786":1,"787":3,"788":1,"789":1,"790":3,"791":1,"792":1,"793":3,"794":1,"795":1,"796":3,"797":2,"798":1,"799":3,"801":1,"802":2,"803":1,"827":1,"828":6,"829":5,"856":1,"857":6,"858":5,"888":1,"889":6,"890":5,"920":1,"921":6,"922":17,"955":1,"956":6,"957":17,"989":1,"990":6,"991":5,"1023":1,"1024":6,"1025":5,"1057":1,"1058":6,"1059":5,"1091":1,"1092":6,"1093":17,"1125":1,"1126":6,"1127":17,"1159":1,"1160":6,"1161":17,"1215":1,"1216":6,"1217":5,"1285":1,"1289":1,"1291":6,"1395":1,"1682":1,"1943":1,"1945":3,"1950":1,"1953":1,"1970":3,"1973":2,"1974":3,"1980":3,"2261":2,"2262":1,"2264":1,"2275":4,"2431":1,"2444":1,"2446":1,"2689":1,"2692":2,"2695":1,"2697":4,"2702":3,"2726":1,"2753":9,"2756":17,"2864":1,"2880":1,"2883":5}}],["ipad",{"2":{"2454":1}}],["iphone",{"2":{"2454":1}}],["ipsum",{"2":{"363":1}}],["ignoring",{"0":{"2072":1,"2073":1},"1":{"2073":1,"2074":1,"2075":1},"2":{"2011":1}}],["ignores",{"2":{"1359":1,"1361":1,"2073":1,"2075":1,"2914":1}}],["ignored",{"2":{"452":2,"453":2,"1407":1,"1410":1,"1527":1,"1533":1,"1960":1,"1968":1,"1999":1,"2072":2,"2073":1,"2189":1,"2213":1,"2503":1,"2554":1,"2767":1,"2872":1}}],["ignore",{"0":{"194":1,"217":1},"2":{"12":2,"112":2,"160":1,"194":11,"199":2,"217":2,"222":1,"249":1,"308":1,"339":1,"393":1,"396":1,"2008":1,"2073":1,"2075":1,"2079":1,"2189":1,"2272":1,"2519":1,"2522":1,"2575":1,"2628":1}}],["iqs572",{"2":{"1969":1}}],["iqs550",{"2":{"1969":1}}],["iqs525",{"2":{"1969":1}}],["iqs5xx",{"0":{"1969":1},"1":{"1970":1,"1971":1,"1972":1},"2":{"236":1,"1969":2,"1970":9,"1971":17,"1972":3}}],["i²c",{"0":{"803":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1217":1},"2":{"800":1,"802":2,"803":1,"804":1,"826":1,"828":6,"829":1,"830":1,"855":1,"857":6,"858":1,"862":1,"887":1,"889":6,"890":1,"892":1,"919":1,"921":6,"922":1,"927":1,"954":1,"956":6,"957":1,"961":1,"988":1,"990":6,"991":1,"995":1,"1022":1,"1024":6,"1025":1,"1029":1,"1056":1,"1058":6,"1059":1,"1063":1,"1090":1,"1092":6,"1093":1,"1097":1,"1124":1,"1126":6,"1127":1,"1131":1,"1158":1,"1160":6,"1161":1,"1165":1,"1214":1,"1216":6,"1217":1,"1218":1,"2883":2}}],["ie",{"2":{"736":1,"813":1,"817":1,"821":1,"823":1,"840":1,"844":1,"848":1,"850":1,"872":1,"876":1,"880":1,"882":1,"904":1,"908":1,"912":1,"914":1,"939":1,"943":1,"947":1,"949":1,"973":1,"977":1,"981":1,"983":1,"1007":1,"1011":1,"1015":1,"1017":1,"1041":1,"1045":1,"1049":1,"1051":1,"1075":1,"1079":1,"1083":1,"1085":1,"1109":1,"1113":1,"1117":1,"1119":1,"1143":1,"1147":1,"1151":1,"1153":1,"1177":1,"1181":1,"1185":1,"1187":1,"1230":1,"1234":1,"1238":1,"1240":1,"1276":1,"1290":1,"1645":1,"1681":1,"1718":1,"1741":1,"2626":1}}],["icsp",{"2":{"2494":1}}],["ics",{"2":{"1943":1,"2389":1}}],["icelandic",{"2":{"2887":3}}],["ice",{"2":{"1939":1}}],["icebreaker",{"2":{"308":1}}],["ic",{"2":{"1214":1,"1298":1,"1551":1,"1697":2,"1943":1,"1949":5,"1952":3,"2283":2}}],["icon",{"2":{"398":1,"2622":2}}],["ivndbt",{"2":{"300":2,"308":1}}],["ivy",{"2":{"143":2}}],["ijk",{"2":{"266":1}}],["ii",{"2":{"199":1,"222":1}}],["iie",{"2":{"165":2}}],["ik75",{"2":{"191":1}}],["ireland",{"2":{"2887":1}}],["irene",{"2":{"222":1}}],["iron",{"2":{"2421":1,"2427":5,"2428":1,"2429":1}}],["irony",{"2":{"2329":2}}],["iron180",{"2":{"222":2,"249":1}}],["ir",{"2":{"1983":1}}],["irregularities",{"2":{"2927":1}}],["irregular",{"2":{"622":1}}],["irrelevant",{"2":{"244":1}}],["irqs",{"2":{"191":1}}],["irq",{"2":{"175":1,"236":1,"768":1,"2375":1}}],["irish",{"2":{"2887":1}}],["iris60",{"2":{"222":1}}],["iris",{"2":{"35":1,"134":1,"199":1,"222":2,"266":2,"277":1}}],["i64",{"2":{"175":1}}],["imagine",{"2":{"1802":1,"1846":1,"2082":1,"2794":1}}],["image",{"0":{"467":1,"468":1,"2458":1},"2":{"468":1,"683":4,"889":1,"1320":1,"2423":1,"2425":1,"2705":1,"2715":1,"2728":3,"2734":1,"2755":14,"2757":55,"2772":1,"2774":2,"2776":2,"2778":5,"2779":1}}],["images",{"0":{"343":1},"2":{"153":3,"466":1,"683":1,"1342":1,"2415":1,"2715":1,"2728":2,"2753":2,"2754":2,"2755":2,"2757":5,"2765":1,"2772":1}}],["imgur",{"2":{"683":2,"684":1,"2415":1,"2458":1,"2715":1,"2728":4}}],["imera",{"2":{"249":1,"1389":1,"1391":3,"2895":1}}],["immediate",{"2":{"612":1,"1413":3,"2734":1,"2747":1}}],["immediately",{"2":{"230":1,"259":1,"297":1,"411":1,"651":1,"707":1,"735":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1229":1,"1233":1,"1237":1,"1239":1,"1281":1,"1306":1,"1351":1,"1378":2,"1410":1,"1417":3,"1498":1,"1538":1,"1612":1,"1786":1,"2310":1,"2650":2,"2757":1,"2775":1,"2776":2,"2785":1,"2886":1,"2912":1,"2914":3,"2920":1,"2921":1,"2923":1,"2924":1,"2926":1,"2931":1,"2949":1}}],["immutable",{"2":{"533":1}}],["immune",{"2":{"231":1}}],["impartial",{"2":{"2569":1}}],["impact",{"2":{"194":1,"643":1,"2276":1,"2310":1,"2758":1,"2902":1,"2903":1,"2922":1}}],["impacts",{"2":{"47":1}}],["impose",{"2":{"2733":1,"2735":1}}],["impossible",{"2":{"1365":1,"1423":1,"1801":1,"2453":1}}],["imported",{"2":{"448":1,"449":1,"450":1,"1628":1,"2423":1,"2432":1,"2726":1}}],["importer",{"2":{"191":1}}],["important",{"0":{"402":1,"679":1},"2":{"492":1,"512":1,"526":1,"596":1,"613":2,"627":1,"679":2,"1378":1,"1425":1,"1462":1,"1522":1,"1535":1,"1620":1,"1641":1,"2096":1,"2379":1,"2606":1,"2612":1,"2886":1,"2912":1}}],["imports",{"0":{"516":1},"1":{"517":1},"2":{"236":1,"448":1,"449":1,"516":1}}],["importing",{"0":{"2662":1},"2":{"188":1,"448":1,"449":1,"450":1,"516":2,"2432":1,"2662":1}}],["import",{"0":{"188":1,"448":1,"449":1,"450":1,"517":1},"2":{"188":4,"191":1,"288":1,"354":1,"393":2,"448":2,"449":2,"450":2,"489":2,"516":8,"517":4,"538":1,"1626":1,"1628":1,"1629":1,"2059":1,"2432":3,"2589":1,"2728":1}}],["impedance",{"2":{"761":1}}],["impls",{"2":{"1850":2,"2088":2}}],["impls\`",{"2":{"1850":1,"2088":1}}],["implied",{"2":{"1467":1,"2732":1}}],["implies",{"2":{"1313":1,"1484":1,"2278":1}}],["implicitly",{"2":{"565":1}}],["implicit",{"2":{"526":1,"535":1,"2886":1}}],["implications",{"2":{"312":1,"414":2,"417":1}}],["impl",{"2":{"339":1}}],["implementing",{"0":{"1414":1},"2":{"277":2,"613":1,"623":1,"624":1,"646":1,"690":1,"1192":1,"1540":1,"1617":1,"1618":1,"1984":1,"2728":1}}],["implemented",{"2":{"74":1,"149":1,"191":1,"203":2,"288":1,"312":1,"327":1,"593":1,"639":1,"1343":1,"1392":1,"1393":1,"1626":1,"1639":1,"1689":1,"1786":1,"1787":1,"1838":1,"1923":1,"1936":1,"2015":1,"2057":1,"2316":1,"2331":1,"2332":1,"2377":12,"2528":12,"2552":1,"2709":1,"2728":2,"2767":1,"2776":1,"2869":3,"2902":1}}],["implement",{"2":{"40":1,"74":1,"93":1,"114":1,"131":1,"134":1,"149":1,"160":1,"175":1,"191":1,"199":2,"222":1,"236":5,"259":1,"277":2,"288":1,"308":2,"328":2,"575":1,"613":1,"624":1,"625":2,"633":1,"745":1,"1343":1,"1410":1,"1414":2,"1431":1,"1480":1,"1492":1,"1551":1,"1626":1,"1798":1,"1835":1,"1846":1,"1923":1,"1945":1,"1952":1,"1964":1,"1965":1,"1986":2,"2054":1,"2057":1,"2082":1,"2212":1,"2284":1,"2381":1,"2455":1,"2652":1,"2685":1,"2686":1,"2687":1,"2751":1}}],["implementations",{"2":{"149":3,"190":1,"202":1,"222":1,"277":6,"285":1,"288":1,"294":2,"328":2,"333":1,"1192":1,"1626":1,"1842":1,"1843":1,"2261":1,"2728":1,"2729":1,"2889":1,"2935":1}}],["implementation",{"0":{"631":1,"635":1,"641":1,"644":1,"647":1,"649":1,"652":1,"653":1,"1417":1,"1430":1,"1838":1,"1839":1,"2310":1,"2749":1},"2":{"39":1,"75":1,"114":1,"125":1,"169":1,"178":1,"191":1,"233":1,"236":1,"277":1,"307":1,"308":1,"317":1,"328":1,"613":1,"624":1,"627":1,"695":2,"701":3,"757":1,"1198":1,"1201":1,"1205":2,"1292":1,"1480":2,"1493":1,"1529":1,"1537":2,"1593":1,"1605":1,"1681":1,"1953":1,"1968":1,"1993":1,"2044":2,"2261":2,"2301":1,"2374":1,"2418":2,"2455":1,"2535":1,"2569":1,"2685":1,"2686":1,"2687":1,"2872":2,"2889":1,"2924":1,"2925":1}}],["implements",{"2":{"39":1,"289":1,"1639":1,"1795":1,"2014":1,"2079":1,"2444":1,"2577":1,"2909":1,"2926":1}}],["improving",{"2":{"460":1}}],["improvement",{"2":{"114":1,"190":1,"328":1}}],["improvements",{"0":{"84":1,"98":1,"107":1,"109":1,"190":1,"221":1},"1":{"110":1,"111":1,"112":1},"2":{"35":1,"107":1,"114":2,"134":1,"149":1,"174":1,"175":2,"191":1,"210":1,"222":3,"236":1,"1540":1,"2902":1}}],["improve",{"0":{"229":1},"2":{"93":1,"114":5,"134":1,"175":2,"190":1,"191":4,"202":1,"210":1,"222":3,"236":4,"249":1,"285":2,"294":1,"575":1,"603":1,"607":1,"1410":1,"1413":1,"1949":1,"2288":1,"2379":1,"2565":1,"2902":2}}],["improved",{"0":{"83":1},"2":{"40":1,"43":2,"74":1,"84":1,"189":1,"196":1,"614":1,"1299":1}}],["improper",{"2":{"249":1,"1367":1}}],["ibus",{"2":{"2331":3}}],["ibnuda",{"2":{"143":3,"149":2}}],["ibm122m",{"2":{"218":2}}],["ibm4704",{"2":{"133":1,"134":1}}],["ibm",{"2":{"114":1,"205":1,"210":1,"215":1,"218":11}}],["ixora",{"2":{"102":2}}],["ilovbee",{"2":{"2567":1}}],["illusion",{"2":{"1541":1}}],["illustrious",{"2":{"123":1}}],["illustrate",{"2":{"99":1,"194":1,"2915":1}}],["ill",{"2":{"417":1,"2926":1}}],["ili9341",{"2":{"2753":2,"2756":7}}],["ili9163",{"2":{"2753":2,"2756":7}}],["ili9486",{"2":{"248":1,"249":1,"2753":2,"2756":8}}],["ili9488",{"2":{"191":1,"2753":2,"2756":7}}],["ili9xxx",{"2":{"210":1}}],["ilumkb",{"2":{"102":1,"114":1}}],["ios",{"2":{"1957":1,"1958":1,"2374":2,"2454":5}}],["iohidconsumer",{"2":{"1357":2}}],["iohidfamily",{"2":{"1357":6}}],["io",{"2":{"74":1,"112":1,"561":1,"762":1,"2607":1,"2704":1,"2872":1}}],["iota",{"2":{"21":3,"24":2,"1955":10}}],["i",{"0":{"415":1,"604":2,"606":1,"607":1,"618":1,"1320":1,"1336":1,"1337":2,"1338":1,"1339":1,"1341":2,"1342":1,"1345":1,"1347":1,"1348":1,"1364":1,"1500":1,"1526":1,"1594":1,"1790":1,"2066":1,"2386":1,"2632":1},"1":{"416":1,"417":1,"418":1,"1342":2,"1595":1},"2":{"65":1,"105":2,"108":1,"114":1,"207":4,"249":2,"266":2,"328":1,"341":1,"379":1,"393":1,"397":1,"466":1,"473":1,"589":2,"596":1,"609":2,"622":1,"670":1,"683":1,"684":1,"768":1,"1248":1,"1269":1,"1292":1,"1319":1,"1352":1,"1425":1,"1446":1,"1450":1,"1523":3,"1535":2,"1537":1,"1538":4,"1612":2,"1661":1,"1781":2,"1850":6,"1855":1,"1947":3,"1948":3,"1999":1,"2037":1,"2059":4,"2068":1,"2079":6,"2088":6,"2094":1,"2095":8,"2096":4,"2203":4,"2286":3,"2319":2,"2329":2,"2330":4,"2332":4,"2392":1,"2395":1,"2417":3,"2423":2,"2424":2,"2430":2,"2439":1,"2502":1,"2510":3,"2522":3,"2552":4,"2563":1,"2567":1,"2589":1,"2662":1,"2689":1,"2726":1,"2727":1,"2728":3,"2755":6,"2757":19,"2792":2,"2942":2,"2950":1}}],["idproduct",{"2":{"1332":1}}],["idvendor",{"2":{"1332":1}}],["id=92",{"2":{"1319":1}}],["id=some",{"2":{"341":1}}],["idling",{"0":{"648":1},"1":{"649":1,"650":1}}],["idled",{"2":{"648":2}}],["idle",{"0":{"1598":1,"1792":1},"2":{"149":1,"210":1,"222":1,"236":2,"297":1,"308":1,"647":1,"1593":1,"1598":3,"1792":3,"2217":1,"2861":1,"2879":1}}],["idx",{"2":{"323":1,"1612":3}}],["idb60",{"2":{"222":1}}],["idb",{"2":{"205":3}}],["ids",{"0":{"168":1,"184":1},"1":{"185":1},"2":{"168":1,"184":1,"191":1,"210":1,"383":1,"570":2,"689":1,"1637":1,"2057":1,"2277":4}}],["id75",{"2":{"143":1,"149":3,"199":1,"222":2,"291":2,"294":1,"308":1}}],["idobo",{"2":{"143":1,"149":1}}],["idobao",{"2":{"143":6,"149":6,"183":4,"191":4,"266":1,"328":1}}],["id87v2",{"2":{"191":1}}],["id87",{"2":{"143":2,"149":1}}],["id80v1",{"2":{"191":1}}],["id80v3",{"2":{"191":1}}],["id80",{"2":{"143":2,"149":4,"183":4}}],["id67",{"2":{"143":4,"149":1,"191":1}}],["ides",{"2":{"2906":1}}],["ideally",{"2":{"1463":1,"1984":1,"2003":3,"2280":1,"2711":1}}],["ideal",{"2":{"1409":1,"1468":1,"2267":1,"2391":1,"2393":1,"2400":1}}],["idea",{"2":{"532":1,"613":1,"614":1,"1315":1,"1440":1,"1503":1,"1538":1,"1963":1,"2057":1,"2428":1,"2429":2,"2713":1}}],["identity",{"2":{"615":1}}],["identical",{"2":{"307":1,"1394":1,"1395":1,"1397":1,"1400":1,"1401":1,"1493":1,"1938":1,"2275":1,"2309":1,"2694":1,"2702":1,"2711":1,"2756":1,"2766":1,"2770":1,"2771":1}}],["identification",{"2":{"2569":1}}],["identifies",{"2":{"2570":1}}],["identified",{"2":{"312":1,"1538":1,"2567":1,"2571":2}}],["identifier",{"2":{"157":2,"520":1,"1423":1,"1630":1,"2573":1,"2732":2}}],["identifiers",{"2":{"110":1,"266":1,"1528":1,"1593":1}}],["identifying",{"2":{"2796":1}}],["identify",{"2":{"70":1,"110":1,"312":1,"1538":1,"1539":1,"1590":1,"2037":1,"2320":1,"2941":1}}],["ide",{"0":{"392":1},"2":{"132":1,"384":1,"385":1,"392":1,"393":1,"429":1,"2653":2,"2658":2,"2814":1}}],["id",{"0":{"370":1,"371":1,"372":1},"2":{"40":1,"70":2,"160":1,"168":2,"175":2,"184":2,"222":1,"277":1,"285":1,"380":1,"381":1,"403":1,"561":2,"1303":1,"1319":4,"1332":1,"2056":3,"2057":3,"2059":6,"2277":3,"2295":2,"2498":1,"2499":1,"2500":1,"2501":1,"2562":1,"2717":1,"2767":2,"2768":2,"2769":2,"2773":3,"2774":2,"2775":2,"2776":2,"2777":2,"2778":2,"2779":2,"2882":2}}],["iwrap",{"2":{"40":1}}],["italian",{"2":{"2887":9}}],["itunes",{"2":{"2522":1}}],["ition",{"2":{"2079":1}}],["ith",{"2":{"1781":1}}],["iterates",{"2":{"1953":1}}],["iterate",{"2":{"639":1}}],["iterators",{"2":{"520":1}}],["iterations",{"2":{"609":1}}],["iteration",{"2":{"65":1,"496":1,"646":1}}],["itemid=1",{"2":{"1319":1}}],["item",{"0":{"167":1},"2":{"268":1,"279":1,"526":2,"527":1,"751":1,"2312":1}}],["items",{"2":{"83":1,"112":1,"134":1,"167":1,"221":1,"236":2,"264":1,"274":1,"282":1,"292":1,"301":1,"313":1,"326":1,"336":1,"344":3,"403":1,"532":1}}],["it",{"0":{"17":1,"620":1,"668":1,"672":1,"673":1,"1320":2,"1331":1,"1342":1,"1348":1,"1498":1,"1525":1,"2479":1,"2617":1},"2":{"5":1,"6":1,"8":1,"11":2,"13":1,"17":1,"21":2,"35":2,"40":1,"47":2,"82":1,"89":1,"94":1,"98":1,"99":1,"105":2,"114":2,"116":2,"119":1,"123":1,"130":2,"133":1,"134":1,"149":1,"153":2,"154":1,"163":3,"166":2,"181":1,"188":1,"189":2,"191":1,"194":2,"195":2,"198":1,"199":1,"201":1,"202":1,"214":1,"228":2,"233":1,"235":1,"246":1,"251":2,"254":1,"259":1,"288":1,"294":1,"297":2,"302":1,"303":1,"315":1,"323":2,"328":1,"338":1,"340":1,"344":5,"365":1,"367":1,"370":1,"381":1,"386":1,"387":1,"389":1,"390":1,"391":1,"393":3,"396":2,"403":5,"409":1,"414":2,"415":1,"416":1,"417":1,"429":3,"430":1,"434":1,"435":2,"437":1,"440":1,"442":1,"443":1,"444":1,"445":1,"459":3,"463":3,"470":1,"475":1,"482":1,"489":3,"491":1,"494":2,"495":1,"496":1,"499":1,"512":2,"513":7,"514":1,"517":1,"525":1,"526":1,"528":1,"529":2,"531":1,"532":2,"533":1,"536":1,"538":2,"540":4,"541":1,"554":1,"559":2,"563":1,"564":3,"568":1,"569":2,"571":1,"572":1,"574":2,"575":1,"585":2,"586":1,"593":1,"596":2,"598":2,"600":2,"604":2,"605":1,"607":2,"613":8,"623":1,"624":1,"625":1,"627":1,"630":2,"631":3,"633":1,"634":2,"637":1,"643":2,"645":2,"646":1,"648":3,"651":4,"656":5,"657":2,"658":2,"659":2,"664":1,"666":3,"672":1,"678":1,"681":2,"683":2,"684":1,"686":3,"687":1,"688":2,"689":1,"699":2,"701":2,"720":1,"721":1,"723":1,"727":1,"748":1,"754":2,"755":1,"761":4,"763":1,"765":1,"772":1,"797":1,"861":1,"926":1,"960":1,"994":1,"1028":1,"1062":1,"1096":1,"1130":1,"1164":1,"1193":3,"1195":1,"1196":1,"1198":1,"1199":1,"1201":1,"1203":3,"1204":4,"1205":1,"1246":1,"1267":1,"1290":1,"1297":3,"1312":1,"1327":1,"1329":2,"1331":1,"1332":1,"1338":1,"1339":1,"1341":2,"1343":1,"1347":2,"1348":3,"1350":1,"1351":1,"1354":1,"1356":4,"1361":1,"1364":2,"1365":3,"1372":1,"1378":1,"1380":3,"1381":1,"1392":2,"1396":2,"1406":1,"1409":1,"1410":2,"1412":1,"1415":2,"1417":17,"1420":1,"1422":7,"1423":2,"1424":1,"1425":3,"1427":2,"1428":4,"1433":1,"1434":1,"1438":1,"1440":2,"1446":2,"1447":4,"1449":1,"1454":1,"1455":2,"1462":1,"1464":4,"1467":4,"1470":3,"1471":1,"1472":3,"1473":1,"1485":5,"1490":1,"1492":2,"1493":2,"1496":1,"1498":4,"1499":3,"1500":1,"1517":2,"1518":1,"1522":1,"1525":2,"1526":3,"1527":2,"1528":5,"1529":1,"1532":2,"1537":3,"1538":1,"1541":2,"1542":2,"1546":1,"1550":1,"1558":2,"1589":1,"1590":1,"1592":2,"1593":4,"1597":1,"1602":2,"1604":1,"1605":2,"1609":2,"1612":6,"1618":2,"1620":3,"1621":1,"1623":2,"1626":1,"1630":3,"1631":1,"1632":1,"1633":1,"1638":1,"1642":2,"1646":1,"1659":2,"1661":3,"1662":2,"1663":1,"1664":1,"1665":2,"1668":1,"1672":1,"1673":2,"1675":1,"1681":2,"1729":1,"1739":1,"1750":1,"1762":3,"1763":1,"1765":2,"1769":1,"1777":1,"1781":2,"1785":1,"1786":4,"1789":2,"1790":1,"1791":1,"1795":1,"1801":1,"1804":3,"1838":2,"1839":1,"1841":1,"1843":1,"1844":2,"1846":2,"1851":1,"1853":2,"1865":1,"1867":1,"1908":1,"1910":1,"1912":1,"1915":1,"1934":3,"1935":4,"1936":1,"1939":1,"1948":1,"1952":1,"1953":1,"1954":5,"1956":3,"1957":4,"1959":2,"1962":1,"1964":2,"1965":1,"1968":1,"1977":1,"1981":2,"1984":1,"1988":1,"1990":1,"1992":1,"1993":1,"2000":1,"2001":1,"2002":1,"2008":1,"2009":1,"2011":1,"2013":1,"2014":2,"2016":1,"2048":2,"2053":1,"2057":4,"2058":1,"2059":1,"2066":1,"2068":2,"2069":1,"2070":2,"2072":2,"2073":1,"2074":1,"2076":1,"2079":1,"2080":2,"2082":2,"2086":2,"2090":1,"2092":2,"2097":2,"2107":1,"2109":1,"2168":1,"2170":1,"2172":1,"2175":1,"2179":2,"2181":1,"2184":1,"2188":2,"2189":1,"2198":2,"2210":3,"2219":1,"2220":1,"2249":1,"2255":2,"2258":1,"2265":1,"2267":1,"2269":2,"2270":1,"2271":4,"2272":3,"2273":1,"2275":3,"2277":3,"2278":5,"2279":1,"2281":1,"2287":1,"2290":4,"2291":1,"2293":5,"2295":1,"2297":1,"2298":1,"2300":3,"2302":1,"2305":1,"2308":3,"2309":2,"2310":8,"2317":2,"2318":1,"2319":2,"2320":1,"2326":1,"2328":1,"2329":1,"2330":1,"2331":9,"2374":2,"2375":3,"2379":1,"2382":1,"2384":3,"2386":3,"2387":9,"2389":1,"2390":1,"2392":2,"2394":2,"2395":1,"2396":2,"2397":2,"2402":1,"2411":1,"2414":1,"2415":1,"2417":6,"2418":4,"2422":3,"2423":4,"2427":6,"2428":13,"2429":8,"2430":3,"2431":1,"2432":1,"2434":5,"2435":1,"2447":1,"2448":1,"2450":3,"2452":3,"2453":1,"2455":1,"2456":1,"2459":1,"2460":1,"2461":1,"2462":1,"2466":5,"2469":2,"2472":1,"2475":1,"2481":1,"2482":4,"2484":1,"2488":1,"2496":2,"2497":1,"2500":1,"2501":2,"2502":1,"2503":1,"2504":2,"2508":4,"2535":1,"2558":1,"2559":1,"2560":1,"2561":2,"2562":1,"2563":1,"2564":3,"2567":1,"2572":2,"2573":4,"2575":2,"2579":3,"2580":1,"2584":1,"2585":1,"2586":1,"2587":1,"2589":1,"2590":1,"2592":3,"2595":1,"2598":1,"2601":1,"2606":1,"2607":1,"2612":5,"2614":1,"2616":3,"2617":3,"2620":1,"2626":3,"2627":1,"2628":2,"2629":1,"2633":1,"2634":4,"2635":1,"2636":1,"2637":1,"2638":2,"2639":2,"2640":5,"2650":1,"2651":2,"2652":6,"2653":1,"2656":1,"2658":7,"2659":1,"2662":1,"2667":3,"2669":1,"2670":3,"2671":1,"2673":5,"2674":5,"2675":1,"2678":2,"2679":1,"2682":1,"2683":1,"2690":1,"2691":1,"2694":1,"2700":2,"2702":1,"2703":1,"2705":1,"2707":1,"2709":1,"2710":2,"2713":2,"2714":1,"2717":2,"2720":1,"2721":1,"2726":4,"2728":3,"2729":1,"2730":3,"2731":2,"2732":3,"2751":1,"2753":1,"2754":1,"2756":2,"2757":9,"2758":2,"2762":1,"2764":2,"2765":1,"2767":1,"2770":1,"2772":1,"2774":1,"2776":1,"2782":2,"2784":4,"2786":2,"2791":1,"2794":1,"2795":2,"2796":2,"2799":1,"2817":1,"2834":1,"2843":1,"2846":2,"2851":1,"2869":1,"2874":1,"2880":1,"2884":2,"2886":4,"2888":1,"2891":3,"2895":1,"2903":1,"2906":2,"2909":1,"2912":2,"2913":1,"2922":3,"2923":1,"2924":1,"2925":1,"2927":1,"2929":2,"2930":3,"2931":1,"2932":3,"2934":2,"2935":5,"2936":3,"2937":4,"2938":1,"2939":2,"2940":2,"2942":1,"2943":1,"2944":1,"2945":4,"2948":1,"2949":1,"2950":7}}],["itsybitsy",{"2":{"689":2,"2499":2}}],["itself",{"2":{"152":1,"376":1,"576":1,"588":1,"639":2,"664":1,"685":1,"687":1,"688":1,"714":1,"1463":1,"1522":1,"1529":1,"1535":1,"1593":2,"1627":1,"2294":1,"2394":1,"2396":1,"2417":1,"2428":1,"2430":1,"2482":1,"2506":1,"2553":1,"2684":1,"2707":1,"2738":1,"2795":1,"2884":1,"2931":1,"2941":1}}],["its",{"0":{"2657":1},"1":{"2658":1,"2659":1,"2660":1},"2":{"3":1,"7":1,"8":1,"20":1,"23":1,"48":1,"113":2,"114":1,"120":1,"133":1,"157":1,"189":1,"190":1,"195":1,"307":1,"392":1,"393":1,"411":1,"414":1,"558":1,"588":1,"687":1,"721":1,"729":1,"751":1,"754":1,"755":1,"756":2,"762":1,"1199":1,"1313":1,"1315":1,"1317":1,"1356":1,"1371":1,"1389":1,"1407":1,"1411":1,"1413":1,"1488":1,"1496":2,"1517":1,"1518":1,"1538":1,"1539":3,"1558":2,"1602":1,"1605":1,"1612":4,"1613":1,"1630":1,"1738":1,"1742":1,"1777":1,"1934":4,"1946":1,"1953":1,"1985":1,"2037":1,"2077":3,"2086":2,"2087":1,"2255":2,"2300":1,"2318":1,"2319":1,"2331":1,"2414":2,"2427":1,"2437":1,"2455":1,"2466":4,"2473":1,"2558":1,"2559":1,"2562":2,"2566":2,"2569":1,"2570":1,"2598":1,"2605":1,"2609":2,"2610":1,"2626":3,"2662":1,"2728":1,"2756":1,"2765":1,"2772":1,"2795":1,"2799":1,"2807":1,"2844":1,"2851":1,"2864":1,"2902":1,"2919":1,"2920":2,"2921":2,"2922":2,"2930":1,"2935":1}}],["ifkb",{"2":{"2567":1}}],["ifeq",{"2":{"2455":2}}],["ify",{"2":{"191":1}}],["ifnormation",{"2":{"163":1}}],["ifndef",{"2":{"134":1,"512":1,"1472":1,"1510":5,"1533":1,"2316":1,"2454":4,"2726":1}}],["ifdefs",{"2":{"114":1,"175":1,"222":1,"266":1,"1406":1}}],["ifdef",{"2":{"21":4,"24":4,"134":1,"222":1,"249":2,"512":1,"555":1,"647":3,"666":1,"1329":1,"1391":14,"1399":5,"1406":1,"1438":3,"1471":3,"1485":2,"1510":1,"1533":2,"1535":4,"1612":4,"1657":2,"1804":3,"1839":2,"1850":2,"1945":1,"1948":1,"1983":1,"2040":1,"2041":1,"2043":1,"2088":2,"2284":1,"2287":1,"2454":1}}],["if",{"0":{"141":1,"1338":1,"1339":1,"1342":1},"2":{"1":1,"7":1,"11":1,"13":2,"21":4,"24":4,"27":1,"33":1,"35":1,"39":2,"40":2,"47":1,"49":1,"51":2,"62":1,"87":1,"89":1,"90":9,"98":1,"105":6,"107":1,"114":2,"119":1,"125":2,"149":1,"152":1,"157":1,"158":2,"160":1,"166":1,"169":2,"194":3,"196":4,"198":1,"199":2,"202":1,"203":1,"206":1,"209":1,"210":1,"212":1,"213":1,"217":1,"220":2,"228":1,"230":1,"232":2,"233":1,"236":2,"240":3,"241":1,"245":1,"247":1,"248":1,"253":1,"254":1,"255":1,"256":1,"259":1,"266":1,"270":1,"272":1,"273":2,"276":1,"277":2,"281":1,"283":1,"284":1,"289":1,"306":1,"307":5,"315":1,"320":2,"323":1,"324":1,"325":1,"344":6,"353":1,"370":2,"374":1,"375":1,"376":1,"377":1,"378":1,"379":1,"383":1,"388":1,"389":1,"393":2,"394":1,"396":1,"398":1,"403":4,"411":1,"414":1,"415":1,"416":1,"418":1,"423":2,"429":1,"430":1,"432":1,"434":1,"435":1,"436":1,"437":1,"440":1,"442":1,"444":1,"445":1,"446":1,"458":1,"463":1,"465":1,"469":1,"488":2,"489":2,"492":2,"493":1,"494":1,"505":2,"507":1,"509":1,"510":1,"512":16,"513":2,"514":3,"518":1,"521":2,"524":2,"525":3,"530":1,"532":2,"533":3,"535":5,"537":1,"540":3,"543":1,"544":1,"556":1,"559":1,"560":1,"561":3,"562":1,"563":1,"564":10,"565":4,"568":2,"569":3,"570":4,"572":1,"574":1,"575":2,"576":1,"580":1,"588":1,"589":1,"593":7,"596":3,"598":1,"599":2,"600":1,"604":2,"605":1,"606":1,"607":3,"608":1,"609":1,"610":2,"611":1,"612":1,"613":5,"614":1,"615":1,"617":2,"618":1,"630":2,"631":2,"634":1,"639":1,"640":1,"644":1,"645":1,"646":1,"647":10,"648":1,"651":3,"652":2,"653":1,"656":5,"657":3,"660":1,"668":1,"671":1,"672":2,"673":2,"681":2,"684":1,"685":1,"686":6,"687":3,"688":1,"689":1,"690":1,"698":1,"699":2,"701":2,"703":2,"716":1,"720":2,"721":1,"725":2,"742":1,"748":2,"749":3,"750":1,"754":2,"763":3,"765":2,"766":1,"768":1,"772":1,"775":2,"778":2,"781":2,"784":2,"787":2,"790":2,"793":2,"796":2,"797":1,"799":2,"801":2,"827":2,"856":2,"861":1,"888":2,"920":2,"926":1,"955":2,"960":1,"989":2,"994":1,"1023":2,"1028":1,"1057":2,"1062":1,"1091":2,"1096":1,"1125":2,"1130":1,"1159":2,"1164":1,"1196":1,"1198":1,"1199":1,"1200":1,"1201":2,"1203":4,"1204":4,"1207":2,"1209":1,"1215":2,"1246":2,"1248":2,"1252":1,"1253":2,"1256":1,"1258":1,"1261":2,"1264":2,"1266":1,"1267":2,"1276":1,"1281":1,"1282":1,"1284":2,"1286":1,"1287":1,"1297":1,"1301":1,"1303":1,"1314":1,"1315":3,"1317":1,"1318":1,"1320":1,"1322":1,"1329":2,"1332":1,"1336":2,"1338":2,"1339":1,"1342":1,"1344":1,"1348":1,"1349":1,"1362":1,"1364":1,"1365":1,"1372":1,"1378":3,"1380":3,"1381":3,"1388":1,"1390":1,"1391":1,"1392":1,"1396":2,"1398":1,"1399":1,"1407":1,"1409":2,"1410":3,"1413":1,"1414":1,"1415":2,"1417":21,"1420":3,"1422":4,"1423":1,"1425":2,"1426":1,"1427":1,"1428":4,"1431":5,"1438":1,"1442":1,"1444":1,"1446":6,"1447":4,"1448":2,"1449":2,"1450":2,"1451":1,"1452":2,"1454":1,"1455":3,"1462":6,"1463":2,"1464":2,"1465":2,"1467":2,"1470":2,"1471":3,"1472":4,"1473":1,"1481":1,"1482":1,"1483":1,"1485":1,"1488":2,"1490":3,"1493":1,"1498":5,"1500":1,"1502":2,"1503":1,"1517":3,"1518":5,"1519":1,"1522":5,"1525":1,"1528":1,"1532":1,"1533":9,"1535":1,"1536":1,"1538":1,"1539":2,"1542":2,"1544":1,"1546":2,"1551":1,"1571":1,"1576":1,"1589":1,"1590":1,"1591":2,"1593":2,"1594":2,"1598":1,"1599":1,"1601":1,"1602":1,"1603":1,"1605":3,"1606":1,"1608":2,"1609":3,"1610":1,"1612":19,"1613":1,"1615":1,"1618":1,"1619":2,"1620":6,"1622":1,"1623":1,"1625":1,"1627":2,"1628":1,"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1638":1,"1641":1,"1642":1,"1646":1,"1656":1,"1657":9,"1661":1,"1662":1,"1663":1,"1664":1,"1665":3,"1666":3,"1667":1,"1668":14,"1671":1,"1673":3,"1675":1,"1676":4,"1678":3,"1681":6,"1686":1,"1687":2,"1699":1,"1705":1,"1709":1,"1724":1,"1729":1,"1743":1,"1750":1,"1765":2,"1766":1,"1770":1,"1779":1,"1781":4,"1782":5,"1784":2,"1785":1,"1786":3,"1788":2,"1792":1,"1794":2,"1795":2,"1796":1,"1798":4,"1802":2,"1803":1,"1804":5,"1815":2,"1817":2,"1818":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1838":1,"1839":2,"1844":1,"1846":2,"1847":7,"1850":1,"1851":1,"1852":6,"1855":2,"1864":1,"1907":1,"1923":2,"1924":1,"1935":1,"1936":1,"1937":1,"1940":1,"1947":3,"1948":4,"1949":1,"1951":1,"1952":2,"1953":2,"1954":24,"1958":2,"1960":1,"1962":5,"1965":1,"1968":1,"1970":1,"1974":1,"1983":3,"1984":1,"1985":3,"1986":1,"1987":2,"1988":3,"1989":1,"1990":1,"1992":1,"1993":2,"1994":4,"1996":5,"1998":1,"1999":1,"2000":1,"2001":2,"2008":4,"2011":1,"2012":5,"2013":2,"2014":2,"2031":1,"2040":1,"2043":1,"2048":2,"2051":1,"2054":1,"2056":1,"2058":1,"2059":6,"2065":1,"2068":1,"2069":4,"2074":1,"2075":1,"2076":4,"2077":7,"2079":2,"2080":1,"2082":2,"2083":8,"2088":1,"2090":1,"2091":9,"2094":2,"2095":4,"2096":6,"2097":1,"2106":1,"2167":1,"2179":2,"2181":2,"2182":2,"2183":1,"2185":1,"2189":1,"2191":2,"2192":1,"2193":1,"2194":1,"2199":2,"2203":1,"2206":1,"2207":1,"2208":1,"2211":1,"2218":3,"2220":1,"2221":1,"2223":1,"2225":1,"2259":3,"2260":2,"2264":1,"2267":1,"2268":1,"2271":2,"2272":1,"2273":1,"2274":3,"2275":5,"2277":5,"2278":4,"2286":3,"2287":3,"2290":19,"2292":1,"2293":3,"2294":1,"2295":2,"2297":2,"2298":2,"2300":4,"2301":1,"2302":1,"2305":2,"2306":1,"2309":7,"2310":7,"2314":1,"2315":2,"2316":4,"2317":13,"2318":3,"2319":11,"2320":1,"2321":2,"2322":1,"2327":1,"2328":1,"2329":1,"2330":1,"2331":3,"2332":1,"2347":1,"2361":1,"2366":1,"2368":1,"2375":1,"2379":6,"2381":10,"2384":2,"2387":3,"2388":1,"2389":2,"2390":2,"2392":1,"2394":1,"2397":3,"2399":1,"2401":1,"2403":1,"2404":1,"2410":1,"2415":1,"2416":1,"2417":5,"2418":2,"2419":1,"2422":1,"2423":1,"2426":1,"2427":2,"2428":3,"2429":7,"2430":1,"2431":2,"2432":1,"2433":1,"2434":5,"2435":2,"2441":1,"2450":2,"2452":1,"2453":3,"2454":2,"2456":1,"2460":3,"2461":2,"2462":1,"2464":4,"2465":2,"2466":1,"2472":1,"2474":1,"2483":1,"2490":1,"2497":1,"2502":3,"2503":2,"2506":1,"2508":4,"2523":2,"2552":1,"2558":1,"2564":1,"2565":1,"2567":3,"2568":2,"2569":3,"2570":1,"2573":2,"2575":1,"2576":3,"2577":2,"2579":4,"2580":2,"2583":1,"2584":3,"2585":1,"2586":1,"2587":1,"2590":1,"2591":2,"2592":1,"2593":1,"2594":1,"2595":3,"2597":1,"2600":1,"2601":1,"2602":1,"2606":2,"2608":2,"2609":1,"2612":3,"2613":1,"2614":1,"2616":3,"2617":2,"2619":1,"2621":1,"2626":2,"2628":2,"2629":1,"2633":1,"2634":1,"2635":2,"2636":2,"2637":1,"2640":2,"2650":2,"2651":2,"2652":14,"2656":1,"2658":2,"2659":2,"2662":1,"2665":1,"2669":3,"2671":1,"2673":1,"2674":3,"2677":1,"2678":1,"2682":1,"2684":1,"2685":2,"2686":1,"2691":1,"2694":1,"2702":1,"2707":1,"2709":3,"2711":2,"2712":1,"2714":1,"2717":2,"2725":1,"2726":4,"2728":16,"2729":5,"2730":1,"2732":1,"2742":1,"2751":1,"2752":2,"2754":5,"2755":4,"2756":2,"2757":22,"2761":1,"2764":1,"2765":2,"2767":1,"2768":1,"2769":2,"2770":3,"2773":1,"2775":1,"2776":6,"2782":4,"2783":2,"2784":1,"2785":2,"2786":4,"2787":1,"2789":2,"2790":1,"2791":3,"2792":1,"2794":1,"2797":1,"2800":1,"2834":1,"2840":1,"2853":4,"2869":1,"2876":2,"2880":1,"2885":1,"2886":1,"2887":1,"2888":1,"2889":3,"2890":3,"2891":1,"2892":3,"2894":2,"2895":1,"2897":1,"2903":1,"2906":1,"2907":1,"2911":2,"2912":12,"2913":1,"2914":5,"2920":7,"2921":4,"2922":3,"2924":2,"2925":3,"2926":5,"2927":4,"2928":2,"2929":3,"2931":3,"2932":2,"2935":1,"2938":1,"2942":3,"2944":2,"2945":2,"2947":1,"2950":2}}],["innovation",{"2":{"2902":1}}],["inner",{"0":{"1783":1},"1":{"1784":1,"1785":1,"1786":1},"2":{"362":1,"1955":1,"1998":1,"2180":1,"2556":1}}],["inbound",{"2":{"2277":1}}],["inoperable",{"2":{"1365":1}}],["inheriting",{"2":{"2869":1}}],["inheritance",{"2":{"538":1}}],["inherently",{"2":{"1787":1}}],["inherent",{"2":{"1288":1}}],["injection",{"0":{"2226":1}}],["injected",{"2":{"2222":1}}],["inject",{"2":{"626":1,"1622":1}}],["inability",{"2":{"2741":1}}],["inadvertently",{"2":{"2567":1}}],["inactivity",{"2":{"1949":2,"2288":1}}],["inactive",{"2":{"1422":1,"2014":1}}],["inappropriate",{"2":{"615":1}}],["inaugural",{"2":{"0":1}}],["ini",{"2":{"473":1,"474":1,"476":1,"482":1,"483":1,"489":1}}],["initiator2target",{"2":{"2277":4}}],["initiated",{"2":{"1936":1}}],["initiative",{"2":{"201":1}}],["initially",{"2":{"2558":1}}],["initial",{"0":{"1802":1,"2604":1},"1":{"2605":1,"2606":1,"2607":1,"2608":1,"2609":1},"2":{"93":1,"130":1,"134":2,"149":2,"172":1,"175":1,"199":2,"266":1,"1487":1,"1936":5,"1971":5,"2071":2,"2558":1,"2608":1,"2729":2,"2855":1,"2919":1}}],["initializing",{"2":{"634":1,"714":1,"2046":1,"2273":1,"2684":1,"2935":1}}],["initializers",{"2":{"1769":1,"1781":1}}],["initialized",{"2":{"633":1,"634":2,"637":2,"640":1,"641":1,"696":1,"1539":1,"1591":1,"1954":1,"2290":1,"2502":1,"2520":1,"2686":1}}],["initialize",{"2":{"624":1,"625":1,"706":1,"733":1,"734":1,"772":1,"809":1,"835":1,"867":1,"897":1,"932":1,"966":1,"1000":1,"1034":1,"1068":1,"1102":1,"1136":1,"1170":1,"1223":1,"1250":1,"1271":1,"1305":1,"1381":2,"1704":1,"1954":1,"2290":1,"2319":1,"2687":1}}],["initializes",{"2":{"39":1}}],["initialization",{"0":{"633":1,"634":1,"637":1,"640":1,"2684":1},"1":{"634":1,"635":2,"636":2,"637":1,"638":2,"639":2,"640":1,"641":2,"642":2,"2685":1,"2686":1,"2687":1},"2":{"149":1,"191":2,"236":1,"249":1,"288":1,"341":2,"420":1,"421":1,"633":2,"634":1,"640":1,"651":1,"1367":1,"1428":2,"1626":1,"1988":2,"2001":1,"2684":2,"2686":1,"2687":1,"2728":1}}],["initialised",{"2":{"191":1}}],["initialise",{"2":{"65":1,"639":1,"2757":2,"2761":1}}],["initialisation",{"2":{"39":1,"73":1,"77":1,"94":2,"639":3,"745":1,"2456":1,"2685":1,"2728":1,"2757":4,"2761":1}}],["initilization",{"2":{"149":1}}],["init",{"0":{"635":1,"636":1,"638":1,"641":1,"642":1,"649":1,"706":1,"733":1,"772":1,"809":1,"835":1,"867":1,"897":1,"932":1,"966":1,"1000":1,"1034":1,"1068":1,"1102":1,"1136":1,"1170":1,"1223":1,"1250":1,"1271":1,"1305":1,"1704":1,"2685":1,"2686":1,"2687":1},"1":{"734":1,"836":1,"868":1,"898":1,"933":1,"967":1,"1001":1,"1035":1,"1069":1,"1103":1,"1137":1,"1171":1,"1224":1,"1272":1,"1705":1},"2":{"21":2,"24":4,"39":1,"40":1,"65":1,"114":2,"134":1,"149":2,"175":7,"191":3,"199":1,"236":3,"249":6,"266":2,"277":1,"317":1,"328":1,"332":1,"337":1,"420":1,"534":1,"624":1,"625":7,"633":4,"635":2,"636":2,"638":2,"639":1,"641":2,"642":2,"648":1,"649":1,"650":2,"745":1,"772":1,"1322":1,"1416":2,"1417":6,"1418":2,"1419":2,"1420":2,"1486":1,"1551":1,"1628":1,"1638":12,"1701":2,"1702":2,"1706":1,"1707":1,"1708":1,"1850":3,"1948":1,"1954":5,"1955":2,"1983":3,"1984":1,"1988":2,"1990":1,"1997":1,"2001":1,"2041":1,"2043":1,"2046":1,"2088":3,"2097":2,"2189":1,"2191":1,"2273":1,"2277":1,"2287":1,"2290":4,"2456":1,"2508":1,"2608":1,"2685":4,"2686":4,"2687":2,"2728":8,"2756":3,"2757":8,"2761":3,"2789":1,"2950":1}}],["inexpensively",{"2":{"2835":1}}],["inefficient",{"2":{"2198":1,"2757":1}}],["inett",{"2":{"249":1}}],["inertial",{"2":{"190":1,"191":1,"1940":1,"1985":2}}],["inertia",{"0":{"1939":1},"2":{"174":2,"175":2,"1934":1,"1939":3}}],["inland",{"2":{"205":1,"317":1,"2403":1}}],["inline",{"2":{"40":1,"199":1,"354":2}}],["insulate",{"2":{"2429":1}}],["insulation",{"2":{"2425":3,"2429":2}}],["inspected",{"2":{"2731":1}}],["inspect",{"2":{"2428":1}}],["inspiration",{"2":{"1766":1,"1850":1,"2079":1,"2088":1,"2728":1}}],["inseparable",{"2":{"2734":1}}],["insensitive",{"2":{"1527":1}}],["insertion",{"2":{"2387":1}}],["inserting",{"2":{"686":1}}],["inserted",{"2":{"1657":1,"1668":1,"2330":3}}],["inserts",{"2":{"366":1}}],["insert",{"2":{"249":1,"266":1,"339":1,"607":2,"1663":1,"1694":1,"1964":1,"2331":1,"2516":2,"2518":1,"2522":3}}],["insights",{"2":{"1209":1,"1998":1}}],["inside",{"2":{"168":1,"184":1,"241":1,"253":1,"270":1,"281":1,"489":1,"544":1,"629":1,"1200":1,"1532":2,"1633":1,"1850":1,"2088":1,"2181":1,"2435":1,"2451":1,"2556":1,"2579":2,"2585":1,"2590":1,"2626":1,"2673":2,"2684":1,"2709":3,"2757":4,"2945":1}}],["ins",{"2":{"589":2,"2516":1,"2522":1}}],["instructs",{"2":{"2757":1}}],["instruct",{"2":{"2272":1,"2632":1}}],["instruction",{"2":{"1726":1,"2795":1}}],["instructions",{"0":{"2388":1,"2417":1,"2431":1},"1":{"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2405":1,"2406":1,"2407":1,"2408":1,"2409":1,"2410":1,"2418":1,"2419":1},"2":{"26":1,"112":1,"240":1,"328":1,"333":1,"385":1,"386":1,"426":1,"429":1,"594":1,"684":1,"686":1,"1205":1,"1292":1,"1314":1,"1315":1,"1723":1,"2057":1,"2502":1,"2590":2,"2594":1,"2601":1,"2612":1,"2624":1,"2627":1,"2628":1,"2683":1,"2705":1,"2728":1,"2730":1,"2757":3,"2795":1,"2814":1,"2852":2,"2936":1}}],["instructing",{"2":{"13":1,"2637":1}}],["instant",{"2":{"2317":1,"2569":1}}],["instantly",{"0":{"320":1},"2":{"320":1,"328":1,"2931":1}}],["instances",{"2":{"277":1,"2638":1}}],["instance",{"2":{"21":3,"24":1,"152":1,"344":3,"403":1,"519":1,"633":1,"717":1,"722":1,"1203":1,"1204":1,"1439":1,"1447":1,"1465":1,"1470":1,"1471":1,"1472":1,"1527":1,"1528":1,"1529":1,"1546":1,"1591":1,"1593":1,"1598":1,"1602":1,"1608":1,"1742":1,"1794":1,"2008":1,"2070":1,"2073":1,"2076":1,"2302":1,"2317":1,"2318":1,"2381":1,"2626":1,"2694":1,"2711":1,"2728":1,"2889":1,"2893":1,"2911":2,"2912":1,"2919":1,"2924":1,"2926":1,"2929":1,"2931":1,"2932":1}}],["installs",{"2":{"2496":1,"2671":1}}],["installer",{"2":{"513":1,"1318":1,"2667":1,"2668":2,"2670":2}}],["installed",{"2":{"13":1,"65":1,"385":1,"460":1,"461":1,"488":2,"685":1,"687":1,"1318":1,"1528":1,"1668":1,"2178":1,"2331":1,"2387":1,"2601":1,"2622":1,"2626":1,"2658":1,"2660":1,"2669":1,"2671":1}}],["installing",{"0":{"385":1,"2668":1},"1":{"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"2669":1},"2":{"317":1,"665":1,"2396":1,"2422":1,"2660":1,"2670":1}}],["install",{"0":{"2601":1,"2657":1,"2658":1,"2660":1},"1":{"2658":1,"2659":1,"2660":1},"2":{"158":2,"160":2,"175":1,"294":1,"384":1,"385":1,"387":2,"388":2,"389":1,"390":1,"392":1,"393":2,"420":1,"426":3,"488":1,"513":1,"686":2,"1316":2,"1318":1,"1500":1,"1528":2,"1541":1,"2331":1,"2383":1,"2433":1,"2506":2,"2601":7,"2618":1,"2620":1,"2621":2,"2622":1,"2623":2,"2624":1,"2625":2,"2626":2,"2627":2,"2656":1,"2657":1,"2658":2,"2671":1,"2674":1}}],["installation",{"0":{"158":1,"426":1,"685":1,"686":1,"687":1,"2623":1,"2625":1,"2626":1,"2627":1},"1":{"686":1,"687":1,"688":1,"689":1},"2":{"158":2,"175":1,"188":1,"240":1,"386":3,"685":1,"688":1,"1318":2,"2325":1,"2622":1,"2626":2,"2627":1,"2658":1,"2659":2,"2673":1,"2674":1}}],["instability",{"2":{"73":1}}],["instead",{"2":{"5":1,"15":1,"20":1,"23":1,"35":2,"50":1,"65":1,"70":1,"87":1,"88":1,"95":1,"104":1,"127":1,"128":1,"149":3,"168":1,"172":1,"175":1,"179":1,"195":1,"196":1,"199":1,"203":1,"206":1,"213":1,"217":1,"222":1,"232":2,"234":1,"240":2,"265":1,"268":1,"283":1,"285":1,"302":1,"308":1,"323":2,"332":1,"337":1,"434":1,"450":1,"461":1,"470":1,"473":1,"511":1,"516":2,"524":1,"534":1,"546":1,"561":1,"563":1,"564":2,"565":1,"570":1,"588":1,"593":2,"609":1,"639":2,"660":1,"672":1,"684":1,"686":2,"687":1,"699":1,"703":1,"719":1,"722":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1193":1,"1196":1,"1215":1,"1283":1,"1284":1,"1297":2,"1302":1,"1333":1,"1348":1,"1351":1,"1352":1,"1354":1,"1368":1,"1378":1,"1381":1,"1392":1,"1396":1,"1414":1,"1422":1,"1438":1,"1439":1,"1450":1,"1451":1,"1455":1,"1457":1,"1472":1,"1518":2,"1527":1,"1534":1,"1538":1,"1545":1,"1546":2,"1549":1,"1558":1,"1602":1,"1612":1,"1622":2,"1623":1,"1633":1,"1665":1,"1672":1,"1742":1,"1769":1,"1777":1,"1786":1,"1788":1,"1796":1,"1844":1,"1852":1,"1936":1,"1953":2,"1983":1,"1985":2,"1993":1,"1994":1,"2012":2,"2046":1,"2048":1,"2065":1,"2073":1,"2080":1,"2091":1,"2096":1,"2178":1,"2181":1,"2219":1,"2222":1,"2269":1,"2281":1,"2297":1,"2309":1,"2329":2,"2330":1,"2331":1,"2379":1,"2386":1,"2389":1,"2399":1,"2414":2,"2424":1,"2432":1,"2434":1,"2446":1,"2482":1,"2494":1,"2496":1,"2504":1,"2522":1,"2558":1,"2562":1,"2579":1,"2593":1,"2598":1,"2626":2,"2627":2,"2634":1,"2638":1,"2652":1,"2659":1,"2663":1,"2684":1,"2717":1,"2720":1,"2726":2,"2728":2,"2730":1,"2732":1,"2741":1,"2755":2,"2756":3,"2757":2,"2764":1,"2786":2,"2846":1,"2861":1,"2871":1,"2878":1,"2884":1,"2892":1,"2919":1,"2920":1,"2921":1,"2922":1,"2929":2,"2932":1,"2937":1,"2942":1}}],["instituted",{"2":{"1":1}}],["invalidate",{"2":{"1419":2}}],["invalid",{"2":{"210":1,"236":2,"249":3,"285":1,"293":1,"294":2,"305":1,"314":1,"333":1,"657":1,"659":1,"1253":1,"1795":1,"2453":1}}],["invited",{"2":{"194":1,"217":1}}],["invisible",{"2":{"191":1,"2425":1}}],["invented",{"2":{"1350":1}}],["inversion",{"2":{"210":1}}],["inversely",{"2":{"722":1}}],["inverse",{"2":{"210":1,"568":1}}],["inverts",{"2":{"222":1,"1428":1,"1597":1,"1774":1,"1954":6,"1985":2,"1987":2,"2290":6}}],["inverted",{"2":{"199":1,"285":1,"294":1,"1838":1,"1954":1,"2290":1}}],["invert",{"0":{"1597":1,"2049":1,"2050":1},"2":{"114":3,"174":1,"175":1,"210":1,"222":1,"761":1,"1428":1,"1597":2,"1742":1,"1793":1,"1795":1,"1954":13,"1985":2,"1987":3,"1988":1,"1989":1,"2049":2,"2050":5,"2290":9,"2861":2}}],["investigations",{"2":{"134":1}}],["invoking",{"2":{"2076":1,"2277":1,"2466":1,"2669":1}}],["invoke",{"2":{"294":1,"627":1,"647":1,"2277":1,"2330":1,"2757":1,"2935":1}}],["invoked",{"2":{"92":1,"574":1,"646":1,"656":1,"657":2,"658":2,"659":1,"1798":1,"1807":1,"1808":1,"1809":1,"1908":1,"1910":1,"1912":1,"1915":1,"1961":1,"2061":1,"2168":1,"2170":1,"2172":1,"2175":1,"2309":1,"2340":1,"2342":1,"2418":1,"2756":1,"2757":1}}],["involve",{"2":{"2325":1,"2422":1}}],["involves",{"2":{"623":1,"2927":1}}],["involved",{"2":{"604":1,"688":1,"2713":1}}],["involving",{"2":{"99":1,"695":1,"2075":1,"2915":1,"2926":1}}],["invocations",{"2":{"1961":1,"2949":1}}],["invocation",{"2":{"191":1,"236":1,"656":1}}],["inputting",{"2":{"1614":1,"1615":1,"2330":1,"2418":1}}],["inputs",{"2":{"639":1,"695":2,"1359":1,"1410":1,"1986":1,"2040":1,"2428":1,"2764":2}}],["input",{"0":{"1355":1,"2329":1,"2331":1,"2334":1,"2336":1,"2338":1,"2339":1,"2340":2,"2342":2,"2344":1,"2345":1,"2346":1,"2471":1},"1":{"2330":1,"2335":1,"2337":1,"2341":2,"2343":2},"2":{"94":1,"114":1,"143":4,"149":1,"191":1,"199":2,"214":2,"236":2,"243":3,"249":2,"297":1,"312":1,"444":1,"561":1,"565":1,"639":2,"761":6,"772":2,"1213":1,"1413":4,"1442":1,"1532":3,"1699":1,"1738":2,"1742":1,"1749":1,"1784":1,"1785":1,"1786":2,"1787":1,"1986":1,"2015":1,"2043":1,"2213":1,"2272":1,"2294":1,"2310":1,"2324":1,"2325":2,"2327":7,"2328":6,"2330":2,"2331":17,"2332":7,"2334":1,"2335":1,"2336":1,"2337":1,"2338":1,"2339":1,"2340":1,"2341":2,"2342":1,"2343":2,"2344":2,"2345":2,"2346":2,"2347":2,"2359":1,"2362":1,"2363":1,"2364":1,"2367":1,"2369":1,"2370":1,"2374":1,"2384":2,"2390":1,"2396":1,"2397":1,"2402":2,"2428":1,"2475":1,"2477":2,"2502":3,"2552":7,"2680":1,"2728":1,"2754":1,"2755":16,"2795":1,"2865":1,"2872":2,"2876":1,"2886":1,"2923":1,"2926":1,"2931":1,"2948":1}}],["induced",{"2":{"1788":1,"2929":1}}],["industry",{"2":{"149":1}}],["indisinguishable",{"2":{"2756":1}}],["indirect",{"2":{"2331":1}}],["individually",{"2":{"1247":1,"2444":1}}],["individual",{"2":{"544":1,"743":1,"1288":1,"1289":1,"1464":1,"1503":2,"1541":1,"1547":1,"1766":1,"1843":2,"2039":1,"2178":1,"2319":1,"2417":1,"2445":1,"2694":1}}],["indicative",{"2":{"2317":1}}],["indicating",{"2":{"1781":1,"2450":1,"2927":1}}],["indication",{"2":{"1416":1,"1417":6,"1429":1,"1847":1,"1855":1,"2083":1,"2094":1}}],["indicated",{"2":{"1538":1,"1954":1,"2290":1,"2295":1,"2296":1,"2729":1}}],["indicate",{"2":{"1446":1,"1473":1,"1538":1,"1630":1,"2096":1,"2585":1,"2652":1}}],["indicates",{"2":{"565":1,"582":1,"583":1,"584":1,"651":2,"1645":1,"1664":1,"1723":1,"2073":1,"2558":1,"2585":1}}],["indicator",{"0":{"169":1,"2095":1},"1":{"2096":1,"2097":1},"2":{"114":1,"169":1,"175":2,"199":1,"266":1,"298":1,"317":1,"570":1,"1544":1,"1642":1,"1647":1,"1648":1,"1836":1,"1838":1,"1841":2,"1847":1,"1851":1,"1855":3,"1865":1,"1867":1,"2083":1,"2090":1,"2094":3,"2095":3,"2096":2,"2107":1,"2109":1,"2679":1,"2728":2,"2857":1,"2880":1}}],["indicators",{"0":{"1835":1,"1855":1,"1908":1,"1910":1,"1912":1,"1915":1,"2094":1,"2097":1,"2168":1,"2170":1,"2172":1,"2175":1,"2867":1},"1":{"1836":1,"1837":1,"1838":1,"1839":1,"1840":1,"1841":1,"1842":1,"1843":1,"1909":1,"1911":1,"2169":1,"2171":1},"2":{"63":1,"93":1,"114":1,"149":1,"169":4,"175":1,"210":2,"222":1,"589":1,"668":1,"690":1,"1638":12,"1835":1,"1836":1,"1855":6,"2094":6,"2095":3,"2096":3,"2097":1,"2188":2,"2826":1,"2867":2,"2880":1}}],["indices",{"2":{"149":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"2303":1,"2329":1,"2330":1,"2877":1}}],["indemnification",{"2":{"2735":1}}],["indefinite",{"2":{"2008":1}}],["indefinitely",{"2":{"1598":1,"2570":1,"2754":1,"2757":1}}],["indeed",{"2":{"646":1}}],["indenting",{"2":{"512":1}}],["indent",{"2":{"352":1,"512":2,"514":1,"521":1}}],["indented",{"0":{"352":1},"2":{"354":2,"521":1}}],["indentation",{"2":{"249":1,"512":2,"2607":1}}],["independence",{"2":{"307":1}}],["independently",{"2":{"1610":1,"1939":1,"1983":1,"2189":1,"2267":1,"2475":1}}],["independent",{"0":{"1619":1},"1":{"1620":1},"2":{"113":1,"114":1,"191":1,"1422":1,"2251":1,"2680":1,"2855":1}}],["indexes",{"2":{"2305":1}}],["indexed",{"2":{"695":2,"699":1,"2557":1,"2662":1,"2776":5}}],["index>",{"2":{"434":1}}],["indexing",{"2":{"333":1}}],["index",{"0":{"707":1,"735":1,"739":1,"812":1,"816":1,"820":1,"822":1,"835":1,"837":1,"839":1,"843":1,"847":1,"849":1,"851":1,"853":1,"867":1,"869":1,"871":1,"875":1,"879":1,"881":1,"883":1,"885":1,"897":1,"899":1,"901":1,"903":1,"907":1,"911":1,"913":1,"915":1,"917":1,"932":1,"934":1,"936":1,"938":1,"942":1,"946":1,"948":1,"950":1,"952":1,"966":1,"968":1,"970":1,"972":1,"976":1,"980":1,"982":1,"984":1,"986":1,"1000":1,"1002":1,"1004":1,"1006":1,"1010":1,"1014":1,"1016":1,"1018":1,"1020":1,"1034":1,"1036":1,"1038":1,"1040":1,"1044":1,"1048":1,"1050":1,"1052":1,"1054":1,"1068":1,"1070":1,"1072":1,"1074":1,"1078":1,"1082":1,"1084":1,"1086":1,"1088":1,"1102":1,"1104":1,"1106":1,"1108":1,"1112":1,"1116":1,"1118":1,"1120":1,"1122":1,"1136":1,"1138":1,"1140":1,"1142":1,"1146":1,"1150":1,"1152":1,"1154":1,"1156":1,"1170":1,"1172":1,"1174":1,"1176":1,"1180":1,"1184":1,"1186":1,"1188":1,"1190":1,"1223":1,"1225":1,"1227":1,"1229":1,"1233":1,"1237":1,"1239":1,"1241":1,"1243":1,"1306":1,"1719":1,"1721":1,"1865":1,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2107":1,"2351":1,"2354":1,"2357":1},"1":{"708":1,"736":1,"740":1,"813":1,"817":1,"821":1,"823":1,"836":1,"838":1,"840":1,"844":1,"848":1,"850":1,"852":1,"854":1,"868":1,"870":1,"872":1,"876":1,"880":1,"882":1,"884":1,"886":1,"898":1,"900":1,"902":1,"904":1,"908":1,"912":1,"914":1,"916":1,"918":1,"933":1,"935":1,"937":1,"939":1,"943":1,"947":1,"949":1,"951":1,"953":1,"967":1,"969":1,"971":1,"973":1,"977":1,"981":1,"983":1,"985":1,"987":1,"1001":1,"1003":1,"1005":1,"1007":1,"1011":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":1,"1039":1,"1041":1,"1045":1,"1049":1,"1051":1,"1053":1,"1055":1,"1069":1,"1071":1,"1073":1,"1075":1,"1079":1,"1083":1,"1085":1,"1087":1,"1089":1,"1103":1,"1105":1,"1107":1,"1109":1,"1113":1,"1117":1,"1119":1,"1121":1,"1123":1,"1137":1,"1139":1,"1141":1,"1143":1,"1147":1,"1151":1,"1153":1,"1155":1,"1157":1,"1171":1,"1173":1,"1175":1,"1177":1,"1181":1,"1185":1,"1187":1,"1189":1,"1191":1,"1224":1,"1226":1,"1228":1,"1230":1,"1234":1,"1238":1,"1240":1,"1242":1,"1244":1,"1307":1,"1720":1,"1722":1,"1866":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2031":1,"2108":1,"2352":1,"2353":1,"2355":1,"2356":1,"2358":1},"2":{"36":3,"90":10,"105":8,"160":1,"324":1,"325":2,"333":1,"341":1,"591":1,"607":2,"647":1,"696":1,"708":2,"729":2,"732":1,"736":3,"740":2,"755":1,"805":2,"813":3,"817":3,"821":3,"823":3,"829":1,"831":2,"834":1,"836":2,"838":2,"840":3,"844":3,"848":3,"850":3,"852":2,"854":2,"858":1,"863":2,"866":1,"868":2,"870":2,"872":3,"876":3,"880":3,"882":3,"884":2,"886":2,"890":1,"893":2,"896":1,"898":2,"900":2,"902":2,"904":3,"908":3,"912":3,"914":3,"916":2,"918":2,"922":1,"923":1,"928":2,"931":1,"933":2,"935":2,"937":2,"939":3,"943":3,"947":3,"949":3,"951":2,"953":2,"957":1,"962":2,"965":1,"967":2,"969":2,"971":2,"973":3,"977":3,"981":3,"983":3,"985":2,"987":2,"991":1,"996":2,"999":1,"1001":2,"1003":2,"1005":2,"1007":3,"1011":3,"1015":3,"1017":3,"1019":2,"1021":2,"1025":1,"1030":2,"1033":1,"1035":2,"1037":2,"1039":2,"1041":3,"1045":3,"1049":3,"1051":3,"1053":2,"1055":2,"1059":1,"1064":2,"1067":1,"1069":2,"1071":2,"1073":2,"1075":3,"1079":3,"1083":3,"1085":3,"1087":2,"1089":2,"1093":1,"1094":1,"1098":2,"1101":1,"1103":2,"1105":2,"1107":2,"1109":3,"1113":3,"1117":3,"1119":3,"1121":2,"1123":2,"1127":1,"1128":1,"1132":2,"1135":1,"1137":2,"1139":2,"1141":2,"1143":3,"1147":3,"1151":3,"1153":3,"1155":2,"1157":2,"1161":1,"1166":2,"1169":1,"1171":2,"1173":2,"1175":2,"1177":3,"1181":3,"1185":3,"1187":3,"1189":2,"1191":2,"1217":1,"1219":2,"1222":1,"1224":2,"1226":2,"1228":2,"1230":3,"1234":3,"1238":3,"1240":3,"1242":2,"1244":2,"1307":2,"1319":1,"1345":1,"1353":1,"1367":1,"1375":1,"1376":1,"1605":2,"1612":13,"1613":3,"1617":5,"1618":7,"1657":4,"1668":7,"1720":2,"1722":2,"1752":1,"1754":1,"1843":2,"1846":7,"1855":2,"1866":2,"1878":1,"1913":2,"1916":2,"1947":2,"1949":2,"1953":1,"1954":4,"1983":1,"2001":2,"2003":1,"2008":1,"2022":2,"2024":2,"2026":2,"2028":2,"2030":2,"2082":7,"2094":2,"2095":5,"2108":2,"2120":1,"2173":2,"2176":2,"2198":4,"2286":2,"2288":2,"2290":4,"2309":1,"2316":2,"2329":1,"2332":2,"2351":1,"2352":1,"2353":1,"2354":1,"2355":2,"2357":1,"2358":2,"2371":1,"2372":2,"2418":1,"2552":2,"2634":1,"2767":3,"2776":3,"2869":1}}],["inf",{"2":{"688":4}}],["influence",{"2":{"214":1,"633":1,"2914":1}}],["infrequently",{"2":{"202":1}}],["infrastructure",{"0":{"41":1,"65":1,"70":1,"76":1,"95":1},"2":{"2382":1}}],["inferred",{"2":{"2719":1,"2720":1}}],["inferior",{"2":{"1410":1}}],["infer",{"2":{"133":1,"134":1,"236":1,"266":1}}],["infinity87",{"2":{"222":3}}],["infinity60",{"2":{"143":2,"236":1}}],["infinity",{"2":{"114":3,"134":1,"143":2,"2283":1,"2417":2}}],["infinitely",{"2":{"555":1}}],["infinite",{"2":{"93":1,"163":1,"339":1,"1802":1}}],["informing",{"2":{"2579":1,"2587":1}}],["informs",{"2":{"656":1}}],["inform",{"2":{"276":1,"750":1,"759":1}}],["informed",{"2":{"275":1,"2570":1}}],["information",{"0":{"588":1,"2388":1,"2681":1},"1":{"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2405":1,"2406":1,"2407":1,"2408":1,"2409":1,"2410":1,"2682":1,"2683":1},"2":{"2":1,"47":1,"70":1,"118":1,"132":1,"152":1,"153":1,"166":1,"168":2,"184":1,"185":2,"189":1,"194":1,"196":1,"201":1,"217":1,"247":1,"285":1,"288":2,"289":1,"297":1,"298":1,"304":1,"306":1,"315":1,"320":1,"331":1,"339":1,"382":1,"383":1,"437":3,"466":1,"467":1,"468":1,"486":1,"490":1,"494":1,"561":2,"570":2,"571":1,"574":1,"632":1,"656":1,"665":2,"672":1,"684":1,"698":1,"699":1,"721":1,"743":1,"752":1,"755":1,"766":1,"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1192":1,"1209":1,"1289":1,"1318":1,"1322":1,"1328":1,"1330":1,"1356":1,"1377":1,"1378":1,"1397":1,"1403":1,"1433":1,"1440":2,"1547":1,"1558":1,"1580":1,"1592":2,"1630":1,"1634":1,"1835":1,"1845":1,"1964":1,"1990":1,"1998":1,"2037":1,"2039":1,"2057":1,"2081":1,"2096":1,"2178":1,"2179":1,"2276":1,"2281":1,"2310":1,"2388":1,"2411":1,"2413":1,"2414":2,"2417":1,"2418":4,"2426":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2452":1,"2502":1,"2557":1,"2572":1,"2579":1,"2589":1,"2612":1,"2616":1,"2617":1,"2622":1,"2642":1,"2674":3,"2712":1,"2714":3,"2727":1,"2754":1,"2756":2,"2757":3,"2769":1,"2851":5,"2852":1,"2930":1,"2943":1,"2950":1}}],["info",{"0":{"437":1,"667":1,"670":1,"2453":1,"2851":1},"1":{"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"2852":1,"2853":1,"2854":1,"2855":1,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2861":1,"2862":1,"2863":1,"2864":1,"2865":1,"2866":1,"2867":1,"2868":1,"2869":1,"2870":1,"2871":1,"2872":1,"2873":1,"2874":1,"2875":1,"2876":1,"2877":1,"2878":1,"2879":1,"2880":1,"2881":1,"2882":1,"2883":1},"2":{"70":33,"73":1,"76":4,"99":1,"109":1,"110":1,"111":2,"112":1,"114":5,"134":1,"141":1,"149":1,"160":1,"168":3,"175":4,"184":2,"191":3,"198":1,"199":4,"201":2,"210":2,"212":5,"222":22,"224":2,"232":1,"236":8,"238":1,"249":26,"262":1,"266":3,"277":1,"333":1,"344":1,"352":2,"433":4,"436":1,"437":4,"443":2,"448":1,"463":3,"489":1,"491":1,"492":2,"493":1,"496":1,"500":1,"529":1,"555":3,"665":3,"666":2,"667":1,"668":1,"669":5,"670":2,"672":2,"673":3,"684":1,"1289":1,"1320":1,"1336":1,"1337":1,"1376":1,"1419":1,"1467":1,"1472":1,"1628":1,"1630":1,"1633":1,"1638":1,"1851":1,"2039":1,"2044":2,"2057":1,"2090":1,"2258":1,"2294":1,"2301":1,"2317":1,"2403":1,"2414":1,"2450":1,"2451":1,"2453":1,"2454":1,"2508":17,"2562":1,"2626":1,"2627":1,"2634":1,"2651":1,"2728":5,"2795":3,"2796":1,"2797":1,"2851":4,"2869":2,"2908":1,"2909":1,"2938":1}}],["int9",{"2":{"2515":1,"2522":1}}],["int7",{"2":{"2515":1,"2522":1}}],["int6",{"2":{"2515":1,"2522":1}}],["int3",{"2":{"2515":1,"2522":1}}],["int2",{"2":{"2041":3,"2515":1,"2522":1}}],["int8",{"0":{"1760":1},"1":{"1761":1},"2":{"1664":4,"1747":1,"1761":1,"1994":4,"2008":2,"2277":3,"2300":1,"2515":1,"2522":1}}],["intimidates",{"2":{"2579":1}}],["intimidated",{"2":{"418":1,"540":1}}],["intimidating",{"0":{"1340":1}}],["intimate",{"2":{"757":1}}],["int4",{"2":{"379":1,"2515":1,"2522":1,"2563":1}}],["int5",{"2":{"379":1,"2515":1,"2522":1,"2563":1}}],["int16",{"0":{"1755":1,"1758":1},"1":{"1756":1,"1757":1,"1759":1},"2":{"1743":1,"1747":1,"1759":1,"2757":2}}],["int1",{"2":{"379":1,"2515":1,"2522":1,"2563":1}}],["intrinsics",{"2":{"236":1}}],["introducing",{"2":{"2905":1}}],["introduction",{"0":{"262":1,"472":1,"2308":1,"2411":1},"1":{"473":1,"474":1,"2412":1,"2413":1,"2414":1,"2415":1},"2":{"293":1,"305":1,"314":1,"2645":1,"2934":1}}],["introduces",{"2":{"298":1,"2926":1}}],["introduced",{"2":{"175":1,"222":1,"236":1,"293":1,"305":1,"308":1,"314":1,"665":1,"2628":1}}],["introduce",{"2":{"175":1,"199":1,"365":1,"1849":1,"2085":2}}],["introspection",{"0":{"1634":2},"2":{"175":1,"191":1,"210":1,"222":1,"249":1,"272":1,"277":2,"1634":2}}],["int",{"0":{"735":1,"812":1,"816":1,"839":1,"843":1,"871":1,"875":1,"903":1,"907":1,"938":1,"942":1,"972":1,"976":1,"1006":1,"1010":1,"1040":1,"1044":1,"1074":1,"1078":1,"1108":1,"1112":1,"1142":1,"1146":1,"1176":1,"1180":1,"1229":1,"1233":1,"1306":1},"1":{"736":1,"813":1,"817":1,"840":1,"844":1,"872":1,"876":1,"904":1,"908":1,"939":1,"943":1,"973":1,"977":1,"1007":1,"1011":1,"1041":1,"1045":1,"1075":1,"1079":1,"1109":1,"1113":1,"1143":1,"1147":1,"1177":1,"1181":1,"1230":1,"1234":1,"1307":1},"2":{"222":1,"512":1,"522":1,"523":1,"524":1,"671":2,"701":4,"736":1,"813":1,"817":1,"840":1,"844":1,"872":1,"876":1,"904":1,"908":1,"939":1,"943":1,"973":1,"977":1,"1007":1,"1011":1,"1041":1,"1045":1,"1075":1,"1079":1,"1109":1,"1113":1,"1143":1,"1147":1,"1177":1,"1181":1,"1230":1,"1234":1,"1307":1,"1329":7,"1368":1,"1948":1,"1990":4,"2041":5,"2043":1,"2277":2,"2756":11,"2757":5}}],["intel",{"2":{"2504":1}}],["intelligent",{"2":{"2653":1,"2664":1}}],["intelligently",{"2":{"671":1}}],["intellisense",{"2":{"1977":1,"2670":1,"2671":1,"2674":1}}],["intensity",{"2":{"2180":1}}],["intend",{"2":{"488":1,"533":1,"627":1,"1499":1,"1790":1,"2054":1,"2656":1}}],["intended",{"2":{"240":1,"328":1,"627":1,"656":2,"1422":1,"1428":1,"1633":1,"1964":1,"2685":1,"2686":1,"2687":1,"2904":1,"2912":1,"2926":1}}],["intentional",{"2":{"2569":1}}],["intentionally",{"2":{"2567":3}}],["intention",{"2":{"1522":1,"2728":1}}],["intent",{"2":{"293":1,"305":1,"314":1,"393":1,"512":1,"2902":1}}],["integral",{"2":{"494":1}}],["integrates",{"2":{"2758":1}}],["integrated",{"2":{"1205":1,"2044":1,"2653":1,"2669":4,"2714":1,"2753":1}}],["integrate",{"2":{"133":1,"284":1,"668":1,"1985":1}}],["integration",{"0":{"543":1,"2758":1,"2948":1},"1":{"2759":1,"2760":1,"2761":1,"2762":1,"2763":1,"2764":1},"2":{"118":1,"142":1,"199":1,"505":3,"542":1,"543":1,"2590":1,"2741":1,"2758":1,"2759":1,"2817":1,"2948":1}}],["integrations",{"2":{"14":1,"156":1}}],["integers",{"2":{"671":1,"690":1}}],["integer",{"2":{"114":1,"175":1,"191":1,"210":1,"523":1,"524":2,"671":1,"1493":1,"1757":1,"1952":1,"1994":2,"2289":1,"2317":1,"2751":1,"2765":1,"2772":1,"2912":1}}],["interpolation",{"2":{"2776":3}}],["interprets",{"2":{"1593":2}}],["interpret",{"2":{"1330":1,"1538":1,"1788":1,"1986":1,"2016":1,"2455":1,"2929":1}}],["interpreted",{"0":{"2467":1},"1":{"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"203":1,"1670":1,"2455":1,"2919":1}}],["interdependence",{"2":{"2742":1}}],["intervention",{"2":{"2212":1,"2757":1}}],["intervals",{"2":{"656":1,"1456":1,"1934":1,"2187":6}}],["interval",{"0":{"2230":1,"2234":1,"2248":1},"1":{"2231":1,"2235":1},"2":{"39":1,"63":1,"93":1,"112":2,"328":1,"561":1,"564":1,"566":1,"720":3,"1292":2,"1579":1,"1926":1,"1935":4,"1936":4,"1937":8,"1939":2,"1940":2,"1949":3,"1968":2,"2048":3,"2185":1,"2231":1,"2234":1,"2235":1,"2248":2,"2288":2,"2858":1,"2873":1,"2880":1,"2882":1}}],["inter",{"2":{"2079":1}}],["intercepting",{"0":{"2574":1},"1":{"2575":1,"2576":1,"2577":1},"2":{"2318":1,"2575":1}}],["interceptable",{"2":{"2298":1,"2300":1}}],["intercept",{"2":{"1988":2,"1989":2,"1993":1,"2318":1,"2575":1,"2576":4,"2577":2}}],["interchangeable",{"2":{"1985":1}}],["interfacing",{"0":{"2300":1}}],["interfaces",{"2":{"561":1,"687":1,"2059":6,"2478":1,"2741":1,"2750":1}}],["interface",{"2":{"39":2,"114":1,"308":1,"425":1,"714":1,"745":1,"1248":1,"1372":1,"1407":2,"1484":1,"2054":1,"2056":3,"2057":1,"2059":11,"2508":1,"2589":1,"2639":1,"2736":1,"2744":1,"2756":1,"2819":1,"2848":1}}],["interfere",{"2":{"1362":1,"2932":1}}],["internet",{"2":{"766":1,"2942":1}}],["internally",{"2":{"1977":1,"2260":1,"2756":2,"2757":4}}],["internal",{"2":{"189":1,"222":1,"231":1,"235":1,"698":1,"714":1,"748":1,"1199":1,"1313":1,"1357":1,"1362":1,"1378":1,"1535":1,"1609":1,"1923":1,"1974":1,"2519":1,"2678":1,"2695":1,"2705":1,"2754":2,"2757":2,"2762":1}}],["internals",{"0":{"15":1,"41":1,"65":1,"70":1,"76":1,"95":1},"2":{"263":1,"538":1,"644":1,"1661":1}}],["international",{"0":{"2515":1},"2":{"74":1,"172":1,"175":1,"2330":1,"2474":1,"2515":12,"2522":18,"2887":5}}],["intermittently",{"2":{"609":1,"2679":1}}],["intermediates=yes",{"2":{"222":1}}],["intermediate",{"0":{"1426":1,"1775":1,"2907":1},"1":{"1776":1,"1777":1},"2":{"210":1,"222":1,"467":1,"468":1,"1538":1,"1959":1,"1962":1,"2598":1,"2755":2,"2906":1}}],["intersections",{"0":{"1660":1},"2":{"1655":1,"2272":2,"2872":1}}],["intersection",{"2":{"569":2,"2272":4}}],["interacting",{"2":{"490":1}}],["interaction",{"0":{"490":1},"1":{"491":1,"492":1,"493":1,"494":1},"2":{"369":1,"1642":1,"1787":1,"2007":1,"2212":1}}],["interactions",{"2":{"133":1,"134":1,"490":1}}],["interact",{"2":{"366":1,"475":1,"489":1,"496":1,"2277":1,"2705":1}}],["interacts",{"2":{"263":1}}],["interoperate",{"2":{"206":1}}],["interoperation",{"2":{"166":1}}],["interesting",{"2":{"2417":1,"2563":1,"2564":1,"2568":1}}],["interested",{"2":{"374":1,"376":1,"576":1,"607":1,"1537":1,"2757":1}}],["interest",{"2":{"190":1}}],["interrupter",{"2":{"2308":1}}],["interrupted",{"2":{"564":1,"1329":1,"2308":1,"2310":1,"2317":5}}],["interrupting",{"2":{"1518":1}}],["interruptions",{"2":{"763":1,"2310":1}}],["interruption",{"2":{"564":1}}],["interrupts",{"2":{"763":3,"2037":1,"2914":1}}],["interrupt",{"0":{"194":1,"217":1,"2041":1,"2042":1},"2":{"12":2,"73":1,"112":2,"114":1,"194":10,"199":1,"217":2,"222":2,"294":1,"763":1,"768":1,"1205":1,"1292":1,"1549":1,"2039":1,"2040":1,"2041":2,"2042":2,"2043":1,"2612":1,"2875":1}}],["into",{"0":{"2612":1,"2614":1},"2":{"11":1,"25":1,"26":1,"40":2,"51":1,"65":2,"72":1,"73":1,"75":1,"99":1,"113":1,"114":7,"119":1,"131":1,"133":1,"134":4,"149":27,"160":3,"163":1,"172":1,"175":1,"188":1,"191":1,"198":2,"201":1,"206":1,"210":2,"212":3,"222":1,"224":1,"236":1,"238":1,"249":11,"254":1,"265":1,"266":1,"272":1,"277":1,"284":1,"288":1,"302":1,"365":1,"366":1,"380":2,"399":1,"406":1,"407":1,"409":1,"411":1,"412":4,"414":1,"432":1,"448":2,"449":2,"450":1,"470":1,"476":1,"483":1,"495":1,"509":1,"511":1,"540":1,"545":1,"558":1,"568":4,"575":2,"579":1,"585":1,"598":1,"609":1,"613":1,"643":2,"644":1,"651":1,"656":1,"665":1,"668":1,"681":1,"686":1,"688":1,"714":1,"736":1,"780":1,"783":1,"792":1,"795":1,"813":1,"817":1,"821":1,"823":1,"840":1,"844":1,"848":1,"850":1,"872":1,"876":1,"880":1,"882":1,"904":1,"908":1,"912":1,"914":1,"939":1,"943":1,"947":1,"949":1,"973":1,"977":1,"981":1,"983":1,"1007":1,"1011":1,"1015":1,"1017":1,"1041":1,"1045":1,"1049":1,"1051":1,"1075":1,"1079":1,"1083":1,"1085":1,"1109":1,"1113":1,"1117":1,"1119":1,"1143":1,"1147":1,"1151":1,"1153":1,"1177":1,"1181":1,"1185":1,"1187":1,"1230":1,"1234":1,"1238":1,"1240":1,"1263":1,"1280":1,"1348":3,"1365":2,"1413":1,"1424":1,"1433":2,"1472":1,"1483":1,"1485":1,"1491":1,"1538":1,"1589":2,"1609":2,"1622":1,"1626":1,"1627":1,"1628":2,"1634":1,"1657":1,"1668":1,"1684":1,"1783":1,"1844":1,"1948":1,"1952":1,"1954":2,"1962":1,"1985":1,"1994":1,"2049":1,"2050":2,"2080":1,"2189":1,"2249":1,"2259":1,"2261":1,"2289":1,"2290":2,"2291":1,"2296":1,"2309":2,"2325":1,"2329":1,"2351":1,"2353":1,"2355":1,"2358":1,"2372":1,"2387":2,"2389":1,"2394":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":1,"2408":1,"2432":1,"2434":1,"2435":1,"2461":1,"2482":1,"2504":1,"2523":2,"2554":1,"2564":1,"2567":1,"2568":1,"2569":1,"2570":1,"2571":1,"2573":1,"2579":1,"2606":1,"2608":1,"2609":1,"2610":2,"2612":1,"2614":2,"2615":1,"2620":1,"2626":1,"2635":1,"2674":1,"2684":1,"2707":1,"2713":1,"2714":1,"2728":4,"2734":1,"2741":1,"2751":2,"2752":2,"2753":2,"2756":1,"2757":2,"2759":1,"2765":1,"2795":4,"2811":1,"2849":1,"2852":1,"2888":1,"2889":1,"2891":1,"2893":1,"2904":1,"2907":1,"2940":1,"2950":1}}],["inclination",{"2":{"2707":1}}],["inclusive",{"2":{"1846":1,"1986":2,"2082":1,"2757":1}}],["inclusions",{"2":{"236":1}}],["inclusion",{"2":{"40":1,"74":1,"134":1,"191":2,"234":1,"236":1,"403":1}}],["including",{"2":{"20":1,"23":1,"39":1,"189":1,"234":1,"235":1,"248":1,"277":1,"288":1,"298":1,"327":1,"494":1,"560":1,"703":1,"765":1,"1201":1,"1246":1,"1267":1,"1284":1,"1327":1,"1466":1,"1532":1,"1789":1,"1962":1,"2069":1,"2188":1,"2191":1,"2281":1,"2296":1,"2318":1,"2329":1,"2384":1,"2462":1,"2567":1,"2601":1,"2639":1,"2687":1,"2727":1,"2728":3,"2747":1,"2748":1,"2766":1,"2773":1,"2886":1,"2935":1}}],["include=",{"2":{"2417":2}}],["included",{"0":{"400":1,"403":1},"2":{"43":2,"114":1,"160":1,"273":1,"288":1,"308":1,"403":1,"406":1,"407":1,"527":1,"529":1,"560":2,"571":1,"677":1,"703":1,"725":1,"765":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1438":1,"1463":2,"1464":1,"1485":1,"1526":1,"1633":1,"2044":1,"2198":2,"2381":1,"2417":2,"2418":1,"2456":1,"2561":1,"2567":2,"2670":1,"2729":4,"2765":2,"2767":1,"2780":1,"2901":1,"2941":1,"2945":1}}],["includes",{"0":{"1438":1},"2":{"5":1,"15":1,"43":2,"45":1,"94":1,"114":3,"175":6,"194":1,"210":7,"222":1,"266":4,"339":1,"399":1,"403":1,"414":1,"574":1,"1349":1,"1404":1,"1408":2,"1542":1,"1855":1,"2094":1,"2179":1,"2381":1,"2382":1,"2418":1,"2470":1,"2566":1,"2568":2,"2569":1,"2572":1,"2673":1,"2707":2,"2733":1,"2753":1,"2765":1,"2772":1,"2886":1,"2891":1,"2943":1,"2944":1}}],["include",{"0":{"2932":1},"2":{"4":1,"12":1,"40":1,"45":1,"73":1,"114":3,"132":1,"133":2,"134":5,"149":2,"191":4,"199":1,"210":1,"222":1,"236":2,"265":1,"276":1,"277":1,"333":1,"411":1,"429":2,"433":3,"505":1,"512":3,"513":1,"514":1,"526":1,"589":1,"612":2,"622":1,"683":1,"691":2,"717":2,"718":2,"721":2,"768":2,"1195":1,"1203":2,"1204":2,"1248":2,"1269":1,"1299":2,"1303":2,"1317":1,"1327":1,"1365":1,"1405":1,"1409":1,"1420":3,"1438":3,"1444":1,"1449":2,"1463":1,"1464":2,"1467":1,"1472":6,"1479":1,"1504":1,"1506":1,"1508":1,"1515":1,"1556":2,"1557":2,"1622":2,"1661":1,"1686":1,"1765":1,"1924":1,"1957":1,"1962":1,"2042":1,"2053":1,"2068":1,"2181":1,"2194":1,"2319":3,"2329":1,"2416":1,"2418":6,"2425":1,"2437":1,"2439":1,"2455":1,"2457":1,"2561":1,"2569":2,"2605":1,"2667":1,"2726":2,"2727":1,"2728":8,"2733":1,"2750":1,"2755":1,"2757":4,"2831":1,"2839":1,"2852":2,"2885":3,"2886":2,"2889":1,"2901":1,"2932":1,"2945":2,"2949":1}}],["inch",{"2":{"1983":1}}],["inc",{"0":{"1635":1,"1636":1},"2":{"1635":2,"1636":2,"1850":2,"2088":2,"2945":1}}],["incredibly",{"2":{"1801":2,"2780":1}}],["increasing",{"2":{"565":1,"753":1,"1936":1,"1949":1,"1985":1,"2189":1,"2379":2,"2573":1,"2685":1,"2914":1}}],["increase",{"0":{"1564":1,"1879":1,"1880":1,"1885":1,"1886":1,"2121":1,"2122":1,"2127":1,"2128":1,"2133":1,"2134":1,"2139":1,"2140":1},"2":{"134":2,"149":1,"222":2,"563":1,"564":1,"565":1,"660":1,"1322":1,"1487":1,"1520":1,"1522":2,"1543":1,"1564":1,"1609":1,"1661":1,"1662":1,"1668":2,"1680":2,"1688":1,"1848":2,"1849":1,"1879":1,"1880":1,"1885":1,"1886":1,"1925":4,"1953":1,"1985":1,"2084":3,"2085":3,"2086":1,"2121":1,"2122":1,"2127":1,"2128":1,"2133":1,"2134":1,"2139":1,"2140":1,"2181":8,"2189":1,"2201":12,"2202":2,"2211":1,"2253":1,"2254":3,"2309":1,"2427":1,"2527":1,"2537":2,"2539":4,"2544":8,"2545":3,"2764":1,"2912":1,"2913":1}}],["increases",{"2":{"119":1,"203":1,"1493":1,"1495":1,"1851":1,"1852":2,"2086":2,"2090":1,"2091":2,"2202":2,"2524":1,"2543":1,"2685":1,"2871":1,"2878":1,"2912":2}}],["increased",{"2":{"70":1,"190":1,"262":1,"414":1,"657":1,"702":1,"755":2,"2086":1,"2179":1,"2319":1,"2757":2}}],["incrementms",{"2":{"2543":2,"2912":2}}],["incremented",{"2":{"1419":2,"1702":1,"2310":1}}],["incremental",{"2":{"420":1}}],["incrementing",{"2":{"409":1,"1947":1,"2286":1}}],["increments",{"2":{"160":1,"1966":1,"1967":1,"1981":1,"1982":1,"1983":2}}],["increment",{"2":{"114":1,"1539":2,"1852":2,"1947":1,"2091":4,"2182":3,"2286":1,"2871":2,"2877":3,"2878":4,"2912":2}}],["inception",{"2":{"113":1}}],["inconsistencies",{"2":{"2725":1}}],["inconsistent",{"2":{"512":1,"1288":1,"1367":1}}],["incoming",{"2":{"1532":1}}],["incomplete",{"2":{"610":1,"1839":1}}],["incompatibility",{"2":{"284":1,"2736":1}}],["incompatible",{"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"399":1,"1196":1,"1405":1,"2567":1,"2733":1,"2735":1,"2744":1}}],["incorporated",{"2":{"495":1,"558":1}}],["incorporates",{"2":{"414":1,"2828":1}}],["incorrect",{"2":{"114":1,"160":1,"175":2,"198":1,"222":1,"249":1,"333":1,"689":1,"1665":1,"1670":1,"2213":1,"2503":1,"2508":1,"2607":1}}],["incorrectly",{"2":{"44":1,"754":1,"1524":1,"1962":1,"2434":1}}],["in",{"0":{"3":1,"7":1,"8":1,"13":1,"48":1,"120":1,"206":1,"273":1,"400":1,"618":1,"1311":1,"1317":1,"1357":1,"1358":1,"1376":1,"1441":1,"1445":1,"1450":1,"1503":1,"1647":1,"1648":1,"1659":1,"1660":2,"1661":1,"2255":1,"2291":1,"2292":1,"2585":1,"2793":1},"1":{"1312":1,"1442":1,"1443":1,"1444":1,"1446":1,"1447":1,"1448":1,"1449":1,"1450":1,"1451":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1461":1,"1462":1,"1662":1,"1663":1,"1664":1,"2256":1,"2257":1,"2258":1,"2259":1,"2260":1,"2292":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2299":1,"2300":1,"2301":1,"2794":1,"2795":1,"2796":1,"2797":1,"2798":1,"2799":1,"2800":1},"2":{"0":1,"3":3,"5":2,"6":1,"9":1,"15":3,"18":1,"21":1,"23":1,"29":1,"38":1,"39":9,"40":5,"42":1,"43":3,"44":1,"48":3,"49":2,"50":1,"52":1,"55":1,"62":1,"64":1,"70":33,"73":2,"74":4,"75":3,"76":2,"77":1,"86":2,"87":1,"92":4,"94":1,"95":2,"99":3,"103":3,"108":1,"109":1,"110":2,"111":1,"113":1,"114":13,"118":1,"119":5,"120":4,"123":2,"124":4,"125":2,"126":1,"132":1,"133":1,"134":13,"142":1,"149":10,"154":2,"156":3,"158":3,"160":3,"163":1,"166":10,"168":3,"169":2,"170":1,"172":1,"173":1,"174":1,"175":13,"184":3,"185":2,"187":2,"189":1,"190":2,"191":21,"194":7,"195":1,"196":2,"199":11,"201":1,"202":1,"203":2,"206":2,"209":2,"210":10,"212":4,"213":2,"215":1,"217":2,"222":9,"228":3,"231":1,"232":1,"233":2,"234":4,"236":4,"240":2,"246":2,"248":1,"249":7,"251":1,"254":1,"262":1,"263":3,"264":1,"265":2,"266":7,"268":1,"272":1,"273":2,"274":1,"276":2,"277":2,"282":1,"283":1,"284":2,"285":4,"288":2,"289":1,"292":1,"294":2,"301":1,"303":2,"306":1,"307":4,"308":6,"312":1,"313":1,"315":1,"317":2,"320":1,"326":1,"328":1,"332":2,"333":4,"336":1,"337":1,"338":1,"339":1,"340":1,"344":5,"353":1,"354":1,"374":2,"375":1,"376":1,"380":1,"381":1,"383":5,"384":1,"393":2,"396":1,"397":3,"398":1,"399":4,"403":6,"405":1,"406":1,"407":1,"411":3,"414":3,"416":1,"419":2,"420":1,"429":10,"430":2,"432":1,"436":1,"437":3,"439":1,"440":2,"441":1,"442":2,"444":2,"445":2,"446":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"458":2,"460":2,"462":2,"463":1,"464":1,"483":1,"489":4,"491":3,"495":2,"496":3,"497":1,"498":1,"504":1,"505":3,"511":1,"512":2,"513":2,"514":1,"515":1,"516":2,"519":1,"520":2,"521":2,"528":1,"529":1,"532":2,"533":2,"535":1,"538":1,"539":1,"540":3,"541":1,"542":1,"543":1,"544":1,"555":2,"556":1,"557":1,"561":9,"564":2,"565":3,"567":1,"568":1,"569":3,"570":1,"575":3,"576":1,"580":1,"584":1,"588":5,"589":2,"591":2,"592":2,"593":3,"594":2,"595":1,"596":2,"597":2,"598":1,"599":3,"600":1,"604":1,"605":4,"607":3,"609":3,"610":4,"612":4,"613":6,"614":2,"615":1,"624":2,"625":2,"626":1,"632":1,"633":2,"639":1,"640":1,"643":2,"647":3,"655":1,"656":2,"657":2,"660":1,"666":3,"668":6,"669":3,"672":1,"673":2,"674":1,"675":1,"676":2,"677":2,"681":1,"683":2,"684":4,"685":1,"686":5,"687":3,"688":3,"689":3,"690":1,"695":3,"696":2,"701":2,"703":2,"704":2,"708":1,"714":1,"716":1,"717":2,"718":2,"719":1,"720":1,"722":1,"729":3,"743":1,"744":3,"746":2,"748":1,"749":6,"750":6,"751":2,"753":1,"754":7,"755":3,"756":1,"757":1,"759":11,"761":1,"763":1,"764":1,"765":2,"767":1,"768":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"797":1,"798":1,"802":1,"805":2,"828":1,"829":1,"831":2,"857":1,"858":1,"860":6,"863":3,"889":1,"890":1,"893":3,"921":1,"922":1,"923":1,"928":3,"956":1,"957":1,"962":3,"990":1,"991":1,"996":3,"1024":1,"1025":1,"1030":3,"1058":1,"1059":1,"1064":3,"1092":1,"1093":1,"1094":1,"1095":6,"1098":3,"1126":1,"1127":1,"1128":1,"1129":6,"1132":3,"1160":1,"1161":1,"1163":6,"1166":3,"1192":2,"1194":1,"1195":1,"1197":2,"1198":2,"1200":2,"1201":2,"1203":3,"1204":3,"1205":2,"1206":1,"1207":1,"1208":3,"1213":7,"1216":1,"1217":1,"1219":3,"1245":1,"1246":2,"1248":4,"1253":1,"1266":2,"1267":2,"1283":1,"1284":2,"1285":6,"1286":1,"1287":1,"1288":1,"1289":2,"1291":1,"1292":1,"1295":2,"1297":4,"1298":1,"1307":1,"1311":1,"1316":1,"1319":2,"1320":1,"1322":2,"1330":2,"1332":2,"1338":1,"1342":1,"1343":2,"1345":1,"1346":1,"1347":1,"1348":4,"1350":1,"1351":3,"1354":2,"1356":2,"1357":1,"1365":3,"1366":4,"1368":4,"1369":2,"1370":2,"1376":2,"1378":7,"1379":1,"1380":2,"1381":2,"1388":2,"1395":1,"1406":1,"1409":4,"1410":9,"1412":1,"1413":1,"1414":2,"1415":2,"1417":6,"1419":4,"1420":2,"1422":1,"1423":1,"1425":2,"1427":5,"1428":4,"1431":1,"1432":1,"1433":3,"1434":3,"1435":1,"1439":3,"1441":2,"1442":1,"1444":1,"1446":1,"1447":2,"1448":3,"1449":1,"1451":3,"1463":3,"1464":6,"1465":1,"1466":4,"1467":1,"1468":1,"1470":9,"1471":5,"1472":3,"1474":1,"1477":1,"1480":2,"1481":3,"1482":1,"1483":3,"1484":1,"1485":6,"1487":2,"1488":2,"1489":2,"1490":1,"1491":4,"1492":3,"1493":2,"1495":1,"1499":2,"1500":1,"1501":1,"1502":1,"1503":3,"1514":1,"1518":2,"1519":1,"1521":1,"1522":1,"1523":1,"1525":3,"1526":2,"1527":3,"1533":3,"1535":1,"1537":3,"1538":9,"1539":2,"1541":1,"1544":1,"1545":1,"1546":1,"1547":1,"1550":1,"1551":1,"1556":1,"1558":2,"1579":1,"1583":1,"1586":1,"1588":1,"1589":2,"1590":1,"1591":3,"1593":3,"1594":3,"1595":2,"1597":1,"1598":1,"1601":1,"1602":1,"1603":2,"1605":3,"1606":1,"1607":1,"1609":2,"1611":3,"1612":14,"1619":1,"1620":1,"1621":1,"1622":4,"1623":1,"1625":1,"1627":2,"1628":2,"1630":2,"1631":1,"1632":1,"1634":1,"1635":1,"1636":1,"1642":6,"1645":2,"1647":1,"1648":1,"1655":3,"1661":3,"1662":4,"1666":2,"1667":1,"1668":1,"1670":2,"1672":1,"1675":1,"1676":1,"1678":2,"1681":5,"1682":1,"1683":1,"1689":1,"1690":1,"1691":1,"1692":1,"1693":1,"1694":1,"1695":1,"1697":1,"1702":2,"1740":1,"1742":3,"1762":1,"1763":2,"1765":1,"1766":2,"1768":1,"1770":1,"1776":2,"1777":2,"1781":1,"1782":2,"1783":1,"1784":3,"1785":1,"1786":4,"1787":2,"1788":3,"1790":2,"1791":1,"1792":2,"1794":2,"1795":3,"1796":1,"1798":1,"1802":3,"1804":1,"1835":2,"1836":1,"1837":2,"1838":1,"1843":1,"1846":1,"1848":2,"1849":5,"1850":5,"1851":4,"1852":2,"1855":2,"1907":1,"1913":2,"1916":2,"1919":1,"1923":1,"1926":1,"1930":1,"1933":1,"1934":2,"1935":3,"1936":3,"1937":2,"1938":1,"1939":5,"1940":2,"1945":1,"1946":1,"1947":3,"1948":2,"1949":4,"1952":3,"1953":7,"1954":4,"1957":2,"1958":1,"1959":2,"1960":2,"1962":6,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1970":3,"1971":8,"1973":1,"1974":5,"1975":1,"1976":3,"1977":4,"1979":1,"1980":1,"1981":1,"1982":2,"1983":9,"1984":1,"1986":6,"1990":6,"1992":3,"1994":3,"1998":1,"1999":1,"2000":1,"2001":4,"2006":1,"2008":2,"2011":1,"2012":3,"2013":2,"2014":1,"2015":3,"2016":1,"2039":2,"2040":2,"2041":2,"2042":3,"2043":2,"2044":1,"2048":1,"2051":1,"2053":2,"2054":1,"2057":3,"2058":1,"2059":1,"2062":1,"2064":1,"2065":1,"2066":2,"2068":4,"2069":1,"2070":2,"2072":2,"2073":1,"2076":2,"2077":1,"2079":2,"2082":1,"2084":3,"2085":12,"2086":2,"2088":5,"2089":1,"2090":4,"2091":2,"2094":2,"2167":1,"2173":2,"2176":2,"2178":1,"2179":2,"2181":3,"2182":1,"2183":1,"2185":2,"2187":6,"2188":1,"2189":5,"2191":1,"2194":2,"2199":4,"2205":1,"2206":4,"2207":1,"2210":1,"2218":1,"2219":1,"2222":1,"2231":1,"2235":1,"2250":1,"2256":2,"2258":1,"2259":4,"2260":1,"2261":1,"2264":1,"2265":2,"2267":1,"2269":2,"2270":1,"2272":2,"2273":4,"2275":2,"2276":1,"2277":4,"2278":2,"2284":1,"2285":1,"2286":3,"2287":2,"2288":2,"2289":1,"2290":3,"2291":2,"2292":1,"2293":5,"2294":3,"2295":1,"2296":1,"2297":3,"2298":4,"2300":5,"2301":2,"2302":2,"2303":1,"2305":1,"2308":2,"2309":9,"2310":5,"2312":3,"2313":1,"2316":1,"2317":12,"2318":4,"2319":6,"2322":1,"2325":1,"2327":2,"2329":5,"2330":6,"2331":5,"2332":2,"2344":1,"2345":1,"2346":1,"2354":1,"2357":1,"2362":1,"2374":1,"2375":1,"2377":1,"2379":3,"2381":1,"2384":3,"2387":2,"2388":2,"2389":3,"2391":1,"2392":2,"2393":1,"2394":2,"2395":3,"2396":4,"2397":3,"2399":2,"2400":1,"2401":2,"2402":1,"2403":1,"2404":2,"2405":1,"2406":1,"2407":1,"2408":1,"2409":1,"2410":3,"2412":3,"2415":1,"2416":1,"2417":2,"2418":12,"2419":1,"2422":2,"2423":3,"2425":1,"2426":1,"2427":2,"2428":5,"2429":5,"2430":1,"2431":4,"2432":2,"2433":2,"2434":2,"2435":4,"2439":1,"2449":1,"2450":2,"2451":2,"2453":3,"2454":8,"2455":4,"2456":3,"2458":3,"2460":3,"2461":1,"2462":1,"2463":1,"2464":3,"2466":8,"2467":1,"2468":1,"2469":1,"2473":2,"2474":1,"2475":2,"2482":4,"2490":1,"2497":2,"2498":1,"2499":2,"2500":1,"2501":2,"2502":3,"2503":2,"2504":1,"2505":2,"2508":3,"2509":1,"2517":2,"2519":2,"2521":2,"2522":2,"2524":1,"2528":1,"2535":1,"2537":2,"2543":1,"2544":1,"2545":3,"2552":2,"2554":3,"2557":4,"2558":2,"2559":2,"2560":2,"2561":3,"2562":2,"2563":2,"2564":2,"2566":2,"2567":5,"2568":3,"2569":4,"2570":3,"2571":1,"2572":2,"2573":2,"2575":1,"2583":1,"2584":2,"2585":1,"2586":1,"2591":1,"2594":4,"2595":1,"2596":1,"2597":2,"2598":3,"2605":2,"2606":2,"2607":1,"2608":1,"2609":2,"2610":4,"2612":9,"2614":4,"2615":1,"2616":2,"2622":1,"2626":1,"2628":4,"2629":2,"2632":3,"2633":2,"2634":8,"2635":1,"2637":2,"2638":1,"2639":1,"2640":1,"2642":2,"2650":3,"2651":1,"2652":2,"2653":1,"2655":1,"2657":1,"2664":1,"2667":1,"2669":4,"2671":1,"2673":1,"2674":9,"2676":2,"2677":1,"2680":2,"2684":1,"2685":3,"2686":1,"2687":1,"2688":1,"2690":2,"2691":2,"2694":1,"2695":1,"2700":3,"2702":2,"2704":2,"2705":1,"2706":1,"2707":3,"2709":2,"2710":1,"2711":2,"2713":1,"2714":1,"2716":1,"2717":5,"2719":1,"2720":1,"2721":1,"2725":1,"2726":6,"2728":19,"2729":4,"2730":2,"2731":4,"2732":1,"2733":1,"2735":2,"2741":1,"2747":1,"2750":1,"2751":1,"2752":1,"2753":1,"2754":5,"2755":3,"2756":38,"2757":14,"2758":2,"2761":1,"2763":1,"2765":2,"2767":5,"2768":1,"2770":1,"2771":2,"2772":2,"2773":2,"2774":4,"2775":2,"2776":3,"2777":2,"2778":1,"2780":1,"2786":2,"2792":1,"2793":1,"2794":4,"2795":7,"2796":4,"2799":1,"2800":4,"2809":1,"2810":1,"2812":1,"2818":1,"2840":1,"2842":1,"2846":2,"2850":1,"2851":2,"2853":2,"2854":2,"2855":2,"2856":1,"2857":1,"2858":4,"2861":1,"2862":1,"2863":1,"2869":10,"2870":1,"2871":5,"2872":2,"2874":2,"2877":1,"2878":5,"2880":3,"2882":2,"2883":2,"2884":4,"2885":2,"2886":3,"2887":1,"2889":1,"2890":1,"2892":1,"2894":3,"2896":1,"2901":3,"2902":1,"2904":1,"2906":2,"2907":1,"2910":1,"2911":1,"2912":13,"2913":2,"2914":5,"2915":3,"2919":2,"2920":6,"2921":1,"2922":1,"2923":2,"2925":2,"2926":4,"2927":6,"2928":2,"2929":5,"2930":1,"2931":6,"2932":1,"2935":3,"2936":3,"2938":2,"2941":2,"2942":2,"2944":2,"2945":5,"2946":1,"2947":1,"2948":1,"2950":4}}],["is25lp080",{"2":{"2705":2}}],["isc20",{"2":{"2041":1}}],["isc21",{"2":{"2041":1}}],["isdata",{"0":{"1725":1,"1727":1},"1":{"1726":1,"1728":1,"1729":1},"2":{"1726":1,"1728":1,"1729":1}}],["is=yes",{"2":{"1395":1}}],["isn",{"0":{"1338":1,"1350":1},"2":{"353":1,"597":1,"637":1,"645":1,"1197":1,"1381":1,"1465":1,"1485":1,"1517":1,"1984":1,"2272":1,"2429":1,"2466":1,"2667":1,"2669":1,"2889":1,"2933":1}}],["islefthand",{"0":{"332":1,"337":1},"2":{"332":2,"333":2,"337":1,"339":1}}],["isp",{"0":{"2482":1,"2484":1,"2486":1,"2488":1,"2818":1},"1":{"2483":1,"2484":1,"2485":2,"2486":1,"2487":2,"2488":1,"2489":2,"2490":1,"2491":1,"2492":1,"2493":1,"2494":1,"2495":1,"2496":1,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":1,"2503":1,"2504":1,"2505":1,"2506":1,"2507":1,"2508":1},"2":{"328":1,"430":1,"689":1,"2394":1,"2395":1,"2482":2,"2483":3,"2484":2,"2486":2,"2488":2,"2491":1,"2493":1,"2494":1,"2496":2,"2497":1,"2502":2,"2504":1,"2567":1}}],["ish",{"0":{"350":1},"2":{"160":2,"222":1,"2319":1}}],["issi",{"2":{"114":2,"134":3,"191":1,"222":1,"236":4,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1}}],["issuing",{"2":{"39":1}}],["issued",{"2":{"2567":1,"2904":1}}],["issuecomment",{"2":{"1359":1}}],["issues",{"0":{"312":1,"2682":1,"2797":1,"2899":1},"1":{"2798":1,"2799":1,"2800":1},"2":{"14":1,"15":1,"86":1,"114":7,"134":8,"149":2,"160":1,"191":3,"199":1,"222":2,"240":1,"263":1,"266":1,"273":1,"276":1,"285":1,"294":1,"317":1,"333":1,"414":1,"564":2,"598":1,"607":1,"1193":1,"1207":1,"1209":1,"1315":1,"1318":1,"1319":1,"1329":1,"1331":1,"1337":1,"1338":1,"1352":1,"1353":1,"1356":1,"1359":3,"1361":1,"1376":1,"1417":1,"1423":1,"1455":1,"1466":1,"1486":1,"1490":1,"1551":1,"1609":1,"1960":2,"1961":2,"1986":1,"1994":1,"1998":1,"2272":1,"2275":1,"2298":1,"2331":1,"2382":1,"2554":1,"2573":2,"2590":1,"2634":1,"2635":1,"2640":1,"2651":1,"2662":1,"2671":1,"2675":1,"2678":1,"2682":1,"2789":1,"2909":2}}],["issue",{"0":{"1338":1},"2":{"5":1,"6":1,"73":1,"92":1,"114":2,"149":2,"175":2,"191":4,"199":3,"222":3,"236":1,"249":1,"294":2,"414":1,"544":1,"570":1,"606":1,"607":6,"612":1,"613":1,"614":1,"617":1,"644":1,"668":1,"672":1,"1296":1,"1318":1,"1333":1,"1336":1,"1338":1,"1339":1,"1342":1,"1356":1,"1433":1,"1634":1,"1962":2,"2011":1,"2441":1,"2454":1,"2490":1,"2554":1,"2565":1,"2573":1,"2638":1,"2651":1,"2678":1,"2682":1,"2690":1,"2704":1,"2725":1,"2727":1,"2730":1,"2817":1,"2850":1,"2899":2,"2931":1}}],["is31flcommon",{"2":{"249":1}}],["is31fl3236",{"0":{"826":1,"833":1,"835":1,"837":1,"839":1,"841":1,"843":1,"845":1,"847":1,"849":1,"851":1,"853":1},"1":{"827":1,"828":1,"829":1,"830":1,"831":1,"832":1,"833":1,"834":2,"835":1,"836":2,"837":1,"838":2,"839":1,"840":2,"841":1,"842":2,"843":1,"844":2,"845":1,"846":2,"847":1,"848":2,"849":1,"850":2,"851":1,"852":2,"853":1,"854":2},"2":{"266":1,"826":1,"827":4,"828":7,"829":6,"831":6,"839":1,"840":1,"843":1,"844":1,"847":1,"848":1,"849":1,"850":1,"1845":1,"2081":1,"2878":1}}],["is31fl3218",{"0":{"800":1,"807":1,"809":1,"810":1,"812":1,"814":1,"816":1,"818":1,"820":1,"822":1,"824":1,"825":1},"1":{"801":1,"802":1,"803":1,"804":1,"805":1,"806":1,"807":1,"808":2,"809":1,"810":1,"811":2,"812":1,"813":2,"814":1,"815":2,"816":1,"817":2,"818":1,"819":2,"820":1,"821":2,"822":1,"823":2,"824":1,"825":1},"2":{"236":3,"800":1,"801":4,"802":3,"803":2,"805":6,"812":1,"813":1,"816":1,"817":1,"820":1,"821":1,"822":1,"823":1,"1845":2,"2081":2,"2871":1,"2878":1}}],["is31fl3729",{"0":{"855":1,"865":1,"867":1,"869":1,"871":1,"873":1,"875":1,"877":1,"879":1,"881":1,"883":1,"885":1},"1":{"856":1,"857":1,"858":1,"859":1,"860":1,"861":1,"862":1,"863":1,"864":1,"865":1,"866":2,"867":1,"868":2,"869":1,"870":2,"871":1,"872":2,"873":1,"874":2,"875":1,"876":2,"877":1,"878":2,"879":1,"880":2,"881":1,"882":2,"883":1,"884":2,"885":1,"886":2},"2":{"249":2,"333":1,"855":1,"856":4,"857":14,"858":6,"859":10,"860":22,"861":1,"863":6,"871":1,"872":1,"875":1,"876":1,"879":1,"880":1,"881":1,"882":1,"1845":1,"2081":1,"2878":1}}],["is31fl3741a",{"2":{"1022":1,"1024":1,"1026":1}}],["is31fl3741",{"0":{"1022":1,"1032":1,"1034":1,"1036":1,"1038":1,"1040":1,"1042":1,"1044":1,"1046":1,"1048":1,"1050":1,"1052":1,"1054":1},"1":{"1023":1,"1024":1,"1025":1,"1026":1,"1027":1,"1028":1,"1029":1,"1030":1,"1031":1,"1032":1,"1033":2,"1034":1,"1035":2,"1036":1,"1037":2,"1038":1,"1039":2,"1040":1,"1041":2,"1042":1,"1043":2,"1044":1,"1045":2,"1046":1,"1047":2,"1048":1,"1049":2,"1050":1,"1051":2,"1052":1,"1053":2,"1054":1,"1055":2},"2":{"209":2,"236":2,"249":1,"1023":4,"1024":15,"1025":6,"1026":6,"1027":22,"1028":1,"1030":6,"1040":1,"1041":1,"1044":1,"1045":1,"1048":1,"1049":1,"1050":1,"1051":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3746a",{"0":{"1158":1,"1168":1,"1170":1,"1172":1,"1174":1,"1176":1,"1178":1,"1180":1,"1182":1,"1184":1,"1186":1,"1188":1,"1190":1},"1":{"1159":1,"1160":1,"1161":1,"1162":1,"1163":1,"1164":1,"1165":1,"1166":1,"1167":1,"1168":1,"1169":2,"1170":1,"1171":2,"1172":1,"1173":2,"1174":1,"1175":2,"1176":1,"1177":2,"1178":1,"1179":2,"1180":1,"1181":2,"1182":1,"1183":2,"1184":1,"1185":2,"1186":1,"1187":2,"1188":1,"1189":2,"1190":1,"1191":2},"2":{"147":1,"149":1,"209":4,"249":1,"1158":1,"1159":4,"1160":15,"1161":18,"1162":9,"1163":22,"1164":1,"1166":6,"1176":1,"1177":1,"1180":1,"1181":1,"1184":1,"1185":1,"1186":1,"1187":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3745",{"0":{"1124":1,"1134":1,"1136":1,"1138":1,"1140":1,"1142":1,"1144":1,"1146":1,"1148":1,"1150":1,"1152":1,"1154":1,"1156":1},"1":{"1125":1,"1126":1,"1127":1,"1128":1,"1129":1,"1130":1,"1131":1,"1132":1,"1133":1,"1134":1,"1135":2,"1136":1,"1137":2,"1138":1,"1139":2,"1140":1,"1141":2,"1142":1,"1143":2,"1144":1,"1145":2,"1146":1,"1147":2,"1148":1,"1149":2,"1150":1,"1151":2,"1152":1,"1153":2,"1154":1,"1155":2,"1156":1,"1157":2},"2":{"147":1,"149":1,"209":4,"249":1,"1124":1,"1125":4,"1126":21,"1127":18,"1128":5,"1129":22,"1130":1,"1132":6,"1142":1,"1143":1,"1146":1,"1147":1,"1150":1,"1151":1,"1152":1,"1153":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3743a",{"0":{"1090":1,"1100":1,"1102":1,"1104":1,"1106":1,"1108":1,"1110":1,"1112":1,"1114":1,"1116":1,"1118":1,"1120":1,"1122":1},"1":{"1091":1,"1092":1,"1093":1,"1094":1,"1095":1,"1096":1,"1097":1,"1098":1,"1099":1,"1100":1,"1101":2,"1102":1,"1103":2,"1104":1,"1105":2,"1106":1,"1107":2,"1108":1,"1109":2,"1110":1,"1111":2,"1112":1,"1113":2,"1114":1,"1115":2,"1116":1,"1117":2,"1118":1,"1119":2,"1120":1,"1121":2,"1122":1,"1123":2},"2":{"147":1,"149":1,"209":4,"249":1,"1090":1,"1091":4,"1092":21,"1093":18,"1094":5,"1095":22,"1096":1,"1098":6,"1108":1,"1109":1,"1112":1,"1113":1,"1116":1,"1117":1,"1118":1,"1119":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3742a",{"0":{"1056":1,"1066":1,"1068":1,"1070":1,"1072":1,"1074":1,"1076":1,"1078":1,"1080":1,"1082":1,"1084":1,"1086":1,"1088":1},"1":{"1057":1,"1058":1,"1059":1,"1060":1,"1061":1,"1062":1,"1063":1,"1064":1,"1065":1,"1066":1,"1067":2,"1068":1,"1069":2,"1070":1,"1071":2,"1072":1,"1073":2,"1074":1,"1075":2,"1076":1,"1077":2,"1078":1,"1079":2,"1080":1,"1081":2,"1082":1,"1083":2,"1084":1,"1085":2,"1086":1,"1087":2,"1088":1,"1089":2},"2":{"147":1,"149":1,"209":4,"249":1,"1056":1,"1057":4,"1058":15,"1059":6,"1060":6,"1061":22,"1062":1,"1064":6,"1074":1,"1075":1,"1078":1,"1079":1,"1082":1,"1083":1,"1084":1,"1085":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3736b",{"2":{"956":1,"958":1}}],["is31fl3736",{"0":{"954":1,"964":1,"966":1,"968":1,"970":1,"972":1,"974":1,"976":1,"978":1,"980":1,"982":1,"984":1,"986":1},"1":{"955":1,"956":1,"957":1,"958":1,"959":1,"960":1,"961":1,"962":1,"963":1,"964":1,"965":2,"966":1,"967":2,"968":1,"969":2,"970":1,"971":2,"972":1,"973":2,"974":1,"975":2,"976":1,"977":2,"978":1,"979":2,"980":1,"981":2,"982":1,"983":2,"984":1,"985":2,"986":1,"987":2},"2":{"209":2,"222":3,"236":2,"249":1,"954":1,"955":4,"956":14,"957":18,"958":7,"959":22,"960":1,"962":6,"972":1,"973":1,"976":1,"977":1,"980":1,"981":1,"982":1,"983":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3731",{"0":{"887":1,"895":1,"897":1,"899":1,"901":1,"903":1,"905":1,"907":1,"909":1,"911":1,"913":1,"915":1,"917":1,"2444":1},"1":{"888":1,"889":1,"890":1,"891":1,"892":1,"893":1,"894":1,"895":1,"896":2,"897":1,"898":2,"899":1,"900":2,"901":1,"902":2,"903":1,"904":2,"905":1,"906":2,"907":1,"908":2,"909":1,"910":2,"911":1,"912":2,"913":1,"914":2,"915":1,"916":2,"917":1,"918":2},"2":{"209":4,"236":1,"887":1,"888":4,"889":8,"890":6,"891":2,"893":6,"903":1,"904":1,"907":1,"908":1,"911":1,"912":1,"913":1,"914":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3737b",{"2":{"160":1,"990":1,"992":1}}],["is31fl3737",{"0":{"988":1,"998":1,"1000":1,"1002":1,"1004":1,"1006":1,"1008":1,"1010":1,"1012":1,"1014":1,"1016":1,"1018":1,"1020":1},"1":{"989":1,"990":1,"991":1,"992":1,"993":1,"994":1,"995":1,"996":1,"997":1,"998":1,"999":2,"1000":1,"1001":2,"1002":1,"1003":2,"1004":1,"1005":2,"1006":1,"1007":2,"1008":1,"1009":2,"1010":1,"1011":2,"1012":1,"1013":2,"1014":1,"1015":2,"1016":1,"1017":2,"1018":1,"1019":2,"1020":1,"1021":2},"2":{"114":2,"175":1,"191":1,"209":2,"236":2,"988":1,"989":4,"990":14,"991":6,"992":7,"993":22,"994":1,"996":6,"1006":1,"1007":1,"1010":1,"1011":1,"1014":1,"1015":1,"1016":1,"1017":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31fl3733b",{"2":{"134":1,"921":1,"924":1}}],["is31fl3733",{"0":{"919":1,"930":1,"932":1,"934":1,"936":1,"938":1,"940":1,"942":1,"944":1,"946":1,"948":1,"950":1,"952":1,"2445":1},"1":{"920":1,"921":1,"922":1,"923":1,"924":1,"925":1,"926":1,"927":1,"928":1,"929":1,"930":1,"931":2,"932":1,"933":2,"934":1,"935":2,"936":1,"937":2,"938":1,"939":2,"940":1,"941":2,"942":1,"943":2,"944":1,"945":2,"946":1,"947":2,"948":1,"949":2,"950":1,"951":2,"952":1,"953":2},"2":{"93":1,"149":1,"209":2,"236":2,"249":2,"919":1,"920":4,"921":22,"922":18,"923":5,"924":7,"925":22,"926":1,"928":6,"938":1,"939":1,"942":1,"943":1,"946":1,"947":1,"948":1,"949":1,"1845":1,"2081":1,"2871":1,"2878":1}}],["is31common",{"2":{"249":4}}],["is31",{"2":{"114":1}}],["isolated",{"2":{"2772":1}}],["isolation",{"2":{"241":2,"2734":1}}],["iso",{"2":{"102":3,"114":2,"122":3,"143":2,"149":2,"159":2,"175":1,"183":2,"199":1,"205":2,"222":5,"226":4,"236":2,"266":2,"277":1,"328":2,"429":2,"444":1,"1346":3,"1434":1,"1465":2,"2423":1,"2453":5,"2797":1,"2799":2,"2869":5,"2887":18}}],["is",{"0":{"141":1,"401":1,"617":1,"619":1,"1317":1,"1329":1,"1330":1,"1335":1,"1570":1,"1575":1,"1863":1,"2012":1,"2029":1,"2076":1,"2077":1,"2105":1,"2477":1,"2924":1},"1":{"402":1,"1571":1,"1576":1,"1864":1,"2030":1,"2031":1,"2106":1},"2":{"0":2,"3":1,"7":1,"9":2,"13":2,"14":1,"15":1,"18":2,"20":1,"21":3,"24":2,"26":1,"29":2,"35":2,"38":1,"39":4,"40":3,"42":2,"43":2,"46":2,"47":1,"48":1,"51":4,"52":2,"70":23,"76":1,"88":1,"90":1,"94":1,"98":1,"103":1,"104":1,"113":2,"114":1,"118":1,"120":2,"123":1,"126":1,"127":1,"130":1,"134":3,"141":1,"149":4,"152":1,"153":3,"154":3,"156":3,"160":2,"163":1,"175":3,"181":1,"191":3,"194":4,"195":4,"196":1,"199":5,"201":2,"206":1,"210":1,"212":2,"213":1,"214":2,"215":1,"217":1,"220":3,"222":2,"224":3,"228":1,"230":1,"232":2,"233":3,"234":1,"235":2,"236":3,"238":1,"240":1,"244":1,"246":2,"249":4,"251":1,"262":2,"263":1,"266":2,"268":1,"273":1,"276":2,"279":2,"284":1,"288":1,"289":3,"293":2,"294":1,"297":2,"305":2,"306":2,"314":2,"315":1,"317":1,"320":7,"332":2,"337":2,"339":1,"344":3,"348":1,"350":1,"352":5,"354":1,"355":2,"362":1,"365":1,"366":1,"368":1,"369":1,"370":1,"378":1,"379":1,"381":4,"382":1,"383":2,"384":1,"385":1,"386":2,"387":1,"390":1,"391":1,"393":3,"396":1,"397":1,"398":1,"399":3,"401":1,"402":6,"403":10,"405":2,"406":2,"407":2,"408":3,"409":1,"411":2,"412":5,"414":2,"415":2,"416":1,"417":2,"426":1,"429":2,"430":5,"433":10,"437":1,"439":1,"440":1,"442":1,"444":2,"445":1,"446":1,"450":1,"452":2,"453":2,"460":1,"463":1,"472":1,"475":1,"487":2,"489":6,"490":1,"492":1,"493":1,"494":1,"495":1,"496":1,"499":2,"504":1,"512":6,"513":2,"514":1,"516":2,"517":1,"521":1,"525":2,"526":3,"527":2,"528":1,"529":2,"530":1,"531":1,"533":3,"538":4,"540":1,"541":4,"542":2,"543":2,"554":1,"555":2,"556":2,"560":2,"561":8,"564":6,"565":5,"568":11,"569":8,"570":8,"571":3,"572":5,"574":1,"575":2,"578":1,"579":2,"580":1,"581":1,"585":1,"586":1,"588":7,"591":1,"592":1,"593":9,"596":2,"599":2,"600":1,"601":1,"604":1,"605":2,"607":3,"608":1,"609":2,"610":3,"613":4,"615":1,"618":1,"623":2,"625":1,"626":2,"627":1,"628":2,"629":2,"630":2,"631":2,"632":2,"633":5,"634":2,"637":4,"639":2,"640":2,"643":1,"645":1,"647":6,"648":3,"649":1,"651":10,"656":4,"657":7,"658":1,"659":1,"661":1,"664":1,"665":2,"666":1,"668":3,"669":2,"671":1,"673":2,"679":2,"680":2,"681":2,"683":2,"684":1,"686":3,"687":1,"688":1,"689":2,"690":1,"695":2,"696":3,"698":1,"699":1,"701":1,"703":1,"714":1,"715":2,"716":1,"719":3,"720":1,"721":1,"722":2,"725":1,"742":1,"744":1,"745":1,"746":5,"748":1,"749":5,"750":2,"751":1,"752":1,"753":5,"754":4,"755":3,"756":1,"757":5,"758":1,"759":1,"760":2,"761":4,"762":2,"763":4,"765":1,"766":2,"767":1,"768":6,"772":1,"776":1,"797":2,"801":1,"803":1,"805":2,"827":1,"829":1,"831":2,"856":1,"858":1,"861":1,"863":2,"888":1,"890":1,"893":2,"920":1,"926":1,"928":2,"955":1,"960":1,"962":2,"989":1,"991":1,"994":1,"996":2,"1023":1,"1025":1,"1028":1,"1030":2,"1057":1,"1059":1,"1062":1,"1064":2,"1091":1,"1096":1,"1098":2,"1125":1,"1130":1,"1132":2,"1159":1,"1164":1,"1166":2,"1192":2,"1193":3,"1194":3,"1196":3,"1197":5,"1198":1,"1199":4,"1200":4,"1201":1,"1203":3,"1204":4,"1205":4,"1207":1,"1208":1,"1213":4,"1214":1,"1215":1,"1217":1,"1219":2,"1246":1,"1247":2,"1248":2,"1252":1,"1253":1,"1267":1,"1268":1,"1276":1,"1282":1,"1283":1,"1284":1,"1285":1,"1286":1,"1287":1,"1288":1,"1290":2,"1292":2,"1293":1,"1294":2,"1296":1,"1297":5,"1298":1,"1303":2,"1312":1,"1313":1,"1315":3,"1320":1,"1322":1,"1327":3,"1328":1,"1329":2,"1331":1,"1332":3,"1335":1,"1336":2,"1337":1,"1338":1,"1348":3,"1349":1,"1350":3,"1351":2,"1353":1,"1354":1,"1356":4,"1361":2,"1362":6,"1364":1,"1365":5,"1368":1,"1371":2,"1372":1,"1376":1,"1378":6,"1380":1,"1381":6,"1382":1,"1388":1,"1389":1,"1392":3,"1393":2,"1394":1,"1396":1,"1397":2,"1398":1,"1405":1,"1406":1,"1409":3,"1410":14,"1412":1,"1413":18,"1414":1,"1415":2,"1416":3,"1417":8,"1418":1,"1419":3,"1420":2,"1421":1,"1422":11,"1423":4,"1425":1,"1426":1,"1427":5,"1428":8,"1431":6,"1432":1,"1433":1,"1438":1,"1440":2,"1443":2,"1444":1,"1446":16,"1447":6,"1448":1,"1452":3,"1455":3,"1462":7,"1464":3,"1465":1,"1466":2,"1467":3,"1468":1,"1470":3,"1471":2,"1475":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1485":6,"1486":11,"1487":4,"1488":1,"1490":4,"1491":1,"1492":2,"1493":3,"1497":1,"1498":9,"1501":3,"1502":3,"1503":6,"1510":3,"1512":1,"1514":1,"1517":7,"1518":5,"1522":1,"1523":3,"1525":5,"1526":3,"1527":3,"1528":6,"1529":1,"1532":6,"1533":3,"1535":2,"1536":2,"1537":5,"1538":11,"1539":2,"1541":2,"1542":1,"1544":1,"1545":3,"1546":4,"1547":1,"1548":1,"1549":2,"1550":3,"1551":1,"1556":1,"1558":4,"1571":1,"1576":1,"1589":5,"1590":3,"1591":4,"1593":9,"1594":1,"1595":3,"1597":2,"1598":2,"1599":2,"1600":5,"1601":1,"1602":1,"1604":1,"1605":3,"1606":1,"1608":1,"1610":1,"1612":5,"1613":2,"1614":2,"1615":4,"1616":1,"1619":2,"1620":5,"1621":1,"1622":1,"1623":4,"1624":2,"1625":2,"1627":2,"1628":3,"1630":4,"1633":3,"1634":3,"1638":1,"1639":1,"1641":4,"1642":3,"1645":1,"1646":1,"1659":1,"1661":3,"1662":2,"1663":1,"1664":3,"1668":2,"1670":1,"1671":2,"1675":2,"1676":4,"1678":4,"1681":14,"1682":1,"1684":2,"1685":4,"1687":2,"1689":1,"1690":5,"1702":3,"1706":1,"1707":1,"1708":1,"1717":1,"1720":2,"1721":1,"1722":2,"1723":1,"1724":1,"1726":1,"1729":1,"1734":1,"1736":1,"1738":2,"1739":1,"1740":1,"1742":4,"1747":1,"1757":1,"1764":1,"1765":1,"1766":1,"1767":2,"1769":2,"1771":1,"1774":2,"1776":3,"1777":1,"1779":2,"1781":10,"1782":5,"1783":1,"1784":7,"1785":7,"1786":18,"1789":2,"1790":1,"1791":4,"1792":1,"1793":3,"1794":9,"1795":5,"1796":1,"1798":2,"1800":2,"1801":2,"1802":4,"1809":1,"1814":1,"1815":3,"1817":1,"1818":1,"1835":1,"1836":1,"1837":1,"1838":2,"1839":2,"1840":1,"1843":2,"1845":2,"1846":13,"1847":3,"1849":1,"1851":1,"1852":1,"1853":1,"1855":1,"1858":1,"1860":1,"1862":1,"1864":1,"1871":1,"1874":1,"1876":1,"1880":1,"1882":1,"1886":1,"1888":1,"1891":1,"1897":1,"1900":1,"1902":1,"1907":1,"1908":2,"1910":2,"1912":2,"1915":2,"1926":1,"1930":1,"1934":1,"1935":6,"1936":4,"1937":7,"1938":3,"1939":3,"1940":1,"1941":1,"1946":1,"1947":1,"1948":5,"1949":2,"1951":1,"1952":3,"1953":6,"1954":16,"1956":1,"1957":2,"1958":1,"1959":4,"1960":1,"1961":4,"1962":1,"1963":1,"1964":1,"1966":1,"1967":2,"1968":3,"1971":8,"1973":1,"1974":4,"1976":1,"1978":1,"1979":2,"1980":2,"1981":1,"1982":2,"1983":6,"1984":1,"1985":6,"1986":3,"1987":2,"1988":1,"1990":13,"1992":4,"1993":1,"1994":7,"1999":6,"2000":1,"2001":1,"2003":1,"2004":1,"2005":2,"2006":2,"2008":4,"2009":1,"2011":1,"2012":4,"2014":3,"2015":1,"2016":2,"2031":1,"2038":1,"2040":1,"2044":2,"2046":1,"2048":2,"2051":1,"2053":1,"2057":4,"2059":6,"2065":3,"2068":5,"2069":4,"2070":2,"2071":2,"2072":1,"2073":3,"2075":2,"2076":8,"2077":3,"2079":1,"2081":2,"2082":13,"2083":4,"2085":2,"2086":3,"2090":1,"2091":2,"2092":1,"2094":1,"2096":1,"2097":1,"2100":1,"2102":1,"2104":1,"2106":1,"2113":1,"2116":1,"2118":1,"2122":1,"2124":1,"2128":1,"2130":1,"2134":1,"2136":1,"2140":1,"2142":1,"2145":1,"2151":1,"2154":1,"2156":1,"2161":1,"2167":1,"2168":2,"2170":2,"2172":2,"2175":2,"2178":1,"2179":3,"2181":12,"2182":1,"2183":3,"2184":1,"2185":1,"2187":1,"2188":2,"2189":4,"2191":3,"2192":2,"2198":4,"2202":2,"2203":3,"2204":1,"2207":1,"2209":1,"2210":3,"2212":1,"2213":1,"2218":6,"2219":2,"2220":3,"2221":3,"2223":1,"2232":1,"2234":1,"2238":1,"2240":1,"2242":1,"2244":1,"2249":1,"2254":6,"2258":1,"2259":2,"2260":3,"2261":4,"2265":2,"2266":1,"2267":1,"2270":1,"2271":2,"2272":7,"2273":4,"2274":3,"2275":4,"2276":10,"2277":5,"2278":12,"2279":4,"2280":1,"2281":1,"2286":1,"2287":5,"2289":2,"2290":9,"2291":1,"2292":1,"2293":1,"2294":1,"2295":5,"2296":3,"2297":4,"2298":1,"2300":13,"2302":2,"2303":3,"2304":1,"2306":2,"2309":15,"2310":22,"2315":1,"2316":1,"2317":24,"2318":3,"2319":16,"2321":2,"2325":2,"2328":6,"2329":3,"2330":1,"2331":6,"2332":1,"2340":1,"2342":1,"2344":1,"2345":1,"2346":1,"2360":1,"2361":1,"2374":3,"2375":3,"2377":1,"2379":6,"2381":4,"2383":1,"2384":5,"2386":1,"2387":1,"2388":1,"2389":2,"2391":2,"2392":1,"2393":4,"2394":3,"2395":3,"2396":3,"2397":1,"2398":1,"2399":2,"2400":2,"2401":3,"2402":3,"2403":3,"2404":2,"2405":1,"2406":3,"2408":3,"2410":2,"2412":1,"2413":2,"2414":4,"2415":1,"2417":6,"2418":9,"2421":1,"2422":1,"2423":2,"2424":1,"2425":2,"2427":2,"2428":5,"2429":2,"2430":1,"2431":3,"2432":3,"2433":1,"2434":3,"2435":1,"2437":1,"2439":2,"2449":1,"2450":3,"2452":1,"2453":8,"2454":3,"2455":3,"2456":2,"2457":1,"2458":1,"2460":1,"2463":1,"2464":1,"2465":1,"2466":17,"2468":2,"2469":3,"2470":1,"2471":1,"2472":2,"2473":3,"2474":1,"2477":1,"2481":1,"2482":2,"2483":2,"2490":1,"2494":1,"2496":1,"2497":1,"2499":3,"2500":2,"2501":1,"2502":5,"2503":2,"2504":2,"2505":4,"2508":5,"2521":1,"2523":1,"2530":1,"2533":1,"2535":1,"2544":10,"2552":1,"2556":3,"2558":4,"2559":1,"2561":1,"2562":4,"2563":5,"2564":1,"2566":1,"2567":1,"2568":4,"2569":5,"2570":1,"2573":4,"2575":1,"2576":1,"2579":2,"2580":2,"2583":1,"2584":2,"2585":2,"2586":1,"2587":1,"2589":3,"2590":2,"2591":2,"2595":2,"2597":1,"2598":3,"2599":1,"2601":1,"2602":1,"2606":2,"2612":4,"2613":2,"2614":1,"2616":4,"2617":1,"2621":2,"2622":2,"2626":4,"2627":2,"2628":3,"2629":4,"2633":2,"2634":4,"2635":1,"2636":2,"2637":1,"2638":2,"2639":3,"2640":6,"2641":1,"2650":5,"2652":7,"2653":2,"2656":1,"2657":1,"2658":4,"2659":3,"2662":1,"2664":2,"2667":4,"2668":2,"2670":1,"2671":2,"2674":2,"2675":1,"2676":2,"2677":3,"2678":1,"2679":4,"2680":3,"2682":1,"2683":1,"2684":4,"2685":6,"2686":5,"2687":4,"2688":1,"2690":2,"2691":2,"2700":2,"2702":5,"2704":2,"2705":2,"2706":1,"2707":2,"2709":7,"2710":1,"2711":1,"2712":1,"2714":2,"2715":1,"2716":1,"2717":1,"2718":1,"2720":1,"2721":2,"2722":1,"2725":1,"2726":9,"2728":12,"2729":2,"2730":2,"2731":5,"2732":2,"2734":1,"2738":1,"2741":1,"2750":1,"2752":1,"2753":4,"2754":3,"2755":5,"2756":39,"2757":29,"2758":3,"2761":1,"2764":3,"2765":4,"2766":2,"2767":2,"2770":3,"2771":2,"2772":4,"2773":2,"2774":1,"2775":2,"2776":6,"2777":6,"2782":4,"2784":2,"2785":1,"2786":1,"2787":1,"2790":6,"2794":4,"2795":3,"2796":1,"2799":2,"2805":1,"2807":1,"2809":1,"2810":1,"2813":1,"2814":1,"2821":3,"2822":1,"2827":1,"2831":1,"2834":2,"2839":1,"2840":1,"2844":2,"2846":1,"2849":2,"2851":2,"2853":2,"2857":2,"2861":1,"2869":3,"2871":1,"2872":1,"2874":1,"2877":2,"2878":1,"2884":3,"2886":4,"2888":3,"2889":1,"2893":1,"2895":2,"2897":2,"2898":1,"2899":1,"2901":3,"2902":6,"2903":2,"2904":1,"2910":5,"2912":7,"2913":5,"2914":12,"2919":4,"2920":11,"2921":7,"2922":6,"2923":10,"2924":6,"2925":8,"2926":16,"2927":4,"2929":1,"2930":1,"2931":14,"2932":4,"2933":1,"2935":5,"2936":6,"2937":6,"2938":3,"2939":1,"2940":1,"2941":6,"2942":1,"2944":2,"2945":1,"2949":1,"2950":4}}],["bndu",{"2":{"1925":1,"2539":1}}],["bndd",{"2":{"1925":1,"2539":1}}],["bn009",{"2":{"218":1,"222":1}}],["bn009r2",{"2":{"218":1}}],["bn006",{"2":{"175":1}}],["b♭",{"2":{"1925":6,"2539":6}}],["bbb",{"2":{"2567":1}}],["bb5",{"2":{"1925":1,"2539":1}}],["bb4",{"2":{"1925":1,"2539":1}}],["bb3",{"2":{"1925":1,"2539":1}}],["bb2",{"2":{"1925":1,"2539":1}}],["bb1",{"2":{"1925":1,"2539":1}}],["bb",{"2":{"1925":1,"2539":1}}],["bbs",{"2":{"266":1}}],["b9",{"2":{"1655":1,"2691":1}}],["b8",{"2":{"1556":1,"2685":1,"2691":1}}],["b87",{"2":{"222":2}}],["b3",{"2":{"635":2,"1247":3,"1670":6,"1699":1,"1838":1,"1925":1,"2485":1,"2487":2,"2489":1,"2539":1,"2691":2,"2720":1}}],["b2",{"2":{"635":2,"695":1,"1247":3,"1396":1,"1482":2,"1546":1,"1553":1,"1670":6,"1699":1,"1838":1,"1925":1,"2485":1,"2487":2,"2489":1,"2539":1,"2677":1,"2691":2,"2720":1,"2872":2}}],["b11",{"2":{"2691":1}}],["b10",{"2":{"2691":1}}],["b15",{"2":{"695":1,"1248":1,"2691":1}}],["b15288fb87",{"2":{"95":1}}],["b14",{"2":{"695":1,"1248":1,"1655":1,"2691":1}}],["b12",{"2":{"695":1,"1665":1,"1666":1,"2691":1}}],["b13",{"2":{"695":1,"1248":1,"1665":1,"1666":1,"2691":1}}],["b1²",{"2":{"695":1}}],["b1¹",{"2":{"695":1}}],["b1",{"2":{"635":2,"695":4,"1247":2,"1482":2,"1553":1,"1670":6,"1699":1,"1838":1,"1925":1,"2485":1,"2487":1,"2489":1,"2539":1,"2612":1,"2691":2,"2720":1,"2872":2}}],["b7",{"2":{"561":1,"569":2,"715":2,"768":1,"772":2,"1201":1,"1247":1,"1268":1,"1474":2,"1553":1,"2271":1,"2418":1,"2691":1,"2720":1}}],["b0²",{"2":{"695":1}}],["b0¹",{"2":{"695":1}}],["b007",{"2":{"689":1,"2402":1}}],["b0",{"2":{"561":2,"570":1,"635":2,"695":4,"1247":2,"1392":1,"1396":3,"1838":1,"2278":1,"2396":1,"2489":2,"2691":3,"2720":1,"2872":2}}],["b6",{"2":{"561":1,"693":1,"768":1,"772":2,"1198":1,"1201":1,"1247":1,"1474":2,"1553":1,"1699":1,"1983":1,"2485":1,"2487":1,"2691":2,"2720":1}}],["b5",{"2":{"561":1,"693":1,"715":2,"1247":2,"1474":2,"1553":1,"1925":1,"1983":1,"2487":1,"2539":1,"2680":1,"2691":2,"2720":1,"2880":1}}],["bgr",{"2":{"1287":1}}],["bg",{"2":{"492":1,"494":1,"2757":9}}],["bdfc",{"2":{"380":1,"381":1}}],["bdn9",{"2":{"149":1,"1388":1,"1390":2,"1405":2}}],["bx",{"2":{"222":2}}],["bc417",{"2":{"2374":1}}],["bc",{"2":{"222":1}}],["bcat",{"2":{"210":1}}],["bcd",{"2":{"149":1,"328":1,"2882":1}}],["bépo",{"2":{"191":1,"2887":1}}],["bsd",{"2":{"2328":2,"2331":2,"2332":3,"2552":3,"2748":1}}],["bspace",{"2":{"1625":1}}],["bspc",{"2":{"195":1,"379":1,"589":4,"1381":6,"1535":1,"1600":1,"1605":5,"1622":1,"1774":1,"2068":1,"2073":1,"2381":2,"2512":1,"2522":1,"2563":1,"2920":1,"2921":1}}],["bssl",{"2":{"1622":1}}],["bss",{"2":{"1365":1}}],["bsls",{"2":{"379":1,"589":2,"2512":1,"2522":1,"2563":1}}],["bs",{"2":{"175":3,"259":2,"266":1,"308":1,"2222":1,"2520":3,"2538":3}}],["bpm",{"2":{"1487":1}}],["bp",{"2":{"191":1}}],["bpp",{"2":{"160":1,"236":1}}],["bpiphany",{"2":{"143":2,"149":2}}],["bkf",{"2":{"143":2}}],["b4",{"2":{"111":1,"561":1,"635":2,"693":1,"715":2,"1247":2,"1838":1,"1925":1,"2375":1,"2487":1,"2539":1,"2691":2}}],["bmpgdbserialport",{"2":{"2674":2}}],["bmp",{"2":{"2674":1}}],["bm",{"2":{"134":1,"266":1}}],["bm68hsrgb",{"2":{"122":1,"143":2,"149":1}}],["bm68rgb",{"2":{"102":2,"122":1}}],["bm65hsrgb",{"2":{"122":1,"143":2,"149":1}}],["bm65iso",{"2":{"122":1}}],["bm60hsrgb",{"2":{"122":3,"328":3}}],["bm60rgb",{"2":{"102":4,"122":2}}],["bm60poker",{"2":{"102":2,"122":1}}],["bm43a",{"2":{"102":2}}],["bm40hsrgb",{"2":{"102":2,"226":2,"236":1}}],["bm16s",{"2":{"102":2}}],["bm16a",{"2":{"102":2,"199":1}}],["b",{"0":{"2107":1,"2109":1},"1":{"2108":1,"2110":1},"2":{"98":2,"199":1,"222":5,"249":1,"266":1,"328":1,"351":1,"354":1,"361":2,"379":1,"421":1,"422":1,"430":1,"459":2,"460":3,"572":2,"589":2,"607":1,"611":1,"729":1,"732":1,"805":1,"808":1,"831":1,"834":1,"863":1,"866":1,"893":1,"896":1,"928":1,"931":1,"962":1,"965":1,"996":1,"999":1,"1030":1,"1033":1,"1064":1,"1067":1,"1098":1,"1101":1,"1132":1,"1135":1,"1166":1,"1169":1,"1219":1,"1222":1,"1288":2,"1597":1,"1602":3,"1603":1,"1604":2,"1605":1,"1617":2,"1622":1,"1625":1,"1657":3,"1665":4,"1666":3,"1669":1,"1670":2,"1784":2,"1785":2,"1786":2,"1925":13,"1983":2,"2059":2,"2068":2,"2094":1,"2096":1,"2108":1,"2110":1,"2181":1,"2198":10,"2222":1,"2277":2,"2278":1,"2296":2,"2301":2,"2317":1,"2443":1,"2472":2,"2510":3,"2522":3,"2539":13,"2544":1,"2563":1,"2612":2,"2640":3,"2865":2,"2915":1,"2916":10,"2917":29,"2918":17}}],["btn",{"2":{"2048":8}}],["btn8",{"2":{"1933":1,"2540":1}}],["btn7",{"2":{"1933":1,"2540":1}}],["btn6",{"2":{"1933":1,"2540":1}}],["btn5",{"2":{"1933":1,"2540":1}}],["btn4",{"2":{"1933":1,"2540":1}}],["btn3",{"2":{"1933":1,"2540":1}}],["btn2",{"2":{"1933":1,"2540":1}}],["btn1",{"2":{"1933":1,"1992":2,"2540":1}}],["bt",{"2":{"75":1,"134":1,"2377":9,"2528":9}}],["buflen",{"2":{"2277":2}}],["buff",{"2":{"1947":4,"2286":4}}],["buffered",{"2":{"285":1}}],["buffers",{"0":{"739":1,"824":1,"851":1,"883":1,"915":1,"950":1,"984":1,"1018":1,"1052":1,"1086":1,"1120":1,"1154":1,"1188":1,"1241":1},"1":{"740":1,"852":1,"884":1,"916":1,"951":1,"985":1,"1019":1,"1053":1,"1087":1,"1121":1,"1155":1,"1189":1,"1242":1},"2":{"93":1,"249":2,"285":1,"652":1,"653":1,"735":1,"812":1,"816":1,"839":1,"843":1,"871":1,"875":1,"903":1,"907":1,"938":1,"942":1,"972":1,"976":1,"1006":1,"1010":1,"1040":1,"1044":1,"1074":1,"1078":1,"1108":1,"1112":1,"1142":1,"1146":1,"1176":1,"1180":1,"1229":1,"1233":1,"1609":5,"2195":1,"2207":2,"2379":1}}],["buffer",{"0":{"720":1,"1301":1,"1609":1,"1947":1,"2286":1},"2":{"39":1,"93":1,"114":1,"191":1,"199":1,"222":1,"249":3,"701":3,"719":3,"720":8,"780":1,"783":1,"792":1,"795":1,"1263":1,"1276":2,"1280":1,"1281":1,"1299":2,"1301":3,"1488":1,"1525":4,"1532":1,"1533":6,"1609":2,"1621":1,"1662":3,"1798":1,"1803":2,"1812":1,"1815":2,"1817":1,"1818":1,"1820":1,"1822":1,"1823":1,"1825":1,"1826":1,"1828":1,"1829":1,"1831":1,"1832":1,"1834":1,"1947":7,"1952":3,"1953":2,"1954":16,"1986":1,"2057":1,"2058":1,"2059":1,"2062":1,"2064":1,"2206":1,"2277":10,"2286":7,"2289":1,"2290":17,"2362":1,"2363":1,"2364":1,"2367":1,"2754":1,"2756":10,"2757":2,"2949":1}}],["bundled",{"2":{"2403":1}}],["bundle",{"2":{"2259":1,"2601":3,"2620":1}}],["bunch",{"2":{"254":1,"1337":1,"1416":1,"1470":1,"1471":1,"1472":1,"2466":1,"2671":1,"2893":1,"2897":1,"2932":1}}],["buzz",{"2":{"1680":3,"1681":12,"1686":7,"2276":1}}],["buzzer",{"2":{"1475":1}}],["burst",{"2":{"1983":1}}],["burnout",{"2":{"2731":1}}],["burns",{"2":{"2425":1}}],["burn",{"2":{"1365":1,"1949":2,"2288":1}}],["burden",{"2":{"201":1,"2728":1}}],["buy",{"2":{"684":1,"1319":1}}],["bumblebee",{"2":{"277":1}}],["bump",{"2":{"76":1,"114":2,"160":1,"236":1,"285":1,"339":2,"422":2,"1686":3}}],["buspirate",{"2":{"2494":1}}],["bus",{"0":{"2494":1},"1":{"2495":1},"2":{"175":2,"266":1,"277":1,"797":1,"2494":2,"2495":1,"2848":1}}],["busywait",{"0":{"2040":1},"2":{"2037":1,"2039":1,"2040":2,"2875":2}}],["busy",{"0":{"1723":1},"1":{"1724":1},"2":{"175":1,"768":1,"1550":1,"1724":1,"1729":1,"1730":1,"1732":1}}],["business",{"2":{"143":4}}],["bulk",{"2":{"166":1,"2310":1,"2393":1}}],["bullseye",{"2":{"114":1}}],["bugging",{"2":{"2586":1}}],["buggy",{"2":{"317":1,"1493":1}}],["bug17281",{"2":{"199":1}}],["bugfix",{"2":{"191":1,"210":1,"236":1,"266":1,"294":1,"333":1,"402":1,"412":3}}],["bugfixes",{"2":{"43":2,"196":1,"402":1,"406":2,"407":2,"2836":1}}],["bugs",{"0":{"621":1},"2":{"114":1,"134":1,"149":1,"160":1,"175":2,"191":1,"199":1,"210":1,"222":1,"236":2,"249":1,"266":1,"277":1,"285":1,"294":1,"308":1,"317":1,"328":1,"333":1,"339":1,"540":1,"1777":3,"2735":1,"2747":1}}],["bug",{"0":{"1339":1},"2":{"62":1,"73":1,"149":1,"160":2,"236":1,"381":1,"398":1,"542":1,"607":1,"613":2,"617":1,"621":1,"2481":1,"2498":1,"2628":3,"2674":1,"2950":1}}],["butterstick",{"2":{"143":2}}],["button",{"0":{"1751":2,"1753":2,"2016":1,"2020":1,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2032":1,"2033":1,"2035":1,"2048":1,"2548":1},"1":{"1752":2,"1754":2,"2017":1,"2018":1,"2019":1,"2020":1,"2021":1,"2022":2,"2023":1,"2024":2,"2025":1,"2026":2,"2027":1,"2028":2,"2029":1,"2030":2,"2031":2,"2032":1,"2033":1,"2034":2,"2035":1,"2036":2},"2":{"39":1,"63":1,"134":1,"172":1,"174":1,"175":3,"231":5,"394":1,"396":1,"600":2,"601":2,"626":2,"684":2,"686":2,"1313":1,"1348":1,"1365":1,"1446":3,"1472":1,"1493":1,"1589":1,"1661":1,"1740":2,"1744":64,"1747":2,"1751":1,"1752":2,"1753":1,"1754":2,"1933":16,"1941":2,"1971":6,"1988":2,"1990":4,"1994":1,"1999":1,"2016":1,"2017":1,"2018":64,"2020":1,"2021":1,"2022":1,"2023":1,"2024":1,"2025":1,"2026":1,"2027":1,"2028":1,"2029":1,"2030":1,"2031":1,"2032":1,"2033":1,"2034":1,"2035":1,"2036":1,"2048":5,"2273":1,"2298":2,"2387":3,"2389":1,"2392":1,"2394":1,"2395":3,"2397":1,"2399":3,"2401":3,"2402":1,"2403":1,"2404":3,"2406":2,"2408":2,"2410":4,"2432":1,"2433":3,"2532":64,"2540":16,"2548":65,"2579":2,"2612":1,"2615":1,"2659":2,"2669":1,"2674":2,"2679":1,"2689":1,"2795":1,"2852":1,"2941":1}}],["buttons",{"0":{"2049":1},"2":{"39":1,"74":1,"114":1,"134":4,"149":1,"174":1,"210":1,"1639":1,"1738":1,"1740":1,"1747":1,"1930":1,"1974":2,"1988":2,"1990":1,"1992":3,"1999":1,"2014":1,"2016":1,"2048":4,"2049":2}}],["but",{"0":{"1340":1,"1460":1},"2":{"39":1,"40":1,"44":1,"99":1,"100":1,"120":1,"124":1,"125":2,"153":1,"156":1,"160":1,"169":2,"185":1,"189":1,"194":1,"213":1,"233":1,"251":1,"262":1,"273":2,"279":1,"283":2,"320":1,"383":1,"396":1,"398":1,"403":1,"414":1,"417":1,"429":1,"430":1,"436":1,"491":1,"505":1,"512":2,"517":1,"528":1,"530":1,"531":1,"532":1,"533":1,"538":1,"558":1,"572":1,"574":1,"575":1,"588":1,"589":1,"591":1,"596":1,"599":1,"609":1,"610":1,"613":1,"626":1,"633":1,"637":2,"683":1,"686":1,"701":1,"702":1,"749":1,"750":1,"752":1,"753":1,"754":1,"755":1,"805":1,"831":1,"861":1,"863":1,"893":1,"926":1,"928":1,"960":1,"962":1,"994":1,"996":1,"1028":1,"1030":1,"1062":1,"1064":1,"1096":1,"1098":1,"1130":1,"1132":1,"1164":1,"1166":1,"1199":1,"1208":1,"1219":1,"1266":1,"1296":1,"1298":1,"1311":4,"1322":1,"1327":2,"1338":1,"1343":1,"1349":1,"1354":1,"1361":2,"1376":1,"1378":3,"1409":1,"1410":1,"1417":1,"1422":2,"1423":1,"1427":1,"1428":2,"1434":1,"1448":2,"1450":1,"1456":1,"1457":1,"1467":1,"1470":2,"1471":2,"1480":1,"1483":2,"1487":1,"1490":3,"1496":1,"1499":4,"1503":1,"1505":1,"1526":1,"1527":1,"1533":1,"1535":1,"1537":2,"1542":1,"1549":1,"1610":1,"1614":1,"1615":1,"1642":1,"1656":1,"1661":1,"1667":1,"1739":1,"1762":1,"1774":1,"1777":1,"1784":1,"1789":1,"1791":1,"1800":1,"1802":2,"1846":1,"1908":1,"1910":1,"1912":1,"1915":1,"1934":1,"1943":1,"1954":1,"1957":1,"1964":1,"1981":1,"1984":1,"1990":1,"1999":1,"2000":1,"2016":1,"2044":1,"2082":1,"2168":1,"2170":1,"2172":1,"2175":1,"2191":2,"2194":1,"2210":1,"2222":2,"2250":1,"2259":1,"2261":1,"2265":1,"2279":1,"2290":1,"2292":1,"2293":1,"2297":1,"2300":3,"2310":3,"2317":2,"2319":1,"2320":1,"2329":1,"2331":1,"2374":1,"2375":1,"2388":1,"2391":1,"2393":2,"2400":1,"2402":1,"2405":1,"2407":1,"2409":1,"2411":1,"2417":1,"2418":2,"2421":1,"2423":2,"2427":1,"2428":1,"2429":3,"2431":1,"2432":1,"2462":1,"2464":1,"2466":2,"2470":1,"2478":1,"2496":1,"2499":1,"2501":1,"2503":1,"2506":1,"2517":1,"2522":2,"2553":1,"2559":1,"2563":1,"2564":1,"2567":4,"2568":2,"2572":1,"2573":1,"2575":1,"2590":2,"2617":1,"2626":2,"2635":1,"2637":1,"2638":1,"2639":2,"2652":1,"2653":1,"2667":3,"2674":2,"2678":2,"2679":1,"2680":1,"2690":1,"2691":1,"2694":1,"2700":1,"2705":1,"2707":1,"2709":1,"2720":1,"2728":3,"2730":1,"2732":1,"2745":2,"2751":1,"2757":1,"2782":1,"2787":1,"2790":1,"2805":1,"2821":1,"2835":1,"2869":2,"2887":1,"2889":3,"2890":1,"2891":1,"2907":1,"2909":1,"2912":1,"2914":2,"2919":1,"2921":1,"2930":1,"2931":1,"2932":1,"2934":1,"2935":2,"2937":1,"2938":1,"2940":1,"2941":1,"2942":1,"2944":1,"2949":1,"2950":2}}],["builtin",{"2":{"647":1,"761":2,"1332":2,"1479":1,"2298":1}}],["built",{"0":{"1337":1,"2255":1},"1":{"2256":1,"2257":1,"2258":1,"2259":1,"2260":1},"2":{"23":1,"39":1,"175":1,"228":1,"399":1,"461":2,"491":1,"647":1,"689":1,"715":1,"1205":1,"1410":1,"1485":1,"1493":1,"1633":1,"1850":1,"1983":1,"2088":1,"2273":1,"2291":1,"2331":2,"2392":1,"2414":1,"2417":1,"2439":1,"2579":1,"2596":1,"2598":1,"2610":1,"2611":1,"2710":1,"2753":1,"2759":1,"2796":1}}],["buildable",{"2":{"2450":1,"2453":1}}],["builder",{"2":{"450":1,"2422":1,"2423":1,"2432":2}}],["builddefs",{"2":{"149":1,"285":1}}],["building",{"0":{"394":1,"1435":1,"2582":1,"2598":1,"2795":1},"1":{"1436":1,"2583":1,"2584":1,"2585":1,"2586":1,"2587":1,"2588":1,"2599":1,"2600":1,"2601":1,"2602":1,"2603":1,"2604":1,"2605":1,"2606":1,"2607":1,"2608":1,"2609":1,"2610":1},"2":{"114":2,"133":1,"134":1,"145":1,"199":1,"201":1,"224":1,"233":1,"367":1,"393":1,"425":1,"429":1,"572":1,"574":2,"595":1,"613":1,"1311":1,"1314":1,"1332":1,"1335":1,"2375":1,"2384":2,"2436":1,"2561":1,"2568":1,"2580":1,"2582":1,"2591":1,"2594":1,"2630":1,"2663":1,"2756":2}}],["builds",{"2":{"18":1,"39":1,"94":1,"114":3,"130":1,"134":4,"149":2,"153":1,"160":3,"191":1,"198":1,"220":1,"222":3,"241":1,"253":1,"270":1,"273":1,"281":1,"288":2,"452":3,"453":3,"455":1,"1343":1,"1472":1,"1626":1,"2417":2,"2596":1,"2597":1,"2633":1,"2635":1,"2663":1,"2674":1,"2696":1,"2729":2,"2796":1,"2844":1}}],["build",{"0":{"13":1,"55":1,"141":1,"388":1,"572":1,"1311":1,"1314":1,"1468":1,"1627":1,"2422":1,"2583":1,"2587":1,"2595":1,"2596":1,"2620":1,"2629":1,"2655":1,"2663":1,"2724":1},"1":{"1312":1,"1315":1,"1316":1,"1317":1,"1318":1,"1319":1,"1320":1,"2621":1,"2622":1,"2623":1,"2624":1,"2625":1,"2626":1,"2627":1},"2":{"13":1,"55":3,"65":1,"70":1,"73":1,"92":2,"112":3,"114":6,"118":1,"126":1,"132":1,"133":1,"134":3,"149":7,"160":2,"173":2,"175":4,"179":1,"185":1,"191":2,"199":6,"210":1,"212":2,"215":1,"217":1,"222":2,"228":1,"234":3,"236":1,"249":1,"262":1,"266":23,"277":2,"279":1,"293":5,"294":1,"304":1,"305":5,"314":5,"317":1,"354":1,"367":2,"388":1,"393":6,"394":1,"422":1,"429":3,"433":1,"435":1,"446":1,"448":1,"449":1,"450":1,"452":4,"453":4,"454":2,"455":5,"555":1,"575":1,"597":1,"599":1,"673":3,"684":3,"720":1,"1313":1,"1314":1,"1365":2,"1366":1,"1376":1,"1388":1,"1390":1,"1435":1,"1436":1,"1463":1,"1464":1,"1468":1,"1627":2,"1630":2,"1631":1,"1632":1,"1633":2,"1681":1,"2326":1,"2382":3,"2384":9,"2403":2,"2416":1,"2417":3,"2425":1,"2432":1,"2436":2,"2453":1,"2454":1,"2455":1,"2463":1,"2501":1,"2564":2,"2568":1,"2579":1,"2580":1,"2582":1,"2583":1,"2584":1,"2587":3,"2590":4,"2591":1,"2595":2,"2596":2,"2597":2,"2598":3,"2599":1,"2605":1,"2606":1,"2607":6,"2608":1,"2609":4,"2610":2,"2616":1,"2618":2,"2626":1,"2629":6,"2632":1,"2653":1,"2655":1,"2663":2,"2664":1,"2665":1,"2674":4,"2714":1,"2728":1,"2794":1,"2795":2,"2854":1,"2905":1,"2945":1,"2947":1}}],["bfo",{"2":{"35":1}}],["bidirectional",{"2":{"2054":1}}],["bilateral",{"2":{"294":1}}],["bioses",{"2":{"575":1}}],["bios",{"0":{"1376":1},"2":{"263":1,"1366":1,"1370":1,"1376":1}}],["bioi",{"2":{"222":4,"236":1}}],["biacco42",{"2":{"143":3,"149":2}}],["bit|status",{"2":{"2558":1}}],["bitmap",{"2":{"1953":1}}],["bitmask",{"2":{"285":1,"1378":2,"1432":1,"1771":1,"1772":1,"1773":1,"1781":1,"1846":1,"2034":1,"2036":1,"2082":1,"2776":1}}],["bitfields",{"2":{"2871":1,"2878":1}}],["bitfield",{"2":{"1782":1,"1794":1,"2871":1,"2878":1}}],["bitwise",{"2":{"766":1,"1378":2,"1422":1,"1538":1,"1953":1}}],["bits",{"2":{"382":1,"766":1,"1378":1,"1417":2,"1423":4,"1428":6,"1538":3,"1539":1,"1740":1,"1742":1,"1847":4,"1990":2,"2083":4,"2295":4,"2298":2,"2300":2,"2466":1,"2503":2,"2557":2,"2558":1,"2573":3,"2768":6}}],["bitbanging",{"2":{"1196":1,"1199":1}}],["bitbang",{"0":{"1193":1,"1290":1},"1":{"1194":1,"1195":1},"2":{"249":1,"1192":1,"1193":3,"1194":1,"1195":3,"1196":1,"1207":1,"1289":1,"1290":1,"1295":2,"2179":1,"2880":2,"2883":3}}],["bit",{"0":{"44":1,"1394":1},"2":{"44":2,"63":1,"114":1,"130":1,"134":1,"181":1,"191":2,"199":2,"222":1,"285":1,"308":1,"339":1,"690":1,"701":4,"719":2,"720":1,"766":4,"774":1,"777":1,"780":1,"783":1,"785":1,"786":1,"788":1,"789":1,"791":1,"792":1,"794":1,"795":1,"798":1,"803":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1192":1,"1193":1,"1217":1,"1252":1,"1285":3,"1286":3,"1290":1,"1295":2,"1343":2,"1368":1,"1378":5,"1380":1,"1389":1,"1391":3,"1413":1,"1417":2,"1418":1,"1423":3,"1428":2,"1493":1,"1517":1,"1523":1,"1532":4,"1538":2,"1539":1,"1600":2,"1657":1,"1697":1,"1720":2,"1722":2,"1740":2,"1747":1,"1757":1,"1779":6,"1781":2,"1788":12,"1794":1,"1947":2,"1990":2,"1994":1,"2043":4,"2074":1,"2238":1,"2240":1,"2242":1,"2272":2,"2286":2,"2296":2,"2318":2,"2466":1,"2535":1,"2557":1,"2558":1,"2561":6,"2562":2,"2573":3,"2575":1,"2612":1,"2617":1,"2622":2,"2651":1,"2689":1,"2713":1,"2714":1,"2756":1,"2765":1,"2772":1,"2773":1,"2776":8,"2780":1,"2802":1,"2803":1,"2902":1,"2924":1,"2929":12,"2942":1,"2949":1}}],["bigram",{"2":{"2070":5}}],["bigrams",{"2":{"2070":2}}],["bigseries",{"2":{"143":8}}],["bigswitch",{"2":{"33":2,"266":1}}],["big",{"2":{"94":2,"411":1,"529":1,"617":1,"788":1,"794":1,"2418":1,"2758":1}}],["bigger",{"2":{"36":1,"574":1,"2466":1,"2586":1,"2950":1}}],["bin|hex",{"2":{"430":1}}],["binding",{"2":{"2418":1}}],["bindings",{"2":{"1522":1,"2522":1,"2728":2}}],["bind",{"2":{"308":1,"339":1,"1788":1,"2929":1}}],["binary",{"0":{"1537":1},"1":{"1538":1,"1539":1},"2":{"284":1,"285":1,"366":1,"382":1,"430":1,"581":2,"584":1,"586":2,"1381":1,"2417":1,"2458":1,"2506":1,"2508":1,"2728":1,"2733":1,"2734":1,"2735":1,"2736":1,"2739":1,"2741":2,"2744":2,"2746":1,"2749":1,"2750":1,"2854":1,"2950":1}}],["binaries",{"0":{"179":1},"2":{"93":1,"179":1,"191":1,"199":1,"578":1,"1326":1,"2401":1,"2465":2,"2674":1,"2710":1}}],["binepad",{"2":{"218":2,"222":1,"328":1}}],["bin",{"2":{"13":1,"94":2,"95":2,"133":1,"134":1,"394":1,"430":1,"446":1,"572":1,"2384":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2417":1,"2508":2,"2589":1,"2607":1,"2614":2,"2628":2,"2669":1,"2674":3,"2854":1}}],["bh",{"2":{"27":3,"159":6,"160":3}}],["baart",{"2":{"2643":1}}],["bay",{"2":{"2427":1}}],["ball",{"2":{"1980":1,"2920":1}}],["balance",{"2":{"222":1}}],["baud",{"0":{"1271":1},"1":{"1272":1},"2":{"1207":12,"1272":2,"2298":1}}],["baudrate",{"0":{"1207":1,"1300":1},"2":{"93":1,"1207":4,"1299":1,"1300":2}}],["baking",{"2":{"583":1}}],["bakingpy",{"2":{"574":1,"2418":1}}],["bakeneko",{"2":{"222":1}}],["bakeneko80",{"2":{"143":2}}],["bakeneko60",{"2":{"143":2}}],["bakeneko65",{"2":{"102":3,"114":1,"143":4}}],["baz",{"2":{"512":1}}],["bare",{"2":{"2425":1,"2709":1,"2728":2,"2739":1}}],["barring",{"2":{"2014":1}}],["barrel",{"0":{"1651":1,"1652":1},"2":{"1639":1,"1645":2,"1651":1,"1652":1}}],["bar",{"2":{"512":2,"518":1,"534":8,"535":2,"618":1,"629":2,"1788":1,"2293":1,"2301":12,"2331":1,"2929":1}}],["barleycorn",{"2":{"143":2}}],["bamfk",{"2":{"266":1}}],["bamfk1",{"2":{"210":1}}],["babyv",{"2":{"236":1}}],["badly",{"2":{"610":1}}],["bad",{"2":{"149":1,"294":1,"512":1,"517":1,"533":1,"535":1,"1440":1,"1535":1,"2427":2,"2434":1,"2463":1,"2728":1}}],["battery",{"0":{"741":1,"1577":1,"1582":1,"1585":1,"1587":1,"2858":1},"1":{"742":1,"743":1,"744":1,"745":1,"1578":1,"1579":1,"1580":1,"1581":1,"1582":1,"1583":2,"1584":1,"1585":1,"1586":1,"1587":1,"1588":1},"2":{"308":3,"317":1,"690":1,"741":1,"742":1,"743":1,"744":6,"745":2,"1577":1,"1579":2,"1580":1,"1582":1,"1583":1,"1585":1,"1586":1,"1587":1,"1588":1,"2278":1,"2858":3}}],["bat43",{"2":{"143":4}}],["batch",{"2":{"133":1,"408":1,"411":1,"412":1,"1913":2,"1916":2,"2173":2,"2176":2}}],["ban",{"2":{"2747":1}}],["bang",{"2":{"2329":3}}],["banging",{"2":{"1193":1,"1290":1}}],["banger",{"2":{"143":2,"149":1}}],["bandwidth",{"2":{"2707":1}}],["band",{"2":{"1849":10,"2085":20,"2894":6}}],["bandana",{"2":{"222":1}}],["bandominedoni",{"2":{"134":1}}],["bank",{"2":{"39":4,"191":1,"2685":8}}],["basing",{"2":{"2429":1}}],["basis",{"0":{"2419":1},"2":{"1333":1,"1846":1,"2082":1,"2627":1}}],["basics",{"0":{"1443":1},"1":{"1444":1},"2":{"2643":2,"2905":1,"2906":1}}],["basically",{"2":{"297":1,"645":1,"1954":1,"2290":1,"2730":1,"2923":1}}],["basic",{"0":{"704":1,"717":1,"726":1,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1216":1,"1285":1,"1416":1,"1418":1,"1477":1,"1544":1,"1579":1,"1699":1,"1770":1,"1799":1,"1921":1,"1949":1,"2056":1,"2221":1,"2288":1,"2327":1,"2412":1,"2432":1,"2509":1,"2522":1},"1":{"727":1,"803":1,"829":1,"858":1,"859":1,"860":1,"861":1,"890":1,"891":1,"922":1,"923":1,"924":1,"925":1,"926":1,"957":1,"958":1,"959":1,"960":1,"991":1,"992":1,"993":1,"994":1,"1025":1,"1026":1,"1027":1,"1028":1,"1059":1,"1060":1,"1061":1,"1062":1,"1093":1,"1094":1,"1095":1,"1096":1,"1127":1,"1128":1,"1129":1,"1130":1,"1161":1,"1162":1,"1163":1,"1164":1,"1217":1,"1286":1,"1287":1,"1288":1,"1417":1,"1418":1,"1478":1,"1479":1,"1545":1,"1546":1,"1800":1,"1801":1,"1802":1,"1803":1,"1950":1,"1951":1,"2328":1,"2413":1,"2414":1,"2415":1,"2510":1,"2511":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1},"2":{"133":1,"134":1,"210":1,"222":1,"231":4,"248":1,"249":2,"369":1,"383":1,"437":1,"440":1,"450":1,"469":1,"599":1,"613":1,"619":1,"666":1,"681":1,"716":1,"720":1,"723":1,"761":1,"1356":1,"1419":1,"1423":1,"1444":1,"1477":2,"1480":1,"1532":1,"1533":1,"1627":1,"1665":1,"1765":1,"1774":2,"1776":1,"1777":2,"1788":1,"1795":2,"1919":2,"1921":2,"2054":1,"2219":1,"2222":1,"2297":1,"2309":1,"2318":2,"2329":1,"2411":1,"2423":1,"2432":1,"2478":1,"2509":1,"2522":1,"2565":1,"2573":1,"2575":1,"2586":1,"2592":1,"2619":1,"2644":1,"2728":2,"2746":1,"2751":2,"2753":1,"2765":1,"2772":1,"2820":1,"2856":1,"2906":1,"2929":1,"2934":2,"2949":1}}],["bashcompinit",{"2":{"509":3}}],["bashrc",{"2":{"509":1,"2628":2}}],["bash",{"2":{"507":1,"2628":2,"2667":1,"2669":1}}],["bastard",{"2":{"249":1}}],["bastardkb",{"2":{"114":1,"191":2,"266":1,"277":1,"311":50,"317":8,"2706":1}}],["base64",{"0":{"2246":1},"2":{"2790":2}}],["bases",{"2":{"613":2}}],["base",{"0":{"2563":1},"2":{"125":1,"169":1,"178":1,"189":1,"205":2,"209":1,"226":1,"270":2,"294":1,"311":1,"575":1,"591":1,"748":1,"749":4,"756":1,"1407":1,"1422":1,"1425":1,"1426":4,"1533":3,"1545":1,"1613":1,"1619":1,"1638":1,"1790":2,"1791":2,"1936":4,"2453":1,"2535":2,"2558":3,"2562":1,"2563":1,"2564":1,"2592":1,"2634":2,"2640":2,"2653":1,"2701":1,"2703":1,"2707":1,"2714":1,"2726":1,"2729":1}}],["based",{"0":{"15":1,"1474":1,"1476":1,"2742":1},"1":{"1475":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1},"2":{"15":1,"39":1,"40":1,"65":2,"74":1,"93":1,"113":1,"114":2,"123":1,"153":1,"160":1,"175":1,"178":1,"179":1,"187":1,"199":1,"221":1,"235":1,"236":1,"248":1,"263":2,"356":1,"411":1,"433":1,"444":1,"445":1,"450":1,"495":1,"567":1,"610":1,"639":6,"715":1,"716":1,"746":2,"754":1,"759":1,"1196":1,"1199":1,"1296":1,"1320":1,"1325":1,"1392":1,"1393":1,"1395":1,"1410":10,"1417":1,"1428":7,"1430":1,"1471":1,"1472":2,"1474":1,"1477":1,"1683":1,"1738":1,"1743":1,"1798":1,"1846":1,"1851":1,"1939":1,"1943":1,"1953":1,"1954":1,"1956":1,"1961":1,"1970":1,"1980":1,"1994":2,"2011":1,"2075":1,"2082":1,"2090":1,"2096":1,"2200":2,"2203":1,"2212":1,"2278":1,"2290":1,"2303":1,"2308":1,"2331":1,"2374":2,"2375":1,"2379":1,"2388":2,"2391":1,"2393":1,"2400":1,"2418":1,"2432":1,"2442":1,"2446":1,"2482":1,"2501":1,"2509":1,"2567":26,"2568":1,"2580":1,"2590":1,"2595":1,"2600":1,"2616":1,"2626":1,"2675":2,"2684":1,"2688":1,"2704":2,"2706":1,"2733":1,"2741":1,"2753":1,"2756":4,"2757":4,"2765":1,"2770":1,"2772":1,"2790":1,"2843":1,"2853":1,"2903":1,"2927":1}}],["backtick",{"2":{"1673":1,"1675":1}}],["backticks",{"2":{"354":1}}],["backlit",{"2":{"1541":1}}],["backlightx",{"2":{"2455":1}}],["backlighting",{"0":{"1541":1,"2527":1},"1":{"1542":1,"1543":1,"1544":1,"1545":1,"1546":1,"1547":1,"1548":1,"1549":1,"1550":1,"1551":1,"1552":1,"1553":1,"1554":1,"1555":1,"1556":1,"1557":1,"1558":1,"1559":1,"1560":1,"1561":1,"1562":1,"1563":1,"1564":1,"1565":1,"1566":1,"1567":1,"1568":1,"1569":1,"1570":1,"1571":1,"1572":1,"1573":1,"1574":1,"1575":1,"1576":1},"2":{"1542":1,"1844":1,"2309":1,"2418":1,"2455":1,"2527":1,"2789":1}}],["backlights",{"2":{"648":1,"1664":1}}],["backlight|led",{"2":{"191":1}}],["backlight",{"0":{"7":1,"47":2,"49":1,"1546":1,"1560":1,"1561":1,"1562":1,"1563":1,"1564":1,"1565":1,"1566":1,"1568":1,"1570":1,"1572":1,"1573":1,"1574":1,"1575":1,"2805":1,"2857":1},"1":{"1567":1,"1569":1,"1571":1,"1576":1},"2":{"22":1,"39":1,"40":1,"47":4,"49":4,"63":1,"70":1,"73":1,"93":1,"94":1,"110":1,"111":1,"112":4,"114":1,"134":4,"149":1,"160":1,"172":1,"175":4,"198":1,"199":6,"210":4,"231":3,"236":2,"249":3,"266":3,"294":1,"561":7,"1311":2,"1392":1,"1393":1,"1543":14,"1544":21,"1545":4,"1546":10,"1547":1,"1548":1,"1550":1,"1551":5,"1553":1,"1554":1,"1556":4,"1557":1,"1558":3,"1560":1,"1561":1,"1562":1,"1563":1,"1564":1,"1565":1,"1566":1,"1567":1,"1568":1,"1569":2,"1570":1,"1571":1,"1572":1,"1573":1,"1574":1,"1575":1,"1576":1,"1844":1,"1847":1,"2083":1,"2418":3,"2419":3,"2455":3,"2527":14,"2692":1,"2728":2,"2757":11,"2805":1,"2857":9,"2907":1,"2941":1}}],["backslash",{"2":{"1349":1,"1692":2,"1788":1,"2512":2,"2520":3,"2522":2,"2538":3,"2929":1}}],["backspaced",{"2":{"2330":1}}],["backspaces",{"2":{"1534":2,"1535":3,"1538":1,"1539":1}}],["backspace",{"0":{"1381":1},"2":{"99":1,"152":1,"222":1,"255":1,"599":1,"618":1,"1349":1,"1381":2,"1538":3,"1593":1,"1605":1,"1692":1,"1767":1,"1774":1,"2068":1,"2073":4,"2222":1,"2379":1,"2512":2,"2520":6,"2522":2,"2538":6}}],["backgrounds",{"2":{"494":1}}],["background",{"2":{"494":5,"656":1,"2757":3}}],["backup",{"2":{"447":2}}],["backing",{"0":{"2636":1},"2":{"236":1,"339":1,"753":1,"754":3,"755":3,"756":4,"2864":1}}],["backwards",{"2":{"114":1,"249":1,"262":1,"293":1,"305":1,"314":1,"316":1,"331":1,"1618":1,"2260":1,"2377":1,"2528":1}}],["backward",{"2":{"75":1,"285":1,"2068":2}}],["back",{"0":{"2473":1,"2481":1},"2":{"40":1,"55":13,"124":1,"134":1,"152":1,"393":1,"403":1,"489":1,"530":1,"588":1,"651":1,"681":1,"684":1,"1483":1,"1522":2,"1662":1,"1663":1,"1664":1,"1791":1,"1802":1,"1970":1,"2058":1,"2068":1,"2085":3,"2213":1,"2214":1,"2216":1,"2277":2,"2280":1,"2294":2,"2387":1,"2390":1,"2397":1,"2428":1,"2429":1,"2434":1,"2503":2,"2517":2,"2522":2,"2566":1,"2587":1,"2616":1,"2634":2,"2679":1,"2729":1,"2852":1,"2894":1,"2912":1,"2937":1}}],["backend",{"0":{"376":1},"2":{"39":1,"279":2,"2667":1,"2864":1}}],["backport",{"0":{"5":1},"2":{"74":1}}],["bob",{"2":{"2942":1}}],["bold",{"2":{"350":1,"617":1,"1213":1}}],["bolt",{"0":{"2295":1},"2":{"231":1,"2294":1,"2295":3,"2296":1,"2297":2,"2298":1,"2300":2,"2301":4}}],["bout",{"2":{"2079":1}}],["bouvet",{"2":{"339":1}}],["bounce",{"0":{"1409":1},"1":{"1410":1,"1411":1,"1412":1,"1413":1,"1414":1},"2":{"1409":4,"2582":1}}],["bounce75",{"2":{"222":1}}],["bound",{"2":{"236":1,"1788":1,"2901":1,"2929":1}}],["boundary",{"2":{"175":1}}],["bounds",{"2":{"114":1,"160":1,"333":3,"1954":3,"2290":3,"2447":1}}],["bounded",{"2":{"21":1,"24":1}}],["bongopad",{"2":{"311":2}}],["bonsai",{"0":{"1396":1},"2":{"173":1,"175":1,"191":1,"1389":1,"1391":3,"1396":1,"2895":1}}],["boy",{"2":{"222":1}}],["bocc",{"2":{"222":1}}],["boston",{"2":{"134":1,"222":1}}],["bodges",{"2":{"199":1}}],["bodge",{"2":{"114":1,"134":1,"149":1,"266":1}}],["box",{"2":{"114":1,"288":1,"352":1,"596":1,"2279":1,"2280":1,"2427":1,"2568":1,"2570":1,"2614":1,"2937":1}}],["boilerplate",{"2":{"114":1,"624":1,"2416":2}}],["bottom",{"2":{"100":1,"149":1,"255":1,"561":1,"610":1,"1365":1,"1400":1,"1401":1,"1408":1,"1492":1,"1533":1,"1633":1,"1641":1,"1846":1,"1849":1,"2082":1,"2085":2,"2178":1,"2269":1,"2296":1,"2317":1,"2319":1,"2425":1,"2481":1,"2612":1,"2659":1,"2726":1,"2757":6,"2778":2,"2794":1,"2845":1}}],["both",{"0":{"2577":1},"2":{"25":1,"35":1,"58":1,"70":14,"98":1,"107":1,"114":1,"134":1,"152":1,"174":1,"178":1,"188":1,"190":1,"229":1,"232":1,"233":1,"236":1,"249":1,"283":3,"366":1,"411":1,"447":1,"491":1,"494":1,"505":2,"512":1,"542":1,"564":1,"565":1,"570":1,"592":1,"599":1,"603":1,"629":1,"669":1,"690":1,"746":1,"1193":1,"1343":2,"1378":2,"1381":1,"1396":1,"1410":1,"1428":2,"1436":1,"1439":1,"1455":1,"1470":1,"1478":1,"1518":1,"1533":1,"1541":1,"1593":2,"1594":3,"1595":3,"1604":1,"1665":1,"1666":1,"1680":1,"1781":1,"1837":1,"1937":1,"1945":1,"1962":1,"1973":1,"1977":1,"1983":3,"1987":1,"1990":1,"2002":1,"2057":1,"2189":2,"2258":1,"2261":1,"2262":1,"2267":1,"2274":2,"2276":2,"2277":1,"2278":1,"2294":1,"2301":2,"2320":1,"2325":1,"2330":1,"2331":1,"2374":1,"2377":1,"2428":3,"2434":2,"2450":2,"2453":2,"2496":1,"2508":1,"2520":6,"2522":1,"2538":6,"2568":1,"2574":1,"2599":1,"2612":2,"2619":1,"2632":1,"2634":1,"2637":1,"2650":1,"2702":1,"2704":1,"2707":1,"2736":2,"2756":1,"2757":1,"2782":4,"2792":1,"2842":1,"2861":2,"2865":1,"2889":1,"2894":1,"2908":1,"2920":1,"2923":1,"2924":2,"2925":1,"2927":1,"2950":1}}],["boardinit",{"2":{"2687":1,"2728":2}}],["board",{"0":{"173":1,"187":1,"2687":1,"2703":1},"2":{"40":5,"76":1,"77":2,"113":1,"114":3,"134":1,"160":3,"166":1,"173":3,"175":1,"182":1,"191":3,"199":1,"210":1,"222":2,"233":1,"236":2,"248":1,"266":2,"277":1,"283":1,"285":1,"306":1,"307":1,"308":6,"315":1,"317":12,"333":1,"397":2,"554":1,"561":2,"565":1,"588":1,"646":1,"648":2,"651":1,"685":1,"686":2,"687":1,"717":1,"718":1,"728":1,"756":1,"768":2,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1200":1,"1218":1,"1248":2,"1269":1,"1299":1,"1303":1,"1348":5,"1372":1,"1391":2,"1392":1,"1396":1,"1399":1,"1403":1,"1407":2,"1417":1,"1465":1,"1471":1,"1479":1,"1488":1,"1492":1,"1551":1,"1556":1,"1557":1,"1846":1,"1953":1,"1959":1,"1980":1,"1987":1,"2082":1,"2261":2,"2265":1,"2275":1,"2278":2,"2328":1,"2374":1,"2375":1,"2387":1,"2421":1,"2424":4,"2425":1,"2429":1,"2430":2,"2433":1,"2460":1,"2483":1,"2494":1,"2497":3,"2501":1,"2566":2,"2567":2,"2568":1,"2569":5,"2589":1,"2612":2,"2616":2,"2674":1,"2684":4,"2685":1,"2686":1,"2687":3,"2691":1,"2694":2,"2700":1,"2702":2,"2703":3,"2707":1,"2710":1,"2714":5,"2726":2,"2727":1,"2728":16,"2729":1,"2758":1,"2786":3,"2787":1,"2835":1,"2844":1,"2845":1,"2853":7,"2894":1,"2912":1,"2927":1}}],["boardsource",{"2":{"191":4,"249":1,"277":2,"308":1,"2702":1}}],["boards",{"0":{"33":1,"235":1,"1474":1,"1476":1,"1843":1,"2280":1,"2424":1,"2701":1},"1":{"1475":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1,"2702":1,"2703":1},"2":{"8":1,"18":1,"35":1,"43":1,"57":1,"72":1,"80":1,"93":1,"108":1,"114":7,"131":1,"134":3,"149":25,"153":2,"160":3,"169":1,"173":1,"175":4,"178":1,"187":3,"199":2,"209":1,"210":4,"222":8,"235":1,"249":1,"263":1,"266":1,"277":1,"279":2,"283":1,"308":4,"317":9,"333":1,"555":1,"564":1,"568":3,"574":1,"686":1,"715":2,"716":1,"717":1,"723":1,"1196":1,"1199":1,"1291":1,"1312":1,"1319":1,"1392":1,"1393":1,"1470":1,"1471":3,"1472":4,"1474":1,"1492":1,"1589":1,"1591":1,"1739":1,"1843":1,"2091":1,"2265":1,"2279":3,"2280":1,"2374":2,"2389":2,"2392":1,"2396":1,"2399":1,"2401":1,"2402":1,"2404":1,"2418":1,"2424":1,"2483":1,"2501":1,"2566":2,"2567":32,"2568":1,"2569":6,"2579":2,"2675":1,"2684":1,"2700":1,"2701":2,"2702":2,"2706":1,"2707":1,"2712":1,"2713":1,"2728":4,"2729":1,"2741":1,"2753":1,"2852":1,"2895":1}}],["books",{"2":{"2942":1}}],["boost",{"2":{"1678":1,"2729":1}}],["boot1",{"2":{"2677":1}}],["bootstrap",{"2":{"2714":1}}],["bootstrapper",{"2":{"426":1,"488":1}}],["bootsel",{"2":{"2410":2}}],["booted",{"2":{"1957":1}}],["bootable",{"2":{"754":1}}],["booting",{"2":{"754":1,"1948":1,"2558":1}}],["boot\`",{"2":{"684":1}}],["bootlader",{"2":{"236":1}}],["bootloadhid",{"0":{"2396":1,"2500":1},"1":{"2397":1,"2398":1},"2":{"114":1,"175":1,"573":1,"689":1,"2396":6,"2417":1}}],["bootloader>",{"2":{"430":2,"2508":1}}],["bootloaders",{"0":{"689":1},"2":{"39":1,"149":1,"160":1,"199":1,"294":1,"430":3,"434":1,"686":1,"754":1,"1348":1,"2384":1,"2388":2,"2417":1,"2482":1,"2498":2,"2728":1}}],["bootloader",{"0":{"141":1,"685":1,"1317":1,"1318":1,"2388":1,"2497":1,"2502":1,"2505":1,"2612":1,"2682":1,"2705":1,"2788":1,"2807":1,"2876":1},"1":{"686":1,"687":1,"688":1,"689":1,"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2405":1,"2406":1,"2407":1,"2408":1,"2409":1,"2410":1,"2498":1,"2499":1,"2500":1,"2501":1,"2503":1,"2506":1,"2507":1,"2508":1},"2":{"39":4,"40":1,"65":1,"70":1,"74":1,"93":2,"111":1,"112":1,"114":3,"141":3,"149":8,"175":4,"191":8,"199":6,"222":1,"230":2,"231":1,"236":1,"240":3,"339":1,"430":4,"434":1,"548":1,"568":3,"573":1,"651":4,"652":4,"653":3,"654":2,"684":2,"685":3,"686":6,"687":2,"688":2,"689":9,"1316":1,"1318":2,"1348":2,"1365":1,"1371":1,"1472":7,"1589":3,"1591":2,"1625":4,"1681":2,"1948":5,"2273":10,"2388":1,"2389":6,"2390":8,"2392":5,"2394":6,"2395":5,"2396":5,"2397":14,"2399":5,"2400":1,"2401":6,"2402":4,"2403":3,"2404":5,"2405":1,"2406":7,"2408":7,"2410":7,"2482":6,"2490":1,"2496":1,"2497":1,"2499":4,"2500":1,"2501":2,"2502":2,"2503":2,"2504":3,"2505":5,"2506":1,"2508":2,"2523":4,"2612":1,"2616":6,"2678":2,"2682":1,"2683":3,"2685":9,"2691":2,"2700":5,"2705":2,"2728":2,"2742":1,"2752":4,"2788":2,"2844":1,"2852":1,"2853":2,"2876":3}}],["boot20",{"2":{"2508":1}}],["boot2",{"2":{"236":1}}],["bootmapper",{"2":{"235":1,"1291":1,"2500":1,"2612":1}}],["bootmagic",{"0":{"87":1,"103":1,"104":1,"126":1,"127":1,"245":2,"1589":1,"1591":1,"2808":1,"2860":1},"1":{"88":1,"104":1,"127":1,"1590":1,"1591":1,"1592":1},"2":{"70":1,"87":8,"88":8,"93":2,"94":1,"103":3,"104":8,"111":1,"114":2,"126":3,"127":8,"134":1,"191":3,"199":3,"210":1,"245":4,"249":2,"333":2,"574":3,"651":1,"684":1,"686":3,"1320":2,"1348":1,"1365":1,"1417":1,"1589":5,"1590":3,"1591":6,"1592":1,"1623":1,"2052":1,"2390":1,"2397":1,"2418":1,"2520":1,"2728":1,"2789":1,"2860":3,"2880":2,"2908":1}}],["boot",{"0":{"156":1,"182":1,"2700":1},"2":{"149":1,"156":2,"175":2,"182":2,"191":1,"199":1,"266":1,"277":1,"303":1,"338":1,"379":1,"574":1,"575":2,"589":2,"686":3,"754":1,"1365":1,"1485":1,"1486":1,"1948":2,"2389":1,"2392":1,"2394":1,"2395":2,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":2,"2408":2,"2410":2,"2523":1,"2620":1,"2685":1,"2700":1,"2702":1,"2728":1,"2752":1,"2788":1}}],["boot0",{"2":{"39":4,"2399":3,"2401":3,"2404":3}}],["boolean",{"0":{"90":1,"105":1},"2":{"93":1,"114":1,"134":1,"214":1,"647":1,"1381":3,"1417":1,"1452":1,"1840":1,"2854":11,"2856":4,"2857":4,"2860":1,"2861":4,"2863":1,"2866":1,"2870":2,"2871":4,"2872":4,"2873":1,"2875":2,"2877":6,"2878":4,"2879":1,"2880":13,"2881":1,"2882":4,"2883":1}}],["bool",{"0":{"820":3,"822":1,"847":3,"849":1,"911":3,"913":1,"946":3,"948":1,"980":3,"982":1,"1014":3,"1016":1,"1048":3,"1050":1,"1237":3,"1239":1,"1251":2,"1281":1,"1570":1,"1575":1,"1704":2,"1708":2,"1723":1,"1725":1,"1727":1,"1809":1,"1814":1,"1815":1,"1818":1,"1819":1,"1820":1,"1823":1,"1826":1,"1829":1,"1832":1,"1863":1,"1906":1,"1908":1,"1910":1,"1912":1,"1915":1,"2029":1,"2105":1,"2166":1,"2168":1,"2170":1,"2172":1,"2175":1,"2360":1,"2364":1,"2367":1},"1":{"821":3,"823":1,"848":3,"850":1,"912":3,"914":1,"947":3,"949":1,"981":3,"983":1,"1015":3,"1017":1,"1049":3,"1051":1,"1238":3,"1240":1,"1252":2,"1253":2,"1282":1,"1571":1,"1576":1,"1705":2,"1709":2,"1724":1,"1726":1,"1728":1,"1729":1,"1810":1,"1811":1,"1816":1,"1817":1,"1821":1,"1822":1,"1824":1,"1825":1,"1827":1,"1828":1,"1830":1,"1831":1,"1833":1,"1834":1,"1864":1,"1907":1,"1909":1,"1911":1,"2030":1,"2031":1,"2106":1,"2167":1,"2169":1,"2171":1,"2361":1,"2365":1,"2366":1,"2368":1},"2":{"12":2,"36":2,"90":6,"105":8,"114":1,"125":2,"169":2,"230":1,"593":1,"624":2,"625":1,"632":3,"647":2,"652":1,"653":1,"654":4,"656":1,"701":1,"821":3,"823":1,"848":3,"850":1,"912":3,"914":1,"947":3,"949":1,"981":3,"983":1,"1015":3,"1017":1,"1049":3,"1051":1,"1238":3,"1240":1,"1252":1,"1381":2,"1417":3,"1420":1,"1431":1,"1446":2,"1447":1,"1462":1,"1472":2,"1491":1,"1517":2,"1532":1,"1535":1,"1601":2,"1605":1,"1612":6,"1613":1,"1617":2,"1618":3,"1645":4,"1657":2,"1668":2,"1689":1,"1705":2,"1709":2,"1712":1,"1726":1,"1728":1,"1743":2,"1747":1,"1779":2,"1781":3,"1795":1,"1804":1,"1837":2,"1838":1,"1839":1,"1850":3,"1924":1,"1945":1,"1946":1,"1948":4,"1954":26,"1962":1,"1989":1,"1993":2,"1994":2,"1996":1,"2005":2,"2006":1,"2008":5,"2009":3,"2013":4,"2014":1,"2069":1,"2071":1,"2077":1,"2079":2,"2088":3,"2203":1,"2254":6,"2277":2,"2290":16,"2316":1,"2317":1,"2319":1,"2381":2,"2456":2,"2729":1,"2756":1,"2757":5,"2767":1,"2912":1,"2941":34}}],["blurb",{"0":{"2464":1},"2":{"599":1}}],["bluesmirf",{"2":{"2374":1}}],["blue",{"0":{"707":1,"709":1,"735":1,"737":1,"812":1,"814":1,"820":1,"839":1,"841":1,"847":1,"871":1,"873":1,"879":1,"903":1,"905":1,"911":1,"938":1,"940":1,"946":1,"972":1,"974":1,"980":1,"1006":1,"1008":1,"1014":1,"1040":1,"1042":1,"1048":1,"1074":1,"1076":1,"1082":1,"1108":1,"1110":1,"1116":1,"1142":1,"1144":1,"1150":1,"1176":1,"1178":1,"1184":1,"1229":1,"1231":1,"1237":1,"1306":1,"1308":1},"1":{"708":1,"710":1,"736":1,"738":1,"813":1,"815":1,"821":1,"840":1,"842":1,"848":1,"872":1,"874":1,"880":1,"904":1,"906":1,"912":1,"939":1,"941":1,"947":1,"973":1,"975":1,"981":1,"1007":1,"1009":1,"1015":1,"1041":1,"1043":1,"1049":1,"1075":1,"1077":1,"1083":1,"1109":1,"1111":1,"1117":1,"1143":1,"1145":1,"1151":1,"1177":1,"1179":1,"1185":1,"1230":1,"1232":1,"1238":1,"1307":1,"1309":1},"2":{"492":1,"494":1,"708":2,"710":2,"729":1,"732":1,"736":2,"738":2,"805":1,"808":1,"813":2,"815":2,"821":2,"831":1,"834":1,"840":2,"842":2,"848":2,"863":1,"866":1,"872":2,"874":2,"880":2,"893":1,"896":1,"904":2,"906":2,"912":2,"928":1,"931":1,"939":2,"941":2,"947":2,"962":1,"965":1,"973":2,"975":2,"981":2,"996":1,"999":1,"1007":2,"1009":2,"1015":2,"1030":1,"1033":1,"1041":2,"1043":2,"1049":2,"1064":1,"1067":1,"1075":2,"1077":2,"1083":2,"1098":1,"1101":1,"1109":2,"1111":2,"1117":2,"1132":1,"1135":1,"1143":2,"1145":2,"1151":2,"1166":1,"1169":1,"1177":2,"1179":2,"1185":2,"1219":1,"1222":1,"1230":2,"1232":2,"1238":2,"1288":1,"1307":2,"1309":2,"1958":1,"2089":2,"2094":2,"2095":1,"2108":1,"2110":1,"2181":1,"2205":2,"2544":1,"2622":1}}],["bluefruit",{"2":{"209":1,"308":1,"574":1,"2374":4,"2375":6,"2376":1,"2859":1}}],["bluefruitle",{"0":{"142":1},"2":{"149":1,"209":1}}],["bluepill70",{"2":{"67":1}}],["bluepill",{"2":{"67":1,"72":1,"160":2,"175":1,"218":2,"548":1,"723":1,"2408":1,"2505":1,"2507":2,"2508":3}}],["bluetooth",{"0":{"1359":1,"2373":1,"2374":1,"2376":1,"2377":1,"2528":1,"2736":1,"2744":1,"2806":1,"2859":1},"1":{"2374":1,"2375":2,"2376":1,"2377":1},"2":{"40":2,"41":1,"70":1,"75":1,"111":1,"112":2,"133":1,"134":2,"142":1,"172":1,"175":4,"209":4,"210":1,"222":1,"285":1,"308":2,"574":1,"690":1,"2374":9,"2375":1,"2376":2,"2377":21,"2439":1,"2528":20,"2728":4,"2736":3,"2739":1,"2741":1,"2742":1,"2744":2,"2750":2,"2859":1}}],["blade",{"2":{"1849":1,"2085":2}}],["blank",{"2":{"262":1,"294":1,"521":2,"599":1,"2384":1,"2720":1}}],["black",{"2":{"494":2,"561":1,"1475":1,"1478":3,"1482":2,"1947":1,"2089":2,"2205":2,"2423":1,"2428":1,"2466":2,"2674":5,"2776":4,"2937":1}}],["blackio83",{"2":{"253":2,"266":1}}],["blackpills",{"2":{"2261":1,"2675":2}}],["blackpill",{"0":{"2675":1},"1":{"2676":1,"2677":1,"2678":1,"2679":1,"2680":1,"2681":1,"2682":1,"2683":1},"2":{"93":1,"114":1,"160":2,"175":2,"191":1,"218":2,"253":1,"548":2,"2261":1,"2273":1,"2406":1,"2675":2,"2676":1,"2683":1,"2853":1,"2895":1}}],["blackheart",{"2":{"27":3}}],["blowing",{"2":{"2428":1}}],["blow",{"2":{"2428":1}}],["blog",{"2":{"1377":1,"2572":1,"2643":2}}],["blob",{"2":{"1353":1,"2765":2,"2772":2,"2773":2,"2776":1,"2777":1,"2779":1}}],["blobs",{"2":{"276":2,"284":3,"285":1,"2749":1,"2750":1}}],["blooming",{"2":{"236":1,"2085":3,"2894":1}}],["blok",{"0":{"1394":1},"2":{"191":1,"222":1,"317":1,"1389":1,"1391":3,"2702":1,"2895":1}}],["bloat",{"2":{"114":1,"2418":1}}],["blockader",{"2":{"339":1}}],["blocked",{"2":{"1490":1}}],["blocked65",{"2":{"159":2}}],["blocker",{"2":{"222":2,"308":1}}],["blocks",{"0":{"354":1,"678":1},"1":{"679":1,"680":1},"2":{"175":2,"222":1,"231":1,"308":1,"525":1,"678":1,"755":1,"1419":1,"1949":1,"1952":1,"1953":2,"1954":1,"2289":1,"2728":1,"2765":2,"2766":1,"2772":2,"2773":1}}],["block",{"0":{"2766":1,"2767":1,"2770":1,"2771":1,"2773":1,"2774":1,"2775":1,"2776":1,"2777":1,"2778":1,"2779":1},"2":{"21":3,"24":3,"49":1,"134":1,"172":1,"175":1,"191":1,"352":1,"512":2,"593":1,"629":1,"632":1,"673":1,"754":1,"755":7,"759":2,"763":8,"1276":1,"1365":1,"1419":2,"1425":1,"1613":1,"1850":1,"1952":6,"1953":6,"2088":1,"2275":1,"2280":1,"2289":6,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2404":1,"2406":1,"2408":1,"2410":1,"2765":9,"2766":2,"2767":5,"2768":4,"2769":4,"2770":4,"2771":3,"2772":10,"2773":10,"2774":5,"2775":8,"2776":13,"2777":2,"2778":2,"2779":2,"2799":1,"2938":1}}],["bling",{"2":{"114":1}}],["blinks",{"2":{"2700":1}}],["blinked",{"2":{"2191":1}}],["blink",{"0":{"1704":1,"1708":1,"2191":1},"1":{"1705":1,"1709":1},"2":{"112":1,"565":2,"1664":1,"1705":2,"1709":2,"2191":9,"2309":1,"2679":1,"2877":1}}],["blinking",{"2":{"93":1,"160":1,"1662":1,"1701":1,"2191":3,"2877":1}}],["blindassassin111",{"2":{"27":2}}],["blend",{"2":{"308":1,"2330":1}}],["ble",{"0":{"2375":1},"2":{"40":1,"133":1,"134":2,"142":1,"2374":2,"2375":1,"2741":1}}],["bl",{"0":{"7":1},"2":{"7":1,"379":1,"430":3,"589":6,"1543":7,"2273":3,"2527":7,"2561":2,"2563":1,"2564":1}}],["brmu",{"2":{"2516":1,"2522":1}}],["brmd",{"2":{"2513":1,"2522":1}}],["brk",{"2":{"2516":1,"2522":1}}],["brtg",{"2":{"1543":1,"2527":1}}],["brushing",{"2":{"246":1}}],["brutal",{"2":{"222":2}}],["brazilian",{"2":{"2887":2}}],["brazil",{"2":{"2887":1}}],["brass",{"2":{"2425":1}}],["brackets",{"2":{"2669":1}}],["bracket",{"2":{"1692":2,"2512":2,"2522":2,"2546":2,"2555":2}}],["braces",{"2":{"512":2,"513":1,"2226":1,"2318":1,"2841":1}}],["brace",{"2":{"512":5,"2546":2,"2555":2}}],["braking",{"2":{"1684":1,"1685":1}}],["brakefactor",{"2":{"1684":1,"1685":1}}],["brands",{"2":{"2403":1}}],["branding",{"2":{"1342":1}}],["brand",{"0":{"1342":1},"2":{"561":1,"684":1}}],["branching",{"2":{"1538":5,"1539":1}}],["branch",{"0":{"411":1,"2635":1,"2636":1,"2637":1,"2639":1},"1":{"2636":1,"2637":1},"2":{"41":2,"73":1,"76":1,"92":1,"94":1,"114":2,"251":1,"294":1,"308":1,"399":2,"408":1,"411":5,"419":1,"422":1,"423":2,"459":4,"579":1,"586":1,"588":1,"594":1,"607":3,"1538":2,"2501":1,"2608":1,"2632":1,"2633":2,"2634":12,"2635":3,"2636":5,"2637":3,"2638":4,"2639":3,"2640":19,"2641":1,"2726":7,"2728":1,"2729":1,"2730":7,"2903":2}}],["branches",{"2":{"41":1,"199":1,"308":1,"409":1,"1538":1,"1539":1,"2638":1,"2639":1,"2730":3}}],["brauner",{"2":{"222":1}}],["brett",{"2":{"1377":1,"2572":1}}],["brew",{"2":{"158":1,"2506":1,"2601":1,"2624":1}}],["breadth",{"2":{"2729":1}}],["breach",{"2":{"2568":1}}],["breath",{"2":{"561":1,"1544":1,"2418":1,"2428":1}}],["breathe",{"0":{"462":1},"2":{"462":2,"2181":1,"2185":2,"2544":1}}],["breathing",{"0":{"1572":1,"1573":1,"1574":1,"1575":1},"1":{"1576":1},"2":{"74":1,"93":1,"112":2,"134":1,"160":2,"199":1,"231":1,"285":2,"294":1,"462":1,"561":3,"641":2,"1543":2,"1544":5,"1550":1,"1572":1,"1573":1,"1574":1,"1575":1,"1576":1,"1849":3,"2085":7,"2181":1,"2183":2,"2184":2,"2185":2,"2187":2,"2210":2,"2527":2,"2544":1,"2857":6,"2871":1,"2877":1,"2878":1,"2894":3}}],["breakout",{"2":{"1980":1}}],["breaks",{"2":{"575":1,"676":1,"714":1}}],["breakpoints",{"2":{"2674":2}}],["breakpoint",{"2":{"409":1,"411":2}}],["breakage",{"2":{"114":1}}],["break",{"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"105":2,"114":1,"236":1,"249":1,"333":1,"399":1,"525":1,"527":1,"1417":6,"1430":5,"1446":4,"1447":2,"1462":1,"1471":2,"1472":1,"1517":2,"1527":1,"1528":1,"1533":2,"1605":2,"1617":2,"1618":1,"1657":4,"1676":1,"1795":1,"1945":3,"1958":4,"1992":1,"1994":2,"1996":2,"2011":2,"2012":3,"2071":2,"2074":1,"2079":10,"2095":3,"2191":3,"2208":1,"2284":3,"2315":3,"2317":12,"2318":8,"2319":4,"2575":1,"2632":1,"2847":1,"2912":4,"2928":2}}],["breaking",{"0":{"0":1,"9":1,"29":1,"42":1,"52":1,"66":1,"78":1,"96":1,"115":1,"135":1,"150":1,"161":1,"176":1,"192":1,"200":1,"211":1,"223":1,"237":1,"250":1,"267":1,"278":1,"286":1,"295":1,"309":1,"318":1,"329":1,"334":1,"399":1,"400":1,"401":1,"413":1,"414":1,"1600":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"43":1,"44":1,"45":1,"46":1,"47":1,"48":1,"49":1,"50":1,"51":1,"53":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"61":1,"62":1,"63":1,"64":1,"65":1,"67":1,"68":1,"69":1,"70":1,"71":1,"72":1,"73":1,"74":1,"75":1,"76":1,"77":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"116":1,"117":1,"118":1,"119":1,"120":1,"121":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"129":1,"130":1,"131":1,"132":1,"133":1,"134":1,"136":1,"137":1,"138":1,"139":1,"140":1,"141":1,"142":1,"143":1,"144":1,"145":1,"146":1,"147":1,"148":1,"149":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"162":1,"163":1,"164":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"171":1,"172":1,"173":1,"174":1,"175":1,"177":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"193":1,"194":1,"195":1,"196":1,"197":1,"198":1,"199":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"212":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"224":1,"225":1,"226":1,"227":1,"228":1,"229":1,"230":1,"231":1,"232":1,"233":1,"234":1,"235":1,"236":1,"238":1,"239":1,"240":1,"241":1,"242":1,"243":1,"244":1,"245":1,"246":1,"247":1,"248":1,"249":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1,"279":1,"280":1,"281":1,"282":1,"283":1,"284":1,"285":1,"287":1,"288":1,"289":1,"290":1,"291":1,"292":1,"293":1,"294":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1,"319":1,"320":1,"321":1,"322":1,"323":1,"324":1,"325":1,"326":1,"327":1,"328":1,"330":1,"331":1,"332":1,"333":1,"335":1,"336":1,"337":1,"338":1,"339":1,"400":1,"401":1,"402":2,"403":1,"404":1,"405":1,"406":1,"407":1,"408":1,"409":1,"410":1,"411":1,"412":1,"415":1,"416":1,"417":1,"418":1},"2":{"0":3,"9":2,"13":1,"18":1,"29":2,"42":2,"52":2,"103":1,"105":1,"107":1,"114":1,"116":1,"126":1,"131":1,"156":1,"166":1,"168":1,"171":1,"178":1,"182":1,"187":1,"191":1,"198":1,"201":2,"212":1,"217":1,"224":1,"238":1,"251":1,"254":1,"262":1,"265":2,"273":1,"275":1,"276":1,"284":1,"303":1,"307":2,"332":1,"399":3,"400":1,"401":1,"403":4,"404":1,"405":3,"406":3,"407":3,"408":1,"409":1,"411":3,"412":4,"413":1,"414":1,"415":1,"416":2,"540":1,"1597":1,"1598":1,"1600":2,"2729":1,"2903":2,"2904":1}}],["bridge",{"2":{"2399":2,"2401":2,"2404":2}}],["brid",{"2":{"1776":1,"1848":1,"2068":1,"2517":1,"2522":1,"2537":1}}],["briu",{"2":{"1776":1,"1848":1,"2068":1,"2517":1,"2522":1,"2537":1}}],["briefs",{"2":{"2291":1}}],["brief",{"2":{"1469":1,"1791":1,"1846":1,"2082":1,"2414":1}}],["briefly",{"2":{"684":1}}],["bricking",{"2":{"2567":1}}],["brick",{"2":{"199":1,"1365":1}}],["brightens",{"2":{"2185":1}}],["brighter",{"2":{"494":1}}],["bright",{"2":{"494":1}}],["brightness",{"0":{"712":2,"1776":1,"2193":1},"1":{"713":2},"2":{"111":1,"114":1,"160":1,"175":2,"191":1,"333":1,"565":1,"704":2,"712":1,"713":2,"816":1,"817":1,"818":1,"819":1,"843":1,"844":1,"845":1,"846":1,"875":1,"876":1,"877":1,"878":1,"907":1,"908":1,"909":1,"910":1,"942":1,"943":1,"944":1,"945":1,"976":1,"977":1,"978":1,"979":1,"1010":1,"1011":1,"1012":1,"1013":1,"1044":1,"1045":1,"1046":1,"1047":1,"1078":1,"1079":1,"1080":1,"1081":1,"1112":1,"1113":1,"1114":1,"1115":1,"1146":1,"1147":1,"1148":1,"1149":1,"1180":1,"1181":1,"1182":1,"1183":1,"1233":1,"1234":1,"1235":1,"1236":1,"1541":1,"1543":1,"1544":2,"1546":1,"1767":1,"1776":7,"1843":5,"1848":4,"1849":4,"1852":5,"1865":1,"1866":1,"1867":1,"1868":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":1,"1905":1,"1949":3,"1954":4,"2068":1,"2084":2,"2085":8,"2091":6,"2096":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2180":1,"2181":4,"2182":3,"2185":1,"2193":2,"2513":1,"2516":1,"2517":4,"2522":6,"2527":1,"2537":4,"2544":4,"2545":2,"2757":1,"2776":3,"2855":2,"2857":6,"2871":5,"2877":5,"2878":4}}],["brigthness",{"2":{"191":1}}],["bringing",{"2":{"665":1}}],["brings",{"2":{"251":1,"268":1,"279":1}}],["bring",{"2":{"114":1,"285":1,"353":1,"1788":1,"2669":1,"2929":1}}],["brownfox",{"2":{"2425":1,"2436":1}}],["brown",{"2":{"749":1}}],["browsed",{"2":{"2662":1}}],["browse",{"2":{"393":1,"2617":1,"2935":1}}],["browser",{"2":{"294":1,"460":4,"581":1,"611":1,"2068":1,"2517":7,"2522":7,"2560":1}}],["browsing",{"2":{"110":1,"460":1}}],["brought",{"2":{"108":1}}],["broken",{"2":{"73":1,"93":1,"114":2,"134":2,"149":1,"175":1,"191":1,"199":1,"236":1,"277":1,"285":1,"317":1,"381":1,"414":1,"540":1,"613":1,"1389":1,"2483":1}}],["br",{"2":{"5":1,"344":1,"2300":1,"2301":3}}],["bypasses",{"2":{"2218":1}}],["bypassed",{"2":{"4":1}}],["bytecode",{"2":{"538":1}}],["byte",{"0":{"1287":1,"2242":1},"1":{"2243":1},"2":{"175":1,"749":1,"750":1,"754":1,"756":1,"766":1,"797":1,"1252":1,"1254":1,"1255":1,"1257":1,"1258":1,"1273":1,"1274":1,"1275":1,"1276":1,"1285":3,"1287":5,"1378":1,"1537":1,"1538":8,"1539":5,"1609":1,"1702":1,"1720":2,"1722":2,"1725":1,"1726":2,"1727":1,"1729":1,"1732":1,"1733":1,"1947":4,"1953":3,"1954":2,"1967":1,"1974":1,"2058":1,"2059":2,"2286":4,"2290":2,"2295":7,"2296":1,"2503":1,"2562":2,"2751":1,"2756":3,"2820":1,"2840":1}}],["bytes",{"2":{"15":1,"131":1,"134":1,"203":1,"210":1,"236":1,"701":1,"748":1,"749":3,"750":3,"751":1,"754":2,"755":2,"756":4,"757":11,"759":5,"773":1,"774":1,"776":1,"777":1,"779":1,"780":1,"782":1,"783":2,"786":1,"789":1,"792":1,"795":1,"1259":1,"1260":1,"1262":1,"1263":1,"1277":1,"1278":1,"1279":1,"1280":1,"1287":1,"1416":1,"1419":2,"1538":2,"1539":1,"1720":1,"1722":1,"1947":3,"2057":1,"2059":2,"2062":1,"2064":1,"2275":1,"2277":1,"2286":3,"2295":1,"2296":2,"2379":1,"2387":1,"2388":1,"2496":1,"2502":4,"2503":1,"2508":2,"2587":1,"2615":4,"2629":1,"2757":2,"2767":1,"2768":1,"2773":1,"2774":1,"2776":1,"2778":1,"2779":1,"2864":2,"2889":1,"2950":1}}],["by",{"0":{"17":1,"33":1,"591":1,"595":1,"1620":1,"2271":1,"2272":1,"2273":1,"2274":1,"2467":1},"1":{"596":1,"597":1,"598":1,"599":1,"600":1,"601":1,"602":1,"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"3":1,"7":1,"11":1,"15":2,"18":1,"21":1,"24":1,"27":6,"28":2,"33":2,"35":1,"39":2,"40":2,"48":1,"58":1,"74":1,"82":1,"94":1,"114":6,"118":2,"119":2,"120":1,"124":1,"125":1,"134":5,"149":2,"154":2,"163":1,"166":1,"168":1,"169":1,"175":4,"179":1,"184":1,"188":1,"189":1,"190":1,"191":5,"194":1,"195":3,"199":4,"203":1,"210":3,"212":1,"220":3,"222":1,"233":1,"248":1,"263":1,"273":1,"288":1,"289":1,"308":1,"312":2,"320":1,"328":2,"333":1,"340":1,"344":3,"347":1,"354":1,"373":1,"376":1,"383":2,"391":1,"393":1,"402":1,"403":3,"414":2,"429":1,"430":2,"433":3,"463":1,"466":1,"472":1,"474":1,"476":1,"482":1,"487":2,"489":4,"494":1,"500":1,"506":1,"513":1,"519":1,"520":1,"521":1,"529":1,"538":1,"540":1,"544":1,"552":1,"557":1,"561":3,"564":1,"569":1,"570":1,"571":1,"572":2,"575":3,"579":1,"580":1,"581":1,"582":1,"586":1,"588":4,"589":1,"592":1,"596":1,"600":1,"607":1,"611":1,"612":1,"613":3,"628":1,"630":1,"631":1,"639":2,"640":1,"643":1,"648":2,"656":1,"657":1,"658":1,"659":1,"660":1,"669":1,"671":1,"672":1,"673":2,"675":2,"684":1,"686":3,"687":1,"688":1,"696":2,"701":3,"703":1,"716":1,"717":1,"719":1,"720":1,"721":1,"722":1,"723":1,"724":1,"727":1,"729":1,"746":3,"749":2,"752":1,"753":2,"754":2,"755":3,"756":1,"757":1,"765":1,"766":1,"768":1,"797":1,"800":1,"805":1,"826":1,"831":1,"855":1,"859":1,"861":2,"863":1,"887":1,"893":1,"919":1,"923":1,"924":1,"926":2,"928":1,"954":1,"958":1,"960":2,"962":1,"988":1,"992":1,"994":2,"996":1,"1022":1,"1026":1,"1028":2,"1030":1,"1056":1,"1060":1,"1062":2,"1064":1,"1090":1,"1094":1,"1096":2,"1098":1,"1124":1,"1128":1,"1130":2,"1132":1,"1158":1,"1162":1,"1164":2,"1166":1,"1193":1,"1199":1,"1200":1,"1203":1,"1204":2,"1205":2,"1207":1,"1208":1,"1214":1,"1219":1,"1246":1,"1252":2,"1265":1,"1267":1,"1284":1,"1286":1,"1287":1,"1290":1,"1297":1,"1300":1,"1313":2,"1316":1,"1322":1,"1326":1,"1327":1,"1332":1,"1333":1,"1343":4,"1348":1,"1351":1,"1354":1,"1359":1,"1361":1,"1366":1,"1372":1,"1373":1,"1377":1,"1378":4,"1381":1,"1388":1,"1389":1,"1390":1,"1391":1,"1392":1,"1396":2,"1397":1,"1399":1,"1404":1,"1405":1,"1409":1,"1410":2,"1413":4,"1417":5,"1422":2,"1423":1,"1427":1,"1433":2,"1440":1,"1441":1,"1444":2,"1446":2,"1448":3,"1449":1,"1455":1,"1465":1,"1467":1,"1470":1,"1472":1,"1474":2,"1480":2,"1485":1,"1487":2,"1489":1,"1490":1,"1491":2,"1492":1,"1493":4,"1501":3,"1502":1,"1510":1,"1517":1,"1518":2,"1522":1,"1525":1,"1526":2,"1528":1,"1538":5,"1539":2,"1541":3,"1542":1,"1545":1,"1558":1,"1589":2,"1590":1,"1593":5,"1594":5,"1595":3,"1597":2,"1601":1,"1608":1,"1610":1,"1611":1,"1612":4,"1613":1,"1616":1,"1617":3,"1618":3,"1622":2,"1623":1,"1624":2,"1626":1,"1627":1,"1630":1,"1655":1,"1661":2,"1662":1,"1665":3,"1666":1,"1667":1,"1675":1,"1681":2,"1685":1,"1738":2,"1739":1,"1740":1,"1741":2,"1742":1,"1763":1,"1765":1,"1766":1,"1776":1,"1781":1,"1782":1,"1783":1,"1785":1,"1786":6,"1788":2,"1789":2,"1794":1,"1800":1,"1803":1,"1843":2,"1844":1,"1846":2,"1849":1,"1850":1,"1851":2,"1852":2,"1919":1,"1926":1,"1934":1,"1936":3,"1947":3,"1948":2,"1952":3,"1953":2,"1954":7,"1965":2,"1968":1,"1976":1,"1977":1,"1984":1,"1985":5,"1986":7,"1987":4,"1988":1,"1989":1,"1990":2,"1993":1,"1994":1,"1999":1,"2001":2,"2004":1,"2014":2,"2016":1,"2044":1,"2046":1,"2048":1,"2056":2,"2057":3,"2059":1,"2065":1,"2068":7,"2070":1,"2071":2,"2072":1,"2076":1,"2079":1,"2080":1,"2082":2,"2085":3,"2086":1,"2088":1,"2090":2,"2091":4,"2179":1,"2182":4,"2185":2,"2188":1,"2189":2,"2191":1,"2193":1,"2206":2,"2207":1,"2210":1,"2214":1,"2220":1,"2221":1,"2223":1,"2250":1,"2259":3,"2261":3,"2266":1,"2270":1,"2271":2,"2272":1,"2273":1,"2276":1,"2277":1,"2278":1,"2279":1,"2283":1,"2286":3,"2287":2,"2290":9,"2291":2,"2292":1,"2295":3,"2296":1,"2300":1,"2304":2,"2305":1,"2308":1,"2309":4,"2310":1,"2317":2,"2319":1,"2330":3,"2331":5,"2347":1,"2375":1,"2378":1,"2379":1,"2381":1,"2384":5,"2387":2,"2388":1,"2389":2,"2393":1,"2394":1,"2395":1,"2402":1,"2407":1,"2409":1,"2416":1,"2418":6,"2422":1,"2427":1,"2428":1,"2430":1,"2432":1,"2434":1,"2435":2,"2436":1,"2441":1,"2447":1,"2453":2,"2455":1,"2457":1,"2458":1,"2464":1,"2466":4,"2469":2,"2470":1,"2473":1,"2474":1,"2479":1,"2481":1,"2498":1,"2499":1,"2501":1,"2505":1,"2506":1,"2508":1,"2543":4,"2557":1,"2558":1,"2561":1,"2566":1,"2567":2,"2568":1,"2572":2,"2573":1,"2575":2,"2579":1,"2589":1,"2614":1,"2616":3,"2623":1,"2625":1,"2626":3,"2627":2,"2629":1,"2633":1,"2634":1,"2637":2,"2638":1,"2639":2,"2640":4,"2650":3,"2651":1,"2652":3,"2663":1,"2667":1,"2674":1,"2677":1,"2679":1,"2685":1,"2686":1,"2700":3,"2702":2,"2704":1,"2705":3,"2706":1,"2707":1,"2709":4,"2712":1,"2713":1,"2717":3,"2726":1,"2728":5,"2729":1,"2732":1,"2754":1,"2755":3,"2756":23,"2757":7,"2758":2,"2765":1,"2767":2,"2772":1,"2774":1,"2776":2,"2795":1,"2797":1,"2799":1,"2802":1,"2803":1,"2812":1,"2825":1,"2840":1,"2841":1,"2851":2,"2861":2,"2864":1,"2869":3,"2871":2,"2877":3,"2878":4,"2884":1,"2886":1,"2889":2,"2890":1,"2891":3,"2893":1,"2894":3,"2901":1,"2902":1,"2903":1,"2904":1,"2905":1,"2910":1,"2911":1,"2912":9,"2919":1,"2920":7,"2921":5,"2922":2,"2923":2,"2925":1,"2926":3,"2927":2,"2929":2,"2931":5,"2935":2,"2937":1,"2938":1,"2942":2,"2946":1,"2949":1,"2950":4}}],["bepo",{"2":{"2887":2}}],["beware",{"2":{"1681":1}}],["beat",{"2":{"2252":7}}],["beats",{"2":{"1487":1,"2252":2}}],["beacon",{"2":{"1849":3,"2085":6,"2894":2}}],["bear65",{"2":{"72":1}}],["bear",{"2":{"67":2,"277":2,"2423":1,"2430":1}}],["bespoke",{"2":{"2707":1}}],["besides",{"2":{"1460":1,"1480":1,"2075":1,"2417":1,"2908":1,"2909":1}}],["best",{"0":{"674":1,"2631":1},"1":{"2632":1},"2":{"233":1,"512":1,"597":1,"613":2,"615":1,"618":1,"634":1,"674":1,"676":1,"797":1,"1423":1,"1446":3,"1490":1,"1534":1,"1956":1,"2037":1,"2086":1,"2317":1,"2329":1,"2429":1,"2573":1,"2589":1,"2612":1,"2626":1,"2627":1,"2632":1,"2707":1,"2713":1,"2725":1,"2726":1,"2730":1,"2757":1,"2897":1}}],["beyond",{"0":{"1368":1},"2":{"755":1,"1368":1,"2077":1,"2581":1,"2733":1,"2735":1,"2928":1}}],["beiwagon",{"2":{"308":1}}],["being",{"2":{"6":1,"92":1,"114":1,"124":1,"166":1,"191":1,"234":1,"417":1,"613":1,"719":2,"720":1,"750":1,"759":1,"1297":1,"1331":1,"1381":1,"1413":1,"1433":1,"1438":1,"1450":1,"1452":1,"1463":2,"1471":1,"1499":1,"1524":1,"1529":1,"1546":1,"1558":1,"1594":1,"1609":1,"1661":1,"1664":3,"1766":1,"1786":3,"1959":1,"1961":1,"1969":1,"2076":2,"2178":1,"2181":1,"2184":1,"2300":2,"2309":2,"2317":3,"2418":2,"2423":2,"2434":1,"2466":14,"2530":1,"2563":1,"2569":2,"2570":1,"2587":1,"2612":1,"2616":1,"2638":1,"2639":1,"2650":2,"2656":1,"2683":1,"2709":1,"2730":1,"2736":1,"2756":3,"2797":1,"2895":1,"2904":1,"2908":1,"2926":1,"2930":1}}],["beneath",{"2":{"2431":1}}],["beneficial",{"2":{"755":1,"2764":1}}],["benefits",{"2":{"412":1,"1766":1,"2261":1}}],["benefit",{"2":{"203":1,"613":1,"1463":1,"2318":1,"2447":1}}],["bent",{"2":{"2428":2,"2429":1}}],["bends",{"2":{"2427":1}}],["bending",{"2":{"2425":1,"2427":1}}],["bend",{"2":{"231":1,"1925":4,"2427":1,"2539":4}}],["bebol",{"2":{"222":1}}],["beck",{"2":{"2942":1}}],["becom",{"2":{"2074":1}}],["become",{"2":{"293":1,"305":1,"381":1,"1622":1,"2406":2,"2408":2,"2410":2,"2428":1,"2466":1,"2573":2,"2747":1}}],["becomes",{"2":{"201":1,"231":1,"564":1,"1593":1,"2462":1,"2482":1,"2734":1,"2739":1}}],["because",{"2":{"18":1,"414":1,"513":1,"596":1,"695":3,"1205":1,"1283":1,"1287":1,"1297":1,"1350":1,"1380":1,"1410":2,"1422":1,"1423":1,"1425":1,"1470":1,"1529":1,"1532":1,"1538":1,"1593":3,"1786":1,"1923":1,"1953":2,"1992":1,"2001":1,"2057":1,"2096":1,"2097":1,"2178":1,"2191":1,"2273":1,"2275":1,"2279":1,"2293":1,"2300":2,"2309":2,"2310":1,"2319":1,"2325":1,"2379":1,"2474":1,"2482":1,"2503":1,"2554":1,"2568":1,"2569":1,"2573":2,"2575":1,"2576":1,"2634":1,"2677":1,"2680":1,"2730":1,"2756":1,"2757":1,"2764":1,"2784":1,"2912":1,"2913":1,"2914":1,"2920":1,"2931":1,"2936":1,"2948":1}}],["beekeeb",{"2":{"222":1}}],["beeps",{"2":{"1473":1}}],["beep",{"2":{"120":1,"1441":1,"1444":3,"1473":1,"2221":1,"2856":2,"2868":1}}],["been",{"0":{"400":1},"2":{"1":2,"3":1,"7":1,"8":2,"15":1,"26":1,"28":1,"39":2,"43":1,"47":2,"48":1,"49":1,"60":1,"67":2,"69":1,"70":3,"82":1,"84":1,"86":3,"90":1,"98":1,"114":2,"118":2,"123":1,"124":1,"125":1,"126":1,"128":1,"132":1,"137":1,"140":2,"142":1,"154":1,"157":1,"166":5,"167":1,"169":1,"178":1,"179":1,"181":1,"182":1,"184":1,"190":2,"194":2,"196":1,"198":2,"201":2,"203":1,"206":1,"207":1,"208":1,"209":1,"212":4,"213":1,"214":1,"217":1,"220":1,"224":1,"228":2,"230":1,"231":1,"233":2,"238":1,"243":1,"254":1,"262":3,"265":1,"271":1,"273":1,"279":1,"283":2,"284":2,"293":1,"302":1,"303":1,"304":1,"305":1,"312":2,"314":1,"315":1,"316":1,"323":1,"331":2,"338":1,"411":1,"434":1,"459":1,"470":1,"569":1,"582":1,"596":1,"634":1,"637":2,"644":1,"646":4,"657":1,"659":1,"665":2,"686":1,"723":1,"1392":1,"1393":1,"1398":1,"1405":1,"1446":1,"1447":2,"1539":1,"1589":1,"1750":1,"1785":1,"1800":1,"1852":5,"1937":1,"1959":1,"1962":1,"2008":1,"2061":1,"2076":1,"2078":1,"2085":1,"2091":7,"2191":1,"2249":1,"2265":1,"2275":2,"2300":2,"2308":1,"2310":1,"2317":2,"2410":1,"2466":1,"2502":1,"2568":1,"2569":4,"2571":1,"2586":1,"2594":1,"2612":1,"2616":1,"2617":1,"2633":1,"2639":1,"2640":1,"2653":1,"2655":1,"2686":2,"2728":2,"2756":1,"2757":2,"2780":1,"2813":1,"2902":1,"2919":1,"2935":1,"2940":1}}],["belgian",{"2":{"2887":4}}],["belgium",{"2":{"2887":2}}],["bel",{"2":{"2221":1,"2856":1}}],["belong",{"2":{"1203":1,"1204":1,"1499":1,"2728":2}}],["below",{"2":{"33":1,"55":1,"166":1,"196":2,"215":1,"224":1,"491":1,"521":1,"627":1,"656":1,"657":1,"661":1,"669":2,"683":1,"688":1,"716":1,"743":1,"746":3,"758":1,"772":1,"1198":1,"1201":1,"1250":1,"1271":1,"1289":1,"1315":1,"1328":1,"1382":1,"1422":1,"1503":1,"1517":1,"1547":1,"1590":1,"1593":2,"1594":1,"1604":1,"1680":1,"1742":1,"1768":1,"1769":1,"1773":1,"1774":1,"1781":1,"1798":2,"1801":1,"1845":1,"1952":1,"1954":1,"1964":1,"1989":1,"1999":2,"2012":1,"2013":1,"2039":1,"2042":1,"2068":1,"2081":1,"2085":1,"2179":1,"2180":1,"2206":1,"2222":1,"2266":1,"2295":1,"2296":1,"2309":1,"2310":1,"2317":1,"2318":2,"2326":1,"2327":1,"2417":2,"2423":1,"2437":1,"2450":1,"2509":1,"2585":2,"2626":1,"2705":1,"2728":1,"2753":1,"2757":3,"2765":1,"2767":3,"2772":1,"2776":3,"2884":1,"2885":1,"2886":1,"2908":1,"2913":1,"2941":2,"2945":1}}],["believe",{"2":{"414":1}}],["belt",{"2":{"199":1}}],["bells",{"2":{"2728":1}}],["bella",{"2":{"222":1}}],["bell",{"2":{"114":1,"1444":1,"1486":1,"2221":2}}],["began",{"2":{"2379":1}}],["begins",{"2":{"1538":1,"1798":1,"1807":1,"2300":1,"2379":2,"2536":1,"2562":1,"2585":1}}],["beginner",{"2":{"1427":1}}],["beginners",{"0":{"1425":1}}],["beginning",{"0":{"2906":1},"2":{"214":1,"398":1,"512":1,"1462":1,"1538":3,"1663":1,"1936":1,"1954":2,"2290":2,"2295":1,"2296":1,"2310":1,"2319":1,"2327":3,"2429":1,"2634":1,"2794":1}}],["begin",{"2":{"94":1,"113":1,"114":1,"133":1,"134":1,"249":1,"1529":1,"1805":1,"1812":1,"1954":2,"2218":1,"2344":1,"2359":1,"2449":1,"2592":1,"2614":1,"2950":1}}],["begun",{"2":{"40":1}}],["bet",{"2":{"233":1,"1534":1,"2612":1}}],["beta",{"2":{"143":2,"222":1,"228":1,"311":1}}],["better",{"0":{"2780":1},"1":{"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1},"2":{"40":1,"98":1,"149":1,"160":1,"175":2,"263":1,"308":1,"328":1,"517":1,"526":1,"541":1,"648":1,"1968":1,"2037":1,"2441":1,"2467":1,"2565":1,"2652":1,"2658":2,"2667":1,"2670":1,"2764":1,"2850":1,"2902":1,"2915":1,"2920":1,"2921":1,"2950":1}}],["between",{"0":{"1343":1,"1463":1,"2038":1,"2277":1},"1":{"1464":1,"1465":1,"1466":1,"1467":1,"1468":1,"1469":1,"1470":1,"1471":1,"1472":1},"2":{"22":1,"35":1,"39":2,"64":1,"76":1,"107":1,"114":1,"222":2,"249":1,"257":1,"258":1,"259":2,"266":1,"271":1,"276":1,"403":1,"472":1,"474":1,"512":1,"521":1,"527":1,"533":1,"561":2,"564":2,"570":3,"622":1,"651":1,"690":1,"716":1,"720":3,"764":1,"1192":1,"1245":1,"1266":1,"1288":1,"1297":1,"1298":1,"1343":1,"1350":1,"1366":1,"1378":1,"1380":2,"1409":1,"1426":2,"1427":1,"1428":6,"1463":1,"1464":1,"1472":1,"1538":1,"1558":1,"1579":1,"1590":1,"1594":1,"1623":1,"1641":1,"1665":1,"1667":1,"1675":1,"1695":1,"1742":1,"1788":1,"1838":1,"1935":4,"1936":2,"1937":8,"1939":3,"1940":1,"1954":1,"1960":1,"1961":1,"1962":1,"1968":1,"1986":2,"1993":1,"2037":1,"2038":1,"2054":1,"2072":1,"2180":1,"2183":1,"2185":1,"2187":6,"2198":13,"2200":2,"2201":2,"2202":2,"2216":1,"2226":1,"2230":1,"2234":1,"2254":1,"2264":1,"2265":2,"2266":1,"2267":1,"2273":1,"2276":3,"2277":1,"2278":1,"2280":1,"2294":1,"2296":1,"2297":1,"2305":1,"2309":1,"2317":1,"2327":1,"2365":1,"2377":1,"2378":1,"2380":2,"2390":1,"2397":1,"2413":1,"2426":1,"2427":1,"2450":2,"2497":1,"2504":1,"2582":1,"2634":2,"2656":1,"2669":1,"2741":1,"2751":2,"2754":1,"2764":1,"2765":1,"2772":1,"2790":1,"2794":1,"2842":1,"2854":2,"2858":1,"2872":1,"2877":1,"2914":1,"2920":1,"2922":1,"2929":1,"2950":1}}],["behind",{"2":{"39":1,"198":1,"201":1,"212":1,"224":1,"238":1,"251":1,"576":1,"2310":1,"2736":1,"2902":2}}],["behave",{"2":{"303":1,"338":1,"588":1,"1380":1,"1597":1,"1787":1,"1999":1,"2076":1,"2308":1,"2517":1,"2651":1,"2729":1,"2920":1}}],["behaves",{"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"399":1,"626":1,"2077":1,"2585":1}}],["behavioral",{"2":{"1349":1}}],["behaviors",{"0":{"564":1}}],["behavior",{"0":{"626":1,"630":1},"1":{"627":1,"631":1,"632":1},"2":{"4":1,"39":1,"64":1,"87":2,"88":1,"103":1,"104":1,"126":1,"127":1,"191":1,"194":2,"297":3,"320":1,"327":2,"393":1,"414":3,"431":1,"489":2,"494":1,"540":1,"543":1,"570":1,"615":1,"625":2,"628":1,"630":2,"631":1,"648":1,"1349":1,"1422":1,"1490":1,"1502":1,"1623":1,"1662":1,"1663":1,"1766":1,"1770":1,"1773":1,"1777":1,"1781":1,"1782":1,"1784":1,"1785":1,"1786":1,"1787":1,"1837":1,"1838":1,"1956":1,"1961":1,"1986":1,"1990":2,"2077":1,"2278":1,"2318":1,"2320":1,"2344":1,"2345":1,"2346":1,"2461":1,"2466":1,"2578":1,"2650":1,"2663":1,"2700":2,"2702":1,"2808":1,"2909":1,"2914":2,"2923":3,"2926":3,"2931":2}}],["behaviours",{"2":{"198":1}}],["behaviour",{"0":{"194":1,"217":1,"2000":1},"2":{"2":1,"113":1,"114":1,"134":1,"149":2,"175":2,"217":1,"222":2,"294":2,"328":1,"333":1,"646":1,"656":1,"1322":1,"1381":1,"1431":1,"1519":1,"1593":1,"1614":1,"1668":2,"1803":1,"2000":1,"2054":1,"2181":2,"2271":1,"2720":1}}],["be",{"0":{"15":1,"263":1,"403":1,"562":1,"563":1,"564":1,"591":1,"2678":1,"2903":1,"2904":1},"2":{"5":1,"12":1,"13":1,"14":1,"15":1,"18":1,"35":1,"39":2,"40":2,"43":2,"44":1,"49":1,"58":1,"60":1,"63":2,"64":1,"70":1,"74":4,"88":2,"93":1,"100":1,"103":2,"104":2,"107":1,"109":1,"110":1,"118":1,"124":2,"125":1,"126":1,"127":2,"131":1,"134":4,"137":1,"138":1,"153":2,"154":1,"156":1,"157":1,"160":1,"168":1,"169":2,"175":2,"179":1,"191":1,"194":3,"195":2,"201":2,"208":1,"209":1,"212":5,"214":1,"220":3,"221":1,"228":3,"230":2,"231":1,"236":1,"249":1,"254":1,"262":2,"263":1,"265":3,"266":1,"268":1,"271":1,"273":1,"275":2,"276":2,"283":1,"284":1,"285":2,"288":2,"289":1,"303":2,"306":2,"307":3,"308":1,"312":1,"315":1,"317":1,"327":1,"328":1,"332":1,"338":1,"339":1,"344":3,"353":1,"381":1,"382":1,"383":1,"386":1,"389":1,"393":3,"396":3,"397":1,"399":1,"402":1,"403":8,"405":2,"406":2,"407":3,"411":1,"412":10,"414":5,"419":2,"420":2,"423":1,"429":3,"430":2,"433":6,"443":1,"444":1,"446":1,"455":3,"459":1,"460":1,"461":1,"469":3,"473":1,"474":1,"475":1,"476":1,"483":1,"489":2,"492":1,"493":1,"494":2,"500":3,"505":1,"506":1,"509":1,"511":1,"512":1,"514":1,"516":1,"519":1,"521":1,"524":1,"525":2,"531":1,"532":1,"533":3,"537":1,"538":2,"540":3,"541":2,"542":1,"543":1,"545":1,"556":1,"557":1,"560":2,"561":4,"563":1,"564":1,"565":3,"568":3,"569":2,"570":3,"571":1,"574":2,"575":4,"578":2,"584":1,"588":4,"589":2,"591":1,"592":1,"593":1,"594":1,"596":2,"597":1,"598":1,"601":1,"603":1,"604":1,"607":2,"609":2,"613":5,"614":1,"618":1,"625":2,"626":1,"627":4,"629":1,"630":2,"633":1,"634":1,"639":1,"640":1,"643":2,"645":2,"647":1,"648":2,"651":2,"656":4,"657":9,"658":1,"659":2,"660":1,"661":1,"672":1,"676":1,"677":1,"681":3,"686":4,"687":3,"688":4,"689":2,"690":1,"695":5,"696":2,"698":1,"699":3,"701":2,"706":1,"719":1,"720":5,"721":2,"723":1,"729":1,"733":1,"743":1,"746":3,"748":1,"749":4,"750":1,"751":1,"753":1,"754":5,"755":5,"756":2,"758":1,"763":2,"766":1,"767":1,"768":1,"772":3,"797":1,"805":1,"809":1,"831":1,"835":1,"859":1,"863":1,"867":1,"893":1,"897":1,"923":2,"924":1,"928":1,"932":1,"958":1,"962":1,"966":1,"992":1,"996":1,"1000":1,"1026":1,"1030":1,"1034":1,"1060":1,"1064":1,"1068":1,"1094":2,"1098":1,"1102":1,"1128":2,"1132":1,"1136":1,"1162":1,"1166":1,"1170":1,"1192":1,"1196":1,"1198":1,"1199":1,"1200":4,"1201":1,"1203":2,"1204":2,"1205":2,"1206":1,"1209":1,"1213":1,"1219":1,"1223":1,"1247":1,"1248":4,"1250":2,"1252":2,"1269":1,"1271":2,"1283":1,"1286":1,"1287":2,"1288":2,"1289":1,"1292":1,"1294":3,"1297":2,"1298":2,"1301":1,"1305":1,"1313":1,"1319":1,"1320":3,"1324":1,"1325":1,"1326":1,"1329":1,"1330":1,"1331":1,"1332":1,"1343":1,"1348":3,"1351":1,"1353":1,"1371":2,"1372":1,"1373":1,"1376":1,"1377":3,"1378":4,"1381":1,"1382":1,"1388":3,"1390":2,"1395":1,"1407":2,"1408":1,"1409":1,"1410":3,"1412":1,"1413":1,"1416":3,"1417":2,"1419":3,"1422":5,"1423":2,"1424":1,"1425":2,"1426":1,"1427":4,"1428":1,"1429":1,"1433":2,"1434":4,"1435":1,"1436":1,"1438":1,"1440":1,"1446":3,"1447":1,"1448":2,"1451":1,"1452":1,"1453":1,"1454":1,"1455":2,"1462":2,"1463":2,"1464":5,"1465":1,"1466":2,"1467":1,"1470":2,"1471":1,"1472":2,"1474":2,"1477":1,"1478":1,"1480":1,"1481":2,"1483":1,"1485":5,"1487":1,"1489":1,"1490":1,"1491":2,"1493":1,"1498":1,"1501":1,"1502":1,"1503":1,"1510":1,"1517":1,"1518":7,"1522":1,"1523":1,"1527":2,"1528":1,"1532":1,"1533":2,"1534":1,"1538":2,"1546":2,"1554":1,"1589":1,"1591":1,"1594":1,"1595":1,"1600":2,"1605":1,"1607":1,"1608":2,"1609":4,"1610":3,"1612":8,"1620":2,"1623":1,"1625":1,"1626":1,"1628":1,"1631":1,"1633":2,"1634":1,"1639":1,"1641":2,"1642":3,"1645":1,"1656":2,"1657":1,"1659":2,"1661":1,"1665":4,"1666":1,"1667":2,"1668":1,"1669":2,"1670":4,"1678":1,"1681":5,"1682":1,"1685":1,"1686":2,"1687":2,"1697":1,"1702":2,"1704":2,"1729":2,"1738":3,"1740":1,"1741":1,"1742":3,"1747":1,"1762":2,"1765":2,"1770":1,"1772":1,"1774":2,"1776":2,"1777":1,"1779":1,"1781":13,"1782":3,"1783":1,"1784":2,"1785":1,"1787":2,"1788":2,"1792":1,"1795":3,"1802":1,"1803":1,"1837":1,"1838":1,"1846":3,"1850":2,"1851":1,"1852":1,"1853":1,"1865":1,"1867":1,"1919":1,"1936":2,"1938":1,"1939":1,"1940":2,"1941":1,"1943":1,"1946":2,"1947":2,"1949":1,"1951":1,"1953":1,"1954":4,"1956":1,"1957":1,"1959":1,"1960":1,"1964":2,"1965":1,"1968":3,"1971":1,"1974":3,"1976":4,"1977":2,"1979":1,"1981":1,"1982":1,"1983":3,"1984":2,"1985":3,"1986":4,"1988":1,"1990":4,"1994":3,"1998":2,"1999":5,"2000":1,"2001":3,"2004":1,"2006":1,"2008":3,"2009":1,"2011":4,"2012":2,"2013":2,"2014":2,"2015":2,"2016":2,"2039":1,"2042":1,"2043":1,"2044":2,"2046":1,"2048":3,"2051":1,"2056":1,"2057":3,"2058":2,"2064":2,"2065":1,"2068":1,"2069":1,"2070":3,"2071":1,"2072":2,"2073":1,"2074":3,"2075":1,"2077":1,"2078":3,"2079":1,"2082":3,"2087":1,"2088":2,"2089":1,"2090":1,"2091":1,"2092":1,"2096":2,"2107":1,"2109":1,"2178":1,"2179":1,"2181":2,"2182":2,"2183":1,"2184":2,"2189":3,"2191":2,"2205":1,"2208":2,"2210":1,"2212":1,"2213":2,"2214":1,"2219":2,"2222":2,"2249":1,"2261":1,"2265":2,"2267":2,"2271":2,"2272":3,"2273":2,"2275":3,"2276":1,"2277":6,"2278":2,"2279":1,"2286":2,"2290":2,"2293":1,"2294":2,"2295":1,"2298":1,"2300":7,"2301":2,"2304":1,"2309":5,"2310":1,"2316":1,"2317":6,"2318":1,"2319":6,"2320":1,"2322":1,"2323":1,"2324":1,"2326":1,"2327":2,"2330":6,"2331":2,"2344":1,"2345":1,"2346":1,"2347":1,"2365":1,"2375":2,"2377":1,"2378":1,"2379":4,"2381":1,"2386":2,"2387":3,"2388":2,"2389":2,"2394":2,"2396":3,"2397":1,"2399":3,"2401":2,"2402":2,"2403":1,"2404":3,"2406":1,"2408":1,"2410":1,"2412":3,"2414":1,"2415":2,"2417":5,"2418":7,"2423":2,"2424":1,"2425":2,"2426":1,"2427":2,"2428":7,"2429":3,"2430":2,"2431":2,"2432":2,"2434":4,"2435":1,"2437":1,"2439":1,"2441":1,"2449":1,"2450":4,"2451":3,"2453":3,"2454":3,"2455":1,"2456":1,"2458":1,"2460":1,"2462":1,"2463":1,"2464":2,"2466":4,"2467":1,"2470":1,"2471":1,"2473":1,"2482":1,"2483":1,"2485":1,"2486":1,"2487":1,"2489":1,"2490":1,"2497":1,"2499":1,"2501":1,"2502":3,"2503":2,"2504":1,"2505":2,"2506":3,"2507":1,"2508":1,"2522":1,"2535":1,"2554":1,"2557":2,"2558":1,"2559":2,"2561":3,"2565":1,"2566":2,"2567":1,"2568":6,"2569":6,"2570":3,"2571":3,"2572":1,"2573":3,"2575":4,"2576":1,"2583":1,"2584":2,"2585":3,"2589":2,"2590":1,"2592":1,"2596":2,"2597":2,"2598":2,"2601":2,"2609":1,"2610":4,"2612":4,"2613":1,"2614":1,"2616":1,"2618":1,"2619":1,"2628":1,"2629":2,"2636":1,"2637":1,"2639":1,"2640":4,"2650":1,"2651":1,"2652":2,"2656":1,"2658":1,"2659":1,"2662":3,"2667":2,"2669":1,"2673":1,"2674":12,"2675":1,"2676":1,"2677":3,"2678":5,"2679":5,"2680":4,"2682":1,"2683":1,"2685":6,"2686":1,"2687":1,"2690":1,"2691":1,"2694":1,"2695":1,"2696":1,"2700":1,"2702":1,"2703":1,"2704":1,"2705":2,"2706":1,"2707":1,"2709":6,"2710":3,"2711":2,"2712":1,"2713":2,"2714":1,"2716":1,"2719":1,"2720":1,"2722":2,"2725":1,"2726":11,"2727":6,"2728":34,"2729":13,"2731":2,"2732":1,"2751":1,"2753":2,"2754":5,"2755":4,"2756":42,"2757":30,"2759":1,"2764":1,"2767":2,"2768":2,"2769":1,"2772":1,"2773":1,"2774":2,"2775":1,"2776":3,"2778":2,"2780":1,"2784":4,"2786":1,"2792":1,"2794":2,"2813":1,"2847":1,"2850":1,"2852":2,"2853":1,"2854":2,"2856":1,"2857":1,"2858":1,"2859":1,"2860":1,"2864":3,"2869":1,"2871":3,"2872":2,"2875":1,"2876":1,"2877":2,"2878":3,"2880":2,"2881":1,"2883":1,"2886":1,"2888":1,"2889":1,"2893":1,"2894":1,"2897":1,"2901":2,"2902":3,"2903":7,"2904":2,"2905":1,"2906":1,"2908":1,"2912":5,"2914":1,"2919":2,"2920":5,"2921":3,"2922":5,"2925":1,"2926":4,"2927":3,"2928":2,"2929":2,"2931":2,"2932":2,"2935":1,"2937":1,"2941":3,"2944":3,"2945":2,"2946":1,"2947":1,"2948":1,"2949":3,"2950":2}}],["beforehand",{"2":{"2612":1}}],["before",{"0":{"324":1,"405":1,"406":1,"407":1,"408":1},"2":{"1":1,"35":1,"39":1,"55":1,"73":1,"90":1,"105":1,"160":2,"175":1,"191":1,"199":1,"214":2,"222":1,"234":1,"240":1,"246":1,"259":1,"263":1,"289":1,"320":2,"362":1,"369":1,"403":1,"407":1,"409":1,"412":9,"455":1,"467":1,"469":1,"506":1,"537":1,"564":7,"574":3,"607":1,"609":2,"611":1,"613":4,"630":1,"633":1,"634":1,"637":1,"644":1,"646":1,"651":2,"657":2,"658":1,"659":1,"696":1,"763":2,"772":1,"1250":1,"1271":1,"1410":1,"1446":1,"1447":4,"1455":1,"1456":1,"1490":1,"1498":1,"1503":1,"1518":2,"1527":1,"1528":1,"1529":1,"1532":1,"1538":1,"1591":1,"1604":1,"1622":1,"1634":1,"1678":1,"1704":1,"1730":1,"1732":1,"1781":1,"1835":1,"1846":1,"1908":1,"1910":1,"1912":1,"1915":1,"1939":1,"1948":1,"1953":1,"1971":8,"1993":1,"1996":1,"1999":1,"2001":2,"2008":2,"2011":2,"2046":1,"2048":1,"2053":1,"2082":1,"2168":1,"2170":1,"2172":1,"2175":1,"2217":1,"2231":1,"2235":1,"2259":2,"2260":1,"2265":1,"2275":2,"2281":1,"2300":2,"2308":1,"2310":1,"2317":1,"2417":1,"2418":1,"2425":1,"2427":1,"2429":1,"2431":1,"2455":1,"2466":1,"2503":1,"2566":1,"2567":1,"2580":1,"2590":1,"2612":1,"2618":1,"2619":1,"2634":1,"2650":1,"2655":1,"2665":1,"2685":3,"2712":1,"2713":1,"2726":1,"2728":2,"2731":1,"2748":1,"2755":1,"2784":1,"2821":1,"2861":1,"2869":1,"2874":1,"2879":1,"2882":1,"2896":1,"2903":1,"2914":1,"2919":1,"2920":1,"2926":2,"2931":2}}],["m4",{"2":{"2689":1}}],["mrwd",{"2":{"2068":1,"2517":1,"2522":1}}],["mrelax",{"2":{"160":1}}],["mhz",{"2":{"1252":2}}],["mb85rs64v",{"2":{"750":2}}],["mb85rc256v",{"2":{"749":2}}],["mnt",{"2":{"2626":1}}],["mnemonic",{"2":{"2330":2,"2418":1}}],["mnxt",{"2":{"589":2,"1776":1,"2068":1,"2517":1,"2522":1}}],["mnk50",{"2":{"241":2}}],["mnk75",{"2":{"222":1,"241":2}}],["mnk1800s",{"2":{"222":1,"241":2}}],["mnk65",{"2":{"222":1}}],["mmd",{"2":{"2567":1}}],["mm",{"2":{"411":2,"1970":4,"1974":1,"2882":1}}],["mmcu=",{"2":{"354":1,"2394":1}}],["mmoskal",{"2":{"199":1}}],["m32u4",{"2":{"2502":1}}],["m3",{"2":{"328":1}}],["m3n3van",{"2":{"143":2}}],["m1",{"2":{"328":1}}],["m122",{"2":{"114":1,"218":8}}],["m12og",{"2":{"102":3}}],["m2s",{"2":{"2277":7}}],["m2",{"2":{"328":1}}],["m256ws",{"2":{"277":1}}],["m256wh",{"2":{"277":1}}],["m20add",{"2":{"114":1}}],["mj65",{"2":{"253":2}}],["mj6xy",{"2":{"222":1}}],["mfa",{"2":{"2667":1}}],["mffd",{"2":{"2068":1,"2517":1,"2522":1}}],["mf34",{"2":{"226":1,"236":1}}],["mf17",{"2":{"226":1,"236":1}}],["m60",{"2":{"199":1}}],["m65",{"2":{"114":1,"222":2}}],["msel",{"2":{"2517":1,"2522":1}}],["msecs",{"2":{"1448":1}}],["mstp",{"2":{"2517":1,"2522":1}}],["msb",{"2":{"2296":2}}],["msbs",{"2":{"2295":1}}],["msg1967778",{"2":{"1376":2}}],["msg1884034",{"2":{"1375":2}}],["msg1127447",{"2":{"1367":2}}],["msg1492604",{"2":{"1353":2}}],["msystem",{"2":{"2669":1}}],["msys2",{"0":{"2669":1},"2":{"158":1,"160":1,"685":1,"2502":1,"2506":1,"2601":1,"2620":1,"2621":1,"2622":1,"2669":2}}],["msys",{"2":{"158":1,"160":1,"240":1,"2403":1,"2502":1,"2601":1,"2605":1,"2620":1,"2621":1,"2622":3,"2628":1,"2669":2,"2674":4}}],["ms",{"0":{"1503":1},"2":{"149":1,"160":1,"210":2,"220":2,"231":2,"561":1,"564":1,"570":1,"647":2,"772":1,"1410":2,"1444":1,"1591":1,"1662":1,"1667":2,"1681":4,"1801":1,"1933":19,"1935":3,"1937":22,"1938":6,"1939":1,"1949":1,"1970":1,"1971":2,"1974":1,"1985":2,"1992":1,"2003":6,"2014":1,"2068":8,"2086":2,"2222":2,"2275":1,"2288":1,"2315":4,"2499":1,"2540":19,"2650":1,"2700":1,"2726":2,"2854":2,"2862":1,"2870":1,"2872":1,"2880":1,"2882":1,"2883":1,"2923":1}}],["mschwingen",{"2":{"149":1,"218":2}}],["mctl",{"2":{"2517":1,"2522":1}}],["mcselec",{"2":{"1319":1}}],["mcmuffin",{"2":{"675":1}}],["mc",{"2":{"222":1}}],["mcall",{"2":{"160":1}}],["mcp23018",{"2":{"148":1,"149":2,"175":2}}],["mcu>",{"2":{"354":1,"2389":3,"2392":1,"2394":1,"2395":1,"2502":1}}],["mcu",{"0":{"130":1,"145":1,"392":1,"573":1,"1659":1,"2707":1,"2708":1,"2711":1,"2713":1,"2830":1},"1":{"2708":1,"2709":2,"2710":2,"2711":1,"2712":1,"2713":1},"2":{"43":2,"73":1,"93":1,"114":1,"130":2,"134":1,"145":1,"149":1,"175":1,"189":2,"191":5,"199":4,"222":1,"236":1,"285":2,"339":1,"347":1,"384":1,"385":1,"388":1,"393":5,"396":1,"397":1,"571":1,"573":1,"574":2,"622":1,"645":1,"646":1,"698":1,"699":1,"714":1,"716":2,"721":1,"723":1,"746":1,"752":1,"753":2,"754":9,"757":3,"767":2,"768":2,"1192":1,"1196":1,"1198":1,"1200":3,"1201":1,"1203":4,"1204":5,"1205":1,"1247":2,"1248":1,"1252":2,"1268":2,"1269":1,"1294":3,"1297":3,"1300":1,"1303":1,"1312":1,"1313":2,"1372":1,"1415":1,"1481":1,"1556":1,"1558":3,"1655":1,"1659":1,"1669":1,"1681":1,"1682":1,"1979":1,"1982":1,"2044":1,"2208":1,"2261":1,"2375":1,"2390":1,"2396":1,"2397":1,"2418":1,"2439":1,"2483":2,"2497":1,"2498":1,"2499":1,"2500":1,"2501":1,"2502":1,"2503":1,"2674":5,"2685":2,"2690":2,"2691":4,"2694":1,"2707":8,"2709":3,"2711":1,"2713":1,"2718":1,"2728":3,"2729":1,"2754":3,"2758":1,"2807":2,"2811":1,"2815":1,"2828":1,"2863":1}}],["mcuconf",{"2":{"40":2,"717":1,"718":1,"721":1,"768":3,"1203":3,"1204":3,"1248":3,"1269":2,"1299":1,"1303":1,"1405":2,"1556":1,"1557":1,"2697":1,"2698":1,"2699":1}}],["mcus",{"0":{"1210":1,"2674":1},"1":{"1211":1,"1212":1,"1213":1},"2":{"39":1,"76":1,"114":1,"149":1,"175":1,"189":1,"249":1,"384":1,"393":1,"396":1,"398":1,"545":1,"546":1,"690":1,"701":1,"714":1,"716":1,"753":1,"754":1,"764":1,"1198":3,"1200":4,"1201":4,"1203":2,"1204":2,"1245":1,"1266":1,"1300":1,"1372":1,"1477":1,"1740":2,"1953":1,"2273":1,"2399":1,"2404":1,"2501":1,"2685":5,"2692":1,"2710":1,"2711":3,"2729":1,"2756":1,"2802":1,"2803":1}}],["mprv",{"2":{"1776":1,"2068":1,"2517":1,"2522":1}}],["mply",{"2":{"589":2,"1776":6,"2517":1,"2522":1}}],["mp",{"2":{"143":2}}],["mpaland",{"0":{"14":1},"2":{"191":1}}],["m0",{"2":{"134":1}}],["m0lly",{"2":{"33":2,"222":1}}],["md5",{"2":{"2417":2,"2508":1}}],["mdbt40",{"2":{"2375":1}}],["mdash",{"2":{"2297":1,"2638":2,"2639":2,"2640":1,"2797":2}}],["mdloader",{"2":{"134":1}}],["md",{"0":{"683":1,"684":1,"1467":1,"2452":1,"2715":1},"2":{"114":1,"134":1,"191":2,"210":1,"339":1,"403":1,"409":1,"411":1,"412":1,"612":2,"666":1,"681":2,"1353":1,"1433":3,"1463":1,"2414":1,"2415":1,"2448":1,"2451":1,"2452":1,"2458":2,"2715":2,"2728":1}}],["mün",{"2":{"114":1}}],["mymacro2",{"2":{"2949":2}}],["mymacro1",{"2":{"2949":2}}],["mycoolkeeb",{"2":{"2714":4}}],["mycm",{"2":{"2517":1,"2522":1}}],["myusername",{"2":{"2592":1}}],["mykeyclub",{"2":{"2567":1}}],["mykeyboard",{"2":{"168":2,"184":2}}],["mylayout",{"2":{"1465":3}}],["my",{"0":{"414":1,"501":1,"617":1,"618":1,"1320":1,"1348":1,"1349":1,"1364":1},"1":{"415":1,"416":1,"417":1,"418":1,"502":1,"503":1,"504":1,"505":1,"506":1},"2":{"114":1,"120":2,"272":4,"307":6,"379":1,"393":1,"397":1,"473":1,"522":1,"523":1,"524":1,"533":2,"610":4,"629":1,"656":3,"657":3,"658":2,"659":2,"675":2,"681":5,"766":2,"1352":1,"1420":5,"1427":1,"1441":2,"1446":4,"1450":4,"1464":2,"1485":3,"1523":3,"1620":4,"1633":1,"1850":10,"2076":4,"2077":5,"2088":10,"2189":10,"2318":2,"2319":14,"2387":2,"2416":2,"2436":1,"2517":2,"2522":2,"2590":5,"2595":1,"2616":2,"2640":1,"2717":1,"2755":10,"2756":5,"2757":29,"2885":2}}],["mx",{"2":{"2421":1,"2890":1}}],["mx25l4006e",{"2":{"759":1}}],["mxss",{"2":{"222":2,"236":1}}],["mx1062",{"2":{"108":1}}],["mx5160",{"2":{"57":2,"222":1}}],["m",{"2":{"93":1,"102":1,"114":1,"158":2,"175":1,"205":1,"210":1,"215":2,"218":14,"222":1,"249":1,"266":5,"379":1,"409":1,"411":1,"420":2,"421":1,"430":2,"437":2,"462":1,"589":2,"607":1,"1528":1,"1605":2,"1625":1,"2071":6,"2181":10,"2387":1,"2503":3,"2510":3,"2522":3,"2544":10,"2563":1,"2608":2,"2634":1,"2640":1,"2882":1}}],["mumbo",{"0":{"1953":1}}],["mu",{"2":{"1490":4,"1495":4,"2524":4}}],["muhenkan",{"2":{"1358":1,"2515":1}}],["mux",{"2":{"698":4,"699":2}}],["mutually",{"2":{"1426":1}}],["mutable",{"2":{"533":1}}],["mute",{"2":{"231":1,"255":1,"2516":2,"2517":3,"2522":5}}],["mutex",{"2":{"160":1}}],["murcielago",{"2":{"253":2}}],["musl",{"2":{"2626":1}}],["musical",{"2":{"1485":1,"1493":2}}],["music",{"0":{"1490":1,"1491":1,"1492":1},"1":{"1491":1,"1492":1},"2":{"175":1,"222":1,"651":1,"1484":1,"1485":15,"1486":20,"1490":13,"1491":6,"1492":6,"1495":8,"1657":2,"2524":8,"2891":2,"2941":1}}],["must",{"2":{"88":2,"104":2,"127":2,"141":1,"168":1,"194":1,"268":1,"284":1,"337":1,"393":1,"429":2,"458":1,"476":1,"524":1,"525":1,"533":1,"564":3,"567":1,"570":2,"574":1,"591":1,"594":1,"625":2,"627":1,"668":1,"684":1,"689":1,"696":1,"698":1,"729":1,"755":1,"772":1,"805":1,"831":1,"863":1,"893":1,"923":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1094":1,"1098":1,"1128":1,"1132":1,"1166":1,"1195":1,"1200":1,"1219":1,"1250":1,"1271":1,"1294":2,"1297":2,"1332":1,"1351":1,"1404":1,"1409":1,"1423":1,"1424":1,"1434":4,"1446":1,"1518":3,"1527":1,"1545":1,"1553":1,"1589":1,"1610":2,"1611":1,"1612":12,"1616":1,"1623":1,"1625":1,"1627":2,"1630":1,"1633":1,"1641":1,"1670":1,"1697":1,"1702":1,"1739":1,"1740":1,"1742":2,"1781":2,"1788":2,"1818":1,"1931":1,"1937":1,"1938":1,"1977":1,"1979":1,"1982":1,"1986":2,"2001":1,"2011":1,"2015":1,"2044":1,"2048":2,"2057":2,"2064":2,"2178":1,"2179":2,"2208":1,"2213":1,"2261":1,"2278":1,"2280":1,"2319":1,"2330":1,"2365":1,"2376":1,"2399":1,"2404":1,"2416":1,"2418":2,"2450":1,"2465":1,"2506":1,"2522":1,"2566":2,"2568":3,"2571":1,"2594":1,"2610":2,"2612":1,"2644":1,"2651":1,"2655":2,"2674":1,"2707":1,"2720":1,"2721":1,"2726":4,"2727":1,"2728":9,"2729":2,"2749":2,"2755":1,"2756":3,"2767":2,"2768":2,"2769":1,"2773":1,"2774":2,"2776":1,"2778":1,"2794":1,"2853":1,"2854":2,"2856":1,"2857":1,"2858":1,"2859":1,"2864":2,"2871":2,"2872":1,"2875":1,"2877":2,"2878":2,"2880":2,"2881":1,"2883":1,"2886":1,"2922":1,"2929":2}}],["multilingual",{"2":{"2887":3}}],["multilayer",{"2":{"285":1}}],["multitude",{"2":{"2684":1}}],["multiarch",{"2":{"2674":1}}],["multimeter",{"2":{"2434":1}}],["multisplash",{"2":{"1849":3,"2085":6,"2894":2}}],["multinexus",{"2":{"1849":3,"2085":3,"2894":1}}],["multicross",{"2":{"1849":3,"2085":3,"2894":1}}],["multiwide",{"2":{"1849":3,"2085":3,"2894":1}}],["multiprocessing",{"0":{"537":1}}],["multiplier",{"2":{"1951":1,"1980":1,"1986":7,"2047":3}}],["multiplicative",{"2":{"1493":1}}],["multiplication",{"2":{"175":1}}],["multiples",{"2":{"1934":1}}],["multiplexing",{"0":{"1484":1},"2":{"1484":4,"1486":2,"2695":1}}],["multiplexer",{"2":{"622":1}}],["multiple",{"0":{"481":1,"483":1,"1433":1,"1546":1,"1670":1},"1":{"1434":1,"1435":1,"1436":1,"1437":1,"1438":1,"1439":1},"2":{"75":1,"114":1,"160":3,"222":1,"234":2,"236":1,"249":1,"307":1,"308":1,"312":1,"379":1,"433":2,"455":1,"469":2,"474":2,"477":1,"483":1,"512":1,"527":1,"649":1,"677":1,"688":2,"699":1,"754":1,"755":1,"756":1,"762":1,"763":1,"768":1,"773":1,"776":1,"779":1,"782":1,"923":1,"1094":1,"1128":1,"1247":1,"1248":1,"1259":1,"1262":1,"1269":1,"1277":1,"1279":1,"1409":2,"1411":1,"1422":1,"1426":1,"1433":1,"1436":1,"1440":1,"1444":3,"1465":1,"1472":1,"1486":1,"1517":1,"1522":1,"1538":1,"1541":1,"1546":2,"1602":1,"1615":1,"1619":1,"1641":1,"1642":1,"1665":1,"1670":1,"1681":1,"1787":1,"1801":1,"1849":4,"1936":1,"1937":1,"1962":1,"1983":4,"1985":3,"2057":1,"2085":5,"2189":1,"2191":1,"2213":1,"2293":1,"2377":1,"2434":1,"2450":1,"2453":2,"2475":1,"2535":1,"2557":1,"2567":2,"2569":1,"2584":1,"2587":1,"2610":1,"2616":1,"2633":1,"2640":1,"2674":1,"2726":1,"2728":2,"2729":1,"2741":1,"2775":1,"2785":1,"2824":1,"2829":1,"2843":1,"2856":1,"2864":1,"2923":1,"2926":1,"2927":1,"2931":1}}],["multiply",{"2":{"15":1}}],["multi",{"0":{"923":1,"1094":1,"1128":1},"2":{"175":1,"222":1,"2926":1}}],["multibuild",{"2":{"149":1,"199":1}}],["mun",{"2":{"114":1}}],["much",{"0":{"2903":1},"2":{"98":1,"100":1,"123":1,"153":1,"173":1,"178":1,"189":1,"190":1,"244":1,"247":1,"248":1,"251":1,"263":1,"307":1,"417":1,"536":1,"588":1,"608":1,"757":1,"1342":1,"1421":1,"1470":1,"1493":1,"1510":1,"1525":1,"1558":1,"1766":1,"1787":1,"1938":1,"1939":1,"1974":1,"2042":1,"2085":2,"2330":1,"2379":1,"2382":1,"2396":1,"2428":1,"2429":1,"2466":1,"2591":1,"2667":1,"2669":1,"2670":1,"2686":1,"2695":1,"2704":1,"2727":1,"2884":1,"2949":1}}],["mv",{"2":{"70":1,"744":1}}],["med",{"2":{"1686":22}}],["medium",{"0":{"1213":1},"2":{"1684":1,"1685":1,"1686":5,"2508":2}}],["media",{"0":{"1776":1,"2517":1},"2":{"73":1,"191":1,"266":1,"561":1,"591":1,"1776":1,"2057":1,"2068":3,"2517":13,"2522":9,"2558":1,"2889":1}}],["meh",{"2":{"1377":1,"2541":2,"2542":1,"2547":1,"2572":3,"2651":1}}],["mentioning",{"2":{"2736":1}}],["mentioned",{"2":{"228":1,"276":1,"757":1,"1346":1,"1774":1,"1846":1,"2082":1,"2310":1,"2490":1,"2505":1}}],["menu",{"0":{"1350":1},"2":{"688":1,"1350":1,"1788":2,"2273":1,"2331":1,"2516":3,"2522":3,"2622":1,"2929":2,"2931":1}}],["messing",{"2":{"1365":1}}],["messages",{"0":{"1327":1,"1923":1},"2":{"82":1,"160":1,"175":2,"199":2,"210":1,"434":5,"492":1,"609":1,"1209":3,"1324":1,"1325":1,"1326":1,"1327":1,"1919":1,"1923":1,"1975":1,"1998":2,"2418":10,"2434":1,"2640":1,"2819":2,"2947":1}}],["message",{"0":{"1333":1},"2":{"39":1,"93":1,"149":1,"236":1,"405":1,"406":1,"407":1,"411":1,"452":1,"453":1,"454":1,"455":1,"460":1,"461":1,"469":1,"607":2,"617":1,"1332":2,"1595":1,"1948":1,"2612":1,"2628":1,"2634":1,"2640":1,"2726":1,"2755":3,"2757":1}}],["mesh",{"2":{"613":1}}],["meck",{"2":{"253":2}}],["mechanics",{"2":{"2310":1}}],["mechanical",{"0":{"1354":1,"2476":1},"1":{"2477":1,"2478":1,"2479":1,"2480":1,"2481":1},"2":{"561":1,"684":1,"1335":1,"1354":2,"1409":1,"2469":1,"2477":1,"2579":1}}],["mechanism",{"2":{"160":1,"622":1,"628":1,"1680":1,"2568":1,"2700":1,"2741":1}}],["mechanisms",{"2":{"152":1,"665":1,"2569":1,"2741":1}}],["mechmerlin",{"2":{"429":2}}],["mechmini",{"2":{"143":4}}],["mechwild",{"2":{"222":1,"236":1,"266":2}}],["mechkeys",{"0":{"256":1},"1":{"257":1,"258":1,"259":1,"260":1},"2":{"143":5,"149":2,"266":1}}],["mechloving",{"2":{"134":1}}],["mechlovin9",{"2":{"102":3,"114":1,"222":1}}],["mechlovin",{"2":{"102":3,"134":1,"175":1,"210":1,"222":9,"249":1,"266":2,"308":1}}],["meant",{"2":{"1451":1,"2678":1,"2784":1}}],["meantime",{"2":{"403":1}}],["mean",{"0":{"615":1},"2":{"263":1,"603":1,"1356":1,"2561":1,"2726":1,"2728":1}}],["means",{"2":{"251":1,"263":1,"386":1,"399":1,"414":1,"455":1,"469":1,"561":1,"607":1,"615":1,"629":1,"672":1,"676":1,"719":1,"1368":1,"1378":1,"1398":1,"1447":2,"1485":1,"1491":1,"1545":1,"1594":1,"1662":1,"1774":1,"1781":1,"1803":1,"1934":1,"2016":1,"2073":1,"2265":1,"2294":1,"2295":1,"2310":1,"2317":4,"2325":1,"2386":1,"2417":2,"2426":1,"2427":1,"2466":1,"2474":2,"2616":1,"2628":1,"2695":1,"2731":1,"2734":1,"2747":1,"2761":1,"2784":1,"2846":1,"2851":1,"2886":1,"2915":1}}],["meaningful",{"2":{"2731":1}}],["meaning",{"2":{"245":1,"772":1,"797":1,"1297":1,"1380":1,"1409":1,"1423":1,"1525":1,"1641":1,"1919":1,"2016":1,"2069":1,"2427":1,"2466":1,"2573":1,"2755":1}}],["measure",{"2":{"690":1,"1974":1}}],["measured",{"2":{"202":1,"1410":1,"1487":1,"1786":1,"2309":1,"2757":1}}],["measurement",{"2":{"199":1,"2379":1,"2685":1,"2757":1}}],["merchantability",{"2":{"1467":1,"2732":1}}],["mercutio",{"2":{"222":1,"317":1}}],["merits",{"2":{"1343":1}}],["meridian",{"2":{"222":1}}],["merely",{"2":{"557":1,"2293":1}}],["merges",{"2":{"279":1,"399":1,"402":1,"406":2,"407":1,"408":1,"412":3}}],["merged",{"2":{"114":1,"134":1,"402":4,"403":2,"405":1,"406":1,"407":1,"411":2,"412":4,"414":1,"458":1,"607":1,"2567":2,"2726":1,"2728":2,"2729":1,"2731":1}}],["merge",{"0":{"405":1,"406":1,"407":1,"408":1,"409":1,"410":1,"2633":1},"1":{"411":1,"412":1,"2634":1},"2":{"0":1,"1":1,"75":1,"114":2,"158":1,"175":1,"191":1,"199":2,"210":2,"212":1,"222":1,"275":1,"276":1,"328":1,"344":3,"399":1,"402":1,"403":3,"407":1,"408":1,"409":2,"411":1,"412":17,"423":2,"537":1,"596":1,"1341":1,"1627":1,"1983":2,"2569":2,"2570":1,"2571":1,"2632":1,"2633":1,"2634":6,"2638":1,"2726":4,"2728":1,"2729":1,"2730":1,"2731":1,"2904":1}}],["merging",{"0":{"423":1},"2":{"0":1,"9":1,"29":1,"42":1,"52":1,"73":1,"175":1,"423":1,"2634":1,"2726":2}}],["metrics",{"2":{"2054":1,"2902":1}}],["met",{"2":{"1670":1}}],["metal",{"2":{"2427":1,"2739":1}}],["metaclasses",{"2":{"538":1}}],["metadata",{"0":{"580":1,"2852":1},"2":{"172":1,"175":1,"266":1,"367":2,"383":3,"555":1,"578":2,"580":1,"2659":1,"2851":1}}],["meticulously",{"2":{"212":1}}],["methods=",{"0":{"369":1,"370":1,"371":1,"372":1}}],["methods",{"2":{"140":1,"491":2,"1315":1,"1349":1,"1409":2,"1413":1,"1594":1,"1835":1,"1842":1,"1850":2,"2088":2,"2277":1,"2388":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":2,"2404":1,"2406":2,"2408":2,"2410":2,"2425":1,"2580":1,"2674":1,"2741":1}}],["method",{"0":{"1413":1},"2":{"39":1,"168":1,"184":1,"236":1,"285":1,"293":1,"305":1,"314":1,"371":1,"372":1,"519":1,"569":1,"1409":1,"1594":2,"1633":1,"1850":1,"2088":1,"2261":1,"2268":1,"2273":2,"2291":1,"2325":1,"2330":1,"2331":2,"2388":1,"2475":1,"2784":1,"2790":1,"2818":1}}],["me",{"0":{"615":1},"2":{"168":2,"184":2,"199":1,"561":1,"603":1,"1352":1,"1417":1,"2319":1,"2579":1,"2584":1,"2598":1}}],["mem",{"2":{"2757":9}}],["memset",{"2":{"2059":2}}],["member",{"2":{"414":1,"1781":1,"1783":1,"1784":1,"2731":1}}],["members",{"0":{"732":1,"808":1,"834":1,"866":1,"896":1,"931":1,"965":1,"999":1,"1033":1,"1067":1,"1101":1,"1135":1,"1169":1,"1222":1,"1645":1,"1747":1,"1749":1},"2":{"312":1,"1781":2,"2477":1,"2567":1,"2642":1}}],["memory",{"0":{"323":1,"1450":1,"2186":1},"2":{"160":1,"236":1,"308":1,"328":1,"613":1,"749":2,"750":1,"752":1,"1348":1,"1365":1,"1413":1,"1417":1,"1428":2,"1490":1,"1525":1,"1526":1,"1609":2,"1619":1,"1662":1,"1851":1,"1952":3,"1953":5,"1962":1,"2090":1,"2297":1,"2389":1,"2482":1,"2502":2,"2503":1,"2508":1,"2523":1,"2615":3,"2705":3,"2734":2,"2741":1,"2752":1,"2756":1,"2757":2,"2950":3}}],["memcmp",{"2":{"114":1}}],["meletrix",{"2":{"2567":1}}],["melt",{"2":{"2427":1,"2429":1}}],["melting",{"2":{"2427":1}}],["melodies",{"2":{"210":1}}],["melody96",{"2":{"159":2,"160":1,"226":2,"236":1}}],["melgeek",{"2":{"134":1,"253":10}}],["meishi",{"2":{"143":2}}],["meishi2",{"2":{"143":2}}],["meira",{"2":{"143":2}}],["meetup",{"2":{"134":1}}],["mtb60",{"2":{"222":1}}],["mtbkeys",{"2":{"222":1}}],["mt980",{"2":{"159":2}}],["mt84",{"2":{"159":2,"277":1}}],["mt64rgb",{"2":{"159":2,"222":1}}],["mt40",{"2":{"159":2}}],["mt",{"2":{"28":1,"159":6,"160":1,"277":1,"297":1,"564":2,"1690":1,"1795":2,"2318":1,"2542":1,"2572":2,"2573":1,"2574":1,"2575":2,"2909":1,"2923":1}}],["mkand",{"2":{"2945":1}}],["mkmakeifeq",{"2":{"2455":1}}],["mkmake",{"2":{"2455":1}}],["mkdir",{"2":{"1628":1,"2605":1}}],["mk64fx512",{"2":{"551":1}}],["mk66fx1m0",{"2":{"133":1,"134":1,"551":1}}],["mk66f18",{"2":{"81":1,"93":2,"133":1,"134":1}}],["mk20dx256",{"2":{"551":1}}],["mk20dx128",{"2":{"551":1}}],["mkl26z64",{"2":{"551":1}}],["mk0",{"2":{"199":1}}],["mkiirgb",{"2":{"205":1}}],["mkii",{"2":{"114":1}}],["mk",{"0":{"571":1,"1464":1,"1632":2,"1678":1,"2376":1,"2418":1,"2455":1,"2889":1},"1":{"572":1,"573":1,"574":1,"575":1,"1465":1},"2":{"22":1,"39":1,"40":1,"70":29,"74":1,"76":1,"87":1,"94":1,"103":1,"114":2,"118":2,"119":1,"133":5,"134":8,"141":1,"149":2,"175":3,"187":1,"199":1,"213":1,"222":5,"235":1,"262":1,"266":11,"293":1,"305":1,"308":3,"314":1,"344":1,"348":1,"433":1,"555":2,"558":1,"567":1,"623":1,"624":1,"625":1,"655":1,"665":3,"666":1,"667":1,"669":2,"672":2,"673":5,"691":1,"703":1,"725":1,"742":1,"743":1,"746":1,"753":1,"765":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1195":1,"1198":2,"1201":2,"1215":1,"1246":1,"1267":1,"1284":1,"1289":1,"1322":1,"1330":1,"1369":1,"1391":1,"1399":1,"1413":1,"1414":2,"1433":1,"1434":2,"1463":2,"1464":7,"1465":1,"1471":2,"1472":2,"1473":1,"1477":1,"1480":1,"1481":1,"1483":1,"1500":2,"1526":1,"1542":1,"1547":1,"1578":1,"1589":1,"1594":1,"1595":1,"1602":1,"1622":1,"1623":1,"1633":1,"1640":1,"1655":1,"1656":1,"1661":1,"1665":1,"1667":1,"1678":1,"1698":1,"1739":1,"1763":1,"1768":1,"1790":1,"1797":1,"1845":1,"1850":2,"1919":1,"1932":1,"1936":1,"1937":22,"1938":2,"1944":1,"1957":1,"1962":1,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1984":1,"2017":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2055":1,"2066":1,"2081":1,"2088":2,"2179":2,"2210":1,"2215":1,"2220":1,"2250":1,"2258":1,"2268":1,"2284":1,"2293":1,"2294":1,"2295":1,"2296":1,"2297":1,"2298":1,"2302":1,"2309":1,"2312":1,"2320":1,"2326":1,"2329":2,"2330":1,"2374":1,"2376":2,"2378":1,"2388":1,"2389":1,"2392":1,"2394":1,"2395":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2404":1,"2406":2,"2408":2,"2410":2,"2414":2,"2415":1,"2417":1,"2419":4,"2451":1,"2455":22,"2497":1,"2605":1,"2608":1,"2674":1,"2691":1,"2702":1,"2703":1,"2724":1,"2726":2,"2728":4,"2753":2,"2756":11,"2757":2,"2759":1,"2851":1,"2889":1,"2891":1,"2908":1,"2912":2,"2941":1,"2945":6,"2947":1,"2949":1}}],["mib",{"2":{"2387":2}}],["mimic",{"2":{"2317":1,"2319":1}}],["mi",{"2":{"1919":2,"1925":174,"1926":2,"2418":2,"2539":174}}],["mikrocontroller",{"2":{"1367":1}}],["mike1808",{"2":{"114":1}}],["might",{"2":{"397":1,"403":1,"420":1,"429":1,"561":1,"686":2,"749":2,"766":1,"1365":2,"1409":2,"1410":6,"1422":2,"1427":1,"1446":1,"1463":1,"1529":1,"1590":1,"1595":1,"1615":1,"1619":1,"1923":1,"1968":1,"1974":1,"2294":1,"2309":1,"2413":1,"2415":1,"2434":1,"2453":1,"2662":1,"2710":1,"2944":1,"2950":1}}],["migrator",{"2":{"65":1}}],["migrations",{"2":{"77":1,"134":1,"199":1,"266":3}}],["migration",{"0":{"28":1,"69":1,"77":1,"265":1,"275":1},"2":{"70":1,"77":1,"113":1,"114":1,"134":2,"149":1,"172":1,"175":1,"199":3,"201":1,"212":1,"238":1,"265":1}}],["migrating",{"0":{"3":1,"7":1,"20":1,"26":1,"48":1},"1":{"21":1},"2":{"182":1,"232":1,"2728":1}}],["migrated",{"2":{"118":1,"126":1,"128":1,"140":1,"220":1,"262":1,"2722":1,"2728":2}}],["migrate",{"0":{"21":1,"24":1,"443":1},"2":{"75":1,"113":1,"114":4,"133":2,"134":6,"149":3,"191":1,"199":7,"222":1,"228":1,"236":9,"249":27,"266":66,"277":11,"294":4,"304":1,"307":1,"308":1,"317":4,"328":25,"332":1,"333":1,"337":1,"339":1,"443":1,"588":1}}],["mixture",{"2":{"2291":1}}],["mixing",{"2":{"2261":1}}],["mix",{"2":{"1288":1,"1417":1,"1423":1,"2573":1}}],["mixed",{"0":{"2746":1},"2":{"344":1,"419":1,"512":1,"613":1,"1499":1,"2750":1}}],["mixup",{"2":{"199":1}}],["mit",{"2":{"2748":1}}],["mitchsplit",{"0":{"260":1},"2":{"256":1}}],["mitigates",{"2":{"1352":1}}],["mitigated",{"2":{"263":1,"2573":1}}],["mitigate",{"0":{"312":1},"2":{"222":1,"317":1,"1409":2,"2903":1,"2931":1}}],["mitigation",{"2":{"175":1,"312":1}}],["miiiw",{"2":{"253":2,"266":1}}],["mice",{"2":{"2046":1,"2439":1,"2477":1}}],["michi",{"0":{"1394":1},"2":{"199":1,"1389":1,"1391":3,"2895":1}}],["micdrop",{"2":{"178":1}}],["microcontrol",{"2":{"2830":1}}],["microcontroller>",{"2":{"430":1}}],["microcontroller",{"0":{"2424":1},"2":{"81":1,"430":2,"433":1,"545":2,"554":1,"575":1,"701":1,"720":1,"760":1,"762":1,"768":1,"1548":1,"1558":1,"1738":1,"2273":1,"2421":1,"2430":3,"2433":1,"2466":1,"2482":2,"2494":1,"2502":1,"2503":1,"2714":1,"2728":1,"2739":1,"2853":2,"2901":1}}],["microcontrollers",{"0":{"545":1},"1":{"546":1,"547":1,"548":1,"549":1,"550":1,"551":1,"552":1,"553":1,"554":1},"2":{"69":1,"203":2,"263":1,"554":2,"1296":1,"1943":1,"2396":1,"2402":1,"2482":2,"2714":3,"2736":1,"2908":1}}],["microchip",{"2":{"749":3,"1283":1,"2178":1,"2498":1}}],["microsoft",{"2":{"1350":1,"2674":1}}],["micros",{"2":{"568":1,"685":1,"2266":1,"2267":1,"2486":1,"2700":1,"2706":1,"2835":1}}],["microseconds",{"2":{"561":1,"1285":1,"2872":1}}],["microdox",{"2":{"191":2}}],["micronucleus",{"2":{"149":1}}],["micro",{"0":{"271":1,"1391":1,"1394":1,"2484":1,"2486":1,"2702":1},"1":{"1392":1,"1393":1,"1394":1,"1395":1,"1396":1,"1397":1,"1398":1,"2485":1,"2487":1},"2":{"77":1,"86":2,"93":1,"173":1,"178":1,"187":1,"191":1,"271":2,"322":2,"546":1,"689":4,"1317":1,"1371":2,"1391":2,"1396":1,"1398":1,"1400":1,"1401":1,"1406":1,"1936":1,"2261":1,"2263":1,"2273":2,"2279":1,"2392":1,"2393":1,"2421":1,"2423":1,"2424":3,"2484":2,"2485":3,"2486":2,"2487":3,"2499":4,"2502":5,"2503":1,"2589":1,"2675":1,"2688":1,"2690":1,"2691":6,"2700":1,"2702":2,"2703":1,"2714":1,"2895":3}}],["mio",{"2":{"143":2}}],["mirrored",{"2":{"2302":1}}],["mirrors",{"2":{"570":1,"2276":1,"2319":3,"2590":1,"2728":1}}],["mirroring",{"2":{"114":1,"126":1,"2728":1}}],["mirror",{"2":{"76":1,"114":1,"149":1,"570":1,"1852":1,"2091":1,"2276":1,"2880":10}}],["mint",{"2":{"2626":1}}],["minted",{"2":{"2597":1}}],["minus",{"2":{"1692":1,"2512":1,"2518":1,"2522":2}}],["minuted",{"2":{"1961":1}}],["minute",{"0":{"2378":1},"1":{"2379":1,"2380":1,"2381":1},"2":{"1487":1,"2378":1,"2879":1}}],["minutes",{"2":{"1311":1,"2428":1}}],["mine",{"2":{"1470":1,"2387":1}}],["mind",{"2":{"512":1,"538":1,"604":1,"609":1,"613":1,"675":1,"1380":1,"1415":1,"1451":1,"1591":1,"1666":1,"1952":1,"2259":1,"2289":1,"2309":1,"2423":1,"2428":1,"2430":1,"2434":1,"2460":1,"2461":1,"2463":1,"2466":1,"2758":1,"2902":1}}],["mins",{"2":{"379":1,"589":2,"1593":2,"1600":1,"2512":1,"2522":1,"2563":1}}],["min",{"0":{"1912":1,"1915":1,"2172":1,"2175":1},"2":{"222":1,"308":1,"1288":1,"1493":2,"1527":1,"1633":1,"1681":3,"1740":3,"1749":1,"1850":4,"1855":1,"1913":1,"1916":1,"1968":2,"2088":4,"2094":1,"2095":6,"2096":3,"2173":1,"2176":1}}],["mino",{"2":{"210":1,"241":6}}],["minor",{"2":{"39":1,"41":1,"64":1,"86":1,"114":1,"149":1,"175":1,"191":1,"210":2,"294":1,"328":1,"333":1,"339":1,"1493":1}}],["mingw64",{"2":{"2622":1,"2669":1,"2674":3}}],["mingw",{"2":{"158":1,"339":1,"2506":2,"2622":2}}],["minizone",{"2":{"249":1}}],["miniaxe",{"2":{"241":2,"249":1}}],["minitkl",{"2":{"210":1}}],["minitomic",{"2":{"57":2}}],["mini36",{"2":{"175":1}}],["mini42",{"2":{"175":1}}],["minidox",{"2":{"143":2,"149":1,"205":1,"236":1,"277":1}}],["mini",{"2":{"134":1,"143":4,"149":1,"222":3,"1679":1,"2424":1}}],["minimize",{"2":{"609":1,"2720":1}}],["minimise",{"2":{"103":1,"308":1,"752":1,"754":1,"2755":1,"2901":1}}],["minim",{"2":{"143":2}}],["minimally",{"2":{"2277":1,"2728":1}}],["minimal",{"2":{"128":1,"160":1,"191":1,"203":1,"328":1,"2310":1,"2459":1,"2756":1,"2889":1,"2902":1,"2903":1}}],["minimum",{"2":{"70":1,"134":1,"210":1,"285":1,"719":2,"720":1,"748":1,"1630":1,"1633":1,"1742":1,"1749":1,"1971":5,"1975":2,"2179":1,"2201":6,"2379":1,"2568":1,"2709":1,"2728":2,"2774":1,"2945":1}}],["midpoint",{"2":{"1749":1}}],["midway",{"2":{"633":1}}],["midway60",{"2":{"222":1}}],["mid",{"2":{"564":1,"1749":1,"1757":1}}],["middle",{"2":{"40":1,"210":1,"393":1,"763":1,"1448":1,"1642":1,"2048":2,"2940":1}}],["mididevice",{"2":{"1924":1}}],["midi",{"0":{"1494":1,"1918":1,"1921":1,"1922":1,"1924":1,"1928":1,"2539":1},"1":{"1919":1,"1920":1,"1921":1,"1922":1,"1923":2,"1924":2,"1925":1,"1926":1,"1927":1,"1928":1,"1929":1},"2":{"40":1,"63":1,"70":1,"75":1,"111":1,"114":1,"172":1,"175":2,"199":3,"210":1,"231":3,"249":1,"266":1,"574":2,"575":1,"651":1,"1486":4,"1494":1,"1919":4,"1920":1,"1921":2,"1922":2,"1923":3,"1924":15,"1925":147,"1926":1,"1928":2,"1929":9,"2249":1,"2294":1,"2418":3,"2477":1,"2539":148,"2728":2,"2941":1}}],["millimeters",{"2":{"1970":2,"1974":1}}],["millivolts",{"2":{"744":1,"2858":1}}],["millisecond",{"2":{"656":1,"1410":1,"1801":1}}],["milliseconds",{"2":{"15":1,"119":1,"195":1,"561":2,"564":2,"565":1,"656":1,"657":2,"768":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"798":1,"802":1,"828":1,"857":1,"889":1,"921":1,"956":1,"990":1,"1024":1,"1058":1,"1092":1,"1126":1,"1160":1,"1208":1,"1216":1,"1291":1,"1410":1,"1412":1,"1413":7,"1444":1,"1448":1,"1455":2,"1579":1,"1594":1,"1598":1,"1792":1,"1800":1,"1852":2,"1934":1,"1935":1,"1936":2,"1939":1,"1940":1,"1957":1,"1959":1,"1960":1,"1968":1,"1970":1,"1974":1,"1980":1,"2086":1,"2091":2,"2185":1,"2187":6,"2191":1,"2222":1,"2231":1,"2235":1,"2275":3,"2309":1,"2310":1,"2327":1,"2392":1,"2543":1,"2754":2,"2764":1,"2776":1,"2854":2,"2858":1,"2861":1,"2862":1,"2870":1,"2871":2,"2872":1,"2874":1,"2878":2,"2880":3,"2882":1,"2883":1,"2910":1,"2912":1,"2922":1,"2923":2,"2931":1}}],["mild",{"2":{"222":1}}],["milc",{"2":{"65":2,"95":1,"489":3,"490":1}}],["milk",{"2":{"27":2}}],["misfires",{"2":{"1608":1,"1610":1,"1614":1,"1615":1}}],["miso",{"2":{"1247":2,"1248":5,"2483":1,"2485":1,"2487":2,"2489":1,"2491":2,"2493":2,"2495":2,"2679":1,"2702":1}}],["misterknife",{"2":{"222":3}}],["mistaken",{"2":{"2265":1}}],["mistakenly",{"2":{"243":1,"331":1}}],["mistake",{"2":{"92":1}}],["mishandling",{"2":{"199":1}}],["mis",{"2":{"199":1,"222":1}}],["mismatch",{"2":{"175":1,"411":1}}],["mismatched",{"2":{"149":1}}],["miss",{"2":{"617":1,"2554":1,"2573":1}}],["mission",{"2":{"199":2,"2517":2,"2522":2}}],["missing",{"2":{"18":1,"73":1,"92":1,"93":1,"134":4,"149":4,"160":1,"166":1,"175":3,"191":2,"199":2,"212":1,"222":4,"236":2,"249":1,"294":1,"328":1,"333":1,"2448":1,"2585":1,"2726":1,"2764":1}}],["missed",{"2":{"149":1,"160":1,"236":1}}],["miscellaneous",{"0":{"1363":1},"1":{"1364":1,"1365":1,"1366":1,"1367":1,"1368":1,"1369":1,"1370":1,"1371":1,"1372":1,"1373":1,"1374":1,"1375":1,"1376":1},"2":{"210":1,"222":1,"266":3,"308":1,"317":1}}],["misc",{"2":{"149":1,"249":2,"266":3,"277":1,"2068":1}}],["misconfigured",{"2":{"18":1}}],["misplaced",{"2":{"134":1}}],["mocks",{"2":{"2943":1}}],["mock",{"0":{"2943":1},"2":{"2943":1}}],["mocking",{"2":{"544":1,"2945":2}}],["moff",{"2":{"2304":1,"2551":1}}],["mood",{"2":{"2183":1,"2184":2,"2187":1,"2210":1,"2877":1,"2894":1}}],["moon",{"2":{"317":1}}],["moonlander",{"2":{"175":1,"199":1,"241":2,"249":1,"277":2}}],["mounting",{"2":{"2430":1}}],["mount",{"2":{"2421":1,"2424":1}}],["mounted",{"2":{"2178":1,"2689":1}}],["mousing",{"2":{"1997":1}}],["mousereport",{"2":{"1990":6}}],["mouse=true",{"2":{"1322":1}}],["mousekey",{"2":{"63":1,"70":1,"75":1,"111":1,"114":1,"172":1,"175":2,"210":1,"220":1,"236":1,"566":5,"574":1,"575":2,"1365":1,"1935":16,"1936":12,"1939":13,"1940":7,"2210":1,"2418":1,"2889":1}}],["mousekeysaccel",{"2":{"1935":1}}],["mousekeys",{"0":{"2832":1},"2":{"38":1,"160":1,"175":1,"191":1,"564":1,"1964":1,"2832":1}}],["mouse",{"0":{"246":1,"316":1,"566":1,"1367":1,"1930":1,"1931":1,"1932":1,"1933":1,"1934":1,"1940":1,"1941":1,"1990":1,"1992":1,"1993":1,"1999":1,"2004":1,"2005":1,"2006":1,"2008":1,"2011":1,"2013":1,"2015":1,"2037":1,"2046":1,"2049":1,"2050":1,"2051":1,"2540":1,"2873":1},"1":{"1931":1,"1932":2,"1933":2,"1934":1,"1935":2,"1936":2,"1937":2,"1938":2,"1939":2,"1940":2,"1941":1,"1991":1,"1992":1,"1993":1,"1994":1,"1995":1,"1996":1,"1997":1,"2000":1,"2001":1,"2002":1,"2003":1,"2004":1,"2005":2,"2006":3,"2007":1,"2008":1,"2009":1,"2010":1,"2011":1,"2012":1,"2013":1,"2014":1,"2015":1,"2038":1,"2039":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2045":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1},"2":{"38":1,"74":3,"100":1,"112":7,"114":5,"133":1,"134":1,"149":1,"160":3,"174":6,"175":7,"190":5,"191":4,"210":3,"222":2,"231":1,"236":2,"246":3,"249":1,"266":2,"277":3,"285":2,"291":2,"294":1,"308":1,"316":2,"317":2,"320":1,"328":2,"339":3,"561":1,"564":1,"574":1,"575":4,"599":1,"1518":1,"1625":2,"1639":2,"1930":2,"1931":3,"1932":1,"1933":39,"1934":1,"1936":5,"1937":2,"1939":1,"1940":4,"1941":3,"1971":6,"1983":8,"1984":4,"1985":3,"1986":5,"1988":14,"1989":9,"1990":13,"1992":4,"1993":12,"1994":17,"1995":1,"1996":10,"1997":3,"1999":7,"2000":7,"2001":15,"2002":1,"2003":9,"2004":5,"2005":4,"2006":3,"2007":1,"2008":33,"2009":11,"2011":10,"2012":16,"2013":10,"2014":8,"2015":10,"2037":1,"2040":1,"2041":1,"2042":1,"2043":1,"2044":1,"2046":18,"2047":5,"2048":12,"2049":1,"2050":4,"2051":3,"2052":5,"2053":4,"2057":1,"2068":4,"2294":1,"2298":1,"2374":1,"2540":39,"2586":1,"2832":1,"2873":3,"2875":2,"2882":2,"2913":1,"2931":1,"2936":1}}],["motivations",{"2":{"2902":1}}],["motions",{"2":{"190":1}}],["motion",{"2":{"174":1,"175":1,"1939":1,"1968":1,"1983":3,"1985":7,"1986":1,"1999":1}}],["motors",{"2":{"1683":1,"1684":1}}],["motor",{"0":{"1683":1},"1":{"1684":1,"1685":1},"2":{"1679":1,"1683":1,"1684":2,"1685":2}}],["moky88",{"2":{"294":1}}],["moky",{"2":{"294":1}}],["momokai",{"2":{"266":1}}],["moment",{"2":{"222":2,"1786":5,"2650":1,"2653":1,"2795":1,"2926":1,"2940":1}}],["momentarily",{"2":{"73":1,"1422":4,"1938":1,"2321":2,"2535":2,"2912":1}}],["momentary",{"0":{"3":1,"2319":1},"2":{"199":1,"1353":1,"1422":1,"1612":5,"1690":2,"1766":1,"1779":3,"1789":2,"1791":1,"1937":8,"2304":4,"2320":1,"2551":4}}],["mojo75",{"2":{"253":2}}],["mojo68",{"2":{"253":2}}],["morgan65",{"2":{"222":2}}],["moreover",{"2":{"2261":1}}],["more",{"0":{"1767":1,"2417":1},"1":{"2418":1,"2419":1},"2":{"2":1,"6":2,"8":1,"14":1,"36":1,"39":1,"43":2,"47":1,"49":1,"76":1,"82":1,"93":1,"99":2,"107":1,"109":1,"111":1,"112":1,"114":6,"118":1,"133":2,"134":4,"149":6,"152":1,"153":2,"160":1,"163":1,"166":1,"174":3,"175":4,"181":1,"187":1,"189":1,"191":4,"194":2,"195":1,"196":1,"198":1,"199":6,"201":1,"210":2,"217":1,"222":6,"224":1,"228":2,"229":1,"231":1,"232":1,"236":3,"245":1,"247":1,"248":1,"249":1,"251":1,"265":1,"266":1,"288":2,"289":1,"294":1,"297":1,"298":1,"304":1,"306":1,"308":3,"315":1,"320":2,"331":1,"373":1,"396":1,"403":1,"417":2,"425":1,"426":1,"430":1,"466":1,"467":1,"468":1,"477":1,"505":1,"512":1,"514":1,"521":1,"529":2,"538":1,"540":1,"541":1,"555":1,"561":2,"565":1,"570":2,"574":2,"575":1,"599":1,"607":1,"609":1,"625":1,"626":3,"671":1,"674":1,"684":2,"686":2,"688":1,"690":2,"698":1,"699":1,"720":1,"752":1,"755":1,"766":1,"860":1,"891":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1192":1,"1199":1,"1247":1,"1288":1,"1298":1,"1312":1,"1318":1,"1330":2,"1345":1,"1347":1,"1368":1,"1376":1,"1377":1,"1378":2,"1379":1,"1397":1,"1398":1,"1403":1,"1410":1,"1422":1,"1425":1,"1426":1,"1427":3,"1444":2,"1446":1,"1463":1,"1467":1,"1469":1,"1476":1,"1477":1,"1491":1,"1492":2,"1498":1,"1501":1,"1503":2,"1510":1,"1517":1,"1538":1,"1558":1,"1580":1,"1592":1,"1602":1,"1605":1,"1609":1,"1610":1,"1614":1,"1619":1,"1630":1,"1657":1,"1662":1,"1670":1,"1697":1,"1766":1,"1768":1,"1773":2,"1777":1,"1781":1,"1801":1,"1803":1,"1835":1,"1846":2,"1850":1,"1919":1,"1923":1,"1934":1,"1935":1,"1940":1,"1953":1,"1965":1,"1986":1,"1994":1,"1999":1,"2007":1,"2015":1,"2037":1,"2054":1,"2065":1,"2070":1,"2082":2,"2088":1,"2091":1,"2095":1,"2096":1,"2179":1,"2191":1,"2207":1,"2293":1,"2296":1,"2299":1,"2300":1,"2309":2,"2310":1,"2317":2,"2326":1,"2328":1,"2331":1,"2374":1,"2379":2,"2388":1,"2413":1,"2414":2,"2417":4,"2418":4,"2423":2,"2424":2,"2425":2,"2427":1,"2428":1,"2429":1,"2437":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1,"2452":1,"2454":1,"2455":1,"2466":2,"2468":1,"2478":1,"2490":1,"2499":1,"2502":1,"2503":1,"2509":1,"2521":1,"2562":2,"2564":3,"2565":1,"2572":2,"2610":1,"2612":1,"2616":1,"2617":1,"2622":1,"2638":1,"2640":1,"2642":1,"2650":1,"2656":1,"2671":1,"2674":1,"2704":1,"2712":1,"2713":1,"2714":4,"2723":1,"2727":2,"2729":1,"2730":1,"2731":1,"2732":1,"2754":3,"2757":2,"2758":1,"2791":1,"2794":1,"2795":2,"2841":1,"2844":1,"2851":3,"2884":1,"2894":1,"2907":1,"2910":2,"2912":1,"2920":1,"2921":2,"2922":1,"2929":1,"2930":1,"2931":1,"2946":1,"2950":1}}],["mobile",{"2":{"149":1,"160":1}}],["monsgeek",{"2":{"2403":1}}],["monstargear",{"2":{"222":1}}],["mon",{"2":{"2304":1,"2551":1}}],["monitor",{"2":{"1939":1}}],["monitors",{"2":{"1641":1}}],["month",{"2":{"399":1,"2731":1}}],["months",{"2":{"251":1,"540":1,"2903":1}}],["montex",{"2":{"143":2,"149":1}}],["mono1bpp",{"2":{"2756":1}}],["mono16",{"2":{"2755":4}}],["mono2",{"2":{"2755":3,"2756":2}}],["mono256",{"2":{"2755":3}}],["mono4",{"2":{"2755":4}}],["monochrome",{"2":{"2753":6,"2756":1,"2757":3}}],["monolithic",{"2":{"2734":2}}],["mono",{"2":{"249":2,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1}}],["monokei",{"2":{"241":3,"249":1}}],["monksoffunk",{"2":{"149":1}}],["mona",{"2":{"102":3,"197":6}}],["mosy",{"2":{"2423":1}}],["mosi",{"2":{"1247":2,"1248":5,"1294":1,"1299":2,"2483":1,"2485":1,"2487":2,"2489":1,"2491":2,"2493":2,"2495":2,"2679":1,"2702":1,"2756":2}}],["most",{"0":{"2888":1},"1":{"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"70":1,"118":1,"124":1,"131":1,"158":1,"166":2,"194":1,"202":1,"203":2,"209":1,"233":1,"234":1,"249":2,"251":1,"263":2,"370":1,"398":1,"491":1,"492":1,"493":1,"499":1,"512":1,"513":1,"514":1,"547":1,"557":1,"558":1,"561":2,"588":1,"608":1,"613":1,"628":1,"633":3,"634":1,"651":1,"669":1,"672":1,"683":2,"703":1,"754":1,"765":1,"1246":1,"1267":1,"1284":1,"1287":1,"1318":1,"1319":1,"1343":1,"1350":1,"1354":1,"1356":1,"1421":2,"1424":1,"1425":1,"1427":1,"1433":1,"1446":1,"1447":1,"1462":1,"1477":1,"1484":1,"1528":2,"1532":1,"1542":1,"1545":1,"1546":1,"1672":1,"1681":1,"1685":1,"1740":1,"1802":1,"1803":1,"1934":1,"1939":1,"1962":1,"1967":1,"1974":2,"1986":1,"2011":1,"2047":1,"2194":1,"2261":1,"2265":1,"2281":1,"2291":1,"2292":1,"2296":1,"2297":2,"2327":1,"2329":2,"2330":1,"2387":1,"2417":2,"2418":1,"2427":1,"2439":1,"2479":1,"2482":1,"2483":1,"2505":1,"2556":1,"2557":1,"2567":1,"2580":1,"2583":2,"2628":4,"2709":2,"2714":1,"2728":1,"2756":1,"2789":1,"2806":1,"2809":1,"2817":1,"2826":1,"2848":1,"2886":1,"2889":2,"2891":1,"2895":1,"2901":1,"2914":1,"2935":2,"2942":1}}],["mostly",{"2":{"8":1,"199":1,"436":1,"1343":1,"2261":1,"2499":1,"2669":1}}],["mosfet",{"2":{"47":2,"1545":2,"1558":2,"1681":1}}],["movable",{"2":{"1738":1}}],["moving",{"0":{"49":1},"2":{"26":1,"27":1,"33":1,"111":1,"113":1,"175":1,"275":1,"294":1,"366":1,"512":1,"1423":1,"1802":1,"1938":1,"1953":1,"1954":2,"1964":1,"1976":1,"1985":1,"1993":1,"2048":1,"2085":3,"2290":2,"2425":1,"2428":1,"2573":1,"2730":1,"2894":1}}],["movements",{"2":{"1440":1,"1934":1,"1935":4,"1936":15,"1937":4,"1938":1,"1939":3,"1940":1,"2418":1}}],["movement",{"0":{"2053":1},"2":{"38":1,"74":1,"190":2,"246":1,"249":1,"328":1,"1934":5,"1935":4,"1936":5,"1937":5,"1939":2,"1940":1,"1968":5,"1990":3,"1993":2,"1994":1,"2003":1,"2014":1,"2040":1,"2046":1,"2053":1,"2913":1}}],["moved",{"2":{"33":1,"40":1,"56":1,"57":1,"67":1,"72":1,"86":1,"102":1,"114":1,"122":1,"143":1,"149":1,"159":1,"165":1,"183":1,"197":1,"198":1,"210":1,"212":2,"215":1,"341":1,"661":1,"1382":1,"1398":1,"2053":1,"2437":1,"2648":1,"2649":1,"2728":1,"2888":1}}],["moves",{"0":{"27":1},"2":{"399":1,"1741":1,"1934":2,"1954":2,"2180":1,"2290":2,"2309":1,"2563":1,"2728":1}}],["move",{"0":{"323":1},"2":{"11":1,"26":1,"27":1,"40":1,"72":1,"75":1,"94":1,"100":2,"113":6,"114":14,"133":7,"134":9,"149":58,"156":1,"160":11,"172":1,"175":7,"182":1,"191":6,"199":11,"210":16,"222":38,"236":6,"241":1,"249":12,"253":1,"255":2,"266":2,"270":1,"277":3,"281":1,"285":1,"294":2,"308":1,"328":1,"333":1,"447":1,"1428":1,"1431":1,"1492":1,"1675":1,"1707":1,"1711":1,"1712":2,"1713":1,"1735":1,"1737":1,"1873":1,"1874":1,"1875":1,"1876":1,"1899":1,"1900":1,"1901":1,"1902":1,"1925":2,"1930":1,"1934":1,"1935":1,"1936":3,"1939":4,"1940":2,"2115":1,"2116":1,"2117":1,"2118":1,"2153":1,"2154":1,"2155":1,"2156":1,"2226":1,"2309":1,"2377":2,"2428":1,"2431":1,"2462":1,"2528":2,"2539":2,"2588":1,"2612":1,"2630":1,"2728":2,"2795":1}}],["modu",{"2":{"1925":1,"2539":1}}],["modulation",{"2":{"1541":1,"1919":1,"1925":6,"1926":1,"2539":6}}],["modular",{"2":{"49":1}}],["modules",{"0":{"288":1,"298":1,"1626":1},"1":{"1627":1,"1628":1,"1629":1,"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1},"2":{"93":1,"288":5,"294":1,"298":1,"308":4,"328":1,"333":1,"538":2,"749":1,"750":1,"1626":3,"1627":9,"1628":6,"1629":1,"1633":1,"1638":1,"1697":2,"1943":2,"2283":1,"2374":1,"2439":1}}],["module",{"0":{"1627":1,"1628":1,"1629":1,"1630":1,"1633":1,"1635":1,"1636":1},"1":{"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1},"2":{"6":1,"288":1,"298":1,"308":1,"339":2,"487":1,"516":5,"519":1,"520":1,"529":2,"544":1,"627":12,"749":1,"750":1,"1359":1,"1627":3,"1628":8,"1629":1,"1630":11,"1633":2,"1635":1,"1636":1,"1637":2,"1638":22,"1697":1,"1980":2,"2037":3,"2038":1,"2283":1,"2755":1,"2756":1}}],["modd",{"2":{"1925":1,"2539":1}}],["modded",{"2":{"191":1,"1457":1,"2381":2}}],["modtaps",{"2":{"1378":1}}],["modifying",{"2":{"512":1,"540":2,"686":1,"1425":1,"1537":1,"2464":1,"2470":1,"2479":1}}],["modify",{"2":{"125":1,"169":1,"209":1,"222":1,"236":1,"540":1,"588":1,"768":2,"1248":2,"1269":1,"1378":1,"1447":1,"1467":1,"1487":1,"1642":1,"1841":1,"1988":2,"1989":2,"1993":1,"1994":1,"2179":1,"2187":1,"2189":1,"2300":1,"2470":1,"2590":1,"2728":1,"2732":1,"2735":1,"2741":1,"2831":1,"2909":1}}],["modifiable",{"2":{"1964":1}}],["modification",{"0":{"2208":1},"2":{"65":1,"538":1,"1356":1,"2085":1,"2178":1,"2950":2}}],["modifications",{"2":{"11":1,"344":3,"403":1,"514":1,"1349":1,"2412":1,"2674":2,"2711":1,"2726":1,"2729":1}}],["modifiers",{"0":{"1362":1,"1501":1,"1770":1,"1771":1,"1772":1,"1773":1,"1779":1,"1788":1,"2514":1,"2541":1},"1":{"1784":1,"1785":1,"1786":1},"2":{"99":1,"112":1,"160":1,"210":1,"562":1,"564":1,"683":1,"1362":3,"1378":15,"1381":2,"1422":2,"1423":5,"1451":1,"1453":1,"1473":1,"1501":3,"1517":1,"1518":1,"1602":1,"1617":3,"1765":1,"1766":4,"1770":3,"1772":1,"1776":1,"1781":7,"1782":4,"1784":5,"1785":1,"1787":1,"1849":1,"2073":1,"2096":1,"2259":1,"2554":1,"2572":1,"2573":2,"2575":1,"2650":2,"2880":1,"2913":1,"2926":1}}],["modifier",{"0":{"1352":1,"1353":1,"1377":1,"1378":1,"1610":1,"1796":1,"2831":1,"2834":1},"1":{"1379":1,"1380":1,"1381":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1},"2":{"74":1,"99":1,"194":2,"222":1,"231":4,"289":1,"320":5,"570":1,"1353":3,"1362":5,"1377":3,"1378":15,"1380":1,"1381":4,"1422":1,"1423":1,"1447":2,"1448":2,"1451":1,"1517":1,"1518":1,"1529":1,"1532":2,"1610":1,"1663":1,"1690":2,"1743":1,"1765":1,"1766":3,"1770":1,"1774":1,"1777":1,"1779":1,"1781":7,"1782":2,"1784":3,"1785":2,"1786":2,"1787":2,"1788":4,"1795":1,"1847":2,"1852":1,"1999":1,"2072":2,"2075":1,"2083":2,"2091":1,"2096":1,"2259":8,"2260":7,"2276":2,"2318":1,"2541":1,"2572":2,"2573":1,"2651":1,"2652":2,"2834":1,"2880":1,"2912":1,"2913":3,"2926":1,"2929":3,"2931":7}}],["modified",{"2":{"2":1,"8":1,"74":1,"149":1,"209":2,"512":1,"533":1,"1214":1,"1335":1,"1428":1,"1786":1,"1938":1,"2074":1,"2318":1,"2399":1,"2404":1,"2498":1,"2628":1,"2726":1,"2728":1,"2730":1,"2747":1,"2912":1,"2920":1,"2950":1}}],["modifies",{"2":{"0":1,"9":1,"20":1,"23":1,"29":1,"42":1,"52":1,"297":1,"312":1,"399":1,"2085":2,"2923":1,"2950":1}}],["moderate",{"2":{"2434":1}}],["modern",{"2":{"1200":1,"1350":1,"1354":1,"1593":1,"2329":1,"2418":1,"2425":1,"2432":1,"2436":1}}],["modernize",{"2":{"210":1,"236":2}}],["modernise",{"2":{"210":2}}],["modemmanager",{"2":{"1316":4}}],["mode=guest",{"2":{"684":1}}],["modelled",{"2":{"2277":1}}],["models",{"2":{"1413":1}}],["modelh",{"2":{"205":2,"308":1}}],["modelm101",{"2":{"218":2}}],["modelm",{"0":{"215":1},"2":{"149":1,"218":3}}],["model",{"2":{"125":1,"143":2,"149":1,"169":1,"205":1,"210":2,"215":2,"218":12,"1970":1,"2728":1,"2948":1}}],["model01",{"2":{"27":2}}],["modes",{"0":{"124":1,"2331":1,"2914":1},"1":{"2915":1,"2916":1,"2917":1,"2918":1,"2919":1,"2920":1,"2921":1},"2":{"114":1,"124":2,"134":1,"170":2,"235":1,"1205":1,"1490":2,"1495":1,"1849":1,"1934":2,"1974":1,"2037":1,"2085":2,"2181":2,"2183":1,"2184":2,"2187":2,"2278":1,"2327":5,"2331":6,"2332":2,"2524":1,"2544":2,"2552":2,"2792":1,"2914":2,"2915":1}}],["mode",{"0":{"170":1,"488":1,"1251":1,"1317":1,"1490":1,"1688":1,"1869":2,"1871":2,"1877":1,"1935":1,"1936":1,"1937":1,"1938":1,"1939":1,"1975":1,"1976":1,"1977":1,"2111":2,"2113":2,"2119":1,"2199":1,"2200":1,"2334":1,"2336":2,"2338":1,"2339":1,"2340":2,"2342":2,"2612":1,"2919":1},"1":{"1252":1,"1253":1,"1491":1,"1492":1,"1870":2,"1872":2,"1878":1,"2112":2,"2114":2,"2120":1,"2335":1,"2337":2,"2341":2,"2343":2},"2":{"39":3,"93":1,"118":2,"134":1,"160":2,"167":4,"174":1,"175":2,"190":1,"191":8,"222":3,"230":1,"231":1,"240":2,"266":1,"317":1,"488":1,"641":3,"686":4,"687":1,"689":1,"698":1,"721":1,"726":2,"761":2,"768":4,"772":2,"1197":1,"1198":1,"1200":2,"1201":2,"1211":1,"1212":1,"1213":1,"1248":8,"1252":3,"1265":1,"1269":8,"1297":2,"1299":2,"1303":1,"1316":1,"1322":2,"1327":2,"1348":2,"1361":1,"1364":1,"1365":2,"1366":2,"1417":10,"1483":1,"1484":1,"1485":7,"1486":8,"1488":1,"1490":13,"1491":1,"1492":2,"1493":3,"1495":7,"1550":1,"1556":1,"1635":1,"1636":1,"1680":3,"1681":2,"1687":3,"1688":1,"1697":1,"1848":2,"1850":2,"1851":5,"1852":4,"1870":1,"1872":1,"1905":1,"1935":2,"1936":3,"1937":3,"1938":5,"1939":6,"1940":2,"1948":1,"1951":2,"1953":1,"1967":2,"1974":10,"1976":2,"1977":2,"1995":1,"1996":7,"2046":5,"2084":2,"2087":3,"2088":2,"2090":5,"2091":4,"2097":1,"2112":1,"2114":1,"2165":1,"2181":22,"2182":3,"2183":15,"2184":10,"2185":1,"2199":9,"2204":2,"2273":1,"2276":1,"2293":1,"2294":1,"2297":4,"2300":8,"2327":4,"2328":6,"2331":22,"2332":8,"2334":1,"2335":1,"2336":1,"2337":2,"2338":1,"2339":1,"2340":1,"2341":2,"2342":1,"2343":2,"2344":1,"2345":1,"2346":1,"2347":1,"2387":1,"2389":1,"2394":1,"2396":1,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2418":1,"2499":1,"2523":3,"2524":7,"2537":2,"2544":22,"2545":2,"2552":8,"2567":21,"2612":3,"2617":1,"2678":1,"2685":2,"2691":1,"2728":1,"2752":3,"2756":11,"2852":1,"2891":2,"2914":10,"2915":1,"2920":4,"2921":6}}],["mods",{"0":{"320":1,"1459":1,"1460":1,"1772":1,"1773":1,"2072":1,"2074":1,"2279":1,"2913":1},"1":{"2073":1,"2074":1,"2075":1,"2280":1},"2":{"28":5,"63":2,"149":1,"175":1,"199":2,"210":3,"266":1,"289":1,"294":1,"328":1,"339":1,"383":1,"561":1,"564":1,"570":2,"1362":4,"1378":40,"1380":1,"1381":3,"1451":1,"1458":1,"1459":1,"1460":1,"1472":5,"1490":1,"1517":2,"1532":1,"1533":5,"1595":1,"1600":2,"1610":2,"1617":5,"1618":2,"1625":1,"1772":1,"1774":1,"1779":2,"1781":5,"1782":2,"1784":2,"1785":2,"1788":5,"1789":1,"1849":3,"2065":3,"2068":1,"2069":6,"2070":1,"2071":1,"2072":1,"2073":1,"2074":7,"2075":4,"2077":1,"2078":5,"2079":5,"2085":3,"2259":1,"2276":1,"2318":2,"2381":6,"2535":2,"2561":2,"2573":2,"2651":3,"2652":30,"2728":1,"2871":1,"2878":1,"2894":1,"2911":5,"2913":2,"2920":1,"2923":1,"2924":1,"2926":1,"2929":4,"2931":4,"2932":1}}],["mod",{"0":{"194":1,"217":1,"320":1,"1384":1,"1690":1,"1795":1,"2318":1,"2542":1,"2572":1,"2574":1},"1":{"2573":1,"2574":1,"2575":2,"2576":2,"2577":2,"2578":1},"2":{"12":2,"28":11,"98":1,"112":2,"134":1,"175":1,"191":1,"194":17,"199":3,"214":2,"217":2,"222":4,"289":1,"294":1,"297":1,"317":2,"320":2,"328":2,"383":1,"561":1,"564":5,"1378":29,"1380":1,"1381":7,"1384":1,"1422":5,"1423":8,"1448":1,"1451":1,"1457":1,"1472":6,"1517":1,"1518":1,"1519":1,"1532":1,"1533":10,"1594":3,"1595":1,"1597":1,"1600":2,"1603":1,"1612":5,"1617":2,"1618":2,"1625":1,"1690":4,"1743":2,"1765":1,"1774":2,"1776":9,"1777":2,"1779":7,"1781":4,"1782":3,"1788":18,"1789":2,"1795":2,"1803":1,"1925":1,"1999":6,"2000":1,"2068":11,"2069":2,"2074":2,"2075":1,"2259":13,"2260":2,"2280":1,"2318":4,"2381":5,"2535":4,"2539":1,"2542":3,"2547":2,"2554":1,"2561":1,"2572":17,"2573":1,"2574":1,"2575":1,"2578":1,"2650":1,"2651":7,"2652":9,"2728":1,"2834":2,"2870":1,"2890":1,"2909":1,"2911":22,"2912":2,"2913":4,"2915":1,"2919":1,"2920":2,"2923":3,"2924":2,"2926":2,"2929":19,"2931":7,"2949":1}}],["mo",{"0":{"3":1},"2":{"294":1,"379":5,"589":2,"591":2,"632":1,"1343":1,"1422":4,"1605":1,"1612":1,"1663":1,"1690":1,"1789":2,"1791":1,"2000":1,"2319":3,"2320":1,"2535":3,"2563":2,"2564":2,"2651":1,"2728":2}}],["mail",{"2":{"2517":2,"2522":2}}],["mainstream",{"2":{"1786":1,"2626":1}}],["mainly",{"2":{"198":1,"201":1,"212":1,"224":1,"238":2,"340":1,"1291":1,"1378":1}}],["maintains",{"2":{"308":1,"612":1,"668":1,"1343":1,"1525":1,"2390":1,"2397":1,"2477":1,"2601":1,"2620":1,"2749":1}}],["maintained",{"2":{"262":1,"293":1,"305":1,"314":1,"612":2,"669":1,"1343":2,"2717":1,"2852":1}}],["maintainers",{"0":{"375":1},"2":{"124":1,"188":1,"215":1,"265":1,"344":3,"373":1,"403":3,"588":1,"603":1,"1630":1,"1850":1,"2088":1,"2566":1,"2567":1,"2569":1,"2627":1,"2713":1,"2902":1}}],["maintainer",{"2":{"70":1,"111":1,"607":3,"612":1,"668":1,"684":1,"1403":1,"1407":1,"1630":2,"2714":2,"2717":1,"2728":1,"2795":1,"2851":1,"2852":2}}],["maintainability",{"2":{"262":1,"516":1,"527":1}}],["maintain",{"2":{"70":1,"114":1,"228":1,"488":1,"521":1,"614":1,"665":1,"1472":1,"1485":1,"1839":1,"2418":2,"2590":2,"2707":1,"2902":1}}],["maintaining",{"2":{"70":1,"2085":1,"2447":1,"2908":1}}],["maintenance",{"2":{"14":1,"198":1,"201":1,"236":1,"238":1,"251":1,"268":1,"285":1,"665":2,"2707":1,"2728":1}}],["main",{"0":{"2936":1},"1":{"2937":1,"2938":1,"2939":1,"2940":1,"2941":1},"2":{"12":1,"39":1,"40":1,"65":1,"112":1,"113":1,"114":1,"175":1,"199":1,"228":2,"236":1,"294":1,"368":1,"369":1,"385":1,"398":1,"487":1,"491":1,"555":1,"613":1,"633":1,"1296":1,"1371":2,"1381":1,"1493":1,"1551":1,"1954":1,"2059":1,"2276":2,"2290":1,"2310":1,"2383":1,"2462":2,"2471":1,"2501":1,"2560":1,"2562":1,"2580":1,"2590":1,"2594":2,"2608":2,"2612":1,"2728":1,"2880":1,"2902":1,"2923":1,"2935":6,"2936":2}}],["male",{"2":{"2430":1}}],["malicious",{"2":{"312":1}}],["ma",{"2":{"561":1,"2882":1}}],["magnet",{"2":{"1685":1,"2425":1}}],["magenta",{"2":{"494":1,"1417":1,"2089":2,"2205":2}}],["magically",{"2":{"2567":1}}],["magic+n",{"2":{"2418":1}}],["magic+d",{"2":{"1333":1,"2418":1}}],["magic",{"0":{"2460":1,"2520":1,"2538":1},"2":{"114":1,"149":1,"199":4,"226":2,"231":3,"236":2,"328":2,"536":1,"561":1,"564":2,"574":2,"686":1,"1333":1,"1349":1,"1366":1,"1486":4,"1592":4,"1622":2,"1623":2,"1625":31,"2418":3,"2460":1,"2520":37,"2538":36,"2674":5,"2728":1,"2767":1,"2774":1,"2889":3,"2941":1}}],["making",{"0":{"1437":1,"2640":1},"1":{"1438":1,"1439":1},"2":{"130":1,"194":2,"288":1,"328":1,"344":3,"403":1,"429":1,"609":1,"612":1,"1365":1,"1410":1,"1414":1,"1472":1,"1517":1,"1626":1,"2265":1,"2390":2,"2397":2,"2429":1,"2561":1,"2567":1,"2579":1,"2652":2,"2757":2,"2895":1,"2936":1,"2938":2}}],["makemusic",{"2":{"2891":1}}],["makemidi",{"2":{"1919":1}}],["makequantum",{"2":{"2753":1,"2756":11,"2759":1}}],["makeucis",{"2":{"2330":1}}],["makeunicodemap",{"2":{"2329":1}}],["makeunicode",{"2":{"2326":1,"2329":1}}],["makeuart",{"2":{"1267":1}}],["maketri",{"2":{"2320":1}}],["makeps2",{"2":{"2040":1,"2041":1,"2043":1}}],["makeprogrammable",{"2":{"2017":1}}],["makepointing",{"2":{"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":2,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1984":1}}],["makepin",{"2":{"306":1,"315":1}}],["makeos",{"2":{"1957":1}}],["makeoled",{"2":{"1944":1,"1945":2}}],["makelto",{"2":{"2889":1}}],["makeled",{"2":{"1845":1}}],["makeleader",{"2":{"1797":1}}],["makelayer",{"2":{"1790":1}}],["makejoystick",{"2":{"1739":2}}],["makehd44780",{"2":{"1698":1}}],["makehaptic",{"2":{"1678":1}}],["makeencoder",{"2":{"1665":1,"1667":1}}],["makedip",{"2":{"1656":1}}],["makedigitizer",{"2":{"1640":1}}],["makeboard",{"2":{"2703":1}}],["makebootmagic",{"2":{"1589":1}}],["makebluetooth",{"2":{"2376":1}}],["makebacklight",{"2":{"1542":1,"1548":1,"1549":1,"1550":1,"1551":1}}],["makebattery",{"2":{"742":1,"744":1,"1578":1}}],["makeifdef",{"2":{"1464":1}}],["makeifeq",{"2":{"1464":1,"1471":1,"1472":1}}],["makei2c",{"2":{"765":1}}],["makews2812",{"2":{"1284":1,"1290":1,"1291":1,"1292":1,"1293":1,"1294":1}}],["makeconsole",{"2":{"1962":1,"2889":1}}],["makecommand",{"2":{"1595":1,"1623":1,"2258":1}}],["makecommon",{"2":{"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1}}],["makecaps",{"2":{"1594":1}}],["makecustom",{"2":{"624":1,"625":1}}],["makeavr",{"2":{"2889":1}}],["makeautocorrect",{"2":{"1526":1}}],["makeaudio",{"2":{"715":1}}],["makeapa102",{"2":{"703":1}}],["makeanalog",{"2":{"691":1}}],["makergblight",{"2":{"2179":2}}],["makergb",{"2":{"2081":1}}],["makeraw",{"2":{"2055":1}}],["makers",{"2":{"555":1,"2927":1}}],["makerepeat",{"2":{"213":1,"2066":1}}],["maker",{"0":{"1311":1},"1":{"1312":1},"2":{"114":1,"1311":2,"1312":1,"1313":2,"2450":1,"2452":1}}],["makesteno",{"2":{"2294":1,"2295":1,"2296":1,"2297":1}}],["makest7565",{"2":{"2284":1}}],["makespace",{"2":{"2889":1}}],["makesplit",{"2":{"2268":2}}],["makespi",{"2":{"1246":1}}],["makesequencer",{"2":{"2250":1}}],["makesend",{"2":{"2220":1}}],["makesecure",{"2":{"2215":1}}],["makeserial",{"2":{"1195":1,"1198":2,"1201":2}}],["makesrc",{"2":{"623":1,"2757":2}}],["makes",{"2":{"50":1,"123":1,"320":1,"425":1,"512":1,"540":1,"555":1,"564":1,"572":1,"1343":1,"1380":1,"1519":1,"1593":1,"1610":1,"1935":2,"1936":1,"1939":1,"1956":1,"1968":1,"2008":1,"2011":1,"2068":1,"2072":1,"2091":1,"2275":1,"2378":1,"2382":1,"2455":1,"2466":1,"2564":1,"2567":1,"2580":1,"2669":1,"2671":1,"2727":1,"2757":1,"2844":1,"2920":2,"2921":1,"2931":1}}],["makefileaudio",{"2":{"1405":1}}],["makefileconvert",{"2":{"1390":1}}],["makefileifeq",{"2":{"354":1}}],["makefiles",{"2":{"210":2,"612":1}}],["makefile",{"0":{"2419":1},"2":{"39":1,"133":2,"134":2,"149":3,"198":1,"199":2,"333":1,"353":1,"393":1,"571":1,"1332":1,"1365":1,"1366":1,"1376":1,"1632":1,"2417":1,"2662":1,"2674":1}}],["make",{"0":{"467":1,"607":1,"1347":1,"1770":1,"1771":1,"1772":1,"1773":1,"2391":1,"2393":1,"2398":1,"2400":1,"2405":1,"2407":1,"2409":1,"2417":1,"2479":1,"2780":1,"2827":1},"1":{"2418":1,"2419":1,"2781":1,"2782":1,"2783":1,"2784":1,"2785":1,"2786":1,"2787":1,"2788":1,"2789":1,"2790":1,"2791":1},"2":{"2":1,"11":1,"14":1,"21":1,"26":2,"39":2,"43":1,"51":4,"55":1,"65":2,"70":1,"76":1,"94":2,"107":1,"114":7,"119":1,"131":1,"133":2,"134":4,"149":2,"160":1,"173":1,"175":2,"190":1,"191":8,"199":3,"222":5,"236":2,"249":2,"265":1,"279":1,"294":1,"339":1,"367":1,"384":1,"393":1,"396":1,"417":1,"422":2,"429":6,"455":2,"465":1,"469":3,"491":1,"494":3,"514":2,"525":1,"528":1,"529":1,"533":1,"537":1,"538":1,"563":1,"567":1,"571":1,"588":4,"589":1,"596":2,"603":1,"607":2,"609":9,"613":3,"614":1,"620":1,"640":1,"647":1,"665":1,"668":1,"675":1,"681":1,"684":5,"686":1,"687":1,"717":1,"718":1,"721":1,"1314":1,"1315":2,"1317":2,"1319":1,"1320":1,"1338":1,"1340":1,"1359":1,"1364":1,"1365":2,"1377":1,"1381":1,"1405":1,"1409":1,"1417":2,"1422":1,"1423":1,"1435":1,"1436":2,"1462":1,"1463":2,"1468":2,"1472":5,"1473":2,"1493":2,"1517":2,"1528":1,"1609":1,"1615":1,"1618":1,"1625":11,"1662":1,"1766":1,"1770":1,"1774":2,"1776":6,"1777":2,"1781":1,"1782":1,"1791":2,"1802":1,"1855":1,"1935":3,"1939":2,"1995":1,"1999":1,"2037":1,"2075":1,"2094":1,"2188":1,"2206":1,"2208":1,"2258":1,"2265":1,"2278":1,"2293":2,"2317":1,"2326":1,"2330":1,"2384":1,"2387":1,"2389":3,"2390":2,"2392":2,"2394":2,"2395":2,"2396":2,"2397":4,"2399":2,"2401":2,"2404":2,"2406":2,"2408":2,"2410":2,"2411":1,"2414":1,"2417":23,"2418":1,"2419":1,"2428":2,"2429":1,"2430":1,"2431":1,"2434":2,"2447":1,"2449":1,"2450":4,"2461":2,"2501":1,"2503":1,"2508":1,"2523":1,"2561":1,"2569":1,"2572":1,"2583":1,"2585":1,"2586":2,"2599":1,"2606":1,"2617":1,"2619":1,"2620":1,"2632":1,"2634":2,"2635":1,"2637":1,"2640":6,"2663":2,"2665":1,"2671":1,"2691":1,"2730":1,"2752":2,"2755":3,"2756":27,"2757":1,"2761":1,"2794":1,"2795":1,"2827":1,"2886":1,"2889":1,"2907":1,"2912":2,"2939":1,"2945":1,"2946":4,"2947":1,"2950":2}}],["majority",{"2":{"156":1,"181":1,"245":1,"248":1,"1203":1,"1336":1,"1589":1,"1591":1,"2910":1}}],["major",{"2":{"116":1,"199":1,"603":1,"1351":1,"1485":2,"1486":3,"1490":2,"2382":1,"2738":2,"2739":1}}],["macs",{"2":{"1961":1}}],["macca",{"2":{"675":1}}],["mac",{"0":{"1357":1,"1358":1,"1361":1,"1374":1},"1":{"1375":1},"2":{"266":1,"1359":1,"1361":1,"2327":1,"2328":1,"2332":1,"2344":1,"2345":1,"2346":1,"2552":1,"2887":18}}],["machines",{"2":{"1205":1,"1961":1,"2294":1}}],["machine",{"2":{"263":1,"384":1,"385":1,"607":1,"1292":1,"2249":1,"2292":1,"2294":1,"2298":2,"2331":1,"2384":1,"2386":1,"2387":1,"2591":1,"2592":1,"2594":1,"2811":1}}],["mach80",{"2":{"134":1}}],["macos",{"0":{"1356":1,"1777":1,"2386":1},"2":{"114":1,"149":1,"158":1,"191":1,"199":1,"236":1,"266":1,"294":1,"339":1,"564":2,"1326":1,"1351":2,"1455":1,"1675":1,"1676":1,"1777":3,"1784":1,"1957":1,"1958":1,"1961":1,"2016":1,"2057":1,"2327":1,"2328":1,"2331":3,"2332":2,"2344":1,"2345":1,"2346":1,"2384":1,"2386":1,"2406":1,"2408":1,"2410":1,"2502":1,"2506":1,"2513":1,"2516":1,"2517":1,"2522":3,"2552":2,"2599":1,"2613":1,"2614":1,"2619":1,"2627":1,"2673":2,"2674":2,"2717":1,"2887":11}}],["macro2",{"2":{"1471":1}}],["macro30",{"2":{"2016":1}}],["macro3",{"2":{"241":2,"249":1}}],["macro1",{"2":{"241":2,"1471":1}}],["macro0",{"2":{"199":1}}],["macropad",{"2":{"120":1,"191":3,"222":1,"236":1,"328":1,"339":2,"1441":1,"2885":1}}],["macros=",{"2":{"2417":2}}],["macros",{"0":{"50":1,"120":1,"761":1,"1440":1,"1441":1,"1445":1,"1447":1,"1472":1,"1661":2,"2530":1,"2721":1},"1":{"1441":1,"1442":2,"1443":2,"1444":2,"1445":1,"1446":2,"1447":2,"1448":2,"1449":2,"1450":2,"1451":2,"1452":2,"1453":2,"1454":2,"1455":2,"1456":2,"1457":2,"1458":2,"1459":2,"1460":2,"1461":2,"1462":2,"1662":2,"1663":2,"1664":2},"2":{"28":1,"40":1,"49":1,"50":1,"89":1,"114":1,"120":5,"134":2,"140":1,"175":3,"191":2,"196":1,"212":1,"222":2,"236":2,"249":1,"266":3,"277":1,"328":1,"379":1,"447":1,"513":1,"626":1,"761":1,"1379":1,"1428":1,"1431":2,"1440":3,"1441":4,"1442":1,"1446":1,"1448":1,"1451":1,"1471":7,"1472":3,"1605":1,"1620":2,"1622":2,"1661":5,"1662":2,"1663":1,"1742":1,"1781":1,"1795":1,"2071":1,"2076":1,"2077":1,"2079":1,"2222":1,"2417":2,"2530":1,"2728":4,"2794":3,"2856":1,"2889":1,"2907":3,"2938":1}}],["macro",{"0":{"17":1,"140":1,"1443":1,"1451":1,"1663":1,"2269":1,"2813":1,"2829":1},"1":{"1444":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1},"2":{"3":1,"7":1,"17":1,"40":1,"48":1,"75":1,"89":1,"114":3,"120":8,"134":1,"140":2,"149":2,"160":2,"172":2,"175":4,"199":3,"210":3,"222":75,"231":3,"236":1,"249":1,"255":2,"257":1,"258":1,"259":1,"277":2,"294":1,"333":1,"379":2,"588":2,"589":1,"629":1,"761":1,"763":1,"1379":1,"1410":1,"1427":1,"1439":1,"1441":4,"1443":2,"1444":1,"1446":9,"1451":3,"1462":1,"1471":2,"1472":1,"1492":1,"1624":1,"1661":22,"1662":14,"1663":6,"1664":14,"1686":1,"1786":1,"1850":2,"1855":1,"2016":1,"2071":3,"2076":7,"2077":6,"2088":2,"2094":1,"2189":2,"2194":1,"2206":1,"2219":1,"2222":1,"2247":1,"2248":1,"2297":1,"2309":3,"2317":1,"2331":1,"2453":1,"2454":1,"2530":10,"2556":1,"2563":3,"2572":1,"2651":1,"2721":3,"2728":2,"2787":2,"2789":2,"2794":1,"2795":1,"2796":2,"2813":2,"2829":1,"2856":1,"2912":3,"2927":1,"2938":6,"2939":2,"2941":1}}],["max660",{"2":{"1697":1}}],["maxfitlerouput",{"2":{"1528":1}}],["maxing",{"2":{"564":1}}],["maximus",{"2":{"210":1}}],["maximum",{"2":{"18":1,"181":2,"429":2,"561":2,"565":1,"570":2,"660":1,"724":1,"826":1,"855":1,"887":1,"919":1,"926":1,"954":1,"960":1,"988":1,"994":1,"1022":1,"1028":1,"1056":1,"1062":1,"1090":1,"1096":1,"1124":1,"1130":1,"1158":1,"1164":1,"1214":1,"1365":1,"1410":1,"1544":3,"1550":1,"1594":1,"1740":1,"1742":1,"1749":1,"1846":2,"1852":3,"1934":3,"1935":5,"1936":2,"1938":2,"1939":2,"1954":2,"1968":1,"1971":5,"1975":2,"2082":2,"2091":4,"2182":1,"2185":1,"2189":1,"2201":6,"2275":2,"2277":1,"2278":2,"2290":2,"2309":1,"2318":1,"2754":3,"2756":11,"2757":1,"2767":1,"2773":1,"2774":1,"2857":1,"2871":1,"2877":2,"2878":1,"2882":1,"2922":1}}],["max",{"0":{"1912":1,"1915":1,"2172":1,"2175":1},"2":{"112":4,"134":1,"160":1,"175":1,"181":1,"191":1,"194":1,"222":2,"231":1,"308":1,"462":1,"561":1,"565":1,"566":2,"660":2,"719":4,"720":4,"726":2,"727":1,"1488":3,"1493":2,"1527":1,"1533":8,"1543":1,"1612":4,"1681":1,"1740":3,"1749":1,"1845":1,"1849":1,"1850":6,"1855":1,"1913":1,"1916":1,"1935":7,"1939":4,"1954":6,"1968":3,"2003":1,"2081":1,"2085":1,"2088":6,"2094":1,"2095":6,"2096":3,"2173":1,"2176":1,"2182":1,"2185":1,"2189":2,"2275":2,"2290":6,"2300":2,"2309":2,"2319":1,"2330":1,"2381":6,"2388":1,"2454":3,"2527":1,"2857":2,"2871":2,"2873":2,"2877":3,"2878":2,"2882":1,"2911":3,"2950":1}}],["maps",{"2":{"344":1,"666":1,"1357":1,"1490":1,"1492":1,"1952":1,"2884":1,"2938":1}}],["mapped",{"2":{"166":1,"220":2,"561":1,"684":1,"690":1,"729":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1392":2,"1396":2,"1407":1,"1408":1,"1522":3,"1546":1,"1675":1,"2222":1,"2471":1,"2474":1,"2757":3,"2777":3,"2823":1,"2919":2,"2920":2,"2921":1}}],["mappings",{"2":{"175":1,"222":1,"236":2,"669":2,"1956":1,"2728":1}}],["mapping",{"0":{"154":1,"247":1,"669":1,"729":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1,"1933":1,"2305":1},"1":{"670":1,"671":1,"2306":1},"2":{"39":1,"114":1,"149":1,"154":1,"160":2,"175":6,"220":1,"222":1,"231":1,"236":1,"247":2,"266":1,"307":1,"344":1,"666":1,"669":5,"671":1,"672":1,"1361":1,"1407":1,"1656":2,"1667":3,"1952":2,"2305":1,"2329":2,"2330":4,"2418":2,"2471":1,"2474":1,"2563":1,"2869":1,"2886":1,"2920":1,"2921":1}}],["maple",{"2":{"143":9,"149":1,"165":2,"270":2,"277":1,"317":1,"689":1,"2505":1}}],["map",{"0":{"1492":1,"1656":1,"1667":1,"2938":1},"2":{"76":1,"134":1,"160":1,"175":1,"191":2,"199":2,"206":1,"210":2,"212":3,"220":1,"222":6,"247":2,"249":1,"277":1,"307":5,"328":1,"339":1,"1365":1,"1492":4,"1521":1,"1641":1,"1656":3,"1667":5,"1668":1,"1931":1,"1933":1,"1952":2,"1953":1,"1968":1,"2206":3,"2207":2,"2301":2,"2303":1,"2305":1,"2329":4,"2330":3,"2332":1,"2351":1,"2352":1,"2353":1,"2354":1,"2355":1,"2357":1,"2358":1,"2418":1,"2552":1,"2728":2,"2794":1,"2877":1,"2938":2,"2939":2,"2941":2}}],["manjaro",{"2":{"2601":1,"2626":1}}],["manipulating",{"0":{"1990":1},"1":{"1991":1,"1992":1,"1993":1,"1994":1,"1995":1,"1996":1,"1997":1},"2":{"1450":1,"2591":1}}],["manipulation",{"2":{"243":1,"331":1,"396":1,"639":1,"1205":1}}],["manipulations",{"2":{"64":1}}],["manipulate",{"2":{"1428":1,"1536":1,"1592":1,"1599":1,"1793":1,"1990":1,"1995":1,"2306":1}}],["man",{"2":{"1315":1,"2502":1}}],["manner",{"2":{"561":2,"570":1,"1622":1,"1851":1,"2090":1}}],["mango",{"2":{"226":1,"236":1}}],["mandatory",{"2":{"212":2,"2728":1}}],["managed",{"2":{"1343":1}}],["management",{"0":{"1622":1},"2":{"1343":1,"1370":1,"1954":1,"2290":1}}],["manager",{"0":{"386":1},"2":{"386":1,"420":1,"687":1,"688":1,"689":2,"1370":1,"2057":1,"2502":1,"2506":1,"2582":1,"2612":1,"2626":1,"2667":1}}],["manageable",{"2":{"251":1,"540":1}}],["manage",{"2":{"166":1,"607":1,"655":1,"1381":1}}],["manual",{"0":{"2691":1},"2":{"149":1,"160":1,"234":1,"249":2,"1300":1,"1315":1}}],["manually",{"2":{"134":1,"234":1,"244":1,"396":1,"513":1,"580":1,"655":1,"1318":1,"1535":1,"1627":1,"1769":1,"1841":1,"1952":1,"1954":2,"1965":1,"1990":1,"2273":1,"2290":2,"2327":1,"2384":2,"2575":1,"2594":1,"2621":1,"2626":1,"2634":1,"2659":1,"2728":1,"2753":1,"2757":2,"2911":1,"2920":1,"2950":1}}],["manufacture",{"2":{"2414":1}}],["manufacturers",{"2":{"749":1,"1203":1,"1204":1}}],["manufacturer",{"2":{"70":3,"76":1,"111":1,"168":2,"175":4,"184":2,"201":1,"389":1,"561":1,"596":1,"746":1,"2059":3,"2390":1,"2397":1,"2567":1,"2569":1,"2717":3,"2727":1,"2728":1,"2851":1,"2852":3}}],["manuform",{"2":{"114":3,"149":2,"205":2,"210":8,"222":1,"226":1,"236":1,"308":1,"2425":1}}],["manyboard",{"2":{"114":1}}],["many",{"2":{"20":1,"198":1,"265":1,"435":1,"489":1,"504":1,"538":1,"564":2,"637":1,"657":1,"661":1,"719":2,"1283":1,"1332":1,"1382":1,"1409":2,"1455":1,"1492":1,"1497":1,"1503":1,"1517":1,"1541":1,"1595":1,"1665":1,"1769":1,"1774":1,"1923":1,"1939":1,"1949":1,"1986":1,"2054":1,"2189":1,"2261":1,"2278":1,"2279":1,"2288":1,"2292":1,"2296":1,"2309":2,"2318":1,"2319":1,"2329":1,"2379":3,"2388":1,"2389":1,"2417":2,"2422":1,"2435":1,"2455":1,"2503":2,"2564":1,"2569":1,"2580":1,"2589":1,"2599":1,"2618":1,"2619":1,"2626":1,"2639":1,"2640":1,"2653":2,"2664":3,"2716":1,"2728":1,"2757":1,"2814":1,"2843":1,"2869":1,"2884":1,"2886":1,"2901":1,"2933":1,"2937":2,"2942":3,"2949":1,"2950":1}}],["maarten",{"0":{"57":1}}],["maartenwut",{"0":{"57":1},"2":{"57":23}}],["mario",{"2":{"1804":1}}],["mary",{"2":{"1673":2}}],["mar",{"2":{"55":1}}],["marketing",{"2":{"2567":4}}],["marked",{"2":{"716":1,"1213":1,"1553":1,"1646":1,"1750":1,"1849":1,"2499":1,"2634":1,"2852":1}}],["marker",{"2":{"352":1,"2504":1,"2792":8}}],["markers",{"2":{"266":22}}],["markdown",{"2":{"340":2,"403":1,"521":1,"676":2,"681":1,"1433":1,"2671":2}}],["mark",{"2":{"38":1,"175":1,"191":1,"234":1,"236":1,"561":1,"2369":1,"2634":1,"2933":1}}],["marksard",{"2":{"143":3,"149":2}}],["marks",{"2":{"0":1,"2634":2}}],["made",{"2":{"43":1,"73":1,"116":1,"124":1,"134":1,"187":1,"212":1,"243":1,"246":1,"263":1,"271":1,"272":1,"273":1,"312":1,"320":1,"331":1,"381":1,"389":1,"487":1,"512":1,"514":1,"578":1,"607":5,"665":1,"684":1,"797":1,"1405":1,"1490":1,"1622":1,"1628":1,"2279":1,"2452":1,"2464":1,"2565":1,"2568":1,"2616":1,"2633":2,"2634":3,"2636":1,"2645":1,"2674":1,"2902":1,"2912":1,"2931":2}}],["matias",{"2":{"2421":1}}],["materials",{"2":{"2425":1,"2429":1}}],["material",{"2":{"2422":1,"2567":1}}],["mate",{"2":{"2374":1}}],["math",{"2":{"528":1,"1968":1}}],["matt",{"2":{"2945":1}}],["matte",{"2":{"2428":1}}],["matters",{"2":{"2189":1,"2564":1}}],["matter",{"2":{"194":1,"609":1,"1470":1,"1659":1,"2429":1,"2564":1,"2618":1,"2742":1,"2794":1}}],["matt3o",{"2":{"2425":2,"2436":1}}],["matthewdias",{"2":{"143":4,"149":2}}],["matrices",{"2":{"191":1,"1589":1,"1844":1,"2080":1,"2278":1,"2444":1,"2466":2}}],["matrix=true",{"2":{"1322":1}}],["matrix==true",{"2":{"433":1}}],["matrix",{"0":{"80":1,"84":1,"124":1,"202":1,"206":1,"327":1,"622":1,"637":1,"638":1,"639":1,"643":1,"644":1,"645":1,"1329":1,"1368":1,"1635":1,"1636":1,"1660":1,"1844":1,"1849":1,"1850":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1865":1,"1867":1,"1869":1,"1871":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1891":1,"1893":1,"1895":1,"1897":1,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1905":1,"1906":1,"1908":1,"1910":1,"1912":1,"1915":1,"2080":1,"2085":1,"2086":1,"2087":1,"2088":1,"2097":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2107":1,"2109":1,"2111":1,"2113":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2145":1,"2147":1,"2149":1,"2151":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2159":1,"2161":1,"2163":1,"2165":1,"2166":1,"2168":1,"2170":1,"2172":1,"2175":1,"2272":1,"2423":1,"2425":1,"2438":1,"2466":1,"2537":1,"2545":1,"2718":1,"2719":1,"2720":1,"2828":1,"2871":1,"2872":1,"2878":1,"2937":1,"2938":1},"1":{"623":1,"624":1,"625":1,"638":1,"639":1,"644":1,"645":1,"1845":1,"1846":1,"1847":1,"1848":1,"1849":1,"1850":1,"1851":1,"1852":1,"1853":1,"1854":1,"1855":1,"1856":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":2,"1865":1,"1866":2,"1867":1,"1868":2,"1869":1,"1870":2,"1871":1,"1872":2,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":2,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":2,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":2,"1891":1,"1892":2,"1893":1,"1894":2,"1895":1,"1896":2,"1897":1,"1898":2,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":2,"1905":1,"1906":1,"1907":2,"1908":1,"1909":2,"1910":1,"1911":2,"1912":1,"1913":1,"1914":1,"1915":1,"1916":1,"1917":1,"2081":1,"2082":1,"2083":1,"2084":1,"2085":1,"2086":2,"2087":2,"2088":1,"2089":1,"2090":1,"2091":1,"2092":1,"2093":1,"2094":1,"2095":1,"2096":1,"2097":1,"2098":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":2,"2107":1,"2108":2,"2109":1,"2110":2,"2111":1,"2112":2,"2113":1,"2114":2,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":2,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":2,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":2,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":2,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":2,"2145":1,"2146":2,"2147":1,"2148":2,"2149":1,"2150":2,"2151":1,"2152":2,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":2,"2159":1,"2160":1,"2161":1,"2162":2,"2163":1,"2164":2,"2165":1,"2166":1,"2167":2,"2168":1,"2169":2,"2170":1,"2171":2,"2172":1,"2173":1,"2174":1,"2175":1,"2176":1,"2177":1,"2424":1,"2426":1,"2427":1,"2428":1,"2429":1,"2719":1,"2720":1,"2938":1,"2939":1,"2940":1,"2941":1},"2":{"21":8,"39":3,"50":1,"63":2,"64":1,"65":4,"70":1,"74":4,"76":1,"80":2,"84":1,"92":4,"93":14,"94":5,"102":3,"111":2,"112":7,"113":1,"114":36,"124":2,"133":1,"134":11,"149":13,"160":4,"167":22,"169":9,"175":16,"191":4,"196":1,"199":7,"202":1,"206":1,"209":6,"210":18,"212":1,"222":14,"236":12,"238":1,"249":33,"266":10,"277":11,"283":3,"285":6,"294":3,"298":1,"308":7,"312":3,"316":1,"317":6,"328":8,"333":4,"339":1,"396":1,"433":1,"437":2,"561":18,"569":4,"570":9,"574":2,"589":2,"622":2,"623":4,"624":10,"625":19,"633":1,"634":1,"637":1,"638":2,"639":18,"643":1,"645":4,"646":2,"647":2,"652":3,"653":3,"668":1,"684":1,"703":1,"719":1,"720":1,"724":1,"725":1,"729":1,"801":2,"827":2,"855":1,"856":2,"887":1,"888":2,"919":1,"920":2,"954":1,"955":2,"988":1,"989":2,"1022":1,"1023":2,"1056":1,"1057":2,"1090":1,"1091":2,"1124":1,"1125":2,"1158":1,"1159":2,"1214":1,"1215":2,"1284":1,"1285":1,"1329":1,"1331":8,"1368":1,"1372":1,"1410":3,"1413":1,"1414":2,"1417":1,"1423":1,"1446":4,"1462":1,"1492":5,"1541":1,"1590":2,"1591":3,"1625":2,"1635":5,"1636":5,"1638":12,"1655":2,"1668":4,"1681":1,"1844":1,"1845":3,"1846":5,"1848":14,"1849":64,"1850":23,"1851":5,"1852":20,"1853":1,"1855":8,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":1,"1866":1,"1906":1,"1907":1,"1924":2,"1949":1,"1952":3,"1955":8,"1958":4,"2080":1,"2081":3,"2082":5,"2084":18,"2085":151,"2086":7,"2087":1,"2088":23,"2090":5,"2091":24,"2092":1,"2094":8,"2095":10,"2096":7,"2097":4,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":1,"2108":1,"2166":1,"2167":1,"2181":3,"2188":2,"2217":1,"2264":1,"2269":3,"2272":11,"2276":2,"2278":4,"2288":1,"2289":2,"2303":3,"2312":2,"2390":1,"2397":1,"2414":1,"2418":3,"2422":1,"2423":4,"2430":1,"2431":1,"2432":2,"2438":1,"2439":1,"2444":1,"2445":1,"2453":1,"2456":2,"2466":6,"2537":15,"2545":19,"2557":3,"2562":6,"2563":1,"2573":1,"2585":2,"2607":3,"2610":1,"2680":1,"2718":1,"2719":6,"2720":7,"2721":21,"2728":12,"2729":1,"2757":3,"2764":1,"2794":5,"2828":1,"2854":1,"2860":3,"2863":4,"2869":4,"2871":7,"2872":8,"2878":7,"2879":2,"2880":7,"2891":1,"2894":46,"2907":2,"2908":2,"2927":11,"2932":1,"2936":2,"2937":8,"2938":6,"2939":4,"2940":4,"2950":1}}],["matched",{"2":{"433":2,"1518":1,"1533":1,"1804":1}}],["matches",{"2":{"403":1,"411":1,"688":1,"1203":1,"1204":1,"1492":1,"1528":9,"1539":2,"1630":1,"1633":1,"1667":1,"1822":1,"1825":1,"1828":1,"1831":1,"1834":1,"1974":1,"2503":1,"2594":2,"2674":1,"2755":1,"2757":2,"2938":1}}],["matchstickworks",{"2":{"226":2,"236":1}}],["match",{"2":{"65":1,"77":1,"105":1,"134":1,"149":1,"166":1,"175":1,"195":1,"333":1,"411":1,"416":1,"433":11,"512":1,"599":1,"688":1,"768":1,"1248":1,"1269":1,"1356":1,"1378":2,"1417":1,"1423":1,"1434":2,"1438":1,"1442":1,"1525":1,"1532":1,"1620":1,"1952":1,"2305":1,"2369":1,"2472":1,"2503":1,"2573":1,"2694":2,"2714":1,"2755":1,"2764":1,"2767":1,"2794":1,"2795":1,"2939":1}}],["matchingsubstring",{"2":{"2946":2}}],["matching",{"2":{"40":1,"149":1,"243":1,"331":1,"433":1,"469":1,"767":1,"1203":1,"1204":1,"1247":1,"1292":1,"1378":1,"1428":6,"1528":2,"2472":1,"2507":1,"2571":1,"2703":1,"2728":1,"2884":1,"2946":1}}],["masquerade",{"2":{"2711":1}}],["masking",{"2":{"328":1}}],["masked",{"2":{"317":1,"1532":1,"2272":2,"2575":1,"2872":1}}],["mask",{"0":{"1491":1},"2":{"105":6,"114":1,"339":1,"561":1,"1378":21,"1381":2,"1423":2,"1428":12,"1451":1,"1472":2,"1491":6,"1533":4,"1595":1,"1617":2,"1625":1,"1657":4,"1774":2,"1776":11,"1777":2,"1779":1,"1781":3,"1788":3,"1947":1,"2046":2,"2048":5,"2069":2,"2074":2,"2075":1,"2272":1,"2286":1,"2381":1,"2652":8,"2768":2,"2924":1,"2929":3}}],["masks",{"2":{"39":1,"1378":1,"1788":1,"1947":2,"2286":2,"2768":1,"2929":1}}],["massive",{"2":{"178":1}}],["massively",{"2":{"70":1}}],["mass",{"2":{"93":1,"199":1,"422":1,"1684":1,"2384":1,"2504":1,"2700":1}}],["massdrop",{"2":{"73":1,"114":1,"131":1,"134":1,"218":2,"279":2,"684":3}}],["masterzen",{"2":{"2436":1}}],["master",{"0":{"764":1,"1245":1,"2636":1,"2638":1,"2639":1},"1":{"765":1,"766":1,"767":1,"768":1,"769":1,"770":1,"771":1,"772":1,"773":1,"774":1,"775":1,"776":1,"777":1,"778":1,"779":1,"780":1,"781":1,"782":1,"783":1,"784":1,"785":1,"786":1,"787":1,"788":1,"789":1,"790":1,"791":1,"792":1,"793":1,"794":1,"795":1,"796":1,"797":1,"798":1,"799":1,"1246":1,"1247":1,"1248":1,"1249":1,"1250":1,"1251":1,"1252":1,"1253":1,"1254":1,"1255":1,"1256":1,"1257":1,"1258":1,"1259":1,"1260":1,"1261":1,"1262":1,"1263":1,"1264":1,"1265":1,"2639":1,"2640":1,"2641":1},"2":{"21":3,"24":1,"35":1,"41":1,"74":1,"114":1,"134":2,"149":1,"175":1,"184":1,"191":4,"234":4,"236":1,"277":1,"294":3,"383":2,"399":1,"402":4,"407":1,"408":3,"409":2,"411":8,"412":5,"423":4,"459":2,"568":4,"569":4,"570":7,"574":1,"579":1,"588":1,"589":2,"594":1,"749":3,"750":1,"759":1,"764":1,"765":2,"767":1,"923":3,"1094":3,"1128":3,"1200":2,"1201":1,"1245":1,"1246":2,"1353":1,"1948":3,"1976":1,"2014":1,"2198":4,"2274":3,"2275":4,"2276":3,"2277":18,"2278":6,"2279":1,"2287":3,"2378":1,"2387":3,"2520":2,"2538":2,"2632":1,"2633":1,"2634":8,"2635":4,"2636":6,"2637":4,"2638":2,"2639":7,"2640":1,"2726":3,"2728":2,"2729":1,"2730":4,"2756":3,"2904":1}}],["maybe",{"0":{"2475":1}}],["may",{"0":{"9":1,"78":1,"150":1,"211":1,"250":1,"295":1,"334":1},"1":{"10":1,"11":1,"12":1,"13":1,"14":1,"15":1,"16":1,"17":1,"18":1,"19":1,"20":1,"21":1,"22":1,"23":1,"24":1,"25":1,"26":1,"27":1,"28":1,"79":1,"80":1,"81":1,"82":1,"83":1,"84":1,"85":1,"86":1,"87":1,"88":1,"89":1,"90":1,"91":1,"92":1,"93":1,"94":1,"95":1,"151":1,"152":1,"153":1,"154":1,"155":1,"156":1,"157":1,"158":1,"159":1,"160":1,"212":1,"213":1,"214":1,"215":1,"216":1,"217":1,"218":1,"219":1,"220":1,"221":1,"222":1,"251":1,"252":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"261":1,"262":1,"263":1,"264":1,"265":1,"266":1,"296":1,"297":1,"298":1,"299":1,"300":1,"301":1,"302":1,"303":1,"304":1,"305":1,"306":1,"307":1,"308":1,"335":1,"336":1,"337":1,"338":1,"339":1},"2":{"14":1,"21":2,"24":1,"43":1,"47":1,"73":1,"88":1,"104":1,"124":2,"127":1,"157":1,"166":1,"181":1,"194":1,"240":1,"248":1,"251":1,"259":1,"284":1,"288":1,"289":1,"312":1,"344":3,"400":1,"402":1,"403":1,"405":1,"406":1,"407":1,"413":7,"414":7,"417":2,"418":1,"433":5,"439":1,"455":1,"469":2,"511":2,"520":1,"525":1,"539":1,"540":1,"545":3,"561":2,"563":1,"564":4,"570":1,"598":2,"604":1,"609":1,"633":1,"637":1,"648":1,"684":1,"686":3,"687":2,"688":1,"689":1,"695":1,"719":4,"723":1,"728":1,"752":1,"753":1,"754":2,"755":2,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1218":1,"1247":1,"1248":2,"1266":1,"1272":1,"1287":3,"1290":1,"1294":2,"1298":1,"1299":1,"1300":1,"1303":1,"1317":1,"1318":2,"1320":2,"1330":1,"1332":1,"1348":2,"1356":1,"1371":1,"1372":1,"1405":1,"1408":1,"1413":1,"1415":1,"1422":1,"1442":2,"1448":1,"1451":2,"1464":3,"1471":1,"1472":2,"1485":1,"1493":1,"1499":1,"1518":1,"1527":1,"1534":1,"1554":1,"1556":1,"1557":1,"1589":1,"1593":1,"1594":2,"1609":2,"1626":1,"1628":1,"1630":1,"1634":2,"1638":1,"1641":1,"1656":1,"1661":1,"1667":1,"1670":2,"1681":5,"1713":1,"1762":1,"1772":1,"1773":1,"1777":1,"1781":1,"1784":1,"1787":1,"1788":1,"1789":1,"1792":1,"1802":2,"1803":1,"1835":1,"1920":1,"1935":1,"1943":1,"1947":1,"1949":1,"1951":1,"1956":1,"1957":1,"1960":2,"1961":2,"1962":2,"1984":1,"1994":1,"1999":1,"2013":1,"2016":1,"2040":1,"2044":1,"2057":2,"2068":1,"2069":1,"2070":1,"2074":1,"2077":1,"2086":1,"2091":1,"2208":2,"2260":1,"2267":1,"2272":1,"2276":1,"2278":1,"2280":1,"2286":1,"2293":2,"2298":1,"2309":2,"2317":1,"2325":1,"2329":1,"2330":1,"2331":2,"2384":1,"2387":1,"2389":1,"2392":1,"2394":1,"2396":1,"2397":1,"2399":3,"2401":1,"2402":1,"2403":1,"2404":2,"2406":1,"2408":1,"2412":2,"2415":1,"2417":1,"2418":1,"2422":1,"2424":1,"2427":2,"2428":3,"2431":1,"2434":3,"2449":2,"2460":1,"2461":1,"2465":1,"2474":1,"2482":1,"2496":1,"2497":1,"2501":1,"2503":4,"2506":1,"2508":1,"2517":1,"2554":2,"2557":1,"2561":2,"2567":1,"2568":3,"2569":4,"2570":3,"2573":1,"2581":1,"2584":1,"2585":2,"2590":1,"2612":1,"2614":1,"2652":1,"2656":1,"2667":1,"2671":2,"2674":1,"2675":1,"2677":1,"2678":1,"2679":1,"2682":1,"2685":2,"2690":3,"2726":5,"2729":1,"2751":1,"2756":4,"2757":2,"2764":2,"2772":1,"2773":1,"2780":1,"2784":1,"2886":1,"2888":1,"2889":2,"2901":1,"2902":1,"2903":3,"2906":1,"2909":1,"2912":1,"2914":2,"2925":1,"2926":3,"2927":6,"2928":2,"2929":1,"2931":1,"2932":3,"2949":3}}],["aabb",{"0":{"2916":1}}],["aa",{"2":{"2755":1}}],["aaron",{"2":{"2074":2}}],["ajazz",{"2":{"2567":2}}],["ajisai74",{"2":{"143":2}}],["azerty",{"0":{"2804":1},"2":{"2887":2}}],["azure",{"2":{"2089":2,"2205":2}}],["azoteq",{"0":{"1969":1},"1":{"1970":1,"1971":1,"1972":1},"2":{"236":1,"249":1,"294":1,"1969":2,"1970":10,"1971":17,"1972":3}}],["ao",{"2":{"2301":1}}],["aoff",{"2":{"1925":1,"2539":1}}],["aozora",{"2":{"122":2}}],["a♯",{"2":{"1925":6,"2539":6}}],["a♭",{"2":{"1925":6,"2539":6}}],["a\`",{"2":{"1613":1}}],["a9",{"2":{"1269":1,"2042":2,"2678":1,"2691":1}}],["a8",{"2":{"716":2,"721":2,"1483":1,"2042":2,"2691":1}}],["a7²",{"2":{"695":1}}],["a7¹",{"2":{"695":1}}],["a7",{"2":{"693":1,"695":4,"2679":2,"2691":1}}],["a6²",{"2":{"695":1}}],["a6¹",{"2":{"695":1}}],["a6",{"2":{"693":1,"695":4,"2679":2,"2691":1}}],["a54",{"2":{"2691":1}}],["a5+dacd2",{"2":{"716":6}}],["a5²",{"2":{"695":1}}],["a5¹",{"2":{"695":1}}],["a5",{"2":{"693":1,"695":4,"716":1,"717":1,"1477":3,"1478":3,"1479":1,"1480":1,"1925":1,"2539":1,"2679":2,"2691":1}}],["a43",{"2":{"2691":1}}],["a4+a5",{"2":{"1479":1}}],["a4+dacd1",{"2":{"716":6}}],["a4²",{"2":{"695":1}}],["a4¹",{"2":{"695":1}}],["a4",{"2":{"693":1,"695":4,"716":1,"717":1,"1477":3,"1478":3,"1479":1,"1480":1,"1742":2,"1925":1,"2539":1,"2679":2,"2691":1}}],["a3²",{"2":{"695":2}}],["a3¹",{"2":{"695":2}}],["a3",{"2":{"693":1,"695":4,"1313":1,"1925":1,"2539":1}}],["a2²",{"2":{"695":2}}],["a2¹",{"2":{"695":2}}],["a2",{"2":{"693":1,"695":4,"1925":1,"2539":1,"2691":1,"2872":2}}],["a14",{"2":{"2691":1}}],["a145",{"2":{"2691":1}}],["a135",{"2":{"2691":1}}],["a13",{"2":{"1681":1,"2691":1}}],["a15",{"2":{"1655":1,"2691":1}}],["a12",{"2":{"1269":1,"2677":1}}],["a11",{"2":{"1269":1,"2677":1}}],["a10",{"2":{"1269":1,"1655":1,"2678":1,"2682":1,"2691":1}}],["a1²",{"2":{"695":2}}],["a1¹",{"2":{"695":2}}],["a1",{"2":{"693":1,"695":4,"1925":1,"2539":1,"2691":1,"2872":2,"2880":1}}],["a0²",{"2":{"695":2}}],["a0¹",{"2":{"695":2}}],["a0",{"2":{"693":1,"695":4,"699":1,"2288":2,"2396":1,"2679":1,"2680":1,"2691":1,"2872":2}}],["akko",{"2":{"2403":1}}],["akp846",{"2":{"294":1}}],["akc084",{"2":{"294":1}}],["akemipad",{"2":{"222":1}}],["akis",{"2":{"222":1}}],["akira",{"2":{"222":1}}],["akb",{"2":{"222":2}}],["aka",{"2":{"149":1,"194":1,"297":1,"308":1,"1488":1,"1489":1,"1593":2,"1774":1,"1788":1,"2266":1,"2267":1,"2300":1,"2929":1}}],["air",{"2":{"2280":1}}],["aim",{"2":{"2388":1}}],["aims",{"2":{"1964":1,"2212":1,"2632":1}}],["aiming",{"2":{"1923":1}}],["aimed",{"2":{"251":1,"664":1,"1855":1,"2094":1,"2642":1}}],["ain",{"2":{"513":1}}],["aids",{"2":{"2427":1}}],["aid",{"2":{"340":1,"527":1}}],["aide",{"2":{"249":1,"1975":1}}],["aidansmithdotdev",{"2":{"222":1}}],["ai03",{"2":{"149":1,"222":2,"447":1,"2422":1}}],["ae",{"2":{"2330":2}}],["aegis",{"2":{"222":1}}],["aero",{"2":{"222":1}}],["aeroboard",{"2":{"210":1}}],["aella",{"2":{"222":1}}],["aelith",{"2":{"197":2}}],["aeboards",{"0":{"60":1},"2":{"102":3,"114":1,"175":1,"222":3}}],["axis",{"0":{"1755":2,"1758":2},"1":{"1756":2,"1757":2,"1759":2},"2":{"167":2,"236":1,"1409":1,"1679":1,"1685":1,"1740":3,"1742":12,"1743":9,"1747":1,"1748":1,"1749":1,"1755":1,"1756":2,"1758":1,"1759":2,"1968":10,"1985":2,"1986":2,"1987":2,"1990":2,"2795":2,"2869":4,"2871":2,"2878":2}}],["axes",{"0":{"1742":1,"1743":1,"2050":1,"2051":1},"1":{"1743":1},"2":{"39":1,"167":2,"1738":3,"1740":1,"1742":4,"1743":2,"1747":1,"2014":1,"2050":2}}],["awkward",{"2":{"1791":1}}],["awinic",{"2":{"724":1}}],["awesome",{"2":{"196":1,"379":1,"522":1,"523":1,"524":1,"1341":1,"1462":1,"1469":1,"1798":1,"2717":1}}],["awake",{"2":{"1990":1}}],["awaiting",{"2":{"1948":1,"2571":1}}],["awaited",{"2":{"131":1}}],["aware",{"2":{"429":1,"430":1,"437":1,"440":1,"442":1,"445":1,"511":1,"1609":1,"2522":1}}],["away",{"2":{"3":1,"48":1,"134":3,"191":1,"266":1,"447":1,"1526":1,"1802":1,"1849":4,"1947":1,"2085":6,"2286":1,"2319":1,"2423":1,"2428":1,"2466":1,"2845":1}}],["aw20216s",{"0":{"724":1,"731":1,"733":1,"735":1,"737":1,"739":1},"1":{"725":1,"726":1,"727":1,"728":1,"729":1,"730":1,"731":1,"732":2,"733":1,"734":2,"735":1,"736":2,"737":1,"738":2,"739":1,"740":2},"2":{"236":1,"249":1,"724":1,"725":3,"726":7,"727":1,"729":3,"735":1,"736":1,"2081":1,"2878":1}}],["aw20216",{"2":{"114":3,"191":1,"209":2,"222":1,"236":1}}],["amtel",{"2":{"2273":1}}],["amt",{"2":{"1983":4}}],["among",{"2":{"1676":1,"2503":1,"2923":1}}],["amounts",{"2":{"1421":1,"2754":1,"2756":1,"2757":1}}],["amount",{"2":{"107":1,"753":1,"754":1,"1322":1,"1423":1,"1455":1,"1609":2,"1662":1,"1667":1,"1800":1,"1802":1,"1851":1,"1959":2,"2003":1,"2051":1,"2085":3,"2090":1,"2191":1,"2231":1,"2235":1,"2275":1,"2297":1,"2308":1,"2327":1,"2427":3,"2434":1,"2459":1,"2573":1,"2652":1,"2675":1,"2726":1,"2754":3,"2756":1,"2861":1,"2862":1,"2870":1,"2872":1,"2874":1,"2880":2,"2882":1,"2901":1}}],["amazing",{"2":{"1342":1}}],["amag23",{"2":{"222":1}}],["am",{"2":{"422":1,"1523":3,"2013":2,"2634":1}}],["america",{"2":{"1346":1,"2887":3}}],["amet",{"2":{"363":1}}],["amended",{"2":{"2726":1}}],["amending",{"2":{"229":1}}],["amend",{"2":{"210":2}}],["amendment",{"2":{"210":1}}],["ambiguous",{"2":{"516":1,"519":1,"2567":1}}],["ambiguity",{"2":{"273":1,"2567":3,"2569":1,"2726":1}}],["amber80",{"2":{"222":1}}],["amux",{"2":{"249":1}}],["amj84",{"2":{"210":1}}],["amj",{"2":{"160":1}}],["amjpad",{"2":{"159":2}}],["amj96",{"2":{"159":2}}],["amj60",{"2":{"159":2}}],["amjkeyboard",{"2":{"159":4,"160":1,"210":1}}],["amj40",{"2":{"159":2}}],["ampr",{"2":{"2546":1,"2555":1}}],["amptrics",{"2":{"308":1}}],["ampersand",{"2":{"277":1,"2546":1,"2555":1}}],["amp",{"0":{"15":1,"530":1,"1376":1,"1446":1,"1776":1,"1952":1,"2902":1},"1":{"1447":1,"1448":1,"1449":1,"1450":1,"1953":1,"2903":1,"2904":1},"2":{"63":1,"72":1,"93":1,"114":5,"134":1,"149":1,"160":1,"174":1,"175":1,"199":2,"222":2,"249":1,"266":1,"308":1,"317":3,"696":1,"1319":4,"1378":2,"1451":1,"1486":1,"1534":2,"1554":2,"1665":1,"1781":1,"1846":2,"1952":1,"2049":1,"2082":2,"2085":1,"2422":1,"2502":1,"2510":1,"2522":1,"2523":1,"2546":1,"2555":1,"2628":2,"2752":1,"2945":1}}],["ahead",{"2":{"76":1,"512":1,"514":1,"766":1,"2592":1,"2635":1}}],["agin",{"2":{"2516":1,"2522":1}}],["age",{"2":{"1409":1}}],["ag",{"2":{"1378":1,"1485":4,"1486":8,"2520":7,"2538":7}}],["agaim",{"2":{"651":1}}],["again",{"2":{"114":1,"134":1,"149":1,"402":1,"596":1,"687":2,"1320":1,"1422":2,"1462":1,"1483":1,"1498":1,"1526":1,"1539":1,"1618":1,"1619":1,"1642":1,"1661":2,"1762":2,"1764":1,"1776":1,"1782":1,"1785":1,"1786":1,"1789":1,"1791":1,"2000":1,"2073":1,"2076":2,"2191":1,"2275":1,"2309":1,"2310":1,"2393":1,"2416":1,"2466":1,"2508":1,"2516":4,"2522":4,"2533":1,"2627":1,"2650":1,"2728":1}}],["against",{"2":{"16":1,"39":1,"41":1,"134":1,"191":1,"251":1,"263":1,"265":2,"275":1,"405":1,"411":1,"412":1,"459":2,"494":1,"589":1,"749":1,"1528":1,"2414":1,"2427":1,"2502":1,"2567":1,"2634":1,"2725":1,"2730":1,"2847":1,"2902":1,"2940":1}}],["agreed",{"2":{"215":1,"2707":1}}],["agnostic",{"0":{"1437":1},"1":{"1438":1,"1439":1},"2":{"50":1,"114":1,"760":1,"1404":1,"1439":1}}],["apos",{"2":{"2567":1}}],["apt",{"2":{"513":1,"2601":1}}],["apm32",{"0":{"2399":1},"1":{"2400":1},"2":{"210":1,"222":1,"689":2,"2399":2}}],["apm32f103",{"2":{"134":1}}],["apart",{"2":{"2264":1,"2427":1,"2434":1}}],["apache",{"2":{"1630":1,"2748":1}}],["apa",{"2":{"210":1}}],["apa102",{"0":{"702":1,"706":1,"707":1,"709":1,"711":1,"712":1,"2855":1},"1":{"703":1,"704":1,"705":1,"706":1,"707":1,"708":2,"709":1,"710":2,"711":1,"712":1,"713":2},"2":{"75":1,"209":2,"212":2,"222":1,"234":2,"236":2,"249":2,"277":1,"294":1,"333":1,"702":1,"703":4,"704":3,"707":1,"708":1,"2081":1,"2178":1,"2179":7,"2855":2,"2877":1}}],["ap2",{"2":{"191":1}}],["aplyard",{"2":{"67":2,"72":1}}],["aplx6",{"2":{"67":3,"72":1}}],["apis",{"0":{"1638":1},"2":{"153":1,"236":1,"244":1,"703":1,"725":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1284":1,"1633":1,"1638":1,"2684":2,"2726":1,"2741":1,"2756":3,"2757":3}}],["api",{"0":{"208":1,"244":1,"368":1,"373":1,"377":1,"581":1,"705":1,"730":1,"771":1,"806":1,"832":1,"864":1,"894":1,"929":1,"963":1,"997":1,"1031":1,"1065":1,"1099":1,"1133":1,"1167":1,"1220":1,"1249":1,"1270":1,"1304":1,"1418":1,"1559":1,"1643":1,"1703":1,"1745":1,"1806":1,"1856":1,"1954":1,"2019":1,"2060":1,"2098":1,"2227":1,"2290":1,"2333":1,"2757":1,"2760":1},"1":{"369":1,"370":1,"371":1,"372":1,"374":1,"375":1,"376":1,"378":1,"379":1,"380":1,"381":1,"382":1,"383":1,"582":1,"583":1,"584":1,"706":1,"707":1,"708":1,"709":1,"710":1,"711":1,"712":1,"713":1,"731":1,"732":1,"733":1,"734":1,"735":1,"736":1,"737":1,"738":1,"739":1,"740":1,"772":1,"773":1,"774":1,"775":1,"776":1,"777":1,"778":1,"779":1,"780":1,"781":1,"782":1,"783":1,"784":1,"785":1,"786":1,"787":1,"788":1,"789":1,"790":1,"791":1,"792":1,"793":1,"794":1,"795":1,"796":1,"797":1,"798":1,"799":1,"807":1,"808":1,"809":1,"810":1,"811":1,"812":1,"813":1,"814":1,"815":1,"816":1,"817":1,"818":1,"819":1,"820":1,"821":1,"822":1,"823":1,"824":1,"825":1,"833":1,"834":1,"835":1,"836":1,"837":1,"838":1,"839":1,"840":1,"841":1,"842":1,"843":1,"844":1,"845":1,"846":1,"847":1,"848":1,"849":1,"850":1,"851":1,"852":1,"853":1,"854":1,"865":1,"866":1,"867":1,"868":1,"869":1,"870":1,"871":1,"872":1,"873":1,"874":1,"875":1,"876":1,"877":1,"878":1,"879":1,"880":1,"881":1,"882":1,"883":1,"884":1,"885":1,"886":1,"895":1,"896":1,"897":1,"898":1,"899":1,"900":1,"901":1,"902":1,"903":1,"904":1,"905":1,"906":1,"907":1,"908":1,"909":1,"910":1,"911":1,"912":1,"913":1,"914":1,"915":1,"916":1,"917":1,"918":1,"930":1,"931":1,"932":1,"933":1,"934":1,"935":1,"936":1,"937":1,"938":1,"939":1,"940":1,"941":1,"942":1,"943":1,"944":1,"945":1,"946":1,"947":1,"948":1,"949":1,"950":1,"951":1,"952":1,"953":1,"964":1,"965":1,"966":1,"967":1,"968":1,"969":1,"970":1,"971":1,"972":1,"973":1,"974":1,"975":1,"976":1,"977":1,"978":1,"979":1,"980":1,"981":1,"982":1,"983":1,"984":1,"985":1,"986":1,"987":1,"998":1,"999":1,"1000":1,"1001":1,"1002":1,"1003":1,"1004":1,"1005":1,"1006":1,"1007":1,"1008":1,"1009":1,"1010":1,"1011":1,"1012":1,"1013":1,"1014":1,"1015":1,"1016":1,"1017":1,"1018":1,"1019":1,"1020":1,"1021":1,"1032":1,"1033":1,"1034":1,"1035":1,"1036":1,"1037":1,"1038":1,"1039":1,"1040":1,"1041":1,"1042":1,"1043":1,"1044":1,"1045":1,"1046":1,"1047":1,"1048":1,"1049":1,"1050":1,"1051":1,"1052":1,"1053":1,"1054":1,"1055":1,"1066":1,"1067":1,"1068":1,"1069":1,"1070":1,"1071":1,"1072":1,"1073":1,"1074":1,"1075":1,"1076":1,"1077":1,"1078":1,"1079":1,"1080":1,"1081":1,"1082":1,"1083":1,"1084":1,"1085":1,"1086":1,"1087":1,"1088":1,"1089":1,"1100":1,"1101":1,"1102":1,"1103":1,"1104":1,"1105":1,"1106":1,"1107":1,"1108":1,"1109":1,"1110":1,"1111":1,"1112":1,"1113":1,"1114":1,"1115":1,"1116":1,"1117":1,"1118":1,"1119":1,"1120":1,"1121":1,"1122":1,"1123":1,"1134":1,"1135":1,"1136":1,"1137":1,"1138":1,"1139":1,"1140":1,"1141":1,"1142":1,"1143":1,"1144":1,"1145":1,"1146":1,"1147":1,"1148":1,"1149":1,"1150":1,"1151":1,"1152":1,"1153":1,"1154":1,"1155":1,"1156":1,"1157":1,"1168":1,"1169":1,"1170":1,"1171":1,"1172":1,"1173":1,"1174":1,"1175":1,"1176":1,"1177":1,"1178":1,"1179":1,"1180":1,"1181":1,"1182":1,"1183":1,"1184":1,"1185":1,"1186":1,"1187":1,"1188":1,"1189":1,"1190":1,"1191":1,"1221":1,"1222":1,"1223":1,"1224":1,"1225":1,"1226":1,"1227":1,"1228":1,"1229":1,"1230":1,"1231":1,"1232":1,"1233":1,"1234":1,"1235":1,"1236":1,"1237":1,"1238":1,"1239":1,"1240":1,"1241":1,"1242":1,"1243":1,"1244":1,"1250":1,"1251":1,"1252":1,"1253":1,"1254":1,"1255":1,"1256":1,"1257":1,"1258":1,"1259":1,"1260":1,"1261":1,"1262":1,"1263":1,"1264":1,"1265":1,"1271":1,"1272":1,"1273":1,"1274":1,"1275":1,"1276":1,"1277":1,"1278":1,"1279":1,"1280":1,"1281":1,"1282":1,"1305":1,"1306":1,"1307":1,"1308":1,"1309":1,"1310":1,"1560":1,"1561":1,"1562":1,"1563":1,"1564":1,"1565":1,"1566":1,"1567":1,"1568":1,"1569":1,"1570":1,"1571":1,"1572":1,"1573":1,"1574":1,"1575":1,"1576":1,"1644":1,"1645":1,"1646":1,"1647":1,"1648":1,"1649":1,"1650":1,"1651":1,"1652":1,"1653":1,"1654":1,"1704":1,"1705":1,"1706":1,"1707":1,"1708":1,"1709":1,"1710":1,"1711":1,"1712":1,"1713":1,"1714":1,"1715":1,"1716":1,"1717":1,"1718":1,"1719":1,"1720":1,"1721":1,"1722":1,"1723":1,"1724":1,"1725":1,"1726":1,"1727":1,"1728":1,"1729":1,"1730":1,"1731":1,"1732":1,"1733":1,"1734":1,"1735":1,"1736":1,"1737":1,"1746":1,"1747":1,"1748":1,"1749":1,"1750":1,"1751":1,"1752":1,"1753":1,"1754":1,"1755":1,"1756":1,"1757":1,"1758":1,"1759":1,"1760":1,"1761":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"1857":1,"1858":1,"1859":1,"1860":1,"1861":1,"1862":1,"1863":1,"1864":1,"1865":1,"1866":1,"1867":1,"1868":1,"1869":1,"1870":1,"1871":1,"1872":1,"1873":1,"1874":1,"1875":1,"1876":1,"1877":1,"1878":1,"1879":1,"1880":1,"1881":1,"1882":1,"1883":1,"1884":1,"1885":1,"1886":1,"1887":1,"1888":1,"1889":1,"1890":1,"1891":1,"1892":1,"1893":1,"1894":1,"1895":1,"1896":1,"1897":1,"1898":1,"1899":1,"1900":1,"1901":1,"1902":1,"1903":1,"1904":1,"1905":1,"1906":1,"1907":1,"1908":1,"1909":1,"1910":1,"1911":1,"1912":1,"1913":1,"1914":1,"1915":1,"1916":1,"1917":1,"2020":1,"2021":1,"2022":1,"2023":1,"2024":1,"2025":1,"2026":1,"2027":1,"2028":1,"2029":1,"2030":1,"2031":1,"2032":1,"2033":1,"2034":1,"2035":1,"2036":1,"2061":1,"2062":1,"2063":1,"2064":1,"2099":1,"2100":1,"2101":1,"2102":1,"2103":1,"2104":1,"2105":1,"2106":1,"2107":1,"2108":1,"2109":1,"2110":1,"2111":1,"2112":1,"2113":1,"2114":1,"2115":1,"2116":1,"2117":1,"2118":1,"2119":1,"2120":1,"2121":1,"2122":1,"2123":1,"2124":1,"2125":1,"2126":1,"2127":1,"2128":1,"2129":1,"2130":1,"2131":1,"2132":1,"2133":1,"2134":1,"2135":1,"2136":1,"2137":1,"2138":1,"2139":1,"2140":1,"2141":1,"2142":1,"2143":1,"2144":1,"2145":1,"2146":1,"2147":1,"2148":1,"2149":1,"2150":1,"2151":1,"2152":1,"2153":1,"2154":1,"2155":1,"2156":1,"2157":1,"2158":1,"2159":1,"2160":1,"2161":1,"2162":1,"2163":1,"2164":1,"2165":1,"2166":1,"2167":1,"2168":1,"2169":1,"2170":1,"2171":1,"2172":1,"2173":1,"2174":1,"2175":1,"2176":1,"2177":1,"2228":1,"2229":1,"2230":1,"2231":1,"2232":1,"2233":1,"2234":1,"2235":1,"2236":1,"2237":1,"2238":1,"2239":1,"2240":1,"2241":1,"2242":1,"2243":1,"2244":1,"2245":1,"2246":1,"2247":1,"2248":1,"2334":1,"2335":1,"2336":1,"2337":1,"2338":1,"2339":1,"2340":1,"2341":1,"2342":1,"2343":1,"2344":1,"2345":1,"2346":1,"2347":1,"2348":1,"2349":1,"2350":1,"2351":1,"2352":1,"2353":1,"2354":1,"2355":1,"2356":1,"2357":1,"2358":1,"2359":1,"2360":1,"2361":1,"2362":1,"2363":1,"2364":1,"2365":1,"2366":1,"2367":1,"2368":1,"2369":1,"2370":1,"2371":1,"2372":1,"2761":1,"2762":1},"2":{"41":1,"95":2,"113":1,"114":3,"133":3,"134":4,"149":2,"160":2,"166":1,"172":1,"175":5,"191":1,"196":1,"199":3,"206":1,"210":2,"222":2,"230":1,"236":1,"244":2,"248":1,"249":2,"266":3,"277":2,"285":1,"294":2,"328":1,"339":1,"366":4,"368":1,"369":2,"373":2,"374":2,"375":1,"376":2,"377":2,"378":2,"380":1,"381":1,"383":1,"578":1,"581":4,"585":1,"586":1,"588":1,"592":1,"657":1,"665":1,"696":1,"703":1,"765":1,"766":1,"1246":1,"1267":1,"1284":1,"1411":1,"1419":3,"1551":1,"1633":2,"1638":5,"1845":1,"1954":1,"1955":2,"2081":1,"2219":2,"2326":1,"2453":1,"2685":1,"2686":1,"2753":1,"2756":9,"2757":1,"2758":1,"2794":1,"2796":1,"2851":1,"2877":1,"2908":2}}],["apps",{"2":{"2331":2}}],["approvals",{"2":{"2731":1}}],["approximately",{"2":{"1939":1,"2379":1}}],["approaching",{"2":{"2712":1,"2713":1,"2888":1}}],["approaches",{"2":{"1343":1}}],["approach",{"2":{"720":1,"1381":1}}],["approachable",{"2":{"514":1,"538":1}}],["appropriately",{"2":{"615":1,"677":1,"749":1,"2008":1,"2011":1}}],["appropriate",{"2":{"26":2,"39":1,"175":1,"232":1,"393":1,"493":1,"536":1,"540":1,"607":1,"627":2,"666":1,"668":1,"681":1,"766":1,"1198":1,"1201":1,"1213":1,"1317":1,"1413":1,"1549":1,"1628":1,"1952":1,"2008":2,"2015":1,"2208":1,"2280":1,"2300":1,"2309":1,"2501":1,"2614":1,"2674":1,"2726":1,"2728":1,"2753":1,"2884":1,"2912":1}}],["appreciated",{"2":{"417":1}}],["app",{"0":{"369":1,"370":1,"371":1,"372":1,"374":1},"2":{"374":1,"1348":1,"1350":1,"2516":1,"2522":1,"2612":1,"2628":2}}],["apparently",{"2":{"355":2,"2374":1}}],["appearance",{"2":{"2425":1}}],["appear",{"2":{"383":1,"394":1,"685":1,"1514":1,"1962":1,"2567":1,"2795":1}}],["appears",{"2":{"40":1,"685":1,"686":1,"687":1,"689":1,"1351":1,"2499":1,"2502":1,"2673":2,"2690":1,"2717":1,"2728":1,"2742":1}}],["appended",{"2":{"1634":1,"2390":1,"2397":1}}],["appendix",{"0":{"1537":1},"1":{"1538":1,"1539":1}}],["appending",{"2":{"1388":1,"2464":1}}],["append",{"2":{"222":1,"2728":1,"2944":1}}],["apple",{"2":{"1356":3,"1357":2,"1361":2}}],["applies",{"2":{"320":1,"513":1,"564":1,"1519":1,"1639":1,"1781":1,"1786":1,"1934":2,"1974":1,"1983":2,"1988":1,"1989":1,"2046":1,"2650":1,"2675":1,"2713":1,"2727":1,"2741":1,"2750":1,"2833":1,"2931":2}}],["applied",{"2":{"233":1,"403":2,"656":1,"1381":1,"1457":1,"1518":1,"1600":1,"1666":1,"1685":1,"1940":1,"2427":1,"2634":1,"2756":2,"2757":1,"2800":1,"2912":1}}],["applicable",{"2":{"199":1,"688":1,"1414":1,"1788":1,"2452":1,"2728":3,"2853":2,"2920":1,"2929":1}}],["application",{"2":{"166":1,"368":1,"374":1,"377":1,"380":1,"473":1,"474":1,"476":1,"482":1,"483":1,"578":1,"891":1,"1350":1,"1627":1,"1934":1,"2389":1,"2390":1,"2394":1,"2396":1,"2397":2,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":1,"2408":1,"2410":1,"2482":1,"2506":1,"2516":2,"2522":2,"2614":1,"2656":1,"2738":2,"2739":2,"2931":1}}],["applications",{"2":{"166":1,"1380":2,"1788":1,"2466":1,"2674":1,"2929":1,"2931":1}}],["apply",{"0":{"1534":1,"1535":1,"2737":1},"1":{"1535":1,"2738":1,"2739":1},"2":{"92":1,"199":1,"210":1,"347":1,"393":2,"397":1,"557":1,"723":1,"744":1,"1291":1,"1295":1,"1299":1,"1302":1,"1303":1,"1380":1,"1410":2,"1423":1,"1433":1,"1499":1,"1518":1,"1534":1,"1535":3,"1551":1,"1554":1,"1556":1,"1557":1,"1600":1,"1612":1,"2078":2,"2193":1,"2259":1,"2260":2,"2427":2,"2573":1,"2686":1,"2728":1,"2909":1,"2931":2}}],["applying",{"2":{"11":1,"320":1,"2260":1,"2427":1,"2634":3,"2909":1,"2931":1}}],["averages",{"2":{"2731":1}}],["average",{"2":{"2378":1,"2379":2,"2910":1}}],["avail",{"2":{"2612":1}}],["availability",{"2":{"684":1,"2728":1}}],["available",{"0":{"1281":1,"1408":1,"2440":1},"1":{"1282":1,"2441":1,"2442":1,"2443":1,"2444":1,"2445":1,"2446":1},"2":{"43":1,"73":1,"83":1,"124":2,"153":1,"160":1,"170":1,"173":1,"179":1,"201":1,"213":1,"221":1,"222":1,"232":2,"235":1,"283":1,"285":1,"288":2,"298":1,"370":1,"381":1,"383":1,"411":1,"430":1,"434":1,"444":1,"469":3,"488":1,"510":1,"556":1,"570":4,"575":1,"578":1,"585":1,"609":1,"665":1,"668":1,"684":1,"701":1,"714":1,"716":1,"749":1,"750":1,"754":2,"803":1,"1192":1,"1196":1,"1201":1,"1205":1,"1211":1,"1212":1,"1213":1,"1266":1,"1282":1,"1311":1,"1323":1,"1326":1,"1343":1,"1345":2,"1348":1,"1389":1,"1395":1,"1409":1,"1464":1,"1471":1,"1484":1,"1485":2,"1489":1,"1490":2,"1493":1,"1532":1,"1606":1,"1626":1,"1678":2,"1773":1,"1849":1,"1956":1,"1984":1,"1987":1,"1989":1,"2037":1,"2044":1,"2048":1,"2085":1,"2210":1,"2297":1,"2377":2,"2378":2,"2388":1,"2389":1,"2391":1,"2392":1,"2393":1,"2394":1,"2397":1,"2398":1,"2400":1,"2403":1,"2405":1,"2406":2,"2408":2,"2410":2,"2417":2,"2427":1,"2433":1,"2450":1,"2452":1,"2453":3,"2474":1,"2482":1,"2501":1,"2521":1,"2528":2,"2567":1,"2568":2,"2613":1,"2621":1,"2628":1,"2675":1,"2687":1,"2704":1,"2716":1,"2723":1,"2724":1,"2728":1,"2736":1,"2745":1,"2748":1,"2749":1,"2757":6,"2885":1,"2886":1}}],["avalon",{"2":{"222":1}}],["avoids",{"2":{"1431":1,"2318":1,"2598":1}}],["avoided",{"0":{"2678":1},"2":{"531":1,"532":1,"537":1,"677":1,"2569":1,"2678":3,"2682":1,"2757":1}}],["avoiding",{"0":{"1528":1},"2":{"344":3,"403":1,"1427":1}}],["avoid",{"0":{"520":1},"2":{"24":1,"114":2,"175":1,"191":1,"195":1,"271":1,"289":1,"308":1,"494":1,"516":1,"528":1,"536":1,"609":1,"665":1,"675":1,"1332":1,"1415":1,"1424":1,"1428":2,"1485":1,"1558":1,"1593":1,"1668":1,"1702":1,"1954":1,"1990":1,"2008":1,"2012":2,"2057":1,"2379":1,"2431":3,"2598":1,"2658":1,"2923":1,"2926":1,"2937":1}}],["avrisp",{"2":{"2484":1,"2488":1,"2502":1}}],["avr109",{"2":{"2392":3}}],["avr8",{"2":{"573":1}}],["avrdudess",{"2":{"2392":1,"2395":1}}],["avrdude",{"2":{"236":1,"568":2,"1472":1,"2273":3,"2392":3,"2393":6,"2395":2,"2417":1,"2484":2,"2486":2,"2488":2,"2490":3,"2492":2,"2494":2,"2496":2,"2502":19,"2503":2}}],["avrs",{"2":{"160":1,"2389":1,"2889":1}}],["avr",{"0":{"123":1,"546":1,"573":1,"693":1,"698":1,"715":1,"767":1,"1247":1,"1268":1,"1474":1,"1552":1,"2041":1,"2441":1,"2803":1,"2888":1},"1":{"1475":1,"1553":1,"1554":1,"2889":1,"2890":1,"2891":1,"2892":1,"2893":1,"2894":1},"2":{"2":1,"18":2,"74":1,"111":1,"113":1,"114":5,"123":2,"130":1,"134":3,"149":3,"153":2,"160":4,"175":2,"181":1,"187":1,"191":5,"199":1,"203":2,"210":2,"222":1,"266":2,"308":1,"545":3,"570":2,"605":1,"613":1,"690":2,"715":1,"746":2,"761":2,"762":2,"1192":1,"1248":1,"1290":2,"1368":1,"1392":1,"1393":1,"1740":1,"1943":4,"1953":1,"1954":2,"2261":2,"2262":1,"2273":3,"2275":1,"2374":1,"2375":1,"2388":1,"2395":1,"2396":1,"2418":1,"2441":1,"2465":1,"2482":1,"2490":1,"2496":1,"2502":2,"2503":3,"2653":1,"2657":1,"2662":1,"2700":1,"2753":1,"2803":1,"2818":1,"2835":1,"2844":1,"2888":2,"2901":1,"2907":1,"2935":2}}],["acl2",{"2":{"1933":1,"1935":1,"1937":7,"1938":2,"2540":1}}],["acl1",{"2":{"1933":1,"1935":1,"1937":8,"1938":2,"2540":1}}],["acl0",{"2":{"1933":1,"1935":1,"1937":7,"1938":2,"2540":1}}],["acm=y",{"2":{"1317":1}}],["acm",{"2":{"1317":1}}],["acknowledge",{"2":{"565":1,"2191":1}}],["acknowledgment",{"2":{"312":1}}],["achievable",{"2":{"2901":1}}],["achieved",{"2":{"1795":1,"1953":1,"2757":1,"2884":1}}],["achieve",{"2":{"1777":1,"2211":1,"2317":1,"2423":1,"2425":1,"2756":1}}],["achordion",{"2":{"294":1}}],["acheron",{"2":{"222":2}}],["acquire",{"2":{"277":1,"2384":1}}],["ac",{"2":{"236":1,"1446":1,"1526":1,"1529":1,"1530":3,"2226":1,"2526":3,"2926":1}}],["acid",{"2":{"222":1}}],["acid3",{"2":{"143":13,"149":2,"308":1}}],["acr60",{"0":{"256":1},"1":{"257":1,"258":1,"259":1,"260":1},"2":{"143":2,"256":1,"266":1}}],["across",{"2":{"21":1,"24":1,"118":1,"128":1,"137":1,"138":1,"182":1,"246":1,"262":1,"283":1,"285":1,"760":1,"1538":1,"1702":1,"2325":1,"2920":1,"2931":1}}],["accident",{"2":{"2912":1}}],["accidental",{"2":{"246":1,"289":1,"1455":1,"1608":1,"1614":1,"2913":2,"2923":1,"2926":1}}],["accidentally",{"2":{"194":1,"198":1,"687":1,"2057":1}}],["accumulates",{"2":{"2191":1}}],["accumulate",{"2":{"1994":1}}],["accumulated",{"2":{"1994":13}}],["accuracy",{"2":{"1938":1,"2291":1}}],["accurately",{"2":{"1846":1,"2082":1,"2717":1}}],["accurate",{"2":{"43":1,"1196":1,"1199":1,"1288":1,"2379":1,"2466":1}}],["accompanying",{"2":{"2568":1,"2729":1}}],["accompanied",{"2":{"118":1,"1501":1,"2904":1}}],["accomplish",{"2":{"1388":1,"1423":1,"2310":1,"2573":1,"2580":1}}],["accomplished",{"2":{"599":1}}],["accommodate",{"2":{"149":1,"1486":1,"1609":1}}],["accounted",{"2":{"1286":1}}],["account",{"2":{"149":1,"210":1,"222":1,"302":1,"470":1,"607":2,"2387":2,"2461":1,"2506":1,"2592":1,"2599":2,"2602":1,"2632":2}}],["according",{"2":{"134":2,"698":1,"699":1,"2016":1,"2086":1,"2455":1,"2606":1,"2616":1,"2927":1,"2928":1}}],["accordingly",{"2":{"126":1,"208":1,"340":1,"923":1,"1094":1,"1128":1,"2319":1,"2454":1,"2702":1,"2711":1}}],["accented",{"2":{"2886":1}}],["accel",{"2":{"1937":3}}],["accelerating",{"2":{"1936":1}}],["acceleration",{"2":{"38":2,"1933":6,"1934":1,"1935":4,"1936":3,"1937":1,"1938":4,"1939":1,"1940":4,"2053":1,"2540":6}}],["accelerate",{"2":{"2428":1,"2941":1}}],["accelerates",{"2":{"1934":4,"1939":1}}],["accelerated",{"0":{"1935":1},"2":{"1934":1,"1935":1,"1936":5,"1938":2,"1939":1}}],["accel2",{"2":{"231":1}}],["accessor",{"2":{"2757":2}}],["accessible",{"2":{"1348":1,"2431":1}}],["accessing",{"2":{"323":1,"383":1,"1378":1,"2626":1,"2757":2}}],["accessed",{"2":{"560":1,"1378":1,"1789":1}}],["accesses",{"2":{"114":1,"1791":1}}],["access",{"2":{"210":1,"240":1,"308":1,"323":1,"390":1,"489":2,"492":1,"495":4,"500":1,"538":1,"656":1,"670":2,"693":1,"760":1,"1332":1,"1416":1,"1440":1,"1634":1,"1663":1,"1779":1,"1789":1,"1923":1,"2417":4,"2520":1,"2602":1,"2608":2,"2667":1,"2671":2,"2728":1,"2784":2,"2912":2}}],["acceptable",{"2":{"2726":1,"2728":1}}],["acceptance",{"2":{"403":1}}],["accepts",{"2":{"402":1,"433":1,"463":1,"581":1,"2755":1,"2757":2}}],["accepted",{"2":{"212":1,"265":1,"403":1,"603":1,"609":1,"1463":1,"2569":1,"2727":1,"2728":3}}],["accepting",{"2":{"199":1,"201":1,"224":1,"621":1,"1343":1,"2712":1,"2713":1}}],["accept",{"2":{"188":1,"512":1,"1422":1,"1723":1,"2222":1,"2387":1,"2418":1,"2458":1,"2462":1,"2502":1,"2728":1}}],["actor",{"2":{"2607":3}}],["acto",{"2":{"2280":1}}],["acts",{"2":{"1795":2,"2535":1,"2572":1,"2834":1,"2925":1}}],["act",{"2":{"283":3,"746":1,"1378":1,"1593":1,"2009":1,"2068":1,"2316":1,"2466":1,"2566":1,"2639":1}}],["actuators",{"2":{"1685":1}}],["actuated",{"2":{"1681":4,"2434":1}}],["actuation",{"2":{"236":1,"1681":1}}],["actual",{"2":{"367":1,"397":1,"630":1,"632":1,"651":1,"1371":1,"1380":1,"1841":1,"1947":1,"1961":1,"1974":1,"2057":1,"2207":1,"2286":1,"2300":1,"2470":1,"2472":1,"2482":1,"2496":1,"2882":1,"2937":1,"2943":1}}],["actually",{"2":{"18":1,"41":1,"46":1,"83":1,"166":1,"455":1,"543":1,"586":1,"609":1,"695":1,"750":1,"754":1,"1338":1,"1345":1,"1350":1,"1356":1,"1361":1,"1409":1,"1423":1,"1470":1,"1471":1,"1529":1,"1953":1,"1990":1,"2219":1,"2222":1,"2265":1,"2266":1,"2300":1,"2317":1,"2434":2,"2470":1,"2473":2,"2503":1,"2711":1,"2781":1,"2794":1,"2884":2,"2912":1,"2932":1,"2950":1}}],["activating",{"2":{"246":1,"328":1,"1422":1,"1782":3,"1791":1,"1999":1,"2053":1,"2696":1,"2922":1}}],["activation",{"0":{"246":1,"1613":1,"1784":1,"2014":1},"2":{"152":1,"246":1,"289":1,"328":1,"1380":1,"1381":1,"1455":1,"1594":1,"1618":1,"1681":2,"1779":1,"1781":1,"1782":3,"1784":1,"2003":2,"2008":2,"2014":6,"2015":1,"2254":2,"2926":1}}],["activates",{"2":{"1422":6,"1427":1,"1446":1,"1601":1,"1770":1,"1779":1,"1985":1,"2320":1,"2563":1,"2700":1}}],["activate",{"0":{"2000":1},"2":{"194":2,"222":1,"609":1,"1195":1,"1198":1,"1201":1,"1203":2,"1204":2,"1312":1,"1422":1,"1427":1,"1473":1,"1593":1,"1594":6,"1595":1,"1604":2,"1611":1,"1612":2,"1613":1,"1615":1,"1617":1,"1625":1,"1690":2,"1766":1,"1772":1,"1776":2,"1781":3,"1782":1,"1784":4,"1999":3,"2014":1,"2254":3,"2294":1,"2331":1,"2564":1,"2572":1,"2651":1,"2700":1,"2784":1,"2825":1,"2861":2,"2912":1,"2922":1}}],["activated",{"2":{"73":1,"236":1,"1422":4,"1427":1,"1446":1,"1485":1,"1486":2,"1546":1,"1595":1,"1609":1,"1616":1,"1617":1,"1681":1,"1781":3,"1784":1,"1937":1,"2014":1,"2193":1,"2466":1,"2700":1,"2702":1}}],["actively",{"2":{"2565":1,"2566":1}}],["active",{"0":{"1814":1,"2012":1,"2360":1},"1":{"2361":1},"2":{"105":8,"149":1,"175":1,"199":1,"249":1,"312":2,"320":1,"339":1,"596":1,"1378":3,"1380":2,"1381":2,"1422":5,"1425":1,"1427":2,"1428":2,"1432":1,"1451":1,"1462":5,"1484":1,"1533":2,"1593":1,"1598":1,"1600":1,"1601":3,"1619":1,"1627":1,"1657":7,"1678":4,"1681":3,"1687":1,"1690":1,"1781":3,"1791":1,"1814":1,"1937":2,"1985":3,"1994":2,"1999":1,"2003":1,"2006":1,"2008":2,"2011":2,"2014":2,"2015":1,"2065":1,"2069":1,"2188":1,"2189":4,"2253":1,"2254":4,"2276":1,"2278":2,"2309":1,"2310":2,"2319":3,"2335":1,"2360":1,"2361":1,"2535":1,"2559":2,"2564":1,"2576":1,"2650":1,"2652":1,"2824":1,"2931":2}}],["activity",{"2":{"74":2,"222":2,"249":1,"647":5,"2214":1,"2218":2,"2276":3,"2679":1,"2871":1,"2878":1,"2880":2}}],["acting",{"2":{"47":1,"2789":1}}],["actioned",{"2":{"49":1}}],["actions",{"0":{"3":1,"7":1,"48":1,"1933":1,"2597":1},"2":{"3":2,"7":3,"28":1,"48":2,"49":1,"114":2,"134":2,"247":1,"320":1,"402":1,"409":1,"417":1,"574":1,"579":1,"580":1,"1353":1,"1409":1,"1417":1,"1444":1,"1551":1,"1602":1,"1605":1,"1766":2,"1781":2,"1788":1,"1931":1,"1933":1,"1958":1,"2213":1,"2309":3,"2312":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":3,"2468":1,"2558":1,"2590":1,"2591":1,"2595":1,"2597":1,"2599":1,"2607":3,"2609":1,"2610":1,"2663":1,"2751":1,"2914":1,"2929":1,"2931":3}}],["action",{"0":{"3":1,"7":1,"30":1,"48":1,"53":1,"67":1,"72":1,"85":1,"101":1,"121":1,"139":1,"140":1,"155":1,"164":1,"180":1,"193":1,"204":1,"216":1,"225":1,"239":1,"252":1,"269":1,"280":1,"290":1,"299":1,"310":1,"321":1,"2302":1,"2607":1},"1":{"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"54":1,"55":1,"56":1,"57":1,"58":1,"59":1,"60":1,"86":1,"87":1,"88":1,"89":1,"90":1,"102":1,"103":1,"104":1,"105":1,"122":1,"123":1,"124":1,"125":1,"126":1,"127":1,"128":1,"140":1,"141":1,"142":1,"143":1,"156":1,"157":1,"158":1,"159":1,"165":1,"166":1,"167":1,"168":1,"169":1,"170":1,"181":1,"182":1,"183":1,"184":1,"185":1,"194":1,"195":1,"196":1,"197":1,"205":1,"206":1,"207":1,"208":1,"209":1,"217":1,"218":1,"226":1,"240":1,"241":1,"253":1,"254":1,"255":1,"256":1,"257":1,"258":1,"259":1,"260":1,"270":1,"271":1,"272":1,"273":1,"281":1,"291":1,"300":1,"311":1,"312":1,"322":1,"323":1,"324":1,"325":1,"2303":1,"2304":1,"2305":1,"2306":1},"2":{"28":9,"39":1,"49":1,"75":2,"120":7,"140":1,"149":2,"199":6,"214":1,"222":1,"317":1,"323":3,"324":6,"325":4,"353":1,"414":3,"487":1,"562":3,"564":1,"565":1,"579":1,"588":1,"618":1,"687":1,"1427":1,"1441":7,"1444":9,"1472":1,"1518":2,"1533":3,"1602":1,"1605":3,"1622":2,"1765":1,"1779":1,"1781":2,"1787":1,"1788":2,"1852":2,"1934":1,"1935":1,"1937":4,"2065":1,"2068":1,"2070":1,"2091":4,"2182":3,"2191":1,"2302":2,"2309":12,"2310":2,"2312":2,"2314":2,"2315":4,"2316":7,"2317":6,"2318":2,"2319":4,"2557":5,"2562":1,"2598":1,"2669":1,"2831":1,"2889":2,"2890":2,"2892":1,"2914":6,"2920":7,"2921":5,"2929":2,"2941":1}}],["adequate",{"2":{"2421":1}}],["adelie",{"2":{"222":1}}],["adelais",{"2":{"134":6,"175":1}}],["adj",{"2":{"1945":3,"2284":3}}],["adjusting",{"2":{"1493":1,"1738":1,"1936":1}}],["adjusts",{"2":{"1488":1,"1743":1,"2185":2,"2293":1}}],["adjusted",{"2":{"859":1,"924":1,"958":1,"992":1,"1026":1,"1060":1,"1162":1,"2797":1}}],["adjustments",{"2":{"2912":1}}],["adjustment",{"0":{"1286":1},"2":{"236":1,"1852":2,"2011":1,"2091":4,"2182":3,"2185":1,"2283":1}}],["adjustable",{"2":{"134":1}}],["adjust",{"2":{"105":4,"149":2,"175":3,"198":1,"222":1,"266":1,"509":1,"609":1,"727":1,"860":1,"861":1,"925":1,"959":1,"993":1,"1027":1,"1061":1,"1095":1,"1129":1,"1163":1,"1299":1,"1300":1,"1417":1,"1430":1,"1488":1,"1657":2,"1935":1,"1936":1,"1937":1,"1988":1,"1989":1,"1994":1,"2011":1,"2013":1,"2086":1,"2190":1,"2211":2,"2293":1,"2320":2,"2321":2,"2322":4,"2323":6,"2702":1,"2783":4,"2785":2,"2912":1}}],["adherence",{"2":{"2902":1}}],["adheres",{"2":{"2427":1}}],["adhere",{"2":{"1407":1,"2610":1}}],["adhlns",{"2":{"134":1}}],["ad",{"2":{"829":1,"858":1,"890":1}}],["administrator",{"2":{"688":1,"2331":1}}],["adm42",{"2":{"226":2,"236":1}}],["advice",{"2":{"2726":1}}],["advised",{"2":{"1196":1,"1199":1,"1485":1,"2658":1}}],["adventurous",{"2":{"1612":1}}],["advertised",{"2":{"596":1,"2569":1}}],["advantageous",{"2":{"2764":1}}],["advantages",{"2":{"1196":1,"1199":1,"2653":1,"2664":1,"2669":1}}],["advantage",{"2":{"93":1,"665":1,"1783":1,"2292":1,"2479":1}}],["advances",{"2":{"1954":8,"2290":8}}],["advanced",{"0":{"661":1,"762":1,"1206":1,"1382":1,"1402":1,"1427":1,"1447":1,"1451":1,"1461":1,"1591":1,"1603":1,"1607":1,"1778":1,"1783":1,"1912":1,"1915":1,"1922":1,"1994":1,"2007":1,"2010":1,"2172":1,"2175":1,"2318":1,"2908":1},"1":{"662":1,"663":1,"1207":1,"1208":1,"1383":1,"1384":1,"1385":1,"1386":1,"1387":1,"1403":1,"1404":1,"1405":1,"1406":1,"1407":1,"1408":1,"1452":1,"1453":1,"1454":1,"1455":1,"1456":1,"1457":1,"1458":1,"1459":1,"1460":1,"1462":1,"1608":1,"1609":1,"1610":1,"1611":1,"1612":1,"1613":1,"1614":1,"1615":1,"1616":1,"1617":1,"1618":1,"1619":1,"1620":1,"1779":1,"1784":1,"1785":1,"1786":1,"1923":1,"1924":1,"2008":1,"2009":1,"2010":1,"2011":2,"2012":2,"2013":1},"2":{"39":1,"63":1,"93":1,"149":1,"249":1,"285":1,"563":1,"564":1,"599":1,"619":1,"762":2,"1206":1,"1303":1,"1343":1,"1379":1,"1381":1,"1427":1,"1451":1,"1491":1,"1603":2,"1634":1,"1638":6,"1781":1,"1855":2,"1919":2,"1922":2,"1974":1,"1994":1,"2007":1,"2094":2,"2095":3,"2096":2,"2309":3,"2310":1,"2315":1,"2317":3,"2318":3,"2319":1,"2432":1,"2478":1,"2503":1,"2621":1,"2684":1,"2704":1,"2728":1,"2751":1,"2906":1,"2907":1,"2908":2,"2909":1,"2945":1}}],["advance",{"0":{"2903":1},"2":{"20":1,"23":1,"384":1,"396":1,"1954":3,"2290":3,"2903":1}}],["adopted",{"2":{"529":1}}],["adoption",{"2":{"128":1}}],["adkb96",{"2":{"253":2}}],["adpenrose",{"2":{"222":2}}],["ad65",{"2":{"222":1}}],["adns9800",{"0":{"273":1,"276":1,"284":1},"2":{"118":1,"149":1,"273":3,"276":1,"277":1,"1967":6}}],["adns",{"0":{"1966":1,"1967":1},"2":{"118":2,"1966":2,"1967":2}}],["adns5050",{"2":{"118":1,"285":1,"1966":4}}],["adcconfig",{"2":{"1974":5}}],["adc6",{"2":{"698":1}}],["adcrpenablets",{"2":{"696":1}}],["adcd1",{"2":{"696":2}}],["adc3",{"2":{"695":3}}],["adc2",{"2":{"695":2}}],["adc1",{"2":{"695":1,"699":1}}],["adcv3",{"2":{"695":1}}],["adcv1",{"2":{"695":1}}],["adcs",{"2":{"695":2,"699":2}}],["adc",{"0":{"690":1,"744":1},"1":{"691":1,"692":1,"693":1,"694":1,"695":1,"696":1,"697":1,"698":1,"699":1,"700":1,"701":1},"2":{"93":1,"175":2,"234":2,"249":1,"690":1,"693":2,"695":7,"696":3,"698":5,"699":11,"701":12,"743":1,"744":11,"1738":2,"1739":1,"1740":1,"1742":2,"1968":1,"1974":5,"2692":1,"2858":5}}],["adb",{"2":{"75":1,"1357":2}}],["adalyn",{"2":{"143":2}}],["adafruitble",{"0":{"142":1},"2":{"142":1,"149":1}}],["adafruit",{"0":{"1393":1,"2375":1},"2":{"40":2,"133":1,"134":2,"142":1,"178":1,"191":3,"546":1,"689":3,"749":1,"750":1,"1391":1,"1394":1,"1397":1,"1681":1,"2374":1,"2375":4,"2490":1,"2494":1,"2499":3,"2702":1,"2728":1,"2895":1}}],["adaptation",{"2":{"2568":1}}],["adapting",{"2":{"2464":1}}],["adapter",{"2":{"384":1,"2454":1}}],["adapted",{"2":{"163":1}}],["adapt",{"2":{"22":1,"175":1,"2927":1}}],["addenda",{"0":{"1592":1}}],["added",{"2":{"39":8,"47":1,"63":1,"67":1,"72":2,"74":1,"81":1,"82":1,"86":1,"93":1,"112":1,"114":2,"132":1,"134":1,"149":4,"153":1,"154":1,"158":1,"160":1,"173":1,"175":2,"188":1,"190":2,"191":8,"196":1,"210":2,"212":1,"213":1,"214":1,"222":1,"230":1,"231":1,"234":3,"236":3,"243":1,"249":2,"266":2,"277":1,"285":1,"317":1,"331":1,"339":1,"403":1,"452":1,"494":1,"509":1,"572":1,"607":1,"681":1,"1204":1,"1434":1,"1448":1,"1463":1,"1464":3,"1466":1,"1485":1,"1518":1,"1533":1,"1542":1,"1631":1,"1633":2,"1656":1,"1662":1,"1667":1,"1785":2,"1803":2,"1809":1,"1810":1,"1817":1,"1952":1,"1984":1,"2004":1,"2182":1,"2281":1,"2366":1,"2425":1,"2439":1,"2570":1,"2596":2,"2639":1,"2669":1,"2726":1,"2729":2,"2850":1,"2913":1}}],["addr2",{"2":{"922":1,"957":1,"1093":1,"1127":1,"1161":1}}],["addr1",{"2":{"922":1,"957":1,"1093":1,"1127":1,"1161":1}}],["addr",{"2":{"236":1,"749":1,"991":1,"1025":1,"1059":1,"1217":1,"1974":1,"2508":8}}],["addressed",{"2":{"750":1,"759":1,"1986":1}}],["addresses",{"2":{"236":1,"249":1,"731":1,"766":1,"807":1,"829":1,"833":1,"858":1,"865":1,"890":1,"895":1,"922":1,"930":1,"957":1,"964":1,"991":1,"998":1,"1025":1,"1032":1,"1059":1,"1066":1,"1093":1,"1100":1,"1127":1,"1134":1,"1161":1,"1168":1,"1217":1,"1221":1,"2070":1,"2733":1}}],["addressable",{"2":{"702":1,"1283":2,"2178":2}}],["addressing",{"0":{"766":1,"803":1,"829":1,"858":1,"890":1,"922":1,"957":1,"991":1,"1025":1,"1059":1,"1093":1,"1127":1,"1161":1,"1217":1},"2":{"198":1,"201":1,"212":1,"224":1,"238":1,"607":1,"766":1,"1953":1,"2206":1,"2441":1}}],["address",{"0":{"773":1,"776":1,"779":1,"782":1,"797":2,"1734":2,"1736":2},"1":{"774":1,"775":1,"777":1,"778":1,"780":1,"781":1,"783":1,"784":1,"798":2,"799":2,"1735":2,"1737":2},"2":{"40":1,"73":1,"114":2,"175":1,"236":1,"579":1,"580":1,"581":1,"607":1,"670":2,"732":3,"749":9,"750":1,"753":1,"759":2,"766":6,"774":2,"776":1,"777":2,"780":2,"783":2,"785":1,"786":2,"788":1,"789":2,"791":1,"792":2,"794":1,"795":2,"797":2,"798":2,"803":2,"808":4,"811":1,"828":8,"829":5,"834":4,"838":1,"857":8,"858":5,"866":4,"870":1,"889":8,"890":5,"896":4,"900":1,"921":8,"922":17,"931":4,"935":1,"956":8,"957":17,"965":4,"969":1,"990":8,"991":5,"999":4,"1003":1,"1024":8,"1025":5,"1033":4,"1037":1,"1058":8,"1059":5,"1067":4,"1071":1,"1092":8,"1093":17,"1101":4,"1105":1,"1126":8,"1127":17,"1135":4,"1139":1,"1160":8,"1161":17,"1169":4,"1173":1,"1216":8,"1217":5,"1222":4,"1226":1,"1291":2,"1442":1,"1729":2,"1734":1,"1735":2,"1736":1,"1737":2,"1950":2,"1953":1,"1970":2,"1974":1,"1980":2,"2444":1,"2506":1,"2508":1,"2694":1,"2756":3,"2883":2}}],["additive",{"0":{"718":1,"1480":1},"2":{"210":3,"236":2,"249":1,"716":1,"720":2,"723":1,"1477":1,"1480":2,"1484":1,"2856":1}}],["addition",{"2":{"114":1,"191":1,"194":1,"222":34,"249":1,"328":1,"1378":1,"1428":1,"1447":1,"1621":1,"1777":1,"1843":1,"1855":1,"2094":1,"2207":1,"2259":1,"2294":1,"2309":1,"2431":1,"2519":1,"2904":1,"2914":2}}],["additionally",{"2":{"67":1,"86":1,"190":1,"220":1,"262":1,"588":1,"651":1,"717":1,"718":1,"1340":1,"1416":1,"1417":1,"1466":1,"1467":1,"1485":1,"1499":1,"1526":1,"1529":1,"1534":1,"1589":1,"1657":1,"1664":1,"1665":1,"1666":1,"1675":1,"1771":1,"1772":1,"1773":1,"1789":1,"1923":1,"1976":1,"1990":1,"1999":1,"2181":1,"2319":1,"2381":1,"2390":1,"2397":1,"2453":1,"2506":1,"2554":1,"2573":1,"2590":1,"2650":1,"2731":1,"2797":1,"2913":1}}],["additional",{"0":{"594":1,"1404":1,"1405":1,"1852":1,"2005":1,"2045":1,"2079":1,"2091":1,"2281":1,"2581":1,"2681":1,"2722":1},"1":{"2006":1,"2046":1,"2047":1,"2048":1,"2049":1,"2050":1,"2051":1,"2052":1,"2053":1,"2682":1,"2683":1,"2723":1,"2724":1},"2":{"40":1,"86":2,"94":1,"114":1,"134":1,"173":1,"175":3,"191":1,"198":1,"201":1,"212":1,"221":1,"222":1,"236":1,"308":1,"433":1,"555":1,"623":1,"701":1,"1209":1,"1213":1,"1298":1,"1328":1,"1340":1,"1388":1,"1390":1,"1395":1,"1400":1,"1401":1,"1405":1,"1409":1,"1422":1,"1428":1,"1451":1,"1464":2,"1534":1,"1536":1,"1540":1,"1591":3,"1662":1,"1664":1,"1697":1,"1770":1,"1773":1,"1849":1,"1940":1,"1952":1,"1966":1,"1978":1,"1981":1,"1988":2,"1998":1,"1999":1,"2004":1,"2009":1,"2012":1,"2065":1,"2069":1,"2072":1,"2079":1,"2085":2,"2179":1,"2183":1,"2184":1,"2261":1,"2275":1,"2276":1,"2318":1,"2325":1,"2326":1,"2389":1,"2394":1,"2397":1,"2417":1,"2435":1,"2439":1,"2453":1,"2454":1,"2455":1,"2578":1,"2726":1,"2733":1,"2735":1,"2748":1,"2749":1,"2785":1,"2889":1,"2890":1,"2941":1,"2945":2,"2949":1}}],["additions",{"0":{"39":1,"63":1,"74":1,"93":1},"2":{"149":1,"210":1,"222":147,"236":1,"249":1,"285":1,"2412":1}}],["adding",{"0":{"47":1,"587":1,"667":1,"1627":1,"1628":1,"1931":1,"2004":1,"2594":1,"2595":1,"2711":1,"2712":1,"2713":1,"2714":1,"2945":1},"1":{"588":1,"589":1,"590":1,"591":1,"592":1,"593":1,"594":1,"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"1932":1,"1933":1,"2005":1,"2006":1,"2715":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":1,"2721":1,"2722":1,"2723":1,"2724":1},"2":{"74":1,"86":1,"99":1,"114":1,"188":1,"201":1,"212":1,"236":1,"249":1,"266":1,"277":1,"339":1,"429":1,"500":1,"592":1,"596":1,"629":1,"667":1,"668":1,"672":1,"729":1,"753":1,"805":1,"831":1,"859":1,"863":1,"893":1,"924":1,"928":1,"958":1,"962":1,"992":1,"996":1,"1026":1,"1030":1,"1060":1,"1064":1,"1098":1,"1132":1,"1162":1,"1166":1,"1219":1,"1287":1,"1342":1,"1343":1,"1354":1,"1390":1,"1396":1,"1405":1,"1413":1,"1422":1,"1446":2,"1480":1,"1501":1,"1517":1,"1533":1,"1595":1,"1597":1,"1602":1,"1622":1,"1655":1,"1662":1,"1665":1,"1686":1,"1800":1,"1919":1,"1945":1,"1984":1,"1986":1,"2004":1,"2005":2,"2009":1,"2053":1,"2056":1,"2068":1,"2178":1,"2271":1,"2272":1,"2276":1,"2284":1,"2309":2,"2330":1,"2378":1,"2387":2,"2435":1,"2592":1,"2640":1,"2652":1,"2674":1,"2705":1,"2707":1,"2711":2,"2728":1,"2729":2,"2756":11,"2890":1,"2891":2,"2910":1,"2920":1,"2921":1,"2926":1,"2927":1,"2945":1,"2950":2}}],["adds",{"2":{"25":1,"39":2,"40":1,"46":1,"74":1,"107":1,"114":1,"188":1,"210":1,"229":1,"249":1,"277":1,"297":1,"443":1,"452":1,"565":1,"1472":1,"1493":1,"1538":1,"1627":1,"2277":1,"2293":1,"2309":1,"2389":1,"2640":1,"2674":1,"2949":1}}],["add",{"0":{"25":1,"178":1,"188":1,"452":1,"668":1,"669":1,"672":1,"673":1,"1341":1,"1809":1,"1815":1,"2006":1,"2021":1,"2364":1,"2606":1,"2607":1},"1":{"26":1,"670":1,"671":1,"1342":1,"1810":1,"1811":1,"1816":1,"1817":1,"2022":1,"2365":1,"2366":1},"2":{"18":1,"21":1,"22":2,"24":2,"39":4,"63":5,"65":4,"70":1,"74":5,"76":2,"77":2,"92":1,"93":24,"110":2,"114":38,"119":1,"123":1,"130":2,"133":2,"134":26,"149":21,"160":21,"173":4,"174":1,"175":27,"190":1,"191":33,"199":25,"209":1,"210":18,"213":2,"222":25,"235":1,"236":30,"249":23,"266":15,"273":1,"277":7,"285":17,"294":8,"307":3,"308":15,"317":5,"328":15,"333":3,"339":8,"344":6,"403":1,"411":1,"420":1,"421":1,"452":2,"495":1,"505":1,"509":1,"510":1,"512":1,"540":1,"572":2,"587":1,"589":1,"593":1,"596":1,"607":4,"623":2,"624":2,"625":2,"647":2,"666":6,"668":1,"669":1,"672":1,"673":1,"681":2,"691":1,"703":1,"704":1,"725":1,"726":1,"727":1,"742":1,"765":1,"801":1,"802":1,"827":1,"828":1,"856":1,"857":1,"860":1,"861":1,"888":1,"889":1,"891":1,"920":1,"921":1,"925":1,"926":1,"955":1,"956":1,"959":1,"960":1,"989":1,"990":1,"993":1,"994":1,"1023":1,"1024":1,"1027":1,"1028":1,"1057":1,"1058":1,"1061":1,"1062":1,"1091":1,"1092":1,"1095":1,"1096":1,"1125":1,"1126":1,"1129":1,"1130":1,"1159":1,"1160":1,"1163":1,"1164":1,"1203":3,"1204":3,"1209":1,"1213":1,"1215":1,"1216":1,"1246":1,"1267":1,"1284":1,"1285":1,"1288":1,"1297":1,"1300":1,"1301":1,"1311":1,"1322":1,"1329":1,"1330":1,"1331":1,"1356":1,"1362":1,"1372":1,"1378":3,"1392":1,"1403":1,"1407":1,"1414":1,"1417":4,"1420":3,"1431":1,"1446":1,"1462":1,"1464":4,"1465":1,"1466":1,"1470":3,"1471":2,"1472":7,"1473":1,"1477":1,"1478":1,"1484":1,"1485":1,"1490":2,"1492":2,"1493":1,"1500":1,"1503":3,"1510":1,"1517":1,"1518":1,"1522":1,"1526":1,"1534":1,"1544":1,"1545":1,"1546":1,"1578":1,"1579":1,"1589":1,"1590":1,"1591":1,"1594":3,"1600":2,"1602":1,"1605":1,"1622":1,"1627":1,"1628":2,"1640":1,"1656":1,"1661":1,"1663":1,"1664":1,"1667":2,"1698":1,"1699":1,"1701":1,"1739":1,"1741":1,"1768":1,"1790":1,"1797":2,"1801":1,"1802":1,"1803":1,"1815":1,"1816":1,"1845":1,"1850":2,"1921":1,"1922":1,"1932":1,"1944":1,"1957":1,"1962":3,"1964":1,"1966":1,"1967":1,"1968":1,"1969":1,"1973":1,"1978":1,"1979":1,"1980":1,"1981":1,"1982":1,"1983":2,"1998":1,"2009":1,"2017":1,"2052":1,"2055":1,"2066":1,"2068":1,"2069":1,"2081":1,"2087":1,"2088":2,"2089":1,"2179":1,"2181":1,"2184":1,"2192":1,"2193":1,"2205":1,"2215":1,"2220":1,"2221":1,"2225":1,"2250":1,"2268":2,"2271":1,"2272":2,"2273":1,"2274":2,"2276":1,"2277":1,"2278":1,"2280":1,"2284":1,"2293":2,"2294":1,"2295":1,"2296":1,"2297":1,"2312":3,"2317":3,"2318":2,"2319":1,"2320":1,"2322":1,"2326":1,"2328":1,"2329":4,"2330":1,"2331":3,"2364":1,"2365":1,"2376":1,"2387":3,"2390":1,"2397":1,"2417":2,"2431":1,"2464":1,"2503":1,"2576":1,"2585":1,"2586":1,"2595":4,"2607":1,"2608":2,"2634":2,"2637":2,"2639":3,"2640":5,"2669":1,"2700":1,"2703":1,"2728":1,"2753":1,"2754":1,"2757":4,"2759":1,"2764":1,"2780":1,"2785":2,"2787":1,"2885":1,"2886":1,"2889":1,"2890":2,"2894":1,"2910":2,"2912":1,"2920":2,"2921":2,"2922":3,"2929":3,"2931":3,"2945":2,"2947":1,"2949":3,"2950":7}}],["au",{"2":{"1485":3,"1489":2,"1495":5,"2524":5}}],["audience",{"2":{"529":1}}],["audio",{"0":{"18":1,"203":1,"714":1,"1369":1,"1473":1,"1486":1,"1488":1,"1493":1,"1495":1,"2328":1,"2524":1,"2856":1,"2891":1},"1":{"715":1,"716":1,"717":1,"718":1,"719":1,"720":1,"721":1,"722":1,"723":1,"1474":1,"1475":1,"1476":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1,"1484":1,"1485":1,"1486":1,"1487":1,"1488":1,"1489":1,"1490":1,"1491":1,"1492":1,"1493":1,"1494":1,"1495":1,"2330":1},"2":{"18":6,"70":1,"74":1,"75":1,"105":4,"111":1,"112":2,"114":1,"133":1,"134":1,"149":1,"172":1,"175":3,"203":1,"210":6,"231":4,"236":1,"249":2,"266":3,"294":1,"317":1,"333":1,"339":1,"561":2,"574":3,"651":1,"714":2,"716":3,"717":4,"718":1,"719":12,"720":4,"721":5,"722":5,"1369":1,"1392":1,"1405":1,"1444":1,"1465":1,"1473":1,"1474":10,"1475":2,"1476":1,"1477":6,"1478":3,"1479":3,"1480":7,"1481":2,"1482":4,"1483":5,"1484":3,"1485":17,"1486":10,"1487":3,"1488":2,"1489":8,"1493":18,"1495":19,"1535":2,"1554":1,"1657":4,"1804":3,"1839":2,"2221":1,"2328":1,"2418":4,"2517":3,"2522":3,"2524":20,"2692":1,"2786":2,"2789":1,"2856":5,"2890":1,"2891":1,"2907":1,"2941":1}}],["austin",{"2":{"222":1}}],["aurora",{"2":{"175":2}}],["authentication",{"0":{"2602":1}}],["authenticated",{"2":{"586":1,"2602":1}}],["authenticate",{"2":{"312":1}}],["author",{"2":{"1628":1,"2464":1,"2567":3,"2726":1}}],["authored",{"2":{"28":1}}],["authorship",{"2":{"1467":1}}],["authors",{"2":{"22":1,"1628":1,"1629":1}}],["autoload",{"2":{"509":1}}],["auto+retro",{"2":{"236":1}}],["autocorrected",{"2":{"1529":1,"1535":1}}],["autocorrection",{"0":{"1526":1},"2":{"1526":1,"1528":1,"1529":1,"1534":1,"1535":3,"1537":1,"1538":1}}],["autocorrect",{"0":{"163":1,"1524":1,"1527":1,"1529":1,"1532":1,"1533":1,"1534":1,"1535":1,"1536":1,"2526":1},"1":{"1525":1,"1526":1,"1527":1,"1528":2,"1529":1,"1530":2,"1531":1,"1532":1,"1533":2,"1534":1,"1535":2,"1536":1,"1537":1,"1538":1,"1539":1,"1540":1},"2":{"163":2,"172":1,"175":2,"210":2,"222":1,"328":1,"1526":1,"1527":6,"1528":1,"1529":2,"1530":6,"1532":6,"1533":6,"1534":1,"1535":6,"1536":9,"1537":1,"1538":1,"2526":7}}],["automation",{"2":{"2653":1,"2664":1}}],["automatically",{"2":{"188":1,"212":1,"246":1,"409":1,"429":1,"430":1,"435":1,"437":1,"440":1,"442":1,"445":1,"460":1,"494":1,"495":1,"504":2,"513":2,"611":1,"613":1,"656":1,"686":1,"703":1,"715":1,"725":1,"754":2,"765":1,"801":1,"827":1,"856":1,"888":1,"920":1,"955":1,"989":1,"1023":1,"1057":1,"1091":1,"1125":1,"1159":1,"1215":1,"1246":1,"1267":1,"1284":1,"1285":1,"1288":1,"1463":3,"1464":1,"1472":1,"1485":2,"1512":1,"1524":1,"1525":1,"1527":1,"1593":1,"1598":1,"1620":2,"1631":1,"1633":2,"1852":1,"1957":1,"1968":1,"1999":1,"2016":1,"2053":1,"2086":1,"2087":1,"2091":1,"2198":1,"2219":1,"2279":1,"2293":2,"2331":1,"2377":1,"2384":1,"2388":1,"2389":2,"2390":1,"2392":1,"2394":1,"2396":1,"2397":2,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2416":1,"2456":1,"2496":1,"2528":1,"2590":1,"2597":1,"2609":1,"2756":1,"2861":1}}],["automatic",{"0":{"246":1,"1999":1,"2214":1},"1":{"2000":1,"2001":1,"2002":1,"2003":1,"2004":1,"2005":1,"2006":1,"2007":1,"2008":1,"2009":1,"2010":1,"2011":1,"2012":1,"2013":1,"2014":1,"2015":1},"2":{"134":1,"174":2,"175":1,"246":1,"754":1,"1392":1,"1393":1,"1499":1,"2015":1}}],["automata02",{"2":{"210":1}}],["automate",{"2":{"199":1}}],["automated",{"2":{"43":1,"198":1,"665":1,"1388":1,"2847":1}}],["autoshifted",{"2":{"1510":1}}],["autoshift",{"2":{"93":1,"175":1,"1503":4,"1517":3}}],["auto",{"0":{"513":1,"1496":1,"1497":1,"1499":1,"1500":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":2,"1513":1,"1514":1,"1515":1,"1516":1,"1520":1,"2008":1,"2011":1,"2013":1,"2015":1,"2525":1},"1":{"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":2,"1504":2,"1505":2,"1506":2,"1507":2,"1508":2,"1509":2,"1510":2,"1511":2,"1512":2,"1513":2,"1514":2,"1515":2,"1516":2,"1517":1,"1518":1,"1519":1,"1520":1,"1521":2,"1522":2,"1523":2},"2":{"39":1,"63":1,"134":3,"172":1,"175":1,"191":1,"195":3,"210":2,"222":3,"246":1,"249":1,"266":1,"285":1,"754":1,"1497":1,"1498":14,"1499":2,"1500":2,"1501":4,"1502":3,"1503":7,"1504":1,"1505":2,"1506":1,"1507":1,"1508":1,"1509":1,"1510":15,"1512":1,"1516":1,"1517":4,"1518":3,"1520":1,"1521":12,"1522":4,"1523":1,"1535":1,"1968":2,"1994":3,"1999":1,"2000":2,"2001":10,"2002":1,"2003":7,"2007":1,"2008":33,"2009":7,"2011":10,"2012":11,"2013":10,"2014":3,"2015":5,"2377":2,"2525":13,"2528":2,"2634":1,"2674":1,"2922":5,"2930":2,"2941":1}}],["august",{"0":{"96":1,"176":1,"267":1},"1":{"97":1,"98":1,"99":1,"100":1,"101":1,"102":1,"103":1,"104":1,"105":1,"106":1,"107":1,"108":1,"109":1,"110":1,"111":1,"112":1,"113":1,"114":1,"177":1,"178":1,"179":1,"180":1,"181":1,"182":1,"183":1,"184":1,"185":1,"186":1,"187":1,"188":1,"189":1,"190":1,"191":1,"268":1,"269":1,"270":1,"271":1,"272":1,"273":1,"274":1,"275":1,"276":1,"277":1},"2":{"254":1,"268":1,"307":1,"2812":1}}],["aug",{"0":{"0":1,"29":1,"200":1,"309":1},"1":{"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"7":1,"8":1,"30":1,"31":1,"32":1,"33":1,"34":1,"35":1,"36":1,"37":1,"38":1,"39":1,"40":1,"41":1,"201":1,"202":1,"203":1,"204":1,"205":1,"206":1,"207":1,"208":1,"209":1,"210":1,"310":1,"311":1,"312":1,"313":1,"314":1,"315":1,"316":1,"317":1},"2":{"88":1,"104":1,"127":1,"185":1,"381":2,"401":1,"402":7,"413":7}}],["abab",{"0":{"2918":1}}],["abba",{"0":{"2917":1}}],["abbreviate",{"2":{"519":1}}],["abbreviations",{"2":{"519":1,"1593":1}}],["abbreviation",{"2":{"519":1,"2694":1}}],["abuse",{"2":{"2566":1,"2728":1}}],["abuser",{"2":{"615":1}}],["ab5",{"2":{"1925":1,"2539":1}}],["ab4",{"2":{"1925":1,"2539":1}}],["ab3",{"2":{"1925":1,"2539":1}}],["ab375d3",{"2":{"74":1}}],["ab2",{"2":{"1925":1,"2539":1}}],["ab1",{"2":{"1925":1,"2539":1}}],["ab",{"2":{"1605":4,"1617":5,"1622":1,"1925":1,"2539":1,"2916":6,"2917":1,"2918":4}}],["abc",{"2":{"317":1}}],["abcd",{"2":{"266":1,"1332":2}}],["abcminiuser",{"2":{"45":1}}],["abort",{"2":{"2634":2}}],["aborted",{"2":{"768":1}}],["above",{"2":{"228":1,"233":1,"266":1,"276":1,"307":2,"333":1,"383":1,"411":1,"414":1,"491":1,"513":1,"517":1,"589":1,"591":1,"613":1,"647":1,"656":1,"657":1,"672":1,"759":1,"763":2,"1286":1,"1330":1,"1333":1,"1349":1,"1365":1,"1407":1,"1417":5,"1422":1,"1425":1,"1450":1,"1472":1,"1503":2,"1538":4,"1551":1,"1612":1,"1630":2,"1681":1,"1790":1,"1795":1,"1836":1,"1926":1,"1970":1,"1975":1,"1984":1,"1987":1,"1989":1,"2011":1,"2013":1,"2068":1,"2077":1,"2190":1,"2191":1,"2198":1,"2260":2,"2275":1,"2280":1,"2303":1,"2309":1,"2318":1,"2319":4,"2329":1,"2331":1,"2389":1,"2416":1,"2423":2,"2454":1,"2505":1,"2508":1,"2559":1,"2567":1,"2570":1,"2571":1,"2583":1,"2608":1,"2612":1,"2626":1,"2629":1,"2674":2,"2682":1,"2709":1,"2714":1,"2721":1,"2728":1,"2729":1,"2756":2,"2757":4,"2768":1,"2769":1,"2912":1,"2919":3,"2920":3,"2921":1,"2923":1,"2924":1,"2928":1,"2931":1,"2938":1,"2939":1,"2940":1}}],["about",{"2":{"39":1,"40":1,"93":1,"110":1,"114":1,"160":1,"191":1,"240":1,"251":1,"381":1,"409":1,"414":1,"437":2,"540":2,"552":1,"570":6,"571":1,"578":1,"604":2,"607":2,"613":1,"614":1,"626":2,"632":1,"644":1,"665":1,"766":1,"1314":1,"1321":1,"1342":1,"1344":1,"1379":1,"1422":1,"1537":1,"1630":1,"1661":1,"1935":1,"1953":2,"1962":2,"1974":1,"2079":1,"2186":1,"2261":1,"2275":6,"2300":3,"2387":1,"2422":1,"2431":1,"2460":1,"2522":1,"2563":1,"2567":1,"2569":2,"2580":1,"2610":1,"2670":1,"2674":1,"2728":2,"2758":1,"2851":2,"2852":1,"2906":1,"2907":1,"2932":1,"2940":2}}],["abstracted",{"2":{"2684":1}}],["abstracting",{"2":{"2418":2}}],["abstraction",{"2":{"249":1,"277":1,"760":1,"762":1,"1577":1,"1845":1,"2081":1,"2707":1,"2726":1,"2824":1}}],["abstractions",{"2":{"244":1,"1404":1,"2726":2}}],["absence",{"2":{"717":1,"1193":1}}],["absent",{"2":{"433":2,"2871":1,"2877":1,"2878":1}}],["absinthe",{"2":{"159":2}}],["absolutely",{"2":{"2431":1,"2728":1}}],["absolute",{"0":{"1975":1,"1976":1},"2":{"100":1,"114":1,"463":1,"1639":1,"1653":1,"1974":4,"2252":1,"2502":1,"2869":4}}],["abelx",{"2":{"134":1}}],["ability",{"2":{"39":2,"65":1,"93":1,"100":1,"114":1,"131":1,"134":1,"153":1,"160":1,"179":1,"188":1,"189":1,"191":1,"199":1,"285":1,"565":1,"655":1,"768":1,"1201":1,"1380":2,"1421":1,"1662":1,"2178":1,"2277":1,"2278":1,"2674":1,"2735":1,"2901":1,"2902":1,"2922":3}}],["able",{"2":{"13":1,"40":1,"114":1,"153":2,"228":1,"308":1,"412":1,"500":1,"596":1,"601":1,"607":1,"613":1,"626":1,"629":1,"687":1,"1320":1,"1410":1,"1416":1,"1435":1,"1440":1,"1463":1,"1541":1,"1681":2,"1765":1,"1766":1,"1783":1,"1802":1,"1851":1,"1919":1,"1994":1,"2048":1,"2057":1,"2090":1,"2179":1,"2208":1,"2294":1,"2298":1,"2305":1,"2310":1,"2319":1,"2381":1,"2387":1,"2388":1,"2406":1,"2408":1,"2410":1,"2467":1,"2612":1,"2619":1,"2629":1,"2655":1,"2656":1,"2674":1,"2709":2,"2710":1,"2756":1,"2784":1,"2884":1,"2906":1,"2908":1,"2947":1}}],["abnt2",{"2":{"5":1,"2714":1,"2887":2}}],["afnor",{"2":{"2887":3}}],["af2",{"2":{"1556":1}}],["aforementioned",{"2":{"1423":1,"1786":1}}],["africa",{"2":{"1346":1}}],["afpp",{"2":{"1213":7}}],["afio",{"2":{"1213":1}}],["af4",{"2":{"1212":4}}],["af0",{"2":{"1212":4}}],["af1",{"2":{"1212":10}}],["af7",{"2":{"1211":22}}],["affecting",{"2":{"1378":4,"2180":1,"2434":1,"2460":1,"2729":1,"2931":1}}],["affect",{"2":{"209":1,"233":1,"494":2,"613":1,"2729":2,"2795":1,"2909":1,"2912":1,"2930":1}}],["affects",{"2":{"35":1,"39":1,"244":1,"279":1,"1320":1,"1410":1,"2309":1,"2754":1}}],["affected",{"2":{"3":1,"4":1,"43":1,"47":1,"48":1,"209":1,"254":1,"1666":1,"1681":1,"2277":1,"2690":1,"2920":2,"2921":1,"2926":1}}],["afterwards",{"2":{"213":1,"1348":1,"2428":1,"2628":1}}],["aftermath",{"2":{"191":1}}],["after",{"0":{"15":1,"325":1,"2314":1},"2":{"13":1,"14":1,"15":4,"39":1,"43":1,"44":1,"90":1,"105":1,"114":2,"134":4,"149":1,"157":1,"175":3,"191":4,"195":1,"199":5,"210":1,"222":2,"255":2,"259":1,"263":1,"294":1,"339":1,"381":1,"386":1,"402":1,"403":1,"406":1,"407":1,"411":1,"412":3,"512":1,"544":1,"561":2,"564":2,"569":1,"572":2,"574":1,"607":1,"612":1,"629":1,"634":1,"637":1,"641":1,"647":2,"655":1,"658":1,"684":1,"707":1,"720":1,"735":1,"754":1,"763":1,"812":1,"816":1,"820":1,"822":1,"839":1,"843":1,"847":1,"849":1,"871":1,"875":1,"879":1,"881":1,"903":1,"907":1,"911":1,"913":1,"938":1,"942":1,"946":1,"948":1,"972":1,"976":1,"980":1,"982":1,"1006":1,"1010":1,"1014":1,"1016":1,"1040":1,"1044":1,"1048":1,"1050":1,"1074":1,"1078":1,"1082":1,"1084":1,"1108":1,"1112":1,"1116":1,"1118":1,"1142":1,"1146":1,"1150":1,"1152":1,"1176":1,"1180":1,"1184":1,"1186":1,"1229":1,"1233":1,"1237":1,"1239":1,"1306":1,"1320":1,"1327":1,"1343":1,"1354":1,"1365":1,"1376":1,"1381":3,"1414":1,"1415":1,"1417":2,"1433":1,"1447":4,"1464":1,"1490":1,"1498":1,"1527":1,"1528":1,"1538":3,"1617":1,"1627":1,"1634":1,"1686":1,"1776":1,"1782":1,"1786":2,"1792":1,"1801":1,"1802":2,"1850":1,"1908":1,"1910":1,"1912":1,"1915":1,"1934":1,"1937":1,"1939":2,"1949":2,"1957":1,"1961":1,"1985":1,"1999":1,"2003":2,"2044":1,"2046":1,"2048":1,"2065":1,"2088":1,"2168":1,"2170":1,"2172":1,"2175":1,"2178":1,"2189":1,"2191":1,"2214":1,"2275":2,"2288":1,"2298":1,"2300":1,"2309":3,"2310":2,"2317":1,"2387":1,"2393":1,"2417":1,"2425":1,"2428":3,"2431":1,"2432":1,"2466":1,"2508":1,"2520":1,"2558":1,"2562":1,"2594":1,"2639":1,"2640":1,"2650":2,"2652":1,"2660":1,"2685":1,"2686":1,"2687":1,"2709":1,"2717":1,"2726":1,"2729":1,"2730":1,"2754":1,"2757":1,"2761":1,"2768":1,"2769":1,"2781":1,"2786":2,"2792":1,"2795":1,"2829":1,"2882":2,"2886":1,"2906":1,"2912":1,"2919":1,"2922":1,"2926":1,"2931":1,"2941":2}}],["arng",{"2":{"2885":1}}],["arpeggiation",{"2":{"2292":1}}],["arbitrary",{"2":{"373":1,"433":1,"1448":1,"1456":1,"1537":1,"1777":1,"1795":1,"2277":1,"2639":1,"2685":1}}],["arises",{"2":{"2466":1}}],["arise",{"2":{"273":1,"2586":1}}],["arrive",{"2":{"2292":1}}],["arrangement",{"2":{"2721":2}}],["arranged",{"2":{"2466":2,"2794":1}}],["arrange",{"2":{"1425":1,"2720":1}}],["arrays",{"2":{"175":1,"433":2,"589":1,"1788":2,"1953":2,"2296":1,"2556":3,"2719":1,"2929":2}}],["array",{"0":{"17":1},"2":{"17":1,"191":1,"249":1,"266":1,"588":2,"671":5,"736":1,"813":1,"817":1,"821":1,"823":1,"840":1,"844":1,"848":1,"850":1,"872":1,"876":1,"880":1,"882":1,"904":1,"908":1,"912":1,"914":1,"939":1,"943":1,"947":1,"949":1,"973":1,"977":1,"981":1,"983":1,"1007":1,"1011":1,"1015":1,"1017":1,"1041":1,"1045":1,"1049":1,"1051":1,"1075":1,"1079":1,"1083":1,"1085":1,"1109":1,"1113":1,"1117":1,"1119":1,"1143":1,"1147":1,"1151":1,"1153":1,"1177":1,"1181":1,"1185":1,"1187":1,"1230":1,"1234":1,"1238":1,"1240":1,"1357":1,"1439":1,"1443":1,"1446":1,"1538":3,"1605":1,"1611":1,"1612":3,"1630":1,"1665":1,"1681":1,"1699":1,"1720":1,"1722":1,"1742":1,"1747":2,"1952":2,"1968":2,"2189":4,"2217":1,"2272":1,"2303":2,"2305":1,"2309":2,"2329":2,"2351":1,"2353":1,"2354":1,"2355":1,"2357":1,"2358":1,"2556":4,"2557":1,"2720":1,"2775":1,"2777":1,"2779":1,"2805":1,"2823":1,"2852":1,"2856":1,"2857":1,"2863":2,"2865":1,"2868":2,"2869":2,"2871":4,"2872":4,"2877":2,"2878":4,"2879":1,"2880":1,"2938":2}}],["arrowmechanics",{"2":{"266":1}}],["arrow",{"2":{"255":2,"259":2,"266":1,"686":2,"1694":4,"1791":1,"2006":1,"2065":1,"2068":5,"2073":2,"2226":1,"2516":4,"2518":4,"2522":8,"2797":1,"2800":2}}],["arg",{"2":{"500":3,"656":2,"657":1,"2074":1}}],["args",{"2":{"191":1,"500":3,"521":1,"524":1,"2069":1,"2669":1}}],["arguments",{"0":{"495":1,"500":1,"524":1,"708":1,"710":1,"713":1,"734":1,"736":1,"738":1,"740":1,"774":1,"777":1,"780":1,"783":1,"786":1,"789":1,"792":1,"795":1,"798":1,"811":1,"813":1,"815":1,"817":1,"819":1,"821":1,"823":1,"836":1,"838":1,"840":1,"842":1,"844":1,"846":1,"848":1,"850":1,"852":1,"854":1,"868":1,"870":1,"872":1,"874":1,"876":1,"878":1,"880":1,"882":1,"884":1,"886":1,"898":1,"900":1,"902":1,"904":1,"906":1,"908":1,"910":1,"912":1,"914":1,"916":1,"918":1,"933":1,"935":1,"937":1,"939":1,"941":1,"943":1,"945":1,"947":1,"949":1,"951":1,"953":1,"967":1,"969":1,"971":1,"973":1,"975":1,"977":1,"979":1,"981":1,"983":1,"985":1,"987":1,"1001":1,"1003":1,"1005":1,"1007":1,"1009":1,"1011":1,"1013":1,"1015":1,"1017":1,"1019":1,"1021":1,"1035":1,"1037":1,"1039":1,"1041":1,"1043":1,"1045":1,"1047":1,"1049":1,"1051":1,"1053":1,"1055":1,"1069":1,"1071":1,"1073":1,"1075":1,"1077":1,"1079":1,"1081":1,"1083":1,"1085":1,"1087":1,"1089":1,"1103":1,"1105":1,"1107":1,"1109":1,"1111":1,"1113":1,"1115":1,"1117":1,"1119":1,"1121":1,"1123":1,"1137":1,"1139":1,"1141":1,"1143":1,"1145":1,"1147":1,"1149":1,"1151":1,"1153":1,"1155":1,"1157":1,"1171":1,"1173":1,"1175":1,"1177":1,"1179":1,"1181":1,"1183":1,"1185":1,"1187":1,"1189":1,"1191":1,"1224":1,"1226":1,"1228":1,"1230":1,"1232":1,"1234":1,"1236":1,"1238":1,"1240":1,"1242":1,"1244":1,"1252":1,"1255":1,"1260":1,"1263":1,"1272":1,"1274":1,"1278":1,"1280":1,"1307":1,"1309":1,"1567":1,"1586":1,"1588":1,"1654":1,"1705":1,"1709":1,"1712":1,"1714":1,"1716":1,"1718":1,"1720":1,"1722":1,"1726":1,"1728":1,"1731":1,"1733":1,"1735":1,"1737":1,"1752":1,"1754":1,"1756":1,"1759":1,"1761":1,"1810":1,"1816":1,"1821":1,"1824":1,"1827":1,"1830":1,"1833":1,"1866":1,"1868":1,"1870":1,"1872":1,"1890":1,"1892":1,"1896":1,"1898":1,"1913":1,"1916":1,"2022":1,"2024":1,"2026":1,"2028":1,"2030":1,"2036":1,"2062":1,"2064":1,"2108":1,"2110":1,"2112":1,"2114":1,"2144":1,"2146":1,"2150":1,"2152":1,"2160":1,"2162":1,"2173":1,"2176":1,"2229":1,"2231":1,"2233":1,"2235":1,"2237":1,"2239":1,"2241":1,"2243":1,"2245":1,"2337":1,"2341":1,"2343":1,"2348":1,"2350":1,"2352":1,"2355":1,"2358":1,"2365":1,"2372":1},"1":{"496":1,"497":1,"498":1,"499":1,"500":1,"1914":1,"1917":1,"2174":1,"2177":1},"2":{"114":1,"285":1,"294":1,"444":1,"452":1,"453":1,"459":1,"472":1,"473":1,"475":1,"491":2,"500":2,"521":1,"532":1,"1434":1,"2058":1,"2297":1,"2310":1,"2503":1,"2640":1,"2755":3,"2939":1}}],["argument",{"0":{"533":1},"2":{"36":1,"194":2,"199":1,"236":1,"266":1,"429":3,"430":1,"472":1,"474":2,"475":1,"489":6,"495":5,"500":3,"533":1,"632":2,"656":3,"657":1,"1248":1,"1378":1,"1391":1,"1399":1,"1423":4,"1436":1,"1794":1,"2300":2,"2502":1,"2572":1,"2573":1,"2640":1,"2652":1,"2755":7}}],["artifact",{"2":{"2607":1}}],["artifacts",{"2":{"114":1,"2609":1,"2761":1}}],["article",{"2":{"2388":1,"2466":2}}],["artery",{"0":{"550":1}}],["arterytek",{"2":{"285":1}}],["art",{"2":{"191":2}}],["architectural",{"0":{"2741":1}}],["architectures",{"2":{"2750":1}}],["architecture",{"0":{"576":1,"2734":1},"2":{"576":2,"762":1,"2741":1}}],["archive",{"2":{"2607":1}}],["arch",{"2":{"143":2,"191":1,"573":1,"2601":1,"2626":1}}],["arabica37",{"2":{"134":1}}],["arya",{"2":{"134":1}}],["arduinoisp",{"2":{"2486":1}}],["arduino",{"0":{"243":1,"1371":1,"2486":1},"1":{"2487":1},"2":{"113":1,"114":1,"133":1,"134":1,"243":2,"331":2,"605":2,"689":4,"1371":8,"2392":1,"2441":1,"2486":2,"2499":4}}],["armtoolchainpath",{"2":{"2674":3}}],["arm",{"0":{"384":1,"387":1,"547":1,"694":1,"699":1,"701":1,"716":1,"728":1,"768":1,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1218":1,"1248":1,"1269":1,"1295":1,"1320":1,"1476":1,"1488":1,"1555":1,"2042":1,"2674":1,"2684":1,"2707":1,"2802":1},"1":{"385":1,"386":1,"387":1,"388":1,"389":1,"390":1,"391":1,"392":1,"393":1,"394":1,"395":1,"396":1,"397":1,"398":1,"548":1,"549":1,"550":1,"551":1,"552":1,"695":1,"696":1,"717":1,"718":1,"719":1,"720":1,"721":1,"722":1,"723":1,"769":1,"770":1,"1296":1,"1297":1,"1298":1,"1299":1,"1300":1,"1301":1,"1302":1,"1303":1,"1477":1,"1478":1,"1479":1,"1480":1,"1481":1,"1482":1,"1483":1,"1556":1,"1557":1,"2685":1,"2686":1,"2687":1,"2708":1,"2709":1,"2710":1,"2711":1,"2712":1,"2713":1},"2":{"14":1,"44":1,"69":1,"75":1,"92":1,"93":3,"107":2,"114":3,"123":1,"130":1,"134":2,"153":1,"160":2,"175":1,"189":1,"203":2,"248":1,"263":3,"277":1,"279":2,"285":2,"294":3,"339":2,"384":2,"387":2,"393":2,"396":1,"398":1,"545":2,"547":1,"567":1,"568":1,"570":2,"605":1,"609":1,"613":1,"690":3,"701":1,"716":1,"717":1,"746":1,"776":1,"1192":1,"1193":1,"1195":1,"1196":1,"1199":1,"1293":1,"1294":1,"1295":1,"1296":1,"1320":1,"1392":2,"1393":2,"1484":1,"1488":1,"1717":1,"1721":1,"1739":2,"1943":5,"1954":2,"1961":1,"2042":1,"2179":1,"2232":1,"2234":1,"2247":1,"2248":1,"2261":3,"2262":1,"2273":2,"2278":1,"2279":3,"2290":2,"2418":1,"2465":1,"2482":1,"2674":3,"2684":1,"2688":1,"2697":1,"2698":1,"2707":2,"2728":1,"2853":1,"2895":2}}],["around",{"2":{"8":1,"175":2,"198":1,"201":1,"210":1,"212":1,"224":1,"266":1,"293":1,"305":1,"314":1,"420":1,"678":1,"715":1,"1297":1,"1315":1,"1346":1,"1365":2,"1368":1,"1490":1,"1493":1,"1676":1,"1849":1,"1964":1,"2085":4,"2180":1,"2201":4,"2427":1,"2466":1,"2477":1,"2575":1,"2889":1,"2927":3,"2942":1,"2944":1,"2950":1}}],["aref",{"2":{"2431":1}}],["arep",{"2":{"213":1,"2066":1,"2067":1,"2549":1}}],["aren",{"0":{"1351":1},"2":{"172":1,"188":1,"222":1,"610":1,"613":1,"665":1,"1365":1,"1666":1,"1983":1,"2387":1,"2429":1,"2434":1,"2559":1,"2707":1,"2739":1,"2756":2}}],["area",{"2":{"166":1,"644":1,"1954":1,"2086":1,"2640":2,"2756":2,"2757":1,"2807":1,"2902":1,"2923":1}}],["areas",{"2":{"113":1,"201":1,"403":1,"2729":2,"2902":2}}],["are",{"0":{"90":1,"105":1,"618":1,"1340":1,"1343":1,"1346":1,"1349":1,"1362":1,"1499":1,"1600":1,"2467":1,"2933":1},"1":{"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1},"2":{"3":1,"4":1,"17":1,"21":3,"23":1,"24":2,"27":1,"44":1,"48":1,"49":2,"55":1,"69":1,"70":1,"73":1,"75":1,"92":1,"94":1,"110":1,"111":1,"114":1,"119":1,"123":2,"124":1,"132":1,"152":1,"166":1,"171":1,"175":1,"178":1,"191":1,"194":1,"196":2,"203":2,"209":1,"210":1,"212":2,"214":1,"217":1,"220":1,"221":1,"231":1,"234":1,"241":1,"253":1,"254":1,"262":1,"263":2,"264":1,"268":1,"270":1,"274":1,"275":1,"281":1,"282":1,"288":2,"289":1,"292":1,"294":1,"301":1,"307":2,"313":1,"326":1,"336":1,"344":6,"356":1,"367":1,"368":1,"374":1,"376":1,"377":1,"381":1,"383":4,"385":1,"386":1,"388":1,"393":2,"396":2,"399":2,"403":3,"411":2,"412":1,"414":2,"415":1,"416":2,"422":1,"429":1,"430":1,"432":1,"433":2,"437":1,"440":1,"442":1,"444":1,"445":1,"447":1,"458":2,"473":1,"475":3,"488":1,"489":1,"491":1,"492":1,"493":1,"494":2,"507":1,"508":1,"512":2,"513":1,"516":1,"519":1,"524":1,"525":2,"526":2,"528":1,"529":1,"532":2,"539":1,"540":3,"541":1,"542":1,"543":1,"544":1,"547":1,"555":4,"557":1,"558":1,"561":2,"565":2,"568":1,"569":2,"570":1,"574":3,"575":3,"576":1,"579":1,"580":2,"581":2,"589":1,"596":1,"598":1,"604":1,"605":1,"607":2,"608":1,"609":2,"612":3,"613":7,"614":1,"615":3,"620":1,"621":1,"626":1,"627":1,"630":3,"633":2,"646":2,"648":1,"651":1,"657":1,"660":1,"665":3,"668":4,"669":1,"670":1,"672":2,"673":1,"676":1,"683":1,"685":1,"686":2,"687":1,"688":1,"689":1,"690":1,"693":2,"695":5,"699":1,"701":1,"702":1,"703":1,"707":1,"715":1,"716":4,"718":1,"719":2,"721":2,"725":1,"735":1,"742":1,"743":1,"749":1,"750":1,"754":1,"759":1,"761":1,"763":3,"765":1,"766":1,"768":2,"801":1,"812":1,"816":1,"820":1,"822":1,"827":1,"839":1,"843":1,"847":1,"849":1,"856":1,"859":1,"860":2,"871":1,"875":1,"879":1,"881":1,"888":1,"903":1,"907":1,"911":1,"913":1,"920":1,"922":1,"924":1,"925":2,"938":1,"942":1,"946":1,"948":1,"955":1,"957":1,"958":1,"959":2,"972":1,"976":1,"980":1,"982":1,"989":1,"992":1,"993":2,"1006":1,"1010":1,"1014":1,"1016":1,"1023":1,"1026":1,"1027":2,"1040":1,"1044":1,"1048":1,"1050":1,"1057":1,"1060":1,"1061":2,"1074":1,"1078":1,"1082":1,"1084":1,"1091":1,"1093":1,"1095":2,"1108":1,"1112":1,"1116":1,"1118":1,"1125":1,"1127":1,"1129":2,"1142":1,"1146":1,"1150":1,"1152":1,"1159":1,"1161":1,"1162":1,"1163":2,"1176":1,"1180":1,"1184":1,"1186":1,"1192":2,"1196":1,"1197":1,"1199":1,"1200":4,"1205":1,"1206":1,"1213":1,"1215":1,"1229":1,"1233":1,"1237":1,"1239":1,"1246":1,"1253":1,"1267":1,"1272":2,"1283":1,"1284":1,"1287":1,"1289":1,"1296":1,"1297":1,"1300":1,"1303":1,"1306":1,"1311":1,"1313":1,"1315":1,"1318":1,"1320":1,"1323":1,"1326":1,"1330":1,"1343":2,"1345":1,"1346":2,"1351":2,"1357":1,"1358":1,"1362":2,"1365":2,"1366":1,"1378":3,"1381":2,"1389":2,"1391":1,"1392":1,"1393":1,"1395":1,"1396":1,"1398":1,"1399":1,"1407":2,"1409":5,"1410":4,"1413":2,"1415":2,"1416":1,"1417":1,"1422":2,"1423":2,"1425":2,"1426":1,"1428":5,"1431":1,"1433":1,"1438":1,"1443":1,"1444":2,"1446":2,"1451":2,"1455":1,"1463":1,"1470":1,"1472":1,"1481":1,"1483":1,"1484":1,"1485":2,"1487":2,"1488":1,"1491":3,"1493":2,"1498":2,"1499":2,"1503":3,"1510":1,"1514":1,"1517":1,"1518":2,"1522":3,"1523":1,"1524":2,"1525":1,"1527":2,"1528":1,"1529":1,"1532":2,"1533":5,"1534":1,"1538":4,"1544":1,"1545":1,"1547":1,"1551":1,"1553":1,"1556":2,"1558":2,"1589":1,"1590":1,"1591":1,"1593":1,"1594":1,"1597":2,"1598":1,"1600":1,"1602":1,"1603":1,"1605":1,"1606":1,"1608":1,"1611":2,"1612":6,"1615":1,"1616":1,"1617":1,"1619":2,"1621":1,"1626":2,"1627":1,"1628":1,"1629":1,"1634":1,"1635":1,"1636":1,"1641":1,"1655":1,"1661":2,"1662":1,"1664":1,"1665":2,"1666":1,"1668":1,"1670":1,"1672":1,"1674":1,"1676":1,"1678":2,"1681":2,"1702":1,"1740":1,"1742":2,"1766":2,"1770":2,"1774":1,"1776":1,"1781":2,"1784":6,"1785":3,"1786":2,"1787":3,"1788":4,"1798":1,"1802":1,"1803":1,"1835":1,"1836":1,"1838":1,"1846":2,"1849":2,"1852":1,"1855":2,"1919":1,"1923":2,"1926":2,"1934":2,"1936":2,"1937":1,"1938":1,"1939":4,"1943":1,"1944":1,"1946":1,"1948":1,"1949":1,"1952":4,"1953":5,"1954":2,"1960":1,"1962":1,"1964":1,"1965":2,"1968":2,"1970":2,"1973":2,"1974":2,"1977":1,"1983":1,"1984":1,"1986":1,"1987":2,"1989":1,"1990":2,"1998":1,"1999":3,"2002":1,"2004":1,"2006":1,"2007":1,"2011":2,"2014":1,"2016":3,"2037":1,"2039":1,"2043":1,"2044":1,"2048":1,"2054":1,"2056":1,"2057":3,"2059":2,"2065":1,"2068":1,"2069":1,"2072":3,"2074":1,"2076":1,"2082":2,"2085":2,"2086":1,"2089":2,"2091":1,"2094":2,"2178":1,"2179":2,"2181":1,"2184":2,"2185":3,"2187":1,"2189":1,"2191":1,"2192":1,"2198":11,"2199":2,"2201":2,"2205":2,"2206":1,"2210":2,"2219":2,"2222":3,"2223":1,"2258":1,"2260":1,"2261":2,"2262":1,"2263":1,"2265":3,"2269":1,"2270":1,"2274":1,"2275":4,"2277":1,"2278":4,"2284":1,"2285":1,"2287":1,"2289":1,"2290":1,"2291":1,"2292":1,"2294":1,"2295":2,"2297":1,"2298":2,"2300":1,"2303":3,"2305":1,"2309":6,"2310":1,"2313":1,"2317":4,"2319":1,"2320":4,"2323":1,"2325":1,"2326":1,"2329":1,"2330":2,"2331":1,"2384":3,"2388":1,"2390":2,"2397":2,"2411":2,"2415":2,"2416":1,"2417":3,"2418":5,"2422":3,"2423":1,"2424":2,"2426":1,"2427":4,"2428":3,"2429":1,"2430":1,"2431":4,"2435":1,"2439":1,"2441":1,"2449":2,"2450":1,"2451":1,"2453":3,"2454":2,"2455":1,"2456":1,"2460":1,"2461":1,"2464":1,"2465":2,"2466":4,"2470":1,"2474":2,"2479":1,"2481":1,"2482":1,"2483":1,"2497":1,"2498":2,"2499":1,"2501":1,"2502":1,"2503":1,"2508":1,"2509":1,"2517":3,"2519":1,"2520":1,"2521":1,"2523":1,"2531":1,"2553":2,"2554":1,"2556":1,"2557":2,"2560":1,"2561":3,"2562":1,"2563":2,"2565":1,"2566":2,"2567":2,"2568":1,"2572":1,"2573":2,"2576":1,"2579":4,"2580":3,"2581":1,"2582":2,"2586":2,"2587":2,"2594":2,"2599":1,"2600":1,"2609":1,"2614":2,"2616":1,"2617":1,"2619":2,"2626":2,"2630":1,"2633":1,"2634":2,"2635":1,"2637":2,"2640":2,"2642":1,"2650":3,"2651":1,"2652":3,"2659":1,"2660":1,"2663":1,"2668":1,"2669":1,"2670":1,"2671":1,"2674":1,"2676":2,"2677":1,"2679":2,"2680":2,"2685":2,"2686":1,"2691":1,"2693":1,"2694":1,"2695":1,"2704":3,"2706":1,"2709":2,"2710":2,"2711":1,"2716":1,"2717":1,"2718":1,"2719":1,"2720":2,"2721":1,"2722":1,"2725":1,"2726":1,"2727":1,"2728":10,"2729":2,"2730":2,"2731":4,"2733":1,"2738":3,"2739":1,"2751":4,"2752":1,"2754":2,"2756":8,"2757":6,"2765":4,"2767":1,"2772":2,"2775":2,"2780":4,"2781":1,"2782":3,"2784":2,"2786":1,"2789":1,"2792":1,"2794":2,"2796":2,"2797":1,"2820":2,"2823":1,"2833":1,"2835":1,"2840":1,"2851":2,"2869":3,"2871":1,"2872":1,"2877":1,"2878":1,"2884":3,"2885":1,"2886":1,"2887":4,"2888":1,"2889":6,"2890":2,"2892":2,"2895":2,"2896":1,"2897":1,"2903":1,"2904":1,"2909":3,"2912":1,"2913":3,"2914":2,"2920":1,"2923":1,"2925":1,"2926":7,"2927":3,"2929":4,"2931":2,"2933":1,"2937":3,"2942":2,"2946":2,"2947":1,"2948":3,"2949":1,"2950":1}}],["al",{"2":{"2920":2,"2921":1}}],["albeit",{"2":{"2329":1}}],["alpaca",{"2":{"2567":1}}],["alps",{"2":{"1354":1}}],["alphabet",{"2":{"2886":1}}],["alphabetical",{"2":{"1522":1}}],["alphanumeric",{"2":{"2095":1,"2799":1}}],["alphas",{"2":{"1849":3,"2085":3,"2871":1,"2878":1,"2894":1,"2923":1}}],["alpha",{"0":{"1508":1,"1513":1,"1691":1},"2":{"143":8,"1503":2,"1508":1,"1510":2,"1528":1,"1691":2}}],["alone",{"2":{"665":1,"1326":1,"1774":1}}],["alongside",{"2":{"113":1,"114":1}}],["along",{"2":{"69":1,"83":1,"113":1,"149":1,"181":1,"196":1,"230":1,"1288":1,"1463":1,"1467":1,"1697":1,"1781":1,"1939":1,"1976":1,"2059":1,"2085":1,"2219":1,"2388":1,"2429":1,"2431":2,"2496":1,"2612":1,"2726":1,"2732":1}}],["alvicstep",{"2":{"222":1}}],["alf",{"2":{"222":2}}],["alcor",{"2":{"175":1}}],["al1",{"2":{"160":1}}],["alu84",{"2":{"143":2}}],["alef",{"2":{"294":1}}],["alexa",{"2":{"222":1}}],["aleblazer",{"2":{"210":1}}],["aleth42",{"2":{"143":2}}],["alerts",{"2":{"435":1,"456":1}}],["alert",{"2":{"18":1,"1686":2}}],["alice",{"2":{"222":1,"2938":1}}],["alicia",{"2":{"143":2,"222":1}}],["alisaie",{"2":{"210":1}}],["aligns",{"2":{"2425":1}}],["aligned",{"2":{"137":1,"2428":1,"2799":2}}],["alignment",{"2":{"114":1,"133":1,"134":1,"175":1,"266":1,"333":1,"2430":1,"2727":1,"2757":1}}],["align",{"2":{"113":1,"114":3,"133":1,"134":3,"149":4,"172":3,"175":3,"191":2,"199":4,"210":1,"249":4,"266":4,"277":1,"308":3,"317":1,"328":1,"339":1}}],["aliasing",{"2":{"2755":1}}],["aliased",{"2":{"1627":1}}],["aliases",{"2":{"92":1,"111":1,"166":1,"172":1,"175":1,"210":4,"266":1,"294":6,"317":4,"1377":1,"1428":1,"1485":1,"1489":1,"1490":1,"1493":1,"1495":1,"1521":1,"1530":1,"1543":1,"1606":1,"1630":2,"1674":1,"1680":1,"1744":1,"1780":1,"1805":1,"1848":1,"1925":1,"1933":1,"2008":1,"2018":1,"2067":1,"2084":1,"2181":1,"2216":1,"2253":1,"2257":1,"2304":1,"2332":1,"2377":1,"2512":1,"2513":1,"2514":1,"2515":1,"2516":1,"2517":1,"2518":1,"2519":1,"2520":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2534":1,"2537":1,"2538":1,"2539":1,"2540":1,"2541":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2552":1,"2555":1,"2572":1,"2651":1,"2728":1,"2752":1,"2868":1,"2869":2,"2884":2,"2912":1}}],["alias",{"0":{"8":1},"2":{"8":2,"133":1,"134":1,"172":1,"175":2,"199":3,"222":1,"236":1,"249":1,"308":1,"333":1,"761":1,"776":1,"1594":1,"1661":1,"1717":1,"1721":1,"1790":1,"1954":1,"2066":2,"2232":1,"2234":1,"2321":1,"2559":2,"2575":1,"2640":1}}],["almost",{"2":{"77":1,"83":1,"178":1,"268":1,"276":1,"279":1,"389":1,"758":1,"759":1,"1787":1,"2331":1,"2388":1,"2401":1,"2626":1,"2726":1,"2729":1,"2756":1,"2794":1,"2901":1,"2944":1}}],["already",{"0":{"2708":1},"1":{"2709":1,"2710":1},"2":{"75":1,"105":2,"118":1,"125":1,"166":3,"169":1,"184":2,"199":1,"209":1,"228":1,"232":1,"233":1,"241":1,"253":1,"270":1,"281":1,"294":1,"353":1,"432":1,"463":2,"488":1,"598":1,"605":1,"647":1,"685":1,"742":1,"1200":1,"1213":1,"1253":1,"1350":1,"1380":1,"1407":1,"1431":1,"1470":1,"1533":1,"1627":1,"1681":1,"1784":3,"1962":1,"1983":1,"2012":2,"2014":1,"2290":2,"2310":1,"2319":3,"2422":1,"2432":1,"2482":2,"2505":1,"2567":4,"2580":1,"2594":1,"2601":1,"2628":1,"2636":1,"2658":1,"2665":1,"2669":2,"2670":1,"2673":1,"2709":2,"2728":1,"2729":1,"2756":2,"2761":1,"2839":1,"2902":1,"2931":1,"2945":1}}],["algr",{"2":{"1377":1,"1448":1,"2514":1,"2522":1,"2541":1,"2542":1,"2572":1}}],["algorithm>",{"2":{"1413":1}}],["algorithms",{"0":{"1410":1,"1411":1},"1":{"1412":1,"1413":1,"1414":1},"2":{"114":1,"191":1,"210":1,"1409":1,"1410":6,"1411":1}}],["algorithm",{"2":{"74":1,"189":1,"191":1,"328":1,"752":1,"754":1,"755":3,"756":1,"1410":10,"1413":4,"1414":2,"1935":1,"2792":1,"2854":1,"2864":1}}],["algernon",{"2":{"27":1,"2308":2,"2417":2}}],["altlp",{"2":{"2318":6}}],["altrep",{"2":{"2079":1}}],["altrep3",{"2":{"2079":12}}],["altrep2",{"2":{"2079":12}}],["alttab",{"2":{"1618":6}}],["alt↯tab",{"0":{"1462":1}}],["altered",{"2":{"2277":1}}],["altering",{"2":{"1541":1,"1622":1}}],["alter",{"2":{"1446":1,"1614":1,"1617":1,"1668":1,"2300":1,"2522":1}}],["alternating",{"2":{"2183":2,"2184":2,"2894":1}}],["alternatives",{"2":{"2580":1,"2902":1}}],["alternative",{"0":{"1449":1},"2":{"279":2,"574":1,"1299":2,"1303":1,"1365":1,"1391":1,"1399":1,"1423":1,"1478":1,"1481":1,"1556":1,"1593":1,"1983":1,"2298":1,"2318":1,"2418":1,"2580":1,"2728":1,"2735":1,"2810":1,"2812":1}}],["alternatively",{"2":{"21":1,"513":1,"686":1,"749":1,"750":1,"1207":1,"1318":1,"1381":1,"1405":1,"1464":1,"1485":1,"1597":1,"1741":1,"1794":1,"2057":1,"2264":1,"2594":1,"2658":1,"2685":1,"2785":1,"2885":1,"2927":1,"2947":1}}],["alternate0",{"2":{"721":1}}],["alternate",{"0":{"1210":1,"2068":1,"2069":1,"2077":1,"2079":1,"2695":1},"1":{"1211":1,"1212":1,"1213":1,"2070":1,"2071":1},"2":{"26":1,"114":1,"213":2,"561":3,"570":1,"716":1,"721":5,"768":2,"772":2,"1193":1,"1198":2,"1200":2,"1201":2,"1208":1,"1213":2,"1248":3,"1269":4,"1483":1,"1622":1,"1625":3,"2067":1,"2068":7,"2069":6,"2070":2,"2071":1,"2072":1,"2076":2,"2077":10,"2078":2,"2079":1,"2516":2,"2522":2,"2549":1,"2700":1,"2728":2}}],["although",{"2":{"1423":1,"1739":1,"1786":1,"1974":1,"2293":1,"2298":1,"2558":1}}],["alt+tab",{"2":{"1618":1}}],["alt+escape",{"2":{"1380":1}}],["alt+shift+esc",{"2":{"1380":1}}],["alt+right",{"2":{"353":1,"1423":1}}],["altogether",{"2":{"720":1,"2275":1,"2892":1}}],["altgr+escape",{"2":{"1380":1}}],["altgr",{"2":{"160":1,"2074":1,"2514":1,"2522":1,"2572":1,"2911":1}}],["alt",{"0":{"1380":2},"2":{"73":1,"114":1,"131":2,"134":2,"160":1,"213":2,"231":1,"266":1,"279":1,"683":1,"716":1,"722":2,"1347":2,"1349":1,"1377":14,"1378":8,"1380":5,"1457":1,"1462":10,"1474":3,"1475":1,"1477":2,"1478":2,"1479":2,"1482":2,"1486":2,"1529":1,"1618":1,"1625":3,"1676":2,"1690":1,"1767":1,"1776":7,"1779":1,"1788":6,"1952":2,"2066":1,"2067":1,"2068":3,"2069":3,"2070":2,"2071":3,"2077":3,"2078":1,"2255":1,"2256":4,"2257":4,"2317":1,"2318":3,"2327":2,"2331":2,"2344":1,"2345":1,"2346":1,"2514":4,"2520":10,"2522":4,"2538":10,"2541":16,"2542":15,"2547":14,"2549":1,"2550":4,"2572":19,"2651":14,"2652":4,"2831":1,"2889":1,"2929":6}}],["always",{"2":{"40":1,"47":1,"156":1,"175":1,"191":1,"212":1,"235":1,"249":1,"277":1,"283":1,"294":1,"339":1,"476":1,"489":1,"491":1,"512":1,"519":1,"521":1,"523":1,"524":1,"526":1,"533":1,"534":1,"568":1,"581":1,"613":1,"621":1,"763":1,"1213":2,"1297":1,"1422":1,"1426":2,"1470":1,"1472":2,"1491":1,"1499":1,"1517":2,"1589":1,"1619":1,"1675":1,"1676":4,"1781":1,"1956":1,"2001":1,"2057":1,"2058":1,"2062":2,"2064":2,"2072":1,"2183":1,"2265":1,"2272":1,"2274":3,"2300":1,"2435":1,"2558":1,"2576":1,"2614":1,"2729":1,"2767":1,"2774":1,"2775":1,"2794":1,"2805":1,"2842":1,"2901":2,"2914":1,"2922":1,"2946":1}}],["also",{"0":{"1320":1},"2":{"18":1,"40":1,"43":1,"49":1,"67":1,"86":1,"98":1,"125":1,"130":1,"153":1,"154":1,"156":1,"160":1,"169":1,"181":1,"182":1,"191":1,"194":1,"195":1,"231":1,"244":1,"297":1,"328":1,"399":1,"403":1,"414":1,"430":3,"433":1,"446":1,"461":1,"477":1,"489":2,"494":1,"496":1,"529":1,"547":1,"575":2,"607":1,"610":1,"612":1,"613":2,"625":1,"645":1,"665":1,"695":1,"717":1,"721":2,"722":1,"755":1,"1214":1,"1288":1,"1294":1,"1319":1,"1326":1,"1343":1,"1348":1,"1370":1,"1377":1,"1378":1,"1380":1,"1388":1,"1409":2,"1422":1,"1423":1,"1428":1,"1446":1,"1448":3,"1451":1,"1465":1,"1470":1,"1472":2,"1484":1,"1487":1,"1498":1,"1517":1,"1533":1,"1535":1,"1558":1,"1592":2,"1593":1,"1594":1,"1595":1,"1603":1,"1609":1,"1614":1,"1616":1,"1617":1,"1642":1,"1661":1,"1665":3,"1685":1,"1690":2,"1740":1,"1766":1,"1770":1,"1777":1,"1784":2,"1785":2,"1787":1,"1791":1,"1818":1,"1843":1,"1852":1,"1937":1,"1962":2,"1974":1,"1983":1,"1990":1,"1994":1,"2013":2,"2046":1,"2047":1,"2048":1,"2057":2,"2059":1,"2065":1,"2068":1,"2075":1,"2076":1,"2086":1,"2091":1,"2179":1,"2181":1,"2183":1,"2187":1,"2189":1,"2191":1,"2208":1,"2210":1,"2222":1,"2249":1,"2267":1,"2268":1,"2273":1,"2293":2,"2294":1,"2298":1,"2305":1,"2321":2,"2325":1,"2326":1,"2330":1,"2331":1,"2379":1,"2382":1,"2384":2,"2388":1,"2389":1,"2391":1,"2393":1,"2399":1,"2400":1,"2404":1,"2405":1,"2407":1,"2409":1,"2417":3,"2418":1,"2422":1,"2424":1,"2427":3,"2431":1,"2436":1,"2452":1,"2453":1,"2454":1,"2455":1,"2461":1,"2483":1,"2486":1,"2497":1,"2499":1,"2502":1,"2522":1,"2523":1,"2524":1,"2525":1,"2526":1,"2527":1,"2528":1,"2529":1,"2530":1,"2531":1,"2532":1,"2533":1,"2534":1,"2535":1,"2536":1,"2537":1,"2538":1,"2539":1,"2540":1,"2541":1,"2542":1,"2543":1,"2544":1,"2545":1,"2546":1,"2547":1,"2548":1,"2549":1,"2550":1,"2551":1,"2552":1,"2561":3,"2573":2,"2576":1,"2583":1,"2612":1,"2620":1,"2650":1,"2652":3,"2658":1,"2659":1,"2669":1,"2674":1,"2682":1,"2691":2,"2707":2,"2717":1,"2721":1,"2728":2,"2753":1,"2755":2,"2756":1,"2757":1,"2758":1,"2765":1,"2772":1,"2795":1,"2834":1,"2851":1,"2876":1,"2887":1,"2889":1,"2892":1,"2909":1,"2911":1,"2913":2,"2919":2,"2920":4,"2921":1,"2922":1,"2923":1,"2925":1,"2930":1,"2942":1,"2943":1,"2945":1,"2946":2,"2950":3}}],["alleviate",{"2":{"1497":1,"1622":1}}],["allocate",{"2":{"1952":1,"2289":1,"2756":1}}],["allocated",{"2":{"754":1,"1419":1,"2756":1}}],["allocation",{"2":{"328":1,"333":1,"2704":1}}],["allowing",{"2":{"64":1,"82":1,"98":1,"103":1,"107":1,"109":1,"125":1,"126":1,"169":1,"229":1,"234":1,"284":1,"555":1,"651":1,"665":1,"746":1,"1407":1,"1422":1,"1462":1,"1629":1,"1630":1,"1632":1,"1802":1,"1846":1,"1999":1,"2007":1,"2082":1,"2178":1,"2276":1,"2292":1,"2418":1,"2590":2,"2757":3,"2773":1,"2922":1}}],["allowed",{"2":{"18":1,"173":1,"188":1,"518":1,"719":1,"1781":1,"1784":1,"2275":1,"2309":1,"2775":1,"2922":1,"2931":2}}],["allows",{"2":{"14":1,"20":1,"23":1,"36":1,"39":3,"40":1,"99":1,"105":2,"107":2,"152":1,"153":1,"154":1,"179":1,"181":2,"187":1,"228":2,"230":2,"231":2,"246":1,"247":1,"262":1,"265":1,"288":1,"312":1,"371":1,"372":1,"390":1,"429":1,"433":1,"463":1,"472":1,"561":1,"564":1,"567":1,"570":1,"574":3,"578":1,"656":2,"670":1,"720":1,"754":1,"1288":1,"1407":1,"1415":1,"1417":1,"1419":1,"1421":1,"1451":1,"1464":1,"1472":1,"1492":1,"1510":1,"1534":1,"1541":1,"1544":1,"1546":1,"1592":2,"1626":1,"1630":1,"1664":1,"1671":1,"1681":1,"1689":1,"1773":1,"1781":1,"1796":1,"1844":1,"1919":1,"1930":1,"1936":2,"1939":1,"1953":1,"1960":1,"1968":1,"1983":1,"1985":2,"1993":1,"2054":1,"2080":1,"2096":1,"2219":1,"2277":1,"2278":3,"2302":1,"2310":1,"2318":1,"2377":1,"2379":1,"2381":1,"2400":2,"2418":8,"2444":1,"2466":1,"2482":1,"2504":1,"2522":1,"2599":1,"2619":1,"2650":1,"2653":1,"2671":1,"2684":1,"2695":1,"2721":1,"2728":1,"2755":1,"2757":2,"2807":1,"2808":1,"2825":1,"2852":1,"2922":1,"2928":1,"2945":1}}],["allow",{"0":{"179":1,"1613":1},"2":{"6":2,"35":1,"39":1,"43":1,"63":4,"65":2,"70":1,"74":5,"90":2,"93":2,"99":1,"110":1,"113":1,"114":7,"118":1,"125":3,"142":1,"149":1,"160":5,"169":3,"173":1,"175":6,"187":1,"191":7,"199":5,"201":1,"210":2,"213":1,"214":1,"222":2,"234":1,"236":6,"249":2,"277":1,"283":1,"285":3,"308":2,"317":1,"333":2,"339":1,"396":1,"488":1,"490":2,"558":1,"564":1,"613":2,"626":1,"627":1,"665":1,"760":1,"764":1,"1200":1,"1245":1,"1266":1,"1347":1,"1349":1,"1365":1,"1370":1,"1377":1,"1403":1,"1422":2,"1427":1,"1440":1,"1443":1,"1457":1,"1472":1,"1532":1,"1535":1,"1546":1,"1613":2,"1634":1,"1639":1,"1657":1,"1662":1,"1668":1,"1766":1,"1769":1,"1782":3,"1837":2,"1839":1,"1988":2,"2007":1,"2293":1,"2317":1,"2318":1,"2379":1,"2381":1,"2382":1,"2460":1,"2466":1,"2520":1,"2554":1,"2559":1,"2573":1,"2651":1,"2652":1,"2726":1,"2729":1,"2749":1,"2751":1,"2757":2,"2824":1,"2828":1,"2841":1,"2923":1,"2927":1,"2928":1,"2938":1}}],["alls",{"2":{"222":2}}],["all|txbolt|geminipr",{"2":{"191":1}}],["allison",{"2":{"143":4,"222":1}}],["all",{"0":{"485":1,"709":1,"737":1,"814":1,"818":1,"841":1,"845":1,"873":1,"877":1,"905":1,"909":1,"940":1,"944":1,"974":1,"978":1,"1008":1,"1012":1,"1042":1,"1046":1,"1076":1,"1080":1,"1110":1,"1114":1,"1144":1,"1148":1,"1178":1,"1182":1,"1231":1,"1235":1,"1308":1,"1468":1,"1867":1,"2109":1,"2726":1},"1":{"710":1,"738":1,"815":1,"819":1,"842":1,"846":1,"874":1,"878":1,"906":1,"910":1,"941":1,"945":1,"975":1,"979":1,"1009":1,"1013":1,"1043":1,"1047":1,"1077":1,"1081":1,"1111":1,"1115":1,"1145":1,"1149":1,"1179":1,"1183":1,"1232":1,"1236":1,"1309":1,"1868":1,"2110":1},"2":{"1":1,"3":1,"4":1,"7":1,"8":1,"12":1,"15":1,"16":1,"22":1,"26":1,"39":3,"47":1,"48":1,"49":1,"57":1,"65":1,"69":1,"77":1,"83":1,"98":1,"111":2,"113":1,"114":4,"120":1,"124":1,"126":1,"134":1,"149":1,"160":1,"166":1,"175":2,"178":2,"191":2,"194":2,"199":2,"215":1,"222":14,"249":1,"255":1,"265":2,"266":1,"268":3,"277":1,"279":1,"307":3,"339":2,"373":1,"379":2,"383":1,"384":1,"393":1,"398":2,"411":2,"413":1,"414":1,"421":1,"422":2,"426":1,"429":3,"433":2,"434":2,"441":1,"442":1,"446":1,"455":1,"459":3,"488":1,"492":6,"494":1,"496":1,"510":1,"514":2,"521":1,"525":1,"541":1,"542":2,"555":2,"559":1,"564":1,"574":1,"589":4,"592":1,"597":1,"599":1,"609":2,"610":1,"613":1,"618":1,"631":2,"639":1,"646":1,"652":2,"653":2,"656":1,"671":1,"686":1,"687":2,"695":1,"709":1,"714":1,"721":1,"737":1,"753":1,"758":1,"759":2,"766":1,"805":1,"814":1,"818":1,"831":1,"841":1,"845":1,"863":1,"873":1,"877":1,"893":1,"905":1,"909":1,"928":1,"940":1,"944":1,"962":1,"974":1,"978":1,"996":1,"1008":1,"1012":1,"1030":1,"1042":1,"1046":1,"1064":1,"1076":1,"1080":1,"1098":1,"1110":1,"1114":1,"1132":1,"1144":1,"1148":1,"1166":1,"1178":1,"1182":1,"1199":1,"1219":1,"1231":1,"1235":1,"1286":1,"1294":1,"1308":1,"1318":1,"1333":1,"1343":2,"1348":1,"1349":1,"1351":1,"1377":1,"1378":2,"1398":1,"1409":1,"1410":3,"1413":1,"1417":2,"1422":1,"1423":1,"1425":1,"1428":5,"1433":3,"1441":1,"1444":1,"1446":2,"1458":1,"1459":1,"1460":1,"1463":1,"1464":1,"1468":3,"1470":1,"1472":5,"1481":1,"1485":3,"1490":1,"1491":1,"1492":1,"1497":1,"1503":1,"1518":1,"1519":1,"1538":2,"1546":1,"1558":1,"1591":1,"1593":1,"1604":1,"1612":4,"1616":1,"1619":1,"1620":2,"1625":1,"1668":1,"1678":1,"1680":1,"1681":1,"1762":1,"1770":1,"1774":2,"1776":2,"1781":2,"1782":1,"1783":1,"1784":2,"1785":1,"1804":2,"1843":2,"1846":2,"1847":3,"1852":2,"1867":1,"1923":2,"1925":2,"1938":1,"1952":1,"1954":3,"1955":2,"1958":4,"1962":1,"1974":1,"1990":1,"1992":1,"1999":1,"2004":1,"2006":1,"2014":1,"2057":1,"2072":1,"2082":2,"2083":3,"2085":4,"2091":2,"2095":1,"2109":1,"2184":1,"2188":1,"2191":3,"2210":1,"2213":1,"2219":1,"2222":1,"2253":4,"2254":7,"2259":2,"2260":1,"2275":1,"2279":1,"2289":1,"2293":1,"2296":1,"2297":3,"2303":1,"2310":4,"2313":2,"2315":1,"2319":1,"2325":1,"2329":1,"2330":1,"2331":4,"2377":1,"2384":2,"2387":1,"2388":1,"2389":1,"2394":1,"2399":1,"2404":1,"2415":1,"2417":13,"2418":4,"2425":1,"2427":1,"2428":1,"2430":1,"2431":1,"2434":2,"2435":1,"2449":2,"2450":1,"2452":1,"2453":4,"2460":1,"2463":1,"2466":3,"2474":1,"2475":1,"2477":1,"2499":1,"2502":1,"2508":2,"2522":1,"2528":1,"2535":1,"2539":2,"2557":1,"2561":1,"2567":1,"2569":3,"2571":1,"2573":1,"2582":1,"2586":1,"2596":2,"2597":1,"2601":1,"2608":1,"2612":1,"2620":1,"2626":1,"2628":5,"2634":1,"2637":1,"2638":1,"2640":1,"2660":1,"2663":3,"2665":1,"2667":1,"2675":1,"2682":1,"2687":1,"2690":1,"2691":1,"2695":1,"2702":1,"2703":1,"2707":1,"2709":2,"2714":1,"2726":2,"2728":7,"2729":1,"2730":1,"2734":2,"2747":1,"2749":1,"2750":1,"2751":1,"2754":1,"2756":12,"2757":5,"2765":2,"2766":1,"2772":2,"2773":1,"2827":1,"2836":1,"2851":1,"2869":1,"2881":2,"2885":1,"2890":1,"2892":2,"2894":1,"2895":1,"2905":1,"2907":1,"2910":1,"2911":2,"2912":1,"2920":3,"2921":3,"2932":1,"2936":1,"2939":1,"2941":1,"2944":1,"2946":3,"2947":1,"2949":1,"2950":2}}],["ast1109mltrq",{"2":{"2689":1}}],["astr",{"2":{"2546":1,"2555":1}}],["astro65",{"2":{"114":1}}],["asterisk",{"2":{"2518":1,"2522":1,"2546":1,"2555":1}}],["asian",{"2":{"2329":1}}],["aside",{"2":{"1378":1,"2474":1}}],["as5",{"2":{"1925":1,"2539":1}}],["as400",{"2":{"2518":1,"2522":1}}],["as4",{"2":{"1925":1,"2539":1}}],["as3",{"2":{"1925":1,"2539":1}}],["as2",{"2":{"1925":1,"2539":1}}],["as1",{"2":{"1925":1,"2539":1}}],["asd",{"2":{"1802":2}}],["asdf2",{"2":{"449":5}}],["asking",{"2":{"2567":1}}],["ask",{"0":{"418":1},"2":{"525":1,"604":3,"612":1,"613":1,"2384":1,"2387":1,"2447":1,"2580":1,"2612":1,"2673":1,"2730":1,"2937":1}}],["asked",{"0":{"1314":1,"1334":1},"1":{"1315":1,"1316":1,"1317":1,"1318":1,"1319":1,"1320":1,"1335":1,"1336":1,"1337":1,"1338":1,"1339":1,"1340":1,"1341":1,"1342":1,"1343":1},"2":{"265":1,"275":1,"307":1,"686":1,"2506":1,"2612":1,"2729":1}}],["aspects",{"2":{"279":1,"379":1,"1433":1,"1592":1}}],["asynchronously",{"2":{"396":1}}],["asynchronous",{"2":{"373":1,"378":1}}],["asyncusb",{"2":{"266":1}}],["async",{"0":{"263":1},"2":{"266":1,"277":1}}],["asymmetric",{"2":{"160":1,"1410":2}}],["asym",{"2":{"114":1,"1410":5,"1413":1,"2854":1}}],["ashpil",{"2":{"218":2}}],["ascii",{"0":{"1355":1,"2236":1,"2768":1},"1":{"2237":1},"2":{"191":2,"1446":1,"1538":1,"2059":2,"2219":1,"2221":1,"2222":1,"2223":1,"2228":1,"2230":1,"2232":1,"2234":1,"2236":1,"2237":1,"2755":8,"2765":2,"2767":3,"2768":6,"2769":3,"2770":2,"2852":2,"2856":1,"2886":3}}],["asst",{"2":{"2517":1,"2522":1}}],["associate",{"2":{"2319":1}}],["associated",{"2":{"190":1,"240":1,"383":1,"562":1,"563":1,"607":2,"627":1,"1538":1,"2295":1,"2296":1,"2319":3,"2466":1,"2696":1,"2721":1,"2729":1,"2779":1,"2792":3,"2871":1,"2878":1}}],["assistance",{"2":{"2612":1}}],["assistant",{"2":{"2517":2,"2522":2}}],["assist",{"2":{"1342":1,"2194":1}}],["assigns",{"2":{"2470":1,"2796":1}}],["assigned",{"2":{"689":1,"1620":1,"1988":1,"1989":1}}],["assigning",{"2":{"629":1,"2432":1,"2685":1}}],["assignment",{"0":{"2939":1},"2":{"133":1,"134":2,"312":1,"532":1,"2726":1,"2869":1}}],["assignments",{"2":{"50":1,"114":1,"1625":2,"2691":1,"2756":2}}],["assign",{"2":{"38":1,"235":1,"689":1,"1312":1,"1313":1,"1665":1,"1763":1,"1790":1,"1845":1,"1994":1,"2066":1,"2081":1,"2189":1,"2474":2,"2520":1,"2843":1,"2931":1}}],["assembled",{"2":{"1959":1,"1961":1}}],["assembler",{"2":{"134":1}}],["assert",{"2":{"396":1,"1633":1,"1647":1,"1649":1,"1651":1,"2767":1,"2768":1,"2773":1,"2774":1,"2776":1,"2778":1}}],["assertions",{"2":{"2735":1}}],["assertion",{"2":{"339":1,"397":1}}],["assessment",{"2":{"312":1}}],["assuming",{"2":{"761":4,"2096":1,"2297":1,"2317":1,"2757":2}}],["assume",{"2":{"396":1,"626":1,"646":1,"2411":1,"2594":1,"2934":1}}],["assumes",{"2":{"384":1,"744":1,"1193":1,"1449":1,"1945":1,"1986":1,"2223":1,"2259":1,"2263":1,"2271":1,"2275":1,"2278":2,"2284":1,"2317":1,"2387":1,"2411":1,"2632":1,"2702":1,"2886":1,"2934":2}}],["assumed",{"2":{"47":1,"141":1,"212":1,"340":1,"475":1,"568":1,"1417":1,"1853":1,"2092":1,"2271":1,"2300":1,"2422":1,"2674":1,"2705":1}}],["assumption",{"2":{"303":1,"317":1,"338":1}}],["assumptions",{"2":{"149":1,"175":1}}],["as",{"0":{"6":1,"347":1,"1779":1,"1924":1,"2005":1,"2463":1,"2484":1,"2486":1,"2488":1},"1":{"1784":1,"1785":1,"1786":1,"2006":1,"2485":1,"2487":1,"2489":1},"2":{"6":1,"8":1,"21":2,"27":1,"39":3,"40":5,"55":1,"56":1,"57":1,"65":1,"67":1,"69":1,"76":1,"86":1,"87":1,"90":1,"99":1,"103":2,"107":2,"114":2,"116":1,"118":1,"120":1,"123":1,"124":2,"125":1,"126":2,"131":1,"132":4,"149":1,"152":2,"153":3,"156":2,"160":2,"163":1,"168":2,"169":1,"173":1,"175":2,"178":1,"181":1,"184":1,"185":1,"188":2,"190":1,"191":3,"194":2,"198":5,"199":2,"201":4,"203":3,"212":3,"222":1,"224":5,"228":1,"229":3,"230":1,"231":1,"232":3,"233":1,"234":3,"235":1,"236":1,"238":1,"240":3,"243":3,"244":1,"246":1,"249":2,"254":1,"262":1,"263":7,"265":2,"266":1,"272":2,"273":1,"275":1,"276":3,"279":1,"283":2,"284":1,"289":1,"293":1,"297":1,"298":2,"302":2,"303":2,"305":1,"307":1,"308":1,"312":1,"314":1,"317":1,"320":1,"323":1,"328":1,"331":3,"338":2,"340":1,"354":1,"365":1,"379":2,"383":1,"393":3,"396":1,"397":1,"403":1,"414":3,"425":1,"430":1,"433":5,"444":1,"460":1,"461":1,"462":1,"470":2,"473":1,"489":2,"491":3,"504":2,"512":4,"513":1,"514":3,"516":1,"520":1,"521":1,"525":2,"527":1,"531":2,"532":1,"538":1,"542":2,"546":1,"564":4,"570":3,"571":2,"572":2,"574":1,"575":1,"582":1,"583":1,"588":5,"592":1,"593":1,"598":1,"604":2,"607":1,"610":1,"613":2,"615":1,"627":3,"630":1,"634":2,"635":2,"640":2,"643":1,"645":4,"646":4,"651":5,"657":1,"665":4,"666":1,"669":1,"671":2,"679":1,"680":1,"685":3,"686":2,"688":3,"689":4,"690":2,"695":3,"699":1,"701":1,"714":1,"716":3,"720":2,"722":1,"729":1,"743":1,"746":1,"749":5,"750":2,"754":1,"755":2,"756":2,"757":1,"759":6,"761":8,"765":1,"766":2,"768":2,"803":1,"863":1,"893":1,"923":4,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1094":4,"1098":1,"1128":4,"1132":1,"1166":1,"1192":1,"1193":2,"1194":2,"1197":4,"1198":1,"1200":3,"1201":1,"1205":1,"1214":1,"1219":1,"1246":1,"1248":4,"1269":2,"1287":1,"1288":1,"1289":2,"1296":1,"1297":1,"1298":1,"1311":1,"1313":1,"1317":1,"1319":1,"1330":2,"1332":1,"1336":1,"1343":1,"1361":1,"1365":2,"1372":2,"1376":1,"1378":2,"1380":1,"1381":2,"1398":1,"1405":2,"1415":1,"1417":4,"1422":5,"1423":2,"1425":3,"1426":1,"1427":2,"1428":1,"1430":1,"1431":1,"1432":1,"1433":1,"1434":1,"1441":1,"1446":3,"1448":1,"1451":1,"1453":1,"1455":1,"1463":1,"1464":2,"1465":2,"1466":2,"1467":2,"1472":3,"1474":1,"1478":2,"1479":1,"1482":1,"1483":2,"1485":1,"1486":2,"1490":1,"1492":2,"1498":1,"1499":1,"1501":2,"1503":1,"1514":1,"1517":1,"1518":3,"1519":1,"1521":6,"1522":6,"1523":3,"1527":2,"1528":2,"1532":2,"1533":1,"1534":2,"1538":8,"1540":2,"1541":2,"1546":2,"1549":1,"1590":1,"1592":2,"1593":4,"1594":3,"1597":1,"1603":1,"1605":2,"1606":1,"1609":1,"1611":1,"1612":4,"1616":1,"1620":1,"1622":3,"1623":1,"1628":2,"1629":1,"1630":3,"1631":1,"1632":1,"1635":1,"1636":1,"1638":1,"1646":1,"1659":1,"1660":1,"1661":1,"1668":1,"1670":2,"1681":3,"1685":1,"1687":1,"1689":1,"1690":1,"1702":1,"1738":2,"1739":1,"1742":1,"1743":1,"1747":1,"1750":1,"1762":1,"1765":2,"1777":2,"1779":1,"1781":5,"1786":2,"1787":1,"1788":1,"1789":1,"1795":2,"1801":1,"1803":1,"1835":1,"1837":2,"1840":1,"1841":1,"1843":2,"1844":1,"1846":3,"1849":1,"1850":1,"1851":1,"1855":1,"1920":2,"1923":1,"1925":1,"1934":2,"1935":2,"1937":1,"1939":3,"1946":1,"1947":1,"1952":1,"1953":1,"1954":1,"1956":1,"1962":2,"1974":2,"1983":3,"1986":4,"1988":2,"1989":1,"1999":6,"2000":7,"2001":1,"2003":1,"2004":1,"2006":1,"2008":1,"2009":1,"2011":2,"2012":1,"2013":1,"2014":2,"2015":1,"2037":1,"2039":2,"2043":1,"2048":1,"2051":1,"2054":2,"2069":3,"2070":1,"2071":1,"2075":2,"2076":2,"2077":4,"2080":1,"2082":3,"2086":4,"2088":1,"2090":1,"2094":2,"2164":1,"2181":1,"2188":1,"2189":2,"2193":1,"2206":1,"2207":1,"2210":2,"2219":1,"2222":1,"2253":1,"2254":1,"2255":4,"2259":1,"2260":2,"2261":3,"2265":1,"2269":1,"2272":1,"2273":1,"2275":4,"2276":1,"2277":1,"2278":3,"2280":2,"2281":1,"2286":1,"2290":1,"2292":3,"2294":3,"2295":1,"2296":1,"2297":3,"2298":4,"2300":2,"2301":1,"2303":1,"2305":2,"2309":1,"2310":1,"2316":3,"2317":2,"2318":5,"2319":4,"2329":2,"2330":3,"2331":4,"2369":1,"2375":1,"2380":1,"2381":1,"2382":1,"2384":4,"2386":1,"2388":2,"2389":1,"2390":4,"2391":1,"2393":2,"2394":1,"2395":1,"2396":1,"2397":4,"2399":1,"2400":1,"2401":1,"2405":1,"2406":1,"2408":1,"2410":1,"2417":5,"2418":5,"2422":4,"2423":2,"2424":1,"2425":1,"2427":1,"2428":1,"2429":1,"2430":2,"2431":6,"2432":1,"2434":1,"2435":1,"2447":1,"2449":2,"2451":1,"2452":1,"2453":2,"2454":3,"2455":1,"2458":2,"2460":1,"2461":2,"2463":1,"2466":6,"2472":1,"2473":1,"2477":1,"2484":1,"2486":1,"2488":1,"2496":1,"2499":1,"2502":1,"2503":3,"2504":1,"2505":1,"2508":1,"2518":1,"2520":7,"2522":2,"2525":6,"2535":1,"2538":6,"2539":1,"2553":1,"2557":2,"2558":1,"2561":1,"2562":2,"2564":2,"2566":3,"2567":4,"2568":4,"2569":9,"2571":1,"2572":1,"2583":1,"2589":1,"2590":1,"2591":1,"2592":1,"2594":3,"2597":2,"2620":2,"2622":1,"2626":4,"2628":1,"2634":1,"2637":2,"2639":2,"2643":1,"2650":2,"2651":1,"2652":1,"2653":3,"2662":2,"2664":3,"2667":3,"2669":1,"2672":1,"2674":1,"2675":1,"2680":2,"2684":2,"2685":2,"2686":1,"2687":1,"2694":1,"2703":1,"2704":1,"2705":1,"2707":5,"2709":2,"2710":1,"2711":3,"2713":1,"2714":2,"2715":1,"2717":1,"2726":2,"2728":14,"2729":4,"2730":1,"2731":2,"2732":1,"2741":1,"2742":3,"2751":2,"2753":6,"2754":1,"2755":6,"2756":1,"2757":10,"2764":1,"2765":1,"2769":1,"2772":1,"2780":1,"2786":1,"2787":1,"2794":3,"2795":2,"2796":2,"2799":2,"2800":3,"2802":1,"2808":1,"2834":2,"2840":1,"2846":1,"2851":1,"2852":2,"2857":2,"2869":3,"2882":2,"2884":1,"2885":1,"2886":4,"2888":2,"2894":1,"2901":2,"2902":2,"2903":1,"2912":6,"2913":3,"2919":2,"2920":9,"2921":3,"2922":3,"2923":2,"2926":7,"2927":2,"2928":2,"2929":1,"2931":3,"2933":1,"2935":2,"2937":2,"2941":1,"2944":1,"2949":4,"2950":2}}],["at25sf128a",{"2":{"2705":2}}],["ation",{"2":{"2079":1}}],["atm32u4dfu",{"2":{"689":1}}],["atm16u4",{"2":{"689":1}}],["atmel",{"0":{"546":1,"2389":1,"2498":1},"1":{"2390":1,"2391":1},"2":{"111":1,"240":3,"573":2,"689":7,"2389":2,"2498":1,"2503":1,"2612":1,"2615":2,"2802":1,"2803":1}}],["atmega16",{"2":{"693":1,"767":2,"1247":1,"1268":2,"1553":2,"1554":2}}],["atmega16u4",{"2":{"546":1,"2498":1}}],["atmega16u2",{"2":{"64":1,"92":1,"546":1,"689":1}}],["atmega32a",{"2":{"235":1,"546":1,"693":1,"767":1,"1247":1,"1268":1,"1553":1,"1554":1,"2500":1,"2501":2}}],["atmega32u4",{"0":{"2041":1},"2":{"70":1,"111":1,"444":1,"546":1,"573":1,"698":1,"715":1,"723":1,"1315":4,"1317":1,"1371":1,"1474":1,"1953":1,"2043":1,"2261":1,"2424":5,"2498":1,"2499":1,"2502":1,"2612":1,"2615":5,"2706":1,"2901":1,"2935":1}}],["atmega32u2",{"2":{"63":1,"64":1,"546":1,"689":1}}],["atmega328p",{"2":{"64":1,"546":1,"2395":1,"2501":2}}],["atmega328",{"2":{"64":1,"546":1,"693":2,"767":1,"1247":1,"1268":1,"1553":1,"1554":1}}],["at32",{"0":{"550":1,"2404":1},"1":{"2405":1},"2":{"317":1,"339":1,"689":2,"2404":3,"2405":1}}],["at32f415",{"2":{"285":1,"294":1,"550":1}}],["atlas",{"2":{"222":1}}],["atsam",{"2":{"75":1,"114":4,"134":1,"160":1,"277":1,"279":2,"285":1}}],["atop",{"2":{"69":1}}],["atomically",{"2":{"763":1}}],["atomic",{"0":{"763":1},"2":{"64":1,"277":1,"763":5}}],["atom47",{"2":{"57":4,"114":1}}],["at90usb1286",{"2":{"2424":1}}],["at90usb128",{"2":{"546":1,"689":1,"2490":2,"2498":2}}],["at90usb162",{"2":{"74":1,"546":1,"1553":1,"1554":1}}],["at90usb64",{"2":{"546":1,"689":1,"693":1,"767":1,"1247":1,"1268":1,"1553":1,"1554":1,"2498":2}}],["at90usb",{"2":{"63":1}}],["attain",{"2":{"2567":1,"2569":1,"2728":1}}],["attacking",{"2":{"1493":1}}],["attack",{"2":{"312":1,"2567":1}}],["attach",{"0":{"2761":1},"2":{"2761":4}}],["attachment",{"2":{"1367":1,"2761":1}}],["attaching",{"2":{"82":1,"2761":1}}],["attached",{"2":{"39":1,"1549":1,"1641":1,"1684":2,"1685":1,"1983":1,"2178":1,"2272":1,"2423":3,"2466":1}}],["attribution",{"2":{"2714":2}}],["attribute",{"2":{"495":1,"497":1,"498":1,"625":4,"1419":4,"1470":2,"1472":1,"1689":1,"2381":1,"2767":1,"2768":1,"2769":2,"2773":1,"2774":1,"2775":1,"2776":1,"2777":1,"2778":1,"2779":1}}],["attributes",{"2":{"110":1,"494":1,"2674":2}}],["attractive",{"2":{"2425":1}}],["attrs",{"2":{"1332":2}}],["attiny85",{"2":{"1291":2}}],["attenuate",{"2":{"1974":5}}],["attenuation",{"2":{"175":1,"191":1,"1974":6}}],["attention",{"2":{"403":1,"678":1,"2272":1,"2516":1,"2522":1}}],["attempted",{"0":{"2740":1},"1":{"2741":1,"2742":1},"2":{"263":1,"1389":1,"1407":1,"2567":6,"2612":1}}],["attempts",{"0":{"2741":1},"2":{"87":1,"312":1,"365":1,"720":1,"2213":1,"2275":2,"2411":1,"2934":1}}],["attempting",{"2":{"41":1,"123":1,"240":1,"1329":1,"1795":1,"2277":1,"2508":1,"2615":1,"2685":1}}],["attempt",{"2":{"41":1,"123":1,"166":1,"797":2,"1472":1,"2275":3,"2369":1,"2393":1,"2425":1,"2567":1,"2616":1}}],["at101",{"2":{"27":2,"159":2,"160":1}}],["at",{"0":{"2315":1},"2":{"4":1,"11":1,"15":1,"18":1,"44":1,"65":2,"73":1,"75":1,"114":1,"124":1,"134":2,"149":2,"152":1,"156":1,"157":1,"175":2,"199":1,"210":1,"214":1,"222":1,"229":2,"231":1,"241":2,"249":3,"251":1,"265":3,"266":2,"277":1,"285":1,"381":2,"398":1,"403":1,"411":1,"412":1,"414":1,"473":1,"489":2,"492":1,"512":5,"521":2,"524":1,"529":1,"541":1,"542":2,"544":1,"555":2,"556":1,"567":1,"574":1,"576":2,"592":2,"593":2,"610":1,"617":2,"621":1,"626":1,"627":5,"633":1,"635":1,"643":1,"645":1,"646":2,"647":1,"656":1,"657":2,"664":1,"673":1,"684":1,"686":1,"687":2,"691":1,"695":1,"720":1,"728":1,"749":1,"754":3,"757":1,"763":1,"797":1,"804":1,"830":1,"862":1,"892":1,"927":1,"961":1,"995":1,"1029":1,"1063":1,"1097":1,"1131":1,"1165":1,"1192":1,"1198":1,"1201":1,"1218":1,"1252":2,"1272":1,"1296":1,"1299":1,"1303":1,"1318":1,"1319":1,"1327":1,"1331":1,"1348":1,"1378":1,"1389":1,"1413":2,"1422":1,"1423":2,"1467":1,"1470":1,"1472":1,"1477":1,"1481":1,"1484":3,"1485":1,"1487":1,"1492":1,"1503":2,"1527":1,"1528":1,"1533":1,"1538":2,"1539":2,"1546":2,"1556":1,"1557":1,"1558":1,"1593":2,"1595":1,"1602":1,"1608":1,"1616":1,"1625":1,"1630":1,"1633":1,"1639":1,"1641":2,"1656":1,"1661":1,"1663":1,"1667":1,"1670":2,"1685":1,"1689":1,"1697":1,"1728":1,"1729":1,"1740":1,"1786":1,"1787":1,"1818":1,"1853":1,"1855":1,"1930":1,"1931":1,"1934":2,"1935":1,"1936":6,"1937":1,"1938":1,"1939":3,"1946":1,"1947":1,"1953":1,"1954":12,"1956":1,"1961":1,"1965":1,"1967":1,"1974":1,"1983":3,"1985":1,"1986":4,"1999":1,"2043":1,"2057":1,"2085":7,"2092":1,"2094":1,"2096":1,"2179":1,"2183":1,"2187":1,"2191":1,"2198":5,"2201":12,"2205":1,"2252":1,"2258":1,"2259":1,"2264":2,"2267":2,"2272":4,"2277":1,"2286":1,"2290":11,"2293":1,"2294":1,"2298":2,"2299":1,"2300":2,"2309":2,"2310":1,"2317":2,"2319":1,"2329":1,"2332":2,"2379":3,"2387":1,"2402":1,"2406":1,"2408":1,"2410":1,"2417":1,"2418":3,"2425":1,"2427":1,"2428":3,"2429":1,"2434":1,"2450":1,"2462":1,"2464":1,"2466":4,"2471":1,"2475":1,"2481":1,"2504":1,"2508":9,"2546":1,"2552":2,"2555":1,"2557":1,"2560":1,"2561":1,"2567":2,"2568":1,"2573":2,"2579":1,"2584":1,"2585":1,"2592":1,"2596":1,"2602":1,"2608":1,"2612":1,"2616":1,"2627":1,"2628":1,"2634":4,"2637":1,"2640":1,"2642":1,"2650":1,"2658":1,"2659":3,"2674":5,"2682":1,"2684":1,"2685":2,"2686":1,"2687":1,"2690":1,"2715":1,"2717":1,"2726":1,"2728":7,"2729":1,"2732":1,"2734":1,"2753":1,"2754":3,"2755":1,"2756":2,"2757":8,"2758":1,"2767":2,"2774":2,"2816":1,"2833":1,"2842":1,"2851":2,"2882":1,"2885":1,"2892":1,"2903":3,"2912":2,"2915":1,"2928":1,"2931":1,"2935":1,"2937":1,"2938":2,"2939":1,"2940":2,"2941":3,"2945":1,"2948":1,"2949":1,"2950":1}}],["atreus",{"0":{"4":1},"2":{"191":1,"277":1,"328":1}}],["ancient",{"2":{"2710":1}}],["anchors",{"2":{"341":3}}],["anchor",{"2":{"210":1,"341":1}}],["analysis",{"2":{"2653":1}}],["analogue",{"2":{"2430":1}}],["analogreference",{"2":{"698":1}}],["analogreadpinadc",{"2":{"699":1}}],["analogreadpin",{"2":{"40":1,"698":1,"699":1}}],["analogread",{"2":{"40":1,"133":1,"134":1}}],["analog",{"0":{"1968":1},"2":{"39":1,"74":1,"118":2,"149":1,"175":1,"199":2,"234":6,"236":1,"249":1,"690":1,"691":1,"698":1,"1398":2,"1738":2,"1739":2,"1742":1,"1747":1,"1749":4,"1755":1,"1923":1,"1968":22}}],["anatomy",{"0":{"2560":1},"1":{"2561":1,"2562":1,"2563":1,"2564":1}}],["anodes",{"2":{"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1219":1}}],["another",{"2":{"95":1,"149":2,"194":1,"233":1,"251":1,"268":1,"289":1,"403":1,"509":1,"564":2,"683":1,"1396":1,"1427":1,"1446":2,"1462":1,"1478":1,"1480":1,"1483":1,"1498":1,"1518":1,"1533":1,"1538":1,"1595":1,"1609":1,"1613":1,"1619":2,"1662":1,"1681":1,"1782":1,"1785":1,"2065":1,"2066":1,"2069":1,"2265":1,"2292":2,"2298":1,"2300":2,"2310":1,"2317":1,"2325":1,"2394":1,"2406":1,"2408":1,"2410":1,"2464":1,"2482":1,"2503":1,"2560":1,"2568":1,"2634":1,"2658":1,"2659":1,"2669":1,"2728":2,"2756":2,"2831":1,"2834":1,"2913":1,"2914":3,"2920":4,"2921":4,"2926":1,"2929":3,"2943":1}}],["answer",{"2":{"524":1,"604":2,"2628":4}}],["ansi|iso",{"2":{"308":1}}],["ansi",{"0":{"25":1,"2546":1,"2553":1},"1":{"26":1,"2554":1,"2555":1},"2":{"25":1,"26":4,"99":1,"102":1,"114":1,"149":1,"159":2,"172":1,"175":1,"183":2,"191":1,"205":2,"218":1,"222":4,"226":6,"259":2,"260":1,"266":2,"277":1,"308":1,"322":1,"429":3,"444":1,"494":1,"1346":3,"1433":3,"1434":3,"1465":2,"1774":1,"2223":1,"2259":1,"2453":5,"2546":1,"2553":1,"2594":1,"2728":1,"2869":4,"2884":1,"2886":1,"2887":10}}],["anti",{"2":{"440":1,"2735":1,"2748":1,"2755":1,"2872":1}}],["anticipation",{"2":{"86":1}}],["anticipated",{"2":{"2":1,"1499":1}}],["annotation",{"2":{"539":1}}],["annotated",{"0":{"539":1}}],["announce",{"2":{"224":1,"407":1,"408":1,"411":1}}],["annepro2",{"2":{"175":1,"249":1,"266":2}}],["angle65",{"2":{"222":1}}],["angle",{"2":{"191":2,"1741":1,"1983":2,"1986":1,"2546":2,"2555":2,"2869":1}}],["angel64",{"2":{"143":4}}],["angel17",{"2":{"143":2}}],["anim",{"2":{"2757":4}}],["animtion",{"2":{"175":1}}],["animate",{"2":{"2187":1,"2757":9}}],["animated",{"2":{"153":1,"2466":1,"2753":1,"2755":1,"2757":1}}],["animation",{"0":{"2184":1,"2185":1,"2187":1},"2":{"39":2,"160":1,"175":5,"210":1,"236":1,"249":1,"285":1,"308":1,"328":1,"462":1,"1848":2,"1849":1,"1852":4,"1865":1,"1867":1,"1908":1,"1910":1,"1912":1,"1915":1,"1949":2,"2084":2,"2085":3,"2091":4,"2107":1,"2109":1,"2168":1,"2170":1,"2172":1,"2175":1,"2181":10,"2183":1,"2184":11,"2185":10,"2187":6,"2199":4,"2202":4,"2537":2,"2544":10,"2545":2,"2757":6,"2764":1,"2775":1,"2871":4,"2877":2,"2878":4}}],["animations",{"0":{"2183":1,"2196":1},"1":{"2184":1,"2185":1,"2186":1,"2187":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1},"2":{"22":1,"124":5,"153":1,"175":1,"191":1,"199":1,"210":1,"222":1,"236":1,"1846":2,"1848":2,"1850":1,"2082":2,"2084":2,"2088":1,"2184":4,"2185":1,"2186":2,"2187":6,"2188":1,"2199":6,"2537":2,"2545":2,"2728":1,"2753":1,"2754":4,"2755":1,"2757":1,"2776":1,"2871":3,"2877":2,"2878":3,"2894":4}}],["an",{"0":{"423":1,"667":1,"1338":1,"1523":1,"1660":1,"2635":1,"2707":1,"2708":1,"2711":1},"1":{"668":1,"669":1,"670":1,"671":1,"672":1,"673":1,"2636":1,"2637":1,"2708":1,"2709":2,"2710":2,"2711":1,"2712":1,"2713":1},"2":{"5":1,"6":1,"39":1,"40":1,"47":1,"73":2,"99":3,"103":1,"126":1,"132":1,"149":1,"158":1,"166":1,"187":1,"191":1,"194":2,"212":1,"214":2,"234":1,"248":1,"249":1,"268":1,"279":1,"288":1,"289":1,"294":1,"320":1,"333":1,"339":1,"352":1,"366":1,"373":1,"374":1,"377":1,"378":1,"384":2,"389":2,"447":1,"463":1,"467":1,"468":1,"472":1,"473":1,"476":1,"477":1,"487":1,"489":2,"491":1,"495":1,"496":1,"512":1,"513":1,"520":1,"523":1,"524":3,"525":1,"538":1,"544":1,"559":1,"561":2,"565":1,"570":1,"574":1,"578":1,"582":1,"591":1,"599":2,"606":1,"607":4,"612":1,"613":2,"614":2,"617":1,"623":1,"627":1,"628":1,"629":1,"630":1,"644":2,"665":1,"668":2,"671":1,"672":1,"675":2,"683":2,"687":1,"688":1,"689":1,"696":1,"698":1,"699":1,"701":2,"714":1,"715":1,"717":1,"723":1,"729":1,"748":1,"749":1,"750":1,"752":1,"753":1,"754":2,"755":1,"761":4,"766":1,"768":3,"776":1,"785":1,"791":1,"805":1,"831":1,"863":1,"893":1,"928":1,"962":1,"996":1,"1030":1,"1064":1,"1098":1,"1132":1,"1166":1,"1197":1,"1199":1,"1203":1,"1204":1,"1205":2,"1208":1,"1219":1,"1248":1,"1251":1,"1252":2,"1269":1,"1288":1,"1291":1,"1296":1,"1311":1,"1315":1,"1320":1,"1332":1,"1336":1,"1339":1,"1342":1,"1345":1,"1356":1,"1365":1,"1378":1,"1399":1,"1409":2,"1417":2,"1419":1,"1420":1,"1430":1,"1438":1,"1443":1,"1444":1,"1446":3,"1452":1,"1478":1,"1480":1,"1481":1,"1492":1,"1493":1,"1498":1,"1499":1,"1517":2,"1518":1,"1527":1,"1528":2,"1545":1,"1549":1,"1558":1,"1593":2,"1601":1,"1605":1,"1612":1,"1617":1,"1634":1,"1638":2,"1655":1,"1665":1,"1666":1,"1667":1,"1669":1,"1673":1,"1681":1,"1697":1,"1699":1,"1717":1,"1720":1,"1721":1,"1726":1,"1738":3,"1747":1,"1777":1,"1779":2,"1781":1,"1784":1,"1785":2,"1788":1,"1794":2,"1795":1,"1801":1,"1802":1,"1835":1,"1839":1,"1845":2,"1850":1,"1851":1,"1852":2,"1855":1,"1865":1,"1867":1,"1925":2,"1936":2,"1953":1,"1962":1,"1966":1,"1967":1,"1968":2,"1978":1,"1980":1,"1981":1,"1985":1,"1986":1,"1987":1,"1999":1,"2044":1,"2054":1,"2059":1,"2063":1,"2069":1,"2070":1,"2077":1,"2081":2,"2088":1,"2090":1,"2091":2,"2094":1,"2107":1,"2109":1,"2164":1,"2188":2,"2189":2,"2208":2,"2218":2,"2221":1,"2222":1,"2232":1,"2234":1,"2236":1,"2238":1,"2255":1,"2260":2,"2261":1,"2267":1,"2272":1,"2276":2,"2278":1,"2280":1,"2291":2,"2293":1,"2294":1,"2298":1,"2300":1,"2305":2,"2309":1,"2317":4,"2329":2,"2330":1,"2331":1,"2353":1,"2375":2,"2379":1,"2387":1,"2390":1,"2394":1,"2396":1,"2397":1,"2400":3,"2405":1,"2418":1,"2423":1,"2429":2,"2435":1,"2441":1,"2446":1,"2449":1,"2450":1,"2453":3,"2458":1,"2466":2,"2472":1,"2477":1,"2483":1,"2484":1,"2486":2,"2488":1,"2502":1,"2504":1,"2505":1,"2506":1,"2508":1,"2539":2,"2556":1,"2559":1,"2560":1,"2563":1,"2564":1,"2565":1,"2568":1,"2569":2,"2579":1,"2589":2,"2594":1,"2598":3,"2628":1,"2632":1,"2640":2,"2652":1,"2653":3,"2658":1,"2663":1,"2664":1,"2678":1,"2679":2,"2685":1,"2688":1,"2690":1,"2691":1,"2700":1,"2705":2,"2706":1,"2707":2,"2709":1,"2710":1,"2711":4,"2713":1,"2715":2,"2725":1,"2726":3,"2728":8,"2729":2,"2738":1,"2753":1,"2755":3,"2756":2,"2757":5,"2758":2,"2761":1,"2765":1,"2767":2,"2772":1,"2774":1,"2775":1,"2776":1,"2777":1,"2779":1,"2789":2,"2791":1,"2795":2,"2800":1,"2805":1,"2810":1,"2812":1,"2814":1,"2818":1,"2819":1,"2821":1,"2822":1,"2823":1,"2824":1,"2850":1,"2865":1,"2869":1,"2871":2,"2876":1,"2878":2,"2886":1,"2895":1,"2899":1,"2901":1,"2920":1,"2921":1,"2923":1,"2926":5,"2929":1,"2931":1,"2938":1,"2940":1,"2949":1}}],["anding",{"2":{"1378":1}}],["andrebrait",{"2":{"114":2,"175":1}}],["andc",{"2":{"39":1}}],["and",{"0":{"12":1,"25":2,"39":1,"40":1,"41":1,"58":1,"63":1,"64":1,"65":1,"69":1,"70":1,"74":1,"75":1,"76":1,"77":1,"87":1,"93":1,"94":1,"95":1,"113":1,"133":1,"140":1,"174":1,"229":1,"233":1,"273":1,"276":1,"284":1,"316":1,"495":1,"501":2,"502":1,"527":1,"537":1,"621":1,"649":1,"782":1,"1319":1,"1320":1,"1340":1,"1343":1,"1360":1,"1362":1,"1375":1,"1394":1,"1397":1,"1422":1,"1448":1,"1457":1,"1519":1,"1609":1,"1612":1,"1661":1,"1772":1,"1773":1,"1941":1,"1983":1,"1988":1,"1989":1,"2008":1,"2038":1,"2050":1,"2072":1,"2183":1,"2184":1,"2185":1,"2190":1,"2196":1,"2279":1,"2318":1,"2319":1,"2330":1,"2388":1,"2438":1,"2460":1,"2467":1,"2510":1,"2557":1,"2559":1,"2562":1,"2577":1,"2632":1,"2647":1,"2657":1,"2658":1,"2696":1,"2745":1,"2747":1,"2797":1,"2943":1},"1":{"26":2,"88":1,"496":1,"497":1,"498":1,"499":1,"500":1,"502":2,"503":2,"504":2,"505":2,"506":2,"783":1,"784":1,"1320":1,"1423":1,"1662":1,"1663":1,"1664":1,"2073":1,"2074":1,"2075":1,"2184":1,"2185":1,"2186":1,"2187":1,"2197":1,"2198":1,"2199":1,"2200":1,"2201":1,"2202":1,"2203":1,"2204":1,"2280":1,"2389":1,"2390":1,"2391":1,"2392":1,"2393":1,"2394":1,"2395":1,"2396":1,"2397":1,"2398":1,"2399":1,"2400":1,"2401":1,"2402":1,"2403":1,"2404":1,"2405":1,"2406":1,"2407":1,"2408":1,"2409":1,"2410":1,"2468":1,"2469":1,"2470":1,"2471":1,"2472":1,"2473":1,"2474":1,"2475":1,"2558":1,"2559":1,"2563":1,"2564":1,"2648":1,"2649":1,"2658":1,"2659":1,"2660":1,"2697":1,"2698":1,"2699":1,"2798":1,"2799":1,"2800":1},"2":{"1":1,"2":2,"3":4,"4":1,"5":2,"6":1,"7":3,"8":1,"11":2,"12":1,"14":2,"15":2,"18":2,"20":1,"21":3,"22":5,"23":2,"24":2,"25":1,"26":1,"27":1,"28":1,"33":1,"35":4,"39":12,"40":7,"43":2,"44":1,"47":2,"48":4,"49":1,"50":1,"51":1,"57":1,"58":1,"63":1,"64":2,"65":3,"67":1,"69":1,"70":19,"72":1,"73":3,"74":2,"75":2,"76":1,"77":1,"84":1,"86":2,"87":2,"90":1,"92":1,"93":5,"94":3,"99":1,"103":1,"107":2,"108":1,"110":2,"113":4,"114":26,"116":1,"118":1,"119":1,"120":2,"124":3,"126":2,"128":1,"130":2,"132":2,"133":1,"134":9,"140":1,"149":10,"152":2,"153":6,"157":2,"160":6,"163":1,"166":3,"169":1,"170":1,"171":1,"172":4,"173":1,"174":1,"175":23,"178":3,"184":1,"187":1,"188":2,"189":2,"190":5,"191":20,"194":6,"195":2,"196":2,"198":6,"199":11,"201":3,"202":1,"206":1,"208":2,"209":1,"210":12,"212":2,"213":2,"214":2,"217":2,"221":2,"222":53,"224":1,"228":6,"229":2,"230":1,"231":3,"232":3,"233":3,"234":1,"235":3,"236":14,"240":2,"244":1,"245":2,"249":14,"251":2,"255":1,"256":1,"257":1,"258":1,"259":4,"262":1,"263":4,"265":2,"266":6,"268":1,"271":1,"273":2,"276":2,"277":6,"283":4,"284":1,"285":4,"288":4,"289":1,"293":1,"294":4,"297":1,"298":2,"304":1,"305":1,"307":2,"308":6,"312":5,"316":1,"317":3,"320":1,"328":3,"339":1,"344":4,"346":1,"347":1,"350":1,"353":1,"366":5,"367":2,"369":1,"373":1,"378":2,"379":1,"381":4,"382":1,"384":3,"386":3,"390":1,"393":11,"394":1,"396":4,"397":3,"398":2,"402":1,"403":7,"411":1,"412":1,"414":2,"416":1,"417":3,"419":2,"425":4,"426":1,"429":2,"430":3,"433":8,"434":2,"435":4,"437":2,"440":4,"442":1,"443":1,"444":1,"445":1,"447":1,"448":1,"449":1,"450":1,"452":1,"453":1,"454":1,"455":1,"456":1,"460":3,"461":3,"469":1,"472":3,"473":1,"483":2,"487":2,"488":1,"489":4,"490":4,"491":2,"494":2,"495":3,"500":1,"501":3,"505":2,"506":1,"507":1,"512":5,"513":4,"514":1,"516":5,"519":2,"520":1,"521":2,"524":1,"525":1,"527":1,"529":2,"530":1,"531":1,"533":1,"534":1,"538":5,"539":1,"540":5,"542":3,"543":3,"544":1,"545":1,"546":1,"554":3,"555":2,"557":2,"558":2,"560":2,"561":8,"562":1,"564":11,"565":1,"568":3,"569":2,"570":2,"571":1,"572":1,"574":5,"575":1,"578":2,"580":1,"581":3,"584":1,"586":2,"588":1,"592":1,"593":2,"596":2,"599":2,"603":5,"604":1,"605":3,"607":3,"609":3,"610":1,"612":2,"613":5,"614":1,"615":2,"618":1,"621":1,"622":2,"623":1,"624":1,"625":3,"626":2,"629":2,"630":2,"631":1,"635":1,"637":1,"639":4,"643":1,"646":1,"647":4,"648":2,"650":2,"651":5,"656":2,"657":1,"665":9,"666":1,"668":4,"669":4,"672":3,"673":1,"674":1,"675":4,"676":1,"677":2,"681":4,"682":1,"683":1,"684":4,"685":4,"686":5,"687":3,"688":5,"689":5,"690":2,"693":1,"695":4,"696":1,"699":4,"701":1,"702":1,"703":1,"714":1,"716":4,"717":3,"719":3,"720":1,"721":3,"722":1,"723":3,"725":1,"728":1,"729":1,"745":1,"746":4,"749":1,"750":1,"751":1,"753":2,"754":8,"755":2,"756":2,"757":3,"761":1,"766":2,"767":2,"782":1,"801":1,"804":1,"805":3,"827":1,"830":1,"831":3,"856":1,"860":3,"862":1,"863":3,"888":1,"892":1,"893":3,"920":1,"922":1,"923":1,"925":3,"927":1,"928":3,"955":1,"957":1,"959":3,"961":1,"962":3,"989":1,"993":3,"995":1,"996":3,"1023":1,"1027":3,"1029":1,"1030":3,"1057":1,"1061":3,"1063":1,"1064":3,"1091":1,"1093":1,"1094":1,"1095":3,"1097":1,"1098":3,"1125":1,"1127":1,"1128":1,"1129":3,"1131":1,"1132":3,"1159":1,"1161":1,"1163":3,"1165":1,"1166":3,"1192":4,"1193":2,"1194":1,"1196":2,"1197":1,"1198":1,"1199":1,"1200":6,"1201":2,"1203":1,"1204":1,"1205":4,"1207":1,"1215":1,"1218":1,"1219":3,"1247":2,"1265":2,"1266":1,"1268":1,"1272":2,"1283":3,"1284":1,"1286":2,"1287":1,"1288":1,"1290":1,"1292":3,"1293":2,"1294":4,"1295":2,"1297":2,"1298":2,"1299":2,"1300":2,"1303":1,"1312":1,"1313":1,"1314":1,"1315":1,"1317":1,"1318":2,"1320":2,"1326":1,"1329":1,"1330":1,"1332":2,"1336":1,"1337":1,"1339":1,"1340":2,"1341":1,"1342":2,"1343":9,"1346":3,"1347":1,"1348":5,"1349":1,"1350":2,"1351":2,"1353":1,"1354":3,"1356":1,"1357":1,"1361":1,"1362":1,"1364":1,"1365":2,"1366":2,"1368":1,"1369":1,"1371":2,"1372":1,"1376":2,"1377":48,"1378":8,"1381":4,"1388":1,"1392":2,"1393":1,"1395":1,"1396":3,"1407":1,"1409":3,"1410":11,"1412":1,"1413":2,"1415":2,"1416":6,"1417":18,"1418":3,"1419":2,"1420":2,"1421":1,"1422":7,"1423":7,"1425":2,"1426":1,"1427":4,"1428":16,"1431":2,"1433":4,"1434":2,"1436":1,"1438":1,"1439":2,"1440":2,"1441":1,"1443":1,"1446":4,"1447":3,"1448":6,"1450":1,"1451":2,"1453":2,"1455":2,"1457":1,"1458":1,"1462":1,"1463":1,"1464":2,"1465":4,"1466":2,"1467":3,"1470":3,"1471":6,"1472":10,"1473":1,"1474":2,"1475":2,"1477":1,"1478":6,"1480":2,"1481":1,"1483":3,"1484":2,"1485":4,"1489":2,"1490":2,"1491":3,"1492":5,"1493":4,"1496":2,"1498":2,"1499":2,"1500":1,"1503":3,"1504":1,"1506":1,"1510":1,"1515":1,"1516":1,"1517":2,"1518":4,"1520":1,"1521":1,"1522":5,"1523":1,"1525":3,"1526":1,"1527":6,"1528":3,"1529":1,"1532":3,"1533":3,"1534":4,"1535":5,"1537":1,"1538":8,"1539":1,"1540":1,"1541":2,"1545":1,"1546":3,"1549":1,"1550":1,"1558":1,"1589":3,"1593":4,"1594":3,"1595":1,"1597":4,"1600":3,"1602":7,"1603":1,"1605":4,"1606":2,"1609":1,"1610":1,"1612":5,"1613":2,"1614":1,"1616":1,"1617":2,"1618":3,"1619":2,"1620":1,"1621":1,"1623":1,"1626":1,"1627":3,"1628":2,"1630":3,"1633":1,"1634":2,"1635":1,"1636":1,"1638":2,"1639":2,"1641":3,"1647":1,"1648":1,"1649":1,"1650":1,"1651":1,"1652":1,"1653":2,"1655":2,"1659":1,"1660":1,"1661":6,"1663":1,"1664":2,"1665":1,"1666":1,"1667":2,"1668":3,"1669":1,"1670":1,"1671":1,"1673":1,"1676":1,"1678":1,"1681":6,"1682":2,"1684":1,"1685":3,"1686":1,"1690":4,"1695":1,"1702":1,"1708":1,"1720":1,"1722":1,"1723":1,"1729":1,"1730":2,"1736":1,"1738":1,"1740":2,"1742":6,"1743":1,"1751":1,"1753":1,"1755":1,"1762":2,"1763":1,"1765":1,"1766":2,"1770":2,"1773":1,"1774":2,"1776":6,"1777":2,"1779":3,"1781":7,"1782":1,"1784":4,"1785":2,"1786":4,"1787":4,"1788":5,"1789":1,"1790":1,"1791":1,"1793":3,"1795":2,"1798":1,"1802":1,"1803":1,"1812":1,"1838":4,"1843":1,"1846":4,"1849":4,"1850":5,"1905":1,"1919":4,"1920":1,"1923":1,"1926":1,"1930":1,"1931":1,"1934":3,"1935":6,"1936":3,"1937":4,"1938":4,"1939":6,"1941":2,"1945":2,"1946":2,"1947":2,"1948":1,"1952":2,"1953":8,"1954":9,"1956":2,"1957":1,"1961":3,"1962":10,"1964":3,"1966":1,"1968":1,"1969":2,"1970":1,"1971":2,"1973":2,"1974":2,"1976":1,"1977":1,"1978":2,"1981":1,"1983":4,"1984":1,"1985":6,"1986":7,"1987":4,"1988":5,"1989":6,"1990":5,"1992":2,"1993":2,"1994":7,"1995":1,"1996":2,"1997":1,"1999":4,"2000":2,"2001":1,"2002":1,"2004":1,"2006":2,"2008":2,"2009":1,"2011":1,"2013":1,"2014":2,"2015":1,"2016":1,"2025":1,"2027":1,"2037":2,"2038":2,"2041":2,"2042":2,"2043":1,"2044":1,"2047":1,"2048":1,"2050":1,"2053":1,"2054":1,"2056":2,"2057":7,"2058":1,"2059":7,"2065":1,"2066":1,"2068":1,"2069":5,"2070":1,"2071":2,"2072":3,"2073":1,"2075":2,"2076":1,"2077":2,"2079":3,"2082":4,"2085":11,"2087":1,"2088":5,"2096":1,"2097":1,"2159":1,"2161":1,"2163":1,"2165":1,"2179":2,"2180":2,"2181":1,"2183":1,"2184":1,"2185":1,"2186":1,"2189":5,"2190":1,"2191":2,"2198":19,"2199":1,"2200":2,"2201":2,"2202":2,"2207":2,"2208":1,"2210":1,"2211":1,"2212":1,"2216":1,"2218":1,"2225":1,"2226":1,"2246":1,"2251":1,"2254":1,"2255":3,"2256":3,"2259":6,"2261":6,"2262":1,"2263":1,"2264":4,"2265":5,"2266":1,"2267":5,"2269":2,"2271":1,"2272":2,"2273":5,"2274":2,"2275":4,"2276":3,"2277":3,"2278":7,"2279":1,"2280":4,"2281":1,"2284":1,"2286":2,"2287":1,"2289":1,"2290":7,"2291":5,"2292":4,"2293":1,"2294":5,"2295":1,"2296":3,"2297":2,"2298":4,"2300":3,"2302":1,"2303":2,"2305":1,"2308":3,"2309":11,"2310":8,"2312":1,"2317":11,"2318":7,"2319":6,"2320":3,"2323":2,"2325":1,"2326":1,"2327":1,"2329":4,"2330":10,"2331":11,"2344":1,"2345":1,"2346":1,"2365":2,"2369":1,"2375":1,"2377":3,"2378":2,"2379":3,"2381":2,"2382":2,"2384":4,"2386":2,"2387":11,"2388":4,"2389":1,"2390":5,"2391":2,"2392":3,"2393":2,"2394":2,"2395":1,"2396":2,"2397":6,"2398":1,"2399":2,"2400":2,"2401":2,"2402":2,"2403":1,"2404":1,"2405":2,"2406":1,"2407":1,"2408":1,"2409":1,"2410":1,"2414":2,"2415":2,"2416":2,"2417":6,"2418":18,"2419":1,"2421":2,"2422":3,"2423":5,"2424":2,"2425":5,"2426":1,"2427":8,"2428":12,"2429":6,"2430":2,"2431":3,"2432":3,"2433":3,"2434":9,"2435":1,"2436":1,"2439":4,"2441":2,"2447":3,"2448":1,"2449":3,"2450":4,"2451":1,"2452":1,"2453":5,"2454":2,"2455":3,"2456":2,"2457":1,"2458":3,"2459":1,"2460":3,"2461":2,"2463":2,"2464":1,"2466":12,"2467":1,"2468":1,"2469":2,"2471":1,"2474":1,"2477":2,"2479":2,"2481":2,"2482":3,"2483":2,"2486":1,"2490":3,"2496":1,"2497":1,"2498":2,"2499":3,"2500":1,"2501":3,"2502":1,"2503":4,"2504":2,"2505":2,"2506":2,"2508":5,"2509":1,"2510":36,"2512":13,"2513":1,"2515":2,"2517":2,"2518":10,"2520":26,"2522":61,"2528":2,"2535":1,"2538":25,"2541":50,"2542":20,"2547":20,"2553":1,"2554":1,"2557":2,"2558":2,"2559":1,"2561":7,"2562":4,"2563":2,"2564":1,"2566":4,"2567":5,"2568":2,"2569":5,"2570":1,"2571":2,"2572":25,"2573":7,"2574":1,"2575":1,"2576":2,"2577":1,"2579":3,"2580":3,"2581":1,"2582":2,"2583":1,"2585":3,"2587":2,"2590":3,"2591":1,"2592":2,"2593":1,"2594":1,"2595":1,"2596":1,"2597":2,"2598":2,"2599":4,"2600":1,"2601":2,"2605":1,"2606":2,"2607":1,"2608":1,"2609":1,"2610":4,"2612":10,"2613":1,"2614":1,"2616":5,"2617":2,"2618":1,"2619":4,"2620":1,"2622":1,"2626":1,"2628":10,"2632":3,"2633":1,"2634":16,"2635":1,"2637":2,"2638":2,"2639":4,"2640":6,"2650":8,"2651":25,"2653":2,"2657":1,"2658":3,"2659":2,"2662":2,"2663":3,"2664":1,"2665":1,"2667":2,"2668":1,"2669":4,"2670":3,"2671":3,"2673":4,"2674":10,"2675":2,"2677":3,"2678":1,"2679":6,"2680":5,"2683":1,"2684":3,"2685":2,"2686":6,"2687":1,"2690":2,"2691":2,"2694":1,"2696":2,"2701":1,"2702":3,"2703":2,"2704":4,"2705":1,"2707":1,"2709":1,"2710":3,"2711":1,"2714":1,"2716":1,"2717":5,"2718":1,"2719":2,"2720":4,"2721":3,"2724":1,"2726":10,"2727":1,"2728":23,"2729":3,"2730":1,"2731":4,"2732":1,"2733":2,"2734":1,"2735":1,"2736":1,"2739":1,"2741":1,"2751":4,"2753":1,"2754":2,"2755":6,"2756":11,"2757":20,"2758":3,"2761":1,"2762":1,"2764":1,"2765":4,"2766":1,"2767":2,"2770":1,"2771":1,"2772":6,"2774":1,"2776":1,"2782":2,"2784":4,"2786":2,"2787":1,"2790":3,"2791":1,"2794":4,"2795":8,"2796":3,"2799":1,"2802":1,"2805":1,"2813":1,"2817":1,"2818":1,"2823":1,"2828":1,"2831":1,"2832":1,"2834":1,"2836":1,"2837":1,"2839":1,"2842":3,"2845":1,"2850":1,"2851":4,"2854":2,"2857":1,"2864":2,"2869":4,"2870":1,"2872":2,"2880":2,"2883":1,"2884":1,"2886":2,"2888":1,"2889":6,"2890":1,"2891":1,"2893":1,"2894":1,"2895":1,"2897":1,"2901":3,"2902":4,"2903":2,"2904":1,"2905":1,"2906":1,"2907":1,"2908":1,"2909":3,"2910":3,"2911":3,"2912":14,"2913":5,"2914":5,"2915":1,"2919":1,"2920":12,"2921":4,"2922":3,"2923":2,"2924":3,"2925":3,"2926":6,"2927":3,"2929":7,"2931":3,"2932":1,"2935":3,"2936":3,"2937":2,"2938":1,"2939":1,"2940":2,"2941":1,"2942":2,"2943":1,"2944":4,"2945":3,"2948":2,"2949":3,"2950":5}}],["anymore",{"2":{"1605":1}}],["anything",{"2":{"414":1,"633":1,"719":1,"720":1,"1338":1,"1423":1,"1440":1,"1470":1,"1491":1,"1988":1,"2069":1,"2293":1,"2418":1,"2471":1,"2503":1,"2561":1,"2573":1,"2640":1,"2674":1,"2677":1,"2682":1,"2687":1,"2729":1,"2847":1,"2922":1}}],["anywhere",{"2":{"212":1,"389":1,"2317":1,"2331":2,"2431":1}}],["anyways",{"2":{"1208":1}}],["anyway",{"2":{"203":1,"564":1,"2567":2,"2568":1}}],["anyone",{"2":{"123":1,"1440":1,"1537":1,"2382":1}}],["any",{"0":{"592":1,"630":1},"1":{"631":1,"632":1},"2":{"0":1,"5":1,"9":1,"11":1,"12":1,"18":1,"26":1,"29":1,"33":1,"36":1,"39":1,"42":1,"52":1,"70":1,"73":1,"99":1,"103":1,"124":1,"126":1,"131":1,"142":1,"152":1,"166":2,"188":1,"190":1,"194":1,"203":1,"245":2,"257":1,"258":1,"259":2,"265":2,"268":1,"275":3,"276":2,"307":1,"320":1,"327":1,"352":1,"373":1,"377":1,"383":2,"399":3,"412":1,"429":1,"435":1,"444":1,"446":1,"447":1,"454":1,"474":1,"512":1,"514":1,"520":1,"525":1,"539":1,"544":1,"545":1,"547":1,"574":1,"592":1,"600":1,"607":3,"609":3,"615":1,"626":1,"630":1,"647":1,"651":1,"668":1,"681":2,"683":1,"686":1,"688":1,"695":1,"716":2,"745":1,"772":1,"1205":1,"1213":1,"1248":1,"1250":1,"1271":1,"1292":1,"1313":1,"1317":1,"1319":2,"1320":1,"1342":1,"1370":1,"1378":4,"1407":2,"1410":2,"1413":5,"1417":3,"1425":1,"1430":1,"1434":1,"1446":2,"1466":1,"1467":2,"1470":1,"1472":4,"1481":1,"1485":1,"1488":1,"1501":1,"1517":1,"1518":1,"1522":1,"1527":2,"1533":1,"1544":1,"1546":1,"1553":1,"1554":1,"1589":1,"1593":1,"1594":1,"1610":1,"1612":1,"1620":1,"1671":1,"1681":1,"1704":1,"1742":1,"1765":1,"1770":1,"1782":1,"1784":2,"1787":1,"1795":1,"1847":2,"1850":1,"1960":1,"1962":1,"1985":1,"1999":2,"2008":1,"2009":1,"2011":2,"2014":2,"2041":2,"2042":1,"2044":1,"2065":1,"2069":2,"2083":2,"2088":1,"2188":1,"2189":1,"2210":1,"2211":1,"2220":1,"2256":1,"2260":1,"2261":1,"2264":1,"2277":2,"2278":1,"2291":1,"2292":2,"2293":1,"2300":1,"2309":1,"2317":2,"2318":1,"2319":2,"2324":1,"2331":1,"2381":1,"2382":1,"2384":1,"2389":1,"2392":2,"2394":1,"2395":1,"2396":2,"2397":1,"2399":1,"2401":1,"2402":1,"2403":1,"2404":1,"2406":3,"2408":3,"2410":3,"2416":1,"2417":1,"2419":1,"2429":1,"2431":1,"2458":1,"2462":1,"2466":1,"2502":1,"2520":1,"2554":1,"2561":1,"2566":1,"2568":5,"2569":1,"2570":3,"2580":1,"2585":1,"2586":1,"2591":1,"2597":1,"2603":1,"2622":1,"2626":1,"2634":1,"2637":1,"2638":1,"2639":1,"2640":2,"2652":4,"2671":1,"2678":1,"2702":1,"2703":1,"2704":1,"2705":1,"2725":1,"2728":4,"2729":2,"2730":1,"2731":1,"2732":2,"2733":1,"2734":1,"2741":1,"2747":1,"2748":1,"2749":1,"2754":2,"2755":5,"2757":8,"2770":1,"2784":1,"2833":1,"2846":1,"2894":1,"2896":1,"2903":1,"2919":1,"2927":1,"2931":2,"2935":2,"2941":1,"2942":1,"2944":2,"2946":1,"2947":1,"2950":1}}],["a",{"0":{"6":1,"11":1,"141":1,"380":1,"423":1,"604":1,"607":1,"627":1,"629":1,"658":1,"659":1,"669":1,"1202":1,"1331":1,"1339":1,"1341":1,"1360":1,"1433":1,"1434":1,"1435":1,"1468":1,"1496":1,"1613":1,"1627":1,"1628":1,"1629":1,"1767":1,"1795":1,"1796":1,"2012":1,"2073":1,"2076":1,"2077":1,"2307":1,"2315":1,"2419":1,"2426":1,"2438":1,"2466":1,"2469":1,"2504":1,"2560":1,"2584":1,"2594":1,"2603":1,"2606":1,"2607":1,"2711":1,"2712":1,"2713":1},"1":{"670":1,"671":1,"1203":1,"1204":1,"1205":1,"1342":1,"1434":1,"1435":1,"1436":2,"1437":1,"1438":1,"1439":1,"1497":1,"1498":1,"1499":1,"1500":1,"1501":1,"1502":1,"1503":1,"1504":1,"1505":1,"1506":1,"1507":1,"1508":1,"1509":1,"1510":1,"1511":1,"1512":1,"1513":1,"1514":1,"1515":1,"1516":1,"1517":1,"1518":1,"1519":1,"1520":1,"1521":1,"1522":1,"1523":1,"1630":1,"1631":1,"1632":1,"1633":1,"1634":1,"1635":1,"1636":1,"1637":1,"1638":1,"1797":1,"1798":1,"1799":1,"1800":1,"1801":1,"1802":1,"1803":1,"1804":1,"1805":1,"1806":1,"1807":1,"1808":1,"1809":1,"1810":1,"1811":1,"1812":1,"1813":1,"1814":1,"1815":1,"1816":1,"1817":1,"1818":1,"1819":1,"1820":1,"1821":1,"1822":1,"1823":1,"1824":1,"1825":1,"1826":1,"1827":1,"1828":1,"1829":1,"1830":1,"1831":1,"1832":1,"1833":1,"1834":1,"2308":1,"2309":1,"2310":1,"2311":1,"2312":1,"2313":1,"2314":1,"2315":1,"2316":1,"2317":1,"2318":1,"2319":1,"2561":1,"2562":1,"2563":1,"2564":1},"2":{"0":5,"1":1,"3":1,"6":2,"8":2,"9":4,"11":1,"13":1,"14":1,"15":2,"18":3,"29":4,"39":11,"40":2,"42":4,"43":3,"44":1,"47":1,"48":1,"49":2,"51":2,"52":4,"62":1,"65":3,"70":4,"73":1,"76":1,"80":1,"82":1,"83":1,"84":1,"86":1,"89":1,"90":1,"94":1,"95":1,"98":4,"99":1,"100":4,"107":1,"110":1,"112":2,"114":8,"116":1,"118":1,"120":1,"125":2,"130":2,"131":2,"132":3,"134":3,"138":3,"145":1,"149":9,"152":2,"153":3,"154":1,"156":2,"157":1,"160":2,"163":2,"166":5,"167":1,"169":2,"171":1,"173":3,"174":1,"175":7,"178":3,"179":2,"181":2,"184":2,"187":3,"188":4,"189":4,"190":1,"191":3,"194":10,"195":2,"196":3,"198":3,"199":1,"201":1,"206":1,"210":7,"212":1,"213":1,"214":1,"220":1,"222":11,"224":2,"228":3,"229":1,"230":1,"231":2,"233":1,"234":1,"236":1,"238":2,"246":2,"247":2,"248":1,"249":3,"251":1,"254":1,"255":1,"262":2,"263":2,"265":2,"266":6,"272":1,"273":2,"279":2,"285":1,"288":4,"289":1,"293":2,"294":4,"297":3,"303":1,"305":2,"306":1,"307":1,"312":6,"314":2,"315":1,"317":1,"323":2,"328":2,"332":1,"339":1,"344":7,"351":1,"352":4,"353":1,"354":2,"361":2,"364":1,"365":1,"366":1,"367":6,"368":2,"369":2,"376":1,"379":5,"380":2,"381":4,"382":4,"383":4,"386":3,"393":2,"394":1,"396":1,"399":4,"402":1,"403":12,"409":1,"411":4,"414":9,"415":2,"416":2,"417":3,"419":1,"420":2,"421":1,"422":1,"425":1,"429":7,"430":3,"432":1,"433":4,"436":2,"437":6,"438":2,"439":2,"440":3,"442":2,"444":1,"445":3,"446":1,"447":3,"448":2,"449":2,"450":3,"452":6,"453":6,"455":1,"459":2,"460":1,"462":1,"463":1,"466":1,"467":1,"469":1,"472":4,"474":2,"477":1,"482":1,"483":1,"487":2,"489":5,"491":1,"492":3,"494":1,"495":2,"500":2,"504":1,"505":1,"506":2,"510":1,"511":1,"512":5,"513":2,"514":2,"515":1,"516":5,"518":1,"519":2,"521":3,"524":1,"525":4,"526":3,"527":5,"528":2,"529":1,"530":1,"532":1,"533":1,"537":1,"538":3,"540":4,"542":2,"543":1,"544":1,"552":1,"555":1,"556":1,"559":1,"560":1,"561":3,"563":1,"564":6,"565":3,"567":1,"568":2,"570":2,"571":1,"572":6,"574":4,"575":5,"576":1,"578":2,"579":2,"580":2,"581":1,"582":1,"585":2,"587":2,"588":4,"589":4,"591":2,"593":2,"596":3,"597":1,"599":4,"600":1,"605":1,"607":11,"609":4,"610":1,"611":1,"612":7,"613":9,"614":2,"617":1,"622":1,"623":1,"624":2,"625":1,"626":3,"627":4,"628":2,"629":3,"630":3,"631":3,"632":1,"643":1,"644":1,"645":2,"647":1,"648":2,"651":4,"655":2,"656":3,"657":6,"658":2,"659":2,"660":1,"661":2,"665":11,"666":3,"667":1,"668":3,"669":3,"670":1,"671":6,"672":2,"673":3,"674":1,"675":1,"676":1,"680":2,"681":6,"683":2,"684":1,"685":4,"686":4,"687":2,"688":2,"689":2,"690":3,"695":1,"696":2,"698":2,"699":3,"701":3,"707":1,"714":1,"715":1,"717":1,"718":1,"719":4,"720":3,"721":2,"722":1,"724":1,"731":1,"735":1,"744":2,"745":1,"746":1,"749":2,"750":1,"753":2,"754":4,"755":7,"756":2,"759":1,"760":1,"764":1,"765":1,"766":4,"768":2,"772":1,"774":2,"777":2,"780":3,"783":4,"785":1,"786":2,"788":2,"789":2,"791":1,"792":3,"794":2,"795":3,"797":5,"798":1,"807":1,"812":1,"816":1,"820":1,"822":1,"826":1,"833":1,"839":1,"843":1,"847":1,"849":1,"855":1,"865":1,"871":1,"875":1,"879":1,"881":1,"887":1,"895":1,"903":1,"907":1,"911":1,"913":1,"919":1,"930":1,"938":1,"942":1,"946":1,"948":1,"954":1,"964":1,"972":1,"976":1,"980":1,"982":1,"988":1,"998":1,"1006":1,"1010":1,"1014":1,"1016":1,"1022":1,"1032":1,"1040":1,"1044":1,"1048":1,"1050":1,"1056":1,"1066":1,"1074":1,"1078":1,"1082":1,"1084":1,"1090":1,"1100":1,"1108":1,"1112":1,"1116":1,"1118":1,"1124":1,"1134":1,"1142":1,"1146":1,"1150":1,"1152":1,"1158":1,"1168":1,"1176":1,"1180":1,"1184":1,"1186":1,"1192":1,"1193":2,"1194":1,"1196":1,"1197":2,"1198":1,"1200":3,"1201":1,"1203":1,"1204":1,"1205":2,"1207":1,"1208":1,"1213":1,"1214":2,"1221":1,"1229":1,"1233":1,"1237":1,"1239":1,"1245":1,"1246":1,"1248":4,"1254":1,"1257":1,"1260":1,"1263":2,"1266":1,"1267":1,"1268":6,"1269":1,"1273":1,"1275":1,"1278":1,"1280":2,"1283":5,"1285":3,"1286":6,"1287":1,"1288":2,"1291":1,"1295":2,"1297":4,"1298":2,"1299":1,"1301":1,"1303":2,"1306":1,"1311":10,"1312":1,"1313":4,"1315":3,"1319":2,"1325":1,"1327":5,"1328":1,"1329":1,"1330":2,"1332":1,"1333":2,"1335":2,"1336":2,"1337":2,"1338":1,"1339":1,"1341":1,"1342":1,"1343":8,"1349":1,"1350":2,"1351":1,"1356":2,"1362":1,"1365":3,"1368":1,"1371":1,"1373":2,"1377":6,"1378":9,"1381":2,"1382":2,"1388":1,"1390":1,"1391":2,"1398":2,"1399":1,"1403":1,"1405":1,"1406":1,"1407":3,"1409":4,"1410":6,"1413":9,"1414":1,"1415":1,"1416":2,"1417":7,"1418":1,"1419":2,"1421":3,"1422":5,"1423":5,"1424":1,"1425":3,"1427":7,"1428":3,"1431":4,"1433":5,"1434":3,"1435":1,"1436":2,"1439":2,"1440":4,"1441":2,"1442":3,"1444":5,"1446":8,"1447":5,"1448":11,"1449":2,"1450":1,"1451":3,"1452":1,"1455":1,"1456":1,"1463":2,"1464":1,"1465":1,"1467":5,"1468":2,"1469":1,"1470":5,"1471":3,"1472":6,"1473":2,"1474":2,"1475":1,"1477":3,"1480":2,"1481":2,"1484":6,"1485":7,"1486":2,"1487":1,"1488":2,"1489":1,"1490":6,"1491":1,"1492":6,"1493":8,"1496":2,"1497":1,"1498":7,"1499":4,"1501":2,"1502":1,"1503":10,"1508":1,"1510":2,"1513":2,"1514":1,"1515":1,"1516":1,"1517":1,"1518":7,"1519":1,"1523":6,"1524":1,"1525":12,"1526":3,"1527":4,"1528":7,"1529":3,"1532":6,"1533":3,"1534":2,"1535":3,"1538":23,"1539":2,"1541":4,"1545":2,"1546":2,"1549":1,"1551":3,"1553":1,"1556":1,"1558":4,"1589":3,"1590":1,"1591":2,"1593":7,"1594":3,"1595":1,"1597":2,"1598":1,"1600":2,"1601":1,"1602":7,"1603":1,"1604":2,"1605":4,"1606":1,"1609":3,"1610":2,"1612":4,"1613":2,"1615":1,"1617":5,"1618":1,"1620":4,"1621":1,"1622":2,"1623":2,"1626":1,"1627":5,"1628":5,"1630":8,"1633":3,"1634":1,"1638":2,"1639":2,"1642":2,"1656":1,"1657":3,"1660":1,"1661":3,"1662":4,"1663":1,"1664":4,"1665":5,"1666":6,"1667":1,"1669":1,"1670":5,"1671":2,"1673":2,"1675":1,"1678":3,"1679":1,"1681":7,"1684":2,"1685":9,"1686":1,"1687":1,"1689":1,"1690":5,"1691":2,"1692":1,"1693":1,"1694":1,"1695":1,"1699":1,"1713":1,"1715":1,"1717":1,"1719":1,"1721":1,"1722":1,"1725":1,"1727":1,"1730":1,"1732":1,"1738":4,"1740":1,"1741":1,"1742":2,"1743":1,"1747":1,"1748":1,"1751":1,"1753":1,"1757":1,"1762":3,"1763":1,"1766":5,"1769":1,"1770":2,"1771":1,"1772":1,"1773":2,"1776":1,"1777":1,"1779":3,"1781":11,"1782":3,"1783":1,"1784":5,"1785":3,"1786":21,"1787":1,"1788":7,"1789":2,"1790":2,"1791":4,"1794":3,"1795":5,"1796":3,"1798":3,"1800":1,"1801":1,"1802":1,"1803":5,"1809":1,"1837":1,"1838":1,"1839":1,"1841":1,"1846":7,"1847":3,"1849":5,"1850":6,"1851":1,"1853":1,"1855":1,"1865":1,"1923":4,"1925":19,"1926":1,"1930":2,"1934":2,"1935":2,"1936":3,"1939":8,"1940":1,"1946":1,"1947":3,"1948":2,"1949":1,"1952":1,"1953":4,"1954":13,"1956":1,"1959":2,"1960":1,"1961":2,"1962":1,"1964":2,"1965":2,"1966":1,"1968":1,"1969":1,"1971":1,"1974":3,"1976":4,"1977":1,"1978":1,"1980":1,"1981":1,"1983":1,"1984":2,"1985":8,"1986":9,"1987":3,"1988":6,"1989":5,"1990":6,"1992":2,"1993":1,"1994":1,"1995":1,"1996":1,"1997":2,"1999":9,"2000":3,"2002":1,"2008":1,"2013":2,"2014":1,"2015":1,"2016":1,"2021":1,"2023":1,"2025":1,"2027":1,"2029":1,"2036":1,"2037":5,"2038":1,"2044":1,"2046":2,"2048":3,"2051":1,"2053":1,"2054":1,"2057":3,"2058":2,"2059":5,"2061":1,"2062":1,"2064":1,"2065":2,"2066":1,"2068":1,"2071":3,"2072":1,"2074":1,"2076":4,"2077":1,"2079":6,"2082":7,"2083":3,"2085":14,"2086":2,"2088":6,"2090":1,"2092":1,"2094":1,"2096":3,"2107":1,"2178":6,"2179":1,"2183":3,"2187":1,"2188":1,"2189":2,"2191":2,"2194":2,"2198":4,"2209":1,"2212":2,"2213":1,"2214":1,"2216":3,"2217":1,"2221":2,"2222":3,"2223":1,"2225":1,"2228":1,"2230":2,"2232":1,"2234":2,"2240":1,"2242":1,"2244":1,"2246":3,"2249":2,"2259":3,"2260":2,"2261":4,"2264":1,"2265":2,"2268":1,"2269":2,"2271":1,"2272":6,"2273":4,"2275":5,"2277":12,"2278":9,"2280":4,"2281":1,"2285":1,"2286":3,"2287":1,"2290":11,"2291":2,"2292":1,"2293":1,"2294":9,"2295":5,"2296":4,"2297":2,"2298":5,"2300":6,"2301":5,"2302":2,"2303":1,"2304":1,"2305":2,"2308":3,"2309":8,"2310":13,"2312":3,"2316":1,"2317":18,"2318":9,"2319":4,"2320":3,"2324":1,"2327":5,"2328":5,"2329":2,"2330":6,"2331":6,"2347":2,"2349":1,"2356":1,"2365":1,"2375":3,"2378":1,"2379":3,"2380":1,"2381":1,"2382":3,"2383":1,"2384":2,"2387":6,"2388":1,"2389":1,"2390":5,"2391":1,"2392":4,"2393":2,"2394":2,"2395":3,"2396":2,"2397":7,"2398":1,"2399":6,"2401":4,"2402":2,"2403":1,"2404":5,"2406":1,"2407":1,"2408":1,"2409":1,"2410":1,"2411":1,"2412":1,"2413":2,"2414":4,"2415":2,"2416":2,"2417":3,"2418":8,"2419":2,"2421":2,"2422":3,"2423":8,"2424":4,"2426":4,"2427":14,"2428":5,"2429":5,"2430":2,"2431":5,"2432":5,"2434":9,"2435":3,"2436":1,"2437":2,"2438":1,"2439":3,"2443":1,"2445":1,"2448":1,"2449":2,"2450":11,"2452":1,"2453":7,"2454":5,"2455":6,"2456":1,"2457":1,"2458":1,"2460":3,"2461":1,"2462":3,"2463":1,"2466":21,"2468":1,"2469":2,"2470":5,"2471":2,"2472":5,"2473":2,"2474":8,"2475":4,"2477":1,"2479":1,"2481":3,"2482":4,"2484":3,"2486":1,"2488":3,"2496":1,"2498":1,"2499":3,"2501":5,"2502":2,"2503":4,"2504":4,"2505":2,"2510":3,"2520":2,"2521":3,"2522":10,"2535":1,"2536":1,"2538":2,"2539":19,"2541":1,"2553":2,"2556":4,"2557":1,"2558":2,"2559":5,"2560":1,"2561":4,"2562":2,"2563":2,"2564":2,"2565":1,"2566":3,"2567":2,"2568":7,"2569":8,"2570":3,"2571":1,"2572":4,"2573":4,"2575":1,"2577":1,"2579":7,"2580":3,"2583":1,"2584":7,"2585":3,"2586":4,"2587":2,"2589":3,"2590":1,"2591":3,"2592":2,"2593":1,"2594":3,"2595":4,"2597":1,"2598":3,"2599":3,"2601":2,"2603":1,"2605":2,"2606":2,"2608":1,"2610":1,"2611":1,"2612":4,"2614":1,"2616":2,"2617":1,"2619":4,"2620":2,"2622":1,"2627":2,"2628":1,"2629":6,"2632":3,"2633":4,"2634":6,"2635":2,"2636":3,"2637":4,"2638":3,"2639":2,"2640":4,"2643":2,"2645":1,"2650":8,"2651":2,"2652":7,"2653":2,"2656":1,"2659":2,"2662":2,"2663":1,"2664":3,"2669":4,"2671":2,"2674":6,"2675":5,"2676":3,"2677":3,"2678":2,"2682":2,"2684":5,"2685":4,"2686":2,"2687":1,"2691":5,"2696":1,"2700":2,"2702":1,"2703":1,"2704":1,"2705":2,"2706":3,"2707":2,"2709":3,"2710":1,"2711":1,"2712":1,"2713":2,"2714":9,"2716":2,"2717":2,"2720":2,"2721":1,"2722":2,"2724":1,"2725":2,"2726":12,"2727":1,"2728":26,"2729":7,"2730":2,"2731":3,"2732":2,"2734":1,"2735":1,"2738":1,"2741":1,"2742":2,"2749":1,"2751":2,"2755":8,"2756":21,"2757":26,"2758":3,"2761":1,"2764":3,"2765":4,"2767":1,"2769":1,"2771":1,"2772":3,"2773":3,"2774":1,"2775":1,"2776":7,"2777":1,"2780":2,"2784":3,"2786":3,"2787":2,"2789":1,"2790":6,"2792":2,"2794":3,"2795":6,"2796":4,"2797":1,"2799":2,"2800":1,"2802":2,"2803":1,"2805":2,"2806":2,"2807":2,"2808":1,"2809":1,"2812":1,"2813":1,"2818":1,"2820":2,"2821":2,"2822":1,"2823":1,"2824":1,"2825":2,"2826":1,"2828":2,"2829":2,"2831":1,"2832":1,"2833":1,"2834":3,"2835":1,"2836":1,"2837":1,"2839":2,"2840":3,"2841":1,"2842":3,"2843":1,"2844":3,"2845":1,"2846":1,"2847":1,"2848":1,"2850":1,"2851":1,"2852":5,"2854":1,"2856":2,"2857":2,"2862":1,"2863":2,"2864":1,"2865":3,"2868":3,"2869":8,"2870":1,"2871":3,"2872":6,"2876":2,"2877":1,"2878":3,"2879":1,"2880":1,"2882":4,"2884":2,"2885":2,"2886":5,"2887":2,"2888":2,"2889":1,"2890":1,"2893":2,"2894":1,"2895":1,"2896":1,"2897":1,"2902":2,"2903":1,"2904":1,"2906":1,"2908":3,"2909":1,"2910":4,"2911":3,"2912":13,"2913":5,"2915":4,"2916":8,"2917":8,"2918":5,"2919":11,"2920":15,"2921":6,"2922":11,"2923":7,"2924":1,"2925":1,"2926":8,"2927":6,"2928":1,"2929":8,"2931":7,"2932":2,"2933":2,"2934":2,"2935":2,"2937":7,"2938":6,"2939":1,"2940":3,"2941":5,"2942":2,"2944":1,"2945":12,"2946":1,"2947":1,"2948":3,"2949":4,"2950":9}}]],"serializationVersion":2}`; +export { + _localSearchIndexroot as default +}; diff --git a/assets/chunks/VPLocalSearchBox.B9MTK6QE.js b/assets/chunks/VPLocalSearchBox.BW7_hVaE.js similarity index 99% rename from assets/chunks/VPLocalSearchBox.B9MTK6QE.js rename to assets/chunks/VPLocalSearchBox.BW7_hVaE.js index 89d78016f46..467ff680337 100644 --- a/assets/chunks/VPLocalSearchBox.B9MTK6QE.js +++ b/assets/chunks/VPLocalSearchBox.BW7_hVaE.js @@ -2,8 +2,8 @@ var __defProp = Object.defineProperty; var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value); import { V as __vitePreload, q as watch, am as tryOnScopeDispose, h as computed, an as toValue, ao as toArray, ap as unrefElement, aq as notNullish, G as shallowRef, d as defineComponent, ar as computedAsync, p as ref, as as useSessionStorage, at as useLocalStorage, s as watchEffect, au as watchDebounced, v as onMounted, P as nextTick, O as onKeyStroke, a6 as useRouter, av as useEventListener, W as useScrollLock, R as inBrowser, $ as onBeforeUnmount, o as openBlock, b as createBlock, j as createBaseVNode, a0 as withModifiers, k as unref, aw as withDirectives, ax as vModelText, ay as isRef, c as createElementBlock, n as normalizeClass, e as createCommentVNode, B as renderList, F as Fragment, a as createTextVNode, t as toDisplayString, az as Teleport, aA as markRaw, aB as createApp, aa as dataSymbol, af as pathToFile, aC as escapeRegExp, _ as _export_sfc } from "./framework.8zKZLKO7.js"; -import { u as useData, c as createSearchTranslate } from "./theme.D8L5QszO.js"; -const localSearchIndex = { "root": () => __vitePreload(() => import("./@localSearchIndexroot.DSMizAmE.js"), true ? [] : void 0) }; +import { u as useData, c as createSearchTranslate } from "./theme.B7TfpAiN.js"; +const localSearchIndex = { "root": () => __vitePreload(() => import("./@localSearchIndexroot.DZPLuGID.js"), true ? [] : void 0) }; /*! * tabbable 6.4.0 * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE diff --git a/assets/chunks/theme.D8L5QszO.js b/assets/chunks/theme.B7TfpAiN.js similarity index 99% rename from assets/chunks/theme.D8L5QszO.js rename to assets/chunks/theme.B7TfpAiN.js index 85e03f5f5f9..42ac79f43ca 100644 --- a/assets/chunks/theme.D8L5QszO.js +++ b/assets/chunks/theme.B7TfpAiN.js @@ -1,4 +1,4 @@ -const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.B9MTK6QE.js","assets/chunks/framework.8zKZLKO7.js"])))=>i.map(i=>d[i]); +const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/chunks/VPLocalSearchBox.BW7_hVaE.js","assets/chunks/framework.8zKZLKO7.js"])))=>i.map(i=>d[i]); import { d as defineComponent, c as createElementBlock, r as renderSlot, n as normalizeClass, o as openBlock, a as createTextVNode, t as toDisplayString, b as createBlock, w as withCtx, T as Transition, e as createCommentVNode, _ as _export_sfc, u as useData$1, i as isExternal, f as treatAsHtml, g as withBase, h as computed, j as createBaseVNode, k as unref, l as isActive, m as useMediaQuery, p as ref, q as watch, s as watchEffect, v as onMounted, x as onUnmounted, y as watchPostEffect, z as onUpdated, A as getScrollOffset, F as Fragment, B as renderList, C as resolveComponent, D as onContentUpdated, E as createVNode, G as shallowRef, H as resolveDynamicComponent, I as EXTERNAL_URL_RE, J as useRoute, K as mergeProps, L as inject, M as useWindowSize, N as normalizeStyle, O as onKeyStroke, P as nextTick, Q as useWindowScroll, R as inBrowser, S as readonly, U as defineAsyncComponent, V as __vitePreload, W as useScrollLock, X as provide, Y as toHandlers, Z as withKeys, $ as onBeforeUnmount, a0 as withModifiers, a1 as useSlots, a2 as useId, a3 as reactive, a4 as onBeforeMount, a5 as toRef, a6 as useRouter } from "./framework.8zKZLKO7.js"; const _sfc_main$_ = /* @__PURE__ */ defineComponent({ __name: "VPBadge", @@ -2230,7 +2230,7 @@ const _hoisted_3$3 = { const _sfc_main$m = /* @__PURE__ */ defineComponent({ __name: "VPNavBarSearch", setup(__props) { - const VPLocalSearchBox = defineAsyncComponent(() => __vitePreload(() => import("./VPLocalSearchBox.B9MTK6QE.js"), true ? __vite__mapDeps([0,1]) : void 0)); + const VPLocalSearchBox = defineAsyncComponent(() => __vitePreload(() => import("./VPLocalSearchBox.BW7_hVaE.js"), true ? __vite__mapDeps([0,1]) : void 0)); const VPAlgoliaSearchBox = () => null; const { theme: theme2 } = useData(); const loaded = ref(false); diff --git a/assets/drivers_audio.md.DFUXqjwH.js b/assets/drivers_audio.md.B1DKL5_T.js similarity index 97% rename from assets/drivers_audio.md.DFUXqjwH.js rename to assets/drivers_audio.md.B1DKL5_T.js index 512e196f231..0e2c994b5ba 100644 --- a/assets/drivers_audio.md.DFUXqjwH.js +++ b/assets/drivers_audio.md.B1DKL5_T.js @@ -3,7 +3,7 @@ const __pageData = JSON.parse('{"title":"Audio Driver","description":"","frontma const _sfc_main = { name: "drivers/audio.md" }; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode('

Audio Driver

The Audio feature breaks the hardware specifics out into separate, exchangeable driver units, with a common interface to the audio-"core" - which itself handles playing songs and notes while tracking their progress in an internal state, initializing/starting/stopping the driver as needed.

Not all MCUs support every available driver, either the platform-support is not there (yet?) or the MCU simply does not have the required hardware peripheral.

AVR

Boards built around an Atmega32U4 can use two sets of PWM capable pins, each driving a separate speaker. The possible configurations are:

Timer3Timer1
one speakerC4,C5 or C6
one speakerB4, B5 or B7
two speakersC4,C5 or C6B4, B5 or B7

Currently there is only one/default driver for AVR based boards, which is automatically configured to:

make
AUDIO_DRIVER = pwm_hardware

ARM

For Arm based boards, QMK depends on ChibiOS - hence any MCU supported by the later is likely usable, as long as certain hardware peripherals are available.

Supported wiring configurations, with their ChibiOS/MCU peripheral requirement are listed below; piezo speakers are marked with 1️⃣ for the first/primary and 2️⃣ for the secondary.

driverGPTD6
Tim6
GPTD7
Tim7
GPTD8
Tim8
PWMD11
Tim1_Ch1
dac_basicA4+DACD1 = 1️⃣A5+DACD2 = 1️⃣state
A4+DACD1 = 1️⃣ + GndA5+DACD2 = 2️⃣ + Gndstate
A4+DACD1 = 2️⃣ + GndA5+DACD2 = 1️⃣ + Gndstate
A4+DACD1 = 1️⃣ + Gndstate
A5+DACD2 = 1️⃣ + Gndstate
dac_additiveA4+DACD1 = 1️⃣ + Gnd
A5+DACD2 = 1️⃣ + Gnd
A4+DACD1 + A5+DACD2 = 1️⃣ 2
pwm_softwarestate-updateany = 1️⃣
pwm hardwarestate-updateA8 = 1️⃣ 3

1: the routing and alternate functions for PWM differ sometimes between STM32 MCUs, if in doubt consult the data-sheet
2: one piezo connected to A4 and A5, with AUDIO_PIN_ALT_AS_NEGATIVE set
3: TIM1_CH1 = A8 on STM32F103C8, other combinations are possible, see Data-sheet. configured with: AUDIO_PWM_DRIVER and AUDIO_PWM_CHANNEL

DAC basic

The default driver for ARM boards, in absence of an overriding configuration. This driver needs one Timer per enabled/used DAC channel, to trigger conversion; and a third timer to trigger state updates with the audio-core.

Additionally, in the board config, you'll want to make changes to enable the DACs, GPT for Timers 6, 7 and 8:

c
#pragma once\n\n#define HAL_USE_DAC TRUE\n#define HAL_USE_GPT TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_DAC_USE_DAC1_CH1\n#define STM32_DAC_USE_DAC1_CH1 TRUE\n#undef STM32_DAC_USE_DAC1_CH2\n#define STM32_DAC_USE_DAC1_CH2 TRUE\n#undef STM32_GPT_USE_TIM6\n#define STM32_GPT_USE_TIM6 TRUE\n#undef STM32_GPT_USE_TIM7\n#define STM32_GPT_USE_TIM7 TRUE\n#undef STM32_GPT_USE_TIM8\n#define STM32_GPT_USE_TIM8 TRUE

TIP

Note: DAC1 (A4) uses TIM6, DAC2 (A5) uses TIM7, and the audio state timer uses TIM8 (configurable).

You can also change the timer used for the overall audio state by defining the driver. For instance:

c
#define AUDIO_STATE_TIMER GPTD9

DAC additive

only needs one timer (GPTD6, Tim6) to trigger the DAC unit to do a conversion; the audio state updates are in turn triggered during the DAC callback.

Additionally, in the board config, you'll want to make changes to enable the DACs, GPT for Timer 6:

c
#pragma once\n\n#define HAL_USE_DAC TRUE\n#define HAL_USE_GPT TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_DAC_USE_DAC1_CH1\n#define STM32_DAC_USE_DAC1_CH1 TRUE\n#undef STM32_DAC_USE_DAC1_CH2\n#define STM32_DAC_USE_DAC1_CH2 TRUE\n#undef STM32_GPT_USE_TIM6\n#define STM32_GPT_USE_TIM6 TRUE

DAC Config

DefineDefaultsDescription
AUDIO_DAC_SAMPLE_MAX4095UHighest value allowed. Lower value means lower volume. And 4095U is the upper limit, since this is limited to a 12 bit value. Only effects non-pregenerated samples.
AUDIO_DAC_OFF_VALUEAUDIO_DAC_SAMPLE_MAX / 2The value of the DAC when not playing anything. Some setups may require a high (AUDIO_DAC_SAMPLE_MAX) or low (0) value here.
AUDIO_MAX_SIMULTANEOUS_TONESsee next tableThe number of tones that can be played simultaneously. A value that is too high may freeze the controller or glitch out when too many tones are being played.
AUDIO_DAC_SAMPLE_RATEsee next tableEffective bit rate of the DAC (in hertz), higher limits simultaneous tones, and lower sacrifices quality.
AUDIO_DAC_BUFFER_SIZEsee next tableNumber of samples generated every refill. Too few may cause excessive CPU load; too many may cause freezes, RAM or flash exhaustion or lags during matrix scanning.

There are a number of predefined quality settings that you can use, with "sane minimum" being the default. You can use custom values by simply defining the sample rate, number of simultaneous tones and buffer size, instead of using one of the listed presets.

DefineSample RateSimultaneous tonesBuffer size
AUDIO_DAC_QUALITY_VERY_LOW11025U864U
AUDIO_DAC_QUALITY_LOW22050U4128U
AUDIO_DAC_QUALITY_HIGH44100U2256U
AUDIO_DAC_QUALITY_VERY_HIGH88200U1256U
AUDIO_DAC_QUALITY_SANE_MINIMUM16384U864U

Notes on buffer size

By default, the buffer size attempts to keep to these constraints:

You can lower the buffer size if you need a bit more space in your firmware, or raise it if your keyboard freezes up.

c
        /* zero crossing (or approach, whereas zero == DAC_OFF_VALUE, which can be configured to anything from 0 to DAC_SAMPLE_MAX)\n         * ============================*=*========================== AUDIO_DAC_SAMPLE_MAX\n         *                          *       *\n         *                        *           *\n         * ---------------------------------------------------------\n         *                     *                 *                  } AUDIO_DAC_SAMPLE_MAX/100\n         * --------------------------------------------------------- AUDIO_DAC_OFF_VALUE\n         *                  *                       *               } AUDIO_DAC_SAMPLE_MAX/100\n         * ---------------------------------------------------------\n         *               *\n         * *           *\n         *   *       *\n         * =====*=*================================================= 0x0\n         */

PWM hardware

This driver uses the ChibiOS-PWM system to produce a square-wave on specific output pins that are connected to the PWM hardware. The hardware directly toggles the pin via its alternate function. See your MCU's data-sheet for which pin can be driven by what timer - looking for TIMx_CHy and the corresponding alternate function.

A configuration example for the STM32F103C8 would be:

c
#pragma once\n\n#define HAL_USE_PWM TRUE\n#define HAL_USE_PAL TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_PWM_USE_TIM1\n#define STM32_PWM_USE_TIM1 TRUE

If we now target pin A8, looking through the data-sheet of the STM32F103C8, for the timers and alternate functions

with all this information, the configuration would contain these lines:

c
//config.h:\n#define AUDIO_PIN A8\n#define AUDIO_PWM_DRIVER PWMD1\n#define AUDIO_PWM_CHANNEL 1

ChibiOS uses GPIOv1 for the F103, which only knows of one alternate function. On 'larger' STM32s, GPIOv2 or GPIOv3 are used; with them it is also necessary to configure AUDIO_PWM_PAL_MODE to the correct alternate function for the selected pin, timer and timer-channel.

You can also use the Complementary output (TIMx_CHyN) for PWM on supported controllers. To enable this functionality, you will need to make the following changes:

c
// config.h:\n#define AUDIO_PWM_COMPLEMENTARY_OUTPUT

PWM software

This driver uses the PWM callbacks from PWMD1 with TIM1_CH1 to toggle the selected AUDIO_PIN in software. During the same callback, with AUDIO_PIN_ALT_AS_NEGATIVE set, the AUDIO_PIN_ALT is toggled inversely to AUDIO_PIN. This is useful for setups that drive a piezo from two pins (instead of one and Gnd).

You can also change the timer used for software PWM by defining the driver. For instance:

c
#define AUDIO_STATE_TIMER GPTD8

Testing Notes

While not an exhaustive list, the following table provides the scenarios that have been partially validated:

DAC basicDAC additivePWM hardwarePWM software
Atmega32U4✔️
RP2040✔️?
STM32F103C8 (bluepill)✔️✔️
STM32F303CCT6 (proton-c)✔️✔️?✔️
STM32F405VG✔️✔️✔️✔️
L0xx❌ (no Tim8)???

✔️ : works and was tested
⭕ : does not apply
❌ : not supported by MCU

Other supported ChibiOS boards and/or pins may function, it will be highly chip and configuration dependent.

', 53) + createStaticVNode('

Audio Driver

The Audio feature breaks the hardware specifics out into separate, exchangeable driver units, with a common interface to the audio-"core" - which itself handles playing songs and notes while tracking their progress in an internal state, initializing/starting/stopping the driver as needed.

Not all MCUs support every available driver, either the platform-support is not there (yet?) or the MCU simply does not have the required hardware peripheral.

AVR

Boards built around an Atmega32U4 can use two sets of PWM capable pins, each driving a separate speaker. The possible configurations are:

Timer3Timer1
one speakerC4,C5 or C6
one speakerB4, B5 or B7
two speakersC4,C5 or C6B4, B5 or B7

Currently there is only one/default driver for AVR based boards, which is automatically configured to:

make
AUDIO_DRIVER = pwm_hardware

ARM

For Arm based boards, QMK depends on ChibiOS - hence any MCU supported by the later is likely usable, as long as certain hardware peripherals are available.

Supported wiring configurations, with their ChibiOS/MCU peripheral requirement are listed below; piezo speakers are marked with 1️⃣ for the first/primary and 2️⃣ for the secondary.

driverGPTD6
Tim6
GPTD7
Tim7
GPTD8
Tim8
PWMD11
Tim1_Ch1
dac_basicA4+DACD1 = 1️⃣A5+DACD2 = 1️⃣state
A4+DACD1 = 1️⃣ + GndA5+DACD2 = 2️⃣ + Gndstate
A4+DACD1 = 2️⃣ + GndA5+DACD2 = 1️⃣ + Gndstate
A4+DACD1 = 1️⃣ + Gndstate
A5+DACD2 = 1️⃣ + Gndstate
dac_additiveA4+DACD1 = 1️⃣ + Gnd
A5+DACD2 = 1️⃣ + Gnd
A4+DACD1 + A5+DACD2 = 1️⃣ 2
pwm_softwarestate-updateany = 1️⃣
pwm hardwarestate-updateA8 = 1️⃣ 3

1: the routing and alternate functions for PWM differ sometimes between STM32 MCUs, if in doubt consult the data-sheet
2: one piezo connected to A4 and A5, with AUDIO_PIN_ALT_AS_NEGATIVE set
3: TIM1_CH1 = A8 on STM32F103C8, other combinations are possible, see Data-sheet. configured with: AUDIO_PWM_DRIVER and AUDIO_PWM_CHANNEL

DAC basic

The default driver for ARM boards, in absence of an overriding configuration. This driver needs one Timer per enabled/used DAC channel, to trigger conversion; and a third timer to trigger state updates with the audio-core.

Additionally, in the board config, you'll want to make changes to enable the DACs, GPT for Timers 6, 7 and 8:

c
#pragma once\n\n#define HAL_USE_DAC TRUE\n#define HAL_USE_GPT TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_DAC_USE_DAC1_CH1\n#define STM32_DAC_USE_DAC1_CH1 TRUE\n#undef STM32_DAC_USE_DAC1_CH2\n#define STM32_DAC_USE_DAC1_CH2 TRUE\n#undef STM32_GPT_USE_TIM6\n#define STM32_GPT_USE_TIM6 TRUE\n#undef STM32_GPT_USE_TIM7\n#define STM32_GPT_USE_TIM7 TRUE\n#undef STM32_GPT_USE_TIM8\n#define STM32_GPT_USE_TIM8 TRUE

TIP

Note: DAC1 (A4) uses TIM6, DAC2 (A5) uses TIM7, and the audio state timer uses TIM8 (configurable).

You can also change the timer used for the overall audio state by defining the driver. For instance:

c
#define AUDIO_STATE_TIMER GPTD9

DAC additive

only needs one timer (GPTD6, Tim6) to trigger the DAC unit to do a conversion; the audio state updates are in turn triggered during the DAC callback.

Additionally, in the board config, you'll want to make changes to enable the DACs, GPT for Timer 6:

c
#pragma once\n\n#define HAL_USE_DAC TRUE\n#define HAL_USE_GPT TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_DAC_USE_DAC1_CH1\n#define STM32_DAC_USE_DAC1_CH1 TRUE\n#undef STM32_DAC_USE_DAC1_CH2\n#define STM32_DAC_USE_DAC1_CH2 TRUE\n#undef STM32_GPT_USE_TIM6\n#define STM32_GPT_USE_TIM6 TRUE

DAC Config

DefineDefaultsDescription
AUDIO_DAC_SAMPLE_MAX4095UHighest value allowed. Lower value means lower volume. And 4095U is the upper limit, since this is limited to a 12 bit value. Only effects non-pregenerated samples.
AUDIO_DAC_OFF_VALUEAUDIO_DAC_SAMPLE_MAX / 2The value of the DAC when not playing anything. Some setups may require a high (AUDIO_DAC_SAMPLE_MAX) or low (0) value here.
AUDIO_MAX_SIMULTANEOUS_TONESsee next tableThe number of tones that can be played simultaneously. A value that is too high may freeze the controller or glitch out when too many tones are being played.
AUDIO_DAC_SAMPLE_RATEsee next tableEffective bit rate of the DAC (in hertz), higher limits simultaneous tones, and lower sacrifices quality.
AUDIO_DAC_BUFFER_SIZEsee next tableNumber of samples generated every refill. Too few may cause excessive CPU load; too many may cause freezes, RAM or flash exhaustion or lags during matrix scanning.

There are a number of predefined quality settings that you can use, with "sane minimum" being the default. You can use custom values by simply defining the sample rate, number of simultaneous tones and buffer size, instead of using one of the listed presets.

DefineSample RateSimultaneous tonesBuffer size
AUDIO_DAC_QUALITY_VERY_LOW11025U864U
AUDIO_DAC_QUALITY_LOW22050U4128U
AUDIO_DAC_QUALITY_HIGH44100U2256U
AUDIO_DAC_QUALITY_VERY_HIGH88200U1256U
AUDIO_DAC_QUALITY_SANE_MINIMUM16384U864U

Notes on buffer size

By default, the buffer size attempts to keep to these constraints:

You can lower the buffer size if you need a bit more space in your firmware, or raise it if your keyboard freezes up.

c
        /* zero crossing (or approach, whereas zero == DAC_OFF_VALUE, which can be configured to anything from 0 to DAC_SAMPLE_MAX)\n         * ============================*=*========================== AUDIO_DAC_SAMPLE_MAX\n         *                          *       *\n         *                        *           *\n         * ---------------------------------------------------------\n         *                     *                 *                  } AUDIO_DAC_SAMPLE_MAX/100\n         * --------------------------------------------------------- AUDIO_DAC_OFF_VALUE\n         *                  *                       *               } AUDIO_DAC_SAMPLE_MAX/100\n         * ---------------------------------------------------------\n         *               *\n         * *           *\n         *   *       *\n         * =====*=*================================================= 0x0\n         */

PWM hardware

This driver uses the ChibiOS-PWM system to produce a square-wave on specific output pins that are connected to the PWM hardware. The hardware directly toggles the pin via its alternate function. See your MCU's data-sheet for which pin can be driven by what timer - looking for TIMx_CHy and the corresponding alternate function.

A configuration example for the STM32F103C8 would be:

c
#pragma once\n\n#define HAL_USE_PWM TRUE\n#define HAL_USE_PAL TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_PWM_USE_TIM1\n#define STM32_PWM_USE_TIM1 TRUE

If we now target pin A8, looking through the data-sheet of the STM32F103C8, for the timers and alternate functions

with all this information, the configuration would contain these lines:

c
//config.h:\n#define AUDIO_PIN A8\n#define AUDIO_PWM_DRIVER PWMD1\n#define AUDIO_PWM_CHANNEL 1

ChibiOS uses GPIOv1 for the F103, which only knows of one alternate function. On 'larger' STM32s, GPIOv2 or GPIOv3 are used; with them it is also necessary to configure AUDIO_PWM_PAL_MODE to the correct alternate function for the selected pin, timer and timer-channel.

You can also use the Complementary output (TIMx_CHyN) for PWM on supported controllers. To enable this functionality, you will need to make the following changes:

c
// config.h:\n#define AUDIO_PWM_COMPLEMENTARY_OUTPUT

PWM software

This driver uses the PWM callbacks from PWMD1 with TIM1_CH1 to toggle the selected AUDIO_PIN in software. During the same callback, with AUDIO_PIN_ALT_AS_NEGATIVE set, the AUDIO_PIN_ALT is toggled inversely to AUDIO_PIN. This is useful for setups that drive a piezo from two pins (instead of one and Gnd).

You can also change the timer used for software PWM by defining the driver. For instance:

c
#define AUDIO_STATE_TIMER GPTD8

Testing Notes

While not an exhaustive list, the following table provides the scenarios that have been partially validated:

DAC basicDAC additivePWM hardwarePWM software
Atmega32U4✔️
RP2040✔️?
STM32F103C8 (bluepill)✔️✔️
STM32F303CCT6 (proton-c)✔️✔️?✔️
STM32F405VG✔️✔️✔️✔️
L0xx❌ (no Tim8)???

✔️ : works and was tested
⭕ : does not apply
❌ : not supported by MCU

Other supported ChibiOS boards and/or pins may function, it will be highly chip and configuration dependent.

', 53) ])]); } const audio = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); diff --git a/assets/drivers_audio.md.DFUXqjwH.lean.js b/assets/drivers_audio.md.B1DKL5_T.lean.js similarity index 100% rename from assets/drivers_audio.md.DFUXqjwH.lean.js rename to assets/drivers_audio.md.B1DKL5_T.lean.js diff --git a/assets/drivers_i2c.md.CzO-jzlA.js b/assets/drivers_i2c.md.uI2Pt6pv.js similarity index 98% rename from assets/drivers_i2c.md.CzO-jzlA.js rename to assets/drivers_i2c.md.uI2Pt6pv.js index d2ee22c3358..92299e349ce 100644 --- a/assets/drivers_i2c.md.CzO-jzlA.js +++ b/assets/drivers_i2c.md.uI2Pt6pv.js @@ -3,7 +3,7 @@ const __pageData = JSON.parse('{"title":"I2C Master Driver","description":"","fr const _sfc_main = { name: "drivers/i2c.md" }; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode('

I2C Master Driver

The I2C Master drivers used in QMK have a set of common functions to allow portability between MCUs.

Usage

In most cases, the I2C Master driver code is automatically included if you are using a feature or driver which requires it, such as OLED.

However, if you need to use the driver standalone, add the following to your rules.mk:

make
I2C_DRIVER_REQUIRED = yes

You can then call the I2C API by including i2c_master.h in your code.

I2C Addressing

I2C addresses listed on datasheets and the internet are usually represented as a 7-bit value. The eighth bit (the least significant bit) controls whether the operation is a read or a write.

All of the address parameters expected by the driver API should therefore be pushed to the upper 7 bits of the address byte; the driver will take care of setting the read/write bit as appropriate.

This is easy to do via the bitwise left shift operator. For example, if your device has an address of 0x18 you might create a define for convenience:

c
#define MY_I2C_ADDRESS (0x18 << 1)

Or, you can shift the address ahead of time:

c
#define MY_I2C_ADDRESS 0x30

See https://www.robot-electronics.co.uk/i2c-tutorial for more information about I2C addressing and other technical details.

AVR Configuration

The following defines can be used to configure the I2C master driver:

config.h OverrideDescriptionDefault
F_SCLClock frequency in Hz400000

No further setup is required - just connect the SDA and SCL pins of your I2C devices to the matching pins on the MCU:

MCUSCLSDA
ATmega16/32U4D0D1
AT90USB64/128D0D1
ATmega32AC0C1
ATmega328/PC5C4

TIP

The ATmega16/32U2 does not possess I2C functionality, and so cannot use this driver.

ChibiOS/ARM Configuration

You'll need to determine which pins can be used for I2C -- as an example, STM32 parts generally have multiple I2C peripherals, labeled I2C1, I2C2, I2C3 etc.

To enable I2C, modify your board's halconf.h to enable I2C, then modify your board's mcuconf.h to enable the peripheral you've chosen:

c
#pragma once\n\n#define HAL_USE_I2C TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_I2C_USE_I2C2\n#define STM32_I2C_USE_I2C2 TRUE
mcuconf.h SettingDescriptionDefault
STM32_I2C_BUSY_TIMEOUTTime in milliseconds until the I2C command is aborted if no response is received50
STM32_I2C_XXX_IRQ_PRIORITYInterrupt priority for hardware driver XXX (THIS IS AN EXPERT SETTING)10
STM32_I2C_USE_DMAEnable/Disable the ability of the MCU to offload the data transfer to the DMA unitTRUE
STM32_I2C_XXX_DMA_PRIORITYPriority of DMA unit for hardware driver XXX (THIS IS AN EXPERT SETTING)1

Configuration-wise, you'll need to set up the peripheral as per your MCU's datasheet -- the defaults match the pins for a Proton-C, i.e. STM32F303.

config.h OverrideDescriptionDefault
I2C_DRIVERI2C peripheral to use - I2C1 -> I2CD1, I2C2 -> I2CD2 etc.I2CD1
I2C1_SCL_PINThe pin to use for SCLB6
I2C1_SCL_PAL_MODEThe alternate function mode for SCL4
I2C1_SDA_PINThe pin to use for SDAB7
I2C1_SDA_PAL_MODEThe alternate function mode for SDA4

TIP

Currently only a single I2C peripheral is supported, therefore the I2C1_* defines are used for configuration regardless of the selected peripheral.

The following configuration values are dependent on the ChibiOS I2C LLD, which is dictated by the microcontroller.

I2Cv1

See this page for the I2Cv1 configuration structure.

config.h OverrideDefault
I2C1_OPMODEOPMODE_I2C
I2C1_CLOCK_SPEED100000
I2C1_DUTY_CYCLESTD_DUTY_CYCLE

I2Cv2

See this page for the I2Cv2 configuration structure.

config.h OverrideDefault
I2C1_TIMINGR_PRESC0U
I2C1_TIMINGR_SCLDEL7U
I2C1_TIMINGR_SDADEL0U
I2C1_TIMINGR_SCLH38U
I2C1_TIMINGR_SCLL129U

API

void i2c_init(void)

Initialize the I2C driver. This function must be called only once, before any of the below functions can be called.

This function is weakly defined, meaning it can be overridden if necessary for your particular use case:

c
void i2c_init(void) {\n    gpio_set_pin_input(B6); // Try releasing special pins for a short time\n    gpio_set_pin_input(B7);\n    wait_ms(10); // Wait for the release to happen\n\n    palSetPadMode(GPIOB, 6, PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN | PAL_STM32_PUPDR_PULLUP); // Set B6 to I2C function\n    palSetPadMode(GPIOB, 7, PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN | PAL_STM32_PUPDR_PULLUP); // Set B7 to I2C function\n}

i2c_status_t i2c_transmit(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)

Send multiple bytes to the selected I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_transmit_P(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)

Send multiple bytes from PROGMEM to the selected I2C device.

On ARM devices, this function is simply an alias for i2c_transmit(address, data, length, timeout).

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_receive(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout)

Receive multiple bytes from the selected I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_transmit_and_receive(uint8_t address, const uint8_t* tx_data, uint16_t tx_length, uint8_t* rx_data, uint16_t rx_length, uint16_t timeout)

Send and receive multiple bytes from the selected I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_write_register(uint8_t devaddr, uint8_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)

Write to a register with an 8-bit address on the I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_write_register16(uint8_t devaddr, uint16_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)

Write to a register with a 16-bit address (big endian) on the I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_read_register(uint8_t devaddr, uint8_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)

Read from a register with an 8-bit address on the I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_read_register16(uint8_t devaddr, uint16_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)

Read from a register with a 16-bit address (big endian) on the I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_ping_address(uint8_t address, uint16_t timeout)

Ping the I2C bus for a specific address.

On ChibiOS a "best effort" attempt is made by reading a single byte from register 0 at the given address. This should generally work except for I2C devices that do not not respond to a register 0 read request, which will result in a false negative result (unsuccessful response to ping attempt).

This function is weakly defined, meaning it can be overridden if necessary for your particular use case.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.

', 109) + createStaticVNode('

I2C Master Driver

The I2C Master drivers used in QMK have a set of common functions to allow portability between MCUs.

Usage

In most cases, the I2C Master driver code is automatically included if you are using a feature or driver which requires it, such as OLED.

However, if you need to use the driver standalone, add the following to your rules.mk:

make
I2C_DRIVER_REQUIRED = yes

You can then call the I2C API by including i2c_master.h in your code.

I2C Addressing

I2C addresses listed on datasheets and the internet are usually represented as a 7-bit value. The eighth bit (the least significant bit) controls whether the operation is a read or a write.

All of the address parameters expected by the driver API should therefore be pushed to the upper 7 bits of the address byte; the driver will take care of setting the read/write bit as appropriate.

This is easy to do via the bitwise left shift operator. For example, if your device has an address of 0x18 you might create a define for convenience:

c
#define MY_I2C_ADDRESS (0x18 << 1)

Or, you can shift the address ahead of time:

c
#define MY_I2C_ADDRESS 0x30

See https://www.robot-electronics.co.uk/i2c-tutorial for more information about I2C addressing and other technical details.

AVR Configuration

The following defines can be used to configure the I2C master driver:

config.h OverrideDescriptionDefault
F_SCLClock frequency in Hz400000

No further setup is required - just connect the SDA and SCL pins of your I2C devices to the matching pins on the MCU:

MCUSCLSDA
ATmega16/32U4D0D1
AT90USB64/128D0D1
ATmega32AC0C1
ATmega328/PC5C4

TIP

The ATmega16/32U2 does not possess I2C functionality, and so cannot use this driver.

ChibiOS/ARM Configuration

You'll need to determine which pins can be used for I2C -- as an example, STM32 parts generally have multiple I2C peripherals, labeled I2C1, I2C2, I2C3 etc.

To enable I2C, modify your board's halconf.h to enable I2C, then modify your board's mcuconf.h to enable the peripheral you've chosen:

c
#pragma once\n\n#define HAL_USE_I2C TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_I2C_USE_I2C2\n#define STM32_I2C_USE_I2C2 TRUE
mcuconf.h SettingDescriptionDefault
STM32_I2C_BUSY_TIMEOUTTime in milliseconds until the I2C command is aborted if no response is received50
STM32_I2C_XXX_IRQ_PRIORITYInterrupt priority for hardware driver XXX (THIS IS AN EXPERT SETTING)10
STM32_I2C_USE_DMAEnable/Disable the ability of the MCU to offload the data transfer to the DMA unitTRUE
STM32_I2C_XXX_DMA_PRIORITYPriority of DMA unit for hardware driver XXX (THIS IS AN EXPERT SETTING)1

Configuration-wise, you'll need to set up the peripheral as per your MCU's datasheet -- the defaults match the pins for a Proton-C, i.e. STM32F303.

config.h OverrideDescriptionDefault
I2C_DRIVERI2C peripheral to use - I2C1 -> I2CD1, I2C2 -> I2CD2 etc.I2CD1
I2C1_SCL_PINThe pin to use for SCLB6
I2C1_SCL_PAL_MODEThe alternate function mode for SCL4
I2C1_SDA_PINThe pin to use for SDAB7
I2C1_SDA_PAL_MODEThe alternate function mode for SDA4

TIP

Currently only a single I2C peripheral is supported, therefore the I2C1_* defines are used for configuration regardless of the selected peripheral.

The following configuration values are dependent on the ChibiOS I2C LLD, which is dictated by the microcontroller.

I2Cv1

See this page for the I2Cv1 configuration structure.

config.h OverrideDefault
I2C1_OPMODEOPMODE_I2C
I2C1_CLOCK_SPEED100000
I2C1_DUTY_CYCLESTD_DUTY_CYCLE

I2Cv2

See this page for the I2Cv2 configuration structure.

config.h OverrideDefault
I2C1_TIMINGR_PRESC0U
I2C1_TIMINGR_SCLDEL7U
I2C1_TIMINGR_SDADEL0U
I2C1_TIMINGR_SCLH38U
I2C1_TIMINGR_SCLL129U

API

void i2c_init(void)

Initialize the I2C driver. This function must be called only once, before any of the below functions can be called.

This function is weakly defined, meaning it can be overridden if necessary for your particular use case:

c
void i2c_init(void) {\n    gpio_set_pin_input(B6); // Try releasing special pins for a short time\n    gpio_set_pin_input(B7);\n    wait_ms(10); // Wait for the release to happen\n\n    palSetPadMode(GPIOB, 6, PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN | PAL_STM32_PUPDR_PULLUP); // Set B6 to I2C function\n    palSetPadMode(GPIOB, 7, PAL_MODE_ALTERNATE(4) | PAL_STM32_OTYPE_OPENDRAIN | PAL_STM32_PUPDR_PULLUP); // Set B7 to I2C function\n}

i2c_status_t i2c_transmit(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)

Send multiple bytes to the selected I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_transmit_P(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout)

Send multiple bytes from PROGMEM to the selected I2C device.

On ARM devices, this function is simply an alias for i2c_transmit(address, data, length, timeout).

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_receive(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout)

Receive multiple bytes from the selected I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_transmit_and_receive(uint8_t address, const uint8_t* tx_data, uint16_t tx_length, uint8_t* rx_data, uint16_t rx_length, uint16_t timeout)

Send and receive multiple bytes from the selected I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_write_register(uint8_t devaddr, uint8_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)

Write to a register with an 8-bit address on the I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_write_register16(uint8_t devaddr, uint16_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout)

Write to a register with a 16-bit address (big endian) on the I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_read_register(uint8_t devaddr, uint8_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)

Read from a register with an 8-bit address on the I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_read_register16(uint8_t devaddr, uint16_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout)

Read from a register with a 16-bit address (big endian) on the I2C device.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.


i2c_status_t i2c_ping_address(uint8_t address, uint16_t timeout)

Ping the I2C bus for a specific address.

On ChibiOS a "best effort" attempt is made by reading a single byte from register 0 at the given address. This should generally work except for I2C devices that do not not respond to a register 0 read request, which will result in a false negative result (unsuccessful response to ping attempt).

This function is weakly defined, meaning it can be overridden if necessary for your particular use case.

Arguments

Return Value

I2C_STATUS_TIMEOUT if the timeout period elapses, I2C_STATUS_ERROR if some other error occurs, otherwise I2C_STATUS_SUCCESS.

', 109) ])]); } const i2c = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); diff --git a/assets/drivers_i2c.md.CzO-jzlA.lean.js b/assets/drivers_i2c.md.uI2Pt6pv.lean.js similarity index 100% rename from assets/drivers_i2c.md.CzO-jzlA.lean.js rename to assets/drivers_i2c.md.uI2Pt6pv.lean.js diff --git a/assets/drivers_spi.md.D4Me9hD5.js b/assets/drivers_spi.md.CbmshMLW.js similarity index 98% rename from assets/drivers_spi.md.D4Me9hD5.js rename to assets/drivers_spi.md.CbmshMLW.js index 7d8949d7f42..0590cc9acd8 100644 --- a/assets/drivers_spi.md.D4Me9hD5.js +++ b/assets/drivers_spi.md.CbmshMLW.js @@ -3,7 +3,7 @@ const __pageData = JSON.parse('{"title":"SPI Master Driver","description":"","fr const _sfc_main = { name: "drivers/spi.md" }; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode('

SPI Master Driver

The SPI Master drivers used in QMK have a set of common functions to allow portability between MCUs.

Usage

In most cases, the SPI Master driver code is automatically included if you are using a feature or driver which requires it, such as OLED.

However, if you need to use the driver standalone, add the following to your rules.mk:

make
SPI_DRIVER_REQUIRED = yes

You can then call the SPI API by including spi_master.h in your code.

AVR Configuration

No special setup is required - just connect the SS, SCK, MOSI and MISO pins of your SPI devices to the matching pins on the MCU:

MCUSSSCKMOSIMISO
ATmega16/32U2/4B0B1B2B3
AT90USB64/128/162B0B1B2B3
ATmega32AB4B7B5B6
ATmega328/PB2B5B3B4

You may use more than one slave select pin, not just the SS pin. This is useful when you have multiple devices connected and need to communicate with them individually. SPI_SS_PIN can be passed to spi_start() to refer to SS.

ChibiOS/ARM Configuration

You'll need to determine which pins can be used for SPI -- as an example, STM32 parts generally have multiple SPI peripherals, labeled SPI1, SPI2, SPI3 etc.

To enable SPI, modify your board's halconf.h to enable SPI, then modify your board's mcuconf.h to enable the peripheral you've chosen:

c
#pragma once\n\n#define HAL_USE_SPI TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_SPI_USE_SPI2\n#define STM32_SPI_USE_SPI2 TRUE

Configuration-wise, you'll need to set up the peripheral as per your MCU's datasheet -- the defaults match the pins for a Proton-C, i.e. STM32F303.

config.h OverrideDescriptionDefault
SPI_DRIVERSPI peripheral to use - SPI1 -> SPID1, SPI2 -> SPID2 etc.SPID2
SPI_SCK_PINThe pin to use for SCKB13
SPI_SCK_PAL_MODEThe alternate function mode for SCK5
SPI_MOSI_PINThe pin to use for MOSIB15
SPI_MOSI_PAL_MODEThe alternate function mode for MOSI5
SPI_MISO_PINThe pin to use for MISOB14
SPI_MISO_PAL_MODEThe alternate function mode for MISO5

As per the AVR configuration, you may choose any other standard GPIO as a slave select pin, which should be supplied to spi_start().

If a complete SPI interface is not required, then the following can be done to disable certain SPI pins, so they don't occupy a GPIO unnecessarily:

API

void spi_init(void)

Initialize the SPI driver. This function must be called only once, before any of the below functions can be called.


bool spi_start(pin_t slavePin, bool lsbFirst, uint8_t mode, uint16_t divisor)

Start an SPI transaction.

Arguments

Return Value

true if the operation was successful, otherwise false if the supplied parameters are invalid or the SPI peripheral is already in use.


spi_status_t spi_write(uint8_t data)

Write a byte to the selected SPI device.

Arguments

Return Value

SPI_STATUS_TIMEOUT if the timeout period elapses, or SPI_STATUS_SUCCESS.


spi_status_t spi_read(void)

Read a byte from the selected SPI device.

Return Value

SPI_STATUS_TIMEOUT if the timeout period elapses, otherwise the byte read from the device.


spi_status_t spi_transmit(const uint8_t *data, uint16_t length)

Send multiple bytes to the selected SPI device.

Arguments

Return Value

SPI_STATUS_TIMEOUT if the timeout period elapses, SPI_STATUS_ERROR if some other error occurs, otherwise SPI_STATUS_SUCCESS.


spi_status_t spi_receive(uint8_t *data, uint16_t length)

Receive multiple bytes from the selected SPI device.

Arguments

Return Value

SPI_STATUS_TIMEOUT if the timeout period elapses, SPI_STATUS_ERROR if some other error occurs, otherwise SPI_STATUS_SUCCESS.


void spi_stop(void)

End the current SPI transaction. This will deassert the slave select pin and reset the endianness, mode and divisor configured by spi_start().

', 59) + createStaticVNode('

SPI Master Driver

The SPI Master drivers used in QMK have a set of common functions to allow portability between MCUs.

Usage

In most cases, the SPI Master driver code is automatically included if you are using a feature or driver which requires it, such as OLED.

However, if you need to use the driver standalone, add the following to your rules.mk:

make
SPI_DRIVER_REQUIRED = yes

You can then call the SPI API by including spi_master.h in your code.

AVR Configuration

No special setup is required - just connect the SS, SCK, MOSI and MISO pins of your SPI devices to the matching pins on the MCU:

MCUSSSCKMOSIMISO
ATmega16/32U2/4B0B1B2B3
AT90USB64/128/162B0B1B2B3
ATmega32AB4B7B5B6
ATmega328/PB2B5B3B4

You may use more than one slave select pin, not just the SS pin. This is useful when you have multiple devices connected and need to communicate with them individually. SPI_SS_PIN can be passed to spi_start() to refer to SS.

ChibiOS/ARM Configuration

You'll need to determine which pins can be used for SPI -- as an example, STM32 parts generally have multiple SPI peripherals, labeled SPI1, SPI2, SPI3 etc.

To enable SPI, modify your board's halconf.h to enable SPI, then modify your board's mcuconf.h to enable the peripheral you've chosen:

c
#pragma once\n\n#define HAL_USE_SPI TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_SPI_USE_SPI2\n#define STM32_SPI_USE_SPI2 TRUE

Configuration-wise, you'll need to set up the peripheral as per your MCU's datasheet -- the defaults match the pins for a Proton-C, i.e. STM32F303.

config.h OverrideDescriptionDefault
SPI_DRIVERSPI peripheral to use - SPI1 -> SPID1, SPI2 -> SPID2 etc.SPID2
SPI_SCK_PINThe pin to use for SCKB13
SPI_SCK_PAL_MODEThe alternate function mode for SCK5
SPI_MOSI_PINThe pin to use for MOSIB15
SPI_MOSI_PAL_MODEThe alternate function mode for MOSI5
SPI_MISO_PINThe pin to use for MISOB14
SPI_MISO_PAL_MODEThe alternate function mode for MISO5

As per the AVR configuration, you may choose any other standard GPIO as a slave select pin, which should be supplied to spi_start().

If a complete SPI interface is not required, then the following can be done to disable certain SPI pins, so they don't occupy a GPIO unnecessarily:

API

void spi_init(void)

Initialize the SPI driver. This function must be called only once, before any of the below functions can be called.


bool spi_start(pin_t slavePin, bool lsbFirst, uint8_t mode, uint16_t divisor)

Start an SPI transaction.

Arguments

Return Value

true if the operation was successful, otherwise false if the supplied parameters are invalid or the SPI peripheral is already in use.


spi_status_t spi_write(uint8_t data)

Write a byte to the selected SPI device.

Arguments

Return Value

SPI_STATUS_TIMEOUT if the timeout period elapses, or SPI_STATUS_SUCCESS.


spi_status_t spi_read(void)

Read a byte from the selected SPI device.

Return Value

SPI_STATUS_TIMEOUT if the timeout period elapses, otherwise the byte read from the device.


spi_status_t spi_transmit(const uint8_t *data, uint16_t length)

Send multiple bytes to the selected SPI device.

Arguments

Return Value

SPI_STATUS_TIMEOUT if the timeout period elapses, SPI_STATUS_ERROR if some other error occurs, otherwise SPI_STATUS_SUCCESS.


spi_status_t spi_receive(uint8_t *data, uint16_t length)

Receive multiple bytes from the selected SPI device.

Arguments

Return Value

SPI_STATUS_TIMEOUT if the timeout period elapses, SPI_STATUS_ERROR if some other error occurs, otherwise SPI_STATUS_SUCCESS.


void spi_stop(void)

End the current SPI transaction. This will deassert the slave select pin and reset the endianness, mode and divisor configured by spi_start().

', 59) ])]); } const spi = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); diff --git a/assets/drivers_spi.md.D4Me9hD5.lean.js b/assets/drivers_spi.md.CbmshMLW.lean.js similarity index 100% rename from assets/drivers_spi.md.D4Me9hD5.lean.js rename to assets/drivers_spi.md.CbmshMLW.lean.js diff --git a/assets/drivers_ws2812.md.BaongaWM.js b/assets/drivers_ws2812.md.C7B14Q5R.js similarity index 97% rename from assets/drivers_ws2812.md.BaongaWM.js rename to assets/drivers_ws2812.md.C7B14Q5R.js index 16402e51ddd..b06df105fca 100644 --- a/assets/drivers_ws2812.md.BaongaWM.js +++ b/assets/drivers_ws2812.md.C7B14Q5R.js @@ -3,7 +3,7 @@ const __pageData = JSON.parse('{"title":"WS2812 Driver","description":"","frontm const _sfc_main = { name: "drivers/ws2812.md" }; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode('

WS2812 Driver

This driver provides support for WorldSemi addressable RGB(W) LEDs, and compatible equivalents:

These LEDs are often called "addressable" because instead of using a wire per color (and per LED), each LED contains a small microchip that understands a special protocol sent over a single wire. The LEDs can be chained together, and the remaining data is passed on to the next. In this way, you can easily control the color of many LEDs using a single GPIO.

Usage

In most cases, the WS2812 driver code is automatically included if you are using either the RGBLight or RGB Matrix feature with the ws2812 driver set, and you would use those APIs instead.

However, if you need to use the driver standalone, add the following to your rules.mk:

make
WS2812_DRIVER_REQUIRED = yes

You can then call the WS2812 API by including ws2812.h in your code.

Basic Configuration

Add the following to your config.h:

DefineDefaultDescription
WS2812_DI_PINNot definedThe GPIO pin connected to the DI pin of the first LED in the chain
WS2812_LED_COUNTNot definedNumber of LEDs in the WS2812 chain - automatically set when RGBLight or RGB Matrix is configured
WS2812_TIMING1250The total length of a bit (TH+TL) in nanoseconds
WS2812_T1H900The length of a "1" bit's high phase in nanoseconds
WS2812_T0H350The length of a "0" bit's high phase in nanoseconds
WS2812_TRST_US280The length of the reset phase in microseconds
WS2812_BYTE_ORDERWS2812_BYTE_ORDER_GRBThe byte order of the RGB data
WS2812_RGBWNot definedEnables RGBW support (except i2c driver)

Timing Adjustment

The WS2812 LED communication protocol works by encoding a "1" bit with a long high pulse (T1H), and a "0" bit with a shorter pulse (T0H). The total cycle length of a bit is the same. The "reset" pulse (TRST) latches the sent RGB data to all of the LEDs and denotes a completed "frame".

Some WS2812 variants have slightly different timing parameter requirements, which can be accounted for if necessary using the above #defines in your config.h.

Byte Order

Some WS2812 variants may have their color components in a different physical or logical order. For example, the WS2812B-2020 has physically swapped red and green LEDs, which causes the wrong color to be displayed, because the default order of the bytes sent over the wire is defined as GRB. If you find your LED colors are consistently swapped, you may need to change the byte order by adding the following to your config.h:

c
#define WS2812_BYTE_ORDER WS2812_BYTE_ORDER_GRB

Where the byte order may be one of:

Byte OrderKnown Devices
GRBMost WS2812s, SK6812, SK6805
RGBWS2812B-2020
BGRTM1812

RGBW Support

Rendering the color white with RGB LEDs is typically inconsistent due to inherent variations between each individual LED die. However, some WS2812 variants (such as SK6812RGBW) also possess a white LED along with the red, green, and blue channels, which allows for a more accurate white to be displayed.

QMK can automatically convert the RGB data to be sent to the LEDs to mix in the white channel:

w = min(r, g, b)\nr -= w\ng -= w\nb -= w

Thus, an RGB triplet of 255,255,255 will simply turn on the white LED fully (0,0,0,255).

To enable RGBW conversion, add the following to your config.h:

c
#define WS2812_RGBW

Driver Configuration

Driver selection can be configured in rules.mk as WS2812_DRIVER, or in info.json as ws2812.driver. Valid values are bitbang (default), i2c, spi, pwm, vendor, or custom. See below for information on individual drivers.

Bitbang Driver

This is the default WS2812 driver. It operates by "bit-banging" ie. directly toggling the GPIO.

Please note that on AVR devices, due to the tight timing requirements longer chains and/or heavy CPU loads may cause visible lag. Unfortunately this driver is usually the only option for AVR.

make
WS2812_DRIVER = bitbang

I2C Driver

A specialized driver mainly used for PS2AVRGB (Bootmapper Client) boards, which possess an ATtiny85 that handles the WS2812 LEDs.

make
WS2812_DRIVER = i2c

The following #defines apply only to the i2c driver:

DefineDefaultDescription
WS2812_I2C_ADDRESS0xB0The I2C address of the ATtiny85.
WS2812_I2C_TIMEOUT100The I2C timeout, in milliseconds.

PIO Driver

This driver is RP2040-only, and leverages the onboard PIO (programmable I/O) system and DMA to offload processing from the CPU.

The WS2812 PIO program uses one state machine, six instructions and one DMA interrupt handler callback. Due to the implementation the time resolution for this driver is 50 ns - any value not specified in this interval will be rounded to the next matching interval.

make
WS2812_DRIVER = vendor

PWM Driver

This driver is ARM-only, and leverages the onboard PWM peripheral and DMA to offload processing from the CPU.

make
WS2812_DRIVER = pwm

SPI Driver

This driver is ARM-only, and leverages the onboard SPI peripheral and DMA to offload processing from the CPU. The DI pin must be connected to the MOSI pin on the MCU, and all other SPI pins must be left unused. This is also very dependent on your MCU's SPI peripheral clock speed, and may or may not be possible depending on the MCU selected.

make
WS2812_DRIVER = spi

ChibiOS/ARM Configuration

The following defines apply only to ARM devices:

DefineDefaultDescription
WS2812_T1L(WS2812_TIMING - WS2812_T1H)The length of a "1" bit's low phase in nanoseconds (bitbang and PIO drivers only)
WS2812_T0L(WS2812_TIMING - WS2812_T0H)The length of a "0" bit's low phase in nanoseconds (bitbang and PIO drivers only)

Logic Levels

WS2812 LEDs usually operate at 5V, but some microcontrollers, particularly ARM-based ones, run on 3.3V. This can pose an issue when driving the LED chain as the logic level voltage is lower than the power supply voltage, leading to unreliable data transmission. There are two main workarounds:

1. Open Drain Circuit

By default, WS2812_DI_PIN is configured as a push-pull output, meaning the pin is effectively always driven either to VCC or to ground; however, it can be configured in open drain mode instead.

In this mode, the MCU will only pull the GPIO low, and leaves it floating otherwise. A pullup resistor (typically around 10kΩ) between DI and 5V is then responsible for pulling the line high when the MCU is not driving the GPIO.

To use the DI pin in open drain configuration, add the following to your config.h:

c
#define WS2812_EXTERNAL_PULLUP

WARNING

Because the GPIO is being pulled to 5V in this situation rather than VCC (3.3V), it must be a 5V tolerant pin. Consult your MCU's datasheet first – if there are no eligible pins, you must use a level shifter instead.

2. Level Shifter

A level shifter IC, such as the SN74LV1T34, can be placed between the GPIO and the first LED's DI pin to convert the 3.3V logic to 5V. This requires no additional configuration in the firmware, nor a 5V tolerant GPIO, but may be more expensive and is generally less handwire-friendly.

SPI Driver

Depending on the ChibiOS board configuration, you may need to enable SPI at the keyboard level. For STM32, this would look like:

c
#pragma once\n\n#define HAL_USE_SPI TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_SPI_USE_SPI1\n#define STM32_SPI_USE_SPI1 TRUE

The following defines apply only to the spi driver:

DefineDefaultDescription
WS2812_SPI_DRIVERSPID1The SPI driver to use
WS2812_SPI_MOSI_PAL_MODE5The MOSI pin alternative function to use
WS2812_SPI_SCK_PINNot definedThe SCK pin - required for F072 and possibly others
WS2812_SPI_SCK_PAL_MODE5The SCK pin alternative function to use - required for F072 and possibly others
WS2812_SPI_DIVISOR16The divisor used to adjust the baudrate
WS2812_SPI_USE_CIRCULAR_BUFFERNot definedEnable a circular buffer for improved rendering

Setting the Baudrate

To adjust the SPI baudrate, you will need to derive the target baudrate from the clock tree provided by STM32CubeMX, and add the following to your config.h:

c
#define WS2812_SPI_DIVISOR 16

Only divisors of 2, 4, 8, 16, 32, 64, 128 and 256 are supported on STM32 devices. Other MCUs may have similar constraints -- check the reference manual for your respective MCU for specifics.

Circular Buffer

A circular buffer can be enabled if you experience flickering.

To enable the circular buffer, add the following to your config.h:

c
#define WS2812_SPI_USE_CIRCULAR_BUFFER

PIO Driver

The following #defines apply only to the PIO driver:

DefineDefaultDescription
WS2812_PIO_USE_PIO1Not definedUse the PIO1 peripheral instead of PIO0

PWM Driver

Depending on the ChibiOS board configuration, you may need to enable PWM at the keyboard level. For STM32, this would look like:

c
#pragma once\n\n#define HAL_USE_PWM TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_PWM_USE_TIM2\n#define STM32_PWM_USE_TIM2 TRUE

The following #defines apply only to the pwm driver:

DefineDefaultDescription
WS2812_PWM_DRIVERPWMD2The PWM driver to use
WS2812_PWM_CHANNEL2The PWM channel to use
WS2812_PWM_PAL_MODE2The pin alternative function to use
WS2812_PWM_DMA_STREAMSTM32_DMA1_STREAM2The DMA Stream for TIMx_UP
WS2812_PWM_DMA_CHANNEL2The DMA Channel for TIMx_UP
WS2812_PWM_DMAMUX_IDNot definedThe DMAMUX configuration for TIMx_UP - only required if your MCU has a DMAMUX peripheral
WS2812_PWM_COMPLEMENTARY_OUTPUTNot definedWhether the PWM output is complementary (TIMx_CHyN)

TIP

Using a complementary timer output (TIMx_CHyN) is possible only for advanced-control timers (1, 8 and 20 on STM32). Complementary outputs of general-purpose timers are not supported due to ChibiOS limitations.

API

void ws2812_init(void)

Initialize the LED driver. This function should be called first.


void ws2812_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

Set the color of a single LED. This function does not immediately update the LEDs; call ws2812_flush() after you are finished.

Arguments


void ws2812_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

Set the color of all LEDs.

Arguments


void ws2812_flush(void)

Flush the PWM values to the LED chain.

', 99) + createStaticVNode('

WS2812 Driver

This driver provides support for WorldSemi addressable RGB(W) LEDs, and compatible equivalents:

These LEDs are often called "addressable" because instead of using a wire per color (and per LED), each LED contains a small microchip that understands a special protocol sent over a single wire. The LEDs can be chained together, and the remaining data is passed on to the next. In this way, you can easily control the color of many LEDs using a single GPIO.

Usage

In most cases, the WS2812 driver code is automatically included if you are using either the RGBLight or RGB Matrix feature with the ws2812 driver set, and you would use those APIs instead.

However, if you need to use the driver standalone, add the following to your rules.mk:

make
WS2812_DRIVER_REQUIRED = yes

You can then call the WS2812 API by including ws2812.h in your code.

Basic Configuration

Add the following to your config.h:

DefineDefaultDescription
WS2812_DI_PINNot definedThe GPIO pin connected to the DI pin of the first LED in the chain
WS2812_LED_COUNTNot definedNumber of LEDs in the WS2812 chain - automatically set when RGBLight or RGB Matrix is configured
WS2812_TIMING1250The total length of a bit (TH+TL) in nanoseconds
WS2812_T1H900The length of a "1" bit's high phase in nanoseconds
WS2812_T0H350The length of a "0" bit's high phase in nanoseconds
WS2812_TRST_US280The length of the reset phase in microseconds
WS2812_BYTE_ORDERWS2812_BYTE_ORDER_GRBThe byte order of the RGB data
WS2812_RGBWNot definedEnables RGBW support (except i2c driver)

Timing Adjustment

The WS2812 LED communication protocol works by encoding a "1" bit with a long high pulse (T1H), and a "0" bit with a shorter pulse (T0H). The total cycle length of a bit is the same. The "reset" pulse (TRST) latches the sent RGB data to all of the LEDs and denotes a completed "frame".

Some WS2812 variants have slightly different timing parameter requirements, which can be accounted for if necessary using the above #defines in your config.h.

Byte Order

Some WS2812 variants may have their color components in a different physical or logical order. For example, the WS2812B-2020 has physically swapped red and green LEDs, which causes the wrong color to be displayed, because the default order of the bytes sent over the wire is defined as GRB. If you find your LED colors are consistently swapped, you may need to change the byte order by adding the following to your config.h:

c
#define WS2812_BYTE_ORDER WS2812_BYTE_ORDER_GRB

Where the byte order may be one of:

Byte OrderKnown Devices
GRBMost WS2812s, SK6812, SK6805
RGBWS2812B-2020
BGRTM1812

RGBW Support

Rendering the color white with RGB LEDs is typically inconsistent due to inherent variations between each individual LED die. However, some WS2812 variants (such as SK6812RGBW) also possess a white LED along with the red, green, and blue channels, which allows for a more accurate white to be displayed.

QMK can automatically convert the RGB data to be sent to the LEDs to mix in the white channel:

w = min(r, g, b)\nr -= w\ng -= w\nb -= w

Thus, an RGB triplet of 255,255,255 will simply turn on the white LED fully (0,0,0,255).

To enable RGBW conversion, add the following to your config.h:

c
#define WS2812_RGBW

Driver Configuration

Driver selection can be configured in rules.mk as WS2812_DRIVER, or in info.json as ws2812.driver. Valid values are bitbang (default), i2c, spi, pwm, vendor, or custom. See below for information on individual drivers.

Bitbang Driver

This is the default WS2812 driver. It operates by "bit-banging" ie. directly toggling the GPIO.

Please note that on AVR devices, due to the tight timing requirements longer chains and/or heavy CPU loads may cause visible lag. Unfortunately this driver is usually the only option for AVR.

make
WS2812_DRIVER = bitbang

I2C Driver

A specialized driver mainly used for PS2AVRGB (Bootmapper Client) boards, which possess an ATtiny85 that handles the WS2812 LEDs.

make
WS2812_DRIVER = i2c

The following #defines apply only to the i2c driver:

DefineDefaultDescription
WS2812_I2C_ADDRESS0xB0The I2C address of the ATtiny85.
WS2812_I2C_TIMEOUT100The I2C timeout, in milliseconds.

PIO Driver

This driver is RP2040-only, and leverages the onboard PIO (programmable I/O) system and DMA to offload processing from the CPU.

The WS2812 PIO program uses one state machine, six instructions and one DMA interrupt handler callback. Due to the implementation the time resolution for this driver is 50 ns - any value not specified in this interval will be rounded to the next matching interval.

make
WS2812_DRIVER = vendor

PWM Driver

This driver is ARM-only, and leverages the onboard PWM peripheral and DMA to offload processing from the CPU.

make
WS2812_DRIVER = pwm

SPI Driver

This driver is ARM-only, and leverages the onboard SPI peripheral and DMA to offload processing from the CPU. The DI pin must be connected to the MOSI pin on the MCU, and all other SPI pins must be left unused. This is also very dependent on your MCU's SPI peripheral clock speed, and may or may not be possible depending on the MCU selected.

make
WS2812_DRIVER = spi

ChibiOS/ARM Configuration

The following defines apply only to ARM devices:

DefineDefaultDescription
WS2812_T1L(WS2812_TIMING - WS2812_T1H)The length of a "1" bit's low phase in nanoseconds (bitbang and PIO drivers only)
WS2812_T0L(WS2812_TIMING - WS2812_T0H)The length of a "0" bit's low phase in nanoseconds (bitbang and PIO drivers only)

Logic Levels

WS2812 LEDs usually operate at 5V, but some microcontrollers, particularly ARM-based ones, run on 3.3V. This can pose an issue when driving the LED chain as the logic level voltage is lower than the power supply voltage, leading to unreliable data transmission. There are two main workarounds:

1. Open Drain Circuit

By default, WS2812_DI_PIN is configured as a push-pull output, meaning the pin is effectively always driven either to VCC or to ground; however, it can be configured in open drain mode instead.

In this mode, the MCU will only pull the GPIO low, and leaves it floating otherwise. A pullup resistor (typically around 10kΩ) between DI and 5V is then responsible for pulling the line high when the MCU is not driving the GPIO.

To use the DI pin in open drain configuration, add the following to your config.h:

c
#define WS2812_EXTERNAL_PULLUP

WARNING

Because the GPIO is being pulled to 5V in this situation rather than VCC (3.3V), it must be a 5V tolerant pin. Consult your MCU's datasheet first – if there are no eligible pins, you must use a level shifter instead.

2. Level Shifter

A level shifter IC, such as the SN74LV1T34, can be placed between the GPIO and the first LED's DI pin to convert the 3.3V logic to 5V. This requires no additional configuration in the firmware, nor a 5V tolerant GPIO, but may be more expensive and is generally less handwire-friendly.

SPI Driver

Depending on the ChibiOS board configuration, you may need to enable SPI at the keyboard level. For STM32, this would look like:

c
#pragma once\n\n#define HAL_USE_SPI TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_SPI_USE_SPI1\n#define STM32_SPI_USE_SPI1 TRUE

The following defines apply only to the spi driver:

DefineDefaultDescription
WS2812_SPI_DRIVERSPID1The SPI driver to use
WS2812_SPI_MOSI_PAL_MODE5The MOSI pin alternative function to use
WS2812_SPI_SCK_PINNot definedThe SCK pin - required for F072 and possibly others
WS2812_SPI_SCK_PAL_MODE5The SCK pin alternative function to use - required for F072 and possibly others
WS2812_SPI_DIVISOR16The divisor used to adjust the baudrate
WS2812_SPI_USE_CIRCULAR_BUFFERNot definedEnable a circular buffer for improved rendering

Setting the Baudrate

To adjust the SPI baudrate, you will need to derive the target baudrate from the clock tree provided by STM32CubeMX, and add the following to your config.h:

c
#define WS2812_SPI_DIVISOR 16

Only divisors of 2, 4, 8, 16, 32, 64, 128 and 256 are supported on STM32 devices. Other MCUs may have similar constraints -- check the reference manual for your respective MCU for specifics.

Circular Buffer

A circular buffer can be enabled if you experience flickering.

To enable the circular buffer, add the following to your config.h:

c
#define WS2812_SPI_USE_CIRCULAR_BUFFER

PIO Driver

The following #defines apply only to the PIO driver:

DefineDefaultDescription
WS2812_PIO_USE_PIO1Not definedUse the PIO1 peripheral instead of PIO0

PWM Driver

Depending on the ChibiOS board configuration, you may need to enable PWM at the keyboard level. For STM32, this would look like:

c
#pragma once\n\n#define HAL_USE_PWM TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_PWM_USE_TIM2\n#define STM32_PWM_USE_TIM2 TRUE

The following #defines apply only to the pwm driver:

DefineDefaultDescription
WS2812_PWM_DRIVERPWMD2The PWM driver to use
WS2812_PWM_CHANNEL2The PWM channel to use
WS2812_PWM_PAL_MODE2The pin alternative function to use
WS2812_PWM_DMA_STREAMSTM32_DMA1_STREAM2The DMA Stream for TIMx_UP
WS2812_PWM_DMA_CHANNEL2The DMA Channel for TIMx_UP
WS2812_PWM_DMAMUX_IDNot definedThe DMAMUX configuration for TIMx_UP - only required if your MCU has a DMAMUX peripheral
WS2812_PWM_COMPLEMENTARY_OUTPUTNot definedWhether the PWM output is complementary (TIMx_CHyN)

TIP

Using a complementary timer output (TIMx_CHyN) is possible only for advanced-control timers (1, 8 and 20 on STM32). Complementary outputs of general-purpose timers are not supported due to ChibiOS limitations.

API

void ws2812_init(void)

Initialize the LED driver. This function should be called first.


void ws2812_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

Set the color of a single LED. This function does not immediately update the LEDs; call ws2812_flush() after you are finished.

Arguments


void ws2812_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

Set the color of all LEDs.

Arguments


void ws2812_flush(void)

Flush the PWM values to the LED chain.

', 99) ])]); } const ws2812 = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); diff --git a/assets/drivers_ws2812.md.BaongaWM.lean.js b/assets/drivers_ws2812.md.C7B14Q5R.lean.js similarity index 100% rename from assets/drivers_ws2812.md.BaongaWM.lean.js rename to assets/drivers_ws2812.md.C7B14Q5R.lean.js diff --git a/assets/feature_layers.md.Bqm53P73.js b/assets/feature_layers.md.Bqm53P73.js deleted file mode 100644 index cf734414ddd..00000000000 --- a/assets/feature_layers.md.Bqm53P73.js +++ /dev/null @@ -1,13 +0,0 @@ -import { _ as _export_sfc, o as openBlock, c as createElementBlock, al as createStaticVNode } from "./chunks/framework.8zKZLKO7.js"; -const __pageData = JSON.parse('{"title":"Layers","description":"","frontmatter":{},"headers":[],"relativePath":"feature_layers.md","filePath":"feature_layers.md","lastUpdated":null}'); -const _sfc_main = { name: "feature_layers.md" }; -function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { - return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode('

Layers

One of the most powerful and well used features of QMK Firmware is the ability to use layers. For most people, this amounts to a function key that allows for different keys, much like what you would see on a laptop or tablet keyboard.

For a detailed explanation of how the layer stack works, checkout Keymap Overview.

Switching and Toggling Layers

These functions allow you to activate layers in various ways. Note that layers are not generally independent layouts -- multiple layers can be activated at once, and it's typical for layers to use KC_TRNS to allow keypresses to pass through to lower layers. When using momentary layer switching with MO(), LM(), TT(), or LT(), make sure to leave the key on the above layers transparent or it may not work as intended.

See also the Layer Lock key, which locks the highest active layer until pressed again.

Caveats

Currently, the layer argument of LT() is limited to layers 0-15, and the kc argument to the Basic Keycode set, meaning you can't use keycodes like LCTL(), KC_TILD, or anything greater than 0xFF. This is because QMK uses 16-bit keycodes, of which 4 bits are used for the function identifier and 4 bits for the layer, leaving only 8 bits for the keycode.

For a similar reason, the layer argument of LM() is also limited to layers 0-15 and the mod argument must fit within 5 bits. As a consequence, although left and right modifiers are supported by LM(), it is impossible to mix and match left and right modifiers. Specifying at least one right-hand modifier in a combination such as MOD_RALT|MOD_LSFT will convert all the listed modifiers to their right-hand counterpart. So, using the aforementioned mod-mask will actually send Right Alt+Right Shift. Make sure to use the MOD_xxx constants over alternative ways of specifying modifiers when defining your layer-mod key.

LM(1,KC_LSFT)LM(1,MOD_MASK_SHIFT)LM(1,MOD_BIT(KC_LSFT))LM(1,MOD_LSFT)

Expanding this would be complicated, at best. Moving to a 32-bit keycode would solve a lot of this, but would double the amount of space that the keymap matrix uses. And it could potentially cause issues, too. If you need to apply modifiers to your tapped keycode, Tap Dance can be used to accomplish this.

Working with Layers

Care must be taken when switching layers, it's possible to lock yourself into a layer with no way to deactivate that layer (without unplugging your keyboard.) We've created some guidelines to help users avoid the most common problems.

Beginners

If you are just getting started with QMK you will want to keep everything simple. Follow these guidelines when setting up your layers:

Intermediate Users

Sometimes you need more than one base layer. For example, if you want to switch between QWERTY and Dvorak, switch between layouts for different countries, or switch your layout for different videogames. Your base layers should always be the lowest numbered layers. When you have multiple base layers you should always treat them as mutually exclusive. When one base layer is on the others are off.

Advanced Users

Once you have a good feel for how layers work and what you can do, you can get more creative. The rules listed in the beginner section will help you be successful by avoiding some of the trickier details but they can be constraining, especially for ultra-compact keyboard users. Understanding how layers work will allow you to use them in more advanced ways.

Layers stack on top of each other in numerical order. When determining what a keypress does, QMK scans the layers from the top down, stopping when it reaches the first active layer that is not set to KC_TRNS. As a result if you activate a layer that is numerically lower than your current layer, and your current layer (or another layer that is active and higher than your target layer) has something other than KC_TRNS, that is the key that will be sent, not the key on the layer you just activated. This is the cause of most people's "why doesn't my layer get switched" problem.

Sometimes, you might want to switch between layers in a macro or as part of a tap dance routine. layer_on activates a layer, and layer_off deactivates it. More layer-related functions can be found in action_layer.h.

Functions

There are a number of functions (and variables) related to how you can use or manipulate the layers.

FunctionDescription
layer_state_set(layer_mask)Directly sets the layer state (avoid unless you know what you are doing).
layer_clear()Clears all layers (turns them all off).
layer_move(layer)Turns specified layer on, and all other layers off.
layer_on(layer)Turns specified layer on, leaves all other layers in existing state.
layer_off(layer)Turns specified layer off, leaves all other layers in existing state.
layer_invert(layer)Inverts/toggles the state of the specified layer
layer_or(layer_mask)Turns on layers based on matching bits between specified layer and existing layer state.
layer_and(layer_mask)Turns on layers based on matching enabled bits between specified layer and existing layer state.
layer_xor(layer_mask)Turns on layers based on non-matching bits between specified layer and existing layer state.
layer_debug(layer_mask)Prints out the current bit mask and highest active layer to debugger console.
default_layer_set(layer_mask)Directly sets the default layer state (avoid unless you know what you are doing).
default_layer_or(layer_mask)Turns on layers based on matching bits between specified layer and existing default layer state.
default_layer_and(layer_mask)Turns on layers based on matching enabled bits between specified layer and existing default layer state.
default_layer_xor(layer_mask)Turns on layers based on non-matching bits between specified layer and existing default layer state.
default_layer_debug(layer_mask)Prints out the current bit mask and highest active default layer to debugger console.
set_single_default_layer(layer)Sets the default layer, but does not write it to persistent memory (EEPROM).
set_single_persistent_default_layer(layer)Sets the default layer and writes it to persistent memory (EEPROM).
update_tri_layer(x, y, z)Checks if layers x and y are both on, and sets z based on that (on if both on, otherwise off).
update_tri_layer_state(state, x, y, z)Does the same as update_tri_layer(x, y, z), but from layer_state_set_* functions.

In addition to the functions that you can call, there are a number of callback functions that get called every time the layer changes. This passes the layer state to the function, where it can be read or modified.

CallbackDescription
layer_state_set_kb(layer_state_t state)Callback for layer functions, for keyboard.
layer_state_set_user(layer_state_t state)Callback for layer functions, for users.
default_layer_state_set_kb(layer_state_t state)Callback for default layer functions, for keyboard. Called on keyboard initialization.
default_layer_state_set_user(layer_state_t state)Callback for default layer functions, for users. Called on keyboard initialization.

TIP

For additional details on how you can use these callbacks, check out the Layer Change Code document.

It is also possible to check the state of a particular layer using the following functions and macros.

FunctionDescriptionAliases
layer_state_is(layer)Checks if the specified layer is enabled globally.IS_LAYER_ON(layer), IS_LAYER_OFF(layer)
layer_state_cmp(state, layer)Checks state to see if the specified layer is enabled. Intended for use in layer callbacks.IS_LAYER_ON_STATE(state, layer), IS_LAYER_OFF_STATE(state, layer)

Layer Change Code

This runs code every time that the layers get changed. This can be useful for layer indication, or custom layer handling.

Example layer_state_set_* Implementation

This example shows how to set the RGB Underglow lights based on the layer, using the Planck as an example.

c
layer_state_t layer_state_set_user(layer_state_t state) {\n    switch (get_highest_layer(state)) {\n    case _RAISE:\n        rgblight_setrgb (0x00,  0x00, 0xFF);\n        break;\n    case _LOWER:\n        rgblight_setrgb (0xFF,  0x00, 0x00);\n        break;\n    case _PLOVER:\n        rgblight_setrgb (0x00,  0xFF, 0x00);\n        break;\n    case _ADJUST:\n        rgblight_setrgb (0x7A,  0x00, 0xFF);\n        break;\n    default: //  for any other layers, or the default layer\n        rgblight_setrgb (0x00,  0xFF, 0xFF);\n        break;\n    }\n  return state;\n}

Example: Keycode to cycle through layers

This example shows how to implement a custom keycode to cycle through a range of layers.

c
// Define the keycode, `QK_USER` avoids collisions with existing keycodes\nenum keycodes {\n  KC_CYCLE_LAYERS = QK_USER,\n};\n\n// 1st layer on the cycle\n#define LAYER_CYCLE_START 0\n// Last layer on the cycle\n#define LAYER_CYCLE_END   4\n\n// Add the behaviour of this new keycode\nbool process_record_user(uint16_t keycode, keyrecord_t *record) {\n  switch (keycode) {\n    case KC_CYCLE_LAYERS:\n      // Our logic will happen on presses, nothing is done on releases\n      if (!record->event.pressed) {\n        // We've already handled the keycode (doing nothing), let QMK know so no further code is run unnecessarily\n        return false;\n      }\n\n      uint8_t current_layer = get_highest_layer(layer_state);\n\n      // Check if we are within the range, if not quit\n      if (current_layer > LAYER_CYCLE_END || current_layer < LAYER_CYCLE_START) {\n        return false;\n      }\n\n      uint8_t next_layer = current_layer + 1;\n      if (next_layer > LAYER_CYCLE_END) {\n          next_layer = LAYER_CYCLE_START;\n      }\n      layer_move(next_layer);\n      return false;\n\n    // Process other keycodes normally\n    default:\n      return true;\n  }\n}\n\n// Place `KC_CYCLE_LAYERS` as a keycode in your keymap

Use the IS_LAYER_ON_STATE(state, layer) and IS_LAYER_OFF_STATE(state, layer) macros to check the status of a particular layer.

Outside of layer_state_set_* functions, you can use the IS_LAYER_ON(layer) and IS_LAYER_OFF(layer) macros to check global layer state.

layer_state_set_* Function Documentation

The state is the bitmask of the active layers, as explained in the Keymap Overview

', 44) - ])]); -} -const feature_layers = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); -export { - __pageData, - feature_layers as default -}; diff --git a/assets/feature_layers.md.CENkIDP3.js b/assets/feature_layers.md.CENkIDP3.js new file mode 100644 index 00000000000..a44930aba56 --- /dev/null +++ b/assets/feature_layers.md.CENkIDP3.js @@ -0,0 +1,13 @@ +import { _ as _export_sfc, o as openBlock, c as createElementBlock, al as createStaticVNode } from "./chunks/framework.8zKZLKO7.js"; +const __pageData = JSON.parse('{"title":"Layers","description":"","frontmatter":{},"headers":[],"relativePath":"feature_layers.md","filePath":"feature_layers.md","lastUpdated":null}'); +const _sfc_main = { name: "feature_layers.md" }; +function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { + return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ + createStaticVNode('

Layers

One of the most powerful and well used features of QMK Firmware is the ability to use layers. For most people, this amounts to a function key that allows for different keys, much like what you would see on a laptop or tablet keyboard.

For a detailed explanation of how the layer stack works, checkout Keymap Overview.

Switching and Toggling Layers

These functions allow you to activate layers in various ways. Note that layers are not generally independent layouts -- multiple layers can be activated at once, and it's typical for layers to use KC_TRNS to allow keypresses to pass through to lower layers. When using momentary layer switching with MO(), LM(), TT(), or LT(), make sure to leave the key on the above layers transparent or it may not work as intended.

See also the Layer Lock key, which locks the highest active layer until pressed again.

Caveats

Currently, the layer argument of LT() is limited to layers 0-15, and the kc argument to the Basic Keycode set, meaning you can't use keycodes like LCTL(), KC_TILD, or anything greater than 0xFF. This is because QMK uses 16-bit keycodes, of which 4 bits are used for the function identifier and 4 bits for the layer, leaving only 8 bits for the keycode.

For a similar reason, the layer argument of LM() is also limited to layers 0-15 and the mod argument must fit within 5 bits. As a consequence, although left and right modifiers are supported by LM(), it is impossible to mix and match left and right modifiers. Specifying at least one right-hand modifier in a combination such as MOD_RALT|MOD_LSFT will convert all the listed modifiers to their right-hand counterpart. So, using the aforementioned mod-mask will actually send Right Alt+Right Shift. Make sure to use the MOD_xxx constants over alternative ways of specifying modifiers when defining your layer-mod key.

LM(1,KC_LSFT)LM(1,MOD_MASK_SHIFT)LM(1,MOD_BIT(KC_LSFT))LM(1,MOD_LSFT)

Expanding this would be complicated, at best. Moving to a 32-bit keycode would solve a lot of this, but would double the amount of space that the keymap matrix uses. And it could potentially cause issues, too. If you need to apply modifiers to your tapped keycode, Tap Dance can be used to accomplish this.

Working with Layers

Care must be taken when switching layers, it's possible to lock yourself into a layer with no way to deactivate that layer (without unplugging your keyboard.) We've created some guidelines to help users avoid the most common problems.

Beginners

If you are just getting started with QMK you will want to keep everything simple. Follow these guidelines when setting up your layers:

Intermediate Users

Sometimes you need more than one base layer. For example, if you want to switch between QWERTY and Dvorak, switch between layouts for different countries, or switch your layout for different videogames. Your base layers should always be the lowest numbered layers. When you have multiple base layers you should always treat them as mutually exclusive. When one base layer is on the others are off.

Advanced Users

Once you have a good feel for how layers work and what you can do, you can get more creative. The rules listed in the beginner section will help you be successful by avoiding some of the trickier details but they can be constraining, especially for ultra-compact keyboard users. Understanding how layers work will allow you to use them in more advanced ways.

Layers stack on top of each other in numerical order. When determining what a keypress does, QMK scans the layers from the top down, stopping when it reaches the first active layer that is not set to KC_TRNS. As a result if you activate a layer that is numerically lower than your current layer, and your current layer (or another layer that is active and higher than your target layer) has something other than KC_TRNS, that is the key that will be sent, not the key on the layer you just activated. This is the cause of most people's "why doesn't my layer get switched" problem.

Sometimes, you might want to switch between layers in a macro or as part of a tap dance routine. layer_on activates a layer, and layer_off deactivates it. More layer-related functions can be found in action_layer.h.

Functions

There are a number of functions (and variables) related to how you can use or manipulate the layers.

FunctionDescription
layer_state_set(layer_mask)Directly sets the layer state (avoid unless you know what you are doing).
layer_clear()Clears all layers (turns them all off).
layer_move(layer)Turns specified layer on, and all other layers off.
layer_on(layer)Turns specified layer on, leaves all other layers in existing state.
layer_off(layer)Turns specified layer off, leaves all other layers in existing state.
layer_invert(layer)Inverts/toggles the state of the specified layer
layer_or(layer_mask)Turns on layers based on matching bits between specified layer and existing layer state.
layer_and(layer_mask)Turns on layers based on matching enabled bits between specified layer and existing layer state.
layer_xor(layer_mask)Turns on layers based on non-matching bits between specified layer and existing layer state.
layer_debug(layer_mask)Prints out the current bit mask and highest active layer to debugger console.
default_layer_set(layer_mask)Directly sets the default layer state (avoid unless you know what you are doing).
default_layer_or(layer_mask)Turns on layers based on matching bits between specified layer and existing default layer state.
default_layer_and(layer_mask)Turns on layers based on matching enabled bits between specified layer and existing default layer state.
default_layer_xor(layer_mask)Turns on layers based on non-matching bits between specified layer and existing default layer state.
default_layer_debug(layer_mask)Prints out the current bit mask and highest active default layer to debugger console.
set_single_default_layer(layer)Sets the default layer, but does not write it to persistent memory (EEPROM).
set_single_persistent_default_layer(layer)Sets the default layer and writes it to persistent memory (EEPROM).
update_tri_layer(x, y, z)Checks if layers x and y are both on, and sets z based on that (on if both on, otherwise off).
update_tri_layer_state(state, x, y, z)Does the same as update_tri_layer(x, y, z), but from layer_state_set_* functions.

In addition to the functions that you can call, there are a number of callback functions that get called every time the layer changes. This passes the layer state to the function, where it can be read or modified.

CallbackDescription
layer_state_set_kb(layer_state_t state)Callback for layer functions, for keyboard.
layer_state_set_user(layer_state_t state)Callback for layer functions, for users.
default_layer_state_set_kb(layer_state_t state)Callback for default layer functions, for keyboard. Called on keyboard initialization.
default_layer_state_set_user(layer_state_t state)Callback for default layer functions, for users. Called on keyboard initialization.

TIP

For additional details on how you can use these callbacks, check out the Layer Change Code document.

It is also possible to check the state of a particular layer using the following functions and macros.

FunctionDescriptionAliases
layer_state_is(layer)Checks if the specified layer is enabled globally.IS_LAYER_ON(layer), IS_LAYER_OFF(layer)
layer_state_cmp(state, layer)Checks state to see if the specified layer is enabled. Intended for use in layer callbacks.IS_LAYER_ON_STATE(state, layer), IS_LAYER_OFF_STATE(state, layer)

Layer Change Code

This runs code every time that the layers get changed. This can be useful for layer indication, or custom layer handling.

Example layer_state_set_* Implementation

This example shows how to set the RGB Underglow lights based on the layer, using the Planck as an example.

c
layer_state_t layer_state_set_user(layer_state_t state) {\n    switch (get_highest_layer(state)) {\n    case _RAISE:\n        rgblight_setrgb (0x00,  0x00, 0xFF);\n        break;\n    case _LOWER:\n        rgblight_setrgb (0xFF,  0x00, 0x00);\n        break;\n    case _PLOVER:\n        rgblight_setrgb (0x00,  0xFF, 0x00);\n        break;\n    case _ADJUST:\n        rgblight_setrgb (0x7A,  0x00, 0xFF);\n        break;\n    default: //  for any other layers, or the default layer\n        rgblight_setrgb (0x00,  0xFF, 0xFF);\n        break;\n    }\n  return state;\n}

Example: Keycode to cycle through layers

This example shows how to implement a custom keycode to cycle through a range of layers.

c
// Define the keycode, `QK_USER` avoids collisions with existing keycodes\nenum keycodes {\n  KC_CYCLE_LAYERS = QK_USER,\n};\n\n// 1st layer on the cycle\n#define LAYER_CYCLE_START 0\n// Last layer on the cycle\n#define LAYER_CYCLE_END   4\n\n// Add the behaviour of this new keycode\nbool process_record_user(uint16_t keycode, keyrecord_t *record) {\n  switch (keycode) {\n    case KC_CYCLE_LAYERS:\n      // Our logic will happen on presses, nothing is done on releases\n      if (!record->event.pressed) {\n        // We've already handled the keycode (doing nothing), let QMK know so no further code is run unnecessarily\n        return false;\n      }\n\n      uint8_t current_layer = get_highest_layer(layer_state);\n\n      // Check if we are within the range, if not quit\n      if (current_layer > LAYER_CYCLE_END || current_layer < LAYER_CYCLE_START) {\n        return false;\n      }\n\n      uint8_t next_layer = current_layer + 1;\n      if (next_layer > LAYER_CYCLE_END) {\n          next_layer = LAYER_CYCLE_START;\n      }\n      layer_move(next_layer);\n      return false;\n\n    // Process other keycodes normally\n    default:\n      return true;\n  }\n}\n\n// Place `KC_CYCLE_LAYERS` as a keycode in your keymap

Use the IS_LAYER_ON_STATE(state, layer) and IS_LAYER_OFF_STATE(state, layer) macros to check the status of a particular layer.

Outside of layer_state_set_* functions, you can use the IS_LAYER_ON(layer) and IS_LAYER_OFF(layer) macros to check global layer state.

layer_state_set_* Function Documentation

The state is the bitmask of the active layers, as explained in the Keymap Overview

', 44) + ])]); +} +const feature_layers = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); +export { + __pageData, + feature_layers as default +}; diff --git a/assets/feature_layers.md.Bqm53P73.lean.js b/assets/feature_layers.md.CENkIDP3.lean.js similarity index 100% rename from assets/feature_layers.md.Bqm53P73.lean.js rename to assets/feature_layers.md.CENkIDP3.lean.js diff --git a/assets/features_backlight.md.BpMPbAI2.js b/assets/features_backlight.md.BvvKoIoN.js similarity index 98% rename from assets/features_backlight.md.BpMPbAI2.js rename to assets/features_backlight.md.BvvKoIoN.js index 5fa3df7668b..6fbc3e3b4fe 100644 --- a/assets/features_backlight.md.BpMPbAI2.js +++ b/assets/features_backlight.md.BvvKoIoN.js @@ -4,7 +4,7 @@ const __pageData = JSON.parse('{"title":"Backlighting","description":"","frontma const _sfc_main = { name: "features/backlight.md" }; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode('

Backlighting

Many keyboards support backlit keys by way of individual LEDs placed through or underneath the keyswitches. This feature is distinct from both the RGB Underglow and RGB Matrix features as it usually allows for only a single colour per switch, though you can obviously install multiple different single coloured LEDs on a keyboard.

QMK is able to control the brightness of these LEDs by switching them on and off rapidly in a certain ratio, a technique known as Pulse Width Modulation, or PWM. By altering the duty cycle of the PWM signal, it creates the illusion of dimming.

Usage

Most keyboards have backlighting enabled by default if they support it, but if it is not working for you (or you have added support), check that your rules.mk includes the following:

make
BACKLIGHT_ENABLE = yes

Keycodes

KeyAliasesDescription
QK_BACKLIGHT_TOGGLEBL_TOGGTurn the backlight on or off
QK_BACKLIGHT_STEPBL_STEPCycle through backlight levels
QK_BACKLIGHT_ONBL_ONSet the backlight to max brightness
QK_BACKLIGHT_OFFBL_OFFTurn the backlight off
QK_BACKLIGHT_UPBL_UPIncrease the backlight level
QK_BACKLIGHT_DOWNBL_DOWNDecrease the backlight level
QK_BACKLIGHT_TOGGLE_BREATHINGBL_BRTGToggle backlight breathing

Basic Configuration

Add the following to your config.h:

DefineDefaultDescription
BACKLIGHT_PINNot definedThe pin that controls the LEDs
BACKLIGHT_LEVELS3The number of brightness levels (maximum 31 excluding off)
BACKLIGHT_CAPS_LOCKNot definedEnable Caps Lock indicator using backlight (for keyboards without dedicated LED)
BACKLIGHT_BREATHINGNot definedEnable backlight breathing, if supported
BREATHING_PERIOD6The length of one backlight "breath" in seconds
BACKLIGHT_ON_STATE1The state of the backlight pin when the backlight is "on" - 1 for high, 0 for low
BACKLIGHT_LIMIT_VAL255The maximum duty cycle of the backlight -- 255 allows for full brightness, any lower will decrease the maximum.
BACKLIGHT_DEFAULT_ONtrueEnable backlight upon clearing the EEPROM
BACKLIGHT_DEFAULT_BREATHINGfalseWhether to enable backlight breathing upon clearing the EEPROM
BACKLIGHT_DEFAULT_LEVELBACKLIGHT_LEVELSThe default backlight level to use upon clearing the EEPROM

Unless you are designing your own keyboard, you generally should not need to change the BACKLIGHT_PIN or BACKLIGHT_ON_STATE.

"On" State

Most backlight circuits are driven by an N-channel MOSFET or NPN transistor. This means that to turn the transistor on and light the LEDs, you must drive the backlight pin, connected to the gate or base, high. Sometimes, however, a P-channel MOSFET, or a PNP transistor is used. In this case, when the transistor is on, the pin is driven low instead.

To configure the "on" state of the backlight circuit, add the following to your config.h:

c
#define BACKLIGHT_ON_STATE 0

Multiple Backlight Pins

Most keyboards have only one backlight pin which controls all backlight LEDs (especially if the backlight is connected to a hardware PWM pin). The timer and software drivers allow you to define multiple backlight pins, which will be turned on and off at the same time during the PWM duty cycle.

This feature allows to set, for instance, the Caps Lock LED's (or any other controllable LED) brightness at the same level as the other LEDs of the backlight. This is useful if you have mapped Control in place of Caps Lock and you need the Caps Lock LED to be part of the backlight instead of being activated when Caps Lock is on, as it is usually wired to a separate pin from the backlight.

To configure multiple backlight pins, add something like this to your config.h, instead of BACKLIGHT_PIN:

c
#define BACKLIGHT_PINS { F5, B2 }

Driver Configuration

Backlight driver selection is configured in rules.mk. Valid drivers are pwm (default), timer, software, or custom. See below for information on individual drivers.

PWM Driver

This is the default backlight driver, which leverages the hardware PWM output capability of the microcontroller.

make
BACKLIGHT_DRIVER = pwm

Timer Driver

This driver is similar to the PWM driver, but instead of directly configuring the pin to output a PWM signal, an interrupt handler is attached to the timer to turn the pin on and off as appropriate.

make
BACKLIGHT_DRIVER = timer

Software Driver

In this mode, PWM is "emulated" while running other keyboard tasks. It offers maximum hardware compatibility without extra platform configuration. However, breathing is not supported, and the backlight can flicker when the keyboard is busy.

make
BACKLIGHT_DRIVER = software

Custom Driver

If none of the above drivers apply to your board (for example, you are using a separate IC to control the backlight), you can implement a custom backlight driver using a simple API.

make
BACKLIGHT_DRIVER = custom
c
void backlight_init_ports(void) {\n    // Optional - runs on startup\n    //   Usually you want to configure pins here\n}\nvoid backlight_set(uint8_t level) {\n    // Optional - runs on level change\n    //   Usually you want to respond to the new value\n}\n\nvoid backlight_task(void) {\n    // Optional - runs periodically\n    //   Note that this is called in the main keyboard loop,\n    //   so long running actions here can cause performance issues\n}

AVR Configuration

PWM Driver

The following table describes the supported pins for the PWM driver. Only cells marked with a timer number are capable of hardware PWM output; any others must use the timer driver.

Backlight PinAT90USB64/128AT90USB162ATmega16/32U4ATmega16/32U2ATmega32AATmega328/P
B1Timer 1
B2Timer 1
B5Timer 1Timer 1
B6Timer 1Timer 1
B7Timer 1Timer 1Timer 1Timer 1
C4Timer 3
C5Timer 3Timer 1Timer 1
C6Timer 3Timer 1Timer 3Timer 1
D4Timer 1
D5Timer 1

Timer Driver

Any GPIO pin can be used with this driver. The following table describes the supported timers:

AT90USB64/128AT90USB162ATmega16/32U4ATmega16/32U2ATmega32AATmega328/P
Timers 1 & 3Timer 1Timers 1 & 3Timer 1Timer 1Timer 1

The following #defines apply only to the timer driver:

DefineDefaultDescription
BACKLIGHT_PWM_TIMER1The timer to use

Note that the choice of timer may conflict with the Audio feature.

ChibiOS/ARM Configuration

PWM Driver

Depending on the ChibiOS board configuration, you may need to enable PWM at the keyboard level. For STM32, this would look like:

c
#pragma once\n\n#define HAL_USE_PWM TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_PWM_USE_TIM4\n#define STM32_PWM_USE_TIM4 TRUE

The following #defines apply only to the pwm driver:

DefineDefaultDescription
BACKLIGHT_PWM_DRIVERPWMD4The PWM driver to use
BACKLIGHT_PWM_CHANNEL3The PWM channel to use
BACKLIGHT_PAL_MODE2The pin alternative function to use
BACKLIGHT_PWM_PERIODNot definedThe PWM period in counter ticks - Default is platform dependent

Refer to the ST datasheet for your particular MCU to determine these values. For example, these defaults are set up for pin B8 on a Proton-C (STM32F303) using TIM4_CH3 on AF2. Unless you are designing your own keyboard, you generally should not need to change them.

Timer Driver

Depending on the ChibiOS board configuration, you may need to enable general-purpose timers at the keyboard level. For STM32, this would look like:

c
#pragma once\n\n#define HAL_USE_GPT TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_GPT_USE_TIM15\n#define STM32_GPT_USE_TIM15 TRUE

The following #defines apply only to the timer driver:

DefineDefaultDescription
BACKLIGHT_GPT_DRIVERGPTD15The timer to use

Example Schematic

Since the MCU can only supply so much current to its GPIO pins, instead of powering the backlight directly from the MCU, the backlight pin is connected to a transistor or MOSFET that switches the power to the LEDs.

In this typical example, the backlight LEDs are all connected in parallel towards an N-channel MOSFET. Its gate pin is wired to one of the microcontroller's GPIO pins through a 470Ω resistor to avoid ringing. A pulldown resistor is also placed between the gate pin and ground to keep it at a defined state when it is not otherwise being driven by the MCU. The values of these resistors are not critical - see this Electronics StackExchange question for more information.

Backlight example circuit

API

void backlight_toggle(void)

Toggle the backlight on or off.


void backlight_enable(void)

Turn the backlight on.


void backlight_disable(void)

Turn the backlight off.


void backlight_step(void)

Cycle through backlight levels.


void backlight_increase(void)

Increase the backlight level.


void backlight_decrease(void)

Decrease the backlight level.


void backlight_level(uint8_t level)

Set the backlight level.

Arguments


uint8_t get_backlight_level(void)

Get the current backlight level.

Return Value

The current backlight level, from 0 to BACKLIGHT_LEVELS.


bool is_backlight_enabled(void)

Get the current backlight state.

Return Value

true if the backlight is enabled.


void backlight_toggle_breathing(void)

Toggle backlight breathing on or off.


void backlight_enable_breathing(void)

Turn backlight breathing on.


void backlight_disable_breathing(void)

Turn backlight breathing off.


bool is_backlight_breathing(void)

Get the current backlight breathing state.

Return Value

true if backlight breathing is enabled.

', 109) + createStaticVNode('

Backlighting

Many keyboards support backlit keys by way of individual LEDs placed through or underneath the keyswitches. This feature is distinct from both the RGB Underglow and RGB Matrix features as it usually allows for only a single colour per switch, though you can obviously install multiple different single coloured LEDs on a keyboard.

QMK is able to control the brightness of these LEDs by switching them on and off rapidly in a certain ratio, a technique known as Pulse Width Modulation, or PWM. By altering the duty cycle of the PWM signal, it creates the illusion of dimming.

Usage

Most keyboards have backlighting enabled by default if they support it, but if it is not working for you (or you have added support), check that your rules.mk includes the following:

make
BACKLIGHT_ENABLE = yes

Keycodes

KeyAliasesDescription
QK_BACKLIGHT_TOGGLEBL_TOGGTurn the backlight on or off
QK_BACKLIGHT_STEPBL_STEPCycle through backlight levels
QK_BACKLIGHT_ONBL_ONSet the backlight to max brightness
QK_BACKLIGHT_OFFBL_OFFTurn the backlight off
QK_BACKLIGHT_UPBL_UPIncrease the backlight level
QK_BACKLIGHT_DOWNBL_DOWNDecrease the backlight level
QK_BACKLIGHT_TOGGLE_BREATHINGBL_BRTGToggle backlight breathing

Basic Configuration

Add the following to your config.h:

DefineDefaultDescription
BACKLIGHT_PINNot definedThe pin that controls the LEDs
BACKLIGHT_LEVELS3The number of brightness levels (maximum 31 excluding off)
BACKLIGHT_CAPS_LOCKNot definedEnable Caps Lock indicator using backlight (for keyboards without dedicated LED)
BACKLIGHT_BREATHINGNot definedEnable backlight breathing, if supported
BREATHING_PERIOD6The length of one backlight "breath" in seconds
BACKLIGHT_ON_STATE1The state of the backlight pin when the backlight is "on" - 1 for high, 0 for low
BACKLIGHT_LIMIT_VAL255The maximum duty cycle of the backlight -- 255 allows for full brightness, any lower will decrease the maximum.
BACKLIGHT_DEFAULT_ONtrueEnable backlight upon clearing the EEPROM
BACKLIGHT_DEFAULT_BREATHINGfalseWhether to enable backlight breathing upon clearing the EEPROM
BACKLIGHT_DEFAULT_LEVELBACKLIGHT_LEVELSThe default backlight level to use upon clearing the EEPROM

Unless you are designing your own keyboard, you generally should not need to change the BACKLIGHT_PIN or BACKLIGHT_ON_STATE.

"On" State

Most backlight circuits are driven by an N-channel MOSFET or NPN transistor. This means that to turn the transistor on and light the LEDs, you must drive the backlight pin, connected to the gate or base, high. Sometimes, however, a P-channel MOSFET, or a PNP transistor is used. In this case, when the transistor is on, the pin is driven low instead.

To configure the "on" state of the backlight circuit, add the following to your config.h:

c
#define BACKLIGHT_ON_STATE 0

Multiple Backlight Pins

Most keyboards have only one backlight pin which controls all backlight LEDs (especially if the backlight is connected to a hardware PWM pin). The timer and software drivers allow you to define multiple backlight pins, which will be turned on and off at the same time during the PWM duty cycle.

This feature allows to set, for instance, the Caps Lock LED's (or any other controllable LED) brightness at the same level as the other LEDs of the backlight. This is useful if you have mapped Control in place of Caps Lock and you need the Caps Lock LED to be part of the backlight instead of being activated when Caps Lock is on, as it is usually wired to a separate pin from the backlight.

To configure multiple backlight pins, add something like this to your config.h, instead of BACKLIGHT_PIN:

c
#define BACKLIGHT_PINS { F5, B2 }

Driver Configuration

Backlight driver selection is configured in rules.mk. Valid drivers are pwm (default), timer, software, or custom. See below for information on individual drivers.

PWM Driver

This is the default backlight driver, which leverages the hardware PWM output capability of the microcontroller.

make
BACKLIGHT_DRIVER = pwm

Timer Driver

This driver is similar to the PWM driver, but instead of directly configuring the pin to output a PWM signal, an interrupt handler is attached to the timer to turn the pin on and off as appropriate.

make
BACKLIGHT_DRIVER = timer

Software Driver

In this mode, PWM is "emulated" while running other keyboard tasks. It offers maximum hardware compatibility without extra platform configuration. However, breathing is not supported, and the backlight can flicker when the keyboard is busy.

make
BACKLIGHT_DRIVER = software

Custom Driver

If none of the above drivers apply to your board (for example, you are using a separate IC to control the backlight), you can implement a custom backlight driver using a simple API.

make
BACKLIGHT_DRIVER = custom
c
void backlight_init_ports(void) {\n    // Optional - runs on startup\n    //   Usually you want to configure pins here\n}\nvoid backlight_set(uint8_t level) {\n    // Optional - runs on level change\n    //   Usually you want to respond to the new value\n}\n\nvoid backlight_task(void) {\n    // Optional - runs periodically\n    //   Note that this is called in the main keyboard loop,\n    //   so long running actions here can cause performance issues\n}

AVR Configuration

PWM Driver

The following table describes the supported pins for the PWM driver. Only cells marked with a timer number are capable of hardware PWM output; any others must use the timer driver.

Backlight PinAT90USB64/128AT90USB162ATmega16/32U4ATmega16/32U2ATmega32AATmega328/P
B1Timer 1
B2Timer 1
B5Timer 1Timer 1
B6Timer 1Timer 1
B7Timer 1Timer 1Timer 1Timer 1
C4Timer 3
C5Timer 3Timer 1Timer 1
C6Timer 3Timer 1Timer 3Timer 1
D4Timer 1
D5Timer 1

Timer Driver

Any GPIO pin can be used with this driver. The following table describes the supported timers:

AT90USB64/128AT90USB162ATmega16/32U4ATmega16/32U2ATmega32AATmega328/P
Timers 1 & 3Timer 1Timers 1 & 3Timer 1Timer 1Timer 1

The following #defines apply only to the timer driver:

DefineDefaultDescription
BACKLIGHT_PWM_TIMER1The timer to use

Note that the choice of timer may conflict with the Audio feature.

ChibiOS/ARM Configuration

PWM Driver

Depending on the ChibiOS board configuration, you may need to enable PWM at the keyboard level. For STM32, this would look like:

c
#pragma once\n\n#define HAL_USE_PWM TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_PWM_USE_TIM4\n#define STM32_PWM_USE_TIM4 TRUE

The following #defines apply only to the pwm driver:

DefineDefaultDescription
BACKLIGHT_PWM_DRIVERPWMD4The PWM driver to use
BACKLIGHT_PWM_CHANNEL3The PWM channel to use
BACKLIGHT_PAL_MODE2The pin alternative function to use
BACKLIGHT_PWM_PERIODNot definedThe PWM period in counter ticks - Default is platform dependent

Refer to the ST datasheet for your particular MCU to determine these values. For example, these defaults are set up for pin B8 on a Proton-C (STM32F303) using TIM4_CH3 on AF2. Unless you are designing your own keyboard, you generally should not need to change them.

Timer Driver

Depending on the ChibiOS board configuration, you may need to enable general-purpose timers at the keyboard level. For STM32, this would look like:

c
#pragma once\n\n#define HAL_USE_GPT TRUE\n\n#include_next <halconf.h>
c
#pragma once\n\n#include_next <mcuconf.h>\n\n#undef STM32_GPT_USE_TIM15\n#define STM32_GPT_USE_TIM15 TRUE

The following #defines apply only to the timer driver:

DefineDefaultDescription
BACKLIGHT_GPT_DRIVERGPTD15The timer to use

Example Schematic

Since the MCU can only supply so much current to its GPIO pins, instead of powering the backlight directly from the MCU, the backlight pin is connected to a transistor or MOSFET that switches the power to the LEDs.

In this typical example, the backlight LEDs are all connected in parallel towards an N-channel MOSFET. Its gate pin is wired to one of the microcontroller's GPIO pins through a 470Ω resistor to avoid ringing. A pulldown resistor is also placed between the gate pin and ground to keep it at a defined state when it is not otherwise being driven by the MCU. The values of these resistors are not critical - see this Electronics StackExchange question for more information.

Backlight example circuit

API

void backlight_toggle(void)

Toggle the backlight on or off.


void backlight_enable(void)

Turn the backlight on.


void backlight_disable(void)

Turn the backlight off.


void backlight_step(void)

Cycle through backlight levels.


void backlight_increase(void)

Increase the backlight level.


void backlight_decrease(void)

Decrease the backlight level.


void backlight_level(uint8_t level)

Set the backlight level.

Arguments


uint8_t get_backlight_level(void)

Get the current backlight level.

Return Value

The current backlight level, from 0 to BACKLIGHT_LEVELS.


bool is_backlight_enabled(void)

Get the current backlight state.

Return Value

true if the backlight is enabled.


void backlight_toggle_breathing(void)

Toggle backlight breathing on or off.


void backlight_enable_breathing(void)

Turn backlight breathing on.


void backlight_disable_breathing(void)

Turn backlight breathing off.


bool is_backlight_breathing(void)

Get the current backlight breathing state.

Return Value

true if backlight breathing is enabled.

', 109) ])]); } const backlight = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); diff --git a/assets/features_backlight.md.BpMPbAI2.lean.js b/assets/features_backlight.md.BvvKoIoN.lean.js similarity index 100% rename from assets/features_backlight.md.BpMPbAI2.lean.js rename to assets/features_backlight.md.BvvKoIoN.lean.js diff --git a/assets/features_tap_dance.md.C__8yEyM.js b/assets/features_tap_dance.md.DEInXfWx.js similarity index 68% rename from assets/features_tap_dance.md.C__8yEyM.js rename to assets/features_tap_dance.md.DEInXfWx.js index 4381eacc349..c69ef45c31d 100644 --- a/assets/features_tap_dance.md.C__8yEyM.js +++ b/assets/features_tap_dance.md.DEInXfWx.js @@ -3,7 +3,7 @@ const __pageData = JSON.parse('{"title":"Tap Dance: A Single Key Can Do 3, 5, or const _sfc_main = { name: "features/tap_dance.md" }; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode('

Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things

Introduction

Hit the semicolon key once, send a semicolon. Hit it twice, rapidly -- send a colon. Hit it three times, and your keyboard's LEDs do a wild dance. That's just one example of what Tap Dance can do. It's one of the nicest community-contributed features in the firmware, conceived and created by algernon in #451. Here's how algernon describes the feature:

With this feature one can specify keys that behave differently, based on the amount of times they have been tapped, and when interrupted, they get handled before the interrupter.

How to Use Tap Dance

First, you will need TAP_DANCE_ENABLE = yes in your rules.mk, because the feature is disabled by default. This adds a little less than 1k to the firmware size.

Optionally, you might want to set a custom TAPPING_TERM time by adding something like this in your config.h file:

c
#define TAPPING_TERM 175\n#define TAPPING_TERM_PER_KEY

The TAPPING_TERM time is the maximum time allowed between taps of your Tap Dance key, and is measured in milliseconds. For example, if you used the above #define statement and set up a Tap Dance key that sends Space on single-tap and Enter on double-tap, then this key will send ENT only if you tap this key twice in less than 175ms. If you tap the key, wait more than 175ms, and tap the key again you'll end up sending SPC SPC instead. The TAPPING_TERM_PER_KEY definition is only needed if you control the tapping term through a custom get_tapping_term function, which may be needed because TAPPING_TERM affects not just tap-dance keys.

Next, you will want to define some tap-dance keys, which is easiest to do with the TD() macro. That macro takes a number which will later be used as an index into the tap_dance_actions array and turns it into a tap-dance keycode.

After this, you'll want to use the tap_dance_actions array to specify what actions shall be taken when a tap-dance key is in action. Currently, there are five possible options:

The first option is enough for a lot of cases, that just want dual roles. For example, ACTION_TAP_DANCE_DOUBLE(KC_SPC, KC_ENT) will result in Space being sent on single-tap, Enter otherwise.

WARNING

Keep in mind that only basic keycodes are supported here. Custom keycodes are not supported.

Similar to the first option, the second and third option are good for simple layer-switching cases.

For more complicated cases, like blink the LEDs, fiddle with the backlighting, and so on, use the fourth or fifth option. Examples of each are listed below.

TIP

If too many tap dances are active at the same time, later ones won't have any effect. You need to increase TAP_DANCE_MAX_SIMULTANEOUS by adding #define TAP_DANCE_MAX_SIMULTANEOUS 5 (or higher) to your keymap's config.h file if you expect that users may hold down many tap dance keys simultaneously. By default, only 3 tap dance keys can be used together at the same time.

Implementation Details

Well, that's the bulk of it! You should now be able to work through the examples below, and to develop your own Tap Dance functionality. But if you want a deeper understanding of what's going on behind the scenes, then read on for the explanation of how it all works!

Let's go over the three functions mentioned in ACTION_TAP_DANCE_FN_ADVANCED in a little more detail. They all receive the same two arguments: a pointer to a structure that holds all dance related state information, and a pointer to a use case specific state variable. The three functions differ in when they are called. The first, on_each_tap_fn(), is called every time the tap dance key is pressed. Before it is called, the counter is incremented and the timer is reset. The second function, on_dance_finished_fn(), is called when the tap dance is interrupted or ends because TAPPING_TERM milliseconds have passed since the last tap. When the finished field of the dance state structure is set to true, the on_dance_finished_fn() is skipped. After on_dance_finished_fn() was called or would have been called, but no sooner than when the tap dance key is released, on_dance_reset_fn() is called. It is possible to end a tap dance immediately, skipping on_dance_finished_fn(), but not on_dance_reset_fn, by calling reset_tap_dance(state).

To accomplish this logic, the tap dance mechanics use three entry points. The main entry point is process_tap_dance(), called from process_record_quantum() after process_record_kb() and process_record_user(). This function is responsible for calling on_each_tap_fn() and on_dance_reset_fn(). In order to handle interruptions of a tap dance, another entry point, preprocess_tap_dance() is run right at the beginning of process_record_quantum(). This function checks whether the key pressed is a tap-dance key. If it is not, and a tap-dance was in action, we handle that first, and enqueue the newly pressed key. If it is a tap-dance key, then we check if it is the same as the already active one (if there's one active, that is). If it is not, we fire off the old one first, then register the new one. Finally, tap_dance_task() periodically checks whether TAPPING_TERM has passed since the last key press and finishes a tap dance if that is the case.

This means that you have TAPPING_TERM time to tap the key again; you do not have to input all the taps within a single TAPPING_TERM timeframe. This allows for longer tap counts, with minimal impact on responsiveness.

Examples

Simple Example: Send ESC on Single Tap, CAPS_LOCK on Double Tap

Here's a simple example for a single definition:

  1. In your rules.mk, add TAP_DANCE_ENABLE = yes
  2. In your keymap.c file, define the variables and definitions, then add to your keymap:
c
// Tap Dance declarations\nenum {\n    TD_ESC_CAPS,\n};\n\n// Tap Dance definitions\ntap_dance_action_t tap_dance_actions[] = {\n    // Tap once for Escape, twice for Caps Lock\n    [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS),\n};\n\n// Add tap dance item to your keymap in place of a keycode\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {\n    // ...\n    TD(TD_ESC_CAPS)\n    // ...\n};

Complex Examples

This section details several complex tap dance examples. All the enums used in the examples are declared like this:

c
// Enums defined for all examples:\nenum {\n    TD_ESC_CAPS,\n    CT_EGG,\n    CT_FLSH,\n    CT_CLN,\n    X_CTL,\n};

Example 1: Send "Safety Dance!" After 100 Taps

c
void dance_egg(tap_dance_state_t *state, void *user_data) {\n    if (state->count >= 100) {\n        SEND_STRING("Safety dance!");\n        reset_tap_dance(state);\n    }\n}\n\ntap_dance_action_t tap_dance_actions[] = {\n    [CT_EGG] = ACTION_TAP_DANCE_FN(dance_egg),\n};

Example 2: Turn LED Lights On Then Off, One at a Time

c
// On each tap, light up one LED, from right to left\n// On the fourth tap, turn them off from right to left\nvoid dance_flsh_each(tap_dance_state_t *state, void *user_data) {\n    switch (state->count) {\n        case 1:\n            ergodox_right_led_3_on();\n            break;\n        case 2:\n            ergodox_right_led_2_on();\n            break;\n        case 3:\n            ergodox_right_led_1_on();\n            break;\n        case 4:\n            ergodox_right_led_3_off();\n            wait_ms(50);\n            ergodox_right_led_2_off();\n            wait_ms(50);\n            ergodox_right_led_1_off();\n    }\n}\n\n// On the fourth tap, set the keyboard on flash state\nvoid dance_flsh_finished(tap_dance_state_t *state, void *user_data) {\n    if (state->count >= 4) {\n        reset_keyboard();\n    }\n}\n\n// If the flash state didn't happen, then turn off LEDs, left to right\nvoid dance_flsh_reset(tap_dance_state_t *state, void *user_data) {\n    ergodox_right_led_1_off();\n    wait_ms(50);\n    ergodox_right_led_2_off();\n    wait_ms(50);\n    ergodox_right_led_3_off();\n}\n\n// All tap dances now put together. Example 2 is "CT_FLSH"\ntap_dance_action_t tap_dance_actions[] = {\n    [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS),\n    [CT_EGG] = ACTION_TAP_DANCE_FN(dance_egg),\n    [CT_FLSH] = ACTION_TAP_DANCE_FN_ADVANCED(dance_flsh_each, dance_flsh_finished, dance_flsh_reset)\n};

Example 3: Send : on Tap, ; on Hold

With a little effort, powerful tap-hold configurations can be implemented as tap dances. To emit taps as early as possible, we need to act on releases of the tap dance key. There is no callback for this in the tap dance framework, so we use process_record_user().

c
typedef struct {\n    uint16_t tap;\n    uint16_t hold;\n    uint16_t held;\n} tap_dance_tap_hold_t;\n\nvoid tap_dance_tap_hold_finished(tap_dance_state_t *state, void *user_data) {\n    tap_dance_tap_hold_t *tap_hold = (tap_dance_tap_hold_t *)user_data;\n\n    if (state->pressed) {\n        if (state->count == 1\n#ifndef PERMISSIVE_HOLD\n            && !state->interrupted\n#endif\n        ) {\n            register_code16(tap_hold->hold);\n            tap_hold->held = tap_hold->hold;\n        } else {\n            register_code16(tap_hold->tap);\n            tap_hold->held = tap_hold->tap;\n        }\n    }\n}\n\nvoid tap_dance_tap_hold_reset(tap_dance_state_t *state, void *user_data) {\n    tap_dance_tap_hold_t *tap_hold = (tap_dance_tap_hold_t *)user_data;\n\n    if (tap_hold->held) {\n        unregister_code16(tap_hold->held);\n        tap_hold->held = 0;\n    }\n}\n\n#define ACTION_TAP_DANCE_TAP_HOLD(tap, hold)                                        \\\n    {                                                                               \\\n        .fn        = {NULL, tap_dance_tap_hold_finished, tap_dance_tap_hold_reset}, \\\n        .user_data = (void *)&((tap_dance_tap_hold_t){tap, hold, 0}),               \\\n    }\n\ntap_dance_action_t tap_dance_actions[] = {\n    [CT_CLN] = ACTION_TAP_DANCE_TAP_HOLD(KC_COLN, KC_SCLN),\n};\n\nbool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    tap_dance_action_t *action;\n    tap_dance_state_t* state;\n\n    switch (keycode) {\n        case TD(CT_CLN):\n            action = tap_dance_get(QK_TAP_DANCE_GET_INDEX(keycode));\n            state = tap_dance_get_state(QK_TAP_DANCE_GET_INDEX(keycode));\n            if (!record->event.pressed && state != NULL && state->count && !state->finished) {\n                tap_dance_tap_hold_t *tap_hold = (tap_dance_tap_hold_t *)action->user_data;\n                tap_code16(tap_hold->tap);\n            }\n    }\n    return true;\n}

Example 4: 'Quad Function Tap-Dance'

By DanielGGordon

Allow one key to have 4 (or more) functions, depending on number of presses, and if the key is held or tapped. Below is a specific example:

You will need a few things that can be used for 'Quad Function Tap-Dance'.

You'll need to add these to the top of your keymap.c file, before your keymap.

c
typedef enum {\n    TD_NONE,\n    TD_UNKNOWN,\n    TD_SINGLE_TAP,\n    TD_SINGLE_HOLD,\n    TD_DOUBLE_TAP,\n    TD_DOUBLE_HOLD,\n    TD_DOUBLE_SINGLE_TAP, // Send two single taps\n    TD_TRIPLE_TAP,\n    TD_TRIPLE_HOLD\n} td_state_t;\n\ntypedef struct {\n    bool is_press_action;\n    td_state_t state;\n} td_tap_t;\n\n// Tap dance enums\nenum {\n    X_CTL,\n    SOME_OTHER_DANCE\n};\n\ntd_state_t cur_dance(tap_dance_state_t *state);\n\n// For the x tap dance. Put it here so it can be used in any keymap\nvoid x_finished(tap_dance_state_t *state, void *user_data);\nvoid x_reset(tap_dance_state_t *state, void *user_data);

Now, at the bottom of your keymap.c file, you'll need to add the following:

c
/* Return an integer that corresponds to what kind of tap dance should be executed.\n *\n * How to figure out tap dance state: interrupted and pressed.\n *\n * Interrupted: If the state of a dance is "interrupted", that means that another key has been hit\n *  under the tapping term. This is typically indicative that you are trying to "tap" the key.\n *\n * Pressed: Whether or not the key is still being pressed. If this value is true, that means the tapping term\n *  has ended, but the key is still being pressed down. This generally means the key is being "held".\n *\n * One thing that is currently not possible with qmk software in regards to tap dance is to mimic the "permissive hold"\n *  feature. In general, advanced tap dances do not work well if they are used with commonly typed letters.\n *  For example "A". Tap dances are best used on non-letter keys that are not hit while typing letters.\n *\n * Good places to put an advanced tap dance:\n *  z,q,x,j,k,v,b, any function key, home/end, comma, semi-colon\n *\n * Criteria for "good placement" of a tap dance key:\n *  Not a key that is hit frequently in a sentence\n *  Not a key that is used frequently to double tap, for example 'tab' is often double tapped in a terminal, or\n *    in a web form. So 'tab' would be a poor choice for a tap dance.\n *  Letters used in common words as a double. For example 'p' in 'pepper'. If a tap dance function existed on the\n *    letter 'p', the word 'pepper' would be quite frustrating to type.\n *\n * For the third point, there does exist the 'TD_DOUBLE_SINGLE_TAP', however this is not fully tested\n *\n */\ntd_state_t cur_dance(tap_dance_state_t *state) {\n    if (state->count == 1) {\n        if (state->interrupted || !state->pressed) return TD_SINGLE_TAP;\n        // Key has not been interrupted, but the key is still held. Means you want to send a 'HOLD'.\n        else return TD_SINGLE_HOLD;\n    } else if (state->count == 2) {\n        // TD_DOUBLE_SINGLE_TAP is to distinguish between typing "pepper", and actually wanting a double tap\n        // action when hitting 'pp'. Suggested use case for this return value is when you want to send two\n        // keystrokes of the key, and not the 'double tap' action/macro.\n        if (state->interrupted) return TD_DOUBLE_SINGLE_TAP;\n        else if (state->pressed) return TD_DOUBLE_HOLD;\n        else return TD_DOUBLE_TAP;\n    }\n\n    // Assumes no one is trying to type the same letter three times (at least not quickly).\n    // If your tap dance key is 'KC_W', and you want to type "www." quickly - then you will need to add\n    // an exception here to return a 'TD_TRIPLE_SINGLE_TAP', and define that enum just like 'TD_DOUBLE_SINGLE_TAP'\n    if (state->count == 3) {\n        if (state->interrupted || !state->pressed) return TD_TRIPLE_TAP;\n        else return TD_TRIPLE_HOLD;\n    } else return TD_UNKNOWN;\n}\n\n// Create an instance of 'td_tap_t' for the 'x' tap dance.\nstatic td_tap_t xtap_state = {\n    .is_press_action = true,\n    .state = TD_NONE\n};\n\nvoid x_finished(tap_dance_state_t *state, void *user_data) {\n    xtap_state.state = cur_dance(state);\n    switch (xtap_state.state) {\n        case TD_SINGLE_TAP: register_code(KC_X); break;\n        case TD_SINGLE_HOLD: register_code(KC_LCTL); break;\n        case TD_DOUBLE_TAP: register_code(KC_ESC); break;\n        case TD_DOUBLE_HOLD: register_code(KC_LALT); break;\n        // Last case is for fast typing. Assuming your key is `f`:\n        // For example, when typing the word `buffer`, and you want to make sure that you send `ff` and not `Esc`.\n        // In order to type `ff` when typing fast, the next character will have to be hit within the `TAPPING_TERM`, which by default is 200ms.\n        case TD_DOUBLE_SINGLE_TAP: tap_code(KC_X); register_code(KC_X); break;\n        default: break;\n    }\n}\n\nvoid x_reset(tap_dance_state_t *state, void *user_data) {\n    switch (xtap_state.state) {\n        case TD_SINGLE_TAP: unregister_code(KC_X); break;\n        case TD_SINGLE_HOLD: unregister_code(KC_LCTL); break;\n        case TD_DOUBLE_TAP: unregister_code(KC_ESC); break;\n        case TD_DOUBLE_HOLD: unregister_code(KC_LALT); break;\n        case TD_DOUBLE_SINGLE_TAP: unregister_code(KC_X); break;\n        default: break;\n    }\n    xtap_state.state = TD_NONE;\n}\n\ntap_dance_action_t tap_dance_actions[] = {\n    [X_CTL] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, x_finished, x_reset)\n};

And then simply use TD(X_CTL) anywhere in your keymap.

INFO

In this configuration "hold" takes place after tap dance timeout. To achieve instant hold, remove state->interrupted checks in conditions. As a result you may use comfortable longer tapping periods to have more time for taps and not to wait too long for holds (try starting with doubled TAPPING_TERM).

Example 5: Using tap dance for advanced mod-tap and layer-tap keys

Tap dance can be used to emulate MT() and LT() behavior when the tapped code is not a basic keycode. This is useful to send tapped keycodes that normally require Shift, such as parentheses or curly braces—or other modified keycodes, such as Control + X.

Below your layers and custom keycodes, add the following:

c
// Tap Dance keycodes\nenum td_keycodes {\n    ALT_LP // Our example key: `LALT` when held, `(` when tapped. Add additional keycodes for each tapdance.\n};\n\n// Define a type containing as many tapdance states as you need\ntypedef enum {\n    TD_NONE,\n    TD_UNKNOWN,\n    TD_SINGLE_TAP,\n    TD_SINGLE_HOLD,\n    TD_DOUBLE_SINGLE_TAP\n} td_state_t;\n\n// Create a global instance of the tapdance state type\nstatic td_state_t td_state;\n\n// Declare your tapdance functions:\n\n// Function to determine the current tapdance state\ntd_state_t cur_dance(tap_dance_state_t *state);\n\n// `finished` and `reset` functions for each tapdance keycode\nvoid altlp_finished(tap_dance_state_t *state, void *user_data);\nvoid altlp_reset(tap_dance_state_t *state, void *user_data);

Below your LAYOUT, define each of the tapdance functions:

c
// Determine the tapdance state to return\ntd_state_t cur_dance(tap_dance_state_t *state) {\n    if (state->count == 1) {\n        if (state->interrupted || !state->pressed) return TD_SINGLE_TAP;\n        else return TD_SINGLE_HOLD;\n    }\n\n    if (state->count == 2) return TD_DOUBLE_SINGLE_TAP;\n    else return TD_UNKNOWN; // Any number higher than the maximum state value you return above\n}\n\n// Handle the possible states for each tapdance keycode you define:\n\nvoid altlp_finished(tap_dance_state_t *state, void *user_data) {\n    td_state = cur_dance(state);\n    switch (td_state) {\n        case TD_SINGLE_TAP:\n            register_code16(KC_LPRN);\n            break;\n        case TD_SINGLE_HOLD:\n            register_mods(MOD_BIT(KC_LALT)); // For a layer-tap key, use `layer_on(_MY_LAYER)` here\n            break;\n        case TD_DOUBLE_SINGLE_TAP: // Allow nesting of 2 parens `((` within tapping term\n            tap_code16(KC_LPRN);\n            register_code16(KC_LPRN);\n            break;\n        default:\n            break;\n    }\n}\n\nvoid altlp_reset(tap_dance_state_t *state, void *user_data) {\n    switch (td_state) {\n        case TD_SINGLE_TAP:\n            unregister_code16(KC_LPRN);\n            break;\n        case TD_SINGLE_HOLD:\n            unregister_mods(MOD_BIT(KC_LALT)); // For a layer-tap key, use `layer_off(_MY_LAYER)` here\n            break;\n        case TD_DOUBLE_SINGLE_TAP:\n            unregister_code16(KC_LPRN);\n            break;\n        default:\n            break;\n    }\n}\n\n// Define `ACTION_TAP_DANCE_FN_ADVANCED()` for each tapdance keycode, passing in `finished` and `reset` functions\ntap_dance_action_t tap_dance_actions[] = {\n    [ALT_LP] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, altlp_finished, altlp_reset)\n};

Wrap each tapdance keycode in TD() when including it in your keymap, e.g. TD(ALT_LP).

Example 6: Using tap dance for momentary-layer-switch and layer-toggle keys

Tap Dance can be used to mimic MO(layer) and TG(layer) functionality. For this example, we will set up a key to function as KC_QUOT on single-tap, as MO(_MY_LAYER) on single-hold, and TG(_MY_LAYER) on double-tap.

The first step is to include the following code towards the beginning of your keymap.c:

c
// Define a type for as many tap dance states as you need\ntypedef enum {\n    TD_NONE,\n    TD_UNKNOWN,\n    TD_SINGLE_TAP,\n    TD_SINGLE_HOLD,\n    TD_DOUBLE_TAP\n} td_state_t;\n\ntypedef struct {\n    bool is_press_action;\n    td_state_t state;\n} td_tap_t;\n\nenum {\n    QUOT_LAYR, // Our custom tap dance key; add any other tap dance keys to this enum \n};\n\n// Declare the functions to be used with your tap dance key(s)\n\n// Function associated with all tap dances\ntd_state_t cur_dance(tap_dance_state_t *state);\n\n// Functions associated with individual tap dances\nvoid ql_finished(tap_dance_state_t *state, void *user_data);\nvoid ql_reset(tap_dance_state_t *state, void *user_data);

Towards the bottom of your keymap.c, include the following code:

c
// Determine the current tap dance state\ntd_state_t cur_dance(tap_dance_state_t *state) {\n    if (state->count == 1) {\n        if (!state->pressed) return TD_SINGLE_TAP;\n        else return TD_SINGLE_HOLD;\n    } else if (state->count == 2) return TD_DOUBLE_TAP;\n    else return TD_UNKNOWN;\n}\n\n// Initialize tap structure associated with example tap dance key\nstatic td_tap_t ql_tap_state = {\n    .is_press_action = true,\n    .state = TD_NONE\n};\n\n// Functions that control what our tap dance key does\nvoid ql_finished(tap_dance_state_t *state, void *user_data) {\n    ql_tap_state.state = cur_dance(state);\n    switch (ql_tap_state.state) {\n        case TD_SINGLE_TAP:\n            tap_code(KC_QUOT);\n            break;\n        case TD_SINGLE_HOLD:\n            layer_on(_MY_LAYER);\n            break;\n        case TD_DOUBLE_TAP:\n            // Check to see if the layer is already set\n            if (layer_state_is(_MY_LAYER)) {\n                // If already set, then switch it off\n                layer_off(_MY_LAYER);\n            } else {\n                // If not already set, then switch the layer on\n                layer_on(_MY_LAYER);\n            }\n            break;\n        default:\n            break;\n    }\n}\n\nvoid ql_reset(tap_dance_state_t *state, void *user_data) {\n    // If the key was held down and now is released then switch off the layer\n    if (ql_tap_state.state == TD_SINGLE_HOLD) {\n        layer_off(_MY_LAYER);\n    }\n    ql_tap_state.state = TD_NONE;\n}\n\n// Associate our tap dance key with its functionality\ntap_dance_action_t tap_dance_actions[] = {\n    [QUOT_LAYR] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, ql_finished, ql_reset)\n};\n\n// Set a long-ish tapping term for tap-dance keys\nuint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case QK_TAP_DANCE ... QK_TAP_DANCE_MAX:\n            return 275;\n        default:\n            return TAPPING_TERM;\n    }\n}

The above code is similar to that used in previous examples. The one point to note is that we need to be able to check which layers are active at any time so we can toggle them if needed. To do this we use the layer_state_is(layer) function which returns true if the given layer is active.

The use of cur_dance() and ql_tap_state mirrors the above examples.

The case: TD_SINGLE_TAP in ql_finished is similar to the above examples. The TD_SINGLE_HOLD case works in conjunction with ql_reset() to switch to _MY_LAYER while the tap dance key is held, and to switch away from _MY_LAYER when the key is released. This mirrors the use of MO(_MY_LAYER). The TD_DOUBLE_TAP case works by checking whether _MY_LAYER is the active layer, and toggling it on or off accordingly. This mirrors the use of TG(_MY_LAYER).

tap_dance_actions[] works similar to the above examples. Note that, additionally, I set a longer tapping term for the tap dance keys. This is because I like my TAPPING_TERM to be short (~175ms) for my non-tap-dance keys but find that this is too quick for me to reliably complete tap dance actions - thus the increased time of 275ms here. In order for the per-key tapping terms to take effect, TAPPING_TERM_PER_KEY must be defined in your config.h.

Finally, to get this tap dance key working, be sure to include TD(QUOT_LAYR) in your keymaps[].

', 66) + createStaticVNode('

Tap Dance: A Single Key Can Do 3, 5, or 100 Different Things

Introduction

Hit the semicolon key once, send a semicolon. Hit it twice, rapidly -- send a colon. Hit it three times, and your keyboard's LEDs do a wild dance. That's just one example of what Tap Dance can do. It's one of the nicest community-contributed features in the firmware, conceived and created by algernon in #451. Here's how algernon describes the feature:

With this feature one can specify keys that behave differently, based on the amount of times they have been tapped, and when interrupted, they get handled before the interrupter.

How to Use Tap Dance

First, you will need TAP_DANCE_ENABLE = yes in your rules.mk, because the feature is disabled by default. This adds a little less than 1k to the firmware size.

Optionally, you might want to set a custom TAPPING_TERM time by adding something like this in your config.h file:

c
#define TAPPING_TERM 175\n#define TAPPING_TERM_PER_KEY

The TAPPING_TERM time is the maximum time allowed between taps of your Tap Dance key, and is measured in milliseconds. For example, if you used the above #define statement and set up a Tap Dance key that sends Space on single-tap and Enter on double-tap, then this key will send ENT only if you tap this key twice in less than 175ms. If you tap the key, wait more than 175ms, and tap the key again you'll end up sending SPC SPC instead. The TAPPING_TERM_PER_KEY definition is only needed if you control the tapping term through a custom get_tapping_term function, which may be needed because TAPPING_TERM affects not just tap-dance keys.

Next, you will want to define some tap-dance keys, which is easiest to do with the TD() macro. That macro takes a number which will later be used as an index into the tap_dance_actions array and turns it into a tap-dance keycode.

After this, you'll want to use the tap_dance_actions array to specify what actions shall be taken when a tap-dance key is in action. Currently, there are five possible options:

The first option is enough for a lot of cases, that just want dual roles. For example, ACTION_TAP_DANCE_DOUBLE(KC_SPC, KC_ENT) will result in Space being sent on single-tap, Enter otherwise.

WARNING

Keep in mind that only basic keycodes are supported here. Custom keycodes are not supported.

Similar to the first option, the second and third option are good for simple layer-switching cases.

For more complicated cases, like blink the LEDs, fiddle with the backlighting, and so on, use the fourth or fifth option. Examples of each are listed below.

TIP

If too many tap dances are active at the same time, later ones won't have any effect. You need to increase TAP_DANCE_MAX_SIMULTANEOUS by adding #define TAP_DANCE_MAX_SIMULTANEOUS 5 (or higher) to your keymap's config.h file if you expect that users may hold down many tap dance keys simultaneously. By default, only 3 tap dance keys can be used together at the same time.

Implementation Details

Well, that's the bulk of it! You should now be able to work through the examples below, and to develop your own Tap Dance functionality. But if you want a deeper understanding of what's going on behind the scenes, then read on for the explanation of how it all works!

Let's go over the three functions mentioned in ACTION_TAP_DANCE_FN_ADVANCED in a little more detail. They all receive the same two arguments: a pointer to a structure that holds all dance related state information, and a pointer to a use case specific state variable. The three functions differ in when they are called. The first, on_each_tap_fn(), is called every time the tap dance key is pressed. Before it is called, the counter is incremented and the timer is reset. The second function, on_dance_finished_fn(), is called when the tap dance is interrupted or ends because TAPPING_TERM milliseconds have passed since the last tap. When the finished field of the dance state structure is set to true, the on_dance_finished_fn() is skipped. After on_dance_finished_fn() was called or would have been called, but no sooner than when the tap dance key is released, on_dance_reset_fn() is called. It is possible to end a tap dance immediately, skipping on_dance_finished_fn(), but not on_dance_reset_fn, by calling reset_tap_dance(state).

To accomplish this logic, the tap dance mechanics use three entry points. The main entry point is process_tap_dance(), called from process_record_quantum() after process_record_kb() and process_record_user(). This function is responsible for calling on_each_tap_fn() and on_dance_reset_fn(). In order to handle interruptions of a tap dance, another entry point, preprocess_tap_dance() is run right at the beginning of process_record_quantum(). This function checks whether the key pressed is a tap-dance key. If it is not, and a tap-dance was in action, we handle that first, and enqueue the newly pressed key. If it is a tap-dance key, then we check if it is the same as the already active one (if there's one active, that is). If it is not, we fire off the old one first, then register the new one. Finally, tap_dance_task() periodically checks whether TAPPING_TERM has passed since the last key press and finishes a tap dance if that is the case.

This means that you have TAPPING_TERM time to tap the key again; you do not have to input all the taps within a single TAPPING_TERM timeframe. This allows for longer tap counts, with minimal impact on responsiveness.

Examples

Simple Example: Send ESC on Single Tap, CAPS_LOCK on Double Tap

Here's a simple example for a single definition:

  1. In your rules.mk, add TAP_DANCE_ENABLE = yes
  2. In your keymap.c file, define the variables and definitions, then add to your keymap:
c
// Tap Dance declarations\nenum {\n    TD_ESC_CAPS,\n};\n\n// Tap Dance definitions\ntap_dance_action_t tap_dance_actions[] = {\n    // Tap once for Escape, twice for Caps Lock\n    [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS),\n};\n\n// Add tap dance item to your keymap in place of a keycode\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {\n    // ...\n    TD(TD_ESC_CAPS)\n    // ...\n};

Complex Examples

This section details several complex tap dance examples. All the enums used in the examples are declared like this:

c
// Enums defined for all examples:\nenum {\n    TD_ESC_CAPS,\n    CT_EGG,\n    CT_FLSH,\n    CT_CLN,\n    X_CTL,\n};

Example 1: Send "Safety Dance!" After 100 Taps

c
void dance_egg(tap_dance_state_t *state, void *user_data) {\n    if (state->count >= 100) {\n        SEND_STRING("Safety dance!");\n        reset_tap_dance(state);\n    }\n}\n\ntap_dance_action_t tap_dance_actions[] = {\n    [CT_EGG] = ACTION_TAP_DANCE_FN(dance_egg),\n};

Example 2: Turn LED Lights On Then Off, One at a Time

c
// On each tap, light up one LED, from right to left\n// On the fourth tap, turn them off from right to left\nvoid dance_flsh_each(tap_dance_state_t *state, void *user_data) {\n    switch (state->count) {\n        case 1:\n            ergodox_right_led_3_on();\n            break;\n        case 2:\n            ergodox_right_led_2_on();\n            break;\n        case 3:\n            ergodox_right_led_1_on();\n            break;\n        case 4:\n            ergodox_right_led_3_off();\n            wait_ms(50);\n            ergodox_right_led_2_off();\n            wait_ms(50);\n            ergodox_right_led_1_off();\n    }\n}\n\n// On the fourth tap, set the keyboard on flash state\nvoid dance_flsh_finished(tap_dance_state_t *state, void *user_data) {\n    if (state->count >= 4) {\n        reset_keyboard();\n    }\n}\n\n// If the flash state didn't happen, then turn off LEDs, left to right\nvoid dance_flsh_reset(tap_dance_state_t *state, void *user_data) {\n    ergodox_right_led_1_off();\n    wait_ms(50);\n    ergodox_right_led_2_off();\n    wait_ms(50);\n    ergodox_right_led_3_off();\n}\n\n// All tap dances now put together. Example 2 is "CT_FLSH"\ntap_dance_action_t tap_dance_actions[] = {\n    [TD_ESC_CAPS] = ACTION_TAP_DANCE_DOUBLE(KC_ESC, KC_CAPS),\n    [CT_EGG] = ACTION_TAP_DANCE_FN(dance_egg),\n    [CT_FLSH] = ACTION_TAP_DANCE_FN_ADVANCED(dance_flsh_each, dance_flsh_finished, dance_flsh_reset)\n};

Example 3: Send : on Tap, ; on Hold

With a little effort, powerful tap-hold configurations can be implemented as tap dances. To emit taps as early as possible, we need to act on releases of the tap dance key. There is no callback for this in the tap dance framework, so we use process_record_user().

c
typedef struct {\n    uint16_t tap;\n    uint16_t hold;\n    uint16_t held;\n} tap_dance_tap_hold_t;\n\nvoid tap_dance_tap_hold_finished(tap_dance_state_t *state, void *user_data) {\n    tap_dance_tap_hold_t *tap_hold = (tap_dance_tap_hold_t *)user_data;\n\n    if (state->pressed) {\n        if (state->count == 1\n#ifndef PERMISSIVE_HOLD\n            && !state->interrupted\n#endif\n        ) {\n            register_code16(tap_hold->hold);\n            tap_hold->held = tap_hold->hold;\n        } else {\n            register_code16(tap_hold->tap);\n            tap_hold->held = tap_hold->tap;\n        }\n    }\n}\n\nvoid tap_dance_tap_hold_reset(tap_dance_state_t *state, void *user_data) {\n    tap_dance_tap_hold_t *tap_hold = (tap_dance_tap_hold_t *)user_data;\n\n    if (tap_hold->held) {\n        unregister_code16(tap_hold->held);\n        tap_hold->held = 0;\n    }\n}\n\n#define ACTION_TAP_DANCE_TAP_HOLD(tap, hold)                                        \\\n    {                                                                               \\\n        .fn        = {NULL, tap_dance_tap_hold_finished, tap_dance_tap_hold_reset}, \\\n        .user_data = (void *)&((tap_dance_tap_hold_t){tap, hold, 0}),               \\\n    }\n\ntap_dance_action_t tap_dance_actions[] = {\n    [CT_CLN] = ACTION_TAP_DANCE_TAP_HOLD(KC_COLN, KC_SCLN),\n};\n\nbool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    tap_dance_action_t *action;\n    tap_dance_state_t* state;\n\n    switch (keycode) {\n        case TD(CT_CLN):\n            action = tap_dance_get(QK_TAP_DANCE_GET_INDEX(keycode));\n            state = tap_dance_get_state(QK_TAP_DANCE_GET_INDEX(keycode));\n            if (!record->event.pressed && state != NULL && state->count && !state->finished) {\n                tap_dance_tap_hold_t *tap_hold = (tap_dance_tap_hold_t *)action->user_data;\n                tap_code16(tap_hold->tap);\n            }\n    }\n    return true;\n}

Example 4: 'Quad Function Tap-Dance'

By DanielGGordon

Allow one key to have 4 (or more) functions, depending on number of presses, and if the key is held or tapped. Below is a specific example:

You will need a few things that can be used for 'Quad Function Tap-Dance'.

You'll need to add these to the top of your keymap.c file, before your keymap.

c
typedef enum {\n    TD_NONE,\n    TD_UNKNOWN,\n    TD_SINGLE_TAP,\n    TD_SINGLE_HOLD,\n    TD_DOUBLE_TAP,\n    TD_DOUBLE_HOLD,\n    TD_DOUBLE_SINGLE_TAP, // Send two single taps\n    TD_TRIPLE_TAP,\n    TD_TRIPLE_HOLD\n} td_state_t;\n\ntypedef struct {\n    bool is_press_action;\n    td_state_t state;\n} td_tap_t;\n\n// Tap dance enums\nenum {\n    X_CTL,\n    SOME_OTHER_DANCE\n};\n\ntd_state_t cur_dance(tap_dance_state_t *state);\n\n// For the x tap dance. Put it here so it can be used in any keymap\nvoid x_finished(tap_dance_state_t *state, void *user_data);\nvoid x_reset(tap_dance_state_t *state, void *user_data);

Now, at the bottom of your keymap.c file, you'll need to add the following:

c
/* Return an integer that corresponds to what kind of tap dance should be executed.\n *\n * How to figure out tap dance state: interrupted and pressed.\n *\n * Interrupted: If the state of a dance is "interrupted", that means that another key has been hit\n *  under the tapping term. This is typically indicative that you are trying to "tap" the key.\n *\n * Pressed: Whether or not the key is still being pressed. If this value is true, that means the tapping term\n *  has ended, but the key is still being pressed down. This generally means the key is being "held".\n *\n * One thing that is currently not possible with qmk software in regards to tap dance is to mimic the "permissive hold"\n *  feature. In general, advanced tap dances do not work well if they are used with commonly typed letters.\n *  For example "A". Tap dances are best used on non-letter keys that are not hit while typing letters.\n *\n * Good places to put an advanced tap dance:\n *  z,q,x,j,k,v,b, any function key, home/end, comma, semi-colon\n *\n * Criteria for "good placement" of a tap dance key:\n *  Not a key that is hit frequently in a sentence\n *  Not a key that is used frequently to double tap, for example 'tab' is often double tapped in a terminal, or\n *    in a web form. So 'tab' would be a poor choice for a tap dance.\n *  Letters used in common words as a double. For example 'p' in 'pepper'. If a tap dance function existed on the\n *    letter 'p', the word 'pepper' would be quite frustrating to type.\n *\n * For the third point, there does exist the 'TD_DOUBLE_SINGLE_TAP', however this is not fully tested\n *\n */\ntd_state_t cur_dance(tap_dance_state_t *state) {\n    if (state->count == 1) {\n        if (state->interrupted || !state->pressed) return TD_SINGLE_TAP;\n        // Key has not been interrupted, but the key is still held. Means you want to send a 'HOLD'.\n        else return TD_SINGLE_HOLD;\n    } else if (state->count == 2) {\n        // TD_DOUBLE_SINGLE_TAP is to distinguish between typing "pepper", and actually wanting a double tap\n        // action when hitting 'pp'. Suggested use case for this return value is when you want to send two\n        // keystrokes of the key, and not the 'double tap' action/macro.\n        if (state->interrupted) return TD_DOUBLE_SINGLE_TAP;\n        else if (state->pressed) return TD_DOUBLE_HOLD;\n        else return TD_DOUBLE_TAP;\n    }\n\n    // Assumes no one is trying to type the same letter three times (at least not quickly).\n    // If your tap dance key is 'KC_W', and you want to type "www." quickly - then you will need to add\n    // an exception here to return a 'TD_TRIPLE_SINGLE_TAP', and define that enum just like 'TD_DOUBLE_SINGLE_TAP'\n    if (state->count == 3) {\n        if (state->interrupted || !state->pressed) return TD_TRIPLE_TAP;\n        else return TD_TRIPLE_HOLD;\n    } else return TD_UNKNOWN;\n}\n\n// Create an instance of 'td_tap_t' for the 'x' tap dance.\nstatic td_tap_t xtap_state = {\n    .is_press_action = true,\n    .state = TD_NONE\n};\n\nvoid x_finished(tap_dance_state_t *state, void *user_data) {\n    xtap_state.state = cur_dance(state);\n    switch (xtap_state.state) {\n        case TD_SINGLE_TAP: register_code(KC_X); break;\n        case TD_SINGLE_HOLD: register_code(KC_LCTL); break;\n        case TD_DOUBLE_TAP: register_code(KC_ESC); break;\n        case TD_DOUBLE_HOLD: register_code(KC_LALT); break;\n        // Last case is for fast typing. Assuming your key is `f`:\n        // For example, when typing the word `buffer`, and you want to make sure that you send `ff` and not `Esc`.\n        // In order to type `ff` when typing fast, the next character will have to be hit within the `TAPPING_TERM`, which by default is 200ms.\n        case TD_DOUBLE_SINGLE_TAP: tap_code(KC_X); register_code(KC_X); break;\n        default: break;\n    }\n}\n\nvoid x_reset(tap_dance_state_t *state, void *user_data) {\n    switch (xtap_state.state) {\n        case TD_SINGLE_TAP: unregister_code(KC_X); break;\n        case TD_SINGLE_HOLD: unregister_code(KC_LCTL); break;\n        case TD_DOUBLE_TAP: unregister_code(KC_ESC); break;\n        case TD_DOUBLE_HOLD: unregister_code(KC_LALT); break;\n        case TD_DOUBLE_SINGLE_TAP: unregister_code(KC_X); break;\n        default: break;\n    }\n    xtap_state.state = TD_NONE;\n}\n\ntap_dance_action_t tap_dance_actions[] = {\n    [X_CTL] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, x_finished, x_reset)\n};

And then simply use TD(X_CTL) anywhere in your keymap.

INFO

In this configuration "hold" takes place after tap dance timeout. To achieve instant hold, remove state->interrupted checks in conditions. As a result you may use comfortable longer tapping periods to have more time for taps and not to wait too long for holds (try starting with doubled TAPPING_TERM).

Example 5: Using tap dance for advanced mod-tap and layer-tap keys

Tap dance can be used to emulate MT() and LT() behavior when the tapped code is not a basic keycode. This is useful to send tapped keycodes that normally require Shift, such as parentheses or curly braces—or other modified keycodes, such as Control + X.

TIP

For simply sending a non-basic keycode on tap while functioning as a modifier or layer switch on hold, a simpler (and often superior) alternative is to use a Mod-Tap or Layer-Tap key and intercept its tap function in process_record_user(). This avoids the complexity of Tap Dance, and allows the key to benefit from advanced Tap-Hold options. See Intercepting Mod-Taps for details.

Below your layers and custom keycodes, add the following:

c
// Tap Dance keycodes\nenum td_keycodes {\n    ALT_LP // Our example key: `LALT` when held, `(` when tapped. Add additional keycodes for each tapdance.\n};\n\n// Define a type containing as many tapdance states as you need\ntypedef enum {\n    TD_NONE,\n    TD_UNKNOWN,\n    TD_SINGLE_TAP,\n    TD_SINGLE_HOLD,\n    TD_DOUBLE_SINGLE_TAP\n} td_state_t;\n\n// Create a global instance of the tapdance state type\nstatic td_state_t td_state;\n\n// Declare your tapdance functions:\n\n// Function to determine the current tapdance state\ntd_state_t cur_dance(tap_dance_state_t *state);\n\n// `finished` and `reset` functions for each tapdance keycode\nvoid altlp_finished(tap_dance_state_t *state, void *user_data);\nvoid altlp_reset(tap_dance_state_t *state, void *user_data);

Below your LAYOUT, define each of the tapdance functions:

c
// Determine the tapdance state to return\ntd_state_t cur_dance(tap_dance_state_t *state) {\n    if (state->count == 1) {\n        if (state->interrupted || !state->pressed) return TD_SINGLE_TAP;\n        else return TD_SINGLE_HOLD;\n    }\n\n    if (state->count == 2) return TD_DOUBLE_SINGLE_TAP;\n    else return TD_UNKNOWN; // Any number higher than the maximum state value you return above\n}\n\n// Handle the possible states for each tapdance keycode you define:\n\nvoid altlp_finished(tap_dance_state_t *state, void *user_data) {\n    td_state = cur_dance(state);\n    switch (td_state) {\n        case TD_SINGLE_TAP:\n            register_code16(KC_LPRN);\n            break;\n        case TD_SINGLE_HOLD:\n            register_mods(MOD_BIT(KC_LALT)); // For a layer-tap key, use `layer_on(_MY_LAYER)` here\n            break;\n        case TD_DOUBLE_SINGLE_TAP: // Allow nesting of 2 parens `((` within tapping term\n            tap_code16(KC_LPRN);\n            register_code16(KC_LPRN);\n            break;\n        default:\n            break;\n    }\n}\n\nvoid altlp_reset(tap_dance_state_t *state, void *user_data) {\n    switch (td_state) {\n        case TD_SINGLE_TAP:\n            unregister_code16(KC_LPRN);\n            break;\n        case TD_SINGLE_HOLD:\n            unregister_mods(MOD_BIT(KC_LALT)); // For a layer-tap key, use `layer_off(_MY_LAYER)` here\n            break;\n        case TD_DOUBLE_SINGLE_TAP:\n            unregister_code16(KC_LPRN);\n            break;\n        default:\n            break;\n    }\n}\n\n// Define `ACTION_TAP_DANCE_FN_ADVANCED()` for each tapdance keycode, passing in `finished` and `reset` functions\ntap_dance_action_t tap_dance_actions[] = {\n    [ALT_LP] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, altlp_finished, altlp_reset)\n};

Wrap each tapdance keycode in TD() when including it in your keymap, e.g. TD(ALT_LP).

Example 6: Using tap dance for momentary-layer-switch and layer-toggle keys

Tap Dance can be used to mimic MO(layer) and TG(layer) functionality. For this example, we will set up a key to function as KC_QUOT on single-tap, as MO(_MY_LAYER) on single-hold, and TG(_MY_LAYER) on double-tap.

The first step is to include the following code towards the beginning of your keymap.c:

c
// Define a type for as many tap dance states as you need\ntypedef enum {\n    TD_NONE,\n    TD_UNKNOWN,\n    TD_SINGLE_TAP,\n    TD_SINGLE_HOLD,\n    TD_DOUBLE_TAP\n} td_state_t;\n\ntypedef struct {\n    bool is_press_action;\n    td_state_t state;\n} td_tap_t;\n\nenum {\n    QUOT_LAYR, // Our custom tap dance key; add any other tap dance keys to this enum \n};\n\n// Declare the functions to be used with your tap dance key(s)\n\n// Function associated with all tap dances\ntd_state_t cur_dance(tap_dance_state_t *state);\n\n// Functions associated with individual tap dances\nvoid ql_finished(tap_dance_state_t *state, void *user_data);\nvoid ql_reset(tap_dance_state_t *state, void *user_data);

Towards the bottom of your keymap.c, include the following code:

c
// Determine the current tap dance state\ntd_state_t cur_dance(tap_dance_state_t *state) {\n    if (state->count == 1) {\n        if (!state->pressed) return TD_SINGLE_TAP;\n        else return TD_SINGLE_HOLD;\n    } else if (state->count == 2) return TD_DOUBLE_TAP;\n    else return TD_UNKNOWN;\n}\n\n// Initialize tap structure associated with example tap dance key\nstatic td_tap_t ql_tap_state = {\n    .is_press_action = true,\n    .state = TD_NONE\n};\n\n// Functions that control what our tap dance key does\nvoid ql_finished(tap_dance_state_t *state, void *user_data) {\n    ql_tap_state.state = cur_dance(state);\n    switch (ql_tap_state.state) {\n        case TD_SINGLE_TAP:\n            tap_code(KC_QUOT);\n            break;\n        case TD_SINGLE_HOLD:\n            layer_on(_MY_LAYER);\n            break;\n        case TD_DOUBLE_TAP:\n            // Check to see if the layer is already set\n            if (layer_state_is(_MY_LAYER)) {\n                // If already set, then switch it off\n                layer_off(_MY_LAYER);\n            } else {\n                // If not already set, then switch the layer on\n                layer_on(_MY_LAYER);\n            }\n            break;\n        default:\n            break;\n    }\n}\n\nvoid ql_reset(tap_dance_state_t *state, void *user_data) {\n    // If the key was held down and now is released then switch off the layer\n    if (ql_tap_state.state == TD_SINGLE_HOLD) {\n        layer_off(_MY_LAYER);\n    }\n    ql_tap_state.state = TD_NONE;\n}\n\n// Associate our tap dance key with its functionality\ntap_dance_action_t tap_dance_actions[] = {\n    [QUOT_LAYR] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, ql_finished, ql_reset)\n};\n\n// Set a long-ish tapping term for tap-dance keys\nuint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case QK_TAP_DANCE ... QK_TAP_DANCE_MAX:\n            return 275;\n        default:\n            return TAPPING_TERM;\n    }\n}

The above code is similar to that used in previous examples. The one point to note is that we need to be able to check which layers are active at any time so we can toggle them if needed. To do this we use the layer_state_is(layer) function which returns true if the given layer is active.

The use of cur_dance() and ql_tap_state mirrors the above examples.

The case: TD_SINGLE_TAP in ql_finished is similar to the above examples. The TD_SINGLE_HOLD case works in conjunction with ql_reset() to switch to _MY_LAYER while the tap dance key is held, and to switch away from _MY_LAYER when the key is released. This mirrors the use of MO(_MY_LAYER). The TD_DOUBLE_TAP case works by checking whether _MY_LAYER is the active layer, and toggling it on or off accordingly. This mirrors the use of TG(_MY_LAYER).

tap_dance_actions[] works similar to the above examples. Note that, additionally, I set a longer tapping term for the tap dance keys. This is because I like my TAPPING_TERM to be short (~175ms) for my non-tap-dance keys but find that this is too quick for me to reliably complete tap dance actions - thus the increased time of 275ms here. In order for the per-key tapping terms to take effect, TAPPING_TERM_PER_KEY must be defined in your config.h.

Finally, to get this tap dance key working, be sure to include TD(QUOT_LAYR) in your keymaps[].

', 67) ])]); } const tap_dance = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); diff --git a/assets/features_tap_dance.md.C__8yEyM.lean.js b/assets/features_tap_dance.md.DEInXfWx.lean.js similarity index 96% rename from assets/features_tap_dance.md.C__8yEyM.lean.js rename to assets/features_tap_dance.md.DEInXfWx.lean.js index 84f6827b13a..b9d8caf7413 100644 --- a/assets/features_tap_dance.md.C__8yEyM.lean.js +++ b/assets/features_tap_dance.md.DEInXfWx.lean.js @@ -3,7 +3,7 @@ const __pageData = JSON.parse('{"title":"Tap Dance: A Single Key Can Do 3, 5, or const _sfc_main = { name: "features/tap_dance.md" }; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode("", 66) + createStaticVNode("", 67) ])]); } const tap_dance = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); diff --git a/assets/mod_tap.md.BaxFg-Rs.js b/assets/mod_tap.md.BaxFg-Rs.js new file mode 100644 index 00000000000..c82b551f5ad --- /dev/null +++ b/assets/mod_tap.md.BaxFg-Rs.js @@ -0,0 +1,13 @@ +import { _ as _export_sfc, o as openBlock, c as createElementBlock, al as createStaticVNode } from "./chunks/framework.8zKZLKO7.js"; +const __pageData = JSON.parse('{"title":"Mod-Tap","description":"","frontmatter":{},"headers":[],"relativePath":"mod_tap.md","filePath":"mod_tap.md","lastUpdated":null}'); +const _sfc_main = { name: "mod_tap.md" }; +function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { + return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ + createStaticVNode('

Mod-Tap

The Mod-Tap key MT(mod, kc) acts like a modifier when held, and a regular keycode when tapped. In other words, you can have a key that sends Escape when you tap it, but functions as a Control or Shift key when you hold it down.

The modifiers (mod) argument to the MT() macro are prefixed with MOD_, not KC_:

ModifierDescription
MOD_LCTLLeft Control
MOD_LSFTLeft Shift
MOD_LALTLeft Alt
MOD_LGUILeft GUI (Windows/Command/Super key)
MOD_RCTLRight Control
MOD_RSFTRight Shift
MOD_RALTRight Alt (AltGr)
MOD_RGUIRight GUI (Windows/Command/Super key)
MOD_HYPRHyper (Left Control, Shift, Alt and GUI)
MOD_MEHMeh (Left Control, Shift, and Alt)

You can combine these by ORing them together like so:

c
MT(MOD_LCTL | MOD_LSFT, KC_ESC)

This key would activate Left Control and Left Shift when held, and send Escape when tapped.

For convenience, QMK includes some Mod-Tap shortcuts to make common combinations more compact in your keymap:

KeyAliasesDescription
LCTL_T(kc)CTL_T(kc)Left Control when held, kc when tapped
LSFT_T(kc)SFT_T(kc)Left Shift when held, kc when tapped
LALT_T(kc)ALT_T(kc), LOPT_T(kc), OPT_T(kc)Left Alt when held, kc when tapped
LGUI_T(kc)GUI_T(kc), LCMD_T(kc), LWIN_T(kc), CMD_T(kc), WIN_T(kc)Left GUI when held, kc when tapped
LCS_T(kc)Left Control and Left Shift when held, kc when tapped
LCA_T(kc)Left Control and Left Alt when held, kc when tapped
LCG_T(kc)Left Control and Left GUI when held, kc when tapped
LSA_T(kc)Left Shift and Left Alt when held, kc when tapped
LSG_T(kc)Left Shift and Left GUI when held, kc when tapped
LAG_T(kc)Left Alt and Left GUI when held, kc when tapped
LCSG_T(kc)Left Control, Left Shift and Left GUI when held, kc when tapped
LCAG_T(kc)Left Control, Left Alt and Left GUI when held, kc when tapped
LSAG_T(kc)Left Shift, Left Alt and Left GUI when held, kc when tapped
RCTL_T(kc)Right Control when held, kc when tapped
RSFT_T(kc)Right Shift when held, kc when tapped
RALT_T(kc)ROPT_T(kc), ALGR_T(kc)Right Alt when held, kc when tapped
RGUI_T(kc)RCMD_T(kc), RWIN_T(kc)Right GUI when held, kc when tapped
RCS_T(kc)Right Control and Right Shift when held, kc when tapped
RCA_T(kc)Right Control and Right Alt when held, kc when tapped
RCG_T(kc)Right Control and Right GUI when held, kc when tapped
RSA_T(kc)Right Shift and Right Alt when held, kc when tapped
RSG_T(kc)Right Shift and Right GUI when held, kc when tapped
RAG_T(kc)Right Alt and Right GUI when held, kc when tapped
RCSG_T(kc)Right Control, Right Shift and Right GUI when held, kc when tapped
RCAG_T(kc)Right Control, Right Alt and Right GUI when held, kc when tapped
RSAG_T(kc)Right Shift, Right Alt and Right GUI when held, kc when tapped
MEH_T(kc)Left Control, Left Shift and Left Alt when held, kc when tapped
HYPR_T(kc)Left Control, Left Shift, Left Alt and Left GUI when held, kc when tapped1

1. More information on the Hyper key can be found on this blog post by Brett Terpstra.

Caveats

Currently, the kc argument of MT() is limited to the Basic Keycode set, meaning you can't use keycodes like LCTL(), KC_TILD, or anything greater than 0xFF. This is because QMK uses 16-bit keycodes, of which 3 bits are used for the function identifier, 1 bit for selecting right or left mods, and 4 bits to tell which mods are used, leaving only 8 bits for the keycode. Additionally, if at least one right-handed modifier is specified in a Mod-Tap, it will cause all modifiers specified to become right-handed, so it is not possible to mix and match the two - for example, Left Control and Right Shift would become Right Control and Right Shift.

Expanding this would be complicated, at best. Moving to a 32-bit keycode would solve a lot of this, but would double the amount of space that the keymap matrix uses. And it could potentially cause issues, too. If you need to apply modifiers to your tapped keycode, Tap Dance can be used to accomplish this.

You may also run into issues when using Remote Desktop Connection on Windows. Because these keycodes send key events faster than a human, Remote Desktop could miss them. To fix this, open Remote Desktop Connection, click on "Show Options", open the "Local Resources" tab, and in the keyboard section, change the drop down to "On this Computer". This will fix the issue, and allow the characters to work correctly. It can also be mitigated by increasing TAP_CODE_DELAY.

Intercepting Mod-Taps

This technique works for both Mod-Tap (MT) and Layer-Tap (LT) keys.

Changing tap function

The basic keycode limitation with Mod-Tap and Layer-Tap can be worked around by intercepting it in process_record_user. For example, shifted keycode KC_DQUO cannot be used with MT() because it is a 16-bit keycode alias of LSFT(KC_QUOT). Modifiers on KC_DQUO will be masked by MT(). But the following custom code can be used to intercept the "tap" function to manually send KC_DQUO:

c
bool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LCTL_T(KC_DQUO):\n            if (record->tap.count && record->event.pressed) {\n                tap_code16(KC_DQUO); // Send KC_DQUO on tap\n                return false;        // Return false to ignore further processing of key\n            }\n            break;\n    }\n    return true;\n}

Changing hold function

Likewise, similar custom code can also be used to intercept the hold function to send custom user key code. The following example uses LT(0, kc) (layer-tap key with no practical use because layer 0 is always active) to add cut, copy and paste function to X,C and V keys when they are held down:

c
bool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(0,KC_X):\n            if (!record->tap.count && record->event.pressed) {\n                tap_code16(C(KC_X)); // Intercept hold function to send Ctrl-X\n                return false;\n            }\n            return true;             // Return true for normal processing of tap keycode\n        case LT(0,KC_C):\n            if (!record->tap.count && record->event.pressed) {\n                tap_code16(C(KC_C)); // Intercept hold function to send Ctrl-C\n                return false;\n            }\n            return true;             // Return true for normal processing of tap keycode\n        case LT(0,KC_V):\n            if (!record->tap.count && record->event.pressed) {\n                tap_code16(C(KC_V)); // Intercept hold function to send Ctrl-V\n                return false;\n            }\n            return true;             // Return true for normal processing of tap keycode\n    }\n    return true;\n}

Changing both tap and hold

This last example implements custom tap and hold function with LT(0,KC_NO) to create a single copy-on-tap, paste-on-hold key:

c
bool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(0,KC_NO):\n            if (record->tap.count && record->event.pressed) {\n                tap_code16(C(KC_C)); // Intercept tap function to send Ctrl-C\n            } else if (record->event.pressed) {\n                tap_code16(C(KC_V)); // Intercept hold function to send Ctrl-V\n            }\n            return false;\n    }\n    return true;\n}

Other Resources

See the Tap-Hold Configuration Options for additional flags that tweak Mod-Tap behavior.

', 27) + ])]); +} +const mod_tap = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); +export { + __pageData, + mod_tap as default +}; diff --git a/assets/mod_tap.md.DyIZlvOO.lean.js b/assets/mod_tap.md.BaxFg-Rs.lean.js similarity index 95% rename from assets/mod_tap.md.DyIZlvOO.lean.js rename to assets/mod_tap.md.BaxFg-Rs.lean.js index 357a5360857..032f7b7fc33 100644 --- a/assets/mod_tap.md.DyIZlvOO.lean.js +++ b/assets/mod_tap.md.BaxFg-Rs.lean.js @@ -3,7 +3,7 @@ const __pageData = JSON.parse('{"title":"Mod-Tap","description":"","frontmatter" const _sfc_main = { name: "mod_tap.md" }; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode("", 26) + createStaticVNode("", 27) ])]); } const mod_tap = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); diff --git a/assets/mod_tap.md.DyIZlvOO.js b/assets/mod_tap.md.DyIZlvOO.js deleted file mode 100644 index f0826e9defc..00000000000 --- a/assets/mod_tap.md.DyIZlvOO.js +++ /dev/null @@ -1,13 +0,0 @@ -import { _ as _export_sfc, o as openBlock, c as createElementBlock, al as createStaticVNode } from "./chunks/framework.8zKZLKO7.js"; -const __pageData = JSON.parse('{"title":"Mod-Tap","description":"","frontmatter":{},"headers":[],"relativePath":"mod_tap.md","filePath":"mod_tap.md","lastUpdated":null}'); -const _sfc_main = { name: "mod_tap.md" }; -function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { - return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode('

Mod-Tap

The Mod-Tap key MT(mod, kc) acts like a modifier when held, and a regular keycode when tapped. In other words, you can have a key that sends Escape when you tap it, but functions as a Control or Shift key when you hold it down.

The modifiers (mod) argument to the MT() macro are prefixed with MOD_, not KC_:

ModifierDescription
MOD_LCTLLeft Control
MOD_LSFTLeft Shift
MOD_LALTLeft Alt
MOD_LGUILeft GUI (Windows/Command/Super key)
MOD_RCTLRight Control
MOD_RSFTRight Shift
MOD_RALTRight Alt (AltGr)
MOD_RGUIRight GUI (Windows/Command/Super key)
MOD_HYPRHyper (Left Control, Shift, Alt and GUI)
MOD_MEHMeh (Left Control, Shift, and Alt)

You can combine these by ORing them together like so:

c
MT(MOD_LCTL | MOD_LSFT, KC_ESC)

This key would activate Left Control and Left Shift when held, and send Escape when tapped.

For convenience, QMK includes some Mod-Tap shortcuts to make common combinations more compact in your keymap:

KeyAliasesDescription
LCTL_T(kc)CTL_T(kc)Left Control when held, kc when tapped
LSFT_T(kc)SFT_T(kc)Left Shift when held, kc when tapped
LALT_T(kc)ALT_T(kc), LOPT_T(kc), OPT_T(kc)Left Alt when held, kc when tapped
LGUI_T(kc)GUI_T(kc), LCMD_T(kc), LWIN_T(kc), CMD_T(kc), WIN_T(kc)Left GUI when held, kc when tapped
LCS_T(kc)Left Control and Left Shift when held, kc when tapped
LCA_T(kc)Left Control and Left Alt when held, kc when tapped
LCG_T(kc)Left Control and Left GUI when held, kc when tapped
LSA_T(kc)Left Shift and Left Alt when held, kc when tapped
LSG_T(kc)Left Shift and Left GUI when held, kc when tapped
LAG_T(kc)Left Alt and Left GUI when held, kc when tapped
LCSG_T(kc)Left Control, Left Shift and Left GUI when held, kc when tapped
LCAG_T(kc)Left Control, Left Alt and Left GUI when held, kc when tapped
LSAG_T(kc)Left Shift, Left Alt and Left GUI when held, kc when tapped
RCTL_T(kc)Right Control when held, kc when tapped
RSFT_T(kc)Right Shift when held, kc when tapped
RALT_T(kc)ROPT_T(kc), ALGR_T(kc)Right Alt when held, kc when tapped
RGUI_T(kc)RCMD_T(kc), RWIN_T(kc)Right GUI when held, kc when tapped
RCS_T(kc)Right Control and Right Shift when held, kc when tapped
RCA_T(kc)Right Control and Right Alt when held, kc when tapped
RCG_T(kc)Right Control and Right GUI when held, kc when tapped
RSA_T(kc)Right Shift and Right Alt when held, kc when tapped
RSG_T(kc)Right Shift and Right GUI when held, kc when tapped
RAG_T(kc)Right Alt and Right GUI when held, kc when tapped
RCSG_T(kc)Right Control, Right Shift and Right GUI when held, kc when tapped
RCAG_T(kc)Right Control, Right Alt and Right GUI when held, kc when tapped
RSAG_T(kc)Right Shift, Right Alt and Right GUI when held, kc when tapped
MEH_T(kc)Left Control, Left Shift and Left Alt when held, kc when tapped
HYPR_T(kc)Left Control, Left Shift, Left Alt and Left GUI when held, kc when tapped1

1. More information on the Hyper key can be found on this blog post by Brett Terpstra.

Caveats

Currently, the kc argument of MT() is limited to the Basic Keycode set, meaning you can't use keycodes like LCTL(), KC_TILD, or anything greater than 0xFF. This is because QMK uses 16-bit keycodes, of which 3 bits are used for the function identifier, 1 bit for selecting right or left mods, and 4 bits to tell which mods are used, leaving only 8 bits for the keycode. Additionally, if at least one right-handed modifier is specified in a Mod-Tap, it will cause all modifiers specified to become right-handed, so it is not possible to mix and match the two - for example, Left Control and Right Shift would become Right Control and Right Shift.

Expanding this would be complicated, at best. Moving to a 32-bit keycode would solve a lot of this, but would double the amount of space that the keymap matrix uses. And it could potentially cause issues, too. If you need to apply modifiers to your tapped keycode, Tap Dance can be used to accomplish this.

You may also run into issues when using Remote Desktop Connection on Windows. Because these keycodes send key events faster than a human, Remote Desktop could miss them. To fix this, open Remote Desktop Connection, click on "Show Options", open the "Local Resources" tab, and in the keyboard section, change the drop down to "On this Computer". This will fix the issue, and allow the characters to work correctly. It can also be mitigated by increasing TAP_CODE_DELAY.

Intercepting Mod-Taps

Changing tap function

The basic keycode limitation with Mod-Tap can be worked around by intercepting it in process_record_user. For example, shifted keycode KC_DQUO cannot be used with MT() because it is a 16-bit keycode alias of LSFT(KC_QUOT). Modifiers on KC_DQUO will be masked by MT(). But the following custom code can be used to intercept the "tap" function to manually send KC_DQUO:

c
bool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LCTL_T(KC_DQUO):\n            if (record->tap.count && record->event.pressed) {\n                tap_code16(KC_DQUO); // Send KC_DQUO on tap\n                return false;        // Return false to ignore further processing of key\n            }\n            break;\n    }\n    return true;\n}

Changing hold function

Likewise, similar custom code can also be used to intercept the hold function to send custom user key code. The following example uses LT(0, kc) (layer-tap key with no practical use because layer 0 is always active) to add cut, copy and paste function to X,C and V keys when they are held down:

c
bool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(0,KC_X):\n            if (!record->tap.count && record->event.pressed) {\n                tap_code16(C(KC_X)); // Intercept hold function to send Ctrl-X\n                return false;\n            }\n            return true;             // Return true for normal processing of tap keycode\n        case LT(0,KC_C):\n            if (!record->tap.count && record->event.pressed) {\n                tap_code16(C(KC_C)); // Intercept hold function to send Ctrl-C\n                return false;\n            }\n            return true;             // Return true for normal processing of tap keycode\n        case LT(0,KC_V):\n            if (!record->tap.count && record->event.pressed) {\n                tap_code16(C(KC_V)); // Intercept hold function to send Ctrl-V\n                return false;\n            }\n            return true;             // Return true for normal processing of tap keycode\n    }\n    return true;\n}

Changing both tap and hold

This last example implements custom tap and hold function with LT(0,KC_NO) to create a single copy-on-tap, paste-on-hold key:

c
bool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(0,KC_NO):\n            if (record->tap.count && record->event.pressed) {\n                tap_code16(C(KC_C)); // Intercept tap function to send Ctrl-C\n            } else if (record->event.pressed) {\n                tap_code16(C(KC_V)); // Intercept hold function to send Ctrl-V\n            }\n            return false;\n    }\n    return true;\n}

Other Resources

See the Tap-Hold Configuration Options for additional flags that tweak Mod-Tap behavior.

', 26) - ])]); -} -const mod_tap = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); -export { - __pageData, - mod_tap as default -}; diff --git a/assets/tap_hold.md.CFcRBW4O.js b/assets/tap_hold.md.CFcRBW4O.js deleted file mode 100644 index 0f4d5e994aa..00000000000 --- a/assets/tap_hold.md.CFcRBW4O.js +++ /dev/null @@ -1,13 +0,0 @@ -import { _ as _export_sfc, o as openBlock, c as createElementBlock, al as createStaticVNode } from "./chunks/framework.8zKZLKO7.js"; -const __pageData = JSON.parse('{"title":"Tap-Hold Configuration Options","description":"","frontmatter":{},"headers":[],"relativePath":"tap_hold.md","filePath":"tap_hold.md","lastUpdated":null}'); -const _sfc_main = { name: "tap_hold.md" }; -function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { - return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode('

Tap-Hold Configuration Options

While Tap-Hold options are fantastic, they are not without their issues. We have tried to configure them with reasonable defaults, but that may still cause issues for some people.

These options let you modify the behavior of the tap-hold keys.

Tapping Term

The crux of all of the following features is the tapping term setting. This determines what is a tap and what is a hold. The exact timing for this to feel natural can vary from keyboard to keyboard, from switch to switch, and from key to key.

TIP

DYNAMIC_TAPPING_TERM_ENABLE enables three special keys that can help you quickly find a comfortable tapping term for you. See Dynamic Tapping Term for more details.

You can set the global time for this by adding the following setting to your config.h:

c
#define TAPPING_TERM 200

This setting is defined in milliseconds and defaults to 200ms. This is a good average for the majority of people.

For more granular control of this feature, you can add the following to your config.h:

c
#define TAPPING_TERM_PER_KEY

You can then add the following function to your keymap.c to customise the tapping term for each key:

c
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case SFT_T(KC_SPC):\n            return TAPPING_TERM + 1250;\n        case LT(1, KC_GRV):\n            return 130;\n        default:\n            return TAPPING_TERM;\n    }\n}

Example

You can compare keycodes to QK_MOD_TAP/QK_MOD_TAP_MAX and QK_LAYER_TAP/QK_LAYER_TAP_MAX to filter out Mod-Tap/Layer-Tap keys, rather than checking such keys manually in a switch-case. For instance, this example sets all Mod-Tap keys to have a higher tapping term, while leaving all other tap-hold keys unchanged:

c
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case QK_MOD_TAP ... QK_MOD_TAP_MAX:\n            return TAPPING_TERM + 100;\n        default:\n            return TAPPING_TERM;\n    }\n}

You can also use functions like QK_MOD_TAP_GET_MODS, QK_LAYER_MOD_GET_MODS, and QK_ONE_SHOT_MOD_GET_MODS to filter Mod-Tap/Layer-Mod/One Shot keys by their mods.

For instance, this example sets a higher tapping term for AltGr Mod-Taps and lower tapping terms for Shift Mod-Taps:

c
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    uint8_t mod = mod_config(QK_MOD_TAP_GET_MODS(keycode));\n    if (mod & MOD_LSFT != 0 || mod & MOD_RSFT != 0) {\n        return 100;\n    }\n    if (mod & MOD_RALT != 0) {\n        return TAPPING_TERM + 50;\n    }\n    return TAPPING_TERM;\n}

Dynamic Tapping Term

DYNAMIC_TAPPING_TERM_ENABLE is a feature you can enable in rules.mk that lets you use three special keys in your keymap to configure the tapping term on the fly:

KeyAliasesDescription
QK_DYNAMIC_TAPPING_TERM_PRINTDT_PRNTTypes the current tapping term, in milliseconds
QK_DYNAMIC_TAPPING_TERM_UPDT_UPIncreases the current tapping term by DYNAMIC_TAPPING_TERM_INCREMENTms (5ms by default)
QK_DYNAMIC_TAPPING_TERM_DOWNDT_DOWNDecreases the current tapping term by DYNAMIC_TAPPING_TERM_INCREMENTms (5ms by default)

Set the tapping term as usual with #define TAPPING_TERM <value> in config.h and add DYNAMIC_TAPPING_TERM_ENABLE = yes in rules.mk. Then, place the above three keys somewhere in your keymap and flash the new firmware onto your board.

Now, you can try using your dual-role keys such as Layer-Taps and Mod-Taps and use DT_DOWN and DT_UP to adjust the tapping term immediately. If you find that you frequently trigger the modifier of your Mod-Tap(s) by accident, for example, that's a sign that your tapping term may be too low, so tap DT_UP a few times to increase the tapping term until that no longer happens. Conversely, if you get superfluous characters when you actually intended to momentarily activate a layer, tap DT_DOWN to lower the tapping term. Do note that these keys affect the global tapping term, you cannot change the tapping term of a specific key on the fly.

Once you're satisfied with the current tapping term value, you can tap the DT_PRNT key to see your new tapping term, and you can replace the tapping term in config.h with this new value.

It's important to update TAPPING_TERM with the new value because the adjustments made using DT_UP and DT_DOWN are not persistent.

The value by which the tapping term increases or decreases when you tap DT_UP and DT_DOWN can be configured in config.h with #define DYNAMIC_TAPPING_TERM_INCREMENT <new value>. Note that the tapping term is not modified when holding down the tap term keys, so if you need to, for example, decrease the current tapping term by 50ms, you cannot just press down and hold DT_DOWN; you will have to tap it 10 times in a row with the default increment of 5ms.

If you need more flexibility, nothing prevents you from defining your own custom keys to dynamically change the tapping term.

c
enum custom_dynamic_tapping_term_keys = {\n    DT_UP_50 = SAFE_RANGE,\n    DT_DOWN_50,\n    DT_UP_X2,\n    DT_DOWN_X2,\n}\n\nbool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n    case DT_UP_50:\n        if (record->event.pressed) {\n            g_tapping_term += 50;\n        }\n        break;\n    case DT_DOWN_50:\n        if (record->event.pressed) {\n            g_tapping_term -= 50;\n        }\n        break;\n    case DT_UP_X2:\n        if (record->event.pressed) {\n            g_tapping_term *= 2;\n        }\n        break;\n    case DT_DOWN_X2:\n        if (record->event.pressed) {\n            g_tapping_term /= 2;\n        }\n        break;\n    }\n    return true;\n};

In order for this feature to be effective, if you use per-key tapping terms, then you need to make a few changes to the syntax of the get_tapping_term function. All you need to do is replace every occurrence of TAPPING_TERM in the get_tapping_term function by lowercase g_tapping_term. If you don't do this, you will still see the value typed by DT_PRNT go up and down as you configure the tapping term on the fly, but you won't feel those changes as they don't get applied. If you can go as low as 10ms and still easily trigger the tap function of a dual-role key, that's a sign that you forgot to make the necessary changes to your get_tapping_term function.

For instance, here's how the example get_tapping_term shown earlier should look after the transformation:

c
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case SFT_T(KC_SPC):\n           return g_tapping_term + 1250;\n        case LT(1, KC_GRV):\n            return 130;\n        default:\n            return g_tapping_term;\n    }\n}

The reason is that TAPPING_TERM is a macro that expands to a constant integer and thus cannot be changed at runtime, whereas g_tapping_term is a variable whose value can be changed at runtime. If you want, you can temporarily enable DYNAMIC_TAPPING_TERM_ENABLE to find a suitable tapping term value and then disable that feature and revert back to using the classic syntax for per-key tapping term settings. In case you need to access the tapping term from elsewhere in your code, you can use the GET_TAPPING_TERM(keycode, record) macro. This macro will expand to whatever is the appropriate access pattern given the current configuration.

Tap-Or-Hold Decision Modes

The code which decides between the tap and hold actions of dual-role keys supports three different modes, in increasing order of preference for the hold action:

  1. The default mode selects the hold action only if the dual-role key is held down longer than the tapping term. In this mode, pressing other keys while the dual-role key is held down does not influence the tap-or-hold decision. In other words, this mode ignores interrupts.

  2. The "permissive hold" mode, in addition to the default behavior, immediately selects the hold action when another key is tapped (pressed and then released) while the dual-role key is held down, even if this happens earlier than the tapping term. If another key is just pressed, but then the dual-role key is released before that other key (and earlier than the tapping term), this mode will still select the tap action. That is, this mode converts "nested" sequences, but not "rolls".

  3. The "hold on other key press" mode, in addition to the default behavior, immediately selects the hold action when another key is pressed while the dual-role key is held down, even if this happens earlier than the tapping term.

Note that until the tap-or-hold decision completes (which happens when either the dual-role key is released, or the tapping term has expired, or the extra condition for the selected decision mode is satisfied), key events are delayed and not transmitted to the host immediately. The default mode gives the most delay (if the dual-role key is held down, this mode always waits for the whole tapping term), and the other modes may give less delay when other keys are pressed, because the hold action may be selected earlier.

Comparison

To better illustrate the tap-or-hold decision modes, let us compare the expected output of each decision mode in a handful of tapping scenarios involving a Mod-Tap key (LSFT_T(KC_A)) and a regular key (KC_B) with the TAPPING_TERM set to 200ms.

Note: "kc held" in the "Physical key event" column means that the key wasn't physically released yet at this point in time.

Distinct taps (AABB)

TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
199LSFT_T(KC_A) upaaa
210KC_B downababab
220KC_B upababab
TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
200LSFT_T(KC_A) heldShiftShiftShift
201LSFT_T(KC_A) upShiftShiftShift
205KC_B downbbb
210KC_B upbbb

Nested tap (ABBA)

TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
110KC_B downB
120KC_B upBB
199LSFT_T(KC_A) upabBB
TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
110KC_B downB
120KC_B upBB
200LSFT_T(KC_A) heldBBB
210LSFT_T(KC_A) upBBB
TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
200LSFT_T(KC_A) heldShiftShiftShift
205KC_B downBBB
210KC_B upBBB
220LSFT_T(KC_A) upBBB

Rolling keys (ABAB)

TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
110KC_B downB
130LSFT_T(KC_A) upababB
140KC_B upababB
TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
110KC_B downB
200LSFT_T(KC_A) heldBBB
205LSFT_T(KC_A) upBBB
210KC_B upBBB

Default Mode

Example sequence 1 (the L key is also mapped to KC_RGHT on layer 2):

             TAPPING_TERM\n  +---------------|--------------------+\n  | +-------------|-------+            |\n  | | LT(2, KC_A) |       |            |\n  | +-------------|-------+            |\n  |               | +--------------+   |\n  |               | | KC_L         |   |\n  |               | +--------------+   |\n  +---------------|--------------------+

The above sequence would send a KC_RGHT, since LT(2, KC_A) is held longer than the TAPPING_TERM.


Example sequence 2 (the L key is also mapped to KC_RGHT on layer 2):

                           TAPPING_TERM\n  +-----------------------------|------+\n  | +---------------+           |      |\n  | | LT(2, KC_A)   |           |      |\n  | +---------------+           |      |\n  |            +--------------+ |      |\n  |            | KC_L         | |      |\n  |            +--------------+ |      |\n  +-----------------------------|------+

The above sequence will not send KC_RGHT but KC_A KC_L instead, since LT(2, KC_A) is not held longer than the TAPPING_TERM.


Example sequence 3 (Mod-Tap):

                         TAPPING_TERM\n  +---------------------------|--------+\n  | +-------------+           |        |\n  | | SFT_T(KC_A) |           |        |\n  | +-------------+           |        |\n  |       +--------------+    |        |\n  |       | KC_X         |    |        |\n  |       +--------------+    |        |\n  +---------------------------|--------+

In the above sequence, SFT_T(KC_A) has been released before the end of its TAPPING_TERM and as such will be interpreted as KC_A, followed by any key event that happened after the initial press of SFT_T(KC_A). In this instance, the output would be KC_A KC_X.

Permissive Hold

The "permissive hold" mode can be enabled for all dual-role keys by adding the corresponding option to config.h:

c
#define PERMISSIVE_HOLD

This makes tap and hold keys (like Layer-Tap) work better for fast typists, or for high TAPPING_TERM settings.

If you press a dual-role key, tap another key (press and release) and then release the dual-role key, all within the tapping term, by default the dual-role key will perform its tap action. If the PERMISSIVE_HOLD option is enabled, the dual-role key will perform its hold action instead.

An example of a sequence that is affected by the "permissive hold" mode:

                         TAPPING_TERM   \n  +---------------------------|--------+\n  | +----------------------+  |        |\n  | | LT(2, KC_A)          |  |        |\n  | +----------------------+  |        |\n  |    +--------------+       |        |\n  |    | KC_L         |       |        |\n  |    +--------------+       |        |\n  +---------------------------|--------+

Normally, if you do all this within the TAPPING_TERM (default: 200ms), this will be registered as al by the firmware and host system. With the PERMISSIVE_HOLD option enabled, the Layer-Tap key is considered as a layer switch if another key is tapped, and the above sequence would be registered as KC_RGHT (the mapping of L on layer 2). We could describe this sequence as a "nested tap" (the modified key's key down and key up events are "nested" between the dual-role key's key down and key up events).

However, this slightly different sequence will not be affected by the "permissive hold" mode:

                         TAPPING_TERM   \n  +---------------------------|--------+\n  | +-------------+           |        |\n  | | LT(2, KC_A) |           |        |\n  | +-------------+           |        |\n  |       +--------------+    |        |\n  |       | KC_L         |    |        |\n  |       +--------------+    |        |\n  +---------------------------|--------+

In the sequence above the dual-role key is released before the other key is released, and if that happens within the tapping term, the "permissive hold" mode will still choose the tap action for the dual-role key, and the sequence will be registered as al by the host. We could describe this as a "rolling press" (the two keys' key down and key up events behave as if you were rolling a ball across the two keys, first pressing each key down in sequence and then releasing them in the same order).

TIP

The PERMISSIVE_HOLD option is not noticeable if you also enable HOLD_ON_OTHER_KEY_PRESS because the latter option considers both the "nested tap" and "rolling press" sequences like shown above as a hold action, not the tap action. HOLD_ON_OTHER_KEY_PRESS makes the tap-or-hold decision earlier in the chain of key events, thus taking a precedence over PERMISSIVE_HOLD.

For more granular control of this feature, you can add the following to your config.h:

c
#define PERMISSIVE_HOLD_PER_KEY

You can then add the following function to your keymap:

c
bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(1, KC_BSPC):\n            // Immediately select the hold action when another key is tapped.\n            return true;\n        default:\n            // Do not select the hold action when another key is tapped.\n            return false;\n    }\n}

As in the earlier example, you can filter Mod-Tap/Layer-Mod/One Shot keys by their mods rather than checking such keys manually in a switch-case. (Also applicable to the other following PER_KEY functions.)

Hold On Other Key Press

The "hold on other key press" mode can be enabled for all dual-role keys by adding the corresponding option to config.h:

c
#define HOLD_ON_OTHER_KEY_PRESS

This mode makes tap and hold keys (like Layer-Tap) work better for fast typists, or for high TAPPING_TERM settings. Compared to the "permissive hold" mode, this mode selects the hold action in more cases.

If you press a dual-role key, press another key, and then release the dual-role key, all within the tapping term, by default the dual-role key will perform its tap action. If the HOLD_ON_OTHER_KEY_PRESS option is enabled, the dual-role key will perform its hold action instead.

An example of a sequence that is affected by the "hold on other key press" mode, but not by the "permissive hold" mode:

                         TAPPING_TERM\n  +---------------------------|--------+\n  | +-------------+           |        |\n  | | LT(2, KC_A) |           |        |\n  | +-------------+           |        |\n  |       +--------------+    |        |\n  |       | KC_L         |    |        |\n  |       +--------------+    |        |\n  +---------------------------|--------+

Normally, if you do all this within the TAPPING_TERM (default: 200ms), this will be registered as al by the firmware and host system. With the HOLD_ON_OTHER_KEY_PRESS option enabled, the Layer-Tap key is considered as a layer switch if another key is pressed, and the above sequence would be registered as KC_RGHT (the mapping of L on layer 2).

For more granular control of this feature, you can add the following to your config.h:

c
#define HOLD_ON_OTHER_KEY_PRESS_PER_KEY

You can then add the following function to your keymap:

c
bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(1, KC_BSPC):\n            // Immediately select the hold action when another key is pressed.\n            return true;\n        default:\n            // Do not select the hold action when another key is pressed.\n            return false;\n    }\n}

Quick Tap Term

When the user holds a key after tapping it, the tapping function is repeated by default, rather than activating the hold function. This allows keeping the ability to auto-repeat the tapping function of a dual-role key. QUICK_TAP_TERM enables fine tuning of that ability. If set to 0, it will remove the auto-repeat ability and activate the hold function instead.

QUICK_TAP_TERM is set to TAPPING_TERM by default, which is the maximum allowed value for QUICK_TAP_TERM. To override its value (in milliseconds) add the following to your config.h:

c
#define QUICK_TAP_TERM 120

Example:

With default settings, a will be sent on the first release, then a will be sent on the second press, allowing the computer to trigger its auto repeat function until the key is released.

With QUICK_TAP_TERM configured, the timing between SFT_T(KC_A) up and SFT_T(KC_A) down must be within QUICK_TAP_TERM to trigger auto-repeat. Otherwise, the second press will be sent as a Shift. If QUICK_TAP_TERM is set to 0, the second press will always be sent as a Shift, effectively disabling auto-repeat.

WARNING

QUICK_TAP_TERM timing will also impact anything that uses tapping toggles (Such as the TT layer keycode, and the One Shot Tap Toggle).

For more granular control of this feature, you can add the following to your config.h:

c
#define QUICK_TAP_TERM_PER_KEY

You can then add the following function to your keymap:

c
uint16_t get_quick_tap_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case SFT_T(KC_SPC):\n            return QUICK_TAP_TERM - 20;\n        default:\n            return QUICK_TAP_TERM;\n    }\n}

TIP

If QUICK_TAP_TERM is set higher than TAPPING_TERM, it will default to TAPPING_TERM.

Flow Tap

Flow Tap modifies mod-tap MT and layer-tap LT keys such that when pressed within a short timeout of the preceding key, the tapping behavior is triggered. This is particularly useful for home row mods to avoid accidental mod triggers. It basically disables the hold behavior during fast typing, creating a "flow of taps." This also helps to reduce the input lag of tap-hold keys during fast typing, since the tapped behavior is sent immediately.

Flow Tap is enabled by defining FLOW_TAP_TERM in your config.h with the desired timeout in milliseconds. A timeout of 150 ms is recommended as a starting point:

c
#define FLOW_TAP_TERM 150

By default, Flow Tap is enabled when:

As an exception to the above, Flow Tap is temporarily disabled while a tap-hold key is undecided. This is to allow chording multiple mod-tap keys without having to wait out the Flow Tap term.

is_flow_tap_key()

Optionally, define the is_flow_tap_key() callback to specify where Flow Tap is enabled. The callback is called for both the tap-hold key and the key press immediately preceding it, and if the callback returns true for both keycodes, Flow Tap is enabled.

The default implementation of this callback is:

c
bool is_flow_tap_key(uint16_t keycode) {\n    if ((get_mods() & (MOD_MASK_CG | MOD_BIT_LALT)) != 0) {\n        return false; // Disable Flow Tap on hotkeys.\n    }\n    switch (get_tap_keycode(keycode)) {\n        case KC_SPC:\n        case KC_A ... KC_Z:\n        case KC_DOT:\n        case KC_COMM:\n        case KC_SCLN:\n        case KC_SLSH:\n            return true;\n    }\n    return false;\n}

Copy the above to your keymap.c and edit to customize. For instance, remove the case KC_SPC line to disable Flow Tap for the Space key.

get_flow_tap_term()

Optionally, for further flexibility, define the get_flow_tap_term() callback. Flow Tap acts only when key events are closer together than the time returned by the callback. Return a time of 0 to disable filtering. In this way, Flow Tap may be disabled for certain tap-hold keys, or when following certain previous keys.

The default implementation of this callback is

c
uint16_t get_flow_tap_term(uint16_t keycode, keyrecord_t* record,\n                           uint16_t prev_keycode) {\n    if (is_flow_tap_key(keycode) && is_flow_tap_key(prev_keycode)) {\n        return FLOW_TAP_TERM;\n    }\n    return 0;\n}

In this callback, keycode and record correspond to the current tap-hold key, and prev_keycode is the keycode of the previous key. Return the timeout to use. Returning 0 disables Flow Tap. This callback enables setting per-key timeouts. It is also possible to enable or disable Flow Tap for certain tap-hold keys or when following certain previous keys. Example:

c
uint16_t get_flow_tap_term(uint16_t keycode, keyrecord_t* record, \n                           uint16_t prev_keycode) {\n    if (is_flow_tap_key(keycode) && is_flow_tap_key(prev_keycode)) {\n        switch (keycode) {\n            case LCTL_T(KC_F):\n            case RCTL_T(KC_H):\n              return FLOW_TAP_TERM - 25;  // Short timeout on these keys.\n\n            default:\n              return FLOW_TAP_TERM;  // Longer timeout otherwise.\n        }\n    }\n    return 0;  // Disable Flow Tap.\n}

If you define both is_flow_tap_key() and get_flow_tap_term(), then the latter takes precedence.

Chordal Hold

Chordal Hold is intended to be used together with either Permissive Hold or Hold On Other Key Press. Chordal Hold is enabled by adding to your config.h:

c
#define CHORDAL_HOLD

Chordal Hold implements, by default, an "opposite hands" rule. Suppose a tap-hold key is pressed and then, before the tapping term, another key is pressed. With Chordal Hold, the tap-hold key is settled as tapped if the two keys are on the same hand.

Otherwise, if the keys are on opposite hands, Chordal Hold introduces no new behavior. Hold On Other Key Press or Permissive Hold may be used together with Chordal Hold to configure the behavior in the opposite hands case. With Hold On Other Key Press, an opposite hands chord is settled immediately as held. Or with Permissive Hold, an opposite hands chord is settled as held provided the other key is pressed and released (nested press) before releasing the tap-hold key.

Chordal Hold may be useful to avoid accidental modifier activation with mod-taps, particularly in rolled keypresses when using home row mods.

Notes:

An example of a sequence that is affected by “chordal hold”:

                         TAPPING_TERM   \n  +---------------------------|--------+\n  | +----------------------+  |        |\n  | | SFT_T(KC_A)          |  |        |\n  | +----------------------+  |        |\n  |    +--------------+       |        |\n  |    | KC_C         |       |        |\n  |    +--------------+       |        |\n  +---------------------------|--------+

If the two keys are on the same hand, then this will produce ac with SFT_T(KC_A) settled as tapped the moment that KC_C is pressed.

If the two keys are on opposite hands and the HOLD_ON_OTHER_KEY_PRESS option enabled, this will produce C with SFT_T(KC_A) settled as held when KC_C is pressed.

Or if the two keys are on opposite hands and the PERMISSIVE_HOLD option is enabled, this will produce C with SFT_T(KC_A) settled as held when that KC_C is released.

As an exception to the opposite hands rule, Chordal Hold supports combining multiple same-side modifiers within the tapping term. This is useful for multi-mod hotkeys like Ctrl + Shift + V. For instance with Chordal Hold together with either Permissive Hold or Hold On Other Key Press, the following input results in Ctrl + Shift + V being sent, supposing J and K are on the right hand side and V is on the left hand side:

Chordal Hold Handedness

Determining whether keys are on the same or opposite hands involves defining the "handedness" of each key position. By default, if nothing is specified, handedness is guessed based on keyboard geometry.

Handedness may be specified with chordal_hold_layout. In keymap.c, define chordal_hold_layout in the following form:

c
const char chordal_hold_layout[MATRIX_ROWS][MATRIX_COLS] PROGMEM =\n    LAYOUT(\n        'L', 'L', 'L', 'L', 'L', 'L',  'R', 'R', 'R', 'R', 'R', 'R', \n        'L', 'L', 'L', 'L', 'L', 'L',  'R', 'R', 'R', 'R', 'R', 'R', \n        'L', 'L', 'L', 'L', 'L', 'L',  'R', 'R', 'R', 'R', 'R', 'R', \n                       'L', 'L', 'L',  'R', 'R', 'R'\n    );

Use the same LAYOUT macro as used to define your keymap layers. Each entry is a character indicating the handedness of one key, either 'L' for left, 'R' for right, or '*' to exempt keys from the "opposite hands rule." A key with '*' handedness may settle as held in chords with any other key. This could be used perhaps on thumb keys or other places where you want to allow same-hand chords.

Keyboard makers may specify handedness in keyboard.json. Under "layouts", specify the handedness of a key by adding a "hand" field with a value of either "L", "R", or "*". Note that if "layouts" contains multiple layouts, only the first one is read. For example:

json
{"matrix": [5, 6], "x": 0, "y": 5.5, "w": 1.25, "hand": "*"},

Alternatively, handedness may be defined functionally with chordal_hold_handedness(). For example, in keymap.c define:

c
char chordal_hold_handedness(keypos_t key) {\n    if (key.col == 0 || key.col == MATRIX_COLS - 1) {\n        return '*';  // Exempt the outer columns.\n    }\n    // On split keyboards, typically, the first half of the rows are on the\n    // left, and the other half are on the right.\n    return key.row < MATRIX_ROWS / 2 ? 'L' : 'R';\n}

Given the matrix position of a key, the function should return 'L', 'R', or '*'. Adapt the logic in this function according to the keyboard's matrix.

WARNING

Note the matrix may have irregularities around larger keys, around the edges of the board, and around thumb clusters. You may find it helpful to use this debugging example to correspond physical keys to matrix positions.

If you define both chordal_hold_layout[MATRIX_ROWS][MATRIX_COLS] and

chordal_hold_handedness(keypos_t key) for handedness, the latter takes precedence.

Per-chord customization

Beyond the per-key configuration possible through handedness, Chordal Hold may be configured at a per-chord granularity for detailed tuning. In keymap.c, define get_chordal_hold(). Returning true allows the chord to be held, while returning false settles as tapped.

For example:

c
bool get_chordal_hold(uint16_t tap_hold_keycode, keyrecord_t* tap_hold_record,\n                      uint16_t other_keycode, keyrecord_t* other_record) {\n    // Exceptionally allow some one-handed chords for hotkeys.\n    switch (tap_hold_keycode) {\n        case LCTL_T(KC_Z):\n            if (other_keycode == KC_C || other_keycode == KC_V) {\n                return true;\n            }\n            break;\n\n        case RCTL_T(KC_SLSH):\n            if (other_keycode == KC_N) {\n                return true;\n            }\n            break;\n    }\n    // Otherwise defer to the opposite hands rule.\n    return get_chordal_hold_default(tap_hold_record, other_record);\n}

As shown in the last line above, you may use get_chordal_hold_default(tap_hold_record, other_record) to get the default tap vs. hold decision according to the opposite hands rule.

Retro Tapping

To enable retro tapping, add the following to your config.h:

c
#define RETRO_TAPPING

Holding and releasing a dual-function key without pressing another key will result in nothing happening. With retro tapping enabled, releasing the key without pressing another will send the original keycode even if it is outside the tapping term.

For instance, holding and releasing LT(2, KC_SPC) without hitting another key will result in nothing happening. With this enabled, it will send KC_SPC instead.

               TAPPING_TERM\n  +-----------------|------------------+\n  | +---------------|-------+          |\n  | | LT(2, KC_SPC) |       |          |\n  | +---------------|-------+          |\n  |                 |                  |\n  |                 |                  |\n  |                 |                  |\n  +-----------------|------------------+

For more granular control of this feature, you can add the following to your config.h:

c
#define RETRO_TAPPING_PER_KEY

You can then add the following function to your keymap:

c
bool get_retro_tapping(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(2, KC_SPC):\n            return true;\n        default:\n            return false;\n    }\n}

If the programs you use bind an action to taps of modifier keys (e.g. tapping left GUI to bring up the applications menu or tapping left Alt to focus the menu bar), you may find that using retro-tapping falsely triggers those actions. To counteract this, you can define a DUMMY_MOD_NEUTRALIZER_KEYCODE in config.h that will get sent in between the register and unregister events of a held Mod-Tap key. That way, the programs on your computer will no longer interpret the mod suppression induced by retro-tapping as a lone tap of a modifier key and will thus not falsely trigger the undesired action.

Naturally, for this technique to be effective, you must choose a DUMMY_MOD_NEUTRALIZER_KEYCODE for which no keyboard shortcuts are bound to. Recommended values are: KC_RIGHT_CTRL or KC_F18. Please note that DUMMY_MOD_NEUTRALIZER_KEYCODE must be a basic, unmodified, HID keycode, so values like KC_NO, KC_TRANSPARENT, or KC_PIPE (aka S(KC_BACKSLASH)) are not permitted.

By default, only left Alt and left GUI are neutralized. If you want to change the list of applicable modifier masks, use the following in your config.h:

c
#define MODS_TO_NEUTRALIZE { <mod_mask_1>, <mod_mask_2>, ... }

Examples:

c
#define DUMMY_MOD_NEUTRALIZER_KEYCODE KC_RIGHT_CTRL\n\n// Neutralize left alt and left GUI (Default value)\n#define MODS_TO_NEUTRALIZE { MOD_BIT(KC_LEFT_ALT), MOD_BIT(KC_LEFT_GUI) }\n\n// Neutralize left alt, left GUI, right GUI and left Control+Shift\n#define MODS_TO_NEUTRALIZE { MOD_BIT(KC_LEFT_ALT), MOD_BIT(KC_LEFT_GUI), MOD_BIT(KC_RIGHT_GUI), MOD_BIT(KC_LEFT_CTRL)|MOD_BIT(KC_LEFT_SHIFT) }

WARNING

Do not use MOD_xxx constants like MOD_LSFT or MOD_RALT, since they're 5-bit packed bit-arrays while MODS_TO_NEUTRALIZE expects a list of 8-bit packed bit-arrays. Use MOD_BIT(<kc>) or MOD_MASK_xxx instead.

Retro Shift

Auto Shift has its own version of retro tapping called retro shift. It is extremely similar to retro tapping, but holding the key past AUTO_SHIFT_TIMEOUT results in the value it sends being shifted. Other configurations also affect it differently; see here for more information.

Speculative Hold

Speculative Hold makes mod-tap keys more responsive by applying the modifier instantly on keydown, before the tap-hold decision is made. This is especially useful for actions like Shift+Click with a mouse, which can feel laggy with standard mod-taps.

The firmware holds the modifier speculatively. Once the key's behavior is settled:

Speculative Hold applies the modifier early but does not change the underlying tap-hold decision logic. Speculative Hold is compatible to use in combination with any other tap-hold options.

To enable Speculative Hold, add the following to your config.h:

c
#define SPECULATIVE_HOLD

By default, Speculative Hold applies to mod-taps using Shift, Ctrl, or Shift + Ctrl. You can override this behavior by defining the get_speculative_hold() callback in your keymap, for instance:

c
bool get_speculative_hold(uint16_t keycode, keyrecord_t* record) {\n    switch (keycode) { // These keys may be speculatively held.\n        case LCTL_T(KC_ESC):\n        case LSFT_T(KC_Z):\n        case RSFT_T(KC_SLSH):\n            return true;\n    }\n    return false; // Disable otherwise.\n}

Some operating systems or applications assign actions to tapping a modifier key by itself, e.g., tapping GUI to open a start menu. Because Speculative Hold sometimes sends a lone modifier key press, it can falsely trigger these actions (known as the "flashing mods" problem). How such an input is handled depends on the OS and application, so unfortunately, there is no universal solution.

To mitigate this issue, you can set DUMMY_MOD_NEUTRALIZER_KEYCODE (and optionally MODS_TO_NEUTRALIZE) in your config.h, as described above for Retro Tapping.

You can further prevent flashing mods by restricting when Speculative Hold is allowed to trigger. There are several options for this:

Why do we include the key record for the per key functions?

One thing that you may notice is that we include the key record for all of the "per key" functions, and may be wondering why we do that.

Well, it's simple really: customization. But specifically, it depends on how your keyboard is wired up. For instance, if each row is actually using a row in the keyboard's matrix, then it may be simpler to use if (record->event.key.row == 3) instead of checking a whole bunch of keycodes, which is especially good for those people using the tap-hold keys on the home row (see about home row mods here). So, you could fine-tune those to not interfere with your normal typing.

Why are there no *_kb or *_user functions?!

Unlike many of the other functions here, there isn't a need (or even reason) to have a quantum- or keyboard-level function. Only user-level functions are useful here, so there is no need to mark them as such.

', 197) - ])]); -} -const tap_hold = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); -export { - __pageData, - tap_hold as default -}; diff --git a/assets/tap_hold.md.CV7RBz1O.js b/assets/tap_hold.md.CV7RBz1O.js new file mode 100644 index 00000000000..531830bb978 --- /dev/null +++ b/assets/tap_hold.md.CV7RBz1O.js @@ -0,0 +1,13 @@ +import { _ as _export_sfc, o as openBlock, c as createElementBlock, al as createStaticVNode } from "./chunks/framework.8zKZLKO7.js"; +const __pageData = JSON.parse('{"title":"Tap-Hold Configuration Options","description":"","frontmatter":{},"headers":[],"relativePath":"tap_hold.md","filePath":"tap_hold.md","lastUpdated":null}'); +const _sfc_main = { name: "tap_hold.md" }; +function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { + return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ + createStaticVNode('

Tap-Hold Configuration Options

These options let you modify the behavior of the tap-hold keys, applying primarily to Mod-Tap MT and Layer-Tap LT keys. They also affect layer tap-toggle TT, one-shot OSM, OSL, and Swap Hands SH_T, SH_TT keys.

While Tap-Hold options are fantastic, they are not without their issues. We have tried to configure them with reasonable defaults, but that may still cause issues for some people.

INFO

Besides the tapping term, tap-hold options do not apply to Tap Dance keys. Tap Dance implements a separate, simpler decision logic to track when keys are tapped vs. held, and it does not support advanced tap-hold configurations like Permissive Hold, Chordal Hold, etc.

Tapping Term

The crux of all of the following features is the tapping term setting. This determines what is a tap and what is a hold. The exact timing for this to feel natural can vary from keyboard to keyboard, from switch to switch, and from key to key.

TIP

DYNAMIC_TAPPING_TERM_ENABLE enables three special keys that can help you quickly find a comfortable tapping term for you. See Dynamic Tapping Term for more details.

You can set the global time for this by adding the following setting to your config.h:

c
#define TAPPING_TERM 200

This setting is defined in milliseconds and defaults to 200ms. This is a good average for the majority of people.

For more granular control of this feature, you can add the following to your config.h:

c
#define TAPPING_TERM_PER_KEY

You can then add the following function to your keymap.c to customise the tapping term for each key:

c
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case SFT_T(KC_SPC):\n            return TAPPING_TERM + 1250;\n        case LT(1, KC_GRV):\n            return 130;\n        default:\n            return TAPPING_TERM;\n    }\n}

Example

You can compare keycodes to QK_MOD_TAP/QK_MOD_TAP_MAX and QK_LAYER_TAP/QK_LAYER_TAP_MAX to filter out Mod-Tap/Layer-Tap keys, rather than checking such keys manually in a switch-case. For instance, this example sets all Mod-Tap keys to have a higher tapping term, while leaving all other tap-hold keys unchanged:

c
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case QK_MOD_TAP ... QK_MOD_TAP_MAX:\n            return TAPPING_TERM + 100;\n        default:\n            return TAPPING_TERM;\n    }\n}

You can also use functions like QK_MOD_TAP_GET_MODS, QK_LAYER_MOD_GET_MODS, and QK_ONE_SHOT_MOD_GET_MODS to filter Mod-Tap/Layer-Mod/One Shot keys by their mods.

For instance, this example sets a higher tapping term for AltGr Mod-Taps and lower tapping terms for Shift Mod-Taps:

c
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    uint8_t mod = mod_config(QK_MOD_TAP_GET_MODS(keycode));\n    if (mod & MOD_LSFT != 0 || mod & MOD_RSFT != 0) {\n        return 100;\n    }\n    if (mod & MOD_RALT != 0) {\n        return TAPPING_TERM + 50;\n    }\n    return TAPPING_TERM;\n}

Dynamic Tapping Term

DYNAMIC_TAPPING_TERM_ENABLE is a feature you can enable in rules.mk that lets you use three special keys in your keymap to configure the tapping term on the fly:

KeyAliasesDescription
QK_DYNAMIC_TAPPING_TERM_PRINTDT_PRNTTypes the current tapping term, in milliseconds
QK_DYNAMIC_TAPPING_TERM_UPDT_UPIncreases the current tapping term by DYNAMIC_TAPPING_TERM_INCREMENTms (5ms by default)
QK_DYNAMIC_TAPPING_TERM_DOWNDT_DOWNDecreases the current tapping term by DYNAMIC_TAPPING_TERM_INCREMENTms (5ms by default)

Set the tapping term as usual with #define TAPPING_TERM <value> in config.h and add DYNAMIC_TAPPING_TERM_ENABLE = yes in rules.mk. Then, place the above three keys somewhere in your keymap and flash the new firmware onto your board.

Now, you can try using your dual-role keys such as Layer-Taps and Mod-Taps and use DT_DOWN and DT_UP to adjust the tapping term immediately. If you find that you frequently trigger the modifier of your Mod-Tap(s) by accident, for example, that's a sign that your tapping term may be too low, so tap DT_UP a few times to increase the tapping term until that no longer happens. Conversely, if you get superfluous characters when you actually intended to momentarily activate a layer, tap DT_DOWN to lower the tapping term. Do note that these keys affect the global tapping term, you cannot change the tapping term of a specific key on the fly.

Once you're satisfied with the current tapping term value, you can tap the DT_PRNT key to see your new tapping term, and you can replace the tapping term in config.h with this new value.

It's important to update TAPPING_TERM with the new value because the adjustments made using DT_UP and DT_DOWN are not persistent.

The value by which the tapping term increases or decreases when you tap DT_UP and DT_DOWN can be configured in config.h with #define DYNAMIC_TAPPING_TERM_INCREMENT <new value>. Note that the tapping term is not modified when holding down the tap term keys, so if you need to, for example, decrease the current tapping term by 50ms, you cannot just press down and hold DT_DOWN; you will have to tap it 10 times in a row with the default increment of 5ms.

If you need more flexibility, nothing prevents you from defining your own custom keys to dynamically change the tapping term.

c
enum custom_dynamic_tapping_term_keys = {\n    DT_UP_50 = SAFE_RANGE,\n    DT_DOWN_50,\n    DT_UP_X2,\n    DT_DOWN_X2,\n}\n\nbool process_record_user(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n    case DT_UP_50:\n        if (record->event.pressed) {\n            g_tapping_term += 50;\n        }\n        break;\n    case DT_DOWN_50:\n        if (record->event.pressed) {\n            g_tapping_term -= 50;\n        }\n        break;\n    case DT_UP_X2:\n        if (record->event.pressed) {\n            g_tapping_term *= 2;\n        }\n        break;\n    case DT_DOWN_X2:\n        if (record->event.pressed) {\n            g_tapping_term /= 2;\n        }\n        break;\n    }\n    return true;\n};

In order for this feature to be effective, if you use per-key tapping terms, then you need to make a few changes to the syntax of the get_tapping_term function. All you need to do is replace every occurrence of TAPPING_TERM in the get_tapping_term function by lowercase g_tapping_term. If you don't do this, you will still see the value typed by DT_PRNT go up and down as you configure the tapping term on the fly, but you won't feel those changes as they don't get applied. If you can go as low as 10ms and still easily trigger the tap function of a dual-role key, that's a sign that you forgot to make the necessary changes to your get_tapping_term function.

For instance, here's how the example get_tapping_term shown earlier should look after the transformation:

c
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case SFT_T(KC_SPC):\n           return g_tapping_term + 1250;\n        case LT(1, KC_GRV):\n            return 130;\n        default:\n            return g_tapping_term;\n    }\n}

The reason is that TAPPING_TERM is a macro that expands to a constant integer and thus cannot be changed at runtime, whereas g_tapping_term is a variable whose value can be changed at runtime. If you want, you can temporarily enable DYNAMIC_TAPPING_TERM_ENABLE to find a suitable tapping term value and then disable that feature and revert back to using the classic syntax for per-key tapping term settings. In case you need to access the tapping term from elsewhere in your code, you can use the GET_TAPPING_TERM(keycode, record) macro. This macro will expand to whatever is the appropriate access pattern given the current configuration.

Configuring Home Row Mods

"Home row mods" (HRMs) is a popular layout technique where modifiers are placed as Mod-Tap keys on the home row (A, S, D, F and J, K, L, ;, supposing QWERTY layout). This reduces hand movement and can increase comfort. However, because these keys are also used for fast typing, they are prone to accidental modifier triggers (when rolling keys) or accidental typed letters (when trying to use a modifier).

There is no single perfect configuration for home row mods, as it depends heavily on your typing speed and habits. However, a good starting point in QMK is (added in your config.h):

c
#define TAPPING_TERM 250\n#define PERMISSIVE_HOLD  // Triggers mod if you tap another key while holding.\n#define CHORDAL_HOLD     // Constrains holds to opposite-hand combinations.\n// Consider also:\n// #define FLOW_TAP_TERM 150 // Disables holds when typing quickly.

See Permissive Hold, Chordal Hold, and Flow Tap below for details on what they do and how to fine-tune them.

Additionally, Speculative Hold is useful to eliminate lag when combining a home row mod with mouse clicks (e.g., Shift + Click), as standard mod-tap keys do not send the modifier until the tap-hold decision is finalized.

Tap-Or-Hold Decision Modes

The code which decides between the tap and hold actions of dual-role keys supports three different modes, in increasing order of preference for the hold action:

  1. The default mode selects the hold action only if the dual-role key is held down longer than the tapping term. In this mode, pressing other keys while the dual-role key is held down does not influence the tap-or-hold decision. In other words, this mode ignores interrupts.

  2. The "permissive hold" mode, in addition to the default behavior, immediately selects the hold action when another key is tapped (pressed and then released) while the dual-role key is held down, even if this happens earlier than the tapping term. If another key is just pressed, but then the dual-role key is released before that other key (and earlier than the tapping term), this mode will still select the tap action. That is, this mode converts "nested" sequences, but not "rolls".

  3. The "hold on other key press" mode, in addition to the default behavior, immediately selects the hold action when another key is pressed while the dual-role key is held down, even if this happens earlier than the tapping term.

Note that until the tap-or-hold decision completes (which happens when either the dual-role key is released, or the tapping term has expired, or the extra condition for the selected decision mode is satisfied), key events are delayed and not transmitted to the host immediately. The default mode gives the most delay (if the dual-role key is held down, this mode always waits for the whole tapping term), and the other modes may give less delay when other keys are pressed, because the hold action may be selected earlier.

Comparison

To better illustrate the tap-or-hold decision modes, let us compare the expected output of each decision mode in a handful of tapping scenarios involving a Mod-Tap key (LSFT_T(KC_A)) and a regular key (KC_B) with the TAPPING_TERM set to 200ms.

Note: "kc held" in the "Physical key event" column means that the key wasn't physically released yet at this point in time.

Distinct taps (AABB)

TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
199LSFT_T(KC_A) upaaa
210KC_B downababab
220KC_B upababab
TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
200LSFT_T(KC_A) heldShiftShiftShift
201LSFT_T(KC_A) upShiftShiftShift
205KC_B downbbb
210KC_B upbbb

Nested tap (ABBA)

TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
110KC_B downB
120KC_B upBB
199LSFT_T(KC_A) upabBB
TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
110KC_B downB
120KC_B upBB
200LSFT_T(KC_A) heldBBB
210LSFT_T(KC_A) upBBB
TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
200LSFT_T(KC_A) heldShiftShiftShift
205KC_B downBBB
210KC_B upBBB
220LSFT_T(KC_A) upBBB

Rolling keys (ABAB)

TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
110KC_B downB
130LSFT_T(KC_A) upababB
140KC_B upababB
TimePhysical key eventDefaultPERMISSIVE_HOLDHOLD_ON_OTHER_KEY_PRESS
0LSFT_T(KC_A) down
110KC_B downB
200LSFT_T(KC_A) heldBBB
205LSFT_T(KC_A) upBBB
210KC_B upBBB

Default Mode

Example sequence 1 (the L key is also mapped to KC_RGHT on layer 2):

             TAPPING_TERM\n  +---------------|--------------------+\n  | +-------------|-------+            |\n  | | LT(2, KC_A) |       |            |\n  | +-------------|-------+            |\n  |               | +--------------+   |\n  |               | | KC_L         |   |\n  |               | +--------------+   |\n  +---------------|--------------------+

The above sequence would send a KC_RGHT, since LT(2, KC_A) is held longer than the TAPPING_TERM.


Example sequence 2 (the L key is also mapped to KC_RGHT on layer 2):

                           TAPPING_TERM\n  +-----------------------------|------+\n  | +---------------+           |      |\n  | | LT(2, KC_A)   |           |      |\n  | +---------------+           |      |\n  |            +--------------+ |      |\n  |            | KC_L         | |      |\n  |            +--------------+ |      |\n  +-----------------------------|------+

The above sequence will not send KC_RGHT but KC_A KC_L instead, since LT(2, KC_A) is not held longer than the TAPPING_TERM.


Example sequence 3 (Mod-Tap):

                         TAPPING_TERM\n  +---------------------------|--------+\n  | +-------------+           |        |\n  | | SFT_T(KC_A) |           |        |\n  | +-------------+           |        |\n  |       +--------------+    |        |\n  |       | KC_X         |    |        |\n  |       +--------------+    |        |\n  +---------------------------|--------+

In the above sequence, SFT_T(KC_A) has been released before the end of its TAPPING_TERM and as such will be interpreted as KC_A, followed by any key event that happened after the initial press of SFT_T(KC_A). In this instance, the output would be KC_A KC_X.

Permissive Hold

The "permissive hold" mode can be enabled for all dual-role keys by adding the corresponding option to config.h:

c
#define PERMISSIVE_HOLD

This makes tap and hold keys (like Layer-Tap) work better for fast typists, or for high TAPPING_TERM settings.

If you press a dual-role key, tap another key (press and release) and then release the dual-role key, all within the tapping term, by default the dual-role key will perform its tap action. If the PERMISSIVE_HOLD option is enabled, the dual-role key will perform its hold action instead.

An example of a sequence that is affected by the "permissive hold" mode:

                         TAPPING_TERM   \n  +---------------------------|--------+\n  | +----------------------+  |        |\n  | | LT(2, KC_A)          |  |        |\n  | +----------------------+  |        |\n  |    +--------------+       |        |\n  |    | KC_L         |       |        |\n  |    +--------------+       |        |\n  +---------------------------|--------+

Normally, if you do all this within the TAPPING_TERM (default: 200ms), this will be registered as al by the firmware and host system. With the PERMISSIVE_HOLD option enabled, the Layer-Tap key is considered as a layer switch if another key is tapped, and the above sequence would be registered as KC_RGHT (the mapping of L on layer 2). We could describe this sequence as a "nested tap" (the modified key's key down and key up events are "nested" between the dual-role key's key down and key up events).

However, this slightly different sequence will not be affected by the "permissive hold" mode:

                         TAPPING_TERM   \n  +---------------------------|--------+\n  | +-------------+           |        |\n  | | LT(2, KC_A) |           |        |\n  | +-------------+           |        |\n  |       +--------------+    |        |\n  |       | KC_L         |    |        |\n  |       +--------------+    |        |\n  +---------------------------|--------+

In the sequence above the dual-role key is released before the other key is released, and if that happens within the tapping term, the "permissive hold" mode will still choose the tap action for the dual-role key, and the sequence will be registered as al by the host. We could describe this as a "rolling press" (the two keys' key down and key up events behave as if you were rolling a ball across the two keys, first pressing each key down in sequence and then releasing them in the same order).

TIP

The PERMISSIVE_HOLD option is not noticeable if you also enable HOLD_ON_OTHER_KEY_PRESS because the latter option considers both the "nested tap" and "rolling press" sequences like shown above as a hold action, not the tap action. HOLD_ON_OTHER_KEY_PRESS makes the tap-or-hold decision earlier in the chain of key events, thus taking a precedence over PERMISSIVE_HOLD.

For more granular control of this feature, you can add the following to your config.h:

c
#define PERMISSIVE_HOLD_PER_KEY

You can then add the following function to your keymap:

c
bool get_permissive_hold(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(1, KC_BSPC):\n            // Immediately select the hold action when another key is tapped.\n            return true;\n        default:\n            // Do not select the hold action when another key is tapped.\n            return false;\n    }\n}

As in the earlier example, you can filter Mod-Tap/Layer-Mod/One Shot keys by their mods rather than checking such keys manually in a switch-case. (Also applicable to the other following PER_KEY functions.)

Hold On Other Key Press

The "hold on other key press" mode can be enabled for all dual-role keys by adding the corresponding option to config.h:

c
#define HOLD_ON_OTHER_KEY_PRESS

This mode makes tap and hold keys (like Layer-Tap) work better for fast typists, or for high TAPPING_TERM settings. Compared to the "permissive hold" mode, this mode selects the hold action in more cases.

If you press a dual-role key, press another key, and then release the dual-role key, all within the tapping term, by default the dual-role key will perform its tap action. If the HOLD_ON_OTHER_KEY_PRESS option is enabled, the dual-role key will perform its hold action instead.

An example of a sequence that is affected by the "hold on other key press" mode, but not by the "permissive hold" mode:

                         TAPPING_TERM\n  +---------------------------|--------+\n  | +-------------+           |        |\n  | | LT(2, KC_A) |           |        |\n  | +-------------+           |        |\n  |       +--------------+    |        |\n  |       | KC_L         |    |        |\n  |       +--------------+    |        |\n  +---------------------------|--------+

Normally, if you do all this within the TAPPING_TERM (default: 200ms), this will be registered as al by the firmware and host system. With the HOLD_ON_OTHER_KEY_PRESS option enabled, the Layer-Tap key is considered as a layer switch if another key is pressed, and the above sequence would be registered as KC_RGHT (the mapping of L on layer 2).

For more granular control of this feature, you can add the following to your config.h:

c
#define HOLD_ON_OTHER_KEY_PRESS_PER_KEY

You can then add the following function to your keymap:

c
bool get_hold_on_other_key_press(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(1, KC_BSPC):\n            // Immediately select the hold action when another key is pressed.\n            return true;\n        default:\n            // Do not select the hold action when another key is pressed.\n            return false;\n    }\n}

Quick Tap Term

When the user holds a key after tapping it, the tapping function is repeated by default, rather than activating the hold function. This allows keeping the ability to auto-repeat the tapping function of a dual-role key. QUICK_TAP_TERM enables fine tuning of that ability. If set to 0, it will remove the auto-repeat ability and activate the hold function instead.

QUICK_TAP_TERM is set to TAPPING_TERM by default, which is the maximum allowed value for QUICK_TAP_TERM. To override its value (in milliseconds) add the following to your config.h:

c
#define QUICK_TAP_TERM 120

Example:

With default settings, a will be sent on the first release, then a will be sent on the second press, allowing the computer to trigger its auto repeat function until the key is released.

With QUICK_TAP_TERM configured, the timing between SFT_T(KC_A) up and SFT_T(KC_A) down must be within QUICK_TAP_TERM to trigger auto-repeat. Otherwise, the second press will be sent as a Shift. If QUICK_TAP_TERM is set to 0, the second press will always be sent as a Shift, effectively disabling auto-repeat.

WARNING

QUICK_TAP_TERM timing will also impact anything that uses tapping toggles (Such as the TT layer keycode, and the One Shot Tap Toggle).

For more granular control of this feature, you can add the following to your config.h:

c
#define QUICK_TAP_TERM_PER_KEY

You can then add the following function to your keymap:

c
uint16_t get_quick_tap_term(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case SFT_T(KC_SPC):\n            return QUICK_TAP_TERM - 20;\n        default:\n            return QUICK_TAP_TERM;\n    }\n}

TIP

If QUICK_TAP_TERM is set higher than TAPPING_TERM, it will default to TAPPING_TERM.

Flow Tap

Flow Tap modifies mod-tap MT and layer-tap LT keys such that when pressed within a short timeout of the preceding key, the tapping behavior is triggered. This is particularly useful for home row mods to avoid accidental mod triggers. It basically disables the hold behavior during fast typing, creating a "flow of taps." This also helps to reduce the input lag of tap-hold keys during fast typing, since the tapped behavior is sent immediately.

Flow Tap is enabled by defining FLOW_TAP_TERM in your config.h with the desired timeout in milliseconds. A timeout of 150 ms is recommended as a starting point:

c
#define FLOW_TAP_TERM 150

By default, Flow Tap is enabled when:

As an exception to the above, Flow Tap is temporarily disabled while a tap-hold key is undecided. This is to allow chording multiple mod-tap keys without having to wait out the Flow Tap term.

is_flow_tap_key()

Optionally, define the is_flow_tap_key() callback to specify where Flow Tap is enabled. The callback is called for both the tap-hold key and the key press immediately preceding it, and if the callback returns true for both keycodes, Flow Tap is enabled.

The default implementation of this callback is:

c
bool is_flow_tap_key(uint16_t keycode) {\n    if ((get_mods() & (MOD_MASK_CG | MOD_BIT_LALT)) != 0) {\n        return false; // Disable Flow Tap on hotkeys.\n    }\n    switch (get_tap_keycode(keycode)) {\n        case KC_SPC:\n        case KC_A ... KC_Z:\n        case KC_DOT:\n        case KC_COMM:\n        case KC_SCLN:\n        case KC_SLSH:\n            return true;\n    }\n    return false;\n}

Copy the above to your keymap.c and edit to customize. For instance, remove the case KC_SPC line to disable Flow Tap for the Space key.

get_flow_tap_term()

Optionally, for further flexibility, define the get_flow_tap_term() callback. Flow Tap acts only when key events are closer together than the time returned by the callback. Return a time of 0 to disable filtering. In this way, Flow Tap may be disabled for certain tap-hold keys, or when following certain previous keys.

The default implementation of this callback is

c
uint16_t get_flow_tap_term(uint16_t keycode, keyrecord_t* record,\n                           uint16_t prev_keycode) {\n    if (is_flow_tap_key(keycode) && is_flow_tap_key(prev_keycode)) {\n        return FLOW_TAP_TERM;\n    }\n    return 0;\n}

In this callback, keycode and record correspond to the current tap-hold key, and prev_keycode is the keycode of the previous key. Return the timeout to use. Returning 0 disables Flow Tap. This callback enables setting per-key timeouts. It is also possible to enable or disable Flow Tap for certain tap-hold keys or when following certain previous keys. Example:

c
uint16_t get_flow_tap_term(uint16_t keycode, keyrecord_t* record, \n                           uint16_t prev_keycode) {\n    if (is_flow_tap_key(keycode) && is_flow_tap_key(prev_keycode)) {\n        switch (keycode) {\n            case LCTL_T(KC_F):\n            case RCTL_T(KC_H):\n              return FLOW_TAP_TERM - 25;  // Short timeout on these keys.\n\n            default:\n              return FLOW_TAP_TERM;  // Longer timeout otherwise.\n        }\n    }\n    return 0;  // Disable Flow Tap.\n}

If you define both is_flow_tap_key() and get_flow_tap_term(), then the latter takes precedence.

Chordal Hold

Chordal Hold is intended to be used together with either Permissive Hold or Hold On Other Key Press. Chordal Hold is enabled by adding to your config.h:

c
#define CHORDAL_HOLD

Chordal Hold implements, by default, an "opposite hands" rule. Suppose a tap-hold key is pressed and then, before the tapping term, another key is pressed. With Chordal Hold, the tap-hold key is settled as tapped if the two keys are on the same hand.

Otherwise, if the keys are on opposite hands, Chordal Hold introduces no new behavior. Hold On Other Key Press or Permissive Hold may be used together with Chordal Hold to configure the behavior in the opposite hands case. With Hold On Other Key Press, an opposite hands chord is settled immediately as held. Or with Permissive Hold, an opposite hands chord is settled as held provided the other key is pressed and released (nested press) before releasing the tap-hold key.

Chordal Hold may be useful to avoid accidental modifier activation with mod-taps, particularly in rolled keypresses when using home row mods.

Notes:

An example of a sequence that is affected by “chordal hold”:

                         TAPPING_TERM   \n  +---------------------------|--------+\n  | +----------------------+  |        |\n  | | SFT_T(KC_A)          |  |        |\n  | +----------------------+  |        |\n  |    +--------------+       |        |\n  |    | KC_C         |       |        |\n  |    +--------------+       |        |\n  +---------------------------|--------+

If the two keys are on the same hand, then this will produce ac with SFT_T(KC_A) settled as tapped the moment that KC_C is pressed.

If the two keys are on opposite hands and the HOLD_ON_OTHER_KEY_PRESS option enabled, this will produce C with SFT_T(KC_A) settled as held when KC_C is pressed.

Or if the two keys are on opposite hands and the PERMISSIVE_HOLD option is enabled, this will produce C with SFT_T(KC_A) settled as held when that KC_C is released.

As an exception to the opposite hands rule, Chordal Hold supports combining multiple same-side modifiers within the tapping term. This is useful for multi-mod hotkeys like Ctrl + Shift + V. For instance with Chordal Hold together with either Permissive Hold or Hold On Other Key Press, the following input results in Ctrl + Shift + V being sent, supposing J and K are on the right hand side and V is on the left hand side:

Chordal Hold Handedness

Determining whether keys are on the same or opposite hands involves defining the "handedness" of each key position. By default, if nothing is specified, handedness is guessed based on keyboard geometry.

Handedness may be specified with chordal_hold_layout. In keymap.c, define chordal_hold_layout in the following form:

c
const char chordal_hold_layout[MATRIX_ROWS][MATRIX_COLS] PROGMEM =\n    LAYOUT(\n        'L', 'L', 'L', 'L', 'L', 'L',  'R', 'R', 'R', 'R', 'R', 'R', \n        'L', 'L', 'L', 'L', 'L', 'L',  'R', 'R', 'R', 'R', 'R', 'R', \n        'L', 'L', 'L', 'L', 'L', 'L',  'R', 'R', 'R', 'R', 'R', 'R', \n                       'L', 'L', 'L',  'R', 'R', 'R'\n    );

Use the same LAYOUT macro as used to define your keymap layers. Each entry is a character indicating the handedness of one key, either 'L' for left, 'R' for right, or '*' to exempt keys from the "opposite hands rule." A key with '*' handedness may settle as held in chords with any other key. This could be used perhaps on thumb keys or other places where you want to allow same-hand chords.

Keyboard makers may specify handedness in keyboard.json. Under "layouts", specify the handedness of a key by adding a "hand" field with a value of either "L", "R", or "*". Note that if "layouts" contains multiple layouts, only the first one is read. For example:

json
{"matrix": [5, 6], "x": 0, "y": 5.5, "w": 1.25, "hand": "*"},

Alternatively, handedness may be defined functionally with chordal_hold_handedness(). For example, in keymap.c define:

c
char chordal_hold_handedness(keypos_t key) {\n    if (key.col == 0 || key.col == MATRIX_COLS - 1) {\n        return '*';  // Exempt the outer columns.\n    }\n    // On split keyboards, typically, the first half of the rows are on the\n    // left, and the other half are on the right.\n    return key.row < MATRIX_ROWS / 2 ? 'L' : 'R';\n}

Given the matrix position of a key, the function should return 'L', 'R', or '*'. Adapt the logic in this function according to the keyboard's matrix.

WARNING

Note the matrix may have irregularities around larger keys, around the edges of the board, and around thumb clusters. You may find it helpful to use this debugging example to correspond physical keys to matrix positions.

If you define both chordal_hold_layout[MATRIX_ROWS][MATRIX_COLS] and

chordal_hold_handedness(keypos_t key) for handedness, the latter takes precedence.

Per-chord customization

Beyond the per-key configuration possible through handedness, Chordal Hold may be configured at a per-chord granularity for detailed tuning. In keymap.c, define get_chordal_hold(). Returning true allows the chord to be held, while returning false settles as tapped.

For example:

c
bool get_chordal_hold(uint16_t tap_hold_keycode, keyrecord_t* tap_hold_record,\n                      uint16_t other_keycode, keyrecord_t* other_record) {\n    // Exceptionally allow some one-handed chords for hotkeys.\n    switch (tap_hold_keycode) {\n        case LCTL_T(KC_Z):\n            if (other_keycode == KC_C || other_keycode == KC_V) {\n                return true;\n            }\n            break;\n\n        case RCTL_T(KC_SLSH):\n            if (other_keycode == KC_N) {\n                return true;\n            }\n            break;\n    }\n    // Otherwise defer to the opposite hands rule.\n    return get_chordal_hold_default(tap_hold_record, other_record);\n}

As shown in the last line above, you may use get_chordal_hold_default(tap_hold_record, other_record) to get the default tap vs. hold decision according to the opposite hands rule.

Retro Tapping

To enable retro tapping, add the following to your config.h:

c
#define RETRO_TAPPING

Holding and releasing a dual-function key without pressing another key will result in nothing happening. With retro tapping enabled, releasing the key without pressing another will send the original keycode even if it is outside the tapping term.

For instance, holding and releasing LT(2, KC_SPC) without hitting another key will result in nothing happening. With this enabled, it will send KC_SPC instead.

               TAPPING_TERM\n  +-----------------|------------------+\n  | +---------------|-------+          |\n  | | LT(2, KC_SPC) |       |          |\n  | +---------------|-------+          |\n  |                 |                  |\n  |                 |                  |\n  |                 |                  |\n  +-----------------|------------------+

For more granular control of this feature, you can add the following to your config.h:

c
#define RETRO_TAPPING_PER_KEY

You can then add the following function to your keymap:

c
bool get_retro_tapping(uint16_t keycode, keyrecord_t *record) {\n    switch (keycode) {\n        case LT(2, KC_SPC):\n            return true;\n        default:\n            return false;\n    }\n}

If the programs you use bind an action to taps of modifier keys (e.g. tapping left GUI to bring up the applications menu or tapping left Alt to focus the menu bar), you may find that using retro-tapping falsely triggers those actions. To counteract this, you can define a DUMMY_MOD_NEUTRALIZER_KEYCODE in config.h that will get sent in between the register and unregister events of a held Mod-Tap key. That way, the programs on your computer will no longer interpret the mod suppression induced by retro-tapping as a lone tap of a modifier key and will thus not falsely trigger the undesired action.

Naturally, for this technique to be effective, you must choose a DUMMY_MOD_NEUTRALIZER_KEYCODE for which no keyboard shortcuts are bound to. Recommended values are: KC_RIGHT_CTRL or KC_F18. Please note that DUMMY_MOD_NEUTRALIZER_KEYCODE must be a basic, unmodified, HID keycode, so values like KC_NO, KC_TRANSPARENT, or KC_PIPE (aka S(KC_BACKSLASH)) are not permitted.

By default, only left Alt and left GUI are neutralized. If you want to change the list of applicable modifier masks, use the following in your config.h:

c
#define MODS_TO_NEUTRALIZE { <mod_mask_1>, <mod_mask_2>, ... }

Examples:

c
#define DUMMY_MOD_NEUTRALIZER_KEYCODE KC_RIGHT_CTRL\n\n// Neutralize left alt and left GUI (Default value)\n#define MODS_TO_NEUTRALIZE { MOD_BIT(KC_LEFT_ALT), MOD_BIT(KC_LEFT_GUI) }\n\n// Neutralize left alt, left GUI, right GUI and left Control+Shift\n#define MODS_TO_NEUTRALIZE { MOD_BIT(KC_LEFT_ALT), MOD_BIT(KC_LEFT_GUI), MOD_BIT(KC_RIGHT_GUI), MOD_BIT(KC_LEFT_CTRL)|MOD_BIT(KC_LEFT_SHIFT) }

WARNING

Do not use MOD_xxx constants like MOD_LSFT or MOD_RALT, since they're 5-bit packed bit-arrays while MODS_TO_NEUTRALIZE expects a list of 8-bit packed bit-arrays. Use MOD_BIT(<kc>) or MOD_MASK_xxx instead.

Retro Shift

Auto Shift has its own version of retro tapping called retro shift. It is extremely similar to retro tapping, but holding the key past AUTO_SHIFT_TIMEOUT results in the value it sends being shifted. Other configurations also affect it differently; see here for more information.

Speculative Hold

Speculative Hold makes mod-tap keys more responsive by applying the modifier instantly on keydown, before the tap-hold decision is made. This is especially useful for actions like Shift+Click with a mouse, which can feel laggy with standard mod-taps.

The firmware holds the modifier speculatively. Once the key's behavior is settled:

Speculative Hold applies the modifier early but does not change the underlying tap-hold decision logic. Speculative Hold is compatible to use in combination with any other tap-hold options.

To enable Speculative Hold, add the following to your config.h:

c
#define SPECULATIVE_HOLD

By default, Speculative Hold applies to mod-taps using Shift, Ctrl, or Shift + Ctrl. You can override this behavior by defining the get_speculative_hold() callback in your keymap, for instance:

c
bool get_speculative_hold(uint16_t keycode, keyrecord_t* record) {\n    switch (keycode) { // These keys may be speculatively held.\n        case LCTL_T(KC_ESC):\n        case LSFT_T(KC_Z):\n        case RSFT_T(KC_SLSH):\n            return true;\n    }\n    return false; // Disable otherwise.\n}

Some operating systems or applications assign actions to tapping a modifier key by itself, e.g., tapping GUI to open a start menu. Because Speculative Hold sends a lone modifier key press in some cases, it can falsely trigger these actions (known as the "flashing mods" problem). How such an input is handled depends on the OS and application, so unfortunately, there is no universal solution.

To mitigate this issue, you can set DUMMY_MOD_NEUTRALIZER_KEYCODE (and optionally MODS_TO_NEUTRALIZE) in your config.h, as described above for Retro Tapping.

You can further prevent flashing mods by restricting when Speculative Hold is allowed to trigger. There are several options for this:

Why do we include the key record for the per key functions?

One thing that you may notice is that we include the key record for all of the "per key" functions, and may be wondering why we do that.

Well, it's simple really: customization. But specifically, it depends on how your keyboard is wired up. For instance, if each row is actually using a row in the keyboard's matrix, then it may be simpler to use if (record->event.key.row == 3) instead of checking a whole bunch of keycodes, which is especially good for those people using the tap-hold keys on the home row (see about home row mods here). So, you could fine-tune those to not interfere with your normal typing.

Why are there no *_kb or *_user functions?!

Unlike many of the other functions here, there isn't a need (or even reason) to have a quantum- or keyboard-level function. Only user-level functions are useful here, so there is no need to mark them as such.

', 204) + ])]); +} +const tap_hold = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); +export { + __pageData, + tap_hold as default +}; diff --git a/assets/tap_hold.md.CFcRBW4O.lean.js b/assets/tap_hold.md.CV7RBz1O.lean.js similarity index 95% rename from assets/tap_hold.md.CFcRBW4O.lean.js rename to assets/tap_hold.md.CV7RBz1O.lean.js index 61737523459..ed94cdb261b 100644 --- a/assets/tap_hold.md.CFcRBW4O.lean.js +++ b/assets/tap_hold.md.CV7RBz1O.lean.js @@ -3,7 +3,7 @@ const __pageData = JSON.parse('{"title":"Tap-Hold Configuration Options","descri const _sfc_main = { name: "tap_hold.md" }; function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return openBlock(), createElementBlock("div", null, [..._cache[0] || (_cache[0] = [ - createStaticVNode("", 197) + createStaticVNode("", 204) ])]); } const tap_hold = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]); diff --git a/breaking_changes.html b/breaking_changes.html index 652e987601c..c6f24e2b91f 100644 --- a/breaking_changes.html +++ b/breaking_changes.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/breaking_changes_history.html b/breaking_changes_history.html index 0a9b30ed12d..d09fd1973a1 100644 --- a/breaking_changes_history.html +++ b/breaking_changes_history.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/breaking_changes_instructions.html b/breaking_changes_instructions.html index 388e6958a10..9d8059c84ae 100644 --- a/breaking_changes_instructions.html +++ b/breaking_changes_instructions.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/chibios_upgrade_instructions.html b/chibios_upgrade_instructions.html index 985e42fa1f3..c93e1d610b0 100644 --- a/chibios_upgrade_instructions.html +++ b/chibios_upgrade_instructions.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/cli.html b/cli.html index a0999a79a33..8a884995afb 100644 --- a/cli.html +++ b/cli.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/cli_commands.html b/cli_commands.html index 525317aeb22..56b8c45e9eb 100644 --- a/cli_commands.html +++ b/cli_commands.html @@ -9,9 +9,9 @@ - + - + @@ -136,7 +136,7 @@ -e ENV, --env ENV Set a variable to be passed to make. May be passed multiple times. -j PARALLEL, --parallel PARALLEL Set the number of parallel make jobs; 0 means unlimited.

Examples:

Run entire test suite:

qmk test-c

List available tests:

qmk test-c --list

Run matching test:

qmk test-c --test unicode*

Run single test:

qmk test-c --test basic

qmk generate-compilation-database

Usage:

qmk generate-compilation-database [-kb KEYBOARD] [-km KEYMAP]

This command has been deprecated as it cannot take into account configurables such as converters or environment variables normally specified on the command line; please use the --compiledb flag with qmk compile instead.

- + \ No newline at end of file diff --git a/cli_configuration.html b/cli_configuration.html index 71c562bac99..3a98025253c 100644 --- a/cli_configuration.html +++ b/cli_configuration.html @@ -9,9 +9,9 @@ - + - + @@ -34,7 +34,7 @@ default.keymap: None -> default compile.keymap: skully -> None Ψ Wrote configuration to '/Users/example/Library/Application Support/qmk/qmk.ini'

User Configuration Options

KeyDefault ValueDescription
user.keyboardNoneThe keyboard path (Example: clueboard/66/rev4)
user.keymapNoneThe keymap name (Example: default)
user.nameNoneThe user's GitHub username.

All Configuration Options

KeyDefault ValueDescription
compile.keyboardNoneThe keyboard path (Example: clueboard/66/rev4)
compile.keymapNoneThe keymap name (Example: default)
hello.nameNoneThe name to greet when run.
new_keyboard.keyboardNoneThe keyboard path (Example: clueboard/66/rev4)
new_keyboard.keymapNoneThe keymap name (Example: default)
- + \ No newline at end of file diff --git a/cli_development.html b/cli_development.html index 50c41e93f2c..9b7a5fbcce5 100644 --- a/cli_development.html +++ b/cli_development.html @@ -9,9 +9,9 @@ - + - + @@ -37,7 +37,7 @@ @cli.subcommand('Create a keymap.c from a QMK Configurator export.') def json_keymap(cli): pass

You will only be able to access these arguments using cli.args. For example:

cli.log.info('Reading from %s and writing to %s', cli.args.filename, cli.args.output)

Testing, and Linting, and Formatting (oh my!)

We use nose2, flake8, and yapf to test, lint, and format code. You can use the pytest and format-python subcommands to run these tests:

Testing and Linting

qmk pytest

Formatting

qmk format-python

Formatting Details

We use yapf to automatically format code. Our configuration is in the [yapf] section of setup.cfg.

TIP

Many editors can use yapf as a plugin to automatically format code as you type.

Testing Details

Our tests can be found in lib/python/qmk/tests/. You will find both unit and integration tests in this directory. We hope you will write both unit and integration tests for your code, but if you do not please favor integration tests.

If your PR does not include a comprehensive set of tests please add comments like this to your code so that other people know where they can help:

python
# TODO(unassigned/<your_github_username>): Write <unit|integration> tests

We use nose2 to run our tests. You can refer to the nose2 documentation for more details on what you can do in your test functions.

Linting Details

We use flake8 to lint our code. Your code should pass flake8 before you open a PR. This will be checked when you run qmk pytest and by CI when you submit a PR.

- + \ No newline at end of file diff --git a/cli_tab_complete.html b/cli_tab_complete.html index a2b3ef60709..f25216d5834 100644 --- a/cli_tab_complete.html +++ b/cli_tab_complete.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/coding_conventions_c.html b/coding_conventions_c.html index 9b79520d454..b94bb237f04 100644 --- a/coding_conventions_c.html +++ b/coding_conventions_c.html @@ -9,9 +9,9 @@ - + - + @@ -32,7 +32,7 @@ return -1; } }

Auto-formatting with clang-format

Clang-format is part of LLVM and can automatically format your code for you, because ain't nobody got time to do it manually. We supply a configuration file for it that applies most of the coding conventions listed above. It will only change whitespace and newlines, so you will still have to remember to include optional braces yourself.

Use the full LLVM installer to get clang-format on Windows, or use sudo apt install clang-format on Ubuntu.

If you run it from the command-line, pass -style=file as an option and it will automatically find the .clang-format configuration file in the QMK root directory.

If you use VSCode, the standard C/C++ plugin supports clang-format, alternatively there is a separate extension for it.

Some things (like LAYOUT macros) are destroyed by clang-format, so either don't run it on those files, or wrap the sensitive code in // clang-format off and // clang-format on.

- + \ No newline at end of file diff --git a/coding_conventions_python.html b/coding_conventions_python.html index 57eac2737de..32db0eb823f 100644 --- a/coding_conventions_python.html +++ b/coding_conventions_python.html @@ -9,9 +9,9 @@ - + - + @@ -83,7 +83,7 @@ if not bar: pass

Decorators

Use when appropriate. Try to avoid too much magic unless it helps with understanding.

Threading and Multiprocessing

Should be avoided. If you need this you will have to make a strong case before we merge your code.

Power Features

Python is an extremely flexible language and gives you many fancy features such as custom metaclasses, access to bytecode, on-the-fly compilation, dynamic inheritance, object reparenting, import hacks, reflection, modification of system internals, etc.

Don't use these.

Performance is not a critical concern for us, and code understandability is. We want our codebase to be approachable by someone who only has a day or two to play with it. These features generally come with a cost to easy understanding, and we would prefer to have code that can be readily understood over faster or more compact code.

Note that some standard library modules use these techniques and it is ok to make use of those modules. But please keep readability and understandability in mind when using them.

Type Annotated Code

For now we are not using any type annotation system, and would prefer that code remain unannotated. We may revisit this in the future.

Function length

Prefer small and focused functions.

We recognize that long functions are sometimes appropriate, so no hard limit is placed on function length. If a function exceeds about 40 lines, think about whether it can be broken up without harming the structure of the program.

Even if your long function works perfectly now, someone modifying it in a few months may add new behavior. This could result in bugs that are hard to find. Keeping your functions short and simple makes it easier for other people to read and modify your code.

You could find long and complicated functions when working with some code. Do not be intimidated by modifying existing code: if working with such a function proves to be difficult, you find that errors are hard to debug, or you want to use a piece of it in several different contexts, consider breaking up the function into smaller and more manageable pieces.

FIXMEs

It is OK to leave FIXMEs in code. Why? Encouraging people to at least document parts of code that need to be thought out more (or that are confusing) is better than leaving this code undocumented.

All FIXMEs should be formatted like:

FIXME(username): Revisit this code when the frob feature is done.

...where username is your GitHub username.

Testing

We use a combination of Integration and Unit testing to ensure that the our code is as bug-free as possible. All the tests can be found in lib/python/qmk/tests/. You can run all the tests with qmk pytest.

At the time of this writing our tests are not very comprehensive. Looking at the current tests and writing new test cases for untested situations is a great way to both familiarize yourself with the codebase and contribute to QMK.

Integration Tests

Integration tests can be found in lib/python/qmk/tests/test_cli_commands.py. This is where CLI commands are actually run and their overall behavior is verified. We use subprocess to launch each CLI command and a combination of checking output and returncode to determine if the right thing happened.

Unit Tests

The other test_*.py files in lib/python/qmk/tests/ contain unit tests. You can write tests for individual functions inside lib/python/qmk/ here. Generally these files are named after the module, with dots replaced by underscores.

At the time of this writing we do not do any mocking for our tests. If you would like to help us change this please open an issue or join #cli on Discord and start a conversation there.

- + \ No newline at end of file diff --git a/compatible_microcontrollers.html b/compatible_microcontrollers.html index 0aff97b0dd0..85c58ed12c7 100644 --- a/compatible_microcontrollers.html +++ b/compatible_microcontrollers.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
Skip to content
- + \ No newline at end of file diff --git a/config_options.html b/config_options.html index a437a95c526..1bfa2c8863a 100644 --- a/config_options.html +++ b/config_options.html @@ -9,9 +9,9 @@ - + - + @@ -22,7 +22,7 @@ LIB_SRC += lib_b.c SRC += c.c LIB_SRC += lib_d.cThe link order is as follows.
 ...  a.o c.o  ...  lib_b.a lib_d.a  ...
  • LAYOUTS
  • LTO_ENABLE
  • AVR MCU Options

    Feature Options

    Use these to enable or disable building certain features. The more you have enabled the bigger your firmware will be, and you run the risk of building a firmware too large for your MCU.

    USB Endpoint Limitations

    In order to provide services over USB, QMK has to use USB endpoints. These are a finite resource: each microcontroller has only a certain number. This limits what features can be enabled together. If the available endpoints are exceeded, a build error is thrown.

    The following features can require separate endpoints:

    In order to improve utilisation of the endpoints, the HID features can be combined to use a single endpoint. By default, MOUSEKEY, EXTRAKEY, and NKRO are combined into a single endpoint.

    The base keyboard functionality can also be combined into the endpoint, by setting KEYBOARD_SHARED_EP = yes. This frees up one more endpoint, but it can prevent the keyboard working in some BIOSes, as they do not implement Boot Keyboard protocol switching.

    Combining the mouse also breaks Boot Mouse compatibility. The mouse can be uncombined by setting MOUSE_SHARED_EP = no if this functionality is required.

    - + \ No newline at end of file diff --git a/configurator_architecture.html b/configurator_architecture.html index 6057c07a558..3b2f37a9cb3 100644 --- a/configurator_architecture.html +++ b/configurator_architecture.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/configurator_default_keymaps.html b/configurator_default_keymaps.html index 019d944a408..8a71f766049 100644 --- a/configurator_default_keymaps.html +++ b/configurator_default_keymaps.html @@ -9,9 +9,9 @@ - + - + @@ -117,7 +117,7 @@ } return process_record_user(keycode, record); };

    Note the call to process_record_user() at the end.

    Additional Reading

    For QMK Configurator to support your keyboard, your keyboard must be present in the master branch of the qmk_firmware repository. For instructions on this, please see Supporting Your Keyboard in QMK Configurator.

    - + \ No newline at end of file diff --git a/configurator_step_by_step.html b/configurator_step_by_step.html index d9e689afc17..f9936090b14 100644 --- a/configurator_step_by_step.html +++ b/configurator_step_by_step.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/configurator_troubleshooting.html b/configurator_troubleshooting.html index 26018f81312..38740643ea2 100644 --- a/configurator_troubleshooting.html +++ b/configurator_troubleshooting.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/contributing.html b/contributing.html index 83c349333f4..09034823330 100644 --- a/contributing.html +++ b/contributing.html @@ -9,9 +9,9 @@ - + - + @@ -31,7 +31,7 @@ FIRST_LAYER = SAFE_RANGE, SECOND_LAYER };

    Previewing the Documentation

    Before opening a pull request, you can preview your changes if you have set up the development environment by running this command from the qmk_firmware/ folder:

    qmk docs -b

    Which should automatically open your browser; otherwise, navigate to http://localhost:8936/.

    Keyboards

    Keyboards are the raison d'être for QMK. Some keyboards are community maintained, while others are maintained by the people responsible for making a particular keyboard. The readme.md should tell you who maintains a particular keyboard. If you have questions relating to a particular keyboard you can Open An Issue and tag the maintainer in your question.

    We also ask that you follow these guidelines:

    Quantum/TMK Core

    Before you put a lot of work into building your new feature you should make sure you are implementing it in the best way. You can get a basic understanding of QMK by reading Understanding QMK, which will take you on a tour of the QMK program flow. From here you should talk to us to get a sense of the best way to implement your idea. There are two main ways to do this:

    Feature and Bug Fix PRs affect all keyboards. We are also in the process of restructuring QMK. For this reason it is especially important for significant changes to be discussed before implementation has happened. If you open a PR without talking to us first please be prepared to do some significant rework if your choices do not mesh well with our planned direction.

    Here are some things to keep in mind when working on your feature or bug fix.

    We also ask that you follow these guidelines:

    Refactoring

    To maintain a clear vision of how things are laid out in QMK we try to plan out refactors in-depth and have a collaborator make the changes. If you have an idea for refactoring, or suggestions, open an issue, we'd love to talk about how QMK can be improved.

    What Does the Code of Conduct Mean for Me?

    Our Code of Conduct means that you are responsible for treating everyone on the project with respect and courtesy regardless of their identity. If you are the victim of any inappropriate behavior or comments as described in our Code of Conduct, we are here for you and will do the best to ensure that the abuser is reprimanded appropriately, per our code.

    - + \ No newline at end of file diff --git a/custom_matrix.html b/custom_matrix.html index 4d4c1c49905..9842be1105c 100644 --- a/custom_matrix.html +++ b/custom_matrix.html @@ -9,9 +9,9 @@ - + - + @@ -65,7 +65,7 @@ __attribute__((weak)) void matrix_init_user(void) {} __attribute__((weak)) void matrix_scan_user(void) {} - + \ No newline at end of file diff --git a/custom_quantum_functions.html b/custom_quantum_functions.html index 2ff81252e86..29153538d21 100644 --- a/custom_quantum_functions.html +++ b/custom_quantum_functions.html @@ -9,9 +9,9 @@ - + - + @@ -142,7 +142,7 @@ }

    The first argument trigger_time is the intended time of execution. If other delays prevent executing at the exact trigger time, this allows for "catch-up" or even skipping intervals, depending on the required behaviour.

    The second argument cb_arg is the same argument passed into defer_exec() below, and can be used to access state information from the original call context.

    The return value is the number of milliseconds to use if the function should be repeated -- if the callback returns 0 then it's automatically unregistered. In the example above, a hypothetical my_deferred_functionality() is invoked to determine if the callback needs to be repeated -- if it does, it reschedules for a 500 millisecond delay, otherwise it informs the deferred execution background task that it's done, by returning 0.

    TIP

    Note that the returned delay will be applied to the intended trigger time, not the time of callback invocation. This allows for generally consistent timing even in the face of occasional late execution.

    Deferred executor registration

    Once a callback has been defined, it can be scheduled using the following API:

    c
    deferred_token my_token = defer_exec(1500, my_callback, NULL);

    The first argument is the number of milliseconds to wait until executing my_callback -- in the case above, 1500 milliseconds, or 1.5 seconds.

    The third parameter is the cb_arg that gets passed to the callback at the point of execution. This value needs to be valid at the time the callback is invoked -- a local function value will be destroyed before the callback is executed and should not be used. If this is not required, NULL should be used.

    The return value is a deferred_token that can consequently be used to cancel the deferred executor callback before it's invoked. If a failure occurs, the returned value will be INVALID_DEFERRED_TOKEN. Usually this will be as a result of supplying 0 to the delay, or a NULL for the callback. The other failure case is if there are too many deferred executions "in flight" -- this can be increased by changing the limit, described below.

    Extending a deferred execution

    The deferred_token returned by defer_exec() can be used to extend a the duration a pending execution waits before it gets invoked:

    c
    // This will re-delay my_token's future execution such that it is invoked 800ms after the current time
     extend_deferred_exec(my_token, 800);

    Cancelling a deferred execution

    The deferred_token returned by defer_exec() can be used to cancel a pending execution before it gets invoked:

    c
    // This will cancel my_token's future execution
     cancel_deferred_exec(my_token);

    Once a token has been canceled, it should be considered invalid. Reusing the same token is not supported.

    Deferred callback limits

    There are a maximum number of deferred callbacks that can be scheduled, controlled by the value of the define MAX_DEFERRED_EXECUTORS.

    If registrations fail, then you can increase this value in your keyboard or keymap config.h file, for example to 16 instead of the default 8:

    c
    #define MAX_DEFERRED_EXECUTORS 16

    Advanced topics

    This page used to encompass a large set of features. We have moved many sections that used to be part of this page to their own pages. Everything below this point is simply a redirect so that people following old links on the web find what they're looking for.

    Layer Change Code

    Layer change code

    Persistent Configuration (EEPROM)

    Persistent Configuration (EEPROM)

    - + \ No newline at end of file diff --git a/data_driven_config.html b/data_driven_config.html index b73179da768..81b8e5e68a5 100644 --- a/data_driven_config.html +++ b/data_driven_config.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/documentation_best_practices.html b/documentation_best_practices.html index 2375c73b635..1e13dc1b382 100644 --- a/documentation_best_practices.html +++ b/documentation_best_practices.html @@ -9,9 +9,9 @@ - + - + @@ -35,7 +35,7 @@ |KC_COFFEE||Make Coffee| |KC_CREAM||Order Cream| |KC_SUGAR||Order Sugar|

    Place your documentation into docs/features/<my_cool_feature>.md, and add that file to the appropriate place in docs/_sidebar.json. If you have added any keycodes be sure to add them to docs/keycodes.md with a link back to your feature page.

    - + \ No newline at end of file diff --git a/documentation_templates.html b/documentation_templates.html index 7b6f6120bec..a5324243f56 100644 --- a/documentation_templates.html +++ b/documentation_templates.html @@ -9,9 +9,9 @@ - + - + @@ -52,7 +52,7 @@ * **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard * **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead * **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available - + \ No newline at end of file diff --git a/driver_installation_zadig.html b/driver_installation_zadig.html index 870c689ff42..badd1ecd327 100644 --- a/driver_installation_zadig.html +++ b/driver_installation_zadig.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/drivers/adc.html b/drivers/adc.html index 804c71206e8..a909ca457bd 100644 --- a/drivers/adc.html +++ b/drivers/adc.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/drivers/apa102.html b/drivers/apa102.html index b1de992b997..8313be07f7b 100644 --- a/drivers/apa102.html +++ b/drivers/apa102.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/drivers/audio.html b/drivers/audio.html index 1470d6912a9..c1d7f1f033b 100644 --- a/drivers/audio.html +++ b/drivers/audio.html @@ -9,16 +9,16 @@ - + - + - + -
    Skip to content
    - + \ No newline at end of file diff --git a/drivers/battery.html b/drivers/battery.html index 63a0beab1d4..9126504d091 100644 --- a/drivers/battery.html +++ b/drivers/battery.html @@ -9,9 +9,9 @@ - + - + @@ -26,7 +26,7 @@ // Read and return current state here return value; } - + \ No newline at end of file diff --git a/drivers/eeprom.html b/drivers/eeprom.html index 113ec85e54e..f29c9954371 100644 --- a/drivers/eeprom.html +++ b/drivers/eeprom.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/drivers/flash.html b/drivers/flash.html index 39be1c217af..9cb7e502692 100644 --- a/drivers/flash.html +++ b/drivers/flash.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/drivers/gpio.html b/drivers/gpio.html index 1b4c964f75c..f569cf06b16 100644 --- a/drivers/gpio.html +++ b/drivers/gpio.html @@ -9,9 +9,9 @@ - + - + @@ -25,7 +25,7 @@ } // some process }

    ATOMIC_BLOCK_FORCEON forces interrupts to be disabled before the block is executed, without regard to whether they are enabled or disabled. Then, after the block is executed, the interrupt is enabled.

    Note that ATOMIC_BLOCK_FORCEON can therefore be used if you know that interrupts are enabled before the execution of the block, or if you know that it is OK to enable interrupts at the completion of the block.

    - + \ No newline at end of file diff --git a/drivers/i2c.html b/drivers/i2c.html index 5d9a3571bf0..839a978e343 100644 --- a/drivers/i2c.html +++ b/drivers/i2c.html @@ -9,16 +9,16 @@ - + - + - + -
    Skip to content
    - + \ No newline at end of file diff --git a/drivers/is31fl3236.html b/drivers/is31fl3236.html index 20c21df6ca0..2e32f8798c4 100644 --- a/drivers/is31fl3236.html +++ b/drivers/is31fl3236.html @@ -9,9 +9,9 @@ - + - + @@ -32,7 +32,7 @@ {0, OUT1}, // etc... };

    API

    struct is31fl3236_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3236_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3236_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3236_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3236_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3236_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3236_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3236_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3236_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3236_set_led_control_register(uint8_t index, bool red, bool green, bool blue)

    Configure the LED control registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3236_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3236_set_led_control_register(uint8_t index, bool value)

    Configure the LED control registers for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3236_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3236_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3236_update_led_control_registers(uint8_t index)

    Flush the LED control register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3729.html b/drivers/is31fl3729.html index 8cdcad6e60c..84b57e2201e 100644 --- a/drivers/is31fl3729.html +++ b/drivers/is31fl3729.html @@ -9,9 +9,9 @@ - + - + @@ -33,7 +33,7 @@ {0, SW1_CS1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 12, figure 9.

    API

    struct is31fl3729_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3729_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3729_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3729_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3729_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3729_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3729_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3729_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3729_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3729_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)

    Configure the scaling registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3729_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3729_set_scaling_register(uint8_t index, uint8_t value)

    Configure the scaling registers for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3729_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3729_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3729_update_scaling_registers(uint8_t index)

    Flush the scaling register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3731.html b/drivers/is31fl3731.html index 54902f98d4d..75da2d3c7b4 100644 --- a/drivers/is31fl3731.html +++ b/drivers/is31fl3731.html @@ -9,9 +9,9 @@ - + - + @@ -32,7 +32,7 @@ {0, C1_1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 11, figure 8.

    API

    struct is31fl3731_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3731_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3731_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3731_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void is31fl3731_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3731_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3731_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3731_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3731_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3731_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3731_set_led_control_register(uint8_t index, bool red, bool green, bool blue)

    Configure the LED control registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3731_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3731_set_led_control_register(uint8_t index, bool value)

    Configure the LED control registers for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3731_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3731_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3731_update_led_control_registers(uint8_t index)

    Flush the LED control register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3733.html b/drivers/is31fl3733.html index f54b5e24109..c1b373f7a38 100644 --- a/drivers/is31fl3733.html +++ b/drivers/is31fl3733.html @@ -9,9 +9,9 @@ - + - + @@ -33,7 +33,7 @@ {0, SW1_CS1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 15, figure 9.

    API

    struct is31fl3733_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3733_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3733_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3733_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void is31fl3733_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3733_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3733_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3733_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3733_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3733_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3733_set_led_control_register(uint8_t index, bool red, bool green, bool blue)

    Configure the LED control registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3733_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3733_set_led_control_register(uint8_t index, bool value)

    Configure the LED control registers for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3733_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3733_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3733_update_led_control_registers(uint8_t index)

    Flush the LED control register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3736.html b/drivers/is31fl3736.html index 76b9e700159..380d59d4e83 100644 --- a/drivers/is31fl3736.html +++ b/drivers/is31fl3736.html @@ -9,9 +9,9 @@ - + - + @@ -33,7 +33,7 @@ {0, SW1_CS1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 16, figure 9.

    API

    struct is31fl3736_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3736_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3736_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3736_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void is31fl3736_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3736_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3736_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3736_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3736_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3736_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3736_set_led_control_register(uint8_t index, bool red, bool green, bool blue)

    Configure the LED control registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3736_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3736_set_led_control_register(uint8_t index, bool value)

    Configure the LED control registers for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3736_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3736_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3736_update_led_control_registers(uint8_t index)

    Flush the LED control register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3737.html b/drivers/is31fl3737.html index 89339394e3b..8ce6b6b2aad 100644 --- a/drivers/is31fl3737.html +++ b/drivers/is31fl3737.html @@ -9,9 +9,9 @@ - + - + @@ -33,7 +33,7 @@ {0, SW1_CS1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 15, figure 9.

    API

    struct is31fl3737_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3737_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3737_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3737_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void is31fl3737_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3737_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3737_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3737_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3737_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3737_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3737_set_led_control_register(uint8_t index, bool red, bool green, bool blue)

    Configure the LED control registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3737_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3737_set_led_control_register(uint8_t index, bool value)

    Configure the LED control registers for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3737_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3737_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3737_update_led_control_registers(uint8_t index)

    Flush the LED control register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3741.html b/drivers/is31fl3741.html index 0dd68c5f57b..3b0951560ad 100644 --- a/drivers/is31fl3741.html +++ b/drivers/is31fl3741.html @@ -9,9 +9,9 @@ - + - + @@ -33,7 +33,7 @@ {0, SW1_CS1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 12, figure 8.

    API

    struct is31fl3741_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3741_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3741_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3741_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void is31fl3741_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3741_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3741_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3741_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3741_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3741_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3741_set_led_control_register(uint8_t index, bool red, bool green, bool blue)

    Configure the LED control registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3741_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3741_set_led_control_register(uint8_t index, bool value)

    Configure the LED control registers for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3741_update_led_control_registers() after you are finished.

    Arguments


    void is31fl3741_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3741_update_led_control_registers(uint8_t index)

    Flush the LED control register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3742a.html b/drivers/is31fl3742a.html index a8f3d40104c..48866c1ab30 100644 --- a/drivers/is31fl3742a.html +++ b/drivers/is31fl3742a.html @@ -9,9 +9,9 @@ - + - + @@ -33,7 +33,7 @@ {0, SW1_CS1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 12, figure 8.

    API

    struct is31fl3742a_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3742a_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3742a_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3742a_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void is31fl3742a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3742a_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3742a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3742a_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3742a_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3742a_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3742a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)

    Configure the scaling registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3742a_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3742a_set_scaling_register(uint8_t index, uint8_t value)

    Configure the scaling register for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3742a_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3742a_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3742a_update_scaling_registers(uint8_t index)

    Flush the scaling register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3743a.html b/drivers/is31fl3743a.html index 871f07e5f99..422948bcf6f 100644 --- a/drivers/is31fl3743a.html +++ b/drivers/is31fl3743a.html @@ -9,9 +9,9 @@ - + - + @@ -33,7 +33,7 @@ {0, SW1_CS1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 12, figure 8.

    API

    struct is31fl3743a_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3743a_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3743a_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3743a_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void is31fl3743a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3743a_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3743a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3743a_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3743a_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3743a_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3743a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)

    Configure the scaling registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3743a_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3743a_set_scaling_register(uint8_t index, uint8_t value)

    Configure the scaling register for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3743a_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3743a_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3743a_update_scaling_registers(uint8_t index)

    Flush the scaling register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3745.html b/drivers/is31fl3745.html index 1194c4ea5fc..bbe5723d585 100644 --- a/drivers/is31fl3745.html +++ b/drivers/is31fl3745.html @@ -9,9 +9,9 @@ - + - + @@ -33,7 +33,7 @@ {0, SW1_CS1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 12, figure 9.

    API

    struct is31fl3745_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3745_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3745_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3745_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void is31fl3745_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3745_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3745_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3745_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3745_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3745_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3745_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)

    Configure the scaling registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3745_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3745_set_scaling_register(uint8_t index, uint8_t value)

    Configure the scaling register for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3745_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3745_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3745_update_scaling_registers(uint8_t index)

    Flush the scaling register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/is31fl3746a.html b/drivers/is31fl3746a.html index ffc83146f95..ab4c17fc5c7 100644 --- a/drivers/is31fl3746a.html +++ b/drivers/is31fl3746a.html @@ -9,9 +9,9 @@ - + - + @@ -33,7 +33,7 @@ {0, SW1_CS1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 13, figure 8.

    API

    struct is31fl3746a_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void is31fl3746a_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void is31fl3746a_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void is31fl3746a_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void is31fl3746a_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3746a_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3746a_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void is31fl3746a_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3746a_update_pwm_buffers() after you are finished.

    Arguments


    void is31fl3746a_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void is31fl3746a_set_scaling_register(uint8_t index, uint8_t red, uint8_t green, uint8_t blue)

    Configure the scaling registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call is31fl3746a_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3746a_set_scaling_register(uint8_t index, uint8_t value)

    Configure the scaling register for a single LED (single-color driver only). This function does not immediately update the LEDs; call is31fl3746a_update_scaling_registers() after you are finished.

    Arguments


    void is31fl3746a_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void is31fl3746a_update_scaling_registers(uint8_t index)

    Flush the scaling register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/serial.html b/drivers/serial.html index 8615160c14e..26a26a0ef90 100644 --- a/drivers/serial.html +++ b/drivers/serial.html @@ -9,9 +9,9 @@ - + - + @@ -72,7 +72,7 @@ #undef STM32_SIO_USE_USARTn #define STM32_SIO_USE_USARTn TRUE

    Where n matches the peripheral number of your selected USART on the MCU.

  • Override the default USART SIO driver if you use a USART peripheral that does not belong to the default selected SIOD1 driver. For instance, if you selected STM32_SERIAL_USE_USART3 the matching driver would be SIOD3.

    Add the following to your keyboard's config.h:

    c
    #define SERIAL_USART_DRIVER SIOD3
  • The PIO driver

    The PIO subsystem is a Raspberry Pi RP2040 specific implementation, using an integrated PIO peripheral and is therefore only available on this MCU. Because of the flexible nature of PIO peripherals, any GPIO pin can be used as a TX or RX pin. Half-duplex and Full-duplex operation modes are fully supported with this driver. Half-duplex uses the built-in pull-ups and GPIO manipulation of the RP2040 to drive the line high by default, thus an external pull-up resistor is not required.

    Optionally, the PIO peripheral utilized for split communication can be changed with the following define in config.h:

    c
    #define SERIAL_PIO_USE_PIO1 // Force the usage of PIO1 peripheral, by default the Serial implementation uses the PIO0 peripheral

    The Serial PIO program uses 2 state machines, 13 instructions and the complete interrupt handler of the PIO peripheral it is running on.

    Advanced Configuration

    There are several advanced configuration options that can be defined in your keyboards config.h file:

    Baudrate

    If you're having issues or need a higher baudrate with serial communication, you can change the baudrate which in turn controls the communication speed for serial. You want to lower the baudrate if you experience failed transactions.

    c
    #define SELECT_SOFT_SERIAL_SPEED n

    Where n is one of:

    SpeedBitbangHalf-duplex and Full-duplex
    0189000 baud (experimental)460800 baud
    1137000 baud (default)230400 baud (default)
    275000 baud115200 baud
    339000 baud57600 baud
    426000 baud38400 baud
    520000 baud19200 baud

    Alternatively you can specify the baudrate directly by defining SERIAL_USART_SPEED.

    Timeout

    This is the default time window in milliseconds in which a successful communication has to complete. Usually you don't want to change this value. But you can do so anyways by defining an alternate one in your keyboards config.h file:

    c
    #define SERIAL_USART_TIMEOUT 20    // USART driver timeout. default 20

    Troubleshooting

    If you're having issues with serial communication, you can enable debug messages that will give you insights which part of the communication failed. The enable these messages add to your keyboards config.h file:

    c
    #define SERIAL_DEBUG

    TIP

    The messages will be printed out to the CONSOLE output. For additional information, refer to Debugging/Troubleshooting QMK.

    Alternate Functions for selected STM32 MCUs

    Pins for USART Peripherals with

    STM32F303 / Proton-C Datasheet

    Pin Swap available: ✔️

    PinFunctionMode
    USART1
    PA9TXAF7
    PA10RXAF7
    PB6TXAF7
    PB7RXAF7
    PC4TXAF7
    PC5RXAF7
    PE0TXAF7
    PE1RXAF7
    USART2
    PA2TXAF7
    PA3RXAF7
    PA14TXAF7
    PA15RXAF7
    PB3TXAF7
    PB4RXAF7
    PD5TXAF7
    PD6RXAF7
    USART3
    PB10TXAF7
    PB11RXAF7
    PC10TXAF7
    PC11RXAF7
    PD8TXAF7
    PD9RXAF7

    STM32F072 Datasheet

    Pin Swap available: ✔️

    PinFunctionMode
    USART1
    PA9TXAF1
    PA10RXAF1
    PB6TXAF0
    PB7RXAF0
    USART2
    PA2TXAF1
    PA3RXAF1
    PA14TXAF1
    PA15RXAF1
    USART3
    PB10TXAF4
    PB11RXAF4
    PC4TXAF1
    PC5RXAF1
    PC10TXAF1
    PC11RXAF1
    PD8TXAF0
    PD9RXAF0
    USART4
    PA0TXAF4
    PA1RXAF4

    STM32F103 Medium Density (C8-CB) Datasheet

    Pin Swap available: N/A

    TX Pin is always Alternate Function Push-Pull, RX Pin is always regular input pin for any USART peripheral. For STM32F103 no additional Alternate Function configuration is necessary. QMK is already configured.

    Pin remapping:

    The pins of USART Peripherals use default Pins that can be remapped to use other pins using the AFIO registers. Default pins are marked bold. Add the appropriate defines to your config.h file.

    PinFunctionModeUSART_REMAP
    USART1
    PA9TXAFPP
    PA10RXIN
    PB6TXAFPPUSART1_REMAP
    PB7RXINUSART1_REMAP
    USART2
    PA2TXAFPP
    PA3RXIN
    PD5TXAFPPUSART2_REMAP
    PD6RXINUSART2_REMAP
    USART3
    PB10TXAFPP
    PB11RXIN
    PC10TXAFPPUSART3_PARTIALREMAP
    PC11RXINUSART3_PARTIALREMAP
    PD8TXAFPPUSART3_FULLREMAP
    PD9RXINUSART3_FULLREMAP
    - + \ No newline at end of file diff --git a/drivers/snled27351.html b/drivers/snled27351.html index ec161b3602a..913a0f0ea7f 100644 --- a/drivers/snled27351.html +++ b/drivers/snled27351.html @@ -9,9 +9,9 @@ - + - + @@ -32,7 +32,7 @@ {0, CB1_CA1}, // etc... };

    These values correspond to the register indices as shown in the datasheet on page 13.

    API

    struct snled27351_led_t

    Contains the PWM register addresses for a single RGB LED.

    Members


    void snled27351_init(uint8_t index)

    Initialize the LED driver. This function should be called first.

    Arguments


    void snled27351_write_register(uint8_t index, uint8_t reg, uint8_t data)

    Set the value of the given register.

    Arguments


    void snled27351_select_page(uint8_t index, uint8_t page)

    Change the current page for configuring the LED driver.

    Arguments


    void snled27351_set_color(int index, uint8_t red, uint8_t green, uint8_t blue)

    Set the color of a single LED (RGB driver only). This function does not immediately update the LEDs; call snled27351_update_pwm_buffers() after you are finished.

    Arguments


    void snled27351_set_color_all(uint8_t red, uint8_t green, uint8_t blue)

    Set the color of all LEDs (RGB driver only).

    Arguments


    void snled27351_set_value(int index, uint8_t value)

    Set the brightness of a single LED (single-color driver only). This function does not immediately update the LEDs; call snled27351_update_pwm_buffers() after you are finished.

    Arguments


    void snled27351_set_value_all(uint8_t value)

    Set the brightness of all LEDs (single-color driver only).

    Arguments


    void snled27351_set_led_control_register(uint8_t index, bool red, bool green, bool blue)

    Configure the LED control registers for a single LED (RGB driver only). This function does not immediately update the LEDs; call snled27351_update_led_control_registers() after you are finished.

    Arguments


    void snled27351_set_led_control_register(uint8_t index, bool value)

    Configure the LED control registers for a single LED (single-color driver only). This function does not immediately update the LEDs; call snled27351_update_led_control_registers() after you are finished.

    Arguments


    void snled27351_update_pwm_buffers(uint8_t index)

    Flush the PWM values to the LED driver.

    Arguments


    void snled27351_update_led_control_registers(uint8_t index)

    Flush the LED control register values to the LED driver.

    Arguments

    - + \ No newline at end of file diff --git a/drivers/spi.html b/drivers/spi.html index 8eac9d8d5e2..e305a6211b4 100644 --- a/drivers/spi.html +++ b/drivers/spi.html @@ -9,16 +9,16 @@ - + - + - + -
    Skip to content
    - + \ No newline at end of file diff --git a/drivers/ws2812.html b/drivers/ws2812.html index 2d23c3b8490..432128611fa 100644 --- a/drivers/ws2812.html +++ b/drivers/ws2812.html @@ -9,11 +9,11 @@ - + - + - + @@ -21,7 +21,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/easy_maker.html b/easy_maker.html index 29a8cb5e697..70980957bde 100644 --- a/easy_maker.html +++ b/easy_maker.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/faq_build.html b/faq_build.html index 5ac533e5775..42d56570f5a 100644 --- a/faq_build.html +++ b/faq_build.html @@ -9,9 +9,9 @@ - + - + @@ -25,7 +25,7 @@ $ sudo dfu-programmer atmega32u4 reset

    Note that running make with sudo is generally not a good idea, and you should use one of the former methods, if possible.

    Linux udev Rules

    On Linux, you'll need proper privileges to communicate with the bootloader device. You can either use sudo when flashing firmware (not recommended), or install the udev rules from the qmk_udev repository by running:

    util/install_udev.sh

    Note: With older versions of ModemManager (< 1.12), filtering only works when not in strict mode. The following commands can update that setting:

    printf '[Service]\nExecStart=\nExecStart=/usr/sbin/ModemManager --filter-policy=default' | sudo tee /etc/systemd/system/ModemManager.service.d/policy.conf
     sudo systemctl daemon-reload
     sudo systemctl restart ModemManager

    Serial device is not detected in bootloader mode on Linux

    Make sure your kernel has appropriate support for your device. If your device uses USB ACM, such as Pro Micro (Atmega32u4), make sure to include CONFIG_USB_ACM=y. Other devices may require USB_SERIAL and any of its sub options.

    Unknown Device for DFU Bootloader

    Issues encountered when flashing keyboards on Windows are most often due to having the wrong drivers installed for the bootloader, or none at all.

    Re-running the QMK installation script (curl -fsSL https://install.qmk.fm | sh) or reinstalling the QMK Toolbox may fix the issue. Alternatively, you can download and run the qmk_driver_installer package manually.

    If that doesn't work, then you may need to download and run Zadig. See Bootloader Driver Installation with Zadig for more detailed information.

    USB VID and PID

    You can use any ID you want with editing config.h. Using any presumably unused ID will be no problem in fact except for very low chance of collision with other product.

    Most boards in QMK use 0xFEED as the vendor ID. You should look through other keyboards to make sure you pick a unique Product ID.

    Also see this. https://github.com/tmk/tmk_keyboard/issues/150

    You can buy a really unique VID:PID here. I don't think you need this for personal use.

    I just flashed my keyboard and it does nothing/keypresses don't register - it's also ARM (rev6 planck, clueboard 60, hs60v2, etc...) (Feb 2019)

    Due to how EEPROM works on ARM based chips, saved settings may no longer be valid. This affects the default layers, and may, under certain circumstances we are still figuring out, make the keyboard unusable. Resetting the EEPROM will correct this.

    Planck rev6 reset EEPROM can be used to force an eeprom reset. After flashing this image, flash your normal firmware again which should restore your keyboard to normal working order. Preonic rev3 reset EEPROM

    If bootmagic is enabled in any form, you should be able to do this too (see Bootmagic docs and keyboard info for specifics on how to do this).

    - + \ No newline at end of file diff --git a/faq_debug.html b/faq_debug.html index a733a980103..cf4c99cdbe3 100644 --- a/faq_debug.html +++ b/faq_debug.html @@ -9,9 +9,9 @@ - + - + @@ -44,7 +44,7 @@ > matrix scan frequency: 316 > matrix scan frequency: 316

    hid_listen Can't Recognize Device

    When debug console of your device is not ready you will see like this:

    Waiting for device:.........

    Once the device is plugged in then hid_listen finds it you will get this message:

    Waiting for new device:.........................
     Listening:

    If you can't get this 'Listening:' message try building with CONSOLE_ENABLE=yes in [Makefile]

    You may need privileges to access the device an OS like Linux. Try sudo hid_listen.

    On many Linux distros you can avoid having to run hid_listen as root by creating a file called /etc/udev/rules.d/70-hid-listen.rules with the following content:

    SUBSYSTEM=="hidraw", ATTRS{idVendor}=="abcd", ATTRS{idProduct}=="def1", TAG+="uaccess", RUN{builtin}+="uaccess"

    Replace abcd and def1 with your keyboard's vendor and product id, letters must be lowercase. The RUN{builtin}+="uaccess" part is only needed for older distros.

    Can't Get Message on Console

    Check:

    - + \ No newline at end of file diff --git a/faq_general.html b/faq_general.html index e9eab7a42d0..5793f53c9d4 100644 --- a/faq_general.html +++ b/faq_general.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/faq_keymap.html b/faq_keymap.html index 4848e080736..086dcf08edb 100644 --- a/faq_keymap.html +++ b/faq_keymap.html @@ -9,9 +9,9 @@ - + - + @@ -21,7 +21,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/faq_misc.html b/faq_misc.html index 8e0ddb67410..e3f7ecf15de 100644 --- a/faq_misc.html +++ b/faq_misc.html @@ -9,9 +9,9 @@ - + - + @@ -24,7 +24,7 @@ Size after: text data bss dec hex filename 0 22396 0 22396 577c planck_rev4_cbbrowne.hex

    NKRO Doesn't work

    First you have to compile firmware with the build option NKRO_ENABLE in Makefile.

    Try Magic N command(LShift+RShift+N by default) when NKRO still doesn't work. You can use this command to toggle between NKRO and 6KRO mode temporarily. In some situations NKRO doesn't work and you will need to switch to 6KRO mode, in particular when you are in BIOS.

    TrackPoint Needs Reset Circuit (PS/2 Mouse Support)

    Without reset circuit you will have inconsistent result due to improper initialization of the hardware. See circuit schematic of TPM754:

    Can't Read Column of Matrix Beyond 16

    Use 1UL<<16 instead of 1<<16 in read_cols() in [matrix.h] when your columns goes beyond 16.

    In C 1 means one of [int] type which is [16 bit] in case of AVR, so you can't shift left more than 15. Thus, calculating 1<<16 will unexpectedly equal zero. To work around this, you have to use [unsigned long] type with 1UL.

    https://deskthority.net/workshop-f7/rebuilding-and-redesigning-a-classic-thinkpad-keyboard-t6181-60.html#p146279

    Special Extra Key Doesn't Work (System, Audio Control Keys)

    You need to define EXTRAKEY_ENABLE in rules.mk to use them in QMK.

    EXTRAKEY_ENABLE = yes          # Audio control and System control

    Wake from Sleep Doesn't Work

    In Windows check Allow this device to wake the computer setting in Power Management property tab of Device Manager. Also check your BIOS settings. Pressing any key during sleep should wake host.

    Using Arduino?

    Note that Arduino pin naming is different from actual chip. For example, Arduino pin D0 is not PD0. Check circuit with its schematics yourself.

    Arduino Leonardo and micro have ATMega32U4 and can be used for TMK, though Arduino bootloader may be a problem.

    Enabling JTAG

    By default, the JTAG debugging interface is disabled as soon as the keyboard starts up. JTAG-capable MCUs come from the factory with the JTAGEN fuse set, and it takes over certain pins of the MCU that the board may be using for the switch matrix, LEDs, etc.

    If you would like to keep JTAG enabled, just add the following to your config.h:

    c
    #define NO_JTAG_DISABLE

    USB 3 Compatibility

    Some problems can be fixed by switching from a USB 3.x port to a USB 2.0 port.

    Mac Compatibility

    OS X 10.11 and Hub

    See here: https://geekhack.org/index.php?topic=14290.msg1884034#msg1884034

    Problem in BIOS (UEFI) Setup/Resume (Sleep & Wake)/Power Cycles

    Some people reported their keyboard stops working in BIOS and/or after resume(power cycles).

    As of now the root cause is not clear, but some build options seem to be related. In Makefile, try to disable options like CONSOLE_ENABLE, NKRO_ENABLE, SLEEP_LED_ENABLE and/or others.

    More info:

    - + \ No newline at end of file diff --git a/feature_advanced_keycodes.html b/feature_advanced_keycodes.html index 262bd61c160..47b7222dabd 100644 --- a/feature_advanced_keycodes.html +++ b/feature_advanced_keycodes.html @@ -9,9 +9,9 @@ - + - + @@ -81,7 +81,7 @@ } return true; };

    Alternatively, this can be done with Key Overrides.

    Advanced topics

    This page used to encompass a large set of features. We have moved many sections that used to be part of this page to their own pages. Everything below this point is simply a redirect so that people following old links on the web find what they're looking for.

    Layers

    Mod-Tap

    One Shot Keys

    Tap-Hold Configuration Options

    Key Overrides

    - + \ No newline at end of file diff --git a/feature_converters.html b/feature_converters.html index 042d95a947c..0d7eb670b77 100644 --- a/feature_converters.html +++ b/feature_converters.html @@ -9,9 +9,9 @@ - + - + @@ -56,7 +56,7 @@ "pin_compatible": "elite_c", "diode_direction": "COL2ROW", }

    The above example, configures a keyboard for a default of elite_c while allowing any of the elite_c converter targets.

    The framework then allows mapping of pins from <PIN_COMPATIBLE> to converter <target>.

    WARNING

    Mapped pins should adhere strictly to the defined interface, any extras present on the hardware should be ignored.

    Available Pin Compatibility

    promicro

    Notes:

    Includes LEDs - these may be mapped to unused/unavailable pins when not present.

    - + \ No newline at end of file diff --git a/feature_debounce_type.html b/feature_debounce_type.html index 6220036b00f..6daeb5c7b89 100644 --- a/feature_debounce_type.html +++ b/feature_debounce_type.html @@ -9,9 +9,9 @@ - + - + @@ -29,7 +29,7 @@ | | | | +-----------------+ +--------------------

    Many debounce methods (but not all) will also make the device resistant to noise. If you are working with a technology that is susceptible to noise, you must choose a debounce method that will also mitigate noise for you.

    Types of debounce algorithms

    1. Unit of time: Timestamp (milliseconds) vs Cycles (scans)

    2. Symmetric vs Asymmetric

    3. Eager vs Defer

    4. Global vs Per-Key vs Per-Row

    Supported Debounce Algorithms

    QMK supports multiple algorithms through its debounce API.

    Debounce Time

    Default debounce time is 5 milliseconds and it can be changed with the following line in config.h:

    #define DEBOUNCE 10

    TIP

    Setting DEBOUNCE to 0 will disable this feature.

    Debounce Method

    Keyboards may select one of the core debounce methods by adding the following line into rules.mk:

    DEBOUNCE_TYPE = <name of algorithm>

    Name of algorithm is one of:

    AlgorithmDescription
    sym_defer_gDebouncing per keyboard. On any state change, a global timer is set. When DEBOUNCE milliseconds of no changes has occurred, all input changes are pushed. This is the highest performance algorithm with lowest memory usage and is noise-resistant.
    sym_defer_prDebouncing per row. On any state change, a per-row timer is set. When DEBOUNCE milliseconds of no changes have occurred on that row, the entire row is pushed. This can improve responsiveness over sym_defer_g while being less susceptible to noise than per-key algorithm.
    sym_defer_pkDebouncing per key. On any state change, a per-key timer is set. When DEBOUNCE milliseconds of no changes have occurred on that key, the key status change is pushed.
    sym_eager_prDebouncing per row. On any state change, response is immediate, followed by DEBOUNCE milliseconds of no further input for that row.
    sym_eager_pkDebouncing per key. On any state change, response is immediate, followed by DEBOUNCE milliseconds of no further input for that key.
    asym_eager_defer_pkDebouncing per key. On a key-down state change, response is immediate, followed by DEBOUNCE milliseconds of no further input for that key. On a key-up state change, a per-key timer is set. When DEBOUNCE milliseconds of no changes have occurred on that key, the key-up status change is pushed.

    TIP

    sym_defer_g is the default if DEBOUNCE_TYPE is undefined.

    TIP

    sym_eager_pr is suitable for use in keyboards where refreshing NUM_KEYS 8-bit counters is computationally expensive or has low scan rate while fingers usually hit one row at a time. This could be appropriate for the ErgoDox models where the matrix is rotated 90°. Hence its "rows" are really columns and each finger only hits a single "row" at a time with normal usage.

    Implementing your own debouncing code

    You have the option to implement you own debouncing algorithm with the following steps:

    - + \ No newline at end of file diff --git a/feature_eeprom.html b/feature_eeprom.html index 24c71d21f97..af34cbdc6ef 100644 --- a/feature_eeprom.html +++ b/feature_eeprom.html @@ -9,9 +9,9 @@ - + - + @@ -141,7 +141,7 @@ dprintf("Config: %ld\n", config.data); } } - + \ No newline at end of file diff --git a/feature_layers.html b/feature_layers.html index 2149bbd6f2a..31827d120e2 100644 --- a/feature_layers.html +++ b/feature_layers.html @@ -9,16 +9,16 @@ - + - + - + -
    Skip to content
    - + \ No newline at end of file diff --git a/feature_macros.html b/feature_macros.html index be524e9ae0c..02e70876501 100644 --- a/feature_macros.html +++ b/feature_macros.html @@ -9,9 +9,9 @@ - + - + @@ -177,7 +177,7 @@ } } } - + \ No newline at end of file diff --git a/feature_userspace.html b/feature_userspace.html index 7f9720924a6..6445b4dc2e4 100644 --- a/feature_userspace.html +++ b/feature_userspace.html @@ -9,9 +9,9 @@ - + - + @@ -112,7 +112,7 @@ }

    For boards that may not have a shift button (such as on a macro pad), we need a way to always include the bootloader option. To do that, add the following to the rules.mk in your userspace folder:

    make
    ifeq ($(strip $(FLASH_BOOTLOADER)), yes)
         OPT_DEFS += -DFLASH_BOOTLOADER
     endif

    This will add a new KC_MAKE keycode that can be used in any of your keymaps. And this keycode will output make <keyboard>:<keymap>, making frequent compiling easier. And this will work with any keyboard and any keymap as it will output the current boards info, so that you don't have to type this out every time.

    Also, holding Shift will add the flash target (:flash) to the command. Holding Control will add some commands that will speed up compiling time by processing multiple files at once.

    And for the boards that lack a shift key, or that you want to always attempt the flashing part, you can add FLASH_BOOTLOADER = yes to the rules.mk of that keymap.

    TIP

    This should flash the newly compiled firmware automatically, using the correct utility, based on the bootloader settings (or default to just generating the HEX file). However, it should be noted that this may not work on all systems. AVRDUDE doesn't work on WSL, namely.

    - + \ No newline at end of file diff --git a/features/audio.html b/features/audio.html index 848229e97b4..021c2cf8f7c 100644 --- a/features/audio.html +++ b/features/audio.html @@ -9,9 +9,9 @@ - + - + @@ -50,7 +50,7 @@ 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 );

    You will want to use whichever LAYOUT macro that your keyboard uses here. This maps it to the correct key location. Start in the bottom left of the keyboard layout, and move to the right, and then upwards. Fill in all the entries until you have a complete matrix.

    You can look at the Planck Keyboard as an example of how to implement this.

    Audio Click

    This adds a click sound each time you hit a button, to simulate click sounds from the keyboard. And the sounds are slightly different for each keypress, so it doesn't sound like a single long note, if you type rapidly.

    Keycodes available:

    KeyAliasesDescription
    QK_AUDIO_CLICKY_TOGGLECK_TOGGToggles Audio clicky mode
    QK_AUDIO_CLICKY_ONCK_ONTurns on Audio clicky mode
    QK_AUDIO_CLICKY_OFFCK_OFFTurns on Audio clicky mode
    QK_AUDIO_CLICKY_UPCK_UPIncreases frequency of the clicks
    QK_AUDIO_CLICKY_DOWNCK_DOWNDecreases frequency of the clicks
    QK_AUDIO_CLICKY_RESETCK_RSTResets frequency to default

    The feature is disabled by default, to save space. To enable it, add this to your config.h:

    c
    #define AUDIO_CLICKY

    You can configure the default, min and max frequencies, the stepping and built in randomness by defining these values:

    OptionDefault ValueDescription
    AUDIO_CLICKY_FREQ_DEFAULT440.0fSets the default/starting audio frequency for the clicky sounds.
    AUDIO_CLICKY_FREQ_MIN65.0fSets the lowest frequency (under 60f are a bit buggy).
    AUDIO_CLICKY_FREQ_MAX1500.0fSets the highest frequency. Too high may result in coworkers attacking you.
    AUDIO_CLICKY_FREQ_FACTOR1.18921fSets the stepping of UP/DOWN key codes. This is a multiplicative factor. The default steps the frequency up/down by a musical minor third.
    AUDIO_CLICKY_FREQ_RANDOMNESS0.05fSets a factor of randomness for the clicks, Setting this to 0f will make each click identical, and 1.0f will make this sound much like the 90's computer screen scrolling/typing effect.
    AUDIO_CLICKY_DELAY_DURATION1An integer note duration where 1 is 1/16th of the tempo, or a sixty-fourth note (see quantum/audio/musical_notes.h for implementation details). The main clicky effect will be delayed by this duration. Adjusting this to values around 6-12 will help compensate for loud switches.

    MIDI Functionality

    See MIDI

    Audio Keycodes

    KeyAliasesDescription
    QK_AUDIO_ONAU_ONTurns on Audio Feature
    QK_AUDIO_OFFAU_OFFTurns off Audio Feature
    QK_AUDIO_TOGGLEAU_TOGGToggles Audio state
    QK_AUDIO_CLICKY_TOGGLECK_TOGGToggles Audio clicky mode
    QK_AUDIO_CLICKY_ONCK_ONTurns on Audio clicky mode
    QK_AUDIO_CLICKY_OFFCK_OFFTurns on Audio clicky mode
    QK_AUDIO_CLICKY_UPCK_UPIncreases frequency of the clicks
    QK_AUDIO_CLICKY_DOWNCK_DOWNDecreases frequency of the clicks
    QK_AUDIO_CLICKY_RESETCK_RSTResets frequency to default
    QK_MUSIC_ONMU_ONTurns on Music Mode
    QK_MUSIC_OFFMU_OFFTurns off Music Mode
    QK_MUSIC_TOGGLEMU_TOGGToggles Music Mode
    QK_MUSIC_MODE_NEXTMU_NEXTCycles through the music modes
    QK_AUDIO_VOICE_NEXTAU_NEXTCycles through the audio voices
    QK_AUDIO_VOICE_PREVIOUSAU_PREVCycles through the audio voices in reverse
    - + \ No newline at end of file diff --git a/features/auto_shift.html b/features/auto_shift.html index 2acdbf665bd..6ff1a7f3983 100644 --- a/features/auto_shift.html +++ b/features/auto_shift.html @@ -9,9 +9,9 @@ - + - + @@ -110,7 +110,7 @@ [PRESS AS_RPT] 115

    The keyboard typed 115 which represents your current AUTO_SHIFT_TIMEOUT value. You are now set! Practice on the D key a little bit that showed up in the testing and you'll be golden.

    - + \ No newline at end of file diff --git a/features/autocorrect.html b/features/autocorrect.html index b9d5576bf79..0cecba017ad 100644 --- a/features/autocorrect.html +++ b/features/autocorrect.html @@ -9,9 +9,9 @@ - + - + @@ -136,7 +136,7 @@ +-------+-------+-------+-------+-------+

    If we were to encode this chain using the same format used for branching nodes, we would encode a 16-bit node link with every node, costing 8 more bytes in this example. Across the whole trie, this adds up. Conveniently, we can point to intermediate points in the chain and interpret the bytes in the same way as before. E.g. starting at the i instead of the l, and the subchain has the same format.

    Leaf node. A leaf node corresponds to a particular typo and stores data to correct the typo. The leaf begins with a byte for the number of backspaces to type, and is followed by a null-terminated ASCII string of the replacement text. The idea is, after tapping backspace the indicated number of times, we can simply pass this string to the send_string_P function. For fitler, we need to tap backspace 3 times (not 4, because we catch the typo as the final ‘r’ is pressed) and replace it with lter. To identify the node as a leaf, the two high bits are set to 10 by ORing the backspace count with 128:

    +-------+-------+-------+-------+-------+-------+
     | 3|128 |  'l'  |  't'  |  'e'  |  'r'  |   0   |
     +-------+-------+-------+-------+-------+-------+

    Decoding

    This format is by design decodable with fairly simple logic. A 16-bit variable state represents our current position in the trie, initialized with 0 to start at the root node. Then, for each keycode, test the highest two bits in the byte at state to identify the kind of node.

    Credits

    Credit goes to getreuer for originally implementing this here. As well as to filterpaper for converting the code to use PROGMEM, and additional improvements.

    - + \ No newline at end of file diff --git a/features/backlight.html b/features/backlight.html index 620f4c4352f..2274cc889cf 100644 --- a/features/backlight.html +++ b/features/backlight.html @@ -9,11 +9,11 @@ - + - + - + @@ -31,7 +31,7 @@ // Optional - runs periodically // Note that this is called in the main keyboard loop, // so long running actions here can cause performance issues -}

    AVR Configuration

    PWM Driver

    The following table describes the supported pins for the PWM driver. Only cells marked with a timer number are capable of hardware PWM output; any others must use the timer driver.

    Backlight PinAT90USB64/128AT90USB162ATmega16/32U4ATmega16/32U2ATmega32AATmega328/P
    B1Timer 1
    B2Timer 1
    B5Timer 1Timer 1
    B6Timer 1Timer 1
    B7Timer 1Timer 1Timer 1Timer 1
    C4Timer 3
    C5Timer 3Timer 1Timer 1
    C6Timer 3Timer 1Timer 3Timer 1
    D4Timer 1
    D5Timer 1

    Timer Driver

    Any GPIO pin can be used with this driver. The following table describes the supported timers:

    AT90USB64/128AT90USB162ATmega16/32U4ATmega16/32U2ATmega32AATmega328/P
    Timers 1 & 3Timer 1Timers 1 & 3Timer 1Timer 1Timer 1

    The following #defines apply only to the timer driver:

    DefineDefaultDescription
    BACKLIGHT_PWM_TIMER1The timer to use

    Note that the choice of timer may conflict with the Audio feature.

    ChibiOS/ARM Configuration

    PWM Driver

    Depending on the ChibiOS board configuration, you may need to enable PWM at the keyboard level. For STM32, this would look like:

    c
    #pragma once
    +}

    AVR Configuration

    PWM Driver

    The following table describes the supported pins for the PWM driver. Only cells marked with a timer number are capable of hardware PWM output; any others must use the timer driver.

    Backlight PinAT90USB64/128AT90USB162ATmega16/32U4ATmega16/32U2ATmega32AATmega328/P
    B1Timer 1
    B2Timer 1
    B5Timer 1Timer 1
    B6Timer 1Timer 1
    B7Timer 1Timer 1Timer 1Timer 1
    C4Timer 3
    C5Timer 3Timer 1Timer 1
    C6Timer 3Timer 1Timer 3Timer 1
    D4Timer 1
    D5Timer 1

    Timer Driver

    Any GPIO pin can be used with this driver. The following table describes the supported timers:

    AT90USB64/128AT90USB162ATmega16/32U4ATmega16/32U2ATmega32AATmega328/P
    Timers 1 & 3Timer 1Timers 1 & 3Timer 1Timer 1Timer 1

    The following #defines apply only to the timer driver:

    DefineDefaultDescription
    BACKLIGHT_PWM_TIMER1The timer to use

    Note that the choice of timer may conflict with the Audio feature.

    ChibiOS/ARM Configuration

    PWM Driver

    Depending on the ChibiOS board configuration, you may need to enable PWM at the keyboard level. For STM32, this would look like:

    c
    #pragma once
     
     #define HAL_USE_PWM TRUE
     
    @@ -40,7 +40,7 @@
     #include_next <mcuconf.h>
     
     #undef STM32_PWM_USE_TIM4
    -#define STM32_PWM_USE_TIM4 TRUE

    The following #defines apply only to the pwm driver:

    DefineDefaultDescription
    BACKLIGHT_PWM_DRIVERPWMD4The PWM driver to use
    BACKLIGHT_PWM_CHANNEL3The PWM channel to use
    BACKLIGHT_PAL_MODE2The pin alternative function to use
    BACKLIGHT_PWM_PERIODNot definedThe PWM period in counter ticks - Default is platform dependent

    Refer to the ST datasheet for your particular MCU to determine these values. For example, these defaults are set up for pin B8 on a Proton-C (STM32F303) using TIM4_CH3 on AF2. Unless you are designing your own keyboard, you generally should not need to change them.

    Timer Driver

    Depending on the ChibiOS board configuration, you may need to enable general-purpose timers at the keyboard level. For STM32, this would look like:

    c
    #pragma once
    +#define STM32_PWM_USE_TIM4 TRUE

    The following #defines apply only to the pwm driver:

    DefineDefaultDescription
    BACKLIGHT_PWM_DRIVERPWMD4The PWM driver to use
    BACKLIGHT_PWM_CHANNEL3The PWM channel to use
    BACKLIGHT_PAL_MODE2The pin alternative function to use
    BACKLIGHT_PWM_PERIODNot definedThe PWM period in counter ticks - Default is platform dependent

    Refer to the ST datasheet for your particular MCU to determine these values. For example, these defaults are set up for pin B8 on a Proton-C (STM32F303) using TIM4_CH3 on AF2. Unless you are designing your own keyboard, you generally should not need to change them.

    Timer Driver

    Depending on the ChibiOS board configuration, you may need to enable general-purpose timers at the keyboard level. For STM32, this would look like:

    c
    #pragma once
     
     #define HAL_USE_GPT TRUE
     
    @@ -50,7 +50,7 @@
     
     #undef STM32_GPT_USE_TIM15
     #define STM32_GPT_USE_TIM15 TRUE

    The following #defines apply only to the timer driver:

    DefineDefaultDescription
    BACKLIGHT_GPT_DRIVERGPTD15The timer to use

    Example Schematic

    Since the MCU can only supply so much current to its GPIO pins, instead of powering the backlight directly from the MCU, the backlight pin is connected to a transistor or MOSFET that switches the power to the LEDs.

    In this typical example, the backlight LEDs are all connected in parallel towards an N-channel MOSFET. Its gate pin is wired to one of the microcontroller's GPIO pins through a 470Ω resistor to avoid ringing. A pulldown resistor is also placed between the gate pin and ground to keep it at a defined state when it is not otherwise being driven by the MCU. The values of these resistors are not critical - see this Electronics StackExchange question for more information.

    Backlight example circuit

    API

    void backlight_toggle(void)

    Toggle the backlight on or off.


    void backlight_enable(void)

    Turn the backlight on.


    void backlight_disable(void)

    Turn the backlight off.


    void backlight_step(void)

    Cycle through backlight levels.


    void backlight_increase(void)

    Increase the backlight level.


    void backlight_decrease(void)

    Decrease the backlight level.


    void backlight_level(uint8_t level)

    Set the backlight level.

    Arguments


    uint8_t get_backlight_level(void)

    Get the current backlight level.

    Return Value

    The current backlight level, from 0 to BACKLIGHT_LEVELS.


    bool is_backlight_enabled(void)

    Get the current backlight state.

    Return Value

    true if the backlight is enabled.


    void backlight_toggle_breathing(void)

    Toggle backlight breathing on or off.


    void backlight_enable_breathing(void)

    Turn backlight breathing on.


    void backlight_disable_breathing(void)

    Turn backlight breathing off.


    bool is_backlight_breathing(void)

    Get the current backlight breathing state.

    Return Value

    true if backlight breathing is enabled.

    - + \ No newline at end of file diff --git a/features/battery.html b/features/battery.html index 6245d288ee9..4013591e57d 100644 --- a/features/battery.html +++ b/features/battery.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/bootmagic.html b/features/bootmagic.html index 51371e0f13f..9ed33c28bd0 100644 --- a/features/bootmagic.html +++ b/features/bootmagic.html @@ -9,9 +9,9 @@ - + - + @@ -45,7 +45,7 @@ bootloader_jump(); } }

    You can define additional logic here. For instance, resetting the EEPROM or requiring additional keys to be pressed to trigger Bootmagic. Keep in mind that bootmagic_scan is called before a majority of features are initialized in the firmware.

    Addenda

    To manipulate settings that were formerly configured through the now-deprecated full Bootmagic feature, see Magic Keycodes.

    The Command feature, formerly known as Magic, also allows you to control different aspects of your keyboard. While it shares some functionality with Magic Keycodes, it also allows you to do things that Magic Keycodes cannot, such as printing version information to the console. For more information, see Command.

    - + \ No newline at end of file diff --git a/features/caps_word.html b/features/caps_word.html index 5908c2992fb..62c4d2c3feb 100644 --- a/features/caps_word.html +++ b/features/caps_word.html @@ -9,9 +9,9 @@ - + - + @@ -44,7 +44,7 @@ // Do something when Caps Word deactivates. } } - + \ No newline at end of file diff --git a/features/combo.html b/features/combo.html index 88bf4ccc84f..81a9e467062 100644 --- a/features/combo.html +++ b/features/combo.html @@ -9,9 +9,9 @@ - + - + @@ -248,7 +248,7 @@ COMB(QW_UNDO, C(KC_Z), KC_Q, KC_W) SUBS(TH_THE, "the", KC_T, KC_H) // SUBS uses SEND_STRING to output the given string. ...

    For small to huge ready made dictionaries of combos, you can check out http://combos.gboards.ca/.

    - + \ No newline at end of file diff --git a/features/command.html b/features/command.html index fd33db98965..e2e94cd8eef 100644 --- a/features/command.html +++ b/features/command.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/community_modules.html b/features/community_modules.html index 1a132eea4d7..471d1f7424e 100644 --- a/features/community_modules.html +++ b/features/community_modules.html @@ -9,9 +9,9 @@ - + - + @@ -45,7 +45,7 @@ } ] }

    At minimum, the module must provide the module_name and maintainer fields.

    The license field is encouraged to indicate the terms for using and sharing the module. It is recommended to use a SPDX license identifier like "Apache-2.0" or "GPL-2.0-or-later" if possible.

    The url field may specify a URL to more information about the module.

    The use of features matches the definition normally provided within keyboard.json and info.json, allowing a module to signal to the build system that it has its own dependencies. In the example above, it enables the deferred executor feature whenever the above module is used in a build.

    The keycodes array allows a module to provide new keycodes (as well as corresponding aliases) to a keymap.

    config.h

    This file will be automatically added to the build as if it were present in the keyboard or keymap.

    rules.mk / post_rules.mk

    These two files follows standard QMK build system logic, allowing for Makefile-style customisation as if it were present in the keyboard or keymap.

    <module>.c

    This file will be automatically added to the build if the filename matches the directory name. For example, the qmk/hello_world module contains a hello_world.c file, which is automatically added to the build.

    INFO

    Other files intended to be included must use the normal method of SRC += my_file.c inside rules.mk.

    TIP

    This file should use ASSERT_COMMUNITY_MODULES_MIN_API_VERSION(1,0,0); to enforce a minimum version of the API that it requires, ensuring the Community Module is built with a compatible version of QMK. The list of APIs and corresponding version is given at the bottom of this document. Note the use of commas instead of periods.

    introspection.c / introspection.h

    These two files hook into the keymap introspection logic -- the header is prepended before the user keymap, and the C source file is appended after the user keymap.

    The header may provide definitions which are useful to the user's keymap.c.

    The source file may provide functions which allow access to information specified in the user's keymap.c.

    WARNING

    Introspection is a relatively advanced topic within QMK, and existing patterns should be followed. If you need help please open an issue or chat with us on Discord.

    led_matrix_module.inc

    This file defines LED matrix effects in the same form as used with led_matrix_kb.inc and led_matrix_user.inc (see Custom LED Matrix Effects). Effect mode names are prepended with LED_MATRIX_COMMUNITY_MODULE_.

    rgb_matrix_module.inc

    This file defines RGB matrix effects in the same form as used with rgb_matrix_kb.inc and rgb_matrix_user.inc (see Custom RGB Matrix Effects). Effect mode names are prepended with RGB_MATRIX_COMMUNITY_MODULE_.

    Custom split keyboard data sync

    Defines follow the convention, SPLIT_TRANSACTION_IDS_MODULE_<MODULE> (see Custom data sync).

    Compatible APIs

    Community Modules may provide specializations for the following APIs:

    Base APIAPI FormatExample (hello_world module)API Version
    keyboard_pre_initkeyboard_pre_init_<module>keyboard_pre_init_hello_world0.1.0
    keyboard_post_initkeyboard_post_init_<module>keyboard_post_init_hello_world0.1.0
    pre_process_recordpre_process_record_<module>pre_process_record_hello_world0.1.0
    process_recordprocess_record_<module>process_record_hello_world0.1.0
    post_process_recordpost_process_record_<module>post_process_record_hello_world0.1.0
    housekeeping_taskhousekeeping_task_<module>housekeeping_task_hello_world1.0.0
    suspend_power_downsuspend_power_down_<module>suspend_power_down_hello_world1.0.0
    suspend_wakeup_initsuspend_wakeup_init_<module>suspend_wakeup_init_hello_world1.0.0
    shutdownshutdown_<module>shutdown_hello_world1.0.0
    process_detected_host_osprocess_detected_host_os_<module>process_detected_host_os_hello_world1.0.0
    default_layer_state_setdefault_layer_state_set_<module>default_layer_state_set_hello_world1.1.0
    layer_state_setlayer_state_set_<module>layer_state_set_hello_world1.1.0
    led_matrix_indicatorsled_matrix_indicators_<module>led_matrix_indicators_hello_world1.1.0
    led_matrix_indicators_advancedled_matrix_indicators_advanced_<module>led_matrix_indicators_advanced_hello_world1.1.0
    rgb_matrix_indicatorsrgb_matrix_indicators_<module>rgb_matrix_indicators_hello_world1.1.0
    rgb_matrix_indicators_advancedrgb_matrix_indicators_advanced_<module>rgb_matrix_indicators_advanced_hello_world1.1.0
    pointing_device_initpointing_device_init_<module>pointing_device_init_hello_world1.1.0
    pointing_device_taskpointing_device_task_<module>pointing_device_task_hello_world1.1.0

    INFO

    An unspecified API is disregarded if a Community Module does not provide a specialization for it.

    Each API has an equivalent _<module>_kb() and _<module>_user() hook, as per the normal QMK _quantum, _kb, and _user functions.

    - + \ No newline at end of file diff --git a/features/digitizer.html b/features/digitizer.html index 45222eacacd..0f226c8fa29 100644 --- a/features/digitizer.html +++ b/features/digitizer.html @@ -9,9 +9,9 @@ - + - + @@ -22,7 +22,7 @@ digitizer_set_position(0.5, 0.5);

    The "in range" indicator is required to be on for the change in coordinates to be taken. It can then be turned off again to signal the end of the digitizer interaction, but it is not strictly required.

    You can also modify the digitizer state directly, if you need to change multiple fields in a single report:

    c
    digitizer_state.in_range = true;
     digitizer_state.dirty = true;
     digitizer_flush();

    digitizer_state is a struct of type digitizer_t.

    API

    struct digitizer_t

    Contains the state of the digitizer.

    Members


    void digitizer_flush(void)

    Send the digitizer report to the host if it is marked as dirty.


    void digitizer_in_range_on(void)

    Assert the "in range" indicator, and flush the report.


    void digitizer_in_range_off(void)

    Deassert the "in range" indicator, and flush the report.


    void digitizer_tip_switch_on(void)

    Assert the tip switch, and flush the report.


    void digitizer_tip_switch_off(void)

    Deassert the tip switch, and flush the report.


    void digitizer_barrel_switch_on(void)

    Assert the barrel switch, and flush the report.


    void digitizer_barrel_switch_off(void)

    Deassert the barrel switch, and flush the report.


    void digitizer_set_position(float x, float y)

    Set the absolute X and Y position of the digitizer contact, and flush the report.

    Arguments

    - + \ No newline at end of file diff --git a/features/dip_switch.html b/features/dip_switch.html index 09d800ec897..3a8095d9e3d 100644 --- a/features/dip_switch.html +++ b/features/dip_switch.html @@ -9,9 +9,9 @@ - + - + @@ -78,7 +78,7 @@ } return true; }

    Hardware

    Connects each switch in the dip switch to the GPIO pin of the MCU

    One side of the DIP switch should be wired directly to the pin on the MCU, and the other side to ground. It should not matter which side is connected to which, as it should be functionally the same.

    Connect each switch in the DIP switch to an unused intersections in the key matrix.

    As with the keyswitch, a diode and DIP switch connect the ROW line to the COL line.

    - + \ No newline at end of file diff --git a/features/dynamic_macros.html b/features/dynamic_macros.html index 4f8a0c60880..a116efef42e 100644 --- a/features/dynamic_macros.html +++ b/features/dynamic_macros.html @@ -9,9 +9,9 @@ - + - + @@ -23,7 +23,7 @@ if (!process_record_dynamic_macro(macro_kc, record)) { return false; }

    User Hooks

    There are a number of hooks that you can use to add custom functionality and feedback options to Dynamic Macro feature. This allows for some additional degree of customization.

    Note, that direction indicates which macro it is, with 1 being Macro 1, -1 being Macro 2, and 0 being no macro.

    Additionally, you can call dynamic_macro_led_blink() to flash the backlights if that feature is enabled.

    - + \ No newline at end of file diff --git a/features/encoders.html b/features/encoders.html index f5ecfbada69..958fdb97a69 100644 --- a/features/encoders.html +++ b/features/encoders.html @@ -9,9 +9,9 @@ - + - + @@ -70,7 +70,7 @@ }

    WARNING

    If you return true in the keymap level _user function, it will allow the keyboard/core level encoder code to run on top of your own. Returning false will override the keyboard level function, if setup correctly. This is generally the safest option to avoid confusion.

    Hardware

    The A an B lines of the encoders should be wired directly to the MCU, and the C/common lines should be wired to ground.

    Multiple Encoders

    Multiple encoders may share pins so long as each encoder has a distinct pair of pins when the following conditions are met:

    For example you can support two encoders using only 3 pins like this

    #define ENCODER_A_PINS { B1, B1 }
     #define ENCODER_B_PINS { B2, B3 }

    You could even support three encoders using only three pins (one per encoder) however in this configuration, rotating two encoders which share pins simultaneously will often generate incorrect output. For example:

    #define ENCODER_A_PINS { B1, B1, B2 }
     #define ENCODER_B_PINS { B2, B3, B3 }

    Here rotating Encoder 0 B1 B2 and Encoder 1 B1 B3 could be interpreted as rotating Encoder 2 B2 B3 or B3 B2 depending on the timing. This may still be a useful configuration depending on your use case

    - + \ No newline at end of file diff --git a/features/grave_esc.html b/features/grave_esc.html index 9cad8b42a8b..5290e2f887d 100644 --- a/features/grave_esc.html +++ b/features/grave_esc.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/haptic_feedback.html b/features/haptic_feedback.html index 4fe8396b5c9..044c1c2cb2b 100644 --- a/features/haptic_feedback.html +++ b/features/haptic_feedback.html @@ -9,9 +9,9 @@ - + - + @@ -38,7 +38,7 @@ #define DRV2605L_V_RMS 2.0 #define DRV2605L_V_PEAK 2.1 #define DRV2605L_F_LRA 205 /* resonance freq */

    DRV2605L waveform library

    DRV2605L comes with preloaded library of various waveform sequences that can be called and played. If writing a macro, these waveforms can be played using drv2605l_pulse(*sequence name or number*) after adding #include "drv2605l.h".

    List of waveform sequences from the datasheet:

    seq#Sequence nameseq#Sequence nameseq#Sequence name
    1strong_click43lg_dblclick_med_6085transition_rampup_med_smooth2
    2strong_click_6044lg_dblsharp_tick86transition_rampup_short_smooth1
    3strong_click_3045lg_dblsharp_tick_8087transition_rampup_short_smooth2
    4sharp_click46lg_dblsharp_tick_6088transition_rampup_long_sharp1
    5sharp_click_6047buzz89transition_rampup_long_sharp2
    6sharp_click_3048buzz_8090transition_rampup_med_sharp1
    7soft_bump49buzz_6091transition_rampup_med_sharp2
    8soft_bump_6050buzz_4092transition_rampup_short_sharp1
    9soft_bump_3051buzz_2093transition_rampup_short_sharp2
    10dbl_click52pulsing_strong94transition_rampdown_long_smooth1_50
    11dbl_click_6053pulsing_strong_8095transition_rampdown_long_smooth2_50
    12trp_click54pulsing_medium96transition_rampdown_med_smooth1_50
    13soft_fuzz55pulsing_medium_8097transition_rampdown_med_smooth2_50
    14strong_buzz56pulsing_sharp98transition_rampdown_short_smooth1_50
    15alert_750ms57pulsing_sharp_8099transition_rampdown_short_smooth2_50
    16alert_1000ms58transition_click100transition_rampdown_long_sharp1_50
    17strong_click159transition_click_80101transition_rampdown_long_sharp2_50
    18strong_click2_8060transition_click_60102transition_rampdown_med_sharp1_50
    19strong_click3_6061transition_click_40103transition_rampdown_med_sharp2_50
    20strong_click4_3062transition_click_20104transition_rampdown_short_sharp1_50
    21medium_click163transition_click_10105transition_rampdown_short_sharp2_50
    22medium_click2_8064transition_hum106transition_rampup_long_smooth1_50
    23medium_click3_6065transition_hum_80107transition_rampup_long_smooth2_50
    24sharp_tick166transition_hum_60108transition_rampup_med_smooth1_50
    25sharp_tick2_8067transition_hum_40109transition_rampup_med_smooth2_50
    26sharp_tick3_6068transition_hum_20110transition_rampup_short_smooth1_50
    27sh_dblclick_str69transition_hum_10111transition_rampup_short_smooth2_50
    28sh_dblclick_str_8070transition_rampdown_long_smooth1112transition_rampup_long_sharp1_50
    29sh_dblclick_str_6071transition_rampdown_long_smooth2113transition_rampup_long_sharp2_50
    30sh_dblclick_str_3072transition_rampdown_med_smooth1114transition_rampup_med_sharp1_50
    31sh_dblclick_med73transition_rampdown_med_smooth2115transition_rampup_med_sharp2_50
    32sh_dblclick_med_8074transition_rampdown_short_smooth1116transition_rampup_short_sharp1_50
    33sh_dblclick_med_6075transition_rampdown_short_smooth2117transition_rampup_short_sharp2_50
    34sh_dblsharp_tick76transition_rampdown_long_sharp1118long_buzz_for_programmatic_stopping
    35sh_dblsharp_tick_8077transition_rampdown_long_sharp2119smooth_hum1_50
    36sh_dblsharp_tick_6078transition_rampdown_med_sharp1120smooth_hum2_40
    37lg_dblclick_str79transition_rampdown_med_sharp2121smooth_hum3_30
    38lg_dblclick_str_8080transition_rampdown_short_sharp1122smooth_hum4_20
    39lg_dblclick_str_6081transition_rampdown_short_sharp2123smooth_hum5_10
    40lg_dblclick_str_3082transition_rampup_long_smooth1
    41lg_dblclick_med83transition_rampup_long_smooth2
    42lg_dblclick_med_8084transition_rampup_med_smooth1

    Optional DRV2605L defines

    c
    #define DRV2605L_GREETING *sequence name or number*

    If haptic feedback is enabled, the keyboard will vibrate to a specific sequence during startup. That can be selected using the following define:

    c
    #define DRV2605L_DEFAULT_MODE *sequence name or number*

    This will set what sequence HF_RST will set as the active mode. If not defined, mode will be set to 1 when HF_RST is pressed.

    DRV2605L Continuous Haptic Mode

    This mode sets continuous haptic feedback with the option to increase or decrease strength.

    Haptic Key Exclusion

    The Haptic Exclusion is implemented as __attribute__((weak)) bool get_haptic_enabled_key(uint16_t keycode, keyrecord_t *record) in haptic.c. This allows a re-definition at the required level with the specific requirement / exclusion.

    NO_HAPTIC_MOD

    With the entry of #define NO_HAPTIC_MOD in config.h, the following keys will not trigger feedback:

    NO_HAPTIC_ALPHA

    With the entry of #define NO_HAPTIC_ALPHA in config.h, none of the alpha keys (A ... Z) will trigger a feedback.

    NO_HAPTIC_PUNCTUATION

    With the entry of #define NO_HAPTIC_PUNCTUATION in config.h, none of the following keys will trigger a feedback: Enter, ESC, Backspace, Space, Minus, Equal, Left Bracket, Right Bracket, Backslash, Non-US Hash, Semicolon, Quote, Grave, Comma, Slash, Dot, Non-US Backslash.

    NO_HAPTIC_LOCKKEYS

    With the entry of #define NO_HAPTIC_LOCKKEYS in config.h, none of the following keys will trigger a feedback: Caps Lock, Scroll Lock, Num Lock.

    NO_HAPTIC_NAV

    With the entry of #define NO_HAPTIC_NAV in config.h, none of the following keys will trigger a feedback: Print Screen, Pause, Insert, Delete, Page Down, Page Up, Left Arrow, Up Arrow, Right Arrow, Down Arrow, End, Home.

    NO_HAPTIC_NUMERIC

    With the entry of #define NO_HAPTIC_NUMERIC in config.h, none of the following keys between 0 and 9 (KC_1 ... KC_0) will trigger a feedback.

    - + \ No newline at end of file diff --git a/features/hd44780.html b/features/hd44780.html index 8642eb62ded..0a2b2db8c7d 100644 --- a/features/hd44780.html +++ b/features/hd44780.html @@ -9,9 +9,9 @@ - + - + @@ -39,7 +39,7 @@ // 0x08 to avoid null terminator hd44780_puts_P(PSTR("\x08 QMK Firmware")); }

    API

    void hd44780_init(bool cursor, bool blink)

    Initialize the display.

    This function should be called only once, before any of the other functions can be called.

    Arguments


    void hd44780_clear(void)

    Clear the display.

    This function is called on init.


    void hd44780_home(void)

    Move the cursor to the home position.

    This function is called on init.


    void hd44780_on(bool cursor, bool blink)

    Turn the display on, and/or set the cursor properties.

    This function is called on init.

    Arguments


    void hd44780_off(void)

    Turn the display off.


    void hd44780_set_cursor(uint8_t col, uint8_t line)

    Move the cursor to the specified position on the display.

    Arguments


    void hd44780_putc(char c)

    Print a character to the display. The newline character \n will move the cursor to the start of the next line.

    The exact character shown may depend on the ROM code of your particular display - refer to the datasheet for the full character set.

    Arguments


    void hd44780_puts(const char *s)

    Print a string of characters to the display.

    Arguments


    void hd44780_puts_P(const char *s)

    Print a string of characters from PROGMEM to the display.

    On ARM devices, this function is simply an alias of hd44780_puts().

    Arguments


    void hd44780_define_char(uint8_t index, uint8_t *data)

    Define a custom character.

    Arguments


    void hd44780_define_char_P(uint8_t index, const uint8_t *data)

    Define a custom character from PROGMEM.

    On ARM devices, this function is simply an alias of hd44780_define_char().

    Arguments


    bool hd44780_busy(void)

    Indicates whether the display is currently processing, and cannot accept instructions.

    Return Value

    true if the display is busy.


    void hd44780_write(uint8_t data, bool isData)

    Write a byte to the display.

    Arguments


    uint8_t hd44780_read(bool isData)

    Read a byte from the display.

    Arguments

    Return Value

    If isData is true, the returned byte will be the character at the current DDRAM address. Otherwise, it will be the current DDRAM address and the busy flag.


    void hd44780_command(uint8_t command)

    Send a command to the display. Refer to the datasheet and hd44780.h for the valid commands and defines.

    This function waits for the display to clear the busy flag before sending the command.

    Arguments


    void hd44780_data(uint8_t data)

    Send a byte of data to the display.

    This function waits for the display to clear the busy flag before sending the data.

    Arguments


    void hd44780_set_cgram_address(uint8_t address)

    Set the CGRAM address.

    This function is used when defining custom characters.

    Arguments


    void hd44780_set_ddram_address(uint8_t address)

    Set the DDRAM address.

    This function is used when printing characters to the display, and setting the cursor.

    Arguments

    - + \ No newline at end of file diff --git a/features/joystick.html b/features/joystick.html index 24472f8a952..c7185c5239e 100644 --- a/features/joystick.html +++ b/features/joystick.html @@ -9,9 +9,9 @@ - + - + @@ -68,7 +68,7 @@ } return true; }

    Keycodes

    KeyAliasesDescription
    QK_JOYSTICK_BUTTON_0JS_0Button 0
    QK_JOYSTICK_BUTTON_1JS_1Button 1
    QK_JOYSTICK_BUTTON_2JS_2Button 2
    QK_JOYSTICK_BUTTON_3JS_3Button 3
    QK_JOYSTICK_BUTTON_4JS_4Button 4
    QK_JOYSTICK_BUTTON_5JS_5Button 5
    QK_JOYSTICK_BUTTON_6JS_6Button 6
    QK_JOYSTICK_BUTTON_7JS_7Button 7
    QK_JOYSTICK_BUTTON_8JS_8Button 8
    QK_JOYSTICK_BUTTON_9JS_9Button 9
    QK_JOYSTICK_BUTTON_10JS_10Button 10
    QK_JOYSTICK_BUTTON_11JS_11Button 11
    QK_JOYSTICK_BUTTON_12JS_12Button 12
    QK_JOYSTICK_BUTTON_13JS_13Button 13
    QK_JOYSTICK_BUTTON_14JS_14Button 14
    QK_JOYSTICK_BUTTON_15JS_15Button 15
    QK_JOYSTICK_BUTTON_16JS_16Button 16
    QK_JOYSTICK_BUTTON_17JS_17Button 17
    QK_JOYSTICK_BUTTON_18JS_18Button 18
    QK_JOYSTICK_BUTTON_19JS_19Button 19
    QK_JOYSTICK_BUTTON_20JS_20Button 20
    QK_JOYSTICK_BUTTON_21JS_21Button 21
    QK_JOYSTICK_BUTTON_22JS_22Button 22
    QK_JOYSTICK_BUTTON_23JS_23Button 23
    QK_JOYSTICK_BUTTON_24JS_24Button 24
    QK_JOYSTICK_BUTTON_25JS_25Button 25
    QK_JOYSTICK_BUTTON_26JS_26Button 26
    QK_JOYSTICK_BUTTON_27JS_27Button 27
    QK_JOYSTICK_BUTTON_28JS_28Button 28
    QK_JOYSTICK_BUTTON_29JS_29Button 29
    QK_JOYSTICK_BUTTON_30JS_30Button 30
    QK_JOYSTICK_BUTTON_31JS_31Button 31

    API

    struct joystick_t

    Contains the state of the joystick.

    Members


    struct joystick_config_t

    Describes a single axis.

    Members


    void joystick_flush(void)

    Send the joystick report to the host, if it has been marked as dirty.


    void register_joystick_button(uint8_t button)

    Set the state of a button, and flush the report.

    Arguments


    void unregister_joystick_button(uint8_t button)

    Reset the state of a button, and flush the report.

    Arguments


    int16_t joystick_read_axis(uint8_t axis)

    Sample and process the analog value of the given axis.

    Arguments

    Return Value

    A signed 16-bit integer, where 0 is the resting or mid point.

    void joystick_set_axis(uint8_t axis, int16_t value)

    Set the value of the given axis.

    Arguments


    void joystick_set_hat(int8_t value)

    Set the position of the hat switch.

    Arguments

    - + \ No newline at end of file diff --git a/features/key_lock.html b/features/key_lock.html index ec4292ee5ee..ae97fba09fc 100644 --- a/features/key_lock.html +++ b/features/key_lock.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/key_overrides.html b/features/key_overrides.html index d30dfe69d06..58876b2073e 100644 --- a/features/key_overrides.html +++ b/features/key_overrides.html @@ -9,9 +9,9 @@ - + - + @@ -95,7 +95,7 @@ // Neutralize left alt, left GUI, right GUI and left Control+Shift #define MODS_TO_NEUTRALIZE { MOD_BIT(KC_LEFT_ALT), MOD_BIT(KC_LEFT_GUI), MOD_BIT(KC_RIGHT_GUI), MOD_BIT(KC_LEFT_CTRL)|MOD_BIT(KC_LEFT_SHIFT) }

    WARNING

    Do not use MOD_xxx constants like MOD_LSFT or MOD_RALT, since they're 5-bit packed bit-arrays while MODS_TO_NEUTRALIZE expects a list of 8-bit packed bit-arrays. Use MOD_BIT(<kc>) or MOD_MASK_xxx instead.

    - + \ No newline at end of file diff --git a/features/layer_lock.html b/features/layer_lock.html index 230c37c4ddc..f7602f3dd53 100644 --- a/features/layer_lock.html +++ b/features/layer_lock.html @@ -9,9 +9,9 @@ - + - + @@ -41,7 +41,7 @@ } return true; }

    In the above, KC_0 is an arbitrary placeholder for the tapping keycode. This keycode will never be sent, so any basic keycode will do. In process_record_user(), the tap press event is changed to toggle the lock on the highest layer. Layer Lock can be combined with a layer-tap LT key similarly.

    - + \ No newline at end of file diff --git a/features/leader_key.html b/features/leader_key.html index 27f70acddea..03028ff45e1 100644 --- a/features/leader_key.html +++ b/features/leader_key.html @@ -9,9 +9,9 @@ - + - + @@ -69,7 +69,7 @@ } #endif }

    Keycodes

    KeyAliasesDescription
    QK_LEADERQK_LEADBegin the leader sequence

    API

    void leader_start_user(void)

    User callback, invoked when the leader sequence begins.


    void leader_end_user(void)

    User callback, invoked when the leader sequence ends.


    bool leader_add_user(uint16_t keycode)

    User callback, invoked when a keycode is added to the leader sequence.

    Arguments

    Return Value

    true to finish the key sequence, false to continue.


    void leader_start(void)

    Begin the leader sequence, resetting the buffer and timer.


    void leader_end(void)

    End the leader sequence.


    bool leader_sequence_active(void)

    Whether the leader sequence is active.


    bool leader_sequence_add(uint16_t keycode)

    Add the given keycode to the sequence buffer.

    If LEADER_NO_TIMEOUT is defined, the timer is reset if the buffer is empty.

    Arguments

    Return Value

    true if the keycode was added, false if the buffer is full.


    bool leader_sequence_timed_out(void)

    Whether the leader sequence has reached the timeout.

    If LEADER_NO_TIMEOUT is defined, the buffer must also contain at least one key.


    bool leader_reset_timer(void)

    Reset the leader sequence timer.


    bool leader_sequence_one_key(uint16_t kc)

    Check the sequence buffer for the given keycode.

    Arguments

    Return Value

    true if the sequence buffer matches.


    bool leader_sequence_two_keys(uint16_t kc1, uint16_t kc2)

    Check the sequence buffer for the given keycodes.

    Arguments

    Return Value

    true if the sequence buffer matches.


    bool leader_sequence_three_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3)

    Check the sequence buffer for the given keycodes.

    Arguments

    Return Value

    true if the sequence buffer matches.


    bool leader_sequence_four_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4)

    Check the sequence buffer for the given keycodes.

    Arguments

    Return Value

    true if the sequence buffer matches.


    bool leader_sequence_five_keys(uint16_t kc1, uint16_t kc2, uint16_t kc3, uint16_t kc4, uint16_t kc5)

    Check the sequence buffer for the given keycodes.

    Arguments

    Return Value

    true if the sequence buffer matches.

    - + \ No newline at end of file diff --git a/features/led_indicators.html b/features/led_indicators.html index 9fa6b010efd..34f15d222ba 100644 --- a/features/led_indicators.html +++ b/features/led_indicators.html @@ -9,9 +9,9 @@ - + - + @@ -48,7 +48,7 @@ #endif return true; }

    Host keyboard LED state

    The host_keyboard_led_state() function will report the LED state returned from the host computer as led_t. This is useful for reading the LED state outside led_update_*. For example, you can get the boolean state of Caps Lock from the host with:

    c
    bool caps = host_keyboard_led_state().caps_lock;

    led_update_ports()

    This function writes the LED state to the actual hardware. Call it manually from your led_update_*() callbacks to modify the handling of the standard keyboard LEDs. For example when repurposing a standard LED indicator as layer indicator.

    Setting Physical LED State

    Some keyboard implementations provide convenient methods for setting the state of the physical LEDs.

    Ergodox Boards

    The Ergodox implementations provide ergodox_right_led_1/2/3_on/off() to turn individual LEDs on or off, as well as ergodox_right_led_on/off(uint8_t led) to turn them on or off by their index.

    In addition, it is possible to specify the brightness level of all LEDs with ergodox_led_all_set(uint8_t n); of individual LEDs with ergodox_right_led_1/2/3_set(uint8_t n); or by index with ergodox_right_led_set(uint8_t led, uint8_t n).

    Ergodox boards also define LED_BRIGHTNESS_LO for the lowest brightness and LED_BRIGHTNESS_HI for the highest brightness (which is the default).

    - + \ No newline at end of file diff --git a/features/led_matrix.html b/features/led_matrix.html index 8080bde2a9a..708b1c6d2e2 100644 --- a/features/led_matrix.html +++ b/features/led_matrix.html @@ -9,9 +9,9 @@ - + - + @@ -121,7 +121,7 @@ LED_MATRIX_INDICATOR_SET_VALUE(index, value); return false; }

    API

    void led_matrix_toggle(void)

    Toggle LED Matrix on or off.


    void led_matrix_toggle_noeeprom(void)

    Toggle LED Matrix on or off. New state is not written to EEPROM.


    void led_matrix_enable(void)

    Turn LED Matrix on.


    void led_matrix_enable_noeeprom(void)

    Turn LED Matrix on. New state is not written to EEPROM.


    void led_matrix_disable(void)

    Turn LED Matrix off.


    void led_matrix_disable_noeeprom(void)

    Turn LED Matrix off. New state is not written to EEPROM.


    bool led_matrix_is_enabled(void)

    Get the current enabled state of LED Matrix.

    Return Value

    true if LED Matrix is enabled.


    void led_matrix_set_value(uint8_t index, uint8_t v)

    Set the brightness of a single LED.

    This function can only be run from within an effect or indicator callback, otherwise the currently running animation will simply overwrite it on the next frame.

    Arguments


    void led_matrix_set_value_all(uint8_t v)

    Set the brightness of all LEDs.

    This function can only be run from within an effect or indicator callback, otherwise the currently running animation will simply overwrite it on the next frame.

    Arguments


    void led_matrix_mode(uint8_t mode)

    Set the currently running effect.

    Arguments


    void led_matrix_mode_noeeprom(uint8_t mode)

    Set the currently running effect. New state is not written to EEPROM.

    Arguments


    void led_matrix_step(void)

    Move to the next enabled effect.


    void led_matrix_step_noeeprom(void)

    Move to the next enabled effect. New state is not written to EEPROM.


    void led_matrix_step_reverse(void)

    Move to the previous enabled effect.


    void led_matrix_step_reverse_noeeprom(void)

    Move to the previous enabled effect. New state is not written to EEPROM.


    uint8_t led_matrix_get_mode(void)

    Get the currently running effect.

    Return Value

    The index of the currently running effect.


    void val_matrix_increase_val(void)

    Increase the global effect brightness.


    void led_matrix_increase_val_noeeprom(void)

    Increase the global effect brightness. New state is not written to EEPROM.


    void led_matrix_decrease_val(void)

    Decrease the global effect brightness.


    void led_matrix_decrease_val_noeeprom(void)

    Decrease the global effect brightness. New state is not written to EEPROM.


    uint8_t led_matrix_get_val(void)

    Get the current global effect brightness.

    Return Value

    The current brightness value, from 0 to 255.


    void led_matrix_increase_speed(void)

    Increase the effect speed.


    void led_matrix_increase_speed_noeeprom(void)

    Increase the effect speed. New state is not written to EEPROM.


    void led_matrix_decrease_speed(void)

    Decrease the effect speed.


    void led_matrix_decrease_speed_noeeprom(void)

    Decrease the effect speed. New state is not written to EEPROM.


    void led_matrix_set_speed(uint8_t speed)

    Set the effect speed.

    Arguments


    void led_matrix_set_speed_noeeprom(uint8_t speed)

    Set the effect speed. New state is not written to EEPROM.

    Arguments


    uint8_t led_matrix_get_speed(void)

    Get the current effect speed.

    Return Value

    The current effect speed, from 0 to 255.


    void led_matrix_set_flags(led_flags_t flags)

    Set the global effect flags.

    Arguments


    void led_matrix_set_flags_noeeprom(led_flags_t flags)

    Set the global effect flags. New state is not written to EEPROM.

    Arguments


    void led_matrix_flags_step(void)

    Move to the next flag combination.


    void led_matrix_flags_step_noeeprom(void)

    Move to the next flag combination. New state is not written to EEPROM.


    void led_matrix_flags_step_reverse(void)

    Move to the previous flag combination.


    void led_matrix_flags_step_reverse_noeeprom(void)

    Move to the previous flag combination. New state is not written to EEPROM.


    uint8_t led_matrix_get_flags(void)

    Get the current global effect flags.

    Return Value

    The current effect flags.


    void led_matrix_reload_from_eeprom(void)

    Reload the effect configuration (enabled, mode and brightness) from EEPROM.


    bool led_matrix_get_suspend_state(void)

    Get the current suspend state of LED Matrix.

    Return Value

    true if LED Matrix is currently in the suspended state.


    bool led_matrix_indicators_kb(void)

    Keyboard-level callback, invoked after current animation frame is rendered but before it is flushed to the LEDs.

    Return Value

    Currently unused.


    bool led_matrix_indicators_user(void)

    Keymap-level callback, invoked after current animation frame is rendered but before it is flushed to the LEDs.

    Return Value

    true to continue running the keyboard-level callback.


    bool led_matrix_indicators_advanced_kb(uint8_t led_min, uint8_t led_max)

    Keyboard-level callback, invoked after current animation frame is rendered but before it is flushed to the LEDs.

    Arguments

    Return Value

    Currently unused.


    bool led_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max)

    Keymap-level callback, invoked after current animation frame is rendered but before it is flushed to the LEDs.

    Arguments

    Return Value

    true to continue running the keyboard-level callback.

    - + \ No newline at end of file diff --git a/features/midi.html b/features/midi.html index eb893dbb8eb..b836939800f 100644 --- a/features/midi.html +++ b/features/midi.html @@ -9,9 +9,9 @@ - + - + @@ -53,7 +53,7 @@ // ... ) };

    Keycodes

    KeycodeAliasesDescription
    QK_MIDI_ONMI_ONTurn MIDI on
    QK_MIDI_OFFMI_OFFTurn MIDI off
    QK_MIDI_TOGGLEMI_TOGGToggle MIDI enabled
    QK_MIDI_NOTE_C_0MI_CC octave 0
    QK_MIDI_NOTE_C_SHARP_0MI_Cs, MI_DbC♯/D♭ octave 0
    QK_MIDI_NOTE_D_0MI_DD octave 0
    QK_MIDI_NOTE_D_SHARP_0MI_Ds, MI_EbD♯/E♭ octave 0
    QK_MIDI_NOTE_E_0MI_EE octave 0
    QK_MIDI_NOTE_F_0MI_FF octave 0
    QK_MIDI_NOTE_F_SHARP_0MI_Fs, MI_GbF♯/G♭ octave 0
    QK_MIDI_NOTE_G_0MI_GG octave 0
    QK_MIDI_NOTE_G_SHARP_0MI_Gs, MI_AbG♯/A♭ octave 0
    QK_MIDI_NOTE_A_0MI_AA octave 0
    QK_MIDI_NOTE_A_SHARP_0MI_As, MI_BbA♯/B♭ octave 0
    QK_MIDI_NOTE_B_0MI_BB octave 0
    QK_MIDI_NOTE_C_1MI_C1C octave 1
    QK_MIDI_NOTE_C_SHARP_1MI_Cs1, MI_Db1C♯/D♭ octave 1
    QK_MIDI_NOTE_D_1MI_D1D octave 1
    QK_MIDI_NOTE_D_SHARP_1MI_Ds1, MI_Eb1D♯/E♭ octave 1
    QK_MIDI_NOTE_E_1MI_E1E octave 1
    QK_MIDI_NOTE_F_1MI_F1F octave 1
    QK_MIDI_NOTE_F_SHARP_1MI_Fs1, MI_Gb1F♯/G♭ octave 1
    QK_MIDI_NOTE_G_1MI_G1G octave 1
    QK_MIDI_NOTE_G_SHARP_1MI_Gs1, MI_Ab1G♯/A♭ octave 1
    QK_MIDI_NOTE_A_1MI_A1A octave 1
    QK_MIDI_NOTE_A_SHARP_1MI_As1, MI_Bb1A♯/B♭ octave 1
    QK_MIDI_NOTE_B_1MI_B1B octave 1
    QK_MIDI_NOTE_C_2MI_C2C octave 2
    QK_MIDI_NOTE_C_SHARP_2MI_Cs2, MI_Db2C♯/D♭ octave 2
    QK_MIDI_NOTE_D_2MI_D2D octave 2
    QK_MIDI_NOTE_D_SHARP_2MI_Ds2, MI_Eb2D♯/E♭ octave 2
    QK_MIDI_NOTE_E_2MI_E2E octave 2
    QK_MIDI_NOTE_F_2MI_F2F octave 2
    QK_MIDI_NOTE_F_SHARP_2MI_Fs2, MI_Gb2F♯/G♭ octave 2
    QK_MIDI_NOTE_G_2MI_G2G octave 2
    QK_MIDI_NOTE_G_SHARP_2MI_Gs2, MI_Ab2G♯/A♭ octave 2
    QK_MIDI_NOTE_A_2MI_A2A octave 2
    QK_MIDI_NOTE_A_SHARP_2MI_As2, MI_Bb2A♯/B♭ octave 2
    QK_MIDI_NOTE_B_2MI_B2B octave 2
    QK_MIDI_NOTE_C_3MI_C3C octave 3
    QK_MIDI_NOTE_C_SHARP_3MI_Cs3, MI_Db3C♯/D♭ octave 3
    QK_MIDI_NOTE_D_3MI_D3D octave 3
    QK_MIDI_NOTE_D_SHARP_3MI_Ds3, MI_Eb3D♯/E♭ octave 3
    QK_MIDI_NOTE_E_3MI_E3E octave 3
    QK_MIDI_NOTE_F_3MI_F3F octave 3
    QK_MIDI_NOTE_F_SHARP_3MI_Fs3, MI_Gb3F♯/G♭ octave 3
    QK_MIDI_NOTE_G_3MI_G3G octave 3
    QK_MIDI_NOTE_G_SHARP_3MI_Gs3, MI_Ab3G♯/A♭ octave 3
    QK_MIDI_NOTE_A_3MI_A3A octave 3
    QK_MIDI_NOTE_A_SHARP_3MI_As3, MI_Bb3A♯/B♭ octave 3
    QK_MIDI_NOTE_B_3MI_B3B octave 3
    QK_MIDI_NOTE_C_4MI_C4C octave 4
    QK_MIDI_NOTE_C_SHARP_4MI_Cs4, MI_Db4C♯/D♭ octave 4
    QK_MIDI_NOTE_D_4MI_D4D octave 4
    QK_MIDI_NOTE_D_SHARP_4MI_Ds4, MI_Eb4D♯/E♭ octave 4
    QK_MIDI_NOTE_E_4MI_E4E octave 4
    QK_MIDI_NOTE_F_4MI_F4F octave 4
    QK_MIDI_NOTE_F_SHARP_4MI_Fs4, MI_Gb4F♯/G♭ octave 4
    QK_MIDI_NOTE_G_4MI_G4G octave 4
    QK_MIDI_NOTE_G_SHARP_4MI_Gs4, MI_Ab4G♯/A♭ octave 4
    QK_MIDI_NOTE_A_4MI_A4A octave 4
    QK_MIDI_NOTE_A_SHARP_4MI_As4, MI_Bb4A♯/B♭ octave 4
    QK_MIDI_NOTE_B_4MI_B4B octave 4
    QK_MIDI_NOTE_C_5MI_C5C octave 5
    QK_MIDI_NOTE_C_SHARP_5MI_Cs5, MI_Db5C♯/D♭ octave 5
    QK_MIDI_NOTE_D_5MI_D5D octave 5
    QK_MIDI_NOTE_D_SHARP_5MI_Ds5, MI_Eb5D♯/E♭ octave 5
    QK_MIDI_NOTE_E_5MI_E5E octave 5
    QK_MIDI_NOTE_F_5MI_F5F octave 5
    QK_MIDI_NOTE_F_SHARP_5MI_Fs5, MI_Gb5F♯/G♭ octave 5
    QK_MIDI_NOTE_G_5MI_G5G octave 5
    QK_MIDI_NOTE_G_SHARP_5MI_Gs5, MI_Ab5G♯/A♭ octave 5
    QK_MIDI_NOTE_A_5MI_A5A octave 5
    QK_MIDI_NOTE_A_SHARP_5MI_As5, MI_Bb5A♯/B♭ octave 5
    QK_MIDI_NOTE_B_5MI_B5B octave 5
    QK_MIDI_OCTAVE_N2MI_OCN2Set octave to -2
    QK_MIDI_OCTAVE_N1MI_OCN1Set octave to -1
    QK_MIDI_OCTAVE_0MI_OC0Set octave to 0
    QK_MIDI_OCTAVE_1MI_OC1Set octave to 1
    QK_MIDI_OCTAVE_2MI_OC2Set octave to 2
    QK_MIDI_OCTAVE_3MI_OC3Set octave to 3
    QK_MIDI_OCTAVE_4MI_OC4Set octave to 4
    QK_MIDI_OCTAVE_5MI_OC5Set octave to 5
    QK_MIDI_OCTAVE_6MI_OC6Set octave to 6
    QK_MIDI_OCTAVE_7MI_OC7Set octave to 7
    QK_MIDI_OCTAVE_DOWNMI_OCTDMove down an octave
    QK_MIDI_OCTAVE_UPMI_OCTUMove up an octave
    QK_MIDI_TRANSPOSE_N6MI_TRN6Set transposition to -6 semitones
    QK_MIDI_TRANSPOSE_N5MI_TRN5Set transposition to -5 semitones
    QK_MIDI_TRANSPOSE_N4MI_TRN4Set transposition to -4 semitones
    QK_MIDI_TRANSPOSE_N3MI_TRN3Set transposition to -3 semitones
    QK_MIDI_TRANSPOSE_N2MI_TRN2Set transposition to -2 semitones
    QK_MIDI_TRANSPOSE_N1MI_TRN1Set transposition to -1 semitone
    QK_MIDI_TRANSPOSE_0MI_TR0No transposition
    QK_MIDI_TRANSPOSE_1MI_TR1Set transposition to +1 semitone
    QK_MIDI_TRANSPOSE_2MI_TR2Set transposition to +2 semitones
    QK_MIDI_TRANSPOSE_3MI_TR3Set transposition to +3 semitones
    QK_MIDI_TRANSPOSE_4MI_TR4Set transposition to +4 semitones
    QK_MIDI_TRANSPOSE_5MI_TR5Set transposition to +5 semitones
    QK_MIDI_TRANSPOSE_6MI_TR6Set transposition to +6 semitones
    QK_MIDI_TRANSPOSE_DOWNMI_TRSDDecrease transposition
    QK_MIDI_TRANSPOSE_UPMI_TRSUIncrease transposition
    QK_MIDI_VELOCITY_0MI_VL0Set velocity to 0
    QK_MIDI_VELOCITY_1MI_VL1Set velocity to 12
    QK_MIDI_VELOCITY_2MI_VL2Set velocity to 25
    QK_MIDI_VELOCITY_3MI_VL3Set velocity to 38
    QK_MIDI_VELOCITY_4MI_VL4Set velocity to 51
    QK_MIDI_VELOCITY_5MI_VL5Set velocity to 64
    QK_MIDI_VELOCITY_6MI_VL6Set velocity to 76
    QK_MIDI_VELOCITY_7MI_VL7Set velocity to 89
    QK_MIDI_VELOCITY_8MI_VL8Set velocity to 102
    QK_MIDI_VELOCITY_9MI_VL9Set velocity to 114
    QK_MIDI_VELOCITY_10MI_VL10Set velocity to 127
    QK_MIDI_VELOCITY_DOWNMI_VELDDecrease velocity
    QK_MIDI_VELOCITY_UPMI_VELUIncrease velocity
    QK_MIDI_CHANNEL_1MI_CH1Set channel to 1
    QK_MIDI_CHANNEL_2MI_CH2Set channel to 2
    QK_MIDI_CHANNEL_3MI_CH3Set channel to 3
    QK_MIDI_CHANNEL_4MI_CH4Set channel to 4
    QK_MIDI_CHANNEL_5MI_CH5Set channel to 5
    QK_MIDI_CHANNEL_6MI_CH6Set channel to 6
    QK_MIDI_CHANNEL_7MI_CH7Set channel to 7
    QK_MIDI_CHANNEL_8MI_CH8Set channel to 8
    QK_MIDI_CHANNEL_9MI_CH9Set channel to 9
    QK_MIDI_CHANNEL_10MI_CH10Set channel to 10
    QK_MIDI_CHANNEL_11MI_CH11Set channel to 11
    QK_MIDI_CHANNEL_12MI_CH12Set channel to 12
    QK_MIDI_CHANNEL_13MI_CH13Set channel to 13
    QK_MIDI_CHANNEL_14MI_CH14Set channel to 14
    QK_MIDI_CHANNEL_15MI_CH15Set channel to 15
    QK_MIDI_CHANNEL_16MI_CH16Set channel to 16
    QK_MIDI_CHANNEL_DOWNMI_CHNDDecrease channel
    QK_MIDI_CHANNEL_UPMI_CHNUIncrease channel
    QK_MIDI_ALL_NOTES_OFFMI_AOFFStop all notes
    QK_MIDI_SUSTAINMI_SUSTSustain
    QK_MIDI_PORTAMENTOMI_PORTPortmento
    QK_MIDI_SOSTENUTOMI_SOSTSostenuto
    QK_MIDI_SOFTMI_SOFTSoft Pedal
    QK_MIDI_LEGATOMI_LEGLegato
    QK_MIDI_MODULATIONMI_MODModulation
    QK_MIDI_MODULATION_SPEED_DOWNMI_MODDDecrease modulation speed
    QK_MIDI_MODULATION_SPEED_UPMI_MODUIncrease modulation speed
    QK_MIDI_PITCH_BEND_DOWNMI_BNDDBend pitch down
    QK_MIDI_PITCH_BEND_UPMI_BNDUBend pitch up

    Configuration

    Certain values are stored in the midi_config struct. This configuration is not persisted to EEPROM. By default, these values are:

    ConfigurationValueComments
    Octave4Corresponds to MI_OC2
    Transposition0
    Velocity127
    Channel0
    Modulation Interval8

    For the above, the MI_C keycode will produce a C3 (note number 48), and so on.

    References

    MIDI Specification

    QMK C Files

    - + \ No newline at end of file diff --git a/features/mouse_keys.html b/features/mouse_keys.html index a40b2ad33db..d70fda52182 100644 --- a/features/mouse_keys.html +++ b/features/mouse_keys.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/oled_driver.html b/features/oled_driver.html index 623318dcf78..789d766046f 100644 --- a/features/oled_driver.html +++ b/features/oled_driver.html @@ -9,9 +9,9 @@ - + - + @@ -286,7 +286,7 @@ // Returns the maximum number of lines that will fit on the OLED uint8_t oled_max_lines(void);

    WARNING

    Scrolling is unsupported on the SH1106 and SH1107.

    WARNING

    Scrolling does not work properly on the SSD1306 if the display width is smaller than 128.

    SSD1306.h Driver Conversion Guide

    Old APIRecommended New API
    struct CharacterMatrixremoved - delete all references
    iota_gfx_initoled_init
    iota_gfx_onoled_on
    iota_gfx_offoled_off
    iota_gfx_flusholed_render
    iota_gfx_write_charoled_write_char
    iota_gfx_writeoled_write
    iota_gfx_write_Poled_write_P
    iota_gfx_clear_screenoled_clear
    matrix_clearremoved - delete all references
    matrix_write_char_inneroled_write_char
    matrix_write_charoled_write_char
    matrix_writeoled_write
    matrix_write_lnoled_write_ln
    matrix_write_Poled_write_P
    matrix_write_ln_Poled_write_ln_P
    matrix_renderoled_render
    iota_gfx_taskoled_task
    iota_gfx_task_useroled_task_user
    - + \ No newline at end of file diff --git a/features/os_detection.html b/features/os_detection.html index 06caefcb312..a27dcc47992 100644 --- a/features/os_detection.html +++ b/features/os_detection.html @@ -9,9 +9,9 @@ - + - + @@ -66,7 +66,7 @@ return true; // Process all other keycodes normally } }

    Add both STORE_SETUPS and PRINT_SETUPS to your keyboard's keymap. Connect the keyboard to the device where the OS was not recognised, and press the STORE_SETUPS key to capture and store the fingerprint. On your development computer, run one of the suggested console debugging tools, connect the keyboard, and press the PRINT_SETUPS key. The console should display multiple lines of data from the most recent STORE_SETUPS run.

    Open an issue on GitHub and paste the console output into the issue. Also tell us which OS (including the version, if possible) was not detected correctly and whether any intermediate devices, such as a USB hub, were used between the keyboard and the target device.

    TIP

    If STORE_SETUPS has not been used previously, PRINT_SETUPS will report whatever values are already present in the controller's EEPROM. These may appear as random numbers.

    Credits

    Original idea is coming from FingerprintUSBHost project.

    - + \ No newline at end of file diff --git a/features/pointing_device.html b/features/pointing_device.html index 8d52903460c..058362b02eb 100644 --- a/features/pointing_device.html +++ b/features/pointing_device.html @@ -9,9 +9,9 @@ - + - + @@ -254,7 +254,7 @@ return pointing_device_send(); }

    In general the following two functions must be implemented in appropriate locations for auto mouse to function:

    FunctionDescriptionSuggested location
    pointing_device_task_auto_mouse(report_mouse_t mouse_report)handles target layer activation and is_active status updatespointing_device_task stack
    process_auto_mouse(uint16_t keycode, keyrecord_t* record)Keycode processing for auto mouseprocess_record stack
    - + \ No newline at end of file diff --git a/features/programmable_button.html b/features/programmable_button.html index 72b7651f5f3..77d4ee6f62a 100644 --- a/features/programmable_button.html +++ b/features/programmable_button.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/ps2_mouse.html b/features/ps2_mouse.html index ba3444b4792..05bee9b61a3 100644 --- a/features/ps2_mouse.html +++ b/features/ps2_mouse.html @@ -9,9 +9,9 @@ - + - + @@ -135,7 +135,7 @@ #define PS2_MOUSE_INVERT_V

    into config.h.

    Rotate Mouse Axes

    Transform the output of the device with a clockwise rotation of 90, 180, or 270 degrees.

    When compensating for device orientation, rotate the output the same amount in the opposite direction. E.g. if the normal device orientation is considered to be North-facing, compensate as follows:

    c
    #define PS2_MOUSE_ROTATE 270 /* Compensate for East-facing device orientation. */
    c
    #define PS2_MOUSE_ROTATE 180 /* Compensate for South-facing device orientation. */
    c
    #define PS2_MOUSE_ROTATE 90 /* Compensate for West-facing device orientation. */

    Debug Settings

    To debug the mouse, add debug_mouse = true or enable via bootmagic.

    c
    /* To debug the mouse reports */
     #define PS2_MOUSE_DEBUG_HID
     #define PS2_MOUSE_DEBUG_RAW

    Movement Hook

    Process mouse movement in the keymap before it is sent to the host. Example uses include filtering noise, adding acceleration, and automatically activating a layer. To use, define the following function in your keymap:

    c
    void ps2_mouse_moved_user(report_mouse_t *mouse_report);
    - + \ No newline at end of file diff --git a/features/rawhid.html b/features/rawhid.html index 77555daee4e..ac42dcc9503 100644 --- a/features/rawhid.html +++ b/features/rawhid.html @@ -9,9 +9,9 @@ - + - + @@ -82,7 +82,7 @@ send_raw_report([ 0x41 ])

    API

    void raw_hid_receive(uint8_t *data, uint8_t length)

    Callback, invoked when a raw HID report has been received from the host.

    Arguments


    void raw_hid_send(uint8_t *data, uint8_t length)

    Send an HID report.

    Arguments

    - + \ No newline at end of file diff --git a/features/repeat_key.html b/features/repeat_key.html index 046d110f5be..a96ac12dc2e 100644 --- a/features/repeat_key.html +++ b/features/repeat_key.html @@ -9,9 +9,9 @@ - + - + @@ -199,7 +199,7 @@ return true; } - + \ No newline at end of file diff --git a/features/rgb_matrix.html b/features/rgb_matrix.html index 9801ee64568..6f89667c271 100644 --- a/features/rgb_matrix.html +++ b/features/rgb_matrix.html @@ -9,9 +9,9 @@ - + - + @@ -224,7 +224,7 @@ rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR); rgb_matrix_sethsv_noeeprom(HSV_OFF); }

    API

    void rgb_matrix_toggle(void)

    Toggle RGB Matrix on or off.


    void rgb_matrix_toggle_noeeprom(void)

    Toggle RGB Matrix on or off. New state is not written to EEPROM.


    void rgb_matrix_enable(void)

    Turn RGB Matrix on.


    void rgb_matrix_enable_noeeprom(void)

    Turn RGB Matrix on. New state is not written to EEPROM.


    void rgb_matrix_disable(void)

    Turn RGB Matrix off.


    void rgb_matrix_disable_noeeprom(void)

    Turn RGB Matrix off. New state is not written to EEPROM.


    bool rgb_matrix_is_enabled(void)

    Get the current enabled state of RGB Matrix.

    Return Value

    true if RGB Matrix is enabled.


    void rgb_matrix_set_color(uint8_t index, uint8_t r, uint8_t g, uint8_t b)

    Set the color of a single LED.

    This function can only be run from within an effect or indicator callback, otherwise the currently running animation will simply overwrite it on the next frame.

    Arguments


    void rgb_matrix_set_color_all(uint8_t r, uint8_t g, uint8_t b)

    Set the color of all LEDs.

    This function can only be run from within an effect or indicator callback, otherwise the currently running animation will simply overwrite it on the next frame.

    Arguments


    void rgb_matrix_mode(uint8_t mode)

    Set the currently running effect.

    Arguments


    void rgb_matrix_mode_noeeprom(uint8_t mode)

    Set the currently running effect. New state is not written to EEPROM.

    Arguments


    void rgb_matrix_step(void)

    Move to the next enabled effect.


    void rgb_matrix_step_noeeprom(void)

    Move to the next enabled effect. New state is not written to EEPROM.


    void rgb_matrix_step_reverse(void)

    Move to the previous enabled effect.


    void rgb_matrix_step_reverse_noeeprom(void)

    Move to the previous enabled effect. New state is not written to EEPROM.


    uint8_t rgb_matrix_get_mode(void)

    Get the currently running effect.

    Return Value

    The index of the currently running effect.


    void rgb_matrix_increase_hue(void)

    Increase the global effect hue.


    void rgb_matrix_increase_hue_noeeprom(void)

    Increase the global effect hue. New state is not written to EEPROM.


    void rgb_matrix_decrease_hue(void)

    Decrease the global effect hue.


    void rgb_matrix_decrease_hue_noeeprom(void)

    Decrease the global effect hue. New state is not written to EEPROM.


    uint8_t rgb_matrix_get_hue(void)

    Get the current global effect hue.

    Return Value

    The current hue value, from 0 to 255.


    void rgb_matrix_increase_sat(void)

    Increase the global effect saturation.


    void rgb_matrix_increase_sat_noeeprom(void)

    Increase the global effect saturation. New state is not written to EEPROM.


    void rgb_matrix_decrease_sat(void)

    Decrease the global effect saturation.


    void rgb_matrix_decrease_sat_noeeprom(void)

    Decrease the global effect saturation. New state is not written to EEPROM.


    uint8_t rgb_matrix_get_sat(void)

    Get the current global effect saturation.

    Return Value

    The current saturation value, from 0 to 255.


    void rgb_matrix_increase_val(void)

    Increase the global effect value (brightness).


    void rgb_matrix_increase_val_noeeprom(void)

    Increase the global effect value (brightness). New state is not written to EEPROM.


    void rgb_matrix_decrease_val(void)

    Decrease the global effect value (brightness).


    void rgb_matrix_decrease_val_noeeprom(void)

    Decrease the global effect value (brightness). New state is not written to EEPROM.


    uint8_t rgb_matrix_get_val(void)

    Get the current global effect value (brightness).

    Return Value

    The current brightness value, from 0 to 255.


    void rgb_matrix_increase_speed(void)

    Increase the effect speed.


    void rgb_matrix_increase_speed_noeeprom(void)

    Increase the effect speed. New state is not written to EEPROM.


    void rgb_matrix_decrease_speed(void)

    Decrease the effect speed.


    void rgb_matrix_decrease_speed_noeeprom(void)

    Decrease the effect speed. New state is not written to EEPROM.


    void rgb_matrix_set_speed(uint8_t speed)

    Set the effect speed.

    Arguments


    void rgb_matrix_set_speed_noeeprom(uint8_t speed)

    Set the effect speed. New state is not written to EEPROM.

    Arguments


    uint8_t rgb_matrix_get_speed(void)

    Get the current effect speed.

    Return Value

    The current effect speed, from 0 to 255.


    void rgb_matrix_set_flags(led_flags_t flags)

    Set the global effect flags.

    Arguments


    void rgb_matrix_set_flags_noeeprom(led_flags_t flags)

    Set the global effect flags. New state is not written to EEPROM.

    Arguments


    void rgb_matrix_flags_step(void)

    Move to the next flag combination.


    void rgb_matrix_flags_step_noeeprom(void)

    Move to the next flag combination. New state is not written to EEPROM.


    void rgb_matrix_flags_step_reverse(void)

    Move to the previous flag combination.


    void rgb_matrix_flags_step_reverse_noeeprom(void)

    Move to the previous flag combination. New state is not written to EEPROM.


    uint8_t rgb_matrix_get_flags(void)

    Get the current global effect flags.

    Return Value

    The current effect flags.


    void rgb_matrix_sethsv(uint8_t h, uint8_t s, uint8_t v)

    Set the global effect hue, saturation, and value (brightness).

    Arguments


    void rgb_matrix_sethsv_noeeprom(uint8_t h, uint8_t s, uint8_t v)

    Set the global effect hue, saturation, and value (brightness). New state is not written to EEPROM.

    Arguments


    hsv_t rgb_matrix_get_hsv(void)

    Get the current global effect hue, saturation, and value (brightness).

    Return Value

    The current effect HSV as an hsv_t struct.


    void rgb_matrix_reload_from_eeprom(void)

    Reload the effect configuration (enabled, mode and color) from EEPROM.


    bool rgb_matrix_get_suspend_state(void)

    Get the current suspend state of RGB Matrix.

    Return Value

    true if RGB Matrix is currently in the suspended state.


    bool rgb_matrix_indicators_kb(void)

    Keyboard-level callback, invoked after current animation frame is rendered but before it is flushed to the LEDs.

    Return Value

    Currently unused.


    bool rgb_matrix_indicators_user(void)

    Keymap-level callback, invoked after current animation frame is rendered but before it is flushed to the LEDs.

    Return Value

    true to continue running the keyboard-level callback.


    bool rgb_matrix_indicators_advanced_kb(uint8_t led_min, uint8_t led_max)

    Keyboard-level callback, invoked after current animation frame is rendered but before it is flushed to the LEDs.

    Arguments

    Return Value

    Currently unused.


    bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max)

    Keymap-level callback, invoked after current animation frame is rendered but before it is flushed to the LEDs.

    Arguments

    Return Value

    true to continue running the keyboard-level callback.

    - + \ No newline at end of file diff --git a/features/rgblight.html b/features/rgblight.html index 1333a93a049..f3c6279f70c 100644 --- a/features/rgblight.html +++ b/features/rgblight.html @@ -9,9 +9,9 @@ - + - + @@ -138,7 +138,7 @@ STENO_ENABLE = no EXTRAKEY_ENABLE = yes VELOCIKEY_ENABLE = yes

    Then, while using your keyboard, you need to also turn it on with the VK_TOGG keycode, which toggles the feature on and off.

    The following light effects will all be controlled by Velocikey when it is enabled:

    Support for LED breathing effects is planned but not available yet.

    As long as Velocikey is enabled, it will control the speed regardless of any other speed setting that your RGB lights are currently on.

    Configuration

    Velocikey doesn't currently support any configuration via keyboard settings. If you want to adjust something like the speed increase or decay rate, you would need to edit velocikey.c and adjust the values there to achieve the kinds of speeds that you like.

    - + \ No newline at end of file diff --git a/features/secure.html b/features/secure.html index 8ee21c60666..568b2c447b5 100644 --- a/features/secure.html +++ b/features/secure.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/send_string.html b/features/send_string.html index ddac43a0f95..58a137ad74d 100644 --- a/features/send_string.html +++ b/features/send_string.html @@ -9,9 +9,9 @@ - + - + @@ -29,7 +29,7 @@ return true; }

    Keycode Injection

    This example types out opening and closing curly braces, then taps the left arrow key to move the cursor between the two.

    c
    SEND_STRING("{}" SS_TAP(X_LEFT));

    This example types Ctrl+A, then Ctrl+C, without releasing Ctrl.

    c
    SEND_STRING(SS_LCTL("ac"));

    API

    void send_string(const char *string)

    Type out a string of ASCII characters.

    This function simply calls send_string_with_delay(string, 0).

    Arguments


    void send_string_with_delay(const char *string, uint8_t interval)

    Type out a string of ASCII characters, with a delay between each character.

    Arguments


    void send_string_P(const char *string)

    Type out a PROGMEM string of ASCII characters.

    On ARM devices, this function is simply an alias for send_string_with_delay(string, 0).

    Arguments


    void send_string_with_delay_P(const char *string, uint8_t interval)

    Type out a PROGMEM string of ASCII characters, with a delay between each character.

    On ARM devices, this function is simply an alias for send_string_with_delay(string, interval).

    Arguments


    void send_char(char ascii_code)

    Type out an ASCII character.

    Arguments


    void send_dword(uint32_t number)

    Type out an eight digit (unsigned 32-bit) hexadecimal value.

    The format is [0-9a-f]{8}, eg. 00000000 through ffffffff.

    Arguments


    void send_word(uint16_t number)

    Type out a four digit (unsigned 16-bit) hexadecimal value.

    The format is [0-9a-f]{4}, eg. 0000 through ffff.

    Arguments


    void send_byte(uint8_t number)

    Type out a two digit (8-bit) hexadecimal value.

    The format is [0-9a-f]{2}, eg. 00 through ff.

    Arguments


    void send_nibble(uint8_t number)

    Type out a single hexadecimal digit.

    The format is [0-9a-f]{1}, eg. 0 through f.

    Arguments


    void tap_random_base64(void)

    Type a pseudorandom character from the set A-Z, a-z, 0-9, + and /.


    SEND_STRING(string)

    Shortcut macro for send_string_with_delay_P(PSTR(string), 0).

    On ARM devices, this define evaluates to send_string_with_delay(string, 0).


    SEND_STRING_DELAY(string, interval)

    Shortcut macro for send_string_with_delay_P(PSTR(string), interval).

    On ARM devices, this define evaluates to send_string_with_delay(string, interval).

    - + \ No newline at end of file diff --git a/features/sequencer.html b/features/sequencer.html index b6d8b3df988..dbb6869289f 100644 --- a/features/sequencer.html +++ b/features/sequencer.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/space_cadet.html b/features/space_cadet.html index a411d794675..6e79492d4f6 100644 --- a/features/space_cadet.html +++ b/features/space_cadet.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/split_keyboard.html b/features/split_keyboard.html index 35608ccf428..0d34bf7e11d 100644 --- a/features/split_keyboard.html +++ b/features/split_keyboard.html @@ -9,9 +9,9 @@ - + - + @@ -60,7 +60,7 @@ #define RPC_S2M_BUFFER_SIZE 48

    Hardware Configuration Options

    There are some settings that you may need to configure, based on how the hardware is set up.

    c
    #define MATRIX_ROW_PINS_RIGHT { <row pins> }
     #define MATRIX_COL_PINS_RIGHT { <col pins> }

    This allows you to specify a different set of pins for the matrix on the right side. This is useful if you have a board with differently-shaped halves that requires a different configuration (such as Keebio's Quefrency). The number of pins in the right and left matrices must be the same, if you have a board with a different number of rows or columns on one side, pad out the extra spaces with NO_PIN and make sure you add the unused rows or columns to your matrix.

    c
    #define DIRECT_PINS_RIGHT { { F1, F0, B0, C7 }, { F4, F5, F6, F7 } }

    This allows you to specify a different set of direct pins for the right side.

    c
    #define ENCODER_A_PINS_RIGHT { encoder1a, encoder2a }
     #define ENCODER_B_PINS_RIGHT { encoder1b, encoder2b }

    This allows you to specify a different set of encoder pins for the right side.

    c
    #define RGBLIGHT_SPLIT

    This option enables synchronization of the RGB Light modes between the controllers of the split keyboard. This is for keyboards that have RGB LEDs that are directly wired to the controller (that is, they are not using the "extra data" option on the TRRS cable).

    c
    #define RGBLED_SPLIT { 6, 6 }

    This sets how many LEDs are directly connected to each controller. The first number is the left side, and the second number is the right side.

    TIP

    This setting implies that RGBLIGHT_SPLIT is enabled, and will forcibly enable it, if it's not.

    c
    #define SPLIT_USB_DETECT

    Enabling this option changes the startup behavior to listen for an active USB communication to delegate which part is master and which is slave. With this option enabled and active USB communication, then that half assumes it is the master, otherwise it assumes it is the slave.

    Without this option, the master is the half that can detect voltage on the physical USB connection (VBUS detection).

    Enabled by default on ChibiOS/ARM.

    TIP

    This setting will stop the ability to demo using battery packs.

    c
    #define SPLIT_USB_TIMEOUT 2000

    This sets the maximum timeout when detecting master/slave when using SPLIT_USB_DETECT.

    c
    #define SPLIT_USB_TIMEOUT_POLL 10

    This sets the poll frequency when detecting master/slave when using SPLIT_USB_DETECT

    c
    #define SPLIT_WATCHDOG_ENABLE

    This will enable a software watchdog on any side delegated as slave and will reboot the keyboard if no successful communication occurs within SPLIT_WATCHDOG_TIMEOUT. This can be particularly helpful when SPLIT_USB_DETECT delegates both sides as slave in some circumstances.

    c
    #define SPLIT_WATCHDOG_TIMEOUT 3000

    This set the maximum slave timeout when waiting for communication from master when using SPLIT_WATCHDOG_ENABLE

    Hardware Considerations and Mods

    Master/slave delegation is made either by detecting voltage on VBUS connection or waiting for USB communication (SPLIT_USB_DETECT). Pro Micro boards can use VBUS detection out of the box and be used with or without SPLIT_USB_DETECT.

    Many ARM boards, but not all, do not support VBUS detection. Because it is common that ARM boards lack VBUS detection, SPLIT_USB_DETECT is automatically defined on ARM targets (technically when ChibiOS is targeted).

    Teensy boards

    Teensy boards lack VBUS detection out of the box and must have SPLIT_USB_DETECT defined. With the Teensy 2.0 and Teensy++ 2.0, there is a simple hardware mod that you can perform to add VBUS detection, so you don't need the SPLIT_USB_DETECT option.

    You'll only need a few things:

    You'll need to cut the small trace between the 5V and center pads on the back of the Teensy.

    Once you have done that, you will want to solder the diode from the 5V pad to the center pad.

    You may need to use the 5V pad from the regulator block above as the pads were too small and placed too closely together to place the Schottky diode properly.

    Teensy++ 2.0

    Additional Resources

    Nicinabox has a very nice and detailed guide for the Let's Split keyboard, that covers most everything you need to know, including troubleshooting information.

    However, the RGB Light section is out of date, as it was written long before the RGB Split code was added to QMK Firmware. Instead, wire each strip up directly to the controller.

    - + \ No newline at end of file diff --git a/features/st7565.html b/features/st7565.html index 15069cd6652..8a091ba8649 100644 --- a/features/st7565.html +++ b/features/st7565.html @@ -9,9 +9,9 @@ - + - + @@ -208,7 +208,7 @@ // Returns the maximum number of lines that will fit on the display uint8_t st7565_max_lines(void); - + \ No newline at end of file diff --git a/features/stenography.html b/features/stenography.html index fb2ffa16991..68351d9261b 100644 --- a/features/stenography.html +++ b/features/stenography.html @@ -9,9 +9,9 @@ - + - + @@ -27,7 +27,7 @@ 0 -P -B -L -G -T -S -D 0 #7 #8 #9 #A #B #C -Z

    Examples of steno strokes and the associated packet:

    Switching protocols on the fly

    If you wish to switch the serial protocol used to transfer the steno chords without having to recompile your keyboard firmware every time, you can press the QK_STENO_BOLT and QK_STENO_GEMINI keycodes in order to switch protocols on the fly.

    To enable these special keycodes, add the following lines to your rules.mk:

    make
    STENO_ENABLE = yes
     STENO_PROTOCOL = all

    If you want to switch protocols programmatically, as part of a custom macro for example, don't use tap_code(QK_STENO_*), as tap_code only supports basic keycodes. Instead, you should use steno_set_mode(STENO_MODE_*), whose valid arguments are STENO_MODE_BOLT and STENO_MODE_GEMINI.

    The default protocol is Gemini PR but the last protocol used is stored in non-volatile memory so QMK will remember your choice between reboots of your keyboard — assuming that your keyboard features (emulated) EEPROM.

    Naturally, this option takes the most amount of firmware space as it needs to compile the code for all the available stenography protocols. In most cases, compiling a single stenography protocol is sufficient.

    The default value for STENO_PROTOCOL is all.

    Configuring QMK for Steno

    After enabling stenography and optionally selecting a protocol, you may also need disable mouse keys, extra keys, or another USB endpoint to prevent conflicts. The builtin USB stack for some processors only supports a certain number of USB endpoints and the virtual serial port needed for steno fills 3 of them.

    WARNING

    If you had explicitly set VIRSTER_ENABLE = no, none of the serial stenography protocols (GeminiPR, TX Bolt) will work properly. You are expected to either set it to yes, remove the line from your rules.mk or send the steno chords yourself in an alternative way using the provided interceptable hooks.

    In your keymap, create a new layer for Plover, that you can fill in with the steno keycodes. Remember to create a key to switch to the layer as well as a key for exiting the layer.

    Once you have your keyboard flashed, launch Plover. Click the 'Configure...' button. In the 'Machine' tab, select the Stenotype Machine that corresponds to your desired protocol. Click the 'Configure...' button on this tab and enter the serial port or click 'Scan'. Baud rate is fine at 9600 (although you should be able to set as high as 115200 with no issues). Use the default settings for everything else (Data Bits: 8, Stop Bits: 1, Parity: N, no flow control).

    To test your keymap, you can chord keys on your keyboard and either look at the output of the 'paper tape' (Tools > Paper Tape) or that of the 'layout display' (Tools > Layout Display). If your strokes correctly show up, you are now ready to steno!

    Learning Stenography

    Interfacing with the code

    The steno code has three interceptable hooks. If you define these functions, they will be called at certain points in processing; if they return true, processing continues, otherwise it's assumed you handled things.

    c
    bool send_steno_chord_user(steno_mode_t mode, uint8_t chord[MAX_STROKE_SIZE]);

    This function is called when a chord is about to be sent. Mode will be one of STENO_MODE_BOLT or STENO_MODE_GEMINI. This represents the actual chord that would be sent via whichever protocol. You can modify the chord provided to alter what gets sent. Remember to return true if you want the regular sending process to happen.

    c
    bool process_steno_user(uint16_t keycode, keyrecord_t *record) { return true; }

    This function is called when a keypress has come in, before it is processed. The keycode should be one of QK_STENO_BOLT, QK_STENO_GEMINI, or one of the STN_* key values.

    c
    bool post_process_steno_user(uint16_t keycode, keyrecord_t *record, steno_mode_t mode, uint8_t chord[MAX_STROKE_SIZE], int8_t n_pressed_keys);

    This function is called after a key has been processed, but before any decision about whether or not to send a chord. This is where to put hooks for things like, say, live displays of steno chords or keys.

    If record->event.pressed is false, and n_pressed_keys is 0 or 1, the chord will be sent shortly, but has not yet been sent. This relieves you of the need of keeping track of where a packet ends and another begins.

    The chord argument contains the packet of the current chord as specified by the protocol in use. This is NOT simply a list of chorded steno keys of the form [STN_E, STN_U, STN_BR, STN_GR]. Refer to the appropriate protocol section of this document to learn more about the format of the packets in your steno protocol/mode of choice.

    The n_pressed_keys argument is the number of physical keys actually being held down. This is not always equal to the number of bits set to 1 (aka the Hamming weight) in chord because it is possible to simultaneously press down four keys, then release three of those four keys and then press yet another key while the fourth finger is still holding down its key. At the end of this scenario given as an example, chord would have five bits set to 1 but n_pressed_keys would be set to 2 because there are only two keys currently being pressed down.

    Keycode Reference

    INFO

    TX Bolt does not support the full set of keys. The TX Bolt implementation in QMK will map the GeminiPR keys to the nearest TX Bolt key so that one key map will work for both.

    GeminiPRTX BoltSteno Key
    STN_N1STN_NUMNumber bar #1
    STN_N2STN_NUMNumber bar #2
    STN_N3STN_NUMNumber bar #3
    STN_N4STN_NUMNumber bar #4
    STN_N5STN_NUMNumber bar #5
    STN_N6STN_NUMNumber bar #6
    STN_N7STN_NUMNumber bar #7
    STN_N8STN_NUMNumber bar #8
    STN_N9STN_NUMNumber bar #9
    STN_NASTN_NUMNumber bar #A
    STN_NBSTN_NUMNumber bar #B
    STN_NCSTN_NUMNumber bar #C
    STN_S1STN_SLS- upper
    STN_S2STN_SLS- lower
    STN_TLSTN_TLT-
    STN_KLSTN_KLK-
    STN_PLSTN_PLP-
    STN_WLSTN_WLW-
    STN_HLSTN_HLH-
    STN_RLSTN_RLR-
    STN_ASTN_AA vowel
    STN_OSTN_OO vowel
    STN_ST1STN_STR* upper-left
    STN_ST2STN_STR* lower-left
    STN_ST3STN_STR* upper-right
    STN_ST4STN_STR* lower-right
    STN_ESTN_EE vowel
    STN_USTN_UU vowel
    STN_FRSTN_FR-F
    STN_RRSTN_RR-R
    STN_PRSTN_PR-P
    STN_BRSTN_BR-B
    STN_LRSTN_LR-L
    STN_GRSTN_GR-G
    STN_TRSTN_TR-T
    STN_SRSTN_SR-S
    STN_DRSTN_DR-D
    STN_ZRSTN_ZR-Z
    STN_FN(Function)
    STN_RES1(Reset 1)
    STN_RES2(Reset 2)
    STN_PWR(Power)

    If you do not want to hit two keys with one finger combined keycodes can be used. These cause both keys to be reported as pressed or released. To use these keycodes define STENO_COMBINEDMAP in your config.h file.

    Combined keyKey1Key 2
    STN_S3STN_S1STN_S2
    STN_TKLSTN_TLSTN_KL
    STN_PWLSTN_PLSTN_WL
    STN_HRLSTN_HLSTN_RL
    STN_FRRSTN_FRSTN_RR
    STN_PBRSTN_PRSTN_BR
    STN_LGRSTN_LRSTN_GR
    STN_TSRSTN_TRSTN_SR
    STN_DZRSTN_DRSTN_ZR
    STN_AOSTN_ASTN_O
    STN_EUSTN_ESTN_U
    - + \ No newline at end of file diff --git a/features/swap_hands.html b/features/swap_hands.html index 5c3e418651a..c6884421ece 100644 --- a/features/swap_hands.html +++ b/features/swap_hands.html @@ -9,9 +9,9 @@ - + - + @@ -26,7 +26,7 @@ };

    Note that the array indices are reversed same as the matrix and the values are of type keypos_t which is {col, row} and all values are zero-based. In the example above, hand_swap_config[2][4] (third row, fifth column) would return {7, 2} (third row, eighth column). Yes, this is confusing.

    Swap Keycodes

    KeyAliasesDescription
    SH_T(kc)Momentary swap when held, kc when tapped
    QK_SWAP_HANDS_ONSH_ONTurn on hand swap
    QK_SWAP_HANDS_OFFSH_OFFTurn off hand swap
    QK_SWAP_HANDS_MOMENTARY_ONSH_MONTurn on hand swap while held
    QK_SWAP_HANDS_MOMENTARY_OFFSH_MOFFTurn off hand swap while held
    QK_SWAP_HANDS_TOGGLESH_TOGGToggle hand swap
    QK_SWAP_HANDS_TAP_TOGGLESH_TTMomentary swap when held, toggle when tapped
    QK_SWAP_HANDS_ONE_SHOTSH_OSTurn on hand swap while held or until next key press

    SH_TT swap-hands tap-toggle key is similar to layer tap-toggle. Tapping repeatedly (5 taps by default) will toggle swap-hands on or off, like SH_TOGG. Tap-toggle count can be changed by defining a value for TAPPING_TOGGLE.

    Encoder Mapping

    When using an encoder mapping, it's also able to handle swapping encoders between sides, too.

    Encoder indexes are defined as left-to-right, and the extent of the array needs to match the number of encoders on the keyboard.

    As an example, if a split keyboard has a single encoder per side, you can swap the order by using the following code in your keymap:

    c
    #if defined(SWAP_HANDS_ENABLE) && defined(ENCODER_MAP_ENABLE)
     const uint8_t PROGMEM encoder_hand_swap_config[NUM_ENCODERS] = { 1, 0 };
     #endif

    Functions

    User callback functions to manipulate Swap-Hands:

    FunctionDescription
    swap_hands_on()Turns Swap-Hands on.
    swap_hands_off()Turns Swap-Hands off.
    swap_hands_toggle()Toggles Swap-Hands.
    is_swap_hands_on()Returns true if Swap-Hands is currently on.
    - + \ No newline at end of file diff --git a/features/tap_dance.html b/features/tap_dance.html index 56a4cb34137..61e0041e642 100644 --- a/features/tap_dance.html +++ b/features/tap_dance.html @@ -9,11 +9,11 @@ - + - + - + @@ -263,7 +263,7 @@ tap_dance_action_t tap_dance_actions[] = { [X_CTL] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, x_finished, x_reset) -};

    And then simply use TD(X_CTL) anywhere in your keymap.

    INFO

    In this configuration "hold" takes place after tap dance timeout. To achieve instant hold, remove state->interrupted checks in conditions. As a result you may use comfortable longer tapping periods to have more time for taps and not to wait too long for holds (try starting with doubled TAPPING_TERM).

    Example 5: Using tap dance for advanced mod-tap and layer-tap keys

    Tap dance can be used to emulate MT() and LT() behavior when the tapped code is not a basic keycode. This is useful to send tapped keycodes that normally require Shift, such as parentheses or curly braces—or other modified keycodes, such as Control + X.

    Below your layers and custom keycodes, add the following:

    c
    // Tap Dance keycodes
    +};

    And then simply use TD(X_CTL) anywhere in your keymap.

    INFO

    In this configuration "hold" takes place after tap dance timeout. To achieve instant hold, remove state->interrupted checks in conditions. As a result you may use comfortable longer tapping periods to have more time for taps and not to wait too long for holds (try starting with doubled TAPPING_TERM).

    Example 5: Using tap dance for advanced mod-tap and layer-tap keys

    Tap dance can be used to emulate MT() and LT() behavior when the tapped code is not a basic keycode. This is useful to send tapped keycodes that normally require Shift, such as parentheses or curly braces—or other modified keycodes, such as Control + X.

    TIP

    For simply sending a non-basic keycode on tap while functioning as a modifier or layer switch on hold, a simpler (and often superior) alternative is to use a Mod-Tap or Layer-Tap key and intercept its tap function in process_record_user(). This avoids the complexity of Tap Dance, and allows the key to benefit from advanced Tap-Hold options. See Intercepting Mod-Taps for details.

    Below your layers and custom keycodes, add the following:

    c
    // Tap Dance keycodes
     enum td_keycodes {
         ALT_LP // Our example key: `LALT` when held, `(` when tapped. Add additional keycodes for each tapdance.
     };
    @@ -424,7 +424,7 @@
                 return TAPPING_TERM;
         }
     }

    The above code is similar to that used in previous examples. The one point to note is that we need to be able to check which layers are active at any time so we can toggle them if needed. To do this we use the layer_state_is(layer) function which returns true if the given layer is active.

    The use of cur_dance() and ql_tap_state mirrors the above examples.

    The case: TD_SINGLE_TAP in ql_finished is similar to the above examples. The TD_SINGLE_HOLD case works in conjunction with ql_reset() to switch to _MY_LAYER while the tap dance key is held, and to switch away from _MY_LAYER when the key is released. This mirrors the use of MO(_MY_LAYER). The TD_DOUBLE_TAP case works by checking whether _MY_LAYER is the active layer, and toggling it on or off accordingly. This mirrors the use of TG(_MY_LAYER).

    tap_dance_actions[] works similar to the above examples. Note that, additionally, I set a longer tapping term for the tap dance keys. This is because I like my TAPPING_TERM to be short (~175ms) for my non-tap-dance keys but find that this is too quick for me to reliably complete tap dance actions - thus the increased time of 275ms here. In order for the per-key tapping terms to take effect, TAPPING_TERM_PER_KEY must be defined in your config.h.

    Finally, to get this tap dance key working, be sure to include TD(QUOT_LAYR) in your keymaps[].

    - + \ No newline at end of file diff --git a/features/tri_layer.html b/features/tri_layer.html index 8e69ec5ab46..ca43a6b951c 100644 --- a/features/tri_layer.html +++ b/features/tri_layer.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/unicode.html b/features/unicode.html index 15d1e0bf42b..9190a017ea5 100644 --- a/features/unicode.html +++ b/features/unicode.html @@ -9,9 +9,9 @@ - + - + @@ -21,7 +21,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/wireless.html b/features/wireless.html index 312151ca6c8..a9f2dd2330d 100644 --- a/features/wireless.html +++ b/features/wireless.html @@ -9,9 +9,9 @@ - + - + @@ -20,7 +20,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/features/wpm.html b/features/wpm.html index 85e46e3c9a3..fb3658286b4 100644 --- a/features/wpm.html +++ b/features/wpm.html @@ -9,9 +9,9 @@ - + - + @@ -45,7 +45,7 @@ return 1; } } - + \ No newline at end of file diff --git a/flashing.html b/flashing.html index 1da7534e481..bad570465e6 100644 --- a/flashing.html +++ b/flashing.html @@ -9,9 +9,9 @@ - + - + @@ -41,7 +41,7 @@ BOOTLOADER = tinyuf2

    Compatible flashers:

    Flashing sequence:

    1. Enter the bootloader using any of the following methods:
    2. Wait for the OS to detect the device
    3. Copy the .uf2 file to the new USB disk
    4. Wait for the keyboard to become available

    or

    CLI Flashing sequence:

    1. Enter the bootloader using any of the following methods:
    2. Wait for the OS to detect the device
    3. Flash via QMK CLI eg. qmk flash --keyboard handwired/onekey/blackpill_f411_tinyuf2 --keymap default
    4. Wait for the keyboard to become available

    make Targets

    uf2boot

    Keyboards may opt into supporting the uf2boot bootloader. This is currently only supported on F103.

    The rules.mk setting for this bootloader is uf2boot, and can be specified at the keymap or user level.

    To ensure compatibility with the uf2boot bootloader, make sure this block is present in your rules.mk:

    make
    # Bootloader selection
     BOOTLOADER = uf2boot

    Compatible flashers:

    Flashing sequence:

    1. Enter the bootloader using any of the following methods:
    2. Wait for the OS to detect the device
    3. Copy the .uf2 file to the new USB disk
    4. Wait for the keyboard to become available

    or

    CLI Flashing sequence:

    1. Enter the bootloader using any of the following methods:
    2. Wait for the OS to detect the device
    3. Flash via QMK CLI eg. qmk flash --keyboard handwired/onekey/bluepill_uf2boot --keymap default
    4. Wait for the keyboard to become available

    make Targets

    Raspberry Pi RP2040 UF2

    The rules.mk setting for this bootloader is rp2040, and can be specified at the keymap or user level.

    To ensure compatibility with the rp2040 bootloader, make sure this block is present in your rules.mk:

    make
    # Bootloader selection
     BOOTLOADER = rp2040

    Compatible flashers:

    Flashing sequence:

    1. Enter the bootloader using any of the following methods:
    2. Wait for the OS to detect the device
    3. Copy the .uf2 file to the new USB disk
    4. Wait for the keyboard to become available

    or

    CLI Flashing sequence:

    1. Enter the bootloader using any of the following methods:
    2. Wait for the OS to detect the device
    3. Flash via QMK CLI eg. qmk flash --keyboard handwired/onekey/rpi_pico --keymap default
    4. Wait for the keyboard to become available

    1: This works only if the controller has been flashed with QMK Firmware with RP2040_BOOTLOADER_DOUBLE_TAP_RESET defined.

    - + \ No newline at end of file diff --git a/getting_started_docker.html b/getting_started_docker.html index e726bad52b3..578f9bc6bdc 100644 --- a/getting_started_docker.html +++ b/getting_started_docker.html @@ -9,9 +9,9 @@ - + - + @@ -23,7 +23,7 @@ # For example: util/docker_build.sh planck/rev6:default

    This will compile the desired keyboard/keymap and leave the resulting .hex or .bin file in the QMK directory for you to flash. If :keymap is omitted, all keymaps are used. Note that the parameter format is the same as when building with make.

    There is also support for building and flashing the keyboard straight from Docker by specifying the target as well:

    util/docker_build.sh keyboard:keymap:target
     # For example: util/docker_build.sh planck/rev6:default:flash

    Note that mass storage bootloaders are not supported by the flash target. In this case you will have to manually copy the firmware file to the keyboard.

    You can also start the script without any parameters, in which case it will ask you to input the build parameters one by one, which you may find easier to use:

    util/docker_build.sh
     # Reads parameters as input (leave blank for all keyboards/keymaps)

    You can manually set which container runtime you want to use by setting the RUNTIME environment variable to it's name or path. By default docker or podman are automatically detected and docker is preferred over podman.

    RUNTIME="podman" util/docker_build.sh keyboard:keymap:target

    If flashing is not required, it's possible to run the container as unprivileged (on Linux), and without docker-machine (on Windows/macOS):

    SKIP_FLASHING_SUPPORT=1 util/docker_build.sh keyboard:keymap:target

    FAQ

    Why can't I flash on Windows/macOS

    On Windows and macOS, it requires Docker Machine to be running. This is tedious to set up, so it's not recommended; use QMK Toolbox instead.

    WARNING

    Docker for Windows requires Hyper-V to be enabled. This means that it cannot work on versions of Windows which don't have Hyper-V, such as Windows 7, Windows 8 and Windows 10 Home.

    - + \ No newline at end of file diff --git a/getting_started_github.html b/getting_started_github.html index 45862d723c4..08858385c86 100644 --- a/getting_started_github.html +++ b/getting_started_github.html @@ -9,9 +9,9 @@ - + - + @@ -44,7 +44,7 @@ remote: Resolving deltas: 100% (1/1), completed with 1 local objects. To https://github.com/whoeveryouare/qmk_firmware.git + 20043e64...7da94ac5 master -> master

    Your changes now exist on your fork on GitHub - if you go back there (https://github.com/<whoeveryouare>/qmk_firmware), you can create a "New Pull Request" by clicking this button:

    New Pull Request

    Here you'll be able to see exactly what you've committed - if it all looks good, you can finalize it by clicking "Create Pull Request":

    Create Pull Request

    After submitting, we may talk to you about your changes, ask that you make changes, and eventually accept it! Thanks for contributing to QMK 😃

    - + \ No newline at end of file diff --git a/getting_started_introduction.html b/getting_started_introduction.html index 153ca46de9a..0bbefa9abad 100644 --- a/getting_started_introduction.html +++ b/getting_started_introduction.html @@ -9,9 +9,9 @@ - + - + @@ -23,7 +23,7 @@ // overrides go here! #undef MY_SETTING #define MY_SETTING 4 - + \ No newline at end of file diff --git a/getting_started_make_guide.html b/getting_started_make_guide.html index 85c4ad0b2c6..e848e48f9ba 100644 --- a/getting_started_make_guide.html +++ b/getting_started_make_guide.html @@ -9,9 +9,9 @@ - + - + @@ -20,7 +20,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/hand_wire.html b/hand_wire.html index d5eb464698f..16e81e8aeea 100644 --- a/hand_wire.html +++ b/hand_wire.html @@ -9,9 +9,9 @@ - + - + @@ -26,7 +26,7 @@ Ψ To start working on things, `cd` into keyboards/gh62, Ψ or open the directory in your preferred text editor. Ψ And build with qmk compile -kb gh62 -km default.

    Flashing the Firmware

    Install QMK Toolbox.

    QMK Toolbox

    Under "Local File" navigate to your newly created .hex file. Under "Microcontroller", select the corresponding one for your controller board (common ones available here).

    Plug in your keyboard and press the reset button (or short the Reset and Ground pins if there is no button) and click the "Flash" button in QMK toolbox.

    Testing Your Firmware

    Use a website such as QMK Configurator's Keyboard Tester, Keyboard Tester, or Keyboard Checker or just open a text editor and try typing - you should get the characters that you put into your keymap. Test each key, and make a note of the ones that aren't working. Here's a quick trouble-shooting guide for non-working keys:

    1. Flip the keyboard back over and short the keyswitch's contacts with a piece wire - this will eliminate the possibility of the keyswitch being bad and needing to be replaced.
    2. Check the solder points on the keyswitch - these need to be plump and whole. If you touch it with a moderate amount of force and it comes apart, it's not strong enough.
    3. Check the solder joints on the diode - if the diode is loose, part of your row may register, while the other may not.
    4. Check the solder joints on the columns - if your column wiring is loose, part or all of the column may not work.
    5. Check the solder joints on both sides of the wires going to/from the Teensy - the wires need to be fully soldered and connect to both sides.
    6. Check the <project_name>.h file for errors and incorrectly placed KC_NOs - if you're unsure where they should be, instead duplicate a kxy variable.
    7. Check to make sure you actually compiled the firmware and flashed the Teensy correctly. Unless you got error messages in the terminal, or a pop-up during flashing, you probably did everything correctly.
    8. Use a multimeter to check that the switch is actually closing when actuated (completing the circuit when pressed down).

    If you've done all of these things, keep in mind that sometimes you might have had multiple things affecting the keyswitch, so it doesn't hurt to test the keyswitch by shorting it out at the end.

    Finishing up

    Once you have confirmed that the keyboard is working, if you have used a separate (non handwire specific) controller you will want to secure it in place. This can be done in many different ways e.g. hot glue, double sided sticky tape, 3D printed caddy, electrical tape.

    If you found this fulfilling you could experiment by adding additional features such as in switch LEDs, in switch RGB, RGB underglow or even an OLED display!

    There are a lot of possibilities inside the firmware - explore the documentation for a full feature list, and dive into the different keyboards to see how people use all of them. You can always stop by the OLKB subreddit or QMK Discord for help!

    Legacy Content

    This page used to include more content. We have moved a section that used to be part of this page its own page. Everything below this point is simply a redirect so that people following old links on the web find what they're looking for.

    Preamble: How a Keyboard Matrix Works (and why we need diodes)

    - + \ No newline at end of file diff --git a/hardware_drivers.html b/hardware_drivers.html index 76fa6480fbb..339cb7acd91 100644 --- a/hardware_drivers.html +++ b/hardware_drivers.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/hardware_keyboard_guidelines.html b/hardware_keyboard_guidelines.html index 0668fe23bce..3eba3ce1460 100644 --- a/hardware_keyboard_guidelines.html +++ b/hardware_keyboard_guidelines.html @@ -9,9 +9,9 @@ - + - + @@ -57,7 +57,7 @@ RGBLIGHT_ENABLE = yes OPT_DEFS += -DRGBLIGHT_LED_COUNT=6 endif

    TIP

    See build_keyboard.mk and common_features.mk for more details.

    <keyboard>.c

    This file should contain C code required for the functionality of your keyboard, for example hardware initialisation code, OLED display code, and so on. This file should only contain code necessary for the keyboard to work, and not things that should be left to the end user to configure in their keymap. This file is automatically included in compilation if it exists. This is not a required file.

    The following functions are typically defined in this file:

    <keyboard>.h

    This file can contain function prototypes for custom functions and other header file code utilised by <keyboard>.c. The <keyboard>.c file should include this file. This is not a required file.

    Image/Hardware Files

    In an effort to keep the repo size down we do not accept binary files of any format, with few exceptions. Hosting them elsewhere (such as https://imgur.com) and linking them in the readme.md is preferred. Hardware files such as plates, cases, and PCBs can be published in a personal repository or elsewhere, and linked to by your keyboard's readme.md file.

    Keyboard Defaults

    Given the amount of functionality that QMK exposes it's very easy to confuse new users. When putting together the default firmware for your keyboard we recommend limiting your enabled features and options to the minimal set needed to support your hardware. Recommendations for specific features follow.

    Magic Keycodes and Command

    Magic Keycodes and Command are two related features that allow a user to control their keyboard in non-obvious ways. We recommend you think long and hard about if you're going to enable either feature, and how you will expose this functionality. Keep in mind that users who want this functionality can enable it in their personal keymaps without affecting all the novice users who may be using your keyboard as their first programmable board.

    If your keyboard does not have 2 shift keys you should provide a working default for IS_COMMAND, even when you have set COMMAND_ENABLE = no. This will give your users a default to conform to if they do enable Command.

    Custom Keyboard Programming

    As documented on Customizing Functionality you can define custom functions for your keyboard. Please keep in mind that your users may want to customize that behavior as well, and make it possible for them to do that. If you are providing a custom function, for example process_record_kb(), make sure that your function calls the _user() version of the call too. You should also take into account the return value of the _user() version, and only run your custom code if the user returns true.

    Non-Production/Handwired Projects

    We're happy to accept any project that uses QMK, including handwired ones, but we have a separate /keyboards/handwired/ folder for them, so the main /keyboards/ folder doesn't get overcrowded. If a prototype project becomes a production project at some point in the future, we'd be happy to move it to the main /keyboards/ folder!

    Warnings as Errors

    When developing your keyboard, keep in mind that all warnings will be treated as errors - these small warnings can build-up and cause larger errors down the road (and keeping them is generally a bad practice).

    If you're adapting your keyboard's setup from another project, but not using the same code, be sure to update the copyright header at the top of the files to show your name, in this format:

    c
    Copyright 2017 Your Name <your@email.com>

    If you are modifying someone else's code and have made only trivial changes you should leave their name in the copyright statement. If you have done significant work on the file you should add your name to theirs, like so:

    c
    Copyright 2017 Their Name <original_author@example.com> Your Name <you@example.com>

    The year should be the first year the file is created. If work was done to that file in later years you can reflect that by appending the second year to the first, like so:

    c
    Copyright 2015-2017 Your Name <you@example.com>

    License

    The core of QMK is licensed under the GNU General Public License. If you are shipping binaries for AVR processors you may choose either GPLv2 or GPLv3. If you are shipping binaries for ARM processors you must choose GPL Version 3 to comply with the ChibiOS GPLv3 license.

    - + \ No newline at end of file diff --git a/hashmap.json b/hashmap.json index 1f194966c23..4e9b5b43a7d 100644 --- a/hashmap.json +++ b/hashmap.json @@ -1 +1 @@ -{"api_development_environment.md":"wNYXToe7","api_development_overview.md":"CzbJJDNw","api_docs.md":"C2yn8IjW","api_overview.md":"DkBx64VD","arm_debugging.md":"BVKHYCY3","breaking_changes.md":"BJZxbNQ8","breaking_changes_history.md":"CE5EMOAr","breaking_changes_instructions.md":"YfjQwyDT","capabilities.md":"B8T3JCyt","capabilities_inc.md":"Sa8st2B_","changelog_20190830.md":"CBfckQOX","changelog_20200229.md":"DiinV84l","changelog_20200530.md":"BH8FWHkm","changelog_20200829.md":"DznAG4nm","changelog_20201128.md":"-2Dfbq7k","changelog_20210227.md":"vgsezX7T","changelog_20210529.md":"CWpDbllD","changelog_20210828.md":"X4_BluTJ","changelog_20211127.md":"B9B6h84a","changelog_20220226.md":"DIw57r5h","changelog_20220528.md":"Aq5MEXya","changelog_20220827.md":"Cr63IlPG","changelog_20221126.md":"C2ha4Hg9","changelog_20230226.md":"De4T2dUZ","changelog_20230528.md":"BacADocV","changelog_20230827.md":"Ccy4AdJq","changelog_20231126.md":"Q4Va56-o","changelog_20240225.md":"DSuQVEc0","changelog_20240526.md":"ElUUrYcx","changelog_20240825.md":"N1RvMy9r","changelog_20241124.md":"Dy8bwJzG","changelog_20250223.md":"B72dUS3J","changelog_20250525.md":"a1xu4dA3","changelog_20250831.md":"BO33XxfI","changelog_20251130.md":"DtPMFMHL","changelog_20260222.md":"CATMKVaN","changelog_20260531.md":"DHtZDh3f","chibios_upgrade_instructions.md":"CtaRRXpJ","cli.md":"BSe0mfRY","cli_commands.md":"CgJfYMV3","cli_configuration.md":"BKXYakFu","cli_development.md":"BBW4icmD","cli_tab_complete.md":"CnVMEiZf","coding_conventions_c.md":"CLEvGoZQ","coding_conventions_python.md":"C39VQP0z","compatible_microcontrollers.md":"Bf-rLjWh","config_options.md":"BvppuDuW","configurator_architecture.md":"oiNBnJec","configurator_default_keymaps.md":"DnKCtKHc","configurator_step_by_step.md":"DDwpDY58","configurator_troubleshooting.md":"C2ghw8vC","contributing.md":"dJQPrZXD","custom_matrix.md":"BpQrge8p","custom_quantum_functions.md":"DlfwiyHe","data_driven_config.md":"CnG_3O32","documentation_best_practices.md":"CywuRS8R","documentation_templates.md":"8Tmv7rFN","driver_installation_zadig.md":"Dopii2Qg","drivers_adc.md":"4lcxwuNF","drivers_apa102.md":"BoVkQMrw","drivers_audio.md":"DFUXqjwH","drivers_aw20216s.md":"DmQVa7iu","drivers_battery.md":"4AI78ASf","drivers_eeprom.md":"BlurGiKn","drivers_flash.md":"DaShF64Z","drivers_gpio.md":"frhwWZT1","drivers_i2c.md":"CzO-jzlA","drivers_is31fl3218.md":"Boj71vTc","drivers_is31fl3236.md":"CItbpifZ","drivers_is31fl3729.md":"mDVSZ3C7","drivers_is31fl3731.md":"CxEgviPy","drivers_is31fl3733.md":"B-6AcIwY","drivers_is31fl3736.md":"GDTnntSt","drivers_is31fl3737.md":"D-aRCkbW","drivers_is31fl3741.md":"Dlb-h25I","drivers_is31fl3742a.md":"Cj8IJj4G","drivers_is31fl3743a.md":"BiLEsQ8L","drivers_is31fl3745.md":"Bs5pX8zD","drivers_is31fl3746a.md":"r4Yz0yI2","drivers_serial.md":"BaT67xXa","drivers_snled27351.md":"BZ-74IBQ","drivers_spi.md":"D4Me9hD5","drivers_uart.md":"BzqycL-H","drivers_ws2812.md":"BaongaWM","easy_maker.md":"6n7dVTYS","faq_build.md":"DZNHN8-D","faq_debug.md":"vx_0_u9_","faq_general.md":"D0EG2y83","faq_keymap.md":"HQK7yaN_","faq_misc.md":"CILFeSvN","feature_advanced_keycodes.md":"BFCS9PZn","feature_converters.md":"D6KzN6T3","feature_debounce_type.md":"B4btv3zl","feature_eeprom.md":"D_bqLEFa","feature_layers.md":"Bqm53P73","feature_layouts.md":"BogzTuHR","feature_macros.md":"BlMWaiqJ","feature_userspace.md":"Bf5gmiAY","features_audio.md":"B0WDeKTO","features_auto_shift.md":"DLSDpq9k","features_autocorrect.md":"Y0LgzJas","features_backlight.md":"BpMPbAI2","features_battery.md":"B6Ab94Jc","features_bootmagic.md":"C_5K311x","features_caps_word.md":"CIDaBP-l","features_combo.md":"Dax9EotR","features_command.md":"DWbb2ZHf","features_community_modules.md":"BKB3EQD6","features_digitizer.md":"BM6Nxg-j","features_dip_switch.md":"BkvqWk2A","features_dynamic_macros.md":"DaLBt-80","features_encoders.md":"BkuwcHCp","features_grave_esc.md":"CHuvHpZ3","features_haptic_feedback.md":"B-ioEYF3","features_hd44780.md":"DpvS25NL","features_joystick.md":"B4D1xgy3","features_key_lock.md":"Cu61mSCj","features_key_overrides.md":"V4FVUQJE","features_layer_lock.md":"Z90Yt_DL","features_leader_key.md":"B47rYW2D","features_led_indicators.md":"B-a_9KJt","features_led_matrix.md":"CAcICmoN","features_midi.md":"DBHZcct-","features_mouse_keys.md":"9KGsb6t8","features_oled_driver.md":"DYIJCwT3","features_os_detection.md":"DaeYZhGC","features_pointing_device.md":"Bs_a83Jz","features_programmable_button.md":"B4W0QrV3","features_ps2_mouse.md":"DkKbg0HB","features_rawhid.md":"agsoL5dY","features_repeat_key.md":"DQiZBEg0","features_rgb_matrix.md":"rWDHSc7o","features_rgblight.md":"BEL-EV8Z","features_secure.md":"DWJXxMMA","features_send_string.md":"DxT8iR_p","features_sequencer.md":"DFoKQ0TL","features_space_cadet.md":"DB0y0-h8","features_split_keyboard.md":"CdeMXa87","features_st7565.md":"xq_DcRr1","features_stenography.md":"C9XRyFjT","features_swap_hands.md":"De2lhBOi","features_tap_dance.md":"C__8yEyM","features_tri_layer.md":"C_6wFQ5v","features_unicode.md":"BOggbpE5","features_wireless.md":"B3qwab2e","features_wpm.md":"BpdrOIEu","flashing.md":"C_N9qmvk","getting_started_docker.md":"DU9mSHtV","getting_started_github.md":"BFmZeNj_","getting_started_introduction.md":"1_zQTAKR","getting_started_make_guide.md":"B89Bjq5W","hand_wire.md":"C4wUtrFL","hardware_drivers.md":"C6vlSLCV","hardware_keyboard_guidelines.md":"Iwx9-_MM","how_a_matrix_works.md":"DuLy3fYm","how_keyboards_work.md":"Kqz2eMw-","index.md":"su9L9OiU","isp_flashing_guide.md":"KLb4YKDZ","keycodes.md":"C3FCIw8j","keycodes_basic.md":"CU34_bpC","keycodes_magic.md":"BMOu_KA0","keycodes_us_ansi_shifted.md":"BuLWPsJ7","keymap.md":"mONRk0bh","license_violations.md":"BDYMotOh","mod_tap.md":"DyIZlvOO","newbs.md":"DK0F0hz3","newbs_building_firmware.md":"BacztC1l","newbs_building_firmware_configurator.md":"CcGaQsSJ","newbs_building_firmware_workflow.md":"DJFZn_sg","newbs_external_userspace.md":"p0BK6C70","newbs_flashing.md":"BAqEj3y-","newbs_getting_started.md":"Cm1TQTfg","newbs_git_best_practices.md":"CWQUgz_s","newbs_git_resolving_merge_conflicts.md":"CY7BwXek","newbs_git_resynchronize_a_branch.md":"BrxafOHM","newbs_git_using_your_master_branch.md":"Bf4LKnsw","newbs_learn_more_resources.md":"DTxLu81-","newbs_testing_debugging.md":"D941n7-l","one_shot_keys.md":"Dno09Hp_","other_eclipse.md":"BEiZBPaS","other_vscode.md":"Ddu5wbwi","platformdev_blackpill_f4x1.md":"srCds2d5","platformdev_chibios_earlyinit.md":"DeU_QvW8","platformdev_proton_c.md":"CpRo5RCH","platformdev_rp2040.md":"DFezYYEC","platformdev_selecting_arm_mcu.md":"CJom15Xw","porting_your_keyboard_to_qmk.md":"Diniu5iP","pr_checklist.md":"Dngwy_uC","proprietary_libs.md":"D4Bh0qxV","quantum_keycodes.md":"DAEibZwV","quantum_painter.md":"C4xi4nLC","quantum_painter_lvgl.md":"-hrqCJME","quantum_painter_qff.md":"KXPWPCR-","quantum_painter_qgf.md":"4jcFdZf1","quantum_painter_rle.md":"CP6A5xOl","ref_functions.md":"n3k29tKJ","reference_configurator_support.md":"7XJjzI54","reference_glossary.md":"CIwm4raE","reference_info_json.md":"BIc7hvpx","reference_keymap_extras.md":"F0wC7lQo","squeezing_avr.md":"BmvINcV0","support.md":"zKsJE92C","support_deprecation_policy.md":"CZ4IhETi","syllabus.md":"QTALDIRy","tap_hold.md":"CFcRBW4O","understanding_qmk.md":"BGTp2EVQ","unit_testing.md":"D0ysJBhz"} +{"api_development_environment.md":"wNYXToe7","api_development_overview.md":"CzbJJDNw","api_docs.md":"C2yn8IjW","api_overview.md":"DkBx64VD","arm_debugging.md":"BVKHYCY3","breaking_changes.md":"BJZxbNQ8","breaking_changes_history.md":"CE5EMOAr","breaking_changes_instructions.md":"YfjQwyDT","capabilities.md":"B8T3JCyt","capabilities_inc.md":"Sa8st2B_","changelog_20190830.md":"CBfckQOX","changelog_20200229.md":"DiinV84l","changelog_20200530.md":"BH8FWHkm","changelog_20200829.md":"DznAG4nm","changelog_20201128.md":"-2Dfbq7k","changelog_20210227.md":"vgsezX7T","changelog_20210529.md":"CWpDbllD","changelog_20210828.md":"X4_BluTJ","changelog_20211127.md":"B9B6h84a","changelog_20220226.md":"DIw57r5h","changelog_20220528.md":"Aq5MEXya","changelog_20220827.md":"Cr63IlPG","changelog_20221126.md":"C2ha4Hg9","changelog_20230226.md":"De4T2dUZ","changelog_20230528.md":"BacADocV","changelog_20230827.md":"Ccy4AdJq","changelog_20231126.md":"Q4Va56-o","changelog_20240225.md":"DSuQVEc0","changelog_20240526.md":"ElUUrYcx","changelog_20240825.md":"N1RvMy9r","changelog_20241124.md":"Dy8bwJzG","changelog_20250223.md":"B72dUS3J","changelog_20250525.md":"a1xu4dA3","changelog_20250831.md":"BO33XxfI","changelog_20251130.md":"DtPMFMHL","changelog_20260222.md":"CATMKVaN","changelog_20260531.md":"DHtZDh3f","chibios_upgrade_instructions.md":"CtaRRXpJ","cli.md":"BSe0mfRY","cli_commands.md":"CgJfYMV3","cli_configuration.md":"BKXYakFu","cli_development.md":"BBW4icmD","cli_tab_complete.md":"CnVMEiZf","coding_conventions_c.md":"CLEvGoZQ","coding_conventions_python.md":"C39VQP0z","compatible_microcontrollers.md":"Bf-rLjWh","config_options.md":"BvppuDuW","configurator_architecture.md":"oiNBnJec","configurator_default_keymaps.md":"DnKCtKHc","configurator_step_by_step.md":"DDwpDY58","configurator_troubleshooting.md":"C2ghw8vC","contributing.md":"dJQPrZXD","custom_matrix.md":"BpQrge8p","custom_quantum_functions.md":"DlfwiyHe","data_driven_config.md":"CnG_3O32","documentation_best_practices.md":"CywuRS8R","documentation_templates.md":"8Tmv7rFN","driver_installation_zadig.md":"Dopii2Qg","drivers_adc.md":"4lcxwuNF","drivers_apa102.md":"BoVkQMrw","drivers_audio.md":"B1DKL5_T","drivers_aw20216s.md":"DmQVa7iu","drivers_battery.md":"4AI78ASf","drivers_eeprom.md":"BlurGiKn","drivers_flash.md":"DaShF64Z","drivers_gpio.md":"frhwWZT1","drivers_i2c.md":"uI2Pt6pv","drivers_is31fl3218.md":"Boj71vTc","drivers_is31fl3236.md":"CItbpifZ","drivers_is31fl3729.md":"mDVSZ3C7","drivers_is31fl3731.md":"CxEgviPy","drivers_is31fl3733.md":"B-6AcIwY","drivers_is31fl3736.md":"GDTnntSt","drivers_is31fl3737.md":"D-aRCkbW","drivers_is31fl3741.md":"Dlb-h25I","drivers_is31fl3742a.md":"Cj8IJj4G","drivers_is31fl3743a.md":"BiLEsQ8L","drivers_is31fl3745.md":"Bs5pX8zD","drivers_is31fl3746a.md":"r4Yz0yI2","drivers_serial.md":"BaT67xXa","drivers_snled27351.md":"BZ-74IBQ","drivers_spi.md":"CbmshMLW","drivers_uart.md":"BzqycL-H","drivers_ws2812.md":"C7B14Q5R","easy_maker.md":"6n7dVTYS","faq_build.md":"DZNHN8-D","faq_debug.md":"vx_0_u9_","faq_general.md":"D0EG2y83","faq_keymap.md":"HQK7yaN_","faq_misc.md":"CILFeSvN","feature_advanced_keycodes.md":"BFCS9PZn","feature_converters.md":"D6KzN6T3","feature_debounce_type.md":"B4btv3zl","feature_eeprom.md":"D_bqLEFa","feature_layers.md":"CENkIDP3","feature_layouts.md":"BogzTuHR","feature_macros.md":"BlMWaiqJ","feature_userspace.md":"Bf5gmiAY","features_audio.md":"B0WDeKTO","features_auto_shift.md":"DLSDpq9k","features_autocorrect.md":"Y0LgzJas","features_backlight.md":"BvvKoIoN","features_battery.md":"B6Ab94Jc","features_bootmagic.md":"C_5K311x","features_caps_word.md":"CIDaBP-l","features_combo.md":"Dax9EotR","features_command.md":"DWbb2ZHf","features_community_modules.md":"BKB3EQD6","features_digitizer.md":"BM6Nxg-j","features_dip_switch.md":"BkvqWk2A","features_dynamic_macros.md":"DaLBt-80","features_encoders.md":"BkuwcHCp","features_grave_esc.md":"CHuvHpZ3","features_haptic_feedback.md":"B-ioEYF3","features_hd44780.md":"DpvS25NL","features_joystick.md":"B4D1xgy3","features_key_lock.md":"Cu61mSCj","features_key_overrides.md":"V4FVUQJE","features_layer_lock.md":"Z90Yt_DL","features_leader_key.md":"B47rYW2D","features_led_indicators.md":"B-a_9KJt","features_led_matrix.md":"CAcICmoN","features_midi.md":"DBHZcct-","features_mouse_keys.md":"9KGsb6t8","features_oled_driver.md":"DYIJCwT3","features_os_detection.md":"DaeYZhGC","features_pointing_device.md":"Bs_a83Jz","features_programmable_button.md":"B4W0QrV3","features_ps2_mouse.md":"DkKbg0HB","features_rawhid.md":"agsoL5dY","features_repeat_key.md":"DQiZBEg0","features_rgb_matrix.md":"rWDHSc7o","features_rgblight.md":"BEL-EV8Z","features_secure.md":"DWJXxMMA","features_send_string.md":"DxT8iR_p","features_sequencer.md":"DFoKQ0TL","features_space_cadet.md":"DB0y0-h8","features_split_keyboard.md":"CdeMXa87","features_st7565.md":"xq_DcRr1","features_stenography.md":"C9XRyFjT","features_swap_hands.md":"De2lhBOi","features_tap_dance.md":"DEInXfWx","features_tri_layer.md":"C_6wFQ5v","features_unicode.md":"BOggbpE5","features_wireless.md":"B3qwab2e","features_wpm.md":"BpdrOIEu","flashing.md":"C_N9qmvk","getting_started_docker.md":"DU9mSHtV","getting_started_github.md":"BFmZeNj_","getting_started_introduction.md":"1_zQTAKR","getting_started_make_guide.md":"B89Bjq5W","hand_wire.md":"C4wUtrFL","hardware_drivers.md":"C6vlSLCV","hardware_keyboard_guidelines.md":"Iwx9-_MM","how_a_matrix_works.md":"DuLy3fYm","how_keyboards_work.md":"Kqz2eMw-","index.md":"su9L9OiU","isp_flashing_guide.md":"KLb4YKDZ","keycodes.md":"C3FCIw8j","keycodes_basic.md":"CU34_bpC","keycodes_magic.md":"BMOu_KA0","keycodes_us_ansi_shifted.md":"BuLWPsJ7","keymap.md":"mONRk0bh","license_violations.md":"BDYMotOh","mod_tap.md":"BaxFg-Rs","newbs.md":"DK0F0hz3","newbs_building_firmware.md":"BacztC1l","newbs_building_firmware_configurator.md":"CcGaQsSJ","newbs_building_firmware_workflow.md":"DJFZn_sg","newbs_external_userspace.md":"p0BK6C70","newbs_flashing.md":"BAqEj3y-","newbs_getting_started.md":"Cm1TQTfg","newbs_git_best_practices.md":"CWQUgz_s","newbs_git_resolving_merge_conflicts.md":"CY7BwXek","newbs_git_resynchronize_a_branch.md":"BrxafOHM","newbs_git_using_your_master_branch.md":"Bf4LKnsw","newbs_learn_more_resources.md":"DTxLu81-","newbs_testing_debugging.md":"D941n7-l","one_shot_keys.md":"Dno09Hp_","other_eclipse.md":"BEiZBPaS","other_vscode.md":"Ddu5wbwi","platformdev_blackpill_f4x1.md":"srCds2d5","platformdev_chibios_earlyinit.md":"DeU_QvW8","platformdev_proton_c.md":"CpRo5RCH","platformdev_rp2040.md":"DFezYYEC","platformdev_selecting_arm_mcu.md":"CJom15Xw","porting_your_keyboard_to_qmk.md":"Diniu5iP","pr_checklist.md":"Dngwy_uC","proprietary_libs.md":"D4Bh0qxV","quantum_keycodes.md":"DAEibZwV","quantum_painter.md":"C4xi4nLC","quantum_painter_lvgl.md":"-hrqCJME","quantum_painter_qff.md":"KXPWPCR-","quantum_painter_qgf.md":"4jcFdZf1","quantum_painter_rle.md":"CP6A5xOl","ref_functions.md":"n3k29tKJ","reference_configurator_support.md":"7XJjzI54","reference_glossary.md":"CIwm4raE","reference_info_json.md":"BIc7hvpx","reference_keymap_extras.md":"F0wC7lQo","squeezing_avr.md":"BmvINcV0","support.md":"zKsJE92C","support_deprecation_policy.md":"CZ4IhETi","syllabus.md":"QTALDIRy","tap_hold.md":"CV7RBz1O","understanding_qmk.md":"BGTp2EVQ","unit_testing.md":"D0ysJBhz"} diff --git a/how_a_matrix_works.html b/how_a_matrix_works.html index 08610d82611..111246f0b86 100644 --- a/how_a_matrix_works.html +++ b/how_a_matrix_works.html @@ -9,9 +9,9 @@ - + - + @@ -68,7 +68,7 @@ col1: 0b11 │└row0 └row1

    The firmware can then use this correct data to detect what it should do, and eventually, what signals it needs to send to the OS.

    Further reading:

    - + \ No newline at end of file diff --git a/how_keyboards_work.html b/how_keyboards_work.html index 17a414fc2aa..7c156ba1629 100644 --- a/how_keyboards_work.html +++ b/how_keyboards_work.html @@ -9,9 +9,9 @@ - + - + @@ -21,7 +21,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/index.html b/index.html index 8b8282be21b..f3bebb1eb22 100644 --- a/index.html +++ b/index.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/isp_flashing_guide.html b/isp_flashing_guide.html index 44dd4b72bba..eca5f1d5796 100644 --- a/isp_flashing_guide.html +++ b/isp_flashing_guide.html @@ -9,9 +9,9 @@ - + - + @@ -70,7 +70,7 @@ 2022-03-08T12:16:31 INFO common.c: Starting verification of write complete 2022-03-08T12:16:31 INFO common.c: Flash written and verified! jolly good! 2022-03-08T12:16:31 WARN common.c: NRST is not connected

    Otherwise, if you receive an Unknown memory region error, run the following command to unlock the STM32F103:

    openocd -f interface/stlink.cfg -f target/stm32f1x.cfg -c "init; reset halt; stm32f1x unlock 0; reset halt; exit"

    Then re-plug the ST-Link and try again.

    After all of this, unplug the Bluepill from the ST-Link and connect it to USB. It should now be ready to flash using dfu-util, the QMK CLI or Toolbox.

    - + \ No newline at end of file diff --git a/keycodes.html b/keycodes.html index 0a8fe5c7dd8..aa408fdf1f9 100644 --- a/keycodes.html +++ b/keycodes.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/keycodes_basic.html b/keycodes_basic.html index 7e3a00ed4ab..096a52dc7db 100644 --- a/keycodes_basic.html +++ b/keycodes_basic.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/keycodes_magic.html b/keycodes_magic.html index a9c4284856c..c8d76584ef4 100644 --- a/keycodes_magic.html +++ b/keycodes_magic.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/keycodes_us_ansi_shifted.html b/keycodes_us_ansi_shifted.html index 420e2f425ed..1914996fab4 100644 --- a/keycodes_us_ansi_shifted.html +++ b/keycodes_us_ansi_shifted.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/keymap.html b/keymap.html index bad9f661a3e..4f2a95c0d51 100644 --- a/keymap.html +++ b/keymap.html @@ -9,9 +9,9 @@ - + - + @@ -93,7 +93,7 @@ _______, _______, _______,_______,_______,_______,_______,_______,_______,_______, _______, _______, _______, _______, KC_PGUP, _______, _______, _______, _______, _______,_______, _______, _______, _______, MO(_FL), KC_HOME, KC_PGDN, KC_END ),

    Some interesting things to note:

    Nitty Gritty Details

    This should have given you a basic overview for creating your own keymap. For more details see the following resources:

    We are actively working to improve these docs. If you have suggestions for how they could be made better please file an issue!

    - + \ No newline at end of file diff --git a/license_violations.html b/license_violations.html index 17c53582431..c06e100bc00 100644 --- a/license_violations.html +++ b/license_violations.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/mod_tap.html b/mod_tap.html index 63627b0c8f6..088b33cd3f6 100644 --- a/mod_tap.html +++ b/mod_tap.html @@ -9,16 +9,16 @@ - + - + - + -
    Skip to content
    - + \ No newline at end of file diff --git a/newbs_building_firmware_configurator.html b/newbs_building_firmware_configurator.html index b445032df55..736f2dea0ab 100644 --- a/newbs_building_firmware_configurator.html +++ b/newbs_building_firmware_configurator.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/newbs_building_firmware_workflow.html b/newbs_building_firmware_workflow.html index 937bb19c54d..bc61794fb61 100644 --- a/newbs_building_firmware_workflow.html +++ b/newbs_building_firmware_workflow.html @@ -9,9 +9,9 @@ - + - + @@ -79,7 +79,7 @@ git push -u origin main

    TIP

    Use your GitHub personal access token at the password prompt. If you have setup SSH access, replace https://github.com/gh-username/qmk_keymap.git with git@github.com:gh-username/qmk_keymap.git in the remote origin command above.

    Review workflow output

    Files committed to GitHub in the previous step will automatically trigger the workflow to build the JSON file listed in build.yml. To review its output:

    1. Visit your "qmk_keymap" repository page on GitHub.
    2. Select Actions tab to display the "Build QMK Firmware" workflow.
    3. Select that workflow to display its run from the last commit.
    4. Successfully compiled firmware will be under the "Artifacts" section.
    5. If there are build errors, review the job log for details.

    Download and flash the firmware file into your keyboard using QMK Toolbox.

    Customising your keymap

    This setup and workflow relies on the QMK Userspace feature. The build process will copy the QMK source codes and clone your repository into its users/ folder in a container. You must adhere to the following guidelines when customising your keymaps:

    yml
            file:
             - planck.json
             - crkbd.json

    TIP

    See GitHub Actions guide to learn more about development workflow.

    - + \ No newline at end of file diff --git a/newbs_external_userspace.html b/newbs_external_userspace.html index 95694cdfe01..a42be6e63cd 100644 --- a/newbs_external_userspace.html +++ b/newbs_external_userspace.html @@ -9,9 +9,9 @@ - + - + @@ -26,7 +26,7 @@ qmk userspace-add -kb <keyboard> -km <keymap> # or, for a json-based keymap (if kept "loose"): qmk userspace-add <relative/path/to/my/keymap.json>

    This updates the qmk.json file in the root of your External Userspace directory. If you're using a git repository to store your keymaps, now is a great time to commit and push to your own fork.

    Compiling External Userspace build targets

    Once you have added your keymaps to the External Userspace build targets, you can compile all of them at once using the qmk userspace-compile command:

    sh
    qmk userspace-compile

    All firmware builds you've added to the External Userspace build targets will be built, and the resulting firmware files will be placed in the root of your External Userspace directory.

    Using GitHub Actions

    GitHub Actions can be used to automatically build your keymaps whenever you push changes to your External Userspace repository. If you have set up your list of build targets, this is as simple as enabling workflows in the GitHub repository settings:

    Repo Settings

    Any push will result in compilation of all configured builds, and once completed a new release containing the newly-minted firmware files will be created on GitHub, which you can subsequently download and flash to your keyboard:

    Releases

    - + \ No newline at end of file diff --git a/newbs_flashing.html b/newbs_flashing.html index eca0c1b2e00..8fadf6ba3ad 100644 --- a/newbs_flashing.html +++ b/newbs_flashing.html @@ -9,9 +9,9 @@ - + - + @@ -34,7 +34,7 @@ >>> dfu-programmer.exe atmega32u4 reset *** DFU device disconnected: Atmel Corp: ATmega32U4 (03EB:2FF4:0000)

    Flash your Keyboard from the Command Line

    This has been made pretty simple compared to what it used to be. When you are ready to compile and flash your firmware, open up your terminal window and run the flash command:

    sh
    qmk flash

    If you did not configure your keyboard/keymap name in the CLI according to the Configure your build environment section, or you have multiple keyboards, you can specify the keyboard and keymap:

    sh
    qmk flash -kb <my_keyboard> -km <my_keymap>

    This will check the keyboard's configuration, and then attempt to flash it based on the specified bootloader. This means that you don't need to know which bootloader that your keyboard uses. Just run the command, and let the command do the heavy lifting.

    However, this does rely on the bootloader being set by the keyboard. If this information is not configured, or you're using a board that doesn't have a supported target to flash it, you will see this error:

    WARNING: This board's bootloader is not specified or is not supported by the ":flash" target at this time.

    In this case, you'll have to fall back on specifying the bootloader. See the Flashing Firmware Guide for more details.

    WARNING

    If your bootloader is not detected by qmk flash, try running qmk doctor for suggestions on how to fix common problems.

    Test It Out!

    Congrats! Your custom firmware has been programmed to your keyboard and you're ready to test it out!

    With a little bit of luck everything will work perfectly, but if not there are steps that will help you figure out what's wrong. Testing your keyboard is usually pretty straightforward. Press every single key and make sure it sends the keys you expect. You can use QMK Configurator's test mode to check your keyboard, even if it doesn't run QMK.

    Still not working? Browse the FAQ topics for more information, or chat with us on Discord.

    - + \ No newline at end of file diff --git a/newbs_getting_started.html b/newbs_getting_started.html index 304b489919a..32f0785c715 100644 --- a/newbs_getting_started.html +++ b/newbs_getting_started.html @@ -9,9 +9,9 @@ - + - + @@ -23,7 +23,7 @@ Copying clueboard_66_rev3_default.hex to qmk_firmware folder [OK] Checking file size of clueboard_66_rev3_default.hex [OK] * The firmware size is fine - 26356/28672 (2316 bytes free)

    Creating Your Keymap

    You are now ready to create your own personal keymap! Move on to Building Your First Firmware for that.

    - + \ No newline at end of file diff --git a/newbs_git_best_practices.html b/newbs_git_best_practices.html index cc903f687ab..6e9de8cae26 100644 --- a/newbs_git_best_practices.html +++ b/newbs_git_best_practices.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/newbs_git_resolving_merge_conflicts.html b/newbs_git_resolving_merge_conflicts.html index e76fb44d60b..2f062161a44 100644 --- a/newbs_git_resolving_merge_conflicts.html +++ b/newbs_git_resolving_merge_conflicts.html @@ -9,9 +9,9 @@ - + - + @@ -41,7 +41,7 @@ <p>Need help? Email support@webhost.us.</p> >>>>>>> Commit #1

    The line <<<<<<< HEAD marks the beginning of a merge conflict, and the >>>>>>> Commit #1 line marks the end, with the conflicting sections separated by =======. The part on the HEAD side is from the QMK master version of the file, and the part marked with the commit message is from the current branch and commit.

    Because Git tracks changes to files rather than the contents of the files directly, if Git can't find the text that was in the file previous to the commit that was made, it won't know how to edit the file. Re-editing the file will solve the conflict. Make your changes, and then save the file.

    <p>Need help? Email support@webhost.us.</p>

    Now run:

    git add conflicting_file_1.txt
     git rebase --continue

    Git logs the changes to the conflicting file, and continues applying the commits from our branch until it reaches the end.

    - + \ No newline at end of file diff --git a/newbs_git_resynchronize_a_branch.html b/newbs_git_resynchronize_a_branch.html index 287b9272a11..bfe48f6516a 100644 --- a/newbs_git_resynchronize_a_branch.html +++ b/newbs_git_resynchronize_a_branch.html @@ -9,9 +9,9 @@ - + - + @@ -27,7 +27,7 @@ $ git remote -v origin https://github.com/qmk/qmk_firmware.git (fetch) origin https://github.com/qmk/qmk_firmware.git (push)

    add a new remote with:

    git remote add upstream https://github.com/qmk/qmk_firmware.git

    Then, redirect the origin remote to your own fork with:

    git remote set-url origin https://github.com/<your_username>/qmk_firmware.git

    Now that you have both remotes configured, you need to update the references for the upstream repository, which is QMK's, by running:

    git fetch --recurse-submodules upstream

    At this point, resynchronize your branch to QMK's by running:

    git reset --recurse-submodules --hard upstream/master

    These steps will update the repository on your computer, but your GitHub fork will still be out of sync. To resynchronize your fork on GitHub, you need to push to your fork, instructing Git to override any remote changes that are not reflected in your local repository. To do this, run:

    git push --recurse-submodules=on-demand --force-with-lease

    WARNING

    DO NOT run git push --recurse-submodules=on-demand --force-with-lease on a fork to which other users post commits. This will erase their commits.

    Now your GitHub fork, your local files, and QMK's repository are all the same. From here you can make further needed changes (use a branch!) and post them as normal.

    - + \ No newline at end of file diff --git a/newbs_git_using_your_master_branch.html b/newbs_git_using_your_master_branch.html index f2d6dfdf571..4d9043dd4ac 100644 --- a/newbs_git_using_your_master_branch.html +++ b/newbs_git_using_your_master_branch.html @@ -9,9 +9,9 @@ - + - + @@ -28,7 +28,7 @@ git push origin master

    This switches you to your master branch, retrieves the refs from the QMK repo, downloads the current QMK master branch to your computer, and then uploads it to your fork.

    Making Changes

    To make changes, create a new branch by entering:

    git checkout -b dev_branch
     git push --set-upstream origin dev_branch

    This creates a new branch named dev_branch, checks it out, and then saves the new branch to your fork. The --set-upstream argument tells git to use your fork and the dev_branch branch every time you use git push or git pull from this branch. It only needs to be used on the first push; after that, you can safely use git push or git pull, without the rest of the arguments.

    TIP

    With git push, you can use -u in place of --set-upstream-u is an alias for --set-upstream.

    You can name your branch nearly anything you want, though it is recommended to name it something related to the changes you are going to make.

    By default git checkout -b will base your new branch on the branch that is currently checked out. You can base your new branch on an existing branch that is not checked out by adding the name of the existing branch to the command:

    git checkout -b dev_branch master

    Now that you have a development branch, open your text editor and make whatever changes you need to make. It is recommended to make many small commits to your branch; that way, any change that causes issues can be more easily traced and undone if needed. To make your changes, edit and save any files that need to be updated, add them to Git's staging area, and then commit them to your branch:

    git add path/to/updated_file
     git commit -m "My commit message."

    git add adds files that have been changed to Git's staging area, which is Git's "loading zone." This contains the changes that are going to be committed by git commit, which saves the changes to the repo. Use descriptive commit messages so you can know what was changed at a glance.

    TIP

    If you've changed multiple files, you can use git add -- path/to/file1 path/to/file2 ... to add all your desired files.

    Publishing Your Changes

    The last step is to push your changes to your fork. To do this, enter git push. Git will then publish the current state of dev_branch to your fork.

    - + \ No newline at end of file diff --git a/newbs_learn_more_resources.html b/newbs_learn_more_resources.html index b6171bb88a3..bad86b481ae 100644 --- a/newbs_learn_more_resources.html +++ b/newbs_learn_more_resources.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/newbs_testing_debugging.html b/newbs_testing_debugging.html index be2da4eef74..442a77d5f53 100644 --- a/newbs_testing_debugging.html +++ b/newbs_testing_debugging.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/one_shot_keys.html b/one_shot_keys.html index 412603d1e66..78a2587d48f 100644 --- a/one_shot_keys.html +++ b/one_shot_keys.html @@ -9,9 +9,9 @@ - + - + @@ -61,7 +61,7 @@ }

    If any one shot layer is switched off, layer will be zero. When you're looking to do something on any layer change instead of one shot layer changes, layer_state_set_user is a better callback to use.

    If you are making your own keyboard, there are also _kb equivalent functions:

    c
    void oneshot_locked_mods_changed_kb(uint8_t mods);
     void oneshot_mods_changed_kb(uint8_t mods);
     void oneshot_layer_changed_kb(uint8_t layer);

    As with any callback, be sure to call the _user variant to allow for further customizability.

    - + \ No newline at end of file diff --git a/other_eclipse.html b/other_eclipse.html index d836de827d1..7a3293ccb24 100644 --- a/other_eclipse.html +++ b/other_eclipse.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/other_vscode.html b/other_vscode.html index 362eee810a6..ab884086fd4 100644 --- a/other_vscode.html +++ b/other_vscode.html @@ -9,9 +9,9 @@ - + - + @@ -58,7 +58,7 @@ # Disable optimisations for debugging purposes LTO_ENABLE = no OPT = g

    At this point, you should build and flash your firmware through normal methods (qmk compile ... and qmk flash ...).

    Once completed, you can:

    VS Code's debugger will then start executing the compiled firmware on the MCU.

    At this stage, you should have full debugging set up, with breakpoints and variable listings working!

    - + \ No newline at end of file diff --git a/platformdev_blackpill_f4x1.html b/platformdev_blackpill_f4x1.html index c254082f9c5..cb4129aa6ba 100644 --- a/platformdev_blackpill_f4x1.html +++ b/platformdev_blackpill_f4x1.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/platformdev_chibios_earlyinit.html b/platformdev_chibios_earlyinit.html index bc99978e899..cf19d999a2a 100644 --- a/platformdev_chibios_earlyinit.html +++ b/platformdev_chibios_earlyinit.html @@ -9,9 +9,9 @@ - + - + @@ -25,7 +25,7 @@ }

    board_init()

    The function board_init is executed directly after the ChibiOS initialization routines have completed. At this stage, all normal low-level functionality should be available for use (including timers and delays), with the restriction that USB is not yet connected. This is intended as a replacement for the ChibiOS board definition's boardInit function.

    The default implementation of this function is to do nothing.

    To implement your own version of this function, in your keyboard's source files:

    c
    void board_init(void) {
         // initialize anything that requires ChibiOS
     }
    - + \ No newline at end of file diff --git a/platformdev_proton_c.html b/platformdev_proton_c.html index fa69133cd2b..96f793877c4 100644 --- a/platformdev_proton_c.html +++ b/platformdev_proton_c.html @@ -9,9 +9,9 @@ - + - + @@ -20,7 +20,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/platformdev_rp2040.html b/platformdev_rp2040.html index 44a5e92f2a0..e8cd103d422 100644 --- a/platformdev_rp2040.html +++ b/platformdev_rp2040.html @@ -9,9 +9,9 @@ - + - + @@ -21,7 +21,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/platformdev_selecting_arm_mcu.html b/platformdev_selecting_arm_mcu.html index 10dbe830417..11518630318 100644 --- a/platformdev_selecting_arm_mcu.html +++ b/platformdev_selecting_arm_mcu.html @@ -9,9 +9,9 @@ - + - + @@ -20,7 +20,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/porting_your_keyboard_to_qmk.html b/porting_your_keyboard_to_qmk.html index 0a5cd8b7a54..d4c27251e41 100644 --- a/porting_your_keyboard_to_qmk.html +++ b/porting_your_keyboard_to_qmk.html @@ -9,9 +9,9 @@ - + - + @@ -97,7 +97,7 @@ ] } }

    In the above example,

    TIP

    See also: Split Keyboard Layout Macro and Matrix to Physical Layout.

    Additional Configuration

    There are a lot of features that can be turned on or off, configured or tuned. Some of these have yet to be migrated over to Data Driven Configuration. The following sections cover the process for when a data-driven option is unavailable.

    Configuration Options

    For available options for config.h, you should see the Config Options page for more details.

    Build Options

    For available options for rules.mk, see the Config Options page for a detailed list and description.

    - + \ No newline at end of file diff --git a/pr_checklist.html b/pr_checklist.html index d8b2b5e4be2..3e6bf53a942 100644 --- a/pr_checklist.html +++ b/pr_checklist.html @@ -9,9 +9,9 @@ - + - + @@ -42,7 +42,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */

    Or, optionally, using SPDX identifier instead:

    // Copyright 2024 Your Name (@yourgithub)
     // SPDX-License-Identifier: GPL-2.0-or-later
    - + \ No newline at end of file diff --git a/proprietary_libs.html b/proprietary_libs.html index de0a9c80311..e2e1d00dd52 100644 --- a/proprietary_libs.html +++ b/proprietary_libs.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/quantum_keycodes.html b/quantum_keycodes.html index 9b953b0baed..3f3ce64a67e 100644 --- a/quantum_keycodes.html +++ b/quantum_keycodes.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/quantum_painter.html b/quantum_painter.html index 9e60410b43d..c477f6a3295 100644 --- a/quantum_painter.html +++ b/quantum_painter.html @@ -9,9 +9,9 @@ - + - + @@ -38,7 +38,7 @@ Writing /home/qmk/qmk_firmware/keyboards/my_keeb/generated/my_image.qgf.c...

    Quantum Painter Display Drivers

    Most TFT display panels use a 5-pin interface -- SPI SCK, SPI MOSI, SPI CS, D/C, and RST pins.

    For these displays, QMK's spi_master must already be correctly configured for the platform you're building for.

    The pin assignments for SPI CS, D/C, and RST are specified during device construction.

    Enabling support for the GC9A01 in Quantum Painter is done by adding the following to rules.mk:

    make
    QUANTUM_PAINTER_ENABLE = yes
     QUANTUM_PAINTER_DRIVERS += gc9a01_spi

    Creating a GC9A01 device in firmware can then be done with the following API:

    c
    painter_device_t qp_gc9a01_make_spi_device(uint16_t panel_width, uint16_t panel_height, pin_t chip_select_pin, pin_t dc_pin, pin_t reset_pin, uint16_t spi_divisor, int spi_mode);

    The device handle returned from the qp_gc9a01_make_spi_device function can be used to perform all other drawing operations.

    The maximum number of displays can be configured by changing the following in your config.h (default is 1):

    c
    // 3 displays:
     #define GC9A01_NUM_DEVICES 3

    Native color format rgb565 is compatible with GC9A01

    Quantum Painter Drawing API

    All APIs require a painter_device_t object as their first parameter -- this object comes from the specific device initialisation, and instructions on creating it can be found in each driver's respective section.

    To use any of the APIs, you need to include qp.h:

    c
    #include <qp.h>

    The coordinate system used in Quantum Painter generally accepts left, top, right, and bottom instead of x/y/width/height, and each coordinate is inclusive of where pixels should be drawn. This is required as some datatypes used by display panels have a maximum value of 255 -- for any value or geometry extent that matches 256, this would be represented as a 0, instead.

    TIP

    Drawing a horizontal line 8 pixels long, starting from 4 pixels inside the left side of the display, will need left=4, right=11.

    All color data matches the standard QMK HSV triplet definitions:

    TIP

    Colors used in Quantum Painter are not subject to the RGB lighting CIE curve, if it is enabled.

    - + \ No newline at end of file diff --git a/quantum_painter_lvgl.html b/quantum_painter_lvgl.html index b4188e16bcf..dbf04400e84 100644 --- a/quantum_painter_lvgl.html +++ b/quantum_painter_lvgl.html @@ -9,9 +9,9 @@ - + - + @@ -29,7 +29,7 @@ ...Your code to draw // Run LVGL specific code to draw } }

    To init. the display please read the Display Initialisation section.

    WARNING

    Attaching LVGL to a display means LVGL subsequently "owns" the display. Using standard Quantum Painter drawing operations with the display after LVGL attachment will likely result in display artifacts.

    Quantum Painter LVGL Detach

    c
    void qp_lvgl_detach(void)

    The qp_lvgl_detach function stops the internal LVGL ticks and releases resources related to it.

    Enabling/Disabling LVGL features

    You can overwrite LVGL specific features in your lv_conf.h file.

    Changing the LVGL task frequency

    When LVGL is running, your keyboard's responsiveness may decrease, causing missing keystrokes or encoder rotations, especially during the animation of dynamically-generated content. This occurs because LVGL operates as a scheduled task with a default task rate of five milliseconds. While a fast task rate is advantageous when LVGL is responsible for detecting and processing inputs, it can lead to excessive recalculations of displayed content, which may slow down QMK's matrix scanning. If you rely on QMK instead of LVGL for processing inputs, it can be beneficial to increase the time between calls to the LVGL task handler to better match your preferred display update rate. To do this, add this to your config.h:

    c
    #define QP_LVGL_TASK_PERIOD 40
    - + \ No newline at end of file diff --git a/quantum_painter_qff.html b/quantum_painter_qff.html index e709ec895a0..e29a1e5bc30 100644 --- a/quantum_painter_qff.html +++ b/quantum_painter_qff.html @@ -9,9 +9,9 @@ - + - + @@ -48,7 +48,7 @@ uint24_t glyph; // the glyph information, as per ASCII glyphs above } glyph[N]; // N glyphs worth of data } qff_unicode_glyph_table_v1_t;

    Font palette block

    The font palette block is identical to QGF's frame palette block, retaining the same typeid of 0x03.

    It is only specified in the QFF if the font is palette-based, and follows the unicode glyph block if the font contains any Unicode glyphs, or the ASCII glyph block if the font contains only ASCII glyphs.

    Font data block

    The font data block is the last block in the file and is identical to QGF's frame data block, however has a different typeid of 0x04 in QFF.

    - + \ No newline at end of file diff --git a/quantum_painter_qgf.html b/quantum_painter_qgf.html index 1e0b62602c4..a86ba08236b 100644 --- a/quantum_painter_qgf.html +++ b/quantum_painter_qgf.html @@ -9,9 +9,9 @@ - + - + @@ -62,7 +62,7 @@ qgf_block_header_v1_t header; // = { .type_id = 0x05, .neg_type_id = (~0x05), .length = N } uint8_t data[N]; // N data octets } qgf_data_v1_t; - + \ No newline at end of file diff --git a/quantum_painter_rle.html b/quantum_painter_rle.html index 77ecc16239b..c52200098dc 100644 --- a/quantum_painter_rle.html +++ b/quantum_painter_rle.html @@ -9,9 +9,9 @@ - + - + @@ -32,7 +32,7 @@ c = READ_OCTET() for i = 0 ... length-1 WRITE_OCTET(c) - + \ No newline at end of file diff --git a/ref_functions.html b/ref_functions.html index d001c0653e1..bd02ba89080 100644 --- a/ref_functions.html +++ b/ref_functions.html @@ -9,9 +9,9 @@ - + - + @@ -57,7 +57,7 @@ } else { // do something if 100ms or more have passed } - + \ No newline at end of file diff --git a/reference_configurator_support.html b/reference_configurator_support.html index ef977708d6b..1c0a31ec6e4 100644 --- a/reference_configurator_support.html +++ b/reference_configurator_support.html @@ -9,9 +9,9 @@ - + - + @@ -109,7 +109,7 @@ +{"label": "\u2190", "x", 13.25, "y": 6.25}, +{"label": "\u2193", "x", 14.25, "y": 6.25}, +{"label": "\u2192", "x", 15.25, "y": 6.25},

    A diff showing the changes needed to vertically-offset the arrow keys in our keyboard's JSON file.

    - + \ No newline at end of file diff --git a/reference_glossary.html b/reference_glossary.html index 5f442e41494..759e809b4b2 100644 --- a/reference_glossary.html +++ b/reference_glossary.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/reference_info_json.html b/reference_info_json.html index 4d44cc1158a..1935714ccc0 100644 --- a/reference_info_json.html +++ b/reference_info_json.html @@ -9,9 +9,9 @@ - + - + @@ -41,7 +41,7 @@ "breathing": true, "cycle_left_right": false }
  • center_point Array: Number
  • flag_steps Array: Number
  • default
  • driver String Required
  • hue_steps Number
  • layout Array: Object Required
  • led_flush_limit Number
  • led_process_limit Number
  • max_brightness Number
  • react_on_keyup Boolean
  • sat_steps Number
  • sleep Boolean
  • speed_steps Number
  • split_count Array: Number
  • timeout Number
  • val_steps Number
  • Secure

    Configures the Secure feature.

    Split Keyboard

    Configures the Split Keyboard feature.

    Stenography

    Configures the Stenography feature.

    USB

    WS2812

    Configures the WS2812 driver.

    - + \ No newline at end of file diff --git a/reference_keymap_extras.html b/reference_keymap_extras.html index 97f6424529b..1156445ef5f 100644 --- a/reference_keymap_extras.html +++ b/reference_keymap_extras.html @@ -9,9 +9,9 @@ - + - + @@ -29,7 +29,7 @@ ["SE_ARNG"] ] }

    Sendstring Support

    By default, SEND_STRING() assumes a US ANSI keyboard layout is set. If you are using a different layout, you can include one of the Sendstring LUT headers below in your keymap.c to override the lookup tables used for mapping ASCII characters to keycodes. You do not need to include the corresponding keymap_*.h header, as it is implicit when including the Sendstring header.

    An important thing to note here is that SEND_STRING() only operates on ASCII text. This means that you cannot pass it a string containing Unicode characters - this unfortunately includes accented characters that may be present in your desired layout.
    Many layouts make certain characters, such as Grave or Tilde, available only as dead keys, so you must add a space immediately after it in the string you want to send, to prevent it from potentially combining with the next character.
    Certain other layouts have no Sendstring header as they do not use a Latin-derived alphabet (for example Greek and Russian), and thus there is no way to input most of the ASCII character set.

    Header Files

    These headers are located in quantum/keymap_extras/.

    LayoutKeycodes HeaderSendstring LUT Header
    Canadian Multilingual (CSA)keymap_canadian_multilingual.hsendstring_canadian_multilingual.h
    Croatiankeymap_croatian.hsendstring_croatian.h
    Czechkeymap_czech.hsendstring_czech.h
    Czech (macOS, ANSI)keymap_czech_mac_ansi.hsendstring_czech_mac_ansi.h
    Czech (macOS, ISO)keymap_czech_mac_iso.hsendstring_czech_mac_iso.h
    Danishkeymap_danish.hsendstring_danish.h
    Dutch (Belgium)keymap_belgian.hsendstring_belgian.h
    English (Ireland)keymap_irish.h
    English (UK)keymap_uk.hsendstring_uk.h
    English (US Extended)keymap_us_extended.h
    English (US International)keymap_us_international.hsendstring_us_international.h
    English (US International, Linux)keymap_us_international_linux.h
    Estoniankeymap_estonian.hsendstring_estonian.h
    EurKEYkeymap_eurkey.h
    Farsikeymap_farsi.h
    Finnishkeymap_finnish.hsendstring_finnish.h
    Frenchkeymap_french.hsendstring_french.h
    French (AFNOR)keymap_french_afnor.hsendstring_french_afnor.h
    French (BÉPO)keymap_bepo.hsendstring_bepo.h
    French (Belgium)keymap_belgian.hsendstring_belgian.h
    French (Canada)keymap_canadian_french.hsendstring_canadian_french.h
    French (Switzerland)keymap_swiss_fr.hsendstring_swiss_fr.h
    French (macOS, ISO)keymap_french_mac_iso.hsendstring_french_mac_iso.h
    Germankeymap_german.hsendstring_german.h
    German (Switzerland)keymap_swiss_de.hsendstring_swiss_de.h
    German (macOS)keymap_german_mac_iso.hsendstring_german_mac_iso.h
    German (Neo2)keymap_neo2.h
    Greekkeymap_greek.h
    Hebrewkeymap_hebrew.h
    Hungariankeymap_hungarian.hsendstring_hungarian.h
    Icelandickeymap_icelandic.hsendstring_icelandic.h
    Italiankeymap_italian.hsendstring_italian.h
    Italian (macOS, ANSI)keymap_italian_mac_ansi.hsendstring_italian_mac_ansi.h
    Italian (macOS, ISO)keymap_italian_mac_iso.hsendstring_italian_mac_iso.h
    Japanesekeymap_japanese.hsendstring_japanese.h
    Koreankeymap_korean.h
    Latviankeymap_latvian.hsendstring_latvian.h
    Lithuanian (ĄŽERTY)keymap_lithuanian_azerty.hsendstring_lithuanian_azerty.h
    Lithuanian (QWERTY)keymap_lithuanian_qwerty.hsendstring_lithuanian_qwerty.h
    Norwegiankeymap_norwegian.hsendstring_norwegian.h
    Polishkeymap_polish.h
    Portuguesekeymap_portuguese.hsendstring_portuguese.h
    Portuguese (macOS, ISO)keymap_portuguese_mac_iso.hsendstring_portuguese_mac_iso.h
    Portuguese (Brazil)keymap_brazilian_abnt2.hsendstring_brazilian_abnt2.h
    Romaniankeymap_romanian.hsendstring_romanian.h
    Russiankeymap_russian.h
    Serbiankeymap_serbian.h
    Serbian (Latin)keymap_serbian_latin.hsendstring_serbian_latin.h
    Slovakkeymap_slovak.hsendstring_slovak.h
    Sloveniankeymap_slovenian.hsendstring_slovenian.h
    Spanishkeymap_spanish.hsendstring_spanish.h
    Spanish (Dvorak)keymap_spanish_dvorak.hsendstring_spanish_dvorak.h
    Spanish (Latin America)keymap_spanish_latin_america.hsendstring_spanish_latin_america.h
    Swedishkeymap_swedish.hsendstring_swedish.h
    Swedish (macOS, ANSI)keymap_swedish_mac_ansi.h
    Swedish (macOS, ISO)keymap_swedish_mac_iso.h
    Swedish Pro (macOS, ANSI)keymap_swedish_pro_mac_ansi.h
    Swedish Pro (macOS, ISO)keymap_swedish_pro_mac_iso.h
    Turkish (F)keymap_turkish_f.hsendstring_turkish_f.h
    Turkish (Q)keymap_turkish_q.hsendstring_turkish_q.h
    Ukrainiankeymap_ukrainian.h

    There are also a few which are not quite language-specific, but useful if you are not using a QWERTY layout:

    LayoutKeycodes HeaderSendstring LUT Header
    Colemakkeymap_colemak.hsendstring_colemak.h
    Dvorakkeymap_dvorak.hsendstring_dvorak.h
    Dvorak (French)keymap_dvorak_fr.hsendstring_dvorak_fr.h
    Dvorak (Programmer)keymap_dvorak_programmer.hsendstring_dvorak_programmer.h
    Normankeymap_norman.hsendstring_norman.h
    Ploverkeymap_plover.h
    Plover (Dvorak)keymap_plover_dvorak.h
    Workmankeymap_workman.hsendstring_workman.h
    Workman (ZXCVM)keymap_workman_zxcvm.hsendstring_workman_zxcvm.h
    - + \ No newline at end of file diff --git a/squeezing_avr.html b/squeezing_avr.html index 58d3ed156cd..b7305cc16e0 100644 --- a/squeezing_avr.html +++ b/squeezing_avr.html @@ -9,9 +9,9 @@ - + - + @@ -88,7 +88,7 @@ #undef ENABLE_RGB_MATRIX_MULTISPLASH #undef ENABLE_RGB_MATRIX_SOLID_SPLASH #undef ENABLE_RGB_MATRIX_SOLID_MULTISPLASH

    Final Thoughts

    If you've done all of this, and your firmware is still too large, then it is time to consider making the switch to ARM. There are a number of Pro Micro replacements with an ARM controller:

    There are other, non-Pro Micro compatible boards out there. The most popular being:

    - + \ No newline at end of file diff --git a/support.html b/support.html index 7e735f05905..dae9e3b3bf5 100644 --- a/support.html +++ b/support.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/support_deprecation_policy.html b/support_deprecation_policy.html index 948b4ed68d9..196d867301c 100644 --- a/support_deprecation_policy.html +++ b/support_deprecation_policy.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/syllabus.html b/syllabus.html index a9bab739265..f8eb1025662 100644 --- a/syllabus.html +++ b/syllabus.html @@ -9,9 +9,9 @@ - + - + @@ -19,7 +19,7 @@
    Skip to content
    - + \ No newline at end of file diff --git a/tap_hold.html b/tap_hold.html index 73df5d93c21..2e446c2a2ce 100644 --- a/tap_hold.html +++ b/tap_hold.html @@ -9,16 +9,16 @@ - + - + - + -
    Skip to content
    + \ No newline at end of file diff --git a/understanding_qmk.html b/understanding_qmk.html index 21ffd397d71..4a9bb71ba44 100644 --- a/understanding_qmk.html +++ b/understanding_qmk.html @@ -9,9 +9,9 @@ - + - + @@ -57,7 +57,7 @@ {0,0,0,0}, {0,0,0,0} }

    Comparing against our keymap we can see that the pressed key is KC_NUM. From here we dispatch to the process_record set of functions.

    Process Record

    The process_record() function itself is deceptively simple, but hidden within is a gateway to overriding functionality at various levels of QMK. The chain of events is listed below, using cluecard whenever we need to look at the keyboard/keymap level functions. Depending on options set in rules.mk or elsewhere, only a subset of the functions below will be included in final firmware.

    At any step during this chain of events a function (such as process_record_kb()) can return false to halt all further processing.

    After this is called, post_process_record() is called, which can be used to handle additional cleanup that needs to be run after the keycode is normally handled.

    - + \ No newline at end of file diff --git a/unit_testing.html b/unit_testing.html index bee5f89873c..14ab3c263da 100644 --- a/unit_testing.html +++ b/unit_testing.html @@ -9,9 +9,9 @@ - + - + @@ -25,7 +25,7 @@ );

    Similarly, KEYCODE_STRING_NAMES_KB may be defined to add names at the keyboard level.

    Tracing Variables

    Sometimes you might wonder why a variable gets changed and where, and this can be quite tricky to track down without having a debugger. It's of course possible to manually add print statements to track it, but you can also enable the variable trace feature. This works for both variables that are changed by the code, and when the variable is changed by some memory corruption.

    To take the feature into use add VARIABLE_TRACE=x to the end of you make command. x represents the number of variables you want to trace, which is usually 1.

    Then at a suitable place in the code, call ADD_TRACED_VARIABLE, to begin the tracing. For example to trace all the layer changes, you can do this

    c
    void matrix_init_user(void) {
       ADD_TRACED_VARIABLE("layer", &layer_state, sizeof(layer_state));
     }

    This will add a traced variable named "layer" (the name is just for your information), which tracks the memory location of layer_state. It tracks 4 bytes (the size of layer_state), so any modification to the variable will be reported. By default you can not specify a size bigger than 4, but you can change it by adding MAX_VARIABLE_TRACE_SIZE=x to the end of the make command line.

    In order to actually detect changes to the variables you should call VERIFY_TRACED_VARIABLES around the code that you think that modifies the variable. If a variable is modified it will tell you between which two VERIFY_TRACED_VARIABLES calls the modification happened. You can then add more calls to track it down further. I don't recommend spamming the codebase with calls. It's better to start with a few, and then keep adding them in a binary search fashion. You can also delete the ones you don't need, as each call need to store the file name and line number in the ROM, so you can run out of memory if you add too many calls.

    Also remember to delete all the tracing code once you have found the bug, as you wouldn't want to create a pull request with tracing code.

    - + \ No newline at end of file