From 248a7933fc19d9b6b9bc5d3850c2ddae184280e4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 Jul 2024 12:45:04 +0000 Subject: [PATCH] Deploy to GitHub pages --- .nojekyll | 1 + assets/highlight.css | 120 ++ assets/icons.css | 1043 ++++++++++++++++ assets/icons.png | Bin 0 -> 9615 bytes assets/icons@2x.png | Bin 0 -> 28144 bytes assets/main.js | 52 + assets/search.js | 1 + assets/style.css | 1414 ++++++++++++++++++++++ assets/widgets.png | Bin 0 -> 480 bytes assets/widgets@2x.png | Bin 0 -> 855 bytes enums/DivMode.html | 1 + enums/FloatRoundingMode.html | 13 + enums/mpfr_flags.html | 1 + enums/mpfr_free_cache_t.html | 1 + enums/mpfr_rnd_t.html | 15 + index.html | 165 +++ interfaces/CalculateOptions.html | 1 + interfaces/CalculateType.html | 1 + interfaces/CalculateTypeWithDestroy.html | 1 + interfaces/FloatOptions.html | 1 + interfaces/FloatType.html | 167 +++ interfaces/GMPFunctions.html | 973 +++++++++++++++ interfaces/GMPLib.html | 1 + interfaces/IntegerType.html | 85 ++ interfaces/RationalType.html | 39 + modules.html | 1 + 26 files changed, 4097 insertions(+) create mode 100644 .nojekyll create mode 100644 assets/highlight.css create mode 100644 assets/icons.css create mode 100644 assets/icons.png create mode 100644 assets/icons@2x.png create mode 100644 assets/main.js create mode 100644 assets/search.js create mode 100644 assets/style.css create mode 100644 assets/widgets.png create mode 100644 assets/widgets@2x.png create mode 100644 enums/DivMode.html create mode 100644 enums/FloatRoundingMode.html create mode 100644 enums/mpfr_flags.html create mode 100644 enums/mpfr_free_cache_t.html create mode 100644 enums/mpfr_rnd_t.html create mode 100644 index.html create mode 100644 interfaces/CalculateOptions.html create mode 100644 interfaces/CalculateType.html create mode 100644 interfaces/CalculateTypeWithDestroy.html create mode 100644 interfaces/FloatOptions.html create mode 100644 interfaces/FloatType.html create mode 100644 interfaces/GMPFunctions.html create mode 100644 interfaces/GMPLib.html create mode 100644 interfaces/IntegerType.html create mode 100644 interfaces/RationalType.html create mode 100644 modules.html diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e2ac661 --- /dev/null +++ b/.nojekyll @@ -0,0 +1 @@ +TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false. \ No newline at end of file diff --git a/assets/highlight.css b/assets/highlight.css new file mode 100644 index 0000000..dad239e --- /dev/null +++ b/assets/highlight.css @@ -0,0 +1,120 @@ +:root { + --light-hl-0: #001080; + --dark-hl-0: #9CDCFE; + --light-hl-1: #000000; + --dark-hl-1: #D4D4D4; + --light-hl-2: #008000; + --dark-hl-2: #6A9955; + --light-hl-3: #800000; + --dark-hl-3: #808080; + --light-hl-4: #800000; + --dark-hl-4: #569CD6; + --light-hl-5: #000000FF; + --dark-hl-5: #D4D4D4; + --light-hl-6: #FF0000; + --dark-hl-6: #9CDCFE; + --light-hl-7: #0000FF; + --dark-hl-7: #CE9178; + --light-hl-8: #0000FF; + --dark-hl-8: #569CD6; + --light-hl-9: #0070C1; + --dark-hl-9: #4FC1FF; + --light-hl-10: #795E26; + --dark-hl-10: #DCDCAA; + --light-hl-11: #A31515; + --dark-hl-11: #CE9178; + --light-hl-12: #098658; + --dark-hl-12: #B5CEA8; + --light-hl-13: #AF00DB; + --dark-hl-13: #C586C0; + --light-code-background: #F5F5F5; + --dark-code-background: #1E1E1E; +} + +@media (prefers-color-scheme: light) { :root { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --hl-11: var(--light-hl-11); + --hl-12: var(--light-hl-12); + --hl-13: var(--light-hl-13); + --code-background: var(--light-code-background); +} } + +@media (prefers-color-scheme: dark) { :root { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --hl-11: var(--dark-hl-11); + --hl-12: var(--dark-hl-12); + --hl-13: var(--dark-hl-13); + --code-background: var(--dark-code-background); +} } + +body.light { + --hl-0: var(--light-hl-0); + --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); + --hl-4: var(--light-hl-4); + --hl-5: var(--light-hl-5); + --hl-6: var(--light-hl-6); + --hl-7: var(--light-hl-7); + --hl-8: var(--light-hl-8); + --hl-9: var(--light-hl-9); + --hl-10: var(--light-hl-10); + --hl-11: var(--light-hl-11); + --hl-12: var(--light-hl-12); + --hl-13: var(--light-hl-13); + --code-background: var(--light-code-background); +} + +body.dark { + --hl-0: var(--dark-hl-0); + --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); + --hl-4: var(--dark-hl-4); + --hl-5: var(--dark-hl-5); + --hl-6: var(--dark-hl-6); + --hl-7: var(--dark-hl-7); + --hl-8: var(--dark-hl-8); + --hl-9: var(--dark-hl-9); + --hl-10: var(--dark-hl-10); + --hl-11: var(--dark-hl-11); + --hl-12: var(--dark-hl-12); + --hl-13: var(--dark-hl-13); + --code-background: var(--dark-code-background); +} + +.hl-0 { color: var(--hl-0); } +.hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } +.hl-4 { color: var(--hl-4); } +.hl-5 { color: var(--hl-5); } +.hl-6 { color: var(--hl-6); } +.hl-7 { color: var(--hl-7); } +.hl-8 { color: var(--hl-8); } +.hl-9 { color: var(--hl-9); } +.hl-10 { color: var(--hl-10); } +.hl-11 { color: var(--hl-11); } +.hl-12 { color: var(--hl-12); } +.hl-13 { color: var(--hl-13); } +pre, code { background: var(--code-background); } diff --git a/assets/icons.css b/assets/icons.css new file mode 100644 index 0000000..776a356 --- /dev/null +++ b/assets/icons.css @@ -0,0 +1,1043 @@ +.tsd-kind-icon { + display: block; + position: relative; + padding-left: 20px; + text-indent: -20px; +} +.tsd-kind-icon:before { + content: ""; + display: inline-block; + vertical-align: middle; + width: 17px; + height: 17px; + margin: 0 3px 2px 0; + background-image: url(./icons.png); +} +@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { + .tsd-kind-icon:before { + background-image: url(./icons@2x.png); + background-size: 238px 204px; + } +} + +.tsd-signature.tsd-kind-icon:before { + background-position: 0 -153px; +} + +.tsd-kind-object-literal > .tsd-kind-icon:before { + background-position: 0px -17px; +} +.tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -17px; +} +.tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -17px; +} + +.tsd-kind-class > .tsd-kind-icon:before { + background-position: 0px -34px; +} +.tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -34px; +} +.tsd-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -34px; +} + +.tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: 0px -51px; +} +.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -17px -51px; +} +.tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -51px; +} + +.tsd-kind-interface > .tsd-kind-icon:before { + background-position: 0px -68px; +} +.tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -68px; +} +.tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -68px; +} + +.tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: 0px -85px; +} +.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -17px -85px; +} +.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private + > .tsd-kind-icon:before { + background-position: -34px -85px; +} + +.tsd-kind-namespace > .tsd-kind-icon:before { + background-position: 0px -102px; +} +.tsd-kind-namespace.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -102px; +} +.tsd-kind-namespace.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -102px; +} + +.tsd-kind-module > .tsd-kind-icon:before { + background-position: 0px -102px; +} +.tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -102px; +} +.tsd-kind-module.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -102px; +} + +.tsd-kind-enum > .tsd-kind-icon:before { + background-position: 0px -119px; +} +.tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -119px; +} +.tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -119px; +} + +.tsd-kind-enum-member > .tsd-kind-icon:before { + background-position: 0px -136px; +} +.tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -136px; +} +.tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -136px; +} + +.tsd-kind-signature > .tsd-kind-icon:before { + background-position: 0px -153px; +} +.tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -153px; +} +.tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -153px; +} + +.tsd-kind-type-alias > .tsd-kind-icon:before { + background-position: 0px -170px; +} +.tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before { + background-position: -17px -170px; +} +.tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before { + background-position: -34px -170px; +} + +.tsd-kind-type-alias.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: 0px -187px; +} +.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -17px -187px; +} +.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private + > .tsd-kind-icon:before { + background-position: -34px -187px; +} + +.tsd-kind-variable > .tsd-kind-icon:before { + background-position: -136px -0px; +} +.tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -0px; +} +.tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -0px; +} +.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -0px; +} +.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -0px; +} +.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -0px; +} +.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -0px; +} + +.tsd-kind-property > .tsd-kind-icon:before { + background-position: -136px -0px; +} +.tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -0px; +} +.tsd-kind-property.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -0px; +} +.tsd-kind-property.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -0px; +} +.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -0px; +} +.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -0px; +} +.tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -0px; +} +.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -0px; +} + +.tsd-kind-get-signature > .tsd-kind-icon:before { + background-position: -136px -17px; +} +.tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -17px; +} +.tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -17px; +} +.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -17px; +} + +.tsd-kind-set-signature > .tsd-kind-icon:before { + background-position: -136px -34px; +} +.tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -34px; +} +.tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -34px; +} +.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -34px; +} + +.tsd-kind-accessor > .tsd-kind-icon:before { + background-position: -136px -51px; +} +.tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -51px; +} +.tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -51px; +} +.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -51px; +} + +.tsd-kind-function > .tsd-kind-icon:before { + background-position: -136px -68px; +} +.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -68px; +} +.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -68px; +} +.tsd-kind-function.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -68px; +} +.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -68px; +} +.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -68px; +} +.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -68px; +} + +.tsd-kind-method > .tsd-kind-icon:before { + background-position: -136px -68px; +} +.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -68px; +} +.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -68px; +} +.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -68px; +} +.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -187px -68px; +} +.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -68px; +} +.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -68px; +} + +.tsd-kind-call-signature > .tsd-kind-icon:before { + background-position: -136px -68px; +} +.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -68px; +} +.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -68px; +} +.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -68px; +} + +.tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: -136px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -153px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class + > .tsd-kind-icon:before { + background-position: -51px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum + > .tsd-kind-icon:before { + background-position: -170px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -85px; +} +.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -85px; +} + +.tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before { + background-position: -136px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -153px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class + > .tsd-kind-icon:before { + background-position: -51px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum + > .tsd-kind-icon:before { + background-position: -170px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -85px; +} +.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -85px; +} + +.tsd-kind-constructor > .tsd-kind-icon:before { + background-position: -136px -102px; +} +.tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -102px; +} +.tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -102px; +} +.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -102px; +} + +.tsd-kind-constructor-signature > .tsd-kind-icon:before { + background-position: -136px -102px; +} +.tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -102px; +} +.tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -102px; +} +.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -102px; +} + +.tsd-kind-index-signature > .tsd-kind-icon:before { + background-position: -136px -119px; +} +.tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -119px; +} +.tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -119px; +} +.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -119px; +} + +.tsd-kind-event > .tsd-kind-icon:before { + background-position: -136px -136px; +} +.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -136px; +} +.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -136px; +} +.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { + background-position: -68px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { + background-position: -85px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -136px; +} +.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -136px; +} +.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -136px; +} +.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -187px -136px; +} +.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -136px; +} +.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -136px; +} +.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -136px; +} + +.tsd-is-static > .tsd-kind-icon:before { + background-position: -136px -153px; +} +.tsd-is-static.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -153px; +} +.tsd-is-static.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -153px; +} +.tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { + background-position: -68px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { + background-position: -85px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -153px; +} +.tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -153px; +} +.tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -153px; +} +.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { + background-position: -187px -153px; +} +.tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -153px; +} +.tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before { + background-position: -204px -153px; +} +.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -153px; +} + +.tsd-is-static.tsd-kind-function > .tsd-kind-icon:before { + background-position: -136px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -170px; +} +.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -170px; +} + +.tsd-is-static.tsd-kind-method > .tsd-kind-icon:before { + background-position: -136px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -170px; +} +.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -170px; +} + +.tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before { + background-position: -136px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -153px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class + > .tsd-kind-icon:before { + background-position: -51px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum + > .tsd-kind-icon:before { + background-position: -170px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -170px; +} +.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -170px; +} + +.tsd-is-static.tsd-kind-event > .tsd-kind-icon:before { + background-position: -136px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { + background-position: -153px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { + background-position: -119px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { + background-position: -51px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -68px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -85px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -102px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { + background-position: -170px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected + > .tsd-kind-icon:before { + background-position: -187px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private + > .tsd-kind-icon:before { + background-position: -119px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface + > .tsd-kind-icon:before { + background-position: -204px -187px; +} +.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited + > .tsd-kind-icon:before { + background-position: -221px -187px; +} diff --git a/assets/icons.png b/assets/icons.png new file mode 100644 index 0000000000000000000000000000000000000000..3836d5fe46e48bbe186116855aae879c23935327 GIT binary patch literal 9615 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 NZmR35l_G4O{0}dcmS_L~ literal 0 HcmV?d00001 diff --git a/assets/icons@2x.png b/assets/icons@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..5a209e2f6d7f915cc9cb6fe7a4264c8be4db87b0 GIT binary patch literal 28144 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 Ce=Object.create;var ue=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,_e=Object.prototype.hasOwnProperty;var Me=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Oe(e))!_e.call(t,i)&&i!==r&&ue(t,i,{get:()=>e[i],enumerable:!(n=Pe(e,i))||n.enumerable});return t};var Fe=(t,e,r)=>(r=t!=null?Ce(Re(t)):{},De(e||!t||!t.__esModule?ue(r,"default",{value:t,enumerable:!0}):r,t));var pe=Me((de,fe)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var h=t.utils.clone(r)||{};h.position=[a,l],h.index=s.length,s.push(new t.Token(n.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ou?h+=2:a==u&&(r+=n[l+1]*i[h+1],l+=2,h+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}if(s.str.length==0&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),p=s.str.charAt(1),v;p in s.node.edges?v=s.node.edges[p]:(v=new t.TokenSet,s.node.edges[p]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof de=="object"?fe.exports=r():e.lunr=r()}(this,function(){return t})})()});var ce=[];function N(t,e){ce.push({selector:e,constructor:t})}var Y=class{constructor(){this.createComponents(document.body)}createComponents(e){ce.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n}),n.dataset.hasInstance=String(!0))})})}};var k=class{constructor(e){this.el=e.el}};var J=class{constructor(){this.listeners={}}addEventListener(e,r){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(r)}removeEventListener(e,r){if(!(e in this.listeners))return;let n=this.listeners[e];for(let i=0,s=n.length;i{let r=Date.now();return(...n)=>{r+e-Date.now()<0&&(t(...n),r=Date.now())}};var ie=class extends J{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",ne(()=>this.onScroll(),10)),window.addEventListener("resize",ne(()=>this.onResize(),10)),this.onResize(),this.onScroll()}triggerResize(){let r=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(r)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let r=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(r)}onScroll(){this.scrollTop=window.scrollY||0;let r=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(r),this.hideShowToolbar()}hideShowToolbar(){var n;let r=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0,r!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),(n=this.secondaryNav)==null||n.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop}},Q=ie;Q.instance=new ie;var X=class extends k{constructor(r){super(r);this.anchors=[];this.index=-1;Q.instance.addEventListener("resize",()=>this.onResize()),Q.instance.addEventListener("scroll",n=>this.onScroll(n)),this.createAnchors()}createAnchors(){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substr(0,r.indexOf("#"))),this.el.querySelectorAll("a").forEach(n=>{let i=n.href;if(i.indexOf("#")==-1||i.substr(0,r.length)!=r)return;let s=i.substr(i.indexOf("#")+1),o=document.querySelector("a.tsd-anchor[name="+s+"]"),a=n.parentNode;!o||!a||this.anchors.push({link:a,anchor:o,position:0})}),this.onResize()}onResize(){let r;for(let i=0,s=this.anchors.length;ii.position-s.position);let n=new CustomEvent("scroll",{detail:{scrollTop:Q.instance.scrollTop}});this.onScroll(n)}onScroll(r){let n=r.detail.scrollTop+5,i=this.anchors,s=i.length-1,o=this.index;for(;o>-1&&i[o].position>n;)o-=1;for(;o-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=o,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var he=(t,e=100)=>{let r;return(...n)=>{clearTimeout(r),r=setTimeout(()=>t(n),e)}};var ge=Fe(pe());function ye(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Ae(t,n,r,s)}function Ae(t,e,r,n){r.addEventListener("input",he(()=>{He(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?ze(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?me(e,-1):s.key==="ArrowDown"?me(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function Ve(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=ge.Index.load(window.searchData.index))}function He(t,e,r,n){if(Ve(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=i?n.index.search(`*${i}*`):[];for(let o=0,a=Math.min(10,s.length);o${ve(u.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=u.classes;let p=document.createElement("a");p.href=n.base+u.url,p.classList.add("tsd-kind-icon"),p.innerHTML=l,h.append(p),e.appendChild(h)}}function me(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function ze(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function ve(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(se(t.substring(s,o)),`${se(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(se(t.substring(s))),i.join("")}var Ne={"&":"&","<":"<",">":">","'":"'",'"':"""};function se(t){return t.replace(/[&<>"'"]/g,e=>Ne[e])}var oe=class{constructor(e,r){this.signature=e,this.description=r}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}},Z=class extends k{constructor(r){super(r);this.groups=[];this.index=-1;this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach(n=>{n.addEventListener("touchstart",i=>this.onClick(i)),n.addEventListener("click",i=>this.onClick(i))}),this.container.classList.add("active"),this.setIndex(0))}setIndex(r){if(r<0&&(r=0),r>this.groups.length-1&&(r=this.groups.length-1),this.index==r)return;let n=this.groups[r];if(this.index>-1){let i=this.groups[this.index];i.removeClass("current").addClass("fade-out"),n.addClass("current"),n.addClass("fade-in"),Q.instance.triggerResize(),setTimeout(()=>{i.removeClass("fade-out"),n.removeClass("fade-in")},300)}else n.addClass("current"),Q.instance.triggerResize();this.index=r}createGroups(){let r=this.el.children;if(r.length<2)return;this.container=this.el.nextElementSibling;let n=this.container.children;this.groups=[];for(let i=0;i{n.signature===r.currentTarget&&this.setIndex(i)})}};var C="mousedown",Le="mousemove",_="mouseup",K={x:0,y:0},xe=!1,ae=!1,je=!1,A=!1,Ee=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Ee?"is-mobile":"not-mobile");Ee&&"ontouchstart"in document.documentElement&&(je=!0,C="touchstart",Le="touchmove",_="touchend");document.addEventListener(C,t=>{ae=!0,A=!1;let e=C=="touchstart"?t.targetTouches[0]:t;K.y=e.pageY||0,K.x=e.pageX||0});document.addEventListener(Le,t=>{if(!!ae&&!A){let e=C=="touchstart"?t.targetTouches[0]:t,r=K.x-(e.pageX||0),n=K.y-(e.pageY||0);A=Math.sqrt(r*r+n*n)>10}});document.addEventListener(_,()=>{ae=!1});document.addEventListener("click",t=>{xe&&(t.preventDefault(),t.stopImmediatePropagation(),xe=!1)});var ee=class extends k{constructor(r){super(r);this.className=this.el.dataset.toggle||"",this.el.addEventListener(_,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(C,n=>this.onDocumentPointerDown(n)),document.addEventListener(_,n=>this.onDocumentPointerUp(n))}setActive(r){if(this.active==r)return;this.active=r,document.documentElement.classList.toggle("has-"+this.className,r),this.el.classList.toggle("active",r);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(r){A||(this.setActive(!0),r.preventDefault())}onDocumentPointerDown(r){if(this.active){if(r.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(r){if(!A&&this.active&&r.target.closest(".col-menu")){let n=r.target.closest("a");if(n){let i=window.location.href;i.indexOf("#")!=-1&&(i=i.substr(0,i.indexOf("#"))),n.href.substr(0,i.length)==i&&setTimeout(()=>this.setActive(!1),250)}}}};var te=class{constructor(e,r){this.key=e,this.value=r,this.defaultValue=r,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;let r=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(r,e)}},re=class extends te{initialize(){let r=document.querySelector("#tsd-filter-"+this.key);!r||(this.checkbox=r,this.checkbox.addEventListener("change",()=>{this.setValue(this.checkbox.checked)}))}handleValueChange(r,n){!this.checkbox||(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(r){return r=="true"}toLocalStorage(r){return r?"true":"false"}},le=class extends te{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);let r=document.querySelector("#tsd-filter-"+this.key);if(!r)return;this.select=r;let n=()=>{this.select.classList.add("active")},i=()=>{this.select.classList.remove("active")};this.select.addEventListener(C,n),this.select.addEventListener("mouseover",n),this.select.addEventListener("mouseleave",i),this.select.querySelectorAll("li").forEach(s=>{s.addEventListener(_,o=>{r.classList.remove("active"),this.setValue(o.target.dataset.value||"")})}),document.addEventListener(C,s=>{this.select.contains(s.target)||this.select.classList.remove("active")})}handleValueChange(r,n){this.select.querySelectorAll("li.selected").forEach(o=>{o.classList.remove("selected")});let i=this.select.querySelector('li[data-value="'+n+'"]'),s=this.select.querySelector(".tsd-select-label");i&&s&&(i.classList.add("selected"),s.textContent=i.textContent),document.documentElement.classList.remove("toggle-"+r),document.documentElement.classList.add("toggle-"+n)}fromLocalStorage(r){return r}toLocalStorage(r){return r}},j=class extends k{constructor(r){super(r);this.optionVisibility=new le("visibility","private"),this.optionInherited=new re("inherited",!0),this.optionExternals=new re("externals",!0)}static isSupported(){try{return typeof window.localStorage!="undefined"}catch{return!1}}};function we(t){let e=localStorage.getItem("tsd-theme")||"os";t.value=e,be(e),t.addEventListener("change",()=>{localStorage.setItem("tsd-theme",t.value),be(t.value)})}function be(t){switch(t){case"os":document.body.classList.remove("light","dark");break;case"light":document.body.classList.remove("dark"),document.body.classList.add("light");break;case"dark":document.body.classList.remove("light"),document.body.classList.add("dark");break}}ye();N(X,".menu-highlight");N(Z,".tsd-signatures");N(ee,"a[data-toggle]");j.isSupported()?N(j,"#tsd-filter"):document.documentElement.classList.add("no-filter");var Te=document.getElementById("theme");Te&&we(Te);var Be=new Y;Object.defineProperty(window,"app",{value:Be});})(); +/*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + */ +/*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + */ +/*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + */ +/** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + */ diff --git a/assets/search.js b/assets/search.js new file mode 100644 index 0000000..311e1af --- /dev/null +++ b/assets/search.js @@ -0,0 +1 @@ +window.searchData = JSON.parse("{\"kinds\":{\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"64\":\"Function\",\"256\":\"Interface\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"262144\":\"Accessor\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":64,\"name\":\"init\",\"url\":\"modules.html#init\",\"classes\":\"tsd-kind-function\"},{\"id\":1,\"kind\":256,\"name\":\"CalculateType\",\"url\":\"interfaces/CalculateType.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":2,\"kind\":1024,\"name\":\"Integer\",\"url\":\"interfaces/CalculateType.html#Integer\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalculateType\"},{\"id\":3,\"kind\":1024,\"name\":\"Rational\",\"url\":\"interfaces/CalculateType.html#Rational\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalculateType\"},{\"id\":4,\"kind\":1024,\"name\":\"Float\",\"url\":\"interfaces/CalculateType.html#Float\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"CalculateType\"},{\"id\":5,\"kind\":2048,\"name\":\"Pi\",\"url\":\"interfaces/CalculateType.html#Pi\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"CalculateType\"},{\"id\":6,\"kind\":2048,\"name\":\"EulerConstant\",\"url\":\"interfaces/CalculateType.html#EulerConstant\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"CalculateType\"},{\"id\":7,\"kind\":2048,\"name\":\"EulerNumber\",\"url\":\"interfaces/CalculateType.html#EulerNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"CalculateType\"},{\"id\":8,\"kind\":2048,\"name\":\"Log2\",\"url\":\"interfaces/CalculateType.html#Log2\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"CalculateType\"},{\"id\":9,\"kind\":2048,\"name\":\"Catalan\",\"url\":\"interfaces/CalculateType.html#Catalan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"CalculateType\"},{\"id\":10,\"kind\":256,\"name\":\"CalculateTypeWithDestroy\",\"url\":\"interfaces/CalculateTypeWithDestroy.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":11,\"kind\":2048,\"name\":\"destroy\",\"url\":\"interfaces/CalculateTypeWithDestroy.html#destroy\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"CalculateTypeWithDestroy\"},{\"id\":12,\"kind\":1024,\"name\":\"Integer\",\"url\":\"interfaces/CalculateTypeWithDestroy.html#Integer\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateTypeWithDestroy\"},{\"id\":13,\"kind\":1024,\"name\":\"Rational\",\"url\":\"interfaces/CalculateTypeWithDestroy.html#Rational\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateTypeWithDestroy\"},{\"id\":14,\"kind\":1024,\"name\":\"Float\",\"url\":\"interfaces/CalculateTypeWithDestroy.html#Float\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateTypeWithDestroy\"},{\"id\":15,\"kind\":2048,\"name\":\"Pi\",\"url\":\"interfaces/CalculateTypeWithDestroy.html#Pi\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateTypeWithDestroy\"},{\"id\":16,\"kind\":2048,\"name\":\"EulerConstant\",\"url\":\"interfaces/CalculateTypeWithDestroy.html#EulerConstant\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateTypeWithDestroy\"},{\"id\":17,\"kind\":2048,\"name\":\"EulerNumber\",\"url\":\"interfaces/CalculateTypeWithDestroy.html#EulerNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateTypeWithDestroy\"},{\"id\":18,\"kind\":2048,\"name\":\"Log2\",\"url\":\"interfaces/CalculateTypeWithDestroy.html#Log2\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateTypeWithDestroy\"},{\"id\":19,\"kind\":2048,\"name\":\"Catalan\",\"url\":\"interfaces/CalculateTypeWithDestroy.html#Catalan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateTypeWithDestroy\"},{\"id\":20,\"kind\":256,\"name\":\"GMPLib\",\"url\":\"interfaces/GMPLib.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":21,\"kind\":1024,\"name\":\"binding\",\"url\":\"interfaces/GMPLib.html#binding\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"GMPLib\"},{\"id\":22,\"kind\":2048,\"name\":\"calculate\",\"url\":\"interfaces/GMPLib.html#calculate\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"GMPLib\"},{\"id\":23,\"kind\":2048,\"name\":\"getContext\",\"url\":\"interfaces/GMPLib.html#getContext\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"GMPLib\"},{\"id\":24,\"kind\":2048,\"name\":\"reset\",\"url\":\"interfaces/GMPLib.html#reset\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface\",\"parent\":\"GMPLib\"},{\"id\":25,\"kind\":256,\"name\":\"CalculateOptions\",\"url\":\"interfaces/CalculateOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":26,\"kind\":1024,\"name\":\"precisionBits\",\"url\":\"interfaces/CalculateOptions.html#precisionBits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateOptions\"},{\"id\":27,\"kind\":1024,\"name\":\"roundingMode\",\"url\":\"interfaces/CalculateOptions.html#roundingMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateOptions\"},{\"id\":28,\"kind\":1024,\"name\":\"radix\",\"url\":\"interfaces/CalculateOptions.html#radix\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"CalculateOptions\"},{\"id\":29,\"kind\":64,\"name\":\"precisionToBits\",\"url\":\"modules.html#precisionToBits\",\"classes\":\"tsd-kind-function\"},{\"id\":30,\"kind\":8,\"name\":\"DivMode\",\"url\":\"enums/DivMode.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":31,\"kind\":16,\"name\":\"CEIL\",\"url\":\"enums/DivMode.html#CEIL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"DivMode\"},{\"id\":32,\"kind\":16,\"name\":\"FLOOR\",\"url\":\"enums/DivMode.html#FLOOR\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"DivMode\"},{\"id\":33,\"kind\":16,\"name\":\"TRUNCATE\",\"url\":\"enums/DivMode.html#TRUNCATE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"DivMode\"},{\"id\":34,\"kind\":8,\"name\":\"FloatRoundingMode\",\"url\":\"enums/FloatRoundingMode.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":35,\"kind\":16,\"name\":\"ROUND_NEAREST\",\"url\":\"enums/FloatRoundingMode.html#ROUND_NEAREST\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"FloatRoundingMode\"},{\"id\":36,\"kind\":16,\"name\":\"ROUND_TO_ZERO\",\"url\":\"enums/FloatRoundingMode.html#ROUND_TO_ZERO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"FloatRoundingMode\"},{\"id\":37,\"kind\":16,\"name\":\"ROUND_UP\",\"url\":\"enums/FloatRoundingMode.html#ROUND_UP\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"FloatRoundingMode\"},{\"id\":38,\"kind\":16,\"name\":\"ROUND_DOWN\",\"url\":\"enums/FloatRoundingMode.html#ROUND_DOWN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"FloatRoundingMode\"},{\"id\":39,\"kind\":16,\"name\":\"ROUND_FROM_ZERO\",\"url\":\"enums/FloatRoundingMode.html#ROUND_FROM_ZERO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"FloatRoundingMode\"},{\"id\":40,\"kind\":256,\"name\":\"GMPFunctions\",\"url\":\"interfaces/GMPFunctions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":41,\"kind\":1024,\"name\":\"reset\",\"url\":\"interfaces/GMPFunctions.html#reset\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":42,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-481\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":43,\"kind\":1024,\"name\":\"malloc\",\"url\":\"interfaces/GMPFunctions.html#malloc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":44,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-11\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":45,\"kind\":1024,\"name\":\"malloc_cstr\",\"url\":\"interfaces/GMPFunctions.html#malloc_cstr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":46,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-12\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":47,\"kind\":1024,\"name\":\"free\",\"url\":\"interfaces/GMPFunctions.html#free\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":48,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":49,\"kind\":262144,\"name\":\"mem\",\"url\":\"interfaces/GMPFunctions.html#mem\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":50,\"kind\":262144,\"name\":\"memView\",\"url\":\"interfaces/GMPFunctions.html#memView\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":51,\"kind\":1024,\"name\":\"gmp_randinit_default\",\"url\":\"interfaces/GMPFunctions.html#gmp_randinit_default\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":52,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":53,\"kind\":1024,\"name\":\"gmp_randinit_lc_2exp\",\"url\":\"interfaces/GMPFunctions.html#gmp_randinit_lc_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":54,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":55,\"kind\":1024,\"name\":\"gmp_randinit_lc_2exp_size\",\"url\":\"interfaces/GMPFunctions.html#gmp_randinit_lc_2exp_size\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":56,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":57,\"kind\":1024,\"name\":\"gmp_randinit_mt\",\"url\":\"interfaces/GMPFunctions.html#gmp_randinit_mt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":58,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":59,\"kind\":1024,\"name\":\"gmp_randinit_set\",\"url\":\"interfaces/GMPFunctions.html#gmp_randinit_set\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":60,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":61,\"kind\":1024,\"name\":\"gmp_randseed\",\"url\":\"interfaces/GMPFunctions.html#gmp_randseed\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":62,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":63,\"kind\":1024,\"name\":\"gmp_randseed_ui\",\"url\":\"interfaces/GMPFunctions.html#gmp_randseed_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":64,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":65,\"kind\":1024,\"name\":\"gmp_randclear\",\"url\":\"interfaces/GMPFunctions.html#gmp_randclear\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":66,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":67,\"kind\":1024,\"name\":\"gmp_urandomb_ui\",\"url\":\"interfaces/GMPFunctions.html#gmp_urandomb_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":68,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":69,\"kind\":1024,\"name\":\"gmp_urandomm_ui\",\"url\":\"interfaces/GMPFunctions.html#gmp_urandomm_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":70,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-10\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":71,\"kind\":1024,\"name\":\"mp_bits_per_limb\",\"url\":\"interfaces/GMPFunctions.html#mp_bits_per_limb\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":72,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-13\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":73,\"kind\":1024,\"name\":\"mpz_t\",\"url\":\"interfaces/GMPFunctions.html#mpz_t\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":74,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-462\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":75,\"kind\":1024,\"name\":\"mpz_t_free\",\"url\":\"interfaces/GMPFunctions.html#mpz_t_free\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":76,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-463\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":77,\"kind\":1024,\"name\":\"mpz_t_frees\",\"url\":\"interfaces/GMPFunctions.html#mpz_t_frees\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":78,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-464\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":79,\"kind\":1024,\"name\":\"mpz_abs\",\"url\":\"interfaces/GMPFunctions.html#mpz_abs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":80,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-323\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":81,\"kind\":1024,\"name\":\"mpz_add\",\"url\":\"interfaces/GMPFunctions.html#mpz_add\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":82,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-324\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":83,\"kind\":1024,\"name\":\"mpz_add_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_add_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":84,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-325\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":85,\"kind\":1024,\"name\":\"mpz_addmul\",\"url\":\"interfaces/GMPFunctions.html#mpz_addmul\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":86,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-326\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":87,\"kind\":1024,\"name\":\"mpz_addmul_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_addmul_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":88,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-327\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":89,\"kind\":1024,\"name\":\"mpz_and\",\"url\":\"interfaces/GMPFunctions.html#mpz_and\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":90,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-328\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":91,\"kind\":1024,\"name\":\"mpz_bin_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_bin_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":92,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-329\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":93,\"kind\":1024,\"name\":\"mpz_bin_uiui\",\"url\":\"interfaces/GMPFunctions.html#mpz_bin_uiui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":94,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-330\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":95,\"kind\":1024,\"name\":\"mpz_cdiv_q\",\"url\":\"interfaces/GMPFunctions.html#mpz_cdiv_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":96,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-331\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":97,\"kind\":1024,\"name\":\"mpz_cdiv_q_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpz_cdiv_q_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":98,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-332\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":99,\"kind\":1024,\"name\":\"mpz_cdiv_q_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_cdiv_q_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":100,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-333\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":101,\"kind\":1024,\"name\":\"mpz_cdiv_qr\",\"url\":\"interfaces/GMPFunctions.html#mpz_cdiv_qr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":102,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-334\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":103,\"kind\":1024,\"name\":\"mpz_cdiv_qr_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_cdiv_qr_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":104,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-335\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":105,\"kind\":1024,\"name\":\"mpz_cdiv_r\",\"url\":\"interfaces/GMPFunctions.html#mpz_cdiv_r\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":106,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-336\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":107,\"kind\":1024,\"name\":\"mpz_cdiv_r_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpz_cdiv_r_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":108,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-337\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":109,\"kind\":1024,\"name\":\"mpz_cdiv_r_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_cdiv_r_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":110,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-338\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":111,\"kind\":1024,\"name\":\"mpz_cdiv_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_cdiv_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":112,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-339\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":113,\"kind\":1024,\"name\":\"mpz_clear\",\"url\":\"interfaces/GMPFunctions.html#mpz_clear\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":114,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-340\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":115,\"kind\":1024,\"name\":\"mpz_clears\",\"url\":\"interfaces/GMPFunctions.html#mpz_clears\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":116,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-341\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":117,\"kind\":1024,\"name\":\"mpz_clrbit\",\"url\":\"interfaces/GMPFunctions.html#mpz_clrbit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":118,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-342\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":119,\"kind\":1024,\"name\":\"mpz_cmp\",\"url\":\"interfaces/GMPFunctions.html#mpz_cmp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":120,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-343\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":121,\"kind\":1024,\"name\":\"mpz_cmp_d\",\"url\":\"interfaces/GMPFunctions.html#mpz_cmp_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":122,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-344\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":123,\"kind\":1024,\"name\":\"mpz_cmp_si\",\"url\":\"interfaces/GMPFunctions.html#mpz_cmp_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":124,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-345\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":125,\"kind\":1024,\"name\":\"mpz_cmp_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_cmp_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":126,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-346\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":127,\"kind\":1024,\"name\":\"mpz_cmpabs\",\"url\":\"interfaces/GMPFunctions.html#mpz_cmpabs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":128,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-347\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":129,\"kind\":1024,\"name\":\"mpz_cmpabs_d\",\"url\":\"interfaces/GMPFunctions.html#mpz_cmpabs_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":130,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-348\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":131,\"kind\":1024,\"name\":\"mpz_cmpabs_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_cmpabs_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":132,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-349\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":133,\"kind\":1024,\"name\":\"mpz_com\",\"url\":\"interfaces/GMPFunctions.html#mpz_com\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":134,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-350\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":135,\"kind\":1024,\"name\":\"mpz_combit\",\"url\":\"interfaces/GMPFunctions.html#mpz_combit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":136,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-351\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":137,\"kind\":1024,\"name\":\"mpz_congruent_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_congruent_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":138,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-353\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":139,\"kind\":1024,\"name\":\"mpz_congruent_2exp_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_congruent_2exp_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":140,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-352\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":141,\"kind\":1024,\"name\":\"mpz_congruent_ui_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_congruent_ui_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":142,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-354\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":143,\"kind\":1024,\"name\":\"mpz_divexact\",\"url\":\"interfaces/GMPFunctions.html#mpz_divexact\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":144,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-355\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":145,\"kind\":1024,\"name\":\"mpz_divexact_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_divexact_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":146,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-356\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":147,\"kind\":1024,\"name\":\"mpz_divisible_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_divisible_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":148,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-358\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":149,\"kind\":1024,\"name\":\"mpz_divisible_ui_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_divisible_ui_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":150,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-359\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":151,\"kind\":1024,\"name\":\"mpz_divisible_2exp_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_divisible_2exp_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":152,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-357\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":153,\"kind\":1024,\"name\":\"mpz_even_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_even_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":154,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-360\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":155,\"kind\":1024,\"name\":\"mpz_export\",\"url\":\"interfaces/GMPFunctions.html#mpz_export\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":156,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-361\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":157,\"kind\":1024,\"name\":\"mpz_fac_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_fac_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":158,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-362\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":159,\"kind\":1024,\"name\":\"mpz_2fac_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_2fac_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":160,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-322\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":161,\"kind\":1024,\"name\":\"mpz_mfac_uiui\",\"url\":\"interfaces/GMPFunctions.html#mpz_mfac_uiui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":162,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-414\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":163,\"kind\":1024,\"name\":\"mpz_primorial_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_primorial_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":164,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-432\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":165,\"kind\":1024,\"name\":\"mpz_fdiv_q\",\"url\":\"interfaces/GMPFunctions.html#mpz_fdiv_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":166,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-363\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":167,\"kind\":1024,\"name\":\"mpz_fdiv_q_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpz_fdiv_q_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":168,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-364\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":169,\"kind\":1024,\"name\":\"mpz_fdiv_q_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_fdiv_q_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":170,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-365\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":171,\"kind\":1024,\"name\":\"mpz_fdiv_qr\",\"url\":\"interfaces/GMPFunctions.html#mpz_fdiv_qr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":172,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-366\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":173,\"kind\":1024,\"name\":\"mpz_fdiv_qr_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_fdiv_qr_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":174,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-367\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":175,\"kind\":1024,\"name\":\"mpz_fdiv_r\",\"url\":\"interfaces/GMPFunctions.html#mpz_fdiv_r\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":176,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-368\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":177,\"kind\":1024,\"name\":\"mpz_fdiv_r_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpz_fdiv_r_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":178,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-369\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":179,\"kind\":1024,\"name\":\"mpz_fdiv_r_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_fdiv_r_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":180,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-370\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":181,\"kind\":1024,\"name\":\"mpz_fdiv_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_fdiv_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":182,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-371\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":183,\"kind\":1024,\"name\":\"mpz_fib_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_fib_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":184,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-373\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":185,\"kind\":1024,\"name\":\"mpz_fib2_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_fib2_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":186,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-372\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":187,\"kind\":1024,\"name\":\"mpz_fits_sint_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_fits_sint_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":188,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-374\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":189,\"kind\":1024,\"name\":\"mpz_fits_slong_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_fits_slong_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":190,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-375\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":191,\"kind\":1024,\"name\":\"mpz_fits_sshort_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_fits_sshort_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":192,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-376\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":193,\"kind\":1024,\"name\":\"mpz_fits_uint_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_fits_uint_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":194,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-377\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":195,\"kind\":1024,\"name\":\"mpz_fits_ulong_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_fits_ulong_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":196,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-378\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":197,\"kind\":1024,\"name\":\"mpz_fits_ushort_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_fits_ushort_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":198,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-379\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":199,\"kind\":1024,\"name\":\"mpz_gcd\",\"url\":\"interfaces/GMPFunctions.html#mpz_gcd\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":200,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-380\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":201,\"kind\":1024,\"name\":\"mpz_gcd_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_gcd_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":202,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-381\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":203,\"kind\":1024,\"name\":\"mpz_gcdext\",\"url\":\"interfaces/GMPFunctions.html#mpz_gcdext\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":204,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-382\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":205,\"kind\":1024,\"name\":\"mpz_get_d\",\"url\":\"interfaces/GMPFunctions.html#mpz_get_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":206,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-383\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":207,\"kind\":1024,\"name\":\"mpz_get_d_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpz_get_d_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":208,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-384\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":209,\"kind\":1024,\"name\":\"mpz_get_si\",\"url\":\"interfaces/GMPFunctions.html#mpz_get_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":210,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-385\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":211,\"kind\":1024,\"name\":\"mpz_get_str\",\"url\":\"interfaces/GMPFunctions.html#mpz_get_str\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":212,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-386\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":213,\"kind\":1024,\"name\":\"mpz_get_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_get_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":214,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-387\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":215,\"kind\":1024,\"name\":\"mpz_getlimbn\",\"url\":\"interfaces/GMPFunctions.html#mpz_getlimbn\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":216,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-388\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":217,\"kind\":1024,\"name\":\"mpz_hamdist\",\"url\":\"interfaces/GMPFunctions.html#mpz_hamdist\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":218,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-389\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":219,\"kind\":1024,\"name\":\"mpz_import\",\"url\":\"interfaces/GMPFunctions.html#mpz_import\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":220,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-390\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":221,\"kind\":1024,\"name\":\"mpz_init\",\"url\":\"interfaces/GMPFunctions.html#mpz_init\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":222,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-391\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":223,\"kind\":1024,\"name\":\"mpz_inits\",\"url\":\"interfaces/GMPFunctions.html#mpz_inits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":224,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-398\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":225,\"kind\":1024,\"name\":\"mpz_init2\",\"url\":\"interfaces/GMPFunctions.html#mpz_init2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":226,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-392\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":227,\"kind\":1024,\"name\":\"mpz_init_set\",\"url\":\"interfaces/GMPFunctions.html#mpz_init_set\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":228,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-393\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":229,\"kind\":1024,\"name\":\"mpz_init_set_d\",\"url\":\"interfaces/GMPFunctions.html#mpz_init_set_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":230,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-394\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":231,\"kind\":1024,\"name\":\"mpz_init_set_si\",\"url\":\"interfaces/GMPFunctions.html#mpz_init_set_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":232,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-395\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":233,\"kind\":1024,\"name\":\"mpz_init_set_str\",\"url\":\"interfaces/GMPFunctions.html#mpz_init_set_str\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":234,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-396\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":235,\"kind\":1024,\"name\":\"mpz_init_set_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_init_set_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":236,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-397\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":237,\"kind\":1024,\"name\":\"mpz_invert\",\"url\":\"interfaces/GMPFunctions.html#mpz_invert\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":238,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-399\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":239,\"kind\":1024,\"name\":\"mpz_ior\",\"url\":\"interfaces/GMPFunctions.html#mpz_ior\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":240,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-400\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":241,\"kind\":1024,\"name\":\"mpz_jacobi\",\"url\":\"interfaces/GMPFunctions.html#mpz_jacobi\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":242,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-401\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":243,\"kind\":1024,\"name\":\"mpz_kronecker\",\"url\":\"interfaces/GMPFunctions.html#mpz_kronecker\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":244,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-402\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":245,\"kind\":1024,\"name\":\"mpz_kronecker_si\",\"url\":\"interfaces/GMPFunctions.html#mpz_kronecker_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":246,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-403\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":247,\"kind\":1024,\"name\":\"mpz_kronecker_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_kronecker_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":248,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-404\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":249,\"kind\":1024,\"name\":\"mpz_si_kronecker\",\"url\":\"interfaces/GMPFunctions.html#mpz_si_kronecker\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":250,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-452\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":251,\"kind\":1024,\"name\":\"mpz_ui_kronecker\",\"url\":\"interfaces/GMPFunctions.html#mpz_ui_kronecker\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":252,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-475\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":253,\"kind\":1024,\"name\":\"mpz_lcm\",\"url\":\"interfaces/GMPFunctions.html#mpz_lcm\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":254,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-405\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":255,\"kind\":1024,\"name\":\"mpz_lcm_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_lcm_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":256,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-406\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":257,\"kind\":1024,\"name\":\"mpz_legendre\",\"url\":\"interfaces/GMPFunctions.html#mpz_legendre\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":258,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-407\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":259,\"kind\":1024,\"name\":\"mpz_lucnum_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_lucnum_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":260,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-413\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":261,\"kind\":1024,\"name\":\"mpz_lucnum2_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_lucnum2_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":262,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-412\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":263,\"kind\":1024,\"name\":\"mpz_millerrabin\",\"url\":\"interfaces/GMPFunctions.html#mpz_millerrabin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":264,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-415\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":265,\"kind\":1024,\"name\":\"mpz_mod\",\"url\":\"interfaces/GMPFunctions.html#mpz_mod\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":266,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-416\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":267,\"kind\":1024,\"name\":\"mpz_mod_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_mod_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":268,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-417\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":269,\"kind\":1024,\"name\":\"mpz_mul\",\"url\":\"interfaces/GMPFunctions.html#mpz_mul\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":270,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-418\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":271,\"kind\":1024,\"name\":\"mpz_mul_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpz_mul_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":272,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-419\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":273,\"kind\":1024,\"name\":\"mpz_mul_si\",\"url\":\"interfaces/GMPFunctions.html#mpz_mul_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":274,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-420\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":275,\"kind\":1024,\"name\":\"mpz_mul_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_mul_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":276,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-421\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":277,\"kind\":1024,\"name\":\"mpz_neg\",\"url\":\"interfaces/GMPFunctions.html#mpz_neg\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":278,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-422\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":279,\"kind\":1024,\"name\":\"mpz_nextprime\",\"url\":\"interfaces/GMPFunctions.html#mpz_nextprime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":280,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-423\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":281,\"kind\":1024,\"name\":\"mpz_odd_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_odd_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":282,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-424\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":283,\"kind\":1024,\"name\":\"mpz_perfect_power_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_perfect_power_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":284,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-425\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":285,\"kind\":1024,\"name\":\"mpz_perfect_square_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_perfect_square_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":286,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-426\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":287,\"kind\":1024,\"name\":\"mpz_popcount\",\"url\":\"interfaces/GMPFunctions.html#mpz_popcount\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":288,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-427\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":289,\"kind\":1024,\"name\":\"mpz_pow_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_pow_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":290,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-428\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":291,\"kind\":1024,\"name\":\"mpz_powm\",\"url\":\"interfaces/GMPFunctions.html#mpz_powm\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":292,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-429\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":293,\"kind\":1024,\"name\":\"mpz_powm_sec\",\"url\":\"interfaces/GMPFunctions.html#mpz_powm_sec\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":294,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-430\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":295,\"kind\":1024,\"name\":\"mpz_powm_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_powm_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":296,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-431\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":297,\"kind\":1024,\"name\":\"mpz_probab_prime_p\",\"url\":\"interfaces/GMPFunctions.html#mpz_probab_prime_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":298,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-433\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":299,\"kind\":1024,\"name\":\"mpz_random\",\"url\":\"interfaces/GMPFunctions.html#mpz_random\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":300,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-434\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":301,\"kind\":1024,\"name\":\"mpz_random2\",\"url\":\"interfaces/GMPFunctions.html#mpz_random2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":302,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-435\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":303,\"kind\":1024,\"name\":\"mpz_realloc2\",\"url\":\"interfaces/GMPFunctions.html#mpz_realloc2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":304,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-436\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":305,\"kind\":1024,\"name\":\"mpz_remove\",\"url\":\"interfaces/GMPFunctions.html#mpz_remove\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":306,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-437\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":307,\"kind\":1024,\"name\":\"mpz_root\",\"url\":\"interfaces/GMPFunctions.html#mpz_root\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":308,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-439\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":309,\"kind\":1024,\"name\":\"mpz_rootrem\",\"url\":\"interfaces/GMPFunctions.html#mpz_rootrem\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":310,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-440\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":311,\"kind\":1024,\"name\":\"mpz_rrandomb\",\"url\":\"interfaces/GMPFunctions.html#mpz_rrandomb\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":312,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-441\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":313,\"kind\":1024,\"name\":\"mpz_scan0\",\"url\":\"interfaces/GMPFunctions.html#mpz_scan0\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":314,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-442\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":315,\"kind\":1024,\"name\":\"mpz_scan1\",\"url\":\"interfaces/GMPFunctions.html#mpz_scan1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":316,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-443\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":317,\"kind\":1024,\"name\":\"mpz_set\",\"url\":\"interfaces/GMPFunctions.html#mpz_set\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":318,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-444\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":319,\"kind\":1024,\"name\":\"mpz_set_d\",\"url\":\"interfaces/GMPFunctions.html#mpz_set_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":320,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-445\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":321,\"kind\":1024,\"name\":\"mpz_set_q\",\"url\":\"interfaces/GMPFunctions.html#mpz_set_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":322,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-446\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":323,\"kind\":1024,\"name\":\"mpz_set_si\",\"url\":\"interfaces/GMPFunctions.html#mpz_set_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":324,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-447\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":325,\"kind\":1024,\"name\":\"mpz_set_str\",\"url\":\"interfaces/GMPFunctions.html#mpz_set_str\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":326,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-448\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":327,\"kind\":1024,\"name\":\"mpz_set_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_set_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":328,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-449\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":329,\"kind\":1024,\"name\":\"mpz_setbit\",\"url\":\"interfaces/GMPFunctions.html#mpz_setbit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":330,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-450\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":331,\"kind\":1024,\"name\":\"mpz_sgn\",\"url\":\"interfaces/GMPFunctions.html#mpz_sgn\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":332,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-451\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":333,\"kind\":1024,\"name\":\"mpz_size\",\"url\":\"interfaces/GMPFunctions.html#mpz_size\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":334,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-453\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":335,\"kind\":1024,\"name\":\"mpz_sizeinbase\",\"url\":\"interfaces/GMPFunctions.html#mpz_sizeinbase\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":336,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-454\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":337,\"kind\":1024,\"name\":\"mpz_sqrt\",\"url\":\"interfaces/GMPFunctions.html#mpz_sqrt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":338,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-455\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":339,\"kind\":1024,\"name\":\"mpz_sqrtrem\",\"url\":\"interfaces/GMPFunctions.html#mpz_sqrtrem\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":340,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-456\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":341,\"kind\":1024,\"name\":\"mpz_sub\",\"url\":\"interfaces/GMPFunctions.html#mpz_sub\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":342,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-457\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":343,\"kind\":1024,\"name\":\"mpz_sub_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_sub_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":344,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-458\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":345,\"kind\":1024,\"name\":\"mpz_ui_sub\",\"url\":\"interfaces/GMPFunctions.html#mpz_ui_sub\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":346,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-477\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":347,\"kind\":1024,\"name\":\"mpz_submul\",\"url\":\"interfaces/GMPFunctions.html#mpz_submul\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":348,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-459\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":349,\"kind\":1024,\"name\":\"mpz_submul_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_submul_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":350,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-460\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":351,\"kind\":1024,\"name\":\"mpz_swap\",\"url\":\"interfaces/GMPFunctions.html#mpz_swap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":352,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-461\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":353,\"kind\":1024,\"name\":\"mpz_tdiv_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_tdiv_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":354,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-473\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":355,\"kind\":1024,\"name\":\"mpz_tdiv_q\",\"url\":\"interfaces/GMPFunctions.html#mpz_tdiv_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":356,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-465\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":357,\"kind\":1024,\"name\":\"mpz_tdiv_q_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpz_tdiv_q_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":358,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-466\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":359,\"kind\":1024,\"name\":\"mpz_tdiv_q_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_tdiv_q_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":360,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-467\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":361,\"kind\":1024,\"name\":\"mpz_tdiv_qr\",\"url\":\"interfaces/GMPFunctions.html#mpz_tdiv_qr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":362,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-468\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":363,\"kind\":1024,\"name\":\"mpz_tdiv_qr_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_tdiv_qr_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":364,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-469\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":365,\"kind\":1024,\"name\":\"mpz_tdiv_r\",\"url\":\"interfaces/GMPFunctions.html#mpz_tdiv_r\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":366,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-470\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":367,\"kind\":1024,\"name\":\"mpz_tdiv_r_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpz_tdiv_r_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":368,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-471\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":369,\"kind\":1024,\"name\":\"mpz_tdiv_r_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_tdiv_r_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":370,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-472\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":371,\"kind\":1024,\"name\":\"mpz_tstbit\",\"url\":\"interfaces/GMPFunctions.html#mpz_tstbit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":372,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-474\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":373,\"kind\":1024,\"name\":\"mpz_ui_pow_ui\",\"url\":\"interfaces/GMPFunctions.html#mpz_ui_pow_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":374,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-476\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":375,\"kind\":1024,\"name\":\"mpz_urandomb\",\"url\":\"interfaces/GMPFunctions.html#mpz_urandomb\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":376,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-478\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":377,\"kind\":1024,\"name\":\"mpz_urandomm\",\"url\":\"interfaces/GMPFunctions.html#mpz_urandomm\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":378,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-479\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":379,\"kind\":1024,\"name\":\"mpz_xor\",\"url\":\"interfaces/GMPFunctions.html#mpz_xor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":380,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-480\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":381,\"kind\":1024,\"name\":\"mpz_limbs_read\",\"url\":\"interfaces/GMPFunctions.html#mpz_limbs_read\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":382,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-410\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":383,\"kind\":1024,\"name\":\"mpz_limbs_write\",\"url\":\"interfaces/GMPFunctions.html#mpz_limbs_write\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":384,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-411\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":385,\"kind\":1024,\"name\":\"mpz_limbs_modify\",\"url\":\"interfaces/GMPFunctions.html#mpz_limbs_modify\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":386,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-409\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":387,\"kind\":1024,\"name\":\"mpz_limbs_finish\",\"url\":\"interfaces/GMPFunctions.html#mpz_limbs_finish\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":388,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-408\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":389,\"kind\":1024,\"name\":\"mpz_roinit_n\",\"url\":\"interfaces/GMPFunctions.html#mpz_roinit_n\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":390,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-438\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":391,\"kind\":1024,\"name\":\"mpq_t\",\"url\":\"interfaces/GMPFunctions.html#mpq_t\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":392,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-319\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":393,\"kind\":1024,\"name\":\"mpq_t_free\",\"url\":\"interfaces/GMPFunctions.html#mpq_t_free\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":394,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-320\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":395,\"kind\":1024,\"name\":\"mpq_t_frees\",\"url\":\"interfaces/GMPFunctions.html#mpq_t_frees\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":396,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-321\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":397,\"kind\":1024,\"name\":\"mpq_abs\",\"url\":\"interfaces/GMPFunctions.html#mpq_abs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":398,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-284\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":399,\"kind\":1024,\"name\":\"mpq_add\",\"url\":\"interfaces/GMPFunctions.html#mpq_add\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":400,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-285\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":401,\"kind\":1024,\"name\":\"mpq_canonicalize\",\"url\":\"interfaces/GMPFunctions.html#mpq_canonicalize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":402,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-286\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":403,\"kind\":1024,\"name\":\"mpq_clear\",\"url\":\"interfaces/GMPFunctions.html#mpq_clear\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":404,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-287\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":405,\"kind\":1024,\"name\":\"mpq_clears\",\"url\":\"interfaces/GMPFunctions.html#mpq_clears\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":406,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-288\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":407,\"kind\":1024,\"name\":\"mpq_cmp\",\"url\":\"interfaces/GMPFunctions.html#mpq_cmp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":408,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-289\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":409,\"kind\":1024,\"name\":\"mpq_cmp_si\",\"url\":\"interfaces/GMPFunctions.html#mpq_cmp_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":410,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-290\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":411,\"kind\":1024,\"name\":\"mpq_cmp_ui\",\"url\":\"interfaces/GMPFunctions.html#mpq_cmp_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":412,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-291\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":413,\"kind\":1024,\"name\":\"mpq_cmp_z\",\"url\":\"interfaces/GMPFunctions.html#mpq_cmp_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":414,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-292\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":415,\"kind\":1024,\"name\":\"mpq_div\",\"url\":\"interfaces/GMPFunctions.html#mpq_div\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":416,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-294\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":417,\"kind\":1024,\"name\":\"mpq_div_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpq_div_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":418,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-295\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":419,\"kind\":1024,\"name\":\"mpq_equal\",\"url\":\"interfaces/GMPFunctions.html#mpq_equal\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":420,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-296\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":421,\"kind\":1024,\"name\":\"mpq_get_num\",\"url\":\"interfaces/GMPFunctions.html#mpq_get_num\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":422,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-299\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":423,\"kind\":1024,\"name\":\"mpq_get_den\",\"url\":\"interfaces/GMPFunctions.html#mpq_get_den\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":424,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-298\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":425,\"kind\":1024,\"name\":\"mpq_get_d\",\"url\":\"interfaces/GMPFunctions.html#mpq_get_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":426,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-297\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":427,\"kind\":1024,\"name\":\"mpq_get_str\",\"url\":\"interfaces/GMPFunctions.html#mpq_get_str\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":428,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-300\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":429,\"kind\":1024,\"name\":\"mpq_init\",\"url\":\"interfaces/GMPFunctions.html#mpq_init\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":430,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-301\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":431,\"kind\":1024,\"name\":\"mpq_inits\",\"url\":\"interfaces/GMPFunctions.html#mpq_inits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":432,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-302\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":433,\"kind\":1024,\"name\":\"mpq_inv\",\"url\":\"interfaces/GMPFunctions.html#mpq_inv\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":434,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-303\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":435,\"kind\":1024,\"name\":\"mpq_mul\",\"url\":\"interfaces/GMPFunctions.html#mpq_mul\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":436,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-304\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":437,\"kind\":1024,\"name\":\"mpq_mul_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpq_mul_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":438,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-305\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":439,\"kind\":1024,\"name\":\"mpq_neg\",\"url\":\"interfaces/GMPFunctions.html#mpq_neg\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":440,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-306\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":441,\"kind\":1024,\"name\":\"mpq_set\",\"url\":\"interfaces/GMPFunctions.html#mpq_set\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":442,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-308\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":443,\"kind\":1024,\"name\":\"mpq_set_d\",\"url\":\"interfaces/GMPFunctions.html#mpq_set_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":444,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-309\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":445,\"kind\":1024,\"name\":\"mpq_set_den\",\"url\":\"interfaces/GMPFunctions.html#mpq_set_den\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":446,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-310\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":447,\"kind\":1024,\"name\":\"mpq_set_num\",\"url\":\"interfaces/GMPFunctions.html#mpq_set_num\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":448,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-311\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":449,\"kind\":1024,\"name\":\"mpq_set_si\",\"url\":\"interfaces/GMPFunctions.html#mpq_set_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":450,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-312\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":451,\"kind\":1024,\"name\":\"mpq_set_str\",\"url\":\"interfaces/GMPFunctions.html#mpq_set_str\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":452,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-313\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":453,\"kind\":1024,\"name\":\"mpq_set_ui\",\"url\":\"interfaces/GMPFunctions.html#mpq_set_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":454,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-314\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":455,\"kind\":1024,\"name\":\"mpq_set_z\",\"url\":\"interfaces/GMPFunctions.html#mpq_set_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":456,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-315\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":457,\"kind\":1024,\"name\":\"mpq_sgn\",\"url\":\"interfaces/GMPFunctions.html#mpq_sgn\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":458,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-316\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":459,\"kind\":1024,\"name\":\"mpq_sub\",\"url\":\"interfaces/GMPFunctions.html#mpq_sub\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":460,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-317\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":461,\"kind\":1024,\"name\":\"mpq_swap\",\"url\":\"interfaces/GMPFunctions.html#mpq_swap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":462,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-318\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":463,\"kind\":1024,\"name\":\"mpq_numref\",\"url\":\"interfaces/GMPFunctions.html#mpq_numref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":464,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-307\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":465,\"kind\":1024,\"name\":\"mpq_denref\",\"url\":\"interfaces/GMPFunctions.html#mpq_denref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":466,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-293\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":467,\"kind\":1024,\"name\":\"mpfr_t\",\"url\":\"interfaces/GMPFunctions.html#mpfr_t\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":468,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-262\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":469,\"kind\":1024,\"name\":\"mpfr_t_free\",\"url\":\"interfaces/GMPFunctions.html#mpfr_t_free\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":470,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-263\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":471,\"kind\":1024,\"name\":\"mpfr_t_frees\",\"url\":\"interfaces/GMPFunctions.html#mpfr_t_frees\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":472,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-264\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":473,\"kind\":1024,\"name\":\"mpfr_get_version\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_version\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":474,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-137\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":475,\"kind\":1024,\"name\":\"mpfr_get_emin\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_emin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":476,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-127\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":477,\"kind\":1024,\"name\":\"mpfr_set_emin\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_emin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":478,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-220\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":479,\"kind\":1024,\"name\":\"mpfr_get_emin_min\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_emin_min\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":480,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-129\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":481,\"kind\":1024,\"name\":\"mpfr_get_emin_max\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_emin_max\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":482,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-128\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":483,\"kind\":1024,\"name\":\"mpfr_get_emax\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_emax\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":484,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-124\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":485,\"kind\":1024,\"name\":\"mpfr_set_emax\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_emax\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":486,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-219\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":487,\"kind\":1024,\"name\":\"mpfr_get_emax_min\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_emax_min\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":488,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-126\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":489,\"kind\":1024,\"name\":\"mpfr_get_emax_max\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_emax_max\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":490,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-125\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":491,\"kind\":1024,\"name\":\"mpfr_set_default_rounding_mode\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_default_rounding_mode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":492,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-217\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":493,\"kind\":1024,\"name\":\"mpfr_get_default_rounding_mode\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_default_rounding_mode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":494,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-123\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":495,\"kind\":1024,\"name\":\"mpfr_clear_flags\",\"url\":\"interfaces/GMPFunctions.html#mpfr_clear_flags\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":496,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-38\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":497,\"kind\":1024,\"name\":\"mpfr_clear_underflow\",\"url\":\"interfaces/GMPFunctions.html#mpfr_clear_underflow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":498,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-42\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":499,\"kind\":1024,\"name\":\"mpfr_clear_overflow\",\"url\":\"interfaces/GMPFunctions.html#mpfr_clear_overflow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":500,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-41\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":501,\"kind\":1024,\"name\":\"mpfr_clear_divby0\",\"url\":\"interfaces/GMPFunctions.html#mpfr_clear_divby0\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":502,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-36\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":503,\"kind\":1024,\"name\":\"mpfr_clear_nanflag\",\"url\":\"interfaces/GMPFunctions.html#mpfr_clear_nanflag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":504,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-40\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":505,\"kind\":1024,\"name\":\"mpfr_clear_inexflag\",\"url\":\"interfaces/GMPFunctions.html#mpfr_clear_inexflag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":506,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-39\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":507,\"kind\":1024,\"name\":\"mpfr_clear_erangeflag\",\"url\":\"interfaces/GMPFunctions.html#mpfr_clear_erangeflag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":508,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-37\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":509,\"kind\":1024,\"name\":\"mpfr_set_underflow\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_underflow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":510,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-236\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":511,\"kind\":1024,\"name\":\"mpfr_set_overflow\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_overflow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":512,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-227\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":513,\"kind\":1024,\"name\":\"mpfr_set_divby0\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_divby0\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":514,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-218\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":515,\"kind\":1024,\"name\":\"mpfr_set_nanflag\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_nanflag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":516,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-226\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":517,\"kind\":1024,\"name\":\"mpfr_set_inexflag\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_inexflag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":518,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-223\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":519,\"kind\":1024,\"name\":\"mpfr_set_erangeflag\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_erangeflag\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":520,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-221\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":521,\"kind\":1024,\"name\":\"mpfr_underflow_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_underflow_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":522,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-273\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":523,\"kind\":1024,\"name\":\"mpfr_overflow_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_overflow_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":524,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-192\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":525,\"kind\":1024,\"name\":\"mpfr_divby0_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_divby0_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":526,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-78\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":527,\"kind\":1024,\"name\":\"mpfr_nanflag_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_nanflag_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":528,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-185\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":529,\"kind\":1024,\"name\":\"mpfr_inexflag_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_inexflag_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":530,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-143\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":531,\"kind\":1024,\"name\":\"mpfr_erangeflag_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_erangeflag_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":532,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-84\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":533,\"kind\":1024,\"name\":\"mpfr_flags_clear\",\"url\":\"interfaces/GMPFunctions.html#mpfr_flags_clear\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":534,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-100\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":535,\"kind\":1024,\"name\":\"mpfr_flags_set\",\"url\":\"interfaces/GMPFunctions.html#mpfr_flags_set\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":536,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-103\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":537,\"kind\":1024,\"name\":\"mpfr_flags_test\",\"url\":\"interfaces/GMPFunctions.html#mpfr_flags_test\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":538,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-104\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":539,\"kind\":1024,\"name\":\"mpfr_flags_save\",\"url\":\"interfaces/GMPFunctions.html#mpfr_flags_save\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":540,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-102\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":541,\"kind\":1024,\"name\":\"mpfr_flags_restore\",\"url\":\"interfaces/GMPFunctions.html#mpfr_flags_restore\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":542,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-101\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":543,\"kind\":1024,\"name\":\"mpfr_check_range\",\"url\":\"interfaces/GMPFunctions.html#mpfr_check_range\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":544,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-34\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":545,\"kind\":1024,\"name\":\"mpfr_init2\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":546,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-146\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":547,\"kind\":1024,\"name\":\"mpfr_inits2\",\"url\":\"interfaces/GMPFunctions.html#mpfr_inits2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":548,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-155\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":549,\"kind\":1024,\"name\":\"mpfr_init\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":550,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-145\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":551,\"kind\":1024,\"name\":\"mpfr_inits\",\"url\":\"interfaces/GMPFunctions.html#mpfr_inits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":552,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-154\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":553,\"kind\":1024,\"name\":\"mpfr_clear\",\"url\":\"interfaces/GMPFunctions.html#mpfr_clear\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":554,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-35\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":555,\"kind\":1024,\"name\":\"mpfr_clears\",\"url\":\"interfaces/GMPFunctions.html#mpfr_clears\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":556,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-43\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":557,\"kind\":1024,\"name\":\"mpfr_prec_round\",\"url\":\"interfaces/GMPFunctions.html#mpfr_prec_round\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":558,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-197\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":559,\"kind\":1024,\"name\":\"mpfr_can_round\",\"url\":\"interfaces/GMPFunctions.html#mpfr_can_round\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":560,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-31\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":561,\"kind\":1024,\"name\":\"mpfr_min_prec\",\"url\":\"interfaces/GMPFunctions.html#mpfr_min_prec\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":562,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-173\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":563,\"kind\":1024,\"name\":\"mpfr_get_exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":564,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-130\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":565,\"kind\":1024,\"name\":\"mpfr_set_exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":566,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-222\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":567,\"kind\":1024,\"name\":\"mpfr_get_prec\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_prec\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":568,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-131\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":569,\"kind\":1024,\"name\":\"mpfr_set_prec\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_prec\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":570,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-228\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":571,\"kind\":1024,\"name\":\"mpfr_set_prec_raw\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_prec_raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":572,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-229\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":573,\"kind\":1024,\"name\":\"mpfr_set_default_prec\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_default_prec\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":574,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-216\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":575,\"kind\":1024,\"name\":\"mpfr_get_default_prec\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_default_prec\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":576,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-122\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":577,\"kind\":1024,\"name\":\"mpfr_set_d\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":578,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-215\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":579,\"kind\":1024,\"name\":\"mpfr_set_z\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":580,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-237\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":581,\"kind\":1024,\"name\":\"mpfr_set_z_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_z_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":582,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-238\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":583,\"kind\":1024,\"name\":\"mpfr_set_nan\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_nan\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":584,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-225\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":585,\"kind\":1024,\"name\":\"mpfr_set_inf\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_inf\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":586,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-224\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":587,\"kind\":1024,\"name\":\"mpfr_set_zero\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_zero\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":588,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-239\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":589,\"kind\":1024,\"name\":\"mpfr_set_si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":590,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-231\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":591,\"kind\":1024,\"name\":\"mpfr_set_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":592,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-234\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":593,\"kind\":1024,\"name\":\"mpfr_set_si_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_si_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":594,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-232\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":595,\"kind\":1024,\"name\":\"mpfr_set_ui_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_ui_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":596,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-235\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":597,\"kind\":1024,\"name\":\"mpfr_set_q\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":598,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-230\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":599,\"kind\":1024,\"name\":\"mpfr_mul_q\",\"url\":\"interfaces/GMPFunctions.html#mpfr_mul_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":600,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-180\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":601,\"kind\":1024,\"name\":\"mpfr_div_q\",\"url\":\"interfaces/GMPFunctions.html#mpfr_div_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":602,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-74\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":603,\"kind\":1024,\"name\":\"mpfr_add_q\",\"url\":\"interfaces/GMPFunctions.html#mpfr_add_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":604,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-19\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":605,\"kind\":1024,\"name\":\"mpfr_sub_q\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sub_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":606,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-255\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":607,\"kind\":1024,\"name\":\"mpfr_cmp_q\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmp_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":608,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-46\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":609,\"kind\":1024,\"name\":\"mpfr_get_q\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":610,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-132\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":611,\"kind\":1024,\"name\":\"mpfr_set_str\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_str\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":612,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-233\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":613,\"kind\":1024,\"name\":\"mpfr_init_set\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init_set\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":614,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-147\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":615,\"kind\":1024,\"name\":\"mpfr_init_set_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init_set_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":616,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-152\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":617,\"kind\":1024,\"name\":\"mpfr_init_set_si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init_set_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":618,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-150\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":619,\"kind\":1024,\"name\":\"mpfr_init_set_d\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init_set_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":620,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-148\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":621,\"kind\":1024,\"name\":\"mpfr_init_set_z\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init_set_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":622,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-153\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":623,\"kind\":1024,\"name\":\"mpfr_init_set_q\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init_set_q\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":624,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-149\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":625,\"kind\":1024,\"name\":\"mpfr_init_set_str\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init_set_str\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":626,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-151\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":627,\"kind\":1024,\"name\":\"mpfr_abs\",\"url\":\"interfaces/GMPFunctions.html#mpfr_abs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":628,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-14\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":629,\"kind\":1024,\"name\":\"mpfr_set\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":630,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-214\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":631,\"kind\":1024,\"name\":\"mpfr_neg\",\"url\":\"interfaces/GMPFunctions.html#mpfr_neg\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":632,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-186\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":633,\"kind\":1024,\"name\":\"mpfr_signbit\",\"url\":\"interfaces/GMPFunctions.html#mpfr_signbit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":634,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-244\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":635,\"kind\":1024,\"name\":\"mpfr_setsign\",\"url\":\"interfaces/GMPFunctions.html#mpfr_setsign\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":636,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-240\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":637,\"kind\":1024,\"name\":\"mpfr_copysign\",\"url\":\"interfaces/GMPFunctions.html#mpfr_copysign\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":638,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-58\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":639,\"kind\":1024,\"name\":\"mpfr_get_z_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_z_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":640,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-139\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":641,\"kind\":1024,\"name\":\"mpfr_get_d\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":642,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-120\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":643,\"kind\":1024,\"name\":\"mpfr_get_d_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_d_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":644,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-121\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":645,\"kind\":1024,\"name\":\"mpfr_frexp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_frexp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":646,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-117\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":647,\"kind\":1024,\"name\":\"mpfr_get_si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":648,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-133\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":649,\"kind\":1024,\"name\":\"mpfr_get_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":650,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-136\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":651,\"kind\":1024,\"name\":\"mpfr_get_str_ndigits\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_str_ndigits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":652,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-135\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":653,\"kind\":1024,\"name\":\"mpfr_get_str\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_str\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":654,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-134\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":655,\"kind\":1024,\"name\":\"mpfr_get_z\",\"url\":\"interfaces/GMPFunctions.html#mpfr_get_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":656,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-138\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":657,\"kind\":1024,\"name\":\"mpfr_free_str\",\"url\":\"interfaces/GMPFunctions.html#mpfr_free_str\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":658,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-116\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":659,\"kind\":1024,\"name\":\"mpfr_urandom\",\"url\":\"interfaces/GMPFunctions.html#mpfr_urandom\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":660,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-275\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":661,\"kind\":1024,\"name\":\"mpfr_nrandom\",\"url\":\"interfaces/GMPFunctions.html#mpfr_nrandom\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":662,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-190\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":663,\"kind\":1024,\"name\":\"mpfr_erandom\",\"url\":\"interfaces/GMPFunctions.html#mpfr_erandom\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":664,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-83\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":665,\"kind\":1024,\"name\":\"mpfr_urandomb\",\"url\":\"interfaces/GMPFunctions.html#mpfr_urandomb\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":666,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-276\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":667,\"kind\":1024,\"name\":\"mpfr_nextabove\",\"url\":\"interfaces/GMPFunctions.html#mpfr_nextabove\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":668,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-187\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":669,\"kind\":1024,\"name\":\"mpfr_nextbelow\",\"url\":\"interfaces/GMPFunctions.html#mpfr_nextbelow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":670,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-188\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":671,\"kind\":1024,\"name\":\"mpfr_nexttoward\",\"url\":\"interfaces/GMPFunctions.html#mpfr_nexttoward\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":672,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-189\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":673,\"kind\":1024,\"name\":\"mpfr_pow\",\"url\":\"interfaces/GMPFunctions.html#mpfr_pow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":674,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-193\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":675,\"kind\":1024,\"name\":\"mpfr_pow_si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_pow_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":676,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-194\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":677,\"kind\":1024,\"name\":\"mpfr_pow_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_pow_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":678,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-195\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":679,\"kind\":1024,\"name\":\"mpfr_ui_pow_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_ui_pow_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":680,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-271\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":681,\"kind\":1024,\"name\":\"mpfr_ui_pow\",\"url\":\"interfaces/GMPFunctions.html#mpfr_ui_pow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":682,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-270\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":683,\"kind\":1024,\"name\":\"mpfr_pow_z\",\"url\":\"interfaces/GMPFunctions.html#mpfr_pow_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":684,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-196\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":685,\"kind\":1024,\"name\":\"mpfr_sqrt\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sqrt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":686,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-250\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":687,\"kind\":1024,\"name\":\"mpfr_sqrt_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sqrt_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":688,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-251\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":689,\"kind\":1024,\"name\":\"mpfr_rec_sqrt\",\"url\":\"interfaces/GMPFunctions.html#mpfr_rec_sqrt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":690,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-198\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":691,\"kind\":1024,\"name\":\"mpfr_add\",\"url\":\"interfaces/GMPFunctions.html#mpfr_add\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":692,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-17\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":693,\"kind\":1024,\"name\":\"mpfr_sub\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sub\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":694,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-253\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":695,\"kind\":1024,\"name\":\"mpfr_mul\",\"url\":\"interfaces/GMPFunctions.html#mpfr_mul\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":696,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-175\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":697,\"kind\":1024,\"name\":\"mpfr_div\",\"url\":\"interfaces/GMPFunctions.html#mpfr_div\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":698,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-69\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":699,\"kind\":1024,\"name\":\"mpfr_add_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_add_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":700,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-21\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":701,\"kind\":1024,\"name\":\"mpfr_sub_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sub_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":702,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-257\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":703,\"kind\":1024,\"name\":\"mpfr_ui_sub\",\"url\":\"interfaces/GMPFunctions.html#mpfr_ui_sub\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":704,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-272\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":705,\"kind\":1024,\"name\":\"mpfr_mul_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_mul_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":706,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-182\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":707,\"kind\":1024,\"name\":\"mpfr_div_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_div_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":708,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-76\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":709,\"kind\":1024,\"name\":\"mpfr_ui_div\",\"url\":\"interfaces/GMPFunctions.html#mpfr_ui_div\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":710,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-269\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":711,\"kind\":1024,\"name\":\"mpfr_add_si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_add_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":712,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-20\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":713,\"kind\":1024,\"name\":\"mpfr_sub_si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sub_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":714,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-256\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":715,\"kind\":1024,\"name\":\"mpfr_si_sub\",\"url\":\"interfaces/GMPFunctions.html#mpfr_si_sub\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":716,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-243\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":717,\"kind\":1024,\"name\":\"mpfr_mul_si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_mul_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":718,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-181\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":719,\"kind\":1024,\"name\":\"mpfr_div_si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_div_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":720,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-75\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":721,\"kind\":1024,\"name\":\"mpfr_si_div\",\"url\":\"interfaces/GMPFunctions.html#mpfr_si_div\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":722,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-242\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":723,\"kind\":1024,\"name\":\"mpfr_add_d\",\"url\":\"interfaces/GMPFunctions.html#mpfr_add_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":724,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-18\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":725,\"kind\":1024,\"name\":\"mpfr_sub_d\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sub_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":726,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-254\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":727,\"kind\":1024,\"name\":\"mpfr_d_sub\",\"url\":\"interfaces/GMPFunctions.html#mpfr_d_sub\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":728,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-66\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":729,\"kind\":1024,\"name\":\"mpfr_mul_d\",\"url\":\"interfaces/GMPFunctions.html#mpfr_mul_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":730,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-179\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":731,\"kind\":1024,\"name\":\"mpfr_div_d\",\"url\":\"interfaces/GMPFunctions.html#mpfr_div_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":732,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-73\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":733,\"kind\":1024,\"name\":\"mpfr_d_div\",\"url\":\"interfaces/GMPFunctions.html#mpfr_d_div\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":734,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-65\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":735,\"kind\":1024,\"name\":\"mpfr_sqr\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sqr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":736,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-249\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":737,\"kind\":1024,\"name\":\"mpfr_const_pi\",\"url\":\"interfaces/GMPFunctions.html#mpfr_const_pi\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":738,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-57\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":739,\"kind\":1024,\"name\":\"mpfr_const_log2\",\"url\":\"interfaces/GMPFunctions.html#mpfr_const_log2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":740,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-56\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":741,\"kind\":1024,\"name\":\"mpfr_const_euler\",\"url\":\"interfaces/GMPFunctions.html#mpfr_const_euler\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":742,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-55\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":743,\"kind\":1024,\"name\":\"mpfr_const_catalan\",\"url\":\"interfaces/GMPFunctions.html#mpfr_const_catalan\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":744,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-54\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":745,\"kind\":1024,\"name\":\"mpfr_agm\",\"url\":\"interfaces/GMPFunctions.html#mpfr_agm\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":746,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-23\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":747,\"kind\":1024,\"name\":\"mpfr_log\",\"url\":\"interfaces/GMPFunctions.html#mpfr_log\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":748,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-166\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":749,\"kind\":1024,\"name\":\"mpfr_log2\",\"url\":\"interfaces/GMPFunctions.html#mpfr_log2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":750,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-169\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":751,\"kind\":1024,\"name\":\"mpfr_log10\",\"url\":\"interfaces/GMPFunctions.html#mpfr_log10\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":752,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-167\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":753,\"kind\":1024,\"name\":\"mpfr_log1p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_log1p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":754,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-168\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":755,\"kind\":1024,\"name\":\"mpfr_log_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_log_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":756,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-170\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":757,\"kind\":1024,\"name\":\"mpfr_exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":758,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-87\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":759,\"kind\":1024,\"name\":\"mpfr_exp2\",\"url\":\"interfaces/GMPFunctions.html#mpfr_exp2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":760,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-89\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":761,\"kind\":1024,\"name\":\"mpfr_exp10\",\"url\":\"interfaces/GMPFunctions.html#mpfr_exp10\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":762,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-88\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":763,\"kind\":1024,\"name\":\"mpfr_expm1\",\"url\":\"interfaces/GMPFunctions.html#mpfr_expm1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":764,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-90\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":765,\"kind\":1024,\"name\":\"mpfr_eint\",\"url\":\"interfaces/GMPFunctions.html#mpfr_eint\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":766,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-80\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":767,\"kind\":1024,\"name\":\"mpfr_li2\",\"url\":\"interfaces/GMPFunctions.html#mpfr_li2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":768,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-164\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":769,\"kind\":1024,\"name\":\"mpfr_cmp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":770,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-44\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":771,\"kind\":1024,\"name\":\"mpfr_cmp_d\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmp_d\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":772,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-45\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":773,\"kind\":1024,\"name\":\"mpfr_cmp_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmp_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":774,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-49\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":775,\"kind\":1024,\"name\":\"mpfr_cmp_si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmp_si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":776,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-47\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":777,\"kind\":1024,\"name\":\"mpfr_cmp_ui_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmp_ui_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":778,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-50\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":779,\"kind\":1024,\"name\":\"mpfr_cmp_si_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmp_si_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":780,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-48\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":781,\"kind\":1024,\"name\":\"mpfr_cmpabs\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmpabs\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":782,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-52\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":783,\"kind\":1024,\"name\":\"mpfr_cmpabs_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmpabs_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":784,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-53\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":785,\"kind\":1024,\"name\":\"mpfr_reldiff\",\"url\":\"interfaces/GMPFunctions.html#mpfr_reldiff\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":786,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-200\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":787,\"kind\":1024,\"name\":\"mpfr_eq\",\"url\":\"interfaces/GMPFunctions.html#mpfr_eq\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":788,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-81\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":789,\"kind\":1024,\"name\":\"mpfr_sgn\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sgn\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":790,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-241\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":791,\"kind\":1024,\"name\":\"mpfr_mul_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_mul_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":792,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-176\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":793,\"kind\":1024,\"name\":\"mpfr_div_2exp\",\"url\":\"interfaces/GMPFunctions.html#mpfr_div_2exp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":794,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-70\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":795,\"kind\":1024,\"name\":\"mpfr_mul_2ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_mul_2ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":796,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-178\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":797,\"kind\":1024,\"name\":\"mpfr_div_2ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_div_2ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":798,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-72\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":799,\"kind\":1024,\"name\":\"mpfr_mul_2si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_mul_2si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":800,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-177\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":801,\"kind\":1024,\"name\":\"mpfr_div_2si\",\"url\":\"interfaces/GMPFunctions.html#mpfr_div_2si\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":802,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-71\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":803,\"kind\":1024,\"name\":\"mpfr_rint\",\"url\":\"interfaces/GMPFunctions.html#mpfr_rint\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":804,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-203\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":805,\"kind\":1024,\"name\":\"mpfr_roundeven\",\"url\":\"interfaces/GMPFunctions.html#mpfr_roundeven\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":806,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-211\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":807,\"kind\":1024,\"name\":\"mpfr_round\",\"url\":\"interfaces/GMPFunctions.html#mpfr_round\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":808,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-210\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":809,\"kind\":1024,\"name\":\"mpfr_trunc\",\"url\":\"interfaces/GMPFunctions.html#mpfr_trunc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":810,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-268\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":811,\"kind\":1024,\"name\":\"mpfr_ceil\",\"url\":\"interfaces/GMPFunctions.html#mpfr_ceil\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":812,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-33\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":813,\"kind\":1024,\"name\":\"mpfr_floor\",\"url\":\"interfaces/GMPFunctions.html#mpfr_floor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":814,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-105\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":815,\"kind\":1024,\"name\":\"mpfr_rint_roundeven\",\"url\":\"interfaces/GMPFunctions.html#mpfr_rint_roundeven\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":816,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-207\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":817,\"kind\":1024,\"name\":\"mpfr_rint_round\",\"url\":\"interfaces/GMPFunctions.html#mpfr_rint_round\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":818,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-206\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":819,\"kind\":1024,\"name\":\"mpfr_rint_trunc\",\"url\":\"interfaces/GMPFunctions.html#mpfr_rint_trunc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":820,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-208\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":821,\"kind\":1024,\"name\":\"mpfr_rint_ceil\",\"url\":\"interfaces/GMPFunctions.html#mpfr_rint_ceil\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":822,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-204\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":823,\"kind\":1024,\"name\":\"mpfr_rint_floor\",\"url\":\"interfaces/GMPFunctions.html#mpfr_rint_floor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":824,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-205\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":825,\"kind\":1024,\"name\":\"mpfr_frac\",\"url\":\"interfaces/GMPFunctions.html#mpfr_frac\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":826,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-112\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":827,\"kind\":1024,\"name\":\"mpfr_modf\",\"url\":\"interfaces/GMPFunctions.html#mpfr_modf\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":828,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-174\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":829,\"kind\":1024,\"name\":\"mpfr_remquo\",\"url\":\"interfaces/GMPFunctions.html#mpfr_remquo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":830,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-202\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":831,\"kind\":1024,\"name\":\"mpfr_remainder\",\"url\":\"interfaces/GMPFunctions.html#mpfr_remainder\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":832,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-201\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":833,\"kind\":1024,\"name\":\"mpfr_fmod\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fmod\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":834,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-109\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":835,\"kind\":1024,\"name\":\"mpfr_fmodquo\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fmodquo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":836,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-110\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":837,\"kind\":1024,\"name\":\"mpfr_fits_ulong_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fits_ulong_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":838,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-98\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":839,\"kind\":1024,\"name\":\"mpfr_fits_slong_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fits_slong_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":840,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-94\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":841,\"kind\":1024,\"name\":\"mpfr_fits_uint_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fits_uint_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":842,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-96\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":843,\"kind\":1024,\"name\":\"mpfr_fits_sint_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fits_sint_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":844,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-93\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":845,\"kind\":1024,\"name\":\"mpfr_fits_ushort_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fits_ushort_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":846,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-99\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":847,\"kind\":1024,\"name\":\"mpfr_fits_sshort_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fits_sshort_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":848,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-95\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":849,\"kind\":1024,\"name\":\"mpfr_fits_uintmax_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fits_uintmax_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":850,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-97\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":851,\"kind\":1024,\"name\":\"mpfr_fits_intmax_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fits_intmax_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":852,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-92\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":853,\"kind\":1024,\"name\":\"mpfr_swap\",\"url\":\"interfaces/GMPFunctions.html#mpfr_swap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":854,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-261\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":855,\"kind\":1024,\"name\":\"mpfr_nan_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_nan_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":856,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-184\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":857,\"kind\":1024,\"name\":\"mpfr_inf_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_inf_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":858,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-144\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":859,\"kind\":1024,\"name\":\"mpfr_number_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_number_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":860,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-191\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":861,\"kind\":1024,\"name\":\"mpfr_integer_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_integer_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":862,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-156\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":863,\"kind\":1024,\"name\":\"mpfr_zero_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_zero_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":864,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-281\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":865,\"kind\":1024,\"name\":\"mpfr_regular_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_regular_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":866,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-199\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":867,\"kind\":1024,\"name\":\"mpfr_greater_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_greater_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":868,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-140\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":869,\"kind\":1024,\"name\":\"mpfr_greaterequal_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_greaterequal_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":870,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-141\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":871,\"kind\":1024,\"name\":\"mpfr_less_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_less_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":872,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-160\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":873,\"kind\":1024,\"name\":\"mpfr_lessequal_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_lessequal_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":874,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-161\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":875,\"kind\":1024,\"name\":\"mpfr_lessgreater_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_lessgreater_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":876,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-162\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":877,\"kind\":1024,\"name\":\"mpfr_equal_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_equal_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":878,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-82\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":879,\"kind\":1024,\"name\":\"mpfr_unordered_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_unordered_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":880,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-274\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":881,\"kind\":1024,\"name\":\"mpfr_atanh\",\"url\":\"interfaces/GMPFunctions.html#mpfr_atanh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":882,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-29\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":883,\"kind\":1024,\"name\":\"mpfr_acosh\",\"url\":\"interfaces/GMPFunctions.html#mpfr_acosh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":884,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-16\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":885,\"kind\":1024,\"name\":\"mpfr_asinh\",\"url\":\"interfaces/GMPFunctions.html#mpfr_asinh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":886,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-26\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":887,\"kind\":1024,\"name\":\"mpfr_cosh\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cosh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":888,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-60\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":889,\"kind\":1024,\"name\":\"mpfr_sinh\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sinh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":890,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-247\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":891,\"kind\":1024,\"name\":\"mpfr_tanh\",\"url\":\"interfaces/GMPFunctions.html#mpfr_tanh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":892,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-266\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":893,\"kind\":1024,\"name\":\"mpfr_sinh_cosh\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sinh_cosh\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":894,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-248\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":895,\"kind\":1024,\"name\":\"mpfr_sech\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sech\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":896,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-213\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":897,\"kind\":1024,\"name\":\"mpfr_csch\",\"url\":\"interfaces/GMPFunctions.html#mpfr_csch\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":898,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-64\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":899,\"kind\":1024,\"name\":\"mpfr_coth\",\"url\":\"interfaces/GMPFunctions.html#mpfr_coth\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":900,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-62\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":901,\"kind\":1024,\"name\":\"mpfr_acos\",\"url\":\"interfaces/GMPFunctions.html#mpfr_acos\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":902,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-15\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":903,\"kind\":1024,\"name\":\"mpfr_asin\",\"url\":\"interfaces/GMPFunctions.html#mpfr_asin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":904,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-25\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":905,\"kind\":1024,\"name\":\"mpfr_atan\",\"url\":\"interfaces/GMPFunctions.html#mpfr_atan\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":906,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-27\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":907,\"kind\":1024,\"name\":\"mpfr_sin\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sin\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":908,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-245\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":909,\"kind\":1024,\"name\":\"mpfr_sin_cos\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sin_cos\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":910,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-246\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":911,\"kind\":1024,\"name\":\"mpfr_cos\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cos\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":912,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-59\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":913,\"kind\":1024,\"name\":\"mpfr_tan\",\"url\":\"interfaces/GMPFunctions.html#mpfr_tan\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":914,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-265\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":915,\"kind\":1024,\"name\":\"mpfr_atan2\",\"url\":\"interfaces/GMPFunctions.html#mpfr_atan2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":916,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-28\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":917,\"kind\":1024,\"name\":\"mpfr_sec\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sec\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":918,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-212\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":919,\"kind\":1024,\"name\":\"mpfr_csc\",\"url\":\"interfaces/GMPFunctions.html#mpfr_csc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":920,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-63\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":921,\"kind\":1024,\"name\":\"mpfr_cot\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cot\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":922,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-61\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":923,\"kind\":1024,\"name\":\"mpfr_hypot\",\"url\":\"interfaces/GMPFunctions.html#mpfr_hypot\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":924,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-142\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":925,\"kind\":1024,\"name\":\"mpfr_erf\",\"url\":\"interfaces/GMPFunctions.html#mpfr_erf\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":926,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-85\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":927,\"kind\":1024,\"name\":\"mpfr_erfc\",\"url\":\"interfaces/GMPFunctions.html#mpfr_erfc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":928,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-86\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":929,\"kind\":1024,\"name\":\"mpfr_cbrt\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cbrt\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":930,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-32\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":931,\"kind\":1024,\"name\":\"mpfr_rootn_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_rootn_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":932,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-209\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":933,\"kind\":1024,\"name\":\"mpfr_gamma\",\"url\":\"interfaces/GMPFunctions.html#mpfr_gamma\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":934,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-118\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":935,\"kind\":1024,\"name\":\"mpfr_gamma_inc\",\"url\":\"interfaces/GMPFunctions.html#mpfr_gamma_inc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":936,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-119\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":937,\"kind\":1024,\"name\":\"mpfr_beta\",\"url\":\"interfaces/GMPFunctions.html#mpfr_beta\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":938,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-30\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":939,\"kind\":1024,\"name\":\"mpfr_lngamma\",\"url\":\"interfaces/GMPFunctions.html#mpfr_lngamma\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":940,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-165\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":941,\"kind\":1024,\"name\":\"mpfr_lgamma\",\"url\":\"interfaces/GMPFunctions.html#mpfr_lgamma\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":942,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-163\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":943,\"kind\":1024,\"name\":\"mpfr_digamma\",\"url\":\"interfaces/GMPFunctions.html#mpfr_digamma\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":944,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-67\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":945,\"kind\":1024,\"name\":\"mpfr_zeta\",\"url\":\"interfaces/GMPFunctions.html#mpfr_zeta\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":946,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-282\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":947,\"kind\":1024,\"name\":\"mpfr_zeta_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_zeta_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":948,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-283\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":949,\"kind\":1024,\"name\":\"mpfr_fac_ui\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fac_ui\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":950,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-91\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":951,\"kind\":1024,\"name\":\"mpfr_j0\",\"url\":\"interfaces/GMPFunctions.html#mpfr_j0\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":952,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-157\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":953,\"kind\":1024,\"name\":\"mpfr_j1\",\"url\":\"interfaces/GMPFunctions.html#mpfr_j1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":954,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-158\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":955,\"kind\":1024,\"name\":\"mpfr_jn\",\"url\":\"interfaces/GMPFunctions.html#mpfr_jn\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":956,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-159\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":957,\"kind\":1024,\"name\":\"mpfr_y0\",\"url\":\"interfaces/GMPFunctions.html#mpfr_y0\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":958,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-277\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":959,\"kind\":1024,\"name\":\"mpfr_y1\",\"url\":\"interfaces/GMPFunctions.html#mpfr_y1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":960,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-278\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":961,\"kind\":1024,\"name\":\"mpfr_yn\",\"url\":\"interfaces/GMPFunctions.html#mpfr_yn\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":962,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-279\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":963,\"kind\":1024,\"name\":\"mpfr_ai\",\"url\":\"interfaces/GMPFunctions.html#mpfr_ai\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":964,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-24\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":965,\"kind\":1024,\"name\":\"mpfr_min\",\"url\":\"interfaces/GMPFunctions.html#mpfr_min\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":966,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-172\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":967,\"kind\":1024,\"name\":\"mpfr_max\",\"url\":\"interfaces/GMPFunctions.html#mpfr_max\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":968,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-171\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":969,\"kind\":1024,\"name\":\"mpfr_dim\",\"url\":\"interfaces/GMPFunctions.html#mpfr_dim\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":970,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-68\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":971,\"kind\":1024,\"name\":\"mpfr_mul_z\",\"url\":\"interfaces/GMPFunctions.html#mpfr_mul_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":972,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-183\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":973,\"kind\":1024,\"name\":\"mpfr_div_z\",\"url\":\"interfaces/GMPFunctions.html#mpfr_div_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":974,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-77\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":975,\"kind\":1024,\"name\":\"mpfr_add_z\",\"url\":\"interfaces/GMPFunctions.html#mpfr_add_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":976,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-22\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":977,\"kind\":1024,\"name\":\"mpfr_sub_z\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sub_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":978,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-258\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":979,\"kind\":1024,\"name\":\"mpfr_z_sub\",\"url\":\"interfaces/GMPFunctions.html#mpfr_z_sub\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":980,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-280\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":981,\"kind\":1024,\"name\":\"mpfr_cmp_z\",\"url\":\"interfaces/GMPFunctions.html#mpfr_cmp_z\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":982,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-51\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":983,\"kind\":1024,\"name\":\"mpfr_fma\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fma\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":984,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-106\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":985,\"kind\":1024,\"name\":\"mpfr_fms\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fms\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":986,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-111\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":987,\"kind\":1024,\"name\":\"mpfr_fmma\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fmma\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":988,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-107\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":989,\"kind\":1024,\"name\":\"mpfr_fmms\",\"url\":\"interfaces/GMPFunctions.html#mpfr_fmms\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":990,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-108\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":991,\"kind\":1024,\"name\":\"mpfr_sum\",\"url\":\"interfaces/GMPFunctions.html#mpfr_sum\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":992,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-260\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":993,\"kind\":1024,\"name\":\"mpfr_dot\",\"url\":\"interfaces/GMPFunctions.html#mpfr_dot\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":994,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-79\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":995,\"kind\":1024,\"name\":\"mpfr_free_cache\",\"url\":\"interfaces/GMPFunctions.html#mpfr_free_cache\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":996,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-113\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":997,\"kind\":1024,\"name\":\"mpfr_free_cache2\",\"url\":\"interfaces/GMPFunctions.html#mpfr_free_cache2\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":998,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-114\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":999,\"kind\":1024,\"name\":\"mpfr_free_pool\",\"url\":\"interfaces/GMPFunctions.html#mpfr_free_pool\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1000,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-115\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":1001,\"kind\":1024,\"name\":\"mpfr_subnormalize\",\"url\":\"interfaces/GMPFunctions.html#mpfr_subnormalize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1002,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-259\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":1003,\"kind\":1024,\"name\":\"mpfr_strtofr\",\"url\":\"interfaces/GMPFunctions.html#mpfr_strtofr\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1004,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-252\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":1005,\"kind\":1024,\"name\":\"mpfr_total_order_p\",\"url\":\"interfaces/GMPFunctions.html#mpfr_total_order_p\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1006,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/GMPFunctions.html#__type-267\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"GMPFunctions\"},{\"id\":1007,\"kind\":2048,\"name\":\"mpz_set_string\",\"url\":\"interfaces/GMPFunctions.html#mpz_set_string\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1008,\"kind\":2048,\"name\":\"mpz_init_set_string\",\"url\":\"interfaces/GMPFunctions.html#mpz_init_set_string\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1009,\"kind\":2048,\"name\":\"mpz_to_string\",\"url\":\"interfaces/GMPFunctions.html#mpz_to_string\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1010,\"kind\":2048,\"name\":\"mpq_set_string\",\"url\":\"interfaces/GMPFunctions.html#mpq_set_string\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1011,\"kind\":2048,\"name\":\"mpq_to_string\",\"url\":\"interfaces/GMPFunctions.html#mpq_to_string\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1012,\"kind\":2048,\"name\":\"mpfr_set_string\",\"url\":\"interfaces/GMPFunctions.html#mpfr_set_string\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1013,\"kind\":2048,\"name\":\"mpfr_init_set_string\",\"url\":\"interfaces/GMPFunctions.html#mpfr_init_set_string\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1014,\"kind\":2048,\"name\":\"mpfr_to_string\",\"url\":\"interfaces/GMPFunctions.html#mpfr_to_string\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"GMPFunctions\"},{\"id\":1015,\"kind\":256,\"name\":\"FloatType\",\"url\":\"interfaces/FloatType.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1016,\"kind\":1024,\"name\":\"mpfr_t\",\"url\":\"interfaces/FloatType.html#mpfr_t\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1017,\"kind\":1024,\"name\":\"precisionBits\",\"url\":\"interfaces/FloatType.html#precisionBits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1018,\"kind\":1024,\"name\":\"rndMode\",\"url\":\"interfaces/FloatType.html#rndMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1019,\"kind\":1024,\"name\":\"radix\",\"url\":\"interfaces/FloatType.html#radix\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1020,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/FloatType.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1021,\"kind\":262144,\"name\":\"options\",\"url\":\"interfaces/FloatType.html#options\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1022,\"kind\":262144,\"name\":\"setOptions\",\"url\":\"interfaces/FloatType.html#setOptions\",\"classes\":\"tsd-kind-get-signature tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1023,\"kind\":2048,\"name\":\"add\",\"url\":\"interfaces/FloatType.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1024,\"kind\":2048,\"name\":\"sub\",\"url\":\"interfaces/FloatType.html#sub\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1025,\"kind\":2048,\"name\":\"mul\",\"url\":\"interfaces/FloatType.html#mul\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1026,\"kind\":2048,\"name\":\"div\",\"url\":\"interfaces/FloatType.html#div\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1027,\"kind\":2048,\"name\":\"sqrt\",\"url\":\"interfaces/FloatType.html#sqrt\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1028,\"kind\":2048,\"name\":\"invSqrt\",\"url\":\"interfaces/FloatType.html#invSqrt\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1029,\"kind\":2048,\"name\":\"cbrt\",\"url\":\"interfaces/FloatType.html#cbrt\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1030,\"kind\":2048,\"name\":\"nthRoot\",\"url\":\"interfaces/FloatType.html#nthRoot\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1031,\"kind\":2048,\"name\":\"neg\",\"url\":\"interfaces/FloatType.html#neg\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1032,\"kind\":2048,\"name\":\"abs\",\"url\":\"interfaces/FloatType.html#abs\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1033,\"kind\":2048,\"name\":\"factorial\",\"url\":\"interfaces/FloatType.html#factorial\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1034,\"kind\":2048,\"name\":\"isInteger\",\"url\":\"interfaces/FloatType.html#isInteger\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1035,\"kind\":2048,\"name\":\"isZero\",\"url\":\"interfaces/FloatType.html#isZero\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1036,\"kind\":2048,\"name\":\"isRegular\",\"url\":\"interfaces/FloatType.html#isRegular\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1037,\"kind\":2048,\"name\":\"isNumber\",\"url\":\"interfaces/FloatType.html#isNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1038,\"kind\":2048,\"name\":\"isInfinite\",\"url\":\"interfaces/FloatType.html#isInfinite\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1039,\"kind\":2048,\"name\":\"isNaN\",\"url\":\"interfaces/FloatType.html#isNaN\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1040,\"kind\":2048,\"name\":\"isEqual\",\"url\":\"interfaces/FloatType.html#isEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1041,\"kind\":2048,\"name\":\"lessThan\",\"url\":\"interfaces/FloatType.html#lessThan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1042,\"kind\":2048,\"name\":\"lessOrEqual\",\"url\":\"interfaces/FloatType.html#lessOrEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1043,\"kind\":2048,\"name\":\"greaterThan\",\"url\":\"interfaces/FloatType.html#greaterThan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1044,\"kind\":2048,\"name\":\"greaterOrEqual\",\"url\":\"interfaces/FloatType.html#greaterOrEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1045,\"kind\":2048,\"name\":\"ln\",\"url\":\"interfaces/FloatType.html#ln\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1046,\"kind\":2048,\"name\":\"log2\",\"url\":\"interfaces/FloatType.html#log2\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1047,\"kind\":2048,\"name\":\"log10\",\"url\":\"interfaces/FloatType.html#log10\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1048,\"kind\":2048,\"name\":\"exp\",\"url\":\"interfaces/FloatType.html#exp\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1049,\"kind\":2048,\"name\":\"exp2\",\"url\":\"interfaces/FloatType.html#exp2\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1050,\"kind\":2048,\"name\":\"exp10\",\"url\":\"interfaces/FloatType.html#exp10\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1051,\"kind\":2048,\"name\":\"pow\",\"url\":\"interfaces/FloatType.html#pow\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1052,\"kind\":2048,\"name\":\"sin\",\"url\":\"interfaces/FloatType.html#sin\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1053,\"kind\":2048,\"name\":\"cos\",\"url\":\"interfaces/FloatType.html#cos\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1054,\"kind\":2048,\"name\":\"tan\",\"url\":\"interfaces/FloatType.html#tan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1055,\"kind\":2048,\"name\":\"sec\",\"url\":\"interfaces/FloatType.html#sec\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1056,\"kind\":2048,\"name\":\"csc\",\"url\":\"interfaces/FloatType.html#csc\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1057,\"kind\":2048,\"name\":\"cot\",\"url\":\"interfaces/FloatType.html#cot\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1058,\"kind\":2048,\"name\":\"acos\",\"url\":\"interfaces/FloatType.html#acos\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1059,\"kind\":2048,\"name\":\"asin\",\"url\":\"interfaces/FloatType.html#asin\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1060,\"kind\":2048,\"name\":\"atan\",\"url\":\"interfaces/FloatType.html#atan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1061,\"kind\":2048,\"name\":\"sinh\",\"url\":\"interfaces/FloatType.html#sinh\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1062,\"kind\":2048,\"name\":\"cosh\",\"url\":\"interfaces/FloatType.html#cosh\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1063,\"kind\":2048,\"name\":\"tanh\",\"url\":\"interfaces/FloatType.html#tanh\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1064,\"kind\":2048,\"name\":\"sech\",\"url\":\"interfaces/FloatType.html#sech\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1065,\"kind\":2048,\"name\":\"csch\",\"url\":\"interfaces/FloatType.html#csch\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1066,\"kind\":2048,\"name\":\"coth\",\"url\":\"interfaces/FloatType.html#coth\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1067,\"kind\":2048,\"name\":\"acosh\",\"url\":\"interfaces/FloatType.html#acosh\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1068,\"kind\":2048,\"name\":\"asinh\",\"url\":\"interfaces/FloatType.html#asinh\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1069,\"kind\":2048,\"name\":\"atanh\",\"url\":\"interfaces/FloatType.html#atanh\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1070,\"kind\":2048,\"name\":\"eint\",\"url\":\"interfaces/FloatType.html#eint\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1071,\"kind\":2048,\"name\":\"li2\",\"url\":\"interfaces/FloatType.html#li2\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1072,\"kind\":2048,\"name\":\"gamma\",\"url\":\"interfaces/FloatType.html#gamma\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1073,\"kind\":2048,\"name\":\"lngamma\",\"url\":\"interfaces/FloatType.html#lngamma\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1074,\"kind\":2048,\"name\":\"digamma\",\"url\":\"interfaces/FloatType.html#digamma\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1075,\"kind\":2048,\"name\":\"beta\",\"url\":\"interfaces/FloatType.html#beta\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1076,\"kind\":2048,\"name\":\"zeta\",\"url\":\"interfaces/FloatType.html#zeta\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1077,\"kind\":2048,\"name\":\"erf\",\"url\":\"interfaces/FloatType.html#erf\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1078,\"kind\":2048,\"name\":\"erfc\",\"url\":\"interfaces/FloatType.html#erfc\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1079,\"kind\":2048,\"name\":\"j0\",\"url\":\"interfaces/FloatType.html#j0\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1080,\"kind\":2048,\"name\":\"j1\",\"url\":\"interfaces/FloatType.html#j1\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1081,\"kind\":2048,\"name\":\"jn\",\"url\":\"interfaces/FloatType.html#jn\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1082,\"kind\":2048,\"name\":\"y0\",\"url\":\"interfaces/FloatType.html#y0\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1083,\"kind\":2048,\"name\":\"y1\",\"url\":\"interfaces/FloatType.html#y1\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1084,\"kind\":2048,\"name\":\"yn\",\"url\":\"interfaces/FloatType.html#yn\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1085,\"kind\":2048,\"name\":\"agm\",\"url\":\"interfaces/FloatType.html#agm\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1086,\"kind\":2048,\"name\":\"ai\",\"url\":\"interfaces/FloatType.html#ai\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1087,\"kind\":2048,\"name\":\"sign\",\"url\":\"interfaces/FloatType.html#sign\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1088,\"kind\":2048,\"name\":\"toNumber\",\"url\":\"interfaces/FloatType.html#toNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1089,\"kind\":2048,\"name\":\"ceil\",\"url\":\"interfaces/FloatType.html#ceil\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1090,\"kind\":2048,\"name\":\"floor\",\"url\":\"interfaces/FloatType.html#floor\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1091,\"kind\":2048,\"name\":\"round\",\"url\":\"interfaces/FloatType.html#round\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1092,\"kind\":2048,\"name\":\"roundEven\",\"url\":\"interfaces/FloatType.html#roundEven\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1093,\"kind\":2048,\"name\":\"trunc\",\"url\":\"interfaces/FloatType.html#trunc\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1094,\"kind\":2048,\"name\":\"roundTo\",\"url\":\"interfaces/FloatType.html#roundTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1095,\"kind\":2048,\"name\":\"frac\",\"url\":\"interfaces/FloatType.html#frac\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1096,\"kind\":2048,\"name\":\"fmod\",\"url\":\"interfaces/FloatType.html#fmod\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1097,\"kind\":2048,\"name\":\"remainder\",\"url\":\"interfaces/FloatType.html#remainder\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1098,\"kind\":2048,\"name\":\"nextAbove\",\"url\":\"interfaces/FloatType.html#nextAbove\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1099,\"kind\":2048,\"name\":\"nextBelow\",\"url\":\"interfaces/FloatType.html#nextBelow\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1100,\"kind\":2048,\"name\":\"exponent\",\"url\":\"interfaces/FloatType.html#exponent\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1101,\"kind\":2048,\"name\":\"toString\",\"url\":\"interfaces/FloatType.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1102,\"kind\":2048,\"name\":\"toFixed\",\"url\":\"interfaces/FloatType.html#toFixed\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1103,\"kind\":2048,\"name\":\"toInteger\",\"url\":\"interfaces/FloatType.html#toInteger\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1104,\"kind\":2048,\"name\":\"toInterval\",\"url\":\"interfaces/FloatType.html#toInterval\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1105,\"kind\":2048,\"name\":\"toRational\",\"url\":\"interfaces/FloatType.html#toRational\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"FloatType\"},{\"id\":1106,\"kind\":256,\"name\":\"IntegerType\",\"url\":\"interfaces/IntegerType.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1107,\"kind\":1024,\"name\":\"mpz_t\",\"url\":\"interfaces/IntegerType.html#mpz_t\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1108,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/IntegerType.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1109,\"kind\":2048,\"name\":\"add\",\"url\":\"interfaces/IntegerType.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1110,\"kind\":2048,\"name\":\"sub\",\"url\":\"interfaces/IntegerType.html#sub\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1111,\"kind\":2048,\"name\":\"mul\",\"url\":\"interfaces/IntegerType.html#mul\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1112,\"kind\":2048,\"name\":\"neg\",\"url\":\"interfaces/IntegerType.html#neg\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1113,\"kind\":2048,\"name\":\"abs\",\"url\":\"interfaces/IntegerType.html#abs\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1114,\"kind\":2048,\"name\":\"div\",\"url\":\"interfaces/IntegerType.html#div\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1115,\"kind\":2048,\"name\":\"pow\",\"url\":\"interfaces/IntegerType.html#pow\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1116,\"kind\":2048,\"name\":\"sqrt\",\"url\":\"interfaces/IntegerType.html#sqrt\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1117,\"kind\":2048,\"name\":\"nthRoot\",\"url\":\"interfaces/IntegerType.html#nthRoot\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1118,\"kind\":2048,\"name\":\"factorial\",\"url\":\"interfaces/IntegerType.html#factorial\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1119,\"kind\":2048,\"name\":\"doubleFactorial\",\"url\":\"interfaces/IntegerType.html#doubleFactorial\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1120,\"kind\":2048,\"name\":\"isProbablyPrime\",\"url\":\"interfaces/IntegerType.html#isProbablyPrime\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1121,\"kind\":2048,\"name\":\"nextPrime\",\"url\":\"interfaces/IntegerType.html#nextPrime\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1122,\"kind\":2048,\"name\":\"gcd\",\"url\":\"interfaces/IntegerType.html#gcd\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1123,\"kind\":2048,\"name\":\"lcm\",\"url\":\"interfaces/IntegerType.html#lcm\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1124,\"kind\":2048,\"name\":\"complement1\",\"url\":\"interfaces/IntegerType.html#complement1\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1125,\"kind\":2048,\"name\":\"complement2\",\"url\":\"interfaces/IntegerType.html#complement2\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1126,\"kind\":2048,\"name\":\"and\",\"url\":\"interfaces/IntegerType.html#and\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1127,\"kind\":2048,\"name\":\"or\",\"url\":\"interfaces/IntegerType.html#or\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1128,\"kind\":2048,\"name\":\"xor\",\"url\":\"interfaces/IntegerType.html#xor\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1129,\"kind\":2048,\"name\":\"shiftLeft\",\"url\":\"interfaces/IntegerType.html#shiftLeft\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1130,\"kind\":2048,\"name\":\"shiftRight\",\"url\":\"interfaces/IntegerType.html#shiftRight\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1131,\"kind\":2048,\"name\":\"setBit\",\"url\":\"interfaces/IntegerType.html#setBit\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1132,\"kind\":2048,\"name\":\"setBits\",\"url\":\"interfaces/IntegerType.html#setBits\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1133,\"kind\":2048,\"name\":\"clearBit\",\"url\":\"interfaces/IntegerType.html#clearBit\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1134,\"kind\":2048,\"name\":\"clearBits\",\"url\":\"interfaces/IntegerType.html#clearBits\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1135,\"kind\":2048,\"name\":\"flipBit\",\"url\":\"interfaces/IntegerType.html#flipBit\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1136,\"kind\":2048,\"name\":\"flipBits\",\"url\":\"interfaces/IntegerType.html#flipBits\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1137,\"kind\":2048,\"name\":\"getBit\",\"url\":\"interfaces/IntegerType.html#getBit\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1138,\"kind\":2048,\"name\":\"msbPosition\",\"url\":\"interfaces/IntegerType.html#msbPosition\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1139,\"kind\":2048,\"name\":\"sliceBits\",\"url\":\"interfaces/IntegerType.html#sliceBits\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1140,\"kind\":2048,\"name\":\"writeTo\",\"url\":\"interfaces/IntegerType.html#writeTo\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1141,\"kind\":2048,\"name\":\"isEqual\",\"url\":\"interfaces/IntegerType.html#isEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1142,\"kind\":2048,\"name\":\"lessThan\",\"url\":\"interfaces/IntegerType.html#lessThan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1143,\"kind\":2048,\"name\":\"lessOrEqual\",\"url\":\"interfaces/IntegerType.html#lessOrEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1144,\"kind\":2048,\"name\":\"greaterThan\",\"url\":\"interfaces/IntegerType.html#greaterThan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1145,\"kind\":2048,\"name\":\"greaterOrEqual\",\"url\":\"interfaces/IntegerType.html#greaterOrEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1146,\"kind\":2048,\"name\":\"sign\",\"url\":\"interfaces/IntegerType.html#sign\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1147,\"kind\":2048,\"name\":\"toNumber\",\"url\":\"interfaces/IntegerType.html#toNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1148,\"kind\":2048,\"name\":\"toBuffer\",\"url\":\"interfaces/IntegerType.html#toBuffer\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1149,\"kind\":2048,\"name\":\"toString\",\"url\":\"interfaces/IntegerType.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1150,\"kind\":2048,\"name\":\"toRational\",\"url\":\"interfaces/IntegerType.html#toRational\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1151,\"kind\":2048,\"name\":\"toFloat\",\"url\":\"interfaces/IntegerType.html#toFloat\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"IntegerType\"},{\"id\":1152,\"kind\":256,\"name\":\"RationalType\",\"url\":\"interfaces/RationalType.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1153,\"kind\":1024,\"name\":\"mpq_t\",\"url\":\"interfaces/RationalType.html#mpq_t\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1154,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/RationalType.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1155,\"kind\":2048,\"name\":\"add\",\"url\":\"interfaces/RationalType.html#add\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1156,\"kind\":2048,\"name\":\"sub\",\"url\":\"interfaces/RationalType.html#sub\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1157,\"kind\":2048,\"name\":\"mul\",\"url\":\"interfaces/RationalType.html#mul\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1158,\"kind\":2048,\"name\":\"neg\",\"url\":\"interfaces/RationalType.html#neg\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1159,\"kind\":2048,\"name\":\"invert\",\"url\":\"interfaces/RationalType.html#invert\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1160,\"kind\":2048,\"name\":\"abs\",\"url\":\"interfaces/RationalType.html#abs\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1161,\"kind\":2048,\"name\":\"div\",\"url\":\"interfaces/RationalType.html#div\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-has-type-parameter tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1162,\"kind\":2048,\"name\":\"isEqual\",\"url\":\"interfaces/RationalType.html#isEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1163,\"kind\":2048,\"name\":\"lessThan\",\"url\":\"interfaces/RationalType.html#lessThan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1164,\"kind\":2048,\"name\":\"lessOrEqual\",\"url\":\"interfaces/RationalType.html#lessOrEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1165,\"kind\":2048,\"name\":\"greaterThan\",\"url\":\"interfaces/RationalType.html#greaterThan\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1166,\"kind\":2048,\"name\":\"greaterOrEqual\",\"url\":\"interfaces/RationalType.html#greaterOrEqual\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1167,\"kind\":2048,\"name\":\"numerator\",\"url\":\"interfaces/RationalType.html#numerator\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1168,\"kind\":2048,\"name\":\"denominator\",\"url\":\"interfaces/RationalType.html#denominator\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1169,\"kind\":2048,\"name\":\"sign\",\"url\":\"interfaces/RationalType.html#sign\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1170,\"kind\":2048,\"name\":\"toNumber\",\"url\":\"interfaces/RationalType.html#toNumber\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1171,\"kind\":2048,\"name\":\"toString\",\"url\":\"interfaces/RationalType.html#toString\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1172,\"kind\":2048,\"name\":\"toInteger\",\"url\":\"interfaces/RationalType.html#toInteger\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1173,\"kind\":2048,\"name\":\"toFloat\",\"url\":\"interfaces/RationalType.html#toFloat\",\"classes\":\"tsd-kind-method tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"RationalType\"},{\"id\":1174,\"kind\":256,\"name\":\"FloatOptions\",\"url\":\"interfaces/FloatOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":1175,\"kind\":1024,\"name\":\"precisionBits\",\"url\":\"interfaces/FloatOptions.html#precisionBits\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloatOptions\"},{\"id\":1176,\"kind\":1024,\"name\":\"roundingMode\",\"url\":\"interfaces/FloatOptions.html#roundingMode\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloatOptions\"},{\"id\":1177,\"kind\":1024,\"name\":\"radix\",\"url\":\"interfaces/FloatOptions.html#radix\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"FloatOptions\"},{\"id\":1178,\"kind\":4194304,\"name\":\"mpz_ptr\",\"url\":\"modules.html#mpz_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1179,\"kind\":4194304,\"name\":\"mpz_srcptr\",\"url\":\"modules.html#mpz_srcptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1180,\"kind\":4194304,\"name\":\"mpfr_ptr\",\"url\":\"modules.html#mpfr_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1181,\"kind\":4194304,\"name\":\"mpfr_srcptr\",\"url\":\"modules.html#mpfr_srcptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1182,\"kind\":4194304,\"name\":\"mpq_ptr\",\"url\":\"modules.html#mpq_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1183,\"kind\":4194304,\"name\":\"mpq_srcptr\",\"url\":\"modules.html#mpq_srcptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1184,\"kind\":4194304,\"name\":\"mp_bitcnt_t\",\"url\":\"modules.html#mp_bitcnt_t\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1185,\"kind\":4194304,\"name\":\"gmp_randstate_t\",\"url\":\"modules.html#gmp_randstate_t\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1186,\"kind\":4194304,\"name\":\"__gmp_randstate_struct_ptr\",\"url\":\"modules.html#__gmp_randstate_struct_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1187,\"kind\":4194304,\"name\":\"c_unsigned_long_int\",\"url\":\"modules.html#c_unsigned_long_int\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1188,\"kind\":4194304,\"name\":\"c_void_ptr\",\"url\":\"modules.html#c_void_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1189,\"kind\":4194304,\"name\":\"c_str_ptr\",\"url\":\"modules.html#c_str_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1190,\"kind\":4194304,\"name\":\"c_int\",\"url\":\"modules.html#c_int\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1191,\"kind\":4194304,\"name\":\"c_int_ptr\",\"url\":\"modules.html#c_int_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1192,\"kind\":4194304,\"name\":\"c_long_ptr\",\"url\":\"modules.html#c_long_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1193,\"kind\":4194304,\"name\":\"c_double\",\"url\":\"modules.html#c_double\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1194,\"kind\":4194304,\"name\":\"c_signed_long_int\",\"url\":\"modules.html#c_signed_long_int\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1195,\"kind\":4194304,\"name\":\"c_signed_long_int_ptr\",\"url\":\"modules.html#c_signed_long_int_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1196,\"kind\":4194304,\"name\":\"c_size_t\",\"url\":\"modules.html#c_size_t\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1197,\"kind\":4194304,\"name\":\"c_size_t_ptr\",\"url\":\"modules.html#c_size_t_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1198,\"kind\":4194304,\"name\":\"mp_limb_t\",\"url\":\"modules.html#mp_limb_t\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1199,\"kind\":4194304,\"name\":\"mp_srcptr\",\"url\":\"modules.html#mp_srcptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1200,\"kind\":4194304,\"name\":\"mp_size_t\",\"url\":\"modules.html#mp_size_t\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1201,\"kind\":4194304,\"name\":\"mpfr_prec_t\",\"url\":\"modules.html#mpfr_prec_t\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1202,\"kind\":4194304,\"name\":\"mpfr_flags_t\",\"url\":\"modules.html#mpfr_flags_t\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1203,\"kind\":4194304,\"name\":\"mpfr_ptr_ptr\",\"url\":\"modules.html#mpfr_ptr_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1204,\"kind\":4194304,\"name\":\"mp_ptr\",\"url\":\"modules.html#mp_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1205,\"kind\":4194304,\"name\":\"mpfr_exp_t_ptr\",\"url\":\"modules.html#mpfr_exp_t_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1206,\"kind\":4194304,\"name\":\"c_str_ptr_ptr\",\"url\":\"modules.html#c_str_ptr_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1207,\"kind\":4194304,\"name\":\"mpfr_exp_t\",\"url\":\"modules.html#mpfr_exp_t\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1208,\"kind\":4194304,\"name\":\"mpfr_t\",\"url\":\"modules.html#mpfr_t\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1209,\"kind\":4194304,\"name\":\"mpfr_prec_t_ptr\",\"url\":\"modules.html#mpfr_prec_t_ptr\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":1210,\"kind\":8,\"name\":\"mpfr_rnd_t\",\"url\":\"enums/mpfr_rnd_t.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1211,\"kind\":16,\"name\":\"MPFR_RNDN\",\"url\":\"enums/mpfr_rnd_t.html#MPFR_RNDN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_rnd_t\"},{\"id\":1212,\"kind\":16,\"name\":\"MPFR_RNDZ\",\"url\":\"enums/mpfr_rnd_t.html#MPFR_RNDZ\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_rnd_t\"},{\"id\":1213,\"kind\":16,\"name\":\"MPFR_RNDU\",\"url\":\"enums/mpfr_rnd_t.html#MPFR_RNDU\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_rnd_t\"},{\"id\":1214,\"kind\":16,\"name\":\"MPFR_RNDD\",\"url\":\"enums/mpfr_rnd_t.html#MPFR_RNDD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_rnd_t\"},{\"id\":1215,\"kind\":16,\"name\":\"MPFR_RNDA\",\"url\":\"enums/mpfr_rnd_t.html#MPFR_RNDA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_rnd_t\"},{\"id\":1216,\"kind\":16,\"name\":\"MPFR_RNDF\",\"url\":\"enums/mpfr_rnd_t.html#MPFR_RNDF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_rnd_t\"},{\"id\":1217,\"kind\":16,\"name\":\"MPFR_RNDNA\",\"url\":\"enums/mpfr_rnd_t.html#MPFR_RNDNA\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_rnd_t\"},{\"id\":1218,\"kind\":8,\"name\":\"mpfr_flags\",\"url\":\"enums/mpfr_flags.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1219,\"kind\":16,\"name\":\"MPFR_FLAGS_UNDERFLOW\",\"url\":\"enums/mpfr_flags.html#MPFR_FLAGS_UNDERFLOW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_flags\"},{\"id\":1220,\"kind\":16,\"name\":\"MPFR_FLAGS_OVERFLOW\",\"url\":\"enums/mpfr_flags.html#MPFR_FLAGS_OVERFLOW\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_flags\"},{\"id\":1221,\"kind\":16,\"name\":\"MPFR_FLAGS_NAN\",\"url\":\"enums/mpfr_flags.html#MPFR_FLAGS_NAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_flags\"},{\"id\":1222,\"kind\":16,\"name\":\"MPFR_FLAGS_INEXACT\",\"url\":\"enums/mpfr_flags.html#MPFR_FLAGS_INEXACT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_flags\"},{\"id\":1223,\"kind\":16,\"name\":\"MPFR_FLAGS_ERANGE\",\"url\":\"enums/mpfr_flags.html#MPFR_FLAGS_ERANGE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_flags\"},{\"id\":1224,\"kind\":16,\"name\":\"MPFR_FLAGS_DIVBY0\",\"url\":\"enums/mpfr_flags.html#MPFR_FLAGS_DIVBY0\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_flags\"},{\"id\":1225,\"kind\":16,\"name\":\"MPFR_FLAGS_ALL\",\"url\":\"enums/mpfr_flags.html#MPFR_FLAGS_ALL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_flags\"},{\"id\":1226,\"kind\":8,\"name\":\"mpfr_free_cache_t\",\"url\":\"enums/mpfr_free_cache_t.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":1227,\"kind\":16,\"name\":\"MPFR_FREE_LOCAL_CACHE\",\"url\":\"enums/mpfr_free_cache_t.html#MPFR_FREE_LOCAL_CACHE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_free_cache_t\"},{\"id\":1228,\"kind\":16,\"name\":\"MPFR_FREE_GLOBAL_CACHE\",\"url\":\"enums/mpfr_free_cache_t.html#MPFR_FREE_GLOBAL_CACHE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"mpfr_free_cache_t\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,67.093]],[\"parent/0\",[]],[\"name/1\",[1,48.635]],[\"parent/1\",[]],[\"name/2\",[2,61.985]],[\"parent/2\",[1,4.784]],[\"name/3\",[3,61.985]],[\"parent/3\",[1,4.784]],[\"name/4\",[4,61.985]],[\"parent/4\",[1,4.784]],[\"name/5\",[5,61.985]],[\"parent/5\",[1,4.784]],[\"name/6\",[6,61.985]],[\"parent/6\",[1,4.784]],[\"name/7\",[7,61.985]],[\"parent/7\",[1,4.784]],[\"name/8\",[8,58.62]],[\"parent/8\",[1,4.784]],[\"name/9\",[9,61.985]],[\"parent/9\",[1,4.784]],[\"name/10\",[10,47.634]],[\"parent/10\",[]],[\"name/11\",[11,67.093]],[\"parent/11\",[10,4.685]],[\"name/12\",[2,61.985]],[\"parent/12\",[10,4.685]],[\"name/13\",[3,61.985]],[\"parent/13\",[10,4.685]],[\"name/14\",[4,61.985]],[\"parent/14\",[10,4.685]],[\"name/15\",[5,61.985]],[\"parent/15\",[10,4.685]],[\"name/16\",[6,61.985]],[\"parent/16\",[10,4.685]],[\"name/17\",[7,61.985]],[\"parent/17\",[10,4.685]],[\"name/18\",[8,58.62]],[\"parent/18\",[10,4.685]],[\"name/19\",[9,61.985]],[\"parent/19\",[10,4.685]],[\"name/20\",[12,54.1]],[\"parent/20\",[]],[\"name/21\",[13,67.093]],[\"parent/21\",[12,5.322]],[\"name/22\",[14,67.093]],[\"parent/22\",[12,5.322]],[\"name/23\",[15,67.093]],[\"parent/23\",[12,5.322]],[\"name/24\",[16,61.985]],[\"parent/24\",[12,5.322]],[\"name/25\",[17,56.107]],[\"parent/25\",[]],[\"name/26\",[18,58.62]],[\"parent/26\",[17,5.519]],[\"name/27\",[19,61.985]],[\"parent/27\",[17,5.519]],[\"name/28\",[20,58.62]],[\"parent/28\",[17,5.519]],[\"name/29\",[21,67.093]],[\"parent/29\",[]],[\"name/30\",[22,56.107]],[\"parent/30\",[]],[\"name/31\",[23,61.985]],[\"parent/31\",[22,5.519]],[\"name/32\",[24,61.985]],[\"parent/32\",[22,5.519]],[\"name/33\",[25,67.093]],[\"parent/33\",[22,5.519]],[\"name/34\",[26,52.43]],[\"parent/34\",[]],[\"name/35\",[27,67.093]],[\"parent/35\",[26,5.157]],[\"name/36\",[28,67.093]],[\"parent/36\",[26,5.157]],[\"name/37\",[29,67.093]],[\"parent/37\",[26,5.157]],[\"name/38\",[30,67.093]],[\"parent/38\",[26,5.157]],[\"name/39\",[31,67.093]],[\"parent/39\",[26,5.157]],[\"name/40\",[32,2.318]],[\"parent/40\",[]],[\"name/41\",[16,61.985]],[\"parent/41\",[32,0.228]],[\"name/42\",[33,9.358]],[\"parent/42\",[32,0.228]],[\"name/43\",[34,67.093]],[\"parent/43\",[32,0.228]],[\"name/44\",[33,9.358]],[\"parent/44\",[32,0.228]],[\"name/45\",[35,67.093]],[\"parent/45\",[32,0.228]],[\"name/46\",[33,9.358]],[\"parent/46\",[32,0.228]],[\"name/47\",[36,67.093]],[\"parent/47\",[32,0.228]],[\"name/48\",[33,9.358]],[\"parent/48\",[32,0.228]],[\"name/49\",[37,67.093]],[\"parent/49\",[32,0.228]],[\"name/50\",[38,67.093]],[\"parent/50\",[32,0.228]],[\"name/51\",[39,67.093]],[\"parent/51\",[32,0.228]],[\"name/52\",[33,9.358]],[\"parent/52\",[32,0.228]],[\"name/53\",[40,67.093]],[\"parent/53\",[32,0.228]],[\"name/54\",[33,9.358]],[\"parent/54\",[32,0.228]],[\"name/55\",[41,67.093]],[\"parent/55\",[32,0.228]],[\"name/56\",[33,9.358]],[\"parent/56\",[32,0.228]],[\"name/57\",[42,67.093]],[\"parent/57\",[32,0.228]],[\"name/58\",[33,9.358]],[\"parent/58\",[32,0.228]],[\"name/59\",[43,67.093]],[\"parent/59\",[32,0.228]],[\"name/60\",[33,9.358]],[\"parent/60\",[32,0.228]],[\"name/61\",[44,67.093]],[\"parent/61\",[32,0.228]],[\"name/62\",[33,9.358]],[\"parent/62\",[32,0.228]],[\"name/63\",[45,67.093]],[\"parent/63\",[32,0.228]],[\"name/64\",[33,9.358]],[\"parent/64\",[32,0.228]],[\"name/65\",[46,67.093]],[\"parent/65\",[32,0.228]],[\"name/66\",[33,9.358]],[\"parent/66\",[32,0.228]],[\"name/67\",[47,67.093]],[\"parent/67\",[32,0.228]],[\"name/68\",[33,9.358]],[\"parent/68\",[32,0.228]],[\"name/69\",[48,67.093]],[\"parent/69\",[32,0.228]],[\"name/70\",[33,9.358]],[\"parent/70\",[32,0.228]],[\"name/71\",[49,67.093]],[\"parent/71\",[32,0.228]],[\"name/72\",[33,9.358]],[\"parent/72\",[32,0.228]],[\"name/73\",[50,61.985]],[\"parent/73\",[32,0.228]],[\"name/74\",[33,9.358]],[\"parent/74\",[32,0.228]],[\"name/75\",[51,67.093]],[\"parent/75\",[32,0.228]],[\"name/76\",[33,9.358]],[\"parent/76\",[32,0.228]],[\"name/77\",[52,67.093]],[\"parent/77\",[32,0.228]],[\"name/78\",[33,9.358]],[\"parent/78\",[32,0.228]],[\"name/79\",[53,67.093]],[\"parent/79\",[32,0.228]],[\"name/80\",[33,9.358]],[\"parent/80\",[32,0.228]],[\"name/81\",[54,67.093]],[\"parent/81\",[32,0.228]],[\"name/82\",[33,9.358]],[\"parent/82\",[32,0.228]],[\"name/83\",[55,67.093]],[\"parent/83\",[32,0.228]],[\"name/84\",[33,9.358]],[\"parent/84\",[32,0.228]],[\"name/85\",[56,67.093]],[\"parent/85\",[32,0.228]],[\"name/86\",[33,9.358]],[\"parent/86\",[32,0.228]],[\"name/87\",[57,67.093]],[\"parent/87\",[32,0.228]],[\"name/88\",[33,9.358]],[\"parent/88\",[32,0.228]],[\"name/89\",[58,67.093]],[\"parent/89\",[32,0.228]],[\"name/90\",[33,9.358]],[\"parent/90\",[32,0.228]],[\"name/91\",[59,67.093]],[\"parent/91\",[32,0.228]],[\"name/92\",[33,9.358]],[\"parent/92\",[32,0.228]],[\"name/93\",[60,67.093]],[\"parent/93\",[32,0.228]],[\"name/94\",[33,9.358]],[\"parent/94\",[32,0.228]],[\"name/95\",[61,67.093]],[\"parent/95\",[32,0.228]],[\"name/96\",[33,9.358]],[\"parent/96\",[32,0.228]],[\"name/97\",[62,67.093]],[\"parent/97\",[32,0.228]],[\"name/98\",[33,9.358]],[\"parent/98\",[32,0.228]],[\"name/99\",[63,67.093]],[\"parent/99\",[32,0.228]],[\"name/100\",[33,9.358]],[\"parent/100\",[32,0.228]],[\"name/101\",[64,67.093]],[\"parent/101\",[32,0.228]],[\"name/102\",[33,9.358]],[\"parent/102\",[32,0.228]],[\"name/103\",[65,67.093]],[\"parent/103\",[32,0.228]],[\"name/104\",[33,9.358]],[\"parent/104\",[32,0.228]],[\"name/105\",[66,67.093]],[\"parent/105\",[32,0.228]],[\"name/106\",[33,9.358]],[\"parent/106\",[32,0.228]],[\"name/107\",[67,67.093]],[\"parent/107\",[32,0.228]],[\"name/108\",[33,9.358]],[\"parent/108\",[32,0.228]],[\"name/109\",[68,67.093]],[\"parent/109\",[32,0.228]],[\"name/110\",[33,9.358]],[\"parent/110\",[32,0.228]],[\"name/111\",[69,67.093]],[\"parent/111\",[32,0.228]],[\"name/112\",[33,9.358]],[\"parent/112\",[32,0.228]],[\"name/113\",[70,67.093]],[\"parent/113\",[32,0.228]],[\"name/114\",[33,9.358]],[\"parent/114\",[32,0.228]],[\"name/115\",[71,67.093]],[\"parent/115\",[32,0.228]],[\"name/116\",[33,9.358]],[\"parent/116\",[32,0.228]],[\"name/117\",[72,67.093]],[\"parent/117\",[32,0.228]],[\"name/118\",[33,9.358]],[\"parent/118\",[32,0.228]],[\"name/119\",[73,67.093]],[\"parent/119\",[32,0.228]],[\"name/120\",[33,9.358]],[\"parent/120\",[32,0.228]],[\"name/121\",[74,67.093]],[\"parent/121\",[32,0.228]],[\"name/122\",[33,9.358]],[\"parent/122\",[32,0.228]],[\"name/123\",[75,67.093]],[\"parent/123\",[32,0.228]],[\"name/124\",[33,9.358]],[\"parent/124\",[32,0.228]],[\"name/125\",[76,67.093]],[\"parent/125\",[32,0.228]],[\"name/126\",[33,9.358]],[\"parent/126\",[32,0.228]],[\"name/127\",[77,67.093]],[\"parent/127\",[32,0.228]],[\"name/128\",[33,9.358]],[\"parent/128\",[32,0.228]],[\"name/129\",[78,67.093]],[\"parent/129\",[32,0.228]],[\"name/130\",[33,9.358]],[\"parent/130\",[32,0.228]],[\"name/131\",[79,67.093]],[\"parent/131\",[32,0.228]],[\"name/132\",[33,9.358]],[\"parent/132\",[32,0.228]],[\"name/133\",[80,67.093]],[\"parent/133\",[32,0.228]],[\"name/134\",[33,9.358]],[\"parent/134\",[32,0.228]],[\"name/135\",[81,67.093]],[\"parent/135\",[32,0.228]],[\"name/136\",[33,9.358]],[\"parent/136\",[32,0.228]],[\"name/137\",[82,67.093]],[\"parent/137\",[32,0.228]],[\"name/138\",[33,9.358]],[\"parent/138\",[32,0.228]],[\"name/139\",[83,67.093]],[\"parent/139\",[32,0.228]],[\"name/140\",[33,9.358]],[\"parent/140\",[32,0.228]],[\"name/141\",[84,67.093]],[\"parent/141\",[32,0.228]],[\"name/142\",[33,9.358]],[\"parent/142\",[32,0.228]],[\"name/143\",[85,67.093]],[\"parent/143\",[32,0.228]],[\"name/144\",[33,9.358]],[\"parent/144\",[32,0.228]],[\"name/145\",[86,67.093]],[\"parent/145\",[32,0.228]],[\"name/146\",[33,9.358]],[\"parent/146\",[32,0.228]],[\"name/147\",[87,67.093]],[\"parent/147\",[32,0.228]],[\"name/148\",[33,9.358]],[\"parent/148\",[32,0.228]],[\"name/149\",[88,67.093]],[\"parent/149\",[32,0.228]],[\"name/150\",[33,9.358]],[\"parent/150\",[32,0.228]],[\"name/151\",[89,67.093]],[\"parent/151\",[32,0.228]],[\"name/152\",[33,9.358]],[\"parent/152\",[32,0.228]],[\"name/153\",[90,67.093]],[\"parent/153\",[32,0.228]],[\"name/154\",[33,9.358]],[\"parent/154\",[32,0.228]],[\"name/155\",[91,67.093]],[\"parent/155\",[32,0.228]],[\"name/156\",[33,9.358]],[\"parent/156\",[32,0.228]],[\"name/157\",[92,67.093]],[\"parent/157\",[32,0.228]],[\"name/158\",[33,9.358]],[\"parent/158\",[32,0.228]],[\"name/159\",[93,67.093]],[\"parent/159\",[32,0.228]],[\"name/160\",[33,9.358]],[\"parent/160\",[32,0.228]],[\"name/161\",[94,67.093]],[\"parent/161\",[32,0.228]],[\"name/162\",[33,9.358]],[\"parent/162\",[32,0.228]],[\"name/163\",[95,67.093]],[\"parent/163\",[32,0.228]],[\"name/164\",[33,9.358]],[\"parent/164\",[32,0.228]],[\"name/165\",[96,67.093]],[\"parent/165\",[32,0.228]],[\"name/166\",[33,9.358]],[\"parent/166\",[32,0.228]],[\"name/167\",[97,67.093]],[\"parent/167\",[32,0.228]],[\"name/168\",[33,9.358]],[\"parent/168\",[32,0.228]],[\"name/169\",[98,67.093]],[\"parent/169\",[32,0.228]],[\"name/170\",[33,9.358]],[\"parent/170\",[32,0.228]],[\"name/171\",[99,67.093]],[\"parent/171\",[32,0.228]],[\"name/172\",[33,9.358]],[\"parent/172\",[32,0.228]],[\"name/173\",[100,67.093]],[\"parent/173\",[32,0.228]],[\"name/174\",[33,9.358]],[\"parent/174\",[32,0.228]],[\"name/175\",[101,67.093]],[\"parent/175\",[32,0.228]],[\"name/176\",[33,9.358]],[\"parent/176\",[32,0.228]],[\"name/177\",[102,67.093]],[\"parent/177\",[32,0.228]],[\"name/178\",[33,9.358]],[\"parent/178\",[32,0.228]],[\"name/179\",[103,67.093]],[\"parent/179\",[32,0.228]],[\"name/180\",[33,9.358]],[\"parent/180\",[32,0.228]],[\"name/181\",[104,67.093]],[\"parent/181\",[32,0.228]],[\"name/182\",[33,9.358]],[\"parent/182\",[32,0.228]],[\"name/183\",[105,67.093]],[\"parent/183\",[32,0.228]],[\"name/184\",[33,9.358]],[\"parent/184\",[32,0.228]],[\"name/185\",[106,67.093]],[\"parent/185\",[32,0.228]],[\"name/186\",[33,9.358]],[\"parent/186\",[32,0.228]],[\"name/187\",[107,67.093]],[\"parent/187\",[32,0.228]],[\"name/188\",[33,9.358]],[\"parent/188\",[32,0.228]],[\"name/189\",[108,67.093]],[\"parent/189\",[32,0.228]],[\"name/190\",[33,9.358]],[\"parent/190\",[32,0.228]],[\"name/191\",[109,67.093]],[\"parent/191\",[32,0.228]],[\"name/192\",[33,9.358]],[\"parent/192\",[32,0.228]],[\"name/193\",[110,67.093]],[\"parent/193\",[32,0.228]],[\"name/194\",[33,9.358]],[\"parent/194\",[32,0.228]],[\"name/195\",[111,67.093]],[\"parent/195\",[32,0.228]],[\"name/196\",[33,9.358]],[\"parent/196\",[32,0.228]],[\"name/197\",[112,67.093]],[\"parent/197\",[32,0.228]],[\"name/198\",[33,9.358]],[\"parent/198\",[32,0.228]],[\"name/199\",[113,67.093]],[\"parent/199\",[32,0.228]],[\"name/200\",[33,9.358]],[\"parent/200\",[32,0.228]],[\"name/201\",[114,67.093]],[\"parent/201\",[32,0.228]],[\"name/202\",[33,9.358]],[\"parent/202\",[32,0.228]],[\"name/203\",[115,67.093]],[\"parent/203\",[32,0.228]],[\"name/204\",[33,9.358]],[\"parent/204\",[32,0.228]],[\"name/205\",[116,67.093]],[\"parent/205\",[32,0.228]],[\"name/206\",[33,9.358]],[\"parent/206\",[32,0.228]],[\"name/207\",[117,67.093]],[\"parent/207\",[32,0.228]],[\"name/208\",[33,9.358]],[\"parent/208\",[32,0.228]],[\"name/209\",[118,67.093]],[\"parent/209\",[32,0.228]],[\"name/210\",[33,9.358]],[\"parent/210\",[32,0.228]],[\"name/211\",[119,67.093]],[\"parent/211\",[32,0.228]],[\"name/212\",[33,9.358]],[\"parent/212\",[32,0.228]],[\"name/213\",[120,67.093]],[\"parent/213\",[32,0.228]],[\"name/214\",[33,9.358]],[\"parent/214\",[32,0.228]],[\"name/215\",[121,67.093]],[\"parent/215\",[32,0.228]],[\"name/216\",[33,9.358]],[\"parent/216\",[32,0.228]],[\"name/217\",[122,67.093]],[\"parent/217\",[32,0.228]],[\"name/218\",[33,9.358]],[\"parent/218\",[32,0.228]],[\"name/219\",[123,67.093]],[\"parent/219\",[32,0.228]],[\"name/220\",[33,9.358]],[\"parent/220\",[32,0.228]],[\"name/221\",[124,67.093]],[\"parent/221\",[32,0.228]],[\"name/222\",[33,9.358]],[\"parent/222\",[32,0.228]],[\"name/223\",[125,67.093]],[\"parent/223\",[32,0.228]],[\"name/224\",[33,9.358]],[\"parent/224\",[32,0.228]],[\"name/225\",[126,67.093]],[\"parent/225\",[32,0.228]],[\"name/226\",[33,9.358]],[\"parent/226\",[32,0.228]],[\"name/227\",[127,67.093]],[\"parent/227\",[32,0.228]],[\"name/228\",[33,9.358]],[\"parent/228\",[32,0.228]],[\"name/229\",[128,67.093]],[\"parent/229\",[32,0.228]],[\"name/230\",[33,9.358]],[\"parent/230\",[32,0.228]],[\"name/231\",[129,67.093]],[\"parent/231\",[32,0.228]],[\"name/232\",[33,9.358]],[\"parent/232\",[32,0.228]],[\"name/233\",[130,67.093]],[\"parent/233\",[32,0.228]],[\"name/234\",[33,9.358]],[\"parent/234\",[32,0.228]],[\"name/235\",[131,67.093]],[\"parent/235\",[32,0.228]],[\"name/236\",[33,9.358]],[\"parent/236\",[32,0.228]],[\"name/237\",[132,67.093]],[\"parent/237\",[32,0.228]],[\"name/238\",[33,9.358]],[\"parent/238\",[32,0.228]],[\"name/239\",[133,67.093]],[\"parent/239\",[32,0.228]],[\"name/240\",[33,9.358]],[\"parent/240\",[32,0.228]],[\"name/241\",[134,67.093]],[\"parent/241\",[32,0.228]],[\"name/242\",[33,9.358]],[\"parent/242\",[32,0.228]],[\"name/243\",[135,67.093]],[\"parent/243\",[32,0.228]],[\"name/244\",[33,9.358]],[\"parent/244\",[32,0.228]],[\"name/245\",[136,67.093]],[\"parent/245\",[32,0.228]],[\"name/246\",[33,9.358]],[\"parent/246\",[32,0.228]],[\"name/247\",[137,67.093]],[\"parent/247\",[32,0.228]],[\"name/248\",[33,9.358]],[\"parent/248\",[32,0.228]],[\"name/249\",[138,67.093]],[\"parent/249\",[32,0.228]],[\"name/250\",[33,9.358]],[\"parent/250\",[32,0.228]],[\"name/251\",[139,67.093]],[\"parent/251\",[32,0.228]],[\"name/252\",[33,9.358]],[\"parent/252\",[32,0.228]],[\"name/253\",[140,67.093]],[\"parent/253\",[32,0.228]],[\"name/254\",[33,9.358]],[\"parent/254\",[32,0.228]],[\"name/255\",[141,67.093]],[\"parent/255\",[32,0.228]],[\"name/256\",[33,9.358]],[\"parent/256\",[32,0.228]],[\"name/257\",[142,67.093]],[\"parent/257\",[32,0.228]],[\"name/258\",[33,9.358]],[\"parent/258\",[32,0.228]],[\"name/259\",[143,67.093]],[\"parent/259\",[32,0.228]],[\"name/260\",[33,9.358]],[\"parent/260\",[32,0.228]],[\"name/261\",[144,67.093]],[\"parent/261\",[32,0.228]],[\"name/262\",[33,9.358]],[\"parent/262\",[32,0.228]],[\"name/263\",[145,67.093]],[\"parent/263\",[32,0.228]],[\"name/264\",[33,9.358]],[\"parent/264\",[32,0.228]],[\"name/265\",[146,67.093]],[\"parent/265\",[32,0.228]],[\"name/266\",[33,9.358]],[\"parent/266\",[32,0.228]],[\"name/267\",[147,67.093]],[\"parent/267\",[32,0.228]],[\"name/268\",[33,9.358]],[\"parent/268\",[32,0.228]],[\"name/269\",[148,67.093]],[\"parent/269\",[32,0.228]],[\"name/270\",[33,9.358]],[\"parent/270\",[32,0.228]],[\"name/271\",[149,67.093]],[\"parent/271\",[32,0.228]],[\"name/272\",[33,9.358]],[\"parent/272\",[32,0.228]],[\"name/273\",[150,67.093]],[\"parent/273\",[32,0.228]],[\"name/274\",[33,9.358]],[\"parent/274\",[32,0.228]],[\"name/275\",[151,67.093]],[\"parent/275\",[32,0.228]],[\"name/276\",[33,9.358]],[\"parent/276\",[32,0.228]],[\"name/277\",[152,67.093]],[\"parent/277\",[32,0.228]],[\"name/278\",[33,9.358]],[\"parent/278\",[32,0.228]],[\"name/279\",[153,67.093]],[\"parent/279\",[32,0.228]],[\"name/280\",[33,9.358]],[\"parent/280\",[32,0.228]],[\"name/281\",[154,67.093]],[\"parent/281\",[32,0.228]],[\"name/282\",[33,9.358]],[\"parent/282\",[32,0.228]],[\"name/283\",[155,67.093]],[\"parent/283\",[32,0.228]],[\"name/284\",[33,9.358]],[\"parent/284\",[32,0.228]],[\"name/285\",[156,67.093]],[\"parent/285\",[32,0.228]],[\"name/286\",[33,9.358]],[\"parent/286\",[32,0.228]],[\"name/287\",[157,67.093]],[\"parent/287\",[32,0.228]],[\"name/288\",[33,9.358]],[\"parent/288\",[32,0.228]],[\"name/289\",[158,67.093]],[\"parent/289\",[32,0.228]],[\"name/290\",[33,9.358]],[\"parent/290\",[32,0.228]],[\"name/291\",[159,67.093]],[\"parent/291\",[32,0.228]],[\"name/292\",[33,9.358]],[\"parent/292\",[32,0.228]],[\"name/293\",[160,67.093]],[\"parent/293\",[32,0.228]],[\"name/294\",[33,9.358]],[\"parent/294\",[32,0.228]],[\"name/295\",[161,67.093]],[\"parent/295\",[32,0.228]],[\"name/296\",[33,9.358]],[\"parent/296\",[32,0.228]],[\"name/297\",[162,67.093]],[\"parent/297\",[32,0.228]],[\"name/298\",[33,9.358]],[\"parent/298\",[32,0.228]],[\"name/299\",[163,67.093]],[\"parent/299\",[32,0.228]],[\"name/300\",[33,9.358]],[\"parent/300\",[32,0.228]],[\"name/301\",[164,67.093]],[\"parent/301\",[32,0.228]],[\"name/302\",[33,9.358]],[\"parent/302\",[32,0.228]],[\"name/303\",[165,67.093]],[\"parent/303\",[32,0.228]],[\"name/304\",[33,9.358]],[\"parent/304\",[32,0.228]],[\"name/305\",[166,67.093]],[\"parent/305\",[32,0.228]],[\"name/306\",[33,9.358]],[\"parent/306\",[32,0.228]],[\"name/307\",[167,67.093]],[\"parent/307\",[32,0.228]],[\"name/308\",[33,9.358]],[\"parent/308\",[32,0.228]],[\"name/309\",[168,67.093]],[\"parent/309\",[32,0.228]],[\"name/310\",[33,9.358]],[\"parent/310\",[32,0.228]],[\"name/311\",[169,67.093]],[\"parent/311\",[32,0.228]],[\"name/312\",[33,9.358]],[\"parent/312\",[32,0.228]],[\"name/313\",[170,67.093]],[\"parent/313\",[32,0.228]],[\"name/314\",[33,9.358]],[\"parent/314\",[32,0.228]],[\"name/315\",[171,67.093]],[\"parent/315\",[32,0.228]],[\"name/316\",[33,9.358]],[\"parent/316\",[32,0.228]],[\"name/317\",[172,67.093]],[\"parent/317\",[32,0.228]],[\"name/318\",[33,9.358]],[\"parent/318\",[32,0.228]],[\"name/319\",[173,67.093]],[\"parent/319\",[32,0.228]],[\"name/320\",[33,9.358]],[\"parent/320\",[32,0.228]],[\"name/321\",[174,67.093]],[\"parent/321\",[32,0.228]],[\"name/322\",[33,9.358]],[\"parent/322\",[32,0.228]],[\"name/323\",[175,67.093]],[\"parent/323\",[32,0.228]],[\"name/324\",[33,9.358]],[\"parent/324\",[32,0.228]],[\"name/325\",[176,67.093]],[\"parent/325\",[32,0.228]],[\"name/326\",[33,9.358]],[\"parent/326\",[32,0.228]],[\"name/327\",[177,67.093]],[\"parent/327\",[32,0.228]],[\"name/328\",[33,9.358]],[\"parent/328\",[32,0.228]],[\"name/329\",[178,67.093]],[\"parent/329\",[32,0.228]],[\"name/330\",[33,9.358]],[\"parent/330\",[32,0.228]],[\"name/331\",[179,67.093]],[\"parent/331\",[32,0.228]],[\"name/332\",[33,9.358]],[\"parent/332\",[32,0.228]],[\"name/333\",[180,67.093]],[\"parent/333\",[32,0.228]],[\"name/334\",[33,9.358]],[\"parent/334\",[32,0.228]],[\"name/335\",[181,67.093]],[\"parent/335\",[32,0.228]],[\"name/336\",[33,9.358]],[\"parent/336\",[32,0.228]],[\"name/337\",[182,67.093]],[\"parent/337\",[32,0.228]],[\"name/338\",[33,9.358]],[\"parent/338\",[32,0.228]],[\"name/339\",[183,67.093]],[\"parent/339\",[32,0.228]],[\"name/340\",[33,9.358]],[\"parent/340\",[32,0.228]],[\"name/341\",[184,67.093]],[\"parent/341\",[32,0.228]],[\"name/342\",[33,9.358]],[\"parent/342\",[32,0.228]],[\"name/343\",[185,67.093]],[\"parent/343\",[32,0.228]],[\"name/344\",[33,9.358]],[\"parent/344\",[32,0.228]],[\"name/345\",[186,67.093]],[\"parent/345\",[32,0.228]],[\"name/346\",[33,9.358]],[\"parent/346\",[32,0.228]],[\"name/347\",[187,67.093]],[\"parent/347\",[32,0.228]],[\"name/348\",[33,9.358]],[\"parent/348\",[32,0.228]],[\"name/349\",[188,67.093]],[\"parent/349\",[32,0.228]],[\"name/350\",[33,9.358]],[\"parent/350\",[32,0.228]],[\"name/351\",[189,67.093]],[\"parent/351\",[32,0.228]],[\"name/352\",[33,9.358]],[\"parent/352\",[32,0.228]],[\"name/353\",[190,67.093]],[\"parent/353\",[32,0.228]],[\"name/354\",[33,9.358]],[\"parent/354\",[32,0.228]],[\"name/355\",[191,67.093]],[\"parent/355\",[32,0.228]],[\"name/356\",[33,9.358]],[\"parent/356\",[32,0.228]],[\"name/357\",[192,67.093]],[\"parent/357\",[32,0.228]],[\"name/358\",[33,9.358]],[\"parent/358\",[32,0.228]],[\"name/359\",[193,67.093]],[\"parent/359\",[32,0.228]],[\"name/360\",[33,9.358]],[\"parent/360\",[32,0.228]],[\"name/361\",[194,67.093]],[\"parent/361\",[32,0.228]],[\"name/362\",[33,9.358]],[\"parent/362\",[32,0.228]],[\"name/363\",[195,67.093]],[\"parent/363\",[32,0.228]],[\"name/364\",[33,9.358]],[\"parent/364\",[32,0.228]],[\"name/365\",[196,67.093]],[\"parent/365\",[32,0.228]],[\"name/366\",[33,9.358]],[\"parent/366\",[32,0.228]],[\"name/367\",[197,67.093]],[\"parent/367\",[32,0.228]],[\"name/368\",[33,9.358]],[\"parent/368\",[32,0.228]],[\"name/369\",[198,67.093]],[\"parent/369\",[32,0.228]],[\"name/370\",[33,9.358]],[\"parent/370\",[32,0.228]],[\"name/371\",[199,67.093]],[\"parent/371\",[32,0.228]],[\"name/372\",[33,9.358]],[\"parent/372\",[32,0.228]],[\"name/373\",[200,67.093]],[\"parent/373\",[32,0.228]],[\"name/374\",[33,9.358]],[\"parent/374\",[32,0.228]],[\"name/375\",[201,67.093]],[\"parent/375\",[32,0.228]],[\"name/376\",[33,9.358]],[\"parent/376\",[32,0.228]],[\"name/377\",[202,67.093]],[\"parent/377\",[32,0.228]],[\"name/378\",[33,9.358]],[\"parent/378\",[32,0.228]],[\"name/379\",[203,67.093]],[\"parent/379\",[32,0.228]],[\"name/380\",[33,9.358]],[\"parent/380\",[32,0.228]],[\"name/381\",[204,67.093]],[\"parent/381\",[32,0.228]],[\"name/382\",[33,9.358]],[\"parent/382\",[32,0.228]],[\"name/383\",[205,67.093]],[\"parent/383\",[32,0.228]],[\"name/384\",[33,9.358]],[\"parent/384\",[32,0.228]],[\"name/385\",[206,67.093]],[\"parent/385\",[32,0.228]],[\"name/386\",[33,9.358]],[\"parent/386\",[32,0.228]],[\"name/387\",[207,67.093]],[\"parent/387\",[32,0.228]],[\"name/388\",[33,9.358]],[\"parent/388\",[32,0.228]],[\"name/389\",[208,67.093]],[\"parent/389\",[32,0.228]],[\"name/390\",[33,9.358]],[\"parent/390\",[32,0.228]],[\"name/391\",[209,61.985]],[\"parent/391\",[32,0.228]],[\"name/392\",[33,9.358]],[\"parent/392\",[32,0.228]],[\"name/393\",[210,67.093]],[\"parent/393\",[32,0.228]],[\"name/394\",[33,9.358]],[\"parent/394\",[32,0.228]],[\"name/395\",[211,67.093]],[\"parent/395\",[32,0.228]],[\"name/396\",[33,9.358]],[\"parent/396\",[32,0.228]],[\"name/397\",[212,67.093]],[\"parent/397\",[32,0.228]],[\"name/398\",[33,9.358]],[\"parent/398\",[32,0.228]],[\"name/399\",[213,67.093]],[\"parent/399\",[32,0.228]],[\"name/400\",[33,9.358]],[\"parent/400\",[32,0.228]],[\"name/401\",[214,67.093]],[\"parent/401\",[32,0.228]],[\"name/402\",[33,9.358]],[\"parent/402\",[32,0.228]],[\"name/403\",[215,67.093]],[\"parent/403\",[32,0.228]],[\"name/404\",[33,9.358]],[\"parent/404\",[32,0.228]],[\"name/405\",[216,67.093]],[\"parent/405\",[32,0.228]],[\"name/406\",[33,9.358]],[\"parent/406\",[32,0.228]],[\"name/407\",[217,67.093]],[\"parent/407\",[32,0.228]],[\"name/408\",[33,9.358]],[\"parent/408\",[32,0.228]],[\"name/409\",[218,67.093]],[\"parent/409\",[32,0.228]],[\"name/410\",[33,9.358]],[\"parent/410\",[32,0.228]],[\"name/411\",[219,67.093]],[\"parent/411\",[32,0.228]],[\"name/412\",[33,9.358]],[\"parent/412\",[32,0.228]],[\"name/413\",[220,67.093]],[\"parent/413\",[32,0.228]],[\"name/414\",[33,9.358]],[\"parent/414\",[32,0.228]],[\"name/415\",[221,67.093]],[\"parent/415\",[32,0.228]],[\"name/416\",[33,9.358]],[\"parent/416\",[32,0.228]],[\"name/417\",[222,67.093]],[\"parent/417\",[32,0.228]],[\"name/418\",[33,9.358]],[\"parent/418\",[32,0.228]],[\"name/419\",[223,67.093]],[\"parent/419\",[32,0.228]],[\"name/420\",[33,9.358]],[\"parent/420\",[32,0.228]],[\"name/421\",[224,67.093]],[\"parent/421\",[32,0.228]],[\"name/422\",[33,9.358]],[\"parent/422\",[32,0.228]],[\"name/423\",[225,67.093]],[\"parent/423\",[32,0.228]],[\"name/424\",[33,9.358]],[\"parent/424\",[32,0.228]],[\"name/425\",[226,67.093]],[\"parent/425\",[32,0.228]],[\"name/426\",[33,9.358]],[\"parent/426\",[32,0.228]],[\"name/427\",[227,67.093]],[\"parent/427\",[32,0.228]],[\"name/428\",[33,9.358]],[\"parent/428\",[32,0.228]],[\"name/429\",[228,67.093]],[\"parent/429\",[32,0.228]],[\"name/430\",[33,9.358]],[\"parent/430\",[32,0.228]],[\"name/431\",[229,67.093]],[\"parent/431\",[32,0.228]],[\"name/432\",[33,9.358]],[\"parent/432\",[32,0.228]],[\"name/433\",[230,67.093]],[\"parent/433\",[32,0.228]],[\"name/434\",[33,9.358]],[\"parent/434\",[32,0.228]],[\"name/435\",[231,67.093]],[\"parent/435\",[32,0.228]],[\"name/436\",[33,9.358]],[\"parent/436\",[32,0.228]],[\"name/437\",[232,67.093]],[\"parent/437\",[32,0.228]],[\"name/438\",[33,9.358]],[\"parent/438\",[32,0.228]],[\"name/439\",[233,67.093]],[\"parent/439\",[32,0.228]],[\"name/440\",[33,9.358]],[\"parent/440\",[32,0.228]],[\"name/441\",[234,67.093]],[\"parent/441\",[32,0.228]],[\"name/442\",[33,9.358]],[\"parent/442\",[32,0.228]],[\"name/443\",[235,67.093]],[\"parent/443\",[32,0.228]],[\"name/444\",[33,9.358]],[\"parent/444\",[32,0.228]],[\"name/445\",[236,67.093]],[\"parent/445\",[32,0.228]],[\"name/446\",[33,9.358]],[\"parent/446\",[32,0.228]],[\"name/447\",[237,67.093]],[\"parent/447\",[32,0.228]],[\"name/448\",[33,9.358]],[\"parent/448\",[32,0.228]],[\"name/449\",[238,67.093]],[\"parent/449\",[32,0.228]],[\"name/450\",[33,9.358]],[\"parent/450\",[32,0.228]],[\"name/451\",[239,67.093]],[\"parent/451\",[32,0.228]],[\"name/452\",[33,9.358]],[\"parent/452\",[32,0.228]],[\"name/453\",[240,67.093]],[\"parent/453\",[32,0.228]],[\"name/454\",[33,9.358]],[\"parent/454\",[32,0.228]],[\"name/455\",[241,67.093]],[\"parent/455\",[32,0.228]],[\"name/456\",[33,9.358]],[\"parent/456\",[32,0.228]],[\"name/457\",[242,67.093]],[\"parent/457\",[32,0.228]],[\"name/458\",[33,9.358]],[\"parent/458\",[32,0.228]],[\"name/459\",[243,67.093]],[\"parent/459\",[32,0.228]],[\"name/460\",[33,9.358]],[\"parent/460\",[32,0.228]],[\"name/461\",[244,67.093]],[\"parent/461\",[32,0.228]],[\"name/462\",[33,9.358]],[\"parent/462\",[32,0.228]],[\"name/463\",[245,67.093]],[\"parent/463\",[32,0.228]],[\"name/464\",[33,9.358]],[\"parent/464\",[32,0.228]],[\"name/465\",[246,67.093]],[\"parent/465\",[32,0.228]],[\"name/466\",[33,9.358]],[\"parent/466\",[32,0.228]],[\"name/467\",[247,58.62]],[\"parent/467\",[32,0.228]],[\"name/468\",[33,9.358]],[\"parent/468\",[32,0.228]],[\"name/469\",[248,67.093]],[\"parent/469\",[32,0.228]],[\"name/470\",[33,9.358]],[\"parent/470\",[32,0.228]],[\"name/471\",[249,67.093]],[\"parent/471\",[32,0.228]],[\"name/472\",[33,9.358]],[\"parent/472\",[32,0.228]],[\"name/473\",[250,67.093]],[\"parent/473\",[32,0.228]],[\"name/474\",[33,9.358]],[\"parent/474\",[32,0.228]],[\"name/475\",[251,67.093]],[\"parent/475\",[32,0.228]],[\"name/476\",[33,9.358]],[\"parent/476\",[32,0.228]],[\"name/477\",[252,67.093]],[\"parent/477\",[32,0.228]],[\"name/478\",[33,9.358]],[\"parent/478\",[32,0.228]],[\"name/479\",[253,67.093]],[\"parent/479\",[32,0.228]],[\"name/480\",[33,9.358]],[\"parent/480\",[32,0.228]],[\"name/481\",[254,67.093]],[\"parent/481\",[32,0.228]],[\"name/482\",[33,9.358]],[\"parent/482\",[32,0.228]],[\"name/483\",[255,67.093]],[\"parent/483\",[32,0.228]],[\"name/484\",[33,9.358]],[\"parent/484\",[32,0.228]],[\"name/485\",[256,67.093]],[\"parent/485\",[32,0.228]],[\"name/486\",[33,9.358]],[\"parent/486\",[32,0.228]],[\"name/487\",[257,67.093]],[\"parent/487\",[32,0.228]],[\"name/488\",[33,9.358]],[\"parent/488\",[32,0.228]],[\"name/489\",[258,67.093]],[\"parent/489\",[32,0.228]],[\"name/490\",[33,9.358]],[\"parent/490\",[32,0.228]],[\"name/491\",[259,67.093]],[\"parent/491\",[32,0.228]],[\"name/492\",[33,9.358]],[\"parent/492\",[32,0.228]],[\"name/493\",[260,67.093]],[\"parent/493\",[32,0.228]],[\"name/494\",[33,9.358]],[\"parent/494\",[32,0.228]],[\"name/495\",[261,67.093]],[\"parent/495\",[32,0.228]],[\"name/496\",[33,9.358]],[\"parent/496\",[32,0.228]],[\"name/497\",[262,67.093]],[\"parent/497\",[32,0.228]],[\"name/498\",[33,9.358]],[\"parent/498\",[32,0.228]],[\"name/499\",[263,67.093]],[\"parent/499\",[32,0.228]],[\"name/500\",[33,9.358]],[\"parent/500\",[32,0.228]],[\"name/501\",[264,67.093]],[\"parent/501\",[32,0.228]],[\"name/502\",[33,9.358]],[\"parent/502\",[32,0.228]],[\"name/503\",[265,67.093]],[\"parent/503\",[32,0.228]],[\"name/504\",[33,9.358]],[\"parent/504\",[32,0.228]],[\"name/505\",[266,67.093]],[\"parent/505\",[32,0.228]],[\"name/506\",[33,9.358]],[\"parent/506\",[32,0.228]],[\"name/507\",[267,67.093]],[\"parent/507\",[32,0.228]],[\"name/508\",[33,9.358]],[\"parent/508\",[32,0.228]],[\"name/509\",[268,67.093]],[\"parent/509\",[32,0.228]],[\"name/510\",[33,9.358]],[\"parent/510\",[32,0.228]],[\"name/511\",[269,67.093]],[\"parent/511\",[32,0.228]],[\"name/512\",[33,9.358]],[\"parent/512\",[32,0.228]],[\"name/513\",[270,67.093]],[\"parent/513\",[32,0.228]],[\"name/514\",[33,9.358]],[\"parent/514\",[32,0.228]],[\"name/515\",[271,67.093]],[\"parent/515\",[32,0.228]],[\"name/516\",[33,9.358]],[\"parent/516\",[32,0.228]],[\"name/517\",[272,67.093]],[\"parent/517\",[32,0.228]],[\"name/518\",[33,9.358]],[\"parent/518\",[32,0.228]],[\"name/519\",[273,67.093]],[\"parent/519\",[32,0.228]],[\"name/520\",[33,9.358]],[\"parent/520\",[32,0.228]],[\"name/521\",[274,67.093]],[\"parent/521\",[32,0.228]],[\"name/522\",[33,9.358]],[\"parent/522\",[32,0.228]],[\"name/523\",[275,67.093]],[\"parent/523\",[32,0.228]],[\"name/524\",[33,9.358]],[\"parent/524\",[32,0.228]],[\"name/525\",[276,67.093]],[\"parent/525\",[32,0.228]],[\"name/526\",[33,9.358]],[\"parent/526\",[32,0.228]],[\"name/527\",[277,67.093]],[\"parent/527\",[32,0.228]],[\"name/528\",[33,9.358]],[\"parent/528\",[32,0.228]],[\"name/529\",[278,67.093]],[\"parent/529\",[32,0.228]],[\"name/530\",[33,9.358]],[\"parent/530\",[32,0.228]],[\"name/531\",[279,67.093]],[\"parent/531\",[32,0.228]],[\"name/532\",[33,9.358]],[\"parent/532\",[32,0.228]],[\"name/533\",[280,67.093]],[\"parent/533\",[32,0.228]],[\"name/534\",[33,9.358]],[\"parent/534\",[32,0.228]],[\"name/535\",[281,67.093]],[\"parent/535\",[32,0.228]],[\"name/536\",[33,9.358]],[\"parent/536\",[32,0.228]],[\"name/537\",[282,67.093]],[\"parent/537\",[32,0.228]],[\"name/538\",[33,9.358]],[\"parent/538\",[32,0.228]],[\"name/539\",[283,67.093]],[\"parent/539\",[32,0.228]],[\"name/540\",[33,9.358]],[\"parent/540\",[32,0.228]],[\"name/541\",[284,67.093]],[\"parent/541\",[32,0.228]],[\"name/542\",[33,9.358]],[\"parent/542\",[32,0.228]],[\"name/543\",[285,67.093]],[\"parent/543\",[32,0.228]],[\"name/544\",[33,9.358]],[\"parent/544\",[32,0.228]],[\"name/545\",[286,67.093]],[\"parent/545\",[32,0.228]],[\"name/546\",[33,9.358]],[\"parent/546\",[32,0.228]],[\"name/547\",[287,67.093]],[\"parent/547\",[32,0.228]],[\"name/548\",[33,9.358]],[\"parent/548\",[32,0.228]],[\"name/549\",[288,67.093]],[\"parent/549\",[32,0.228]],[\"name/550\",[33,9.358]],[\"parent/550\",[32,0.228]],[\"name/551\",[289,67.093]],[\"parent/551\",[32,0.228]],[\"name/552\",[33,9.358]],[\"parent/552\",[32,0.228]],[\"name/553\",[290,67.093]],[\"parent/553\",[32,0.228]],[\"name/554\",[33,9.358]],[\"parent/554\",[32,0.228]],[\"name/555\",[291,67.093]],[\"parent/555\",[32,0.228]],[\"name/556\",[33,9.358]],[\"parent/556\",[32,0.228]],[\"name/557\",[292,67.093]],[\"parent/557\",[32,0.228]],[\"name/558\",[33,9.358]],[\"parent/558\",[32,0.228]],[\"name/559\",[293,67.093]],[\"parent/559\",[32,0.228]],[\"name/560\",[33,9.358]],[\"parent/560\",[32,0.228]],[\"name/561\",[294,67.093]],[\"parent/561\",[32,0.228]],[\"name/562\",[33,9.358]],[\"parent/562\",[32,0.228]],[\"name/563\",[295,67.093]],[\"parent/563\",[32,0.228]],[\"name/564\",[33,9.358]],[\"parent/564\",[32,0.228]],[\"name/565\",[296,67.093]],[\"parent/565\",[32,0.228]],[\"name/566\",[33,9.358]],[\"parent/566\",[32,0.228]],[\"name/567\",[297,67.093]],[\"parent/567\",[32,0.228]],[\"name/568\",[33,9.358]],[\"parent/568\",[32,0.228]],[\"name/569\",[298,67.093]],[\"parent/569\",[32,0.228]],[\"name/570\",[33,9.358]],[\"parent/570\",[32,0.228]],[\"name/571\",[299,67.093]],[\"parent/571\",[32,0.228]],[\"name/572\",[33,9.358]],[\"parent/572\",[32,0.228]],[\"name/573\",[300,67.093]],[\"parent/573\",[32,0.228]],[\"name/574\",[33,9.358]],[\"parent/574\",[32,0.228]],[\"name/575\",[301,67.093]],[\"parent/575\",[32,0.228]],[\"name/576\",[33,9.358]],[\"parent/576\",[32,0.228]],[\"name/577\",[302,67.093]],[\"parent/577\",[32,0.228]],[\"name/578\",[33,9.358]],[\"parent/578\",[32,0.228]],[\"name/579\",[303,67.093]],[\"parent/579\",[32,0.228]],[\"name/580\",[33,9.358]],[\"parent/580\",[32,0.228]],[\"name/581\",[304,67.093]],[\"parent/581\",[32,0.228]],[\"name/582\",[33,9.358]],[\"parent/582\",[32,0.228]],[\"name/583\",[305,67.093]],[\"parent/583\",[32,0.228]],[\"name/584\",[33,9.358]],[\"parent/584\",[32,0.228]],[\"name/585\",[306,67.093]],[\"parent/585\",[32,0.228]],[\"name/586\",[33,9.358]],[\"parent/586\",[32,0.228]],[\"name/587\",[307,67.093]],[\"parent/587\",[32,0.228]],[\"name/588\",[33,9.358]],[\"parent/588\",[32,0.228]],[\"name/589\",[308,67.093]],[\"parent/589\",[32,0.228]],[\"name/590\",[33,9.358]],[\"parent/590\",[32,0.228]],[\"name/591\",[309,67.093]],[\"parent/591\",[32,0.228]],[\"name/592\",[33,9.358]],[\"parent/592\",[32,0.228]],[\"name/593\",[310,67.093]],[\"parent/593\",[32,0.228]],[\"name/594\",[33,9.358]],[\"parent/594\",[32,0.228]],[\"name/595\",[311,67.093]],[\"parent/595\",[32,0.228]],[\"name/596\",[33,9.358]],[\"parent/596\",[32,0.228]],[\"name/597\",[312,67.093]],[\"parent/597\",[32,0.228]],[\"name/598\",[33,9.358]],[\"parent/598\",[32,0.228]],[\"name/599\",[313,67.093]],[\"parent/599\",[32,0.228]],[\"name/600\",[33,9.358]],[\"parent/600\",[32,0.228]],[\"name/601\",[314,67.093]],[\"parent/601\",[32,0.228]],[\"name/602\",[33,9.358]],[\"parent/602\",[32,0.228]],[\"name/603\",[315,67.093]],[\"parent/603\",[32,0.228]],[\"name/604\",[33,9.358]],[\"parent/604\",[32,0.228]],[\"name/605\",[316,67.093]],[\"parent/605\",[32,0.228]],[\"name/606\",[33,9.358]],[\"parent/606\",[32,0.228]],[\"name/607\",[317,67.093]],[\"parent/607\",[32,0.228]],[\"name/608\",[33,9.358]],[\"parent/608\",[32,0.228]],[\"name/609\",[318,67.093]],[\"parent/609\",[32,0.228]],[\"name/610\",[33,9.358]],[\"parent/610\",[32,0.228]],[\"name/611\",[319,67.093]],[\"parent/611\",[32,0.228]],[\"name/612\",[33,9.358]],[\"parent/612\",[32,0.228]],[\"name/613\",[320,67.093]],[\"parent/613\",[32,0.228]],[\"name/614\",[33,9.358]],[\"parent/614\",[32,0.228]],[\"name/615\",[321,67.093]],[\"parent/615\",[32,0.228]],[\"name/616\",[33,9.358]],[\"parent/616\",[32,0.228]],[\"name/617\",[322,67.093]],[\"parent/617\",[32,0.228]],[\"name/618\",[33,9.358]],[\"parent/618\",[32,0.228]],[\"name/619\",[323,67.093]],[\"parent/619\",[32,0.228]],[\"name/620\",[33,9.358]],[\"parent/620\",[32,0.228]],[\"name/621\",[324,67.093]],[\"parent/621\",[32,0.228]],[\"name/622\",[33,9.358]],[\"parent/622\",[32,0.228]],[\"name/623\",[325,67.093]],[\"parent/623\",[32,0.228]],[\"name/624\",[33,9.358]],[\"parent/624\",[32,0.228]],[\"name/625\",[326,67.093]],[\"parent/625\",[32,0.228]],[\"name/626\",[33,9.358]],[\"parent/626\",[32,0.228]],[\"name/627\",[327,67.093]],[\"parent/627\",[32,0.228]],[\"name/628\",[33,9.358]],[\"parent/628\",[32,0.228]],[\"name/629\",[328,67.093]],[\"parent/629\",[32,0.228]],[\"name/630\",[33,9.358]],[\"parent/630\",[32,0.228]],[\"name/631\",[329,67.093]],[\"parent/631\",[32,0.228]],[\"name/632\",[33,9.358]],[\"parent/632\",[32,0.228]],[\"name/633\",[330,67.093]],[\"parent/633\",[32,0.228]],[\"name/634\",[33,9.358]],[\"parent/634\",[32,0.228]],[\"name/635\",[331,67.093]],[\"parent/635\",[32,0.228]],[\"name/636\",[33,9.358]],[\"parent/636\",[32,0.228]],[\"name/637\",[332,67.093]],[\"parent/637\",[32,0.228]],[\"name/638\",[33,9.358]],[\"parent/638\",[32,0.228]],[\"name/639\",[333,67.093]],[\"parent/639\",[32,0.228]],[\"name/640\",[33,9.358]],[\"parent/640\",[32,0.228]],[\"name/641\",[334,67.093]],[\"parent/641\",[32,0.228]],[\"name/642\",[33,9.358]],[\"parent/642\",[32,0.228]],[\"name/643\",[335,67.093]],[\"parent/643\",[32,0.228]],[\"name/644\",[33,9.358]],[\"parent/644\",[32,0.228]],[\"name/645\",[336,67.093]],[\"parent/645\",[32,0.228]],[\"name/646\",[33,9.358]],[\"parent/646\",[32,0.228]],[\"name/647\",[337,67.093]],[\"parent/647\",[32,0.228]],[\"name/648\",[33,9.358]],[\"parent/648\",[32,0.228]],[\"name/649\",[338,67.093]],[\"parent/649\",[32,0.228]],[\"name/650\",[33,9.358]],[\"parent/650\",[32,0.228]],[\"name/651\",[339,67.093]],[\"parent/651\",[32,0.228]],[\"name/652\",[33,9.358]],[\"parent/652\",[32,0.228]],[\"name/653\",[340,67.093]],[\"parent/653\",[32,0.228]],[\"name/654\",[33,9.358]],[\"parent/654\",[32,0.228]],[\"name/655\",[341,67.093]],[\"parent/655\",[32,0.228]],[\"name/656\",[33,9.358]],[\"parent/656\",[32,0.228]],[\"name/657\",[342,67.093]],[\"parent/657\",[32,0.228]],[\"name/658\",[33,9.358]],[\"parent/658\",[32,0.228]],[\"name/659\",[343,67.093]],[\"parent/659\",[32,0.228]],[\"name/660\",[33,9.358]],[\"parent/660\",[32,0.228]],[\"name/661\",[344,67.093]],[\"parent/661\",[32,0.228]],[\"name/662\",[33,9.358]],[\"parent/662\",[32,0.228]],[\"name/663\",[345,67.093]],[\"parent/663\",[32,0.228]],[\"name/664\",[33,9.358]],[\"parent/664\",[32,0.228]],[\"name/665\",[346,67.093]],[\"parent/665\",[32,0.228]],[\"name/666\",[33,9.358]],[\"parent/666\",[32,0.228]],[\"name/667\",[347,67.093]],[\"parent/667\",[32,0.228]],[\"name/668\",[33,9.358]],[\"parent/668\",[32,0.228]],[\"name/669\",[348,67.093]],[\"parent/669\",[32,0.228]],[\"name/670\",[33,9.358]],[\"parent/670\",[32,0.228]],[\"name/671\",[349,67.093]],[\"parent/671\",[32,0.228]],[\"name/672\",[33,9.358]],[\"parent/672\",[32,0.228]],[\"name/673\",[350,67.093]],[\"parent/673\",[32,0.228]],[\"name/674\",[33,9.358]],[\"parent/674\",[32,0.228]],[\"name/675\",[351,67.093]],[\"parent/675\",[32,0.228]],[\"name/676\",[33,9.358]],[\"parent/676\",[32,0.228]],[\"name/677\",[352,67.093]],[\"parent/677\",[32,0.228]],[\"name/678\",[33,9.358]],[\"parent/678\",[32,0.228]],[\"name/679\",[353,67.093]],[\"parent/679\",[32,0.228]],[\"name/680\",[33,9.358]],[\"parent/680\",[32,0.228]],[\"name/681\",[354,67.093]],[\"parent/681\",[32,0.228]],[\"name/682\",[33,9.358]],[\"parent/682\",[32,0.228]],[\"name/683\",[355,67.093]],[\"parent/683\",[32,0.228]],[\"name/684\",[33,9.358]],[\"parent/684\",[32,0.228]],[\"name/685\",[356,67.093]],[\"parent/685\",[32,0.228]],[\"name/686\",[33,9.358]],[\"parent/686\",[32,0.228]],[\"name/687\",[357,67.093]],[\"parent/687\",[32,0.228]],[\"name/688\",[33,9.358]],[\"parent/688\",[32,0.228]],[\"name/689\",[358,67.093]],[\"parent/689\",[32,0.228]],[\"name/690\",[33,9.358]],[\"parent/690\",[32,0.228]],[\"name/691\",[359,67.093]],[\"parent/691\",[32,0.228]],[\"name/692\",[33,9.358]],[\"parent/692\",[32,0.228]],[\"name/693\",[360,67.093]],[\"parent/693\",[32,0.228]],[\"name/694\",[33,9.358]],[\"parent/694\",[32,0.228]],[\"name/695\",[361,67.093]],[\"parent/695\",[32,0.228]],[\"name/696\",[33,9.358]],[\"parent/696\",[32,0.228]],[\"name/697\",[362,67.093]],[\"parent/697\",[32,0.228]],[\"name/698\",[33,9.358]],[\"parent/698\",[32,0.228]],[\"name/699\",[363,67.093]],[\"parent/699\",[32,0.228]],[\"name/700\",[33,9.358]],[\"parent/700\",[32,0.228]],[\"name/701\",[364,67.093]],[\"parent/701\",[32,0.228]],[\"name/702\",[33,9.358]],[\"parent/702\",[32,0.228]],[\"name/703\",[365,67.093]],[\"parent/703\",[32,0.228]],[\"name/704\",[33,9.358]],[\"parent/704\",[32,0.228]],[\"name/705\",[366,67.093]],[\"parent/705\",[32,0.228]],[\"name/706\",[33,9.358]],[\"parent/706\",[32,0.228]],[\"name/707\",[367,67.093]],[\"parent/707\",[32,0.228]],[\"name/708\",[33,9.358]],[\"parent/708\",[32,0.228]],[\"name/709\",[368,67.093]],[\"parent/709\",[32,0.228]],[\"name/710\",[33,9.358]],[\"parent/710\",[32,0.228]],[\"name/711\",[369,67.093]],[\"parent/711\",[32,0.228]],[\"name/712\",[33,9.358]],[\"parent/712\",[32,0.228]],[\"name/713\",[370,67.093]],[\"parent/713\",[32,0.228]],[\"name/714\",[33,9.358]],[\"parent/714\",[32,0.228]],[\"name/715\",[371,67.093]],[\"parent/715\",[32,0.228]],[\"name/716\",[33,9.358]],[\"parent/716\",[32,0.228]],[\"name/717\",[372,67.093]],[\"parent/717\",[32,0.228]],[\"name/718\",[33,9.358]],[\"parent/718\",[32,0.228]],[\"name/719\",[373,67.093]],[\"parent/719\",[32,0.228]],[\"name/720\",[33,9.358]],[\"parent/720\",[32,0.228]],[\"name/721\",[374,67.093]],[\"parent/721\",[32,0.228]],[\"name/722\",[33,9.358]],[\"parent/722\",[32,0.228]],[\"name/723\",[375,67.093]],[\"parent/723\",[32,0.228]],[\"name/724\",[33,9.358]],[\"parent/724\",[32,0.228]],[\"name/725\",[376,67.093]],[\"parent/725\",[32,0.228]],[\"name/726\",[33,9.358]],[\"parent/726\",[32,0.228]],[\"name/727\",[377,67.093]],[\"parent/727\",[32,0.228]],[\"name/728\",[33,9.358]],[\"parent/728\",[32,0.228]],[\"name/729\",[378,67.093]],[\"parent/729\",[32,0.228]],[\"name/730\",[33,9.358]],[\"parent/730\",[32,0.228]],[\"name/731\",[379,67.093]],[\"parent/731\",[32,0.228]],[\"name/732\",[33,9.358]],[\"parent/732\",[32,0.228]],[\"name/733\",[380,67.093]],[\"parent/733\",[32,0.228]],[\"name/734\",[33,9.358]],[\"parent/734\",[32,0.228]],[\"name/735\",[381,67.093]],[\"parent/735\",[32,0.228]],[\"name/736\",[33,9.358]],[\"parent/736\",[32,0.228]],[\"name/737\",[382,67.093]],[\"parent/737\",[32,0.228]],[\"name/738\",[33,9.358]],[\"parent/738\",[32,0.228]],[\"name/739\",[383,67.093]],[\"parent/739\",[32,0.228]],[\"name/740\",[33,9.358]],[\"parent/740\",[32,0.228]],[\"name/741\",[384,67.093]],[\"parent/741\",[32,0.228]],[\"name/742\",[33,9.358]],[\"parent/742\",[32,0.228]],[\"name/743\",[385,67.093]],[\"parent/743\",[32,0.228]],[\"name/744\",[33,9.358]],[\"parent/744\",[32,0.228]],[\"name/745\",[386,67.093]],[\"parent/745\",[32,0.228]],[\"name/746\",[33,9.358]],[\"parent/746\",[32,0.228]],[\"name/747\",[387,67.093]],[\"parent/747\",[32,0.228]],[\"name/748\",[33,9.358]],[\"parent/748\",[32,0.228]],[\"name/749\",[388,67.093]],[\"parent/749\",[32,0.228]],[\"name/750\",[33,9.358]],[\"parent/750\",[32,0.228]],[\"name/751\",[389,67.093]],[\"parent/751\",[32,0.228]],[\"name/752\",[33,9.358]],[\"parent/752\",[32,0.228]],[\"name/753\",[390,67.093]],[\"parent/753\",[32,0.228]],[\"name/754\",[33,9.358]],[\"parent/754\",[32,0.228]],[\"name/755\",[391,67.093]],[\"parent/755\",[32,0.228]],[\"name/756\",[33,9.358]],[\"parent/756\",[32,0.228]],[\"name/757\",[392,67.093]],[\"parent/757\",[32,0.228]],[\"name/758\",[33,9.358]],[\"parent/758\",[32,0.228]],[\"name/759\",[393,67.093]],[\"parent/759\",[32,0.228]],[\"name/760\",[33,9.358]],[\"parent/760\",[32,0.228]],[\"name/761\",[394,67.093]],[\"parent/761\",[32,0.228]],[\"name/762\",[33,9.358]],[\"parent/762\",[32,0.228]],[\"name/763\",[395,67.093]],[\"parent/763\",[32,0.228]],[\"name/764\",[33,9.358]],[\"parent/764\",[32,0.228]],[\"name/765\",[396,67.093]],[\"parent/765\",[32,0.228]],[\"name/766\",[33,9.358]],[\"parent/766\",[32,0.228]],[\"name/767\",[397,67.093]],[\"parent/767\",[32,0.228]],[\"name/768\",[33,9.358]],[\"parent/768\",[32,0.228]],[\"name/769\",[398,67.093]],[\"parent/769\",[32,0.228]],[\"name/770\",[33,9.358]],[\"parent/770\",[32,0.228]],[\"name/771\",[399,67.093]],[\"parent/771\",[32,0.228]],[\"name/772\",[33,9.358]],[\"parent/772\",[32,0.228]],[\"name/773\",[400,67.093]],[\"parent/773\",[32,0.228]],[\"name/774\",[33,9.358]],[\"parent/774\",[32,0.228]],[\"name/775\",[401,67.093]],[\"parent/775\",[32,0.228]],[\"name/776\",[33,9.358]],[\"parent/776\",[32,0.228]],[\"name/777\",[402,67.093]],[\"parent/777\",[32,0.228]],[\"name/778\",[33,9.358]],[\"parent/778\",[32,0.228]],[\"name/779\",[403,67.093]],[\"parent/779\",[32,0.228]],[\"name/780\",[33,9.358]],[\"parent/780\",[32,0.228]],[\"name/781\",[404,67.093]],[\"parent/781\",[32,0.228]],[\"name/782\",[33,9.358]],[\"parent/782\",[32,0.228]],[\"name/783\",[405,67.093]],[\"parent/783\",[32,0.228]],[\"name/784\",[33,9.358]],[\"parent/784\",[32,0.228]],[\"name/785\",[406,67.093]],[\"parent/785\",[32,0.228]],[\"name/786\",[33,9.358]],[\"parent/786\",[32,0.228]],[\"name/787\",[407,67.093]],[\"parent/787\",[32,0.228]],[\"name/788\",[33,9.358]],[\"parent/788\",[32,0.228]],[\"name/789\",[408,67.093]],[\"parent/789\",[32,0.228]],[\"name/790\",[33,9.358]],[\"parent/790\",[32,0.228]],[\"name/791\",[409,67.093]],[\"parent/791\",[32,0.228]],[\"name/792\",[33,9.358]],[\"parent/792\",[32,0.228]],[\"name/793\",[410,67.093]],[\"parent/793\",[32,0.228]],[\"name/794\",[33,9.358]],[\"parent/794\",[32,0.228]],[\"name/795\",[411,67.093]],[\"parent/795\",[32,0.228]],[\"name/796\",[33,9.358]],[\"parent/796\",[32,0.228]],[\"name/797\",[412,67.093]],[\"parent/797\",[32,0.228]],[\"name/798\",[33,9.358]],[\"parent/798\",[32,0.228]],[\"name/799\",[413,67.093]],[\"parent/799\",[32,0.228]],[\"name/800\",[33,9.358]],[\"parent/800\",[32,0.228]],[\"name/801\",[414,67.093]],[\"parent/801\",[32,0.228]],[\"name/802\",[33,9.358]],[\"parent/802\",[32,0.228]],[\"name/803\",[415,67.093]],[\"parent/803\",[32,0.228]],[\"name/804\",[33,9.358]],[\"parent/804\",[32,0.228]],[\"name/805\",[416,67.093]],[\"parent/805\",[32,0.228]],[\"name/806\",[33,9.358]],[\"parent/806\",[32,0.228]],[\"name/807\",[417,67.093]],[\"parent/807\",[32,0.228]],[\"name/808\",[33,9.358]],[\"parent/808\",[32,0.228]],[\"name/809\",[418,67.093]],[\"parent/809\",[32,0.228]],[\"name/810\",[33,9.358]],[\"parent/810\",[32,0.228]],[\"name/811\",[419,67.093]],[\"parent/811\",[32,0.228]],[\"name/812\",[33,9.358]],[\"parent/812\",[32,0.228]],[\"name/813\",[420,67.093]],[\"parent/813\",[32,0.228]],[\"name/814\",[33,9.358]],[\"parent/814\",[32,0.228]],[\"name/815\",[421,67.093]],[\"parent/815\",[32,0.228]],[\"name/816\",[33,9.358]],[\"parent/816\",[32,0.228]],[\"name/817\",[422,67.093]],[\"parent/817\",[32,0.228]],[\"name/818\",[33,9.358]],[\"parent/818\",[32,0.228]],[\"name/819\",[423,67.093]],[\"parent/819\",[32,0.228]],[\"name/820\",[33,9.358]],[\"parent/820\",[32,0.228]],[\"name/821\",[424,67.093]],[\"parent/821\",[32,0.228]],[\"name/822\",[33,9.358]],[\"parent/822\",[32,0.228]],[\"name/823\",[425,67.093]],[\"parent/823\",[32,0.228]],[\"name/824\",[33,9.358]],[\"parent/824\",[32,0.228]],[\"name/825\",[426,67.093]],[\"parent/825\",[32,0.228]],[\"name/826\",[33,9.358]],[\"parent/826\",[32,0.228]],[\"name/827\",[427,67.093]],[\"parent/827\",[32,0.228]],[\"name/828\",[33,9.358]],[\"parent/828\",[32,0.228]],[\"name/829\",[428,67.093]],[\"parent/829\",[32,0.228]],[\"name/830\",[33,9.358]],[\"parent/830\",[32,0.228]],[\"name/831\",[429,67.093]],[\"parent/831\",[32,0.228]],[\"name/832\",[33,9.358]],[\"parent/832\",[32,0.228]],[\"name/833\",[430,67.093]],[\"parent/833\",[32,0.228]],[\"name/834\",[33,9.358]],[\"parent/834\",[32,0.228]],[\"name/835\",[431,67.093]],[\"parent/835\",[32,0.228]],[\"name/836\",[33,9.358]],[\"parent/836\",[32,0.228]],[\"name/837\",[432,67.093]],[\"parent/837\",[32,0.228]],[\"name/838\",[33,9.358]],[\"parent/838\",[32,0.228]],[\"name/839\",[433,67.093]],[\"parent/839\",[32,0.228]],[\"name/840\",[33,9.358]],[\"parent/840\",[32,0.228]],[\"name/841\",[434,67.093]],[\"parent/841\",[32,0.228]],[\"name/842\",[33,9.358]],[\"parent/842\",[32,0.228]],[\"name/843\",[435,67.093]],[\"parent/843\",[32,0.228]],[\"name/844\",[33,9.358]],[\"parent/844\",[32,0.228]],[\"name/845\",[436,67.093]],[\"parent/845\",[32,0.228]],[\"name/846\",[33,9.358]],[\"parent/846\",[32,0.228]],[\"name/847\",[437,67.093]],[\"parent/847\",[32,0.228]],[\"name/848\",[33,9.358]],[\"parent/848\",[32,0.228]],[\"name/849\",[438,67.093]],[\"parent/849\",[32,0.228]],[\"name/850\",[33,9.358]],[\"parent/850\",[32,0.228]],[\"name/851\",[439,67.093]],[\"parent/851\",[32,0.228]],[\"name/852\",[33,9.358]],[\"parent/852\",[32,0.228]],[\"name/853\",[440,67.093]],[\"parent/853\",[32,0.228]],[\"name/854\",[33,9.358]],[\"parent/854\",[32,0.228]],[\"name/855\",[441,67.093]],[\"parent/855\",[32,0.228]],[\"name/856\",[33,9.358]],[\"parent/856\",[32,0.228]],[\"name/857\",[442,67.093]],[\"parent/857\",[32,0.228]],[\"name/858\",[33,9.358]],[\"parent/858\",[32,0.228]],[\"name/859\",[443,67.093]],[\"parent/859\",[32,0.228]],[\"name/860\",[33,9.358]],[\"parent/860\",[32,0.228]],[\"name/861\",[444,67.093]],[\"parent/861\",[32,0.228]],[\"name/862\",[33,9.358]],[\"parent/862\",[32,0.228]],[\"name/863\",[445,67.093]],[\"parent/863\",[32,0.228]],[\"name/864\",[33,9.358]],[\"parent/864\",[32,0.228]],[\"name/865\",[446,67.093]],[\"parent/865\",[32,0.228]],[\"name/866\",[33,9.358]],[\"parent/866\",[32,0.228]],[\"name/867\",[447,67.093]],[\"parent/867\",[32,0.228]],[\"name/868\",[33,9.358]],[\"parent/868\",[32,0.228]],[\"name/869\",[448,67.093]],[\"parent/869\",[32,0.228]],[\"name/870\",[33,9.358]],[\"parent/870\",[32,0.228]],[\"name/871\",[449,67.093]],[\"parent/871\",[32,0.228]],[\"name/872\",[33,9.358]],[\"parent/872\",[32,0.228]],[\"name/873\",[450,67.093]],[\"parent/873\",[32,0.228]],[\"name/874\",[33,9.358]],[\"parent/874\",[32,0.228]],[\"name/875\",[451,67.093]],[\"parent/875\",[32,0.228]],[\"name/876\",[33,9.358]],[\"parent/876\",[32,0.228]],[\"name/877\",[452,67.093]],[\"parent/877\",[32,0.228]],[\"name/878\",[33,9.358]],[\"parent/878\",[32,0.228]],[\"name/879\",[453,67.093]],[\"parent/879\",[32,0.228]],[\"name/880\",[33,9.358]],[\"parent/880\",[32,0.228]],[\"name/881\",[454,67.093]],[\"parent/881\",[32,0.228]],[\"name/882\",[33,9.358]],[\"parent/882\",[32,0.228]],[\"name/883\",[455,67.093]],[\"parent/883\",[32,0.228]],[\"name/884\",[33,9.358]],[\"parent/884\",[32,0.228]],[\"name/885\",[456,67.093]],[\"parent/885\",[32,0.228]],[\"name/886\",[33,9.358]],[\"parent/886\",[32,0.228]],[\"name/887\",[457,67.093]],[\"parent/887\",[32,0.228]],[\"name/888\",[33,9.358]],[\"parent/888\",[32,0.228]],[\"name/889\",[458,67.093]],[\"parent/889\",[32,0.228]],[\"name/890\",[33,9.358]],[\"parent/890\",[32,0.228]],[\"name/891\",[459,67.093]],[\"parent/891\",[32,0.228]],[\"name/892\",[33,9.358]],[\"parent/892\",[32,0.228]],[\"name/893\",[460,67.093]],[\"parent/893\",[32,0.228]],[\"name/894\",[33,9.358]],[\"parent/894\",[32,0.228]],[\"name/895\",[461,67.093]],[\"parent/895\",[32,0.228]],[\"name/896\",[33,9.358]],[\"parent/896\",[32,0.228]],[\"name/897\",[462,67.093]],[\"parent/897\",[32,0.228]],[\"name/898\",[33,9.358]],[\"parent/898\",[32,0.228]],[\"name/899\",[463,67.093]],[\"parent/899\",[32,0.228]],[\"name/900\",[33,9.358]],[\"parent/900\",[32,0.228]],[\"name/901\",[464,67.093]],[\"parent/901\",[32,0.228]],[\"name/902\",[33,9.358]],[\"parent/902\",[32,0.228]],[\"name/903\",[465,67.093]],[\"parent/903\",[32,0.228]],[\"name/904\",[33,9.358]],[\"parent/904\",[32,0.228]],[\"name/905\",[466,67.093]],[\"parent/905\",[32,0.228]],[\"name/906\",[33,9.358]],[\"parent/906\",[32,0.228]],[\"name/907\",[467,67.093]],[\"parent/907\",[32,0.228]],[\"name/908\",[33,9.358]],[\"parent/908\",[32,0.228]],[\"name/909\",[468,67.093]],[\"parent/909\",[32,0.228]],[\"name/910\",[33,9.358]],[\"parent/910\",[32,0.228]],[\"name/911\",[469,67.093]],[\"parent/911\",[32,0.228]],[\"name/912\",[33,9.358]],[\"parent/912\",[32,0.228]],[\"name/913\",[470,67.093]],[\"parent/913\",[32,0.228]],[\"name/914\",[33,9.358]],[\"parent/914\",[32,0.228]],[\"name/915\",[471,67.093]],[\"parent/915\",[32,0.228]],[\"name/916\",[33,9.358]],[\"parent/916\",[32,0.228]],[\"name/917\",[472,67.093]],[\"parent/917\",[32,0.228]],[\"name/918\",[33,9.358]],[\"parent/918\",[32,0.228]],[\"name/919\",[473,67.093]],[\"parent/919\",[32,0.228]],[\"name/920\",[33,9.358]],[\"parent/920\",[32,0.228]],[\"name/921\",[474,67.093]],[\"parent/921\",[32,0.228]],[\"name/922\",[33,9.358]],[\"parent/922\",[32,0.228]],[\"name/923\",[475,67.093]],[\"parent/923\",[32,0.228]],[\"name/924\",[33,9.358]],[\"parent/924\",[32,0.228]],[\"name/925\",[476,67.093]],[\"parent/925\",[32,0.228]],[\"name/926\",[33,9.358]],[\"parent/926\",[32,0.228]],[\"name/927\",[477,67.093]],[\"parent/927\",[32,0.228]],[\"name/928\",[33,9.358]],[\"parent/928\",[32,0.228]],[\"name/929\",[478,67.093]],[\"parent/929\",[32,0.228]],[\"name/930\",[33,9.358]],[\"parent/930\",[32,0.228]],[\"name/931\",[479,67.093]],[\"parent/931\",[32,0.228]],[\"name/932\",[33,9.358]],[\"parent/932\",[32,0.228]],[\"name/933\",[480,67.093]],[\"parent/933\",[32,0.228]],[\"name/934\",[33,9.358]],[\"parent/934\",[32,0.228]],[\"name/935\",[481,67.093]],[\"parent/935\",[32,0.228]],[\"name/936\",[33,9.358]],[\"parent/936\",[32,0.228]],[\"name/937\",[482,67.093]],[\"parent/937\",[32,0.228]],[\"name/938\",[33,9.358]],[\"parent/938\",[32,0.228]],[\"name/939\",[483,67.093]],[\"parent/939\",[32,0.228]],[\"name/940\",[33,9.358]],[\"parent/940\",[32,0.228]],[\"name/941\",[484,67.093]],[\"parent/941\",[32,0.228]],[\"name/942\",[33,9.358]],[\"parent/942\",[32,0.228]],[\"name/943\",[485,67.093]],[\"parent/943\",[32,0.228]],[\"name/944\",[33,9.358]],[\"parent/944\",[32,0.228]],[\"name/945\",[486,67.093]],[\"parent/945\",[32,0.228]],[\"name/946\",[33,9.358]],[\"parent/946\",[32,0.228]],[\"name/947\",[487,67.093]],[\"parent/947\",[32,0.228]],[\"name/948\",[33,9.358]],[\"parent/948\",[32,0.228]],[\"name/949\",[488,67.093]],[\"parent/949\",[32,0.228]],[\"name/950\",[33,9.358]],[\"parent/950\",[32,0.228]],[\"name/951\",[489,67.093]],[\"parent/951\",[32,0.228]],[\"name/952\",[33,9.358]],[\"parent/952\",[32,0.228]],[\"name/953\",[490,67.093]],[\"parent/953\",[32,0.228]],[\"name/954\",[33,9.358]],[\"parent/954\",[32,0.228]],[\"name/955\",[491,67.093]],[\"parent/955\",[32,0.228]],[\"name/956\",[33,9.358]],[\"parent/956\",[32,0.228]],[\"name/957\",[492,67.093]],[\"parent/957\",[32,0.228]],[\"name/958\",[33,9.358]],[\"parent/958\",[32,0.228]],[\"name/959\",[493,67.093]],[\"parent/959\",[32,0.228]],[\"name/960\",[33,9.358]],[\"parent/960\",[32,0.228]],[\"name/961\",[494,67.093]],[\"parent/961\",[32,0.228]],[\"name/962\",[33,9.358]],[\"parent/962\",[32,0.228]],[\"name/963\",[495,67.093]],[\"parent/963\",[32,0.228]],[\"name/964\",[33,9.358]],[\"parent/964\",[32,0.228]],[\"name/965\",[496,67.093]],[\"parent/965\",[32,0.228]],[\"name/966\",[33,9.358]],[\"parent/966\",[32,0.228]],[\"name/967\",[497,67.093]],[\"parent/967\",[32,0.228]],[\"name/968\",[33,9.358]],[\"parent/968\",[32,0.228]],[\"name/969\",[498,67.093]],[\"parent/969\",[32,0.228]],[\"name/970\",[33,9.358]],[\"parent/970\",[32,0.228]],[\"name/971\",[499,67.093]],[\"parent/971\",[32,0.228]],[\"name/972\",[33,9.358]],[\"parent/972\",[32,0.228]],[\"name/973\",[500,67.093]],[\"parent/973\",[32,0.228]],[\"name/974\",[33,9.358]],[\"parent/974\",[32,0.228]],[\"name/975\",[501,67.093]],[\"parent/975\",[32,0.228]],[\"name/976\",[33,9.358]],[\"parent/976\",[32,0.228]],[\"name/977\",[502,67.093]],[\"parent/977\",[32,0.228]],[\"name/978\",[33,9.358]],[\"parent/978\",[32,0.228]],[\"name/979\",[503,67.093]],[\"parent/979\",[32,0.228]],[\"name/980\",[33,9.358]],[\"parent/980\",[32,0.228]],[\"name/981\",[504,67.093]],[\"parent/981\",[32,0.228]],[\"name/982\",[33,9.358]],[\"parent/982\",[32,0.228]],[\"name/983\",[505,67.093]],[\"parent/983\",[32,0.228]],[\"name/984\",[33,9.358]],[\"parent/984\",[32,0.228]],[\"name/985\",[506,67.093]],[\"parent/985\",[32,0.228]],[\"name/986\",[33,9.358]],[\"parent/986\",[32,0.228]],[\"name/987\",[507,67.093]],[\"parent/987\",[32,0.228]],[\"name/988\",[33,9.358]],[\"parent/988\",[32,0.228]],[\"name/989\",[508,67.093]],[\"parent/989\",[32,0.228]],[\"name/990\",[33,9.358]],[\"parent/990\",[32,0.228]],[\"name/991\",[509,67.093]],[\"parent/991\",[32,0.228]],[\"name/992\",[33,9.358]],[\"parent/992\",[32,0.228]],[\"name/993\",[510,67.093]],[\"parent/993\",[32,0.228]],[\"name/994\",[33,9.358]],[\"parent/994\",[32,0.228]],[\"name/995\",[511,67.093]],[\"parent/995\",[32,0.228]],[\"name/996\",[33,9.358]],[\"parent/996\",[32,0.228]],[\"name/997\",[512,67.093]],[\"parent/997\",[32,0.228]],[\"name/998\",[33,9.358]],[\"parent/998\",[32,0.228]],[\"name/999\",[513,67.093]],[\"parent/999\",[32,0.228]],[\"name/1000\",[33,9.358]],[\"parent/1000\",[32,0.228]],[\"name/1001\",[514,67.093]],[\"parent/1001\",[32,0.228]],[\"name/1002\",[33,9.358]],[\"parent/1002\",[32,0.228]],[\"name/1003\",[515,67.093]],[\"parent/1003\",[32,0.228]],[\"name/1004\",[33,9.358]],[\"parent/1004\",[32,0.228]],[\"name/1005\",[516,67.093]],[\"parent/1005\",[32,0.228]],[\"name/1006\",[33,9.358]],[\"parent/1006\",[32,0.228]],[\"name/1007\",[517,67.093]],[\"parent/1007\",[32,0.228]],[\"name/1008\",[518,67.093]],[\"parent/1008\",[32,0.228]],[\"name/1009\",[519,67.093]],[\"parent/1009\",[32,0.228]],[\"name/1010\",[520,67.093]],[\"parent/1010\",[32,0.228]],[\"name/1011\",[521,67.093]],[\"parent/1011\",[32,0.228]],[\"name/1012\",[522,67.093]],[\"parent/1012\",[32,0.228]],[\"name/1013\",[523,67.093]],[\"parent/1013\",[32,0.228]],[\"name/1014\",[524,67.093]],[\"parent/1014\",[32,0.228]],[\"name/1015\",[525,25.984]],[\"parent/1015\",[]],[\"name/1016\",[247,58.62]],[\"parent/1016\",[525,2.556]],[\"name/1017\",[18,58.62]],[\"parent/1017\",[525,2.556]],[\"name/1018\",[526,67.093]],[\"parent/1018\",[525,2.556]],[\"name/1019\",[20,58.62]],[\"parent/1019\",[525,2.556]],[\"name/1020\",[527,58.62]],[\"parent/1020\",[525,2.556]],[\"name/1021\",[528,67.093]],[\"parent/1021\",[525,2.556]],[\"name/1022\",[529,67.093]],[\"parent/1022\",[525,2.556]],[\"name/1023\",[530,58.62]],[\"parent/1023\",[525,2.556]],[\"name/1024\",[531,58.62]],[\"parent/1024\",[525,2.556]],[\"name/1025\",[532,58.62]],[\"parent/1025\",[525,2.556]],[\"name/1026\",[533,58.62]],[\"parent/1026\",[525,2.556]],[\"name/1027\",[534,61.985]],[\"parent/1027\",[525,2.556]],[\"name/1028\",[535,67.093]],[\"parent/1028\",[525,2.556]],[\"name/1029\",[536,67.093]],[\"parent/1029\",[525,2.556]],[\"name/1030\",[537,61.985]],[\"parent/1030\",[525,2.556]],[\"name/1031\",[538,58.62]],[\"parent/1031\",[525,2.556]],[\"name/1032\",[539,58.62]],[\"parent/1032\",[525,2.556]],[\"name/1033\",[540,61.985]],[\"parent/1033\",[525,2.556]],[\"name/1034\",[541,67.093]],[\"parent/1034\",[525,2.556]],[\"name/1035\",[542,67.093]],[\"parent/1035\",[525,2.556]],[\"name/1036\",[543,67.093]],[\"parent/1036\",[525,2.556]],[\"name/1037\",[544,67.093]],[\"parent/1037\",[525,2.556]],[\"name/1038\",[545,67.093]],[\"parent/1038\",[525,2.556]],[\"name/1039\",[546,67.093]],[\"parent/1039\",[525,2.556]],[\"name/1040\",[547,58.62]],[\"parent/1040\",[525,2.556]],[\"name/1041\",[548,58.62]],[\"parent/1041\",[525,2.556]],[\"name/1042\",[549,58.62]],[\"parent/1042\",[525,2.556]],[\"name/1043\",[550,58.62]],[\"parent/1043\",[525,2.556]],[\"name/1044\",[551,58.62]],[\"parent/1044\",[525,2.556]],[\"name/1045\",[552,67.093]],[\"parent/1045\",[525,2.556]],[\"name/1046\",[8,58.62]],[\"parent/1046\",[525,2.556]],[\"name/1047\",[553,67.093]],[\"parent/1047\",[525,2.556]],[\"name/1048\",[554,67.093]],[\"parent/1048\",[525,2.556]],[\"name/1049\",[555,67.093]],[\"parent/1049\",[525,2.556]],[\"name/1050\",[556,67.093]],[\"parent/1050\",[525,2.556]],[\"name/1051\",[557,61.985]],[\"parent/1051\",[525,2.556]],[\"name/1052\",[558,67.093]],[\"parent/1052\",[525,2.556]],[\"name/1053\",[559,67.093]],[\"parent/1053\",[525,2.556]],[\"name/1054\",[560,67.093]],[\"parent/1054\",[525,2.556]],[\"name/1055\",[561,67.093]],[\"parent/1055\",[525,2.556]],[\"name/1056\",[562,67.093]],[\"parent/1056\",[525,2.556]],[\"name/1057\",[563,67.093]],[\"parent/1057\",[525,2.556]],[\"name/1058\",[564,67.093]],[\"parent/1058\",[525,2.556]],[\"name/1059\",[565,67.093]],[\"parent/1059\",[525,2.556]],[\"name/1060\",[566,67.093]],[\"parent/1060\",[525,2.556]],[\"name/1061\",[567,67.093]],[\"parent/1061\",[525,2.556]],[\"name/1062\",[568,67.093]],[\"parent/1062\",[525,2.556]],[\"name/1063\",[569,67.093]],[\"parent/1063\",[525,2.556]],[\"name/1064\",[570,67.093]],[\"parent/1064\",[525,2.556]],[\"name/1065\",[571,67.093]],[\"parent/1065\",[525,2.556]],[\"name/1066\",[572,67.093]],[\"parent/1066\",[525,2.556]],[\"name/1067\",[573,67.093]],[\"parent/1067\",[525,2.556]],[\"name/1068\",[574,67.093]],[\"parent/1068\",[525,2.556]],[\"name/1069\",[575,67.093]],[\"parent/1069\",[525,2.556]],[\"name/1070\",[576,67.093]],[\"parent/1070\",[525,2.556]],[\"name/1071\",[577,67.093]],[\"parent/1071\",[525,2.556]],[\"name/1072\",[578,67.093]],[\"parent/1072\",[525,2.556]],[\"name/1073\",[579,67.093]],[\"parent/1073\",[525,2.556]],[\"name/1074\",[580,67.093]],[\"parent/1074\",[525,2.556]],[\"name/1075\",[581,67.093]],[\"parent/1075\",[525,2.556]],[\"name/1076\",[582,67.093]],[\"parent/1076\",[525,2.556]],[\"name/1077\",[583,67.093]],[\"parent/1077\",[525,2.556]],[\"name/1078\",[584,67.093]],[\"parent/1078\",[525,2.556]],[\"name/1079\",[585,67.093]],[\"parent/1079\",[525,2.556]],[\"name/1080\",[586,67.093]],[\"parent/1080\",[525,2.556]],[\"name/1081\",[587,67.093]],[\"parent/1081\",[525,2.556]],[\"name/1082\",[588,67.093]],[\"parent/1082\",[525,2.556]],[\"name/1083\",[589,67.093]],[\"parent/1083\",[525,2.556]],[\"name/1084\",[590,67.093]],[\"parent/1084\",[525,2.556]],[\"name/1085\",[591,67.093]],[\"parent/1085\",[525,2.556]],[\"name/1086\",[592,67.093]],[\"parent/1086\",[525,2.556]],[\"name/1087\",[593,58.62]],[\"parent/1087\",[525,2.556]],[\"name/1088\",[594,58.62]],[\"parent/1088\",[525,2.556]],[\"name/1089\",[23,61.985]],[\"parent/1089\",[525,2.556]],[\"name/1090\",[24,61.985]],[\"parent/1090\",[525,2.556]],[\"name/1091\",[595,67.093]],[\"parent/1091\",[525,2.556]],[\"name/1092\",[596,67.093]],[\"parent/1092\",[525,2.556]],[\"name/1093\",[597,67.093]],[\"parent/1093\",[525,2.556]],[\"name/1094\",[598,67.093]],[\"parent/1094\",[525,2.556]],[\"name/1095\",[599,67.093]],[\"parent/1095\",[525,2.556]],[\"name/1096\",[600,67.093]],[\"parent/1096\",[525,2.556]],[\"name/1097\",[601,67.093]],[\"parent/1097\",[525,2.556]],[\"name/1098\",[602,67.093]],[\"parent/1098\",[525,2.556]],[\"name/1099\",[603,67.093]],[\"parent/1099\",[525,2.556]],[\"name/1100\",[604,67.093]],[\"parent/1100\",[525,2.556]],[\"name/1101\",[605,58.62]],[\"parent/1101\",[525,2.556]],[\"name/1102\",[606,67.093]],[\"parent/1102\",[525,2.556]],[\"name/1103\",[607,61.985]],[\"parent/1103\",[525,2.556]],[\"name/1104\",[608,67.093]],[\"parent/1104\",[525,2.556]],[\"name/1105\",[609,61.985]],[\"parent/1105\",[525,2.556]],[\"name/1106\",[610,32.753]],[\"parent/1106\",[]],[\"name/1107\",[50,61.985]],[\"parent/1107\",[610,3.222]],[\"name/1108\",[527,58.62]],[\"parent/1108\",[610,3.222]],[\"name/1109\",[530,58.62]],[\"parent/1109\",[610,3.222]],[\"name/1110\",[531,58.62]],[\"parent/1110\",[610,3.222]],[\"name/1111\",[532,58.62]],[\"parent/1111\",[610,3.222]],[\"name/1112\",[538,58.62]],[\"parent/1112\",[610,3.222]],[\"name/1113\",[539,58.62]],[\"parent/1113\",[610,3.222]],[\"name/1114\",[533,58.62]],[\"parent/1114\",[610,3.222]],[\"name/1115\",[557,61.985]],[\"parent/1115\",[610,3.222]],[\"name/1116\",[534,61.985]],[\"parent/1116\",[610,3.222]],[\"name/1117\",[537,61.985]],[\"parent/1117\",[610,3.222]],[\"name/1118\",[540,61.985]],[\"parent/1118\",[610,3.222]],[\"name/1119\",[611,67.093]],[\"parent/1119\",[610,3.222]],[\"name/1120\",[612,67.093]],[\"parent/1120\",[610,3.222]],[\"name/1121\",[613,67.093]],[\"parent/1121\",[610,3.222]],[\"name/1122\",[614,67.093]],[\"parent/1122\",[610,3.222]],[\"name/1123\",[615,67.093]],[\"parent/1123\",[610,3.222]],[\"name/1124\",[616,67.093]],[\"parent/1124\",[610,3.222]],[\"name/1125\",[617,67.093]],[\"parent/1125\",[610,3.222]],[\"name/1126\",[618,67.093]],[\"parent/1126\",[610,3.222]],[\"name/1127\",[619,67.093]],[\"parent/1127\",[610,3.222]],[\"name/1128\",[620,67.093]],[\"parent/1128\",[610,3.222]],[\"name/1129\",[621,67.093]],[\"parent/1129\",[610,3.222]],[\"name/1130\",[622,67.093]],[\"parent/1130\",[610,3.222]],[\"name/1131\",[623,67.093]],[\"parent/1131\",[610,3.222]],[\"name/1132\",[624,67.093]],[\"parent/1132\",[610,3.222]],[\"name/1133\",[625,67.093]],[\"parent/1133\",[610,3.222]],[\"name/1134\",[626,67.093]],[\"parent/1134\",[610,3.222]],[\"name/1135\",[627,67.093]],[\"parent/1135\",[610,3.222]],[\"name/1136\",[628,67.093]],[\"parent/1136\",[610,3.222]],[\"name/1137\",[629,67.093]],[\"parent/1137\",[610,3.222]],[\"name/1138\",[630,67.093]],[\"parent/1138\",[610,3.222]],[\"name/1139\",[631,67.093]],[\"parent/1139\",[610,3.222]],[\"name/1140\",[632,67.093]],[\"parent/1140\",[610,3.222]],[\"name/1141\",[547,58.62]],[\"parent/1141\",[610,3.222]],[\"name/1142\",[548,58.62]],[\"parent/1142\",[610,3.222]],[\"name/1143\",[549,58.62]],[\"parent/1143\",[610,3.222]],[\"name/1144\",[550,58.62]],[\"parent/1144\",[610,3.222]],[\"name/1145\",[551,58.62]],[\"parent/1145\",[610,3.222]],[\"name/1146\",[593,58.62]],[\"parent/1146\",[610,3.222]],[\"name/1147\",[594,58.62]],[\"parent/1147\",[610,3.222]],[\"name/1148\",[633,67.093]],[\"parent/1148\",[610,3.222]],[\"name/1149\",[605,58.62]],[\"parent/1149\",[610,3.222]],[\"name/1150\",[609,61.985]],[\"parent/1150\",[610,3.222]],[\"name/1151\",[634,61.985]],[\"parent/1151\",[610,3.222]],[\"name/1152\",[635,40.013]],[\"parent/1152\",[]],[\"name/1153\",[209,61.985]],[\"parent/1153\",[635,3.936]],[\"name/1154\",[527,58.62]],[\"parent/1154\",[635,3.936]],[\"name/1155\",[530,58.62]],[\"parent/1155\",[635,3.936]],[\"name/1156\",[531,58.62]],[\"parent/1156\",[635,3.936]],[\"name/1157\",[532,58.62]],[\"parent/1157\",[635,3.936]],[\"name/1158\",[538,58.62]],[\"parent/1158\",[635,3.936]],[\"name/1159\",[636,67.093]],[\"parent/1159\",[635,3.936]],[\"name/1160\",[539,58.62]],[\"parent/1160\",[635,3.936]],[\"name/1161\",[533,58.62]],[\"parent/1161\",[635,3.936]],[\"name/1162\",[547,58.62]],[\"parent/1162\",[635,3.936]],[\"name/1163\",[548,58.62]],[\"parent/1163\",[635,3.936]],[\"name/1164\",[549,58.62]],[\"parent/1164\",[635,3.936]],[\"name/1165\",[550,58.62]],[\"parent/1165\",[635,3.936]],[\"name/1166\",[551,58.62]],[\"parent/1166\",[635,3.936]],[\"name/1167\",[637,67.093]],[\"parent/1167\",[635,3.936]],[\"name/1168\",[638,67.093]],[\"parent/1168\",[635,3.936]],[\"name/1169\",[593,58.62]],[\"parent/1169\",[635,3.936]],[\"name/1170\",[594,58.62]],[\"parent/1170\",[635,3.936]],[\"name/1171\",[605,58.62]],[\"parent/1171\",[635,3.936]],[\"name/1172\",[607,61.985]],[\"parent/1172\",[635,3.936]],[\"name/1173\",[634,61.985]],[\"parent/1173\",[635,3.936]],[\"name/1174\",[639,56.107]],[\"parent/1174\",[]],[\"name/1175\",[18,58.62]],[\"parent/1175\",[639,5.519]],[\"name/1176\",[19,61.985]],[\"parent/1176\",[639,5.519]],[\"name/1177\",[20,58.62]],[\"parent/1177\",[639,5.519]],[\"name/1178\",[640,67.093]],[\"parent/1178\",[]],[\"name/1179\",[641,67.093]],[\"parent/1179\",[]],[\"name/1180\",[642,67.093]],[\"parent/1180\",[]],[\"name/1181\",[643,67.093]],[\"parent/1181\",[]],[\"name/1182\",[644,67.093]],[\"parent/1182\",[]],[\"name/1183\",[645,67.093]],[\"parent/1183\",[]],[\"name/1184\",[646,67.093]],[\"parent/1184\",[]],[\"name/1185\",[647,67.093]],[\"parent/1185\",[]],[\"name/1186\",[648,67.093]],[\"parent/1186\",[]],[\"name/1187\",[649,67.093]],[\"parent/1187\",[]],[\"name/1188\",[650,67.093]],[\"parent/1188\",[]],[\"name/1189\",[651,67.093]],[\"parent/1189\",[]],[\"name/1190\",[652,67.093]],[\"parent/1190\",[]],[\"name/1191\",[653,67.093]],[\"parent/1191\",[]],[\"name/1192\",[654,67.093]],[\"parent/1192\",[]],[\"name/1193\",[655,67.093]],[\"parent/1193\",[]],[\"name/1194\",[656,67.093]],[\"parent/1194\",[]],[\"name/1195\",[657,67.093]],[\"parent/1195\",[]],[\"name/1196\",[658,67.093]],[\"parent/1196\",[]],[\"name/1197\",[659,67.093]],[\"parent/1197\",[]],[\"name/1198\",[660,67.093]],[\"parent/1198\",[]],[\"name/1199\",[661,67.093]],[\"parent/1199\",[]],[\"name/1200\",[662,67.093]],[\"parent/1200\",[]],[\"name/1201\",[663,67.093]],[\"parent/1201\",[]],[\"name/1202\",[664,67.093]],[\"parent/1202\",[]],[\"name/1203\",[665,67.093]],[\"parent/1203\",[]],[\"name/1204\",[666,67.093]],[\"parent/1204\",[]],[\"name/1205\",[667,67.093]],[\"parent/1205\",[]],[\"name/1206\",[668,67.093]],[\"parent/1206\",[]],[\"name/1207\",[669,67.093]],[\"parent/1207\",[]],[\"name/1208\",[247,58.62]],[\"parent/1208\",[]],[\"name/1209\",[670,67.093]],[\"parent/1209\",[]],[\"name/1210\",[671,49.747]],[\"parent/1210\",[]],[\"name/1211\",[672,67.093]],[\"parent/1211\",[671,4.893]],[\"name/1212\",[673,67.093]],[\"parent/1212\",[671,4.893]],[\"name/1213\",[674,67.093]],[\"parent/1213\",[671,4.893]],[\"name/1214\",[675,67.093]],[\"parent/1214\",[671,4.893]],[\"name/1215\",[676,67.093]],[\"parent/1215\",[671,4.893]],[\"name/1216\",[677,67.093]],[\"parent/1216\",[671,4.893]],[\"name/1217\",[678,67.093]],[\"parent/1217\",[671,4.893]],[\"name/1218\",[679,49.747]],[\"parent/1218\",[]],[\"name/1219\",[680,67.093]],[\"parent/1219\",[679,4.893]],[\"name/1220\",[681,67.093]],[\"parent/1220\",[679,4.893]],[\"name/1221\",[682,67.093]],[\"parent/1221\",[679,4.893]],[\"name/1222\",[683,67.093]],[\"parent/1222\",[679,4.893]],[\"name/1223\",[684,67.093]],[\"parent/1223\",[679,4.893]],[\"name/1224\",[685,67.093]],[\"parent/1224\",[679,4.893]],[\"name/1225\",[686,67.093]],[\"parent/1225\",[679,4.893]],[\"name/1226\",[687,58.62]],[\"parent/1226\",[]],[\"name/1227\",[688,67.093]],[\"parent/1227\",[687,5.766]],[\"name/1228\",[689,67.093]],[\"parent/1228\",[687,5.766]]],\"invertedIndex\":[[\"__gmp_randstate_struct_ptr\",{\"_index\":648,\"name\":{\"1186\":{}},\"parent\":{}}],[\"__type\",{\"_index\":33,\"name\":{\"42\":{},\"44\":{},\"46\":{},\"48\":{},\"52\":{},\"54\":{},\"56\":{},\"58\":{},\"60\":{},\"62\":{},\"64\":{},\"66\":{},\"68\":{},\"70\":{},\"72\":{},\"74\":{},\"76\":{},\"78\":{},\"80\":{},\"82\":{},\"84\":{},\"86\":{},\"88\":{},\"90\":{},\"92\":{},\"94\":{},\"96\":{},\"98\":{},\"100\":{},\"102\":{},\"104\":{},\"106\":{},\"108\":{},\"110\":{},\"112\":{},\"114\":{},\"116\":{},\"118\":{},\"120\":{},\"122\":{},\"124\":{},\"126\":{},\"128\":{},\"130\":{},\"132\":{},\"134\":{},\"136\":{},\"138\":{},\"140\":{},\"142\":{},\"144\":{},\"146\":{},\"148\":{},\"150\":{},\"152\":{},\"154\":{},\"156\":{},\"158\":{},\"160\":{},\"162\":{},\"164\":{},\"166\":{},\"168\":{},\"170\":{},\"172\":{},\"174\":{},\"176\":{},\"178\":{},\"180\":{},\"182\":{},\"184\":{},\"186\":{},\"188\":{},\"190\":{},\"192\":{},\"194\":{},\"196\":{},\"198\":{},\"200\":{},\"202\":{},\"204\":{},\"206\":{},\"208\":{},\"210\":{},\"212\":{},\"214\":{},\"216\":{},\"218\":{},\"220\":{},\"222\":{},\"224\":{},\"226\":{},\"228\":{},\"230\":{},\"232\":{},\"234\":{},\"236\":{},\"238\":{},\"240\":{},\"242\":{},\"244\":{},\"246\":{},\"248\":{},\"250\":{},\"252\":{},\"254\":{},\"256\":{},\"258\":{},\"260\":{},\"262\":{},\"264\":{},\"266\":{},\"268\":{},\"270\":{},\"272\":{},\"274\":{},\"276\":{},\"278\":{},\"280\":{},\"282\":{},\"284\":{},\"286\":{},\"288\":{},\"290\":{},\"292\":{},\"294\":{},\"296\":{},\"298\":{},\"300\":{},\"302\":{},\"304\":{},\"306\":{},\"308\":{},\"310\":{},\"312\":{},\"314\":{},\"316\":{},\"318\":{},\"320\":{},\"322\":{},\"324\":{},\"326\":{},\"328\":{},\"330\":{},\"332\":{},\"334\":{},\"336\":{},\"338\":{},\"340\":{},\"342\":{},\"344\":{},\"346\":{},\"348\":{},\"350\":{},\"352\":{},\"354\":{},\"356\":{},\"358\":{},\"360\":{},\"362\":{},\"364\":{},\"366\":{},\"368\":{},\"370\":{},\"372\":{},\"374\":{},\"376\":{},\"378\":{},\"380\":{},\"382\":{},\"384\":{},\"386\":{},\"388\":{},\"390\":{},\"392\":{},\"394\":{},\"396\":{},\"398\":{},\"400\":{},\"402\":{},\"404\":{},\"406\":{},\"408\":{},\"410\":{},\"412\":{},\"414\":{},\"416\":{},\"418\":{},\"420\":{},\"422\":{},\"424\":{},\"426\":{},\"428\":{},\"430\":{},\"432\":{},\"434\":{},\"436\":{},\"438\":{},\"440\":{},\"442\":{},\"444\":{},\"446\":{},\"448\":{},\"450\":{},\"452\":{},\"454\":{},\"456\":{},\"458\":{},\"460\":{},\"462\":{},\"464\":{},\"466\":{},\"468\":{},\"470\":{},\"472\":{},\"474\":{},\"476\":{},\"478\":{},\"480\":{},\"482\":{},\"484\":{},\"486\":{},\"488\":{},\"490\":{},\"492\":{},\"494\":{},\"496\":{},\"498\":{},\"500\":{},\"502\":{},\"504\":{},\"506\":{},\"508\":{},\"510\":{},\"512\":{},\"514\":{},\"516\":{},\"518\":{},\"520\":{},\"522\":{},\"524\":{},\"526\":{},\"528\":{},\"530\":{},\"532\":{},\"534\":{},\"536\":{},\"538\":{},\"540\":{},\"542\":{},\"544\":{},\"546\":{},\"548\":{},\"550\":{},\"552\":{},\"554\":{},\"556\":{},\"558\":{},\"560\":{},\"562\":{},\"564\":{},\"566\":{},\"568\":{},\"570\":{},\"572\":{},\"574\":{},\"576\":{},\"578\":{},\"580\":{},\"582\":{},\"584\":{},\"586\":{},\"588\":{},\"590\":{},\"592\":{},\"594\":{},\"596\":{},\"598\":{},\"600\":{},\"602\":{},\"604\":{},\"606\":{},\"608\":{},\"610\":{},\"612\":{},\"614\":{},\"616\":{},\"618\":{},\"620\":{},\"622\":{},\"624\":{},\"626\":{},\"628\":{},\"630\":{},\"632\":{},\"634\":{},\"636\":{},\"638\":{},\"640\":{},\"642\":{},\"644\":{},\"646\":{},\"648\":{},\"650\":{},\"652\":{},\"654\":{},\"656\":{},\"658\":{},\"660\":{},\"662\":{},\"664\":{},\"666\":{},\"668\":{},\"670\":{},\"672\":{},\"674\":{},\"676\":{},\"678\":{},\"680\":{},\"682\":{},\"684\":{},\"686\":{},\"688\":{},\"690\":{},\"692\":{},\"694\":{},\"696\":{},\"698\":{},\"700\":{},\"702\":{},\"704\":{},\"706\":{},\"708\":{},\"710\":{},\"712\":{},\"714\":{},\"716\":{},\"718\":{},\"720\":{},\"722\":{},\"724\":{},\"726\":{},\"728\":{},\"730\":{},\"732\":{},\"734\":{},\"736\":{},\"738\":{},\"740\":{},\"742\":{},\"744\":{},\"746\":{},\"748\":{},\"750\":{},\"752\":{},\"754\":{},\"756\":{},\"758\":{},\"760\":{},\"762\":{},\"764\":{},\"766\":{},\"768\":{},\"770\":{},\"772\":{},\"774\":{},\"776\":{},\"778\":{},\"780\":{},\"782\":{},\"784\":{},\"786\":{},\"788\":{},\"790\":{},\"792\":{},\"794\":{},\"796\":{},\"798\":{},\"800\":{},\"802\":{},\"804\":{},\"806\":{},\"808\":{},\"810\":{},\"812\":{},\"814\":{},\"816\":{},\"818\":{},\"820\":{},\"822\":{},\"824\":{},\"826\":{},\"828\":{},\"830\":{},\"832\":{},\"834\":{},\"836\":{},\"838\":{},\"840\":{},\"842\":{},\"844\":{},\"846\":{},\"848\":{},\"850\":{},\"852\":{},\"854\":{},\"856\":{},\"858\":{},\"860\":{},\"862\":{},\"864\":{},\"866\":{},\"868\":{},\"870\":{},\"872\":{},\"874\":{},\"876\":{},\"878\":{},\"880\":{},\"882\":{},\"884\":{},\"886\":{},\"888\":{},\"890\":{},\"892\":{},\"894\":{},\"896\":{},\"898\":{},\"900\":{},\"902\":{},\"904\":{},\"906\":{},\"908\":{},\"910\":{},\"912\":{},\"914\":{},\"916\":{},\"918\":{},\"920\":{},\"922\":{},\"924\":{},\"926\":{},\"928\":{},\"930\":{},\"932\":{},\"934\":{},\"936\":{},\"938\":{},\"940\":{},\"942\":{},\"944\":{},\"946\":{},\"948\":{},\"950\":{},\"952\":{},\"954\":{},\"956\":{},\"958\":{},\"960\":{},\"962\":{},\"964\":{},\"966\":{},\"968\":{},\"970\":{},\"972\":{},\"974\":{},\"976\":{},\"978\":{},\"980\":{},\"982\":{},\"984\":{},\"986\":{},\"988\":{},\"990\":{},\"992\":{},\"994\":{},\"996\":{},\"998\":{},\"1000\":{},\"1002\":{},\"1004\":{},\"1006\":{}},\"parent\":{}}],[\"abs\",{\"_index\":539,\"name\":{\"1032\":{},\"1113\":{},\"1160\":{}},\"parent\":{}}],[\"acos\",{\"_index\":564,\"name\":{\"1058\":{}},\"parent\":{}}],[\"acosh\",{\"_index\":573,\"name\":{\"1067\":{}},\"parent\":{}}],[\"add\",{\"_index\":530,\"name\":{\"1023\":{},\"1109\":{},\"1155\":{}},\"parent\":{}}],[\"agm\",{\"_index\":591,\"name\":{\"1085\":{}},\"parent\":{}}],[\"ai\",{\"_index\":592,\"name\":{\"1086\":{}},\"parent\":{}}],[\"and\",{\"_index\":618,\"name\":{\"1126\":{}},\"parent\":{}}],[\"asin\",{\"_index\":565,\"name\":{\"1059\":{}},\"parent\":{}}],[\"asinh\",{\"_index\":574,\"name\":{\"1068\":{}},\"parent\":{}}],[\"atan\",{\"_index\":566,\"name\":{\"1060\":{}},\"parent\":{}}],[\"atanh\",{\"_index\":575,\"name\":{\"1069\":{}},\"parent\":{}}],[\"beta\",{\"_index\":581,\"name\":{\"1075\":{}},\"parent\":{}}],[\"binding\",{\"_index\":13,\"name\":{\"21\":{}},\"parent\":{}}],[\"c_double\",{\"_index\":655,\"name\":{\"1193\":{}},\"parent\":{}}],[\"c_int\",{\"_index\":652,\"name\":{\"1190\":{}},\"parent\":{}}],[\"c_int_ptr\",{\"_index\":653,\"name\":{\"1191\":{}},\"parent\":{}}],[\"c_long_ptr\",{\"_index\":654,\"name\":{\"1192\":{}},\"parent\":{}}],[\"c_signed_long_int\",{\"_index\":656,\"name\":{\"1194\":{}},\"parent\":{}}],[\"c_signed_long_int_ptr\",{\"_index\":657,\"name\":{\"1195\":{}},\"parent\":{}}],[\"c_size_t\",{\"_index\":658,\"name\":{\"1196\":{}},\"parent\":{}}],[\"c_size_t_ptr\",{\"_index\":659,\"name\":{\"1197\":{}},\"parent\":{}}],[\"c_str_ptr\",{\"_index\":651,\"name\":{\"1189\":{}},\"parent\":{}}],[\"c_str_ptr_ptr\",{\"_index\":668,\"name\":{\"1206\":{}},\"parent\":{}}],[\"c_unsigned_long_int\",{\"_index\":649,\"name\":{\"1187\":{}},\"parent\":{}}],[\"c_void_ptr\",{\"_index\":650,\"name\":{\"1188\":{}},\"parent\":{}}],[\"calculate\",{\"_index\":14,\"name\":{\"22\":{}},\"parent\":{}}],[\"calculateoptions\",{\"_index\":17,\"name\":{\"25\":{}},\"parent\":{\"26\":{},\"27\":{},\"28\":{}}}],[\"calculatetype\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{}}}],[\"calculatetypewithdestroy\",{\"_index\":10,\"name\":{\"10\":{}},\"parent\":{\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{}}}],[\"catalan\",{\"_index\":9,\"name\":{\"9\":{},\"19\":{}},\"parent\":{}}],[\"cbrt\",{\"_index\":536,\"name\":{\"1029\":{}},\"parent\":{}}],[\"ceil\",{\"_index\":23,\"name\":{\"31\":{},\"1089\":{}},\"parent\":{}}],[\"clearbit\",{\"_index\":625,\"name\":{\"1133\":{}},\"parent\":{}}],[\"clearbits\",{\"_index\":626,\"name\":{\"1134\":{}},\"parent\":{}}],[\"complement1\",{\"_index\":616,\"name\":{\"1124\":{}},\"parent\":{}}],[\"complement2\",{\"_index\":617,\"name\":{\"1125\":{}},\"parent\":{}}],[\"cos\",{\"_index\":559,\"name\":{\"1053\":{}},\"parent\":{}}],[\"cosh\",{\"_index\":568,\"name\":{\"1062\":{}},\"parent\":{}}],[\"cot\",{\"_index\":563,\"name\":{\"1057\":{}},\"parent\":{}}],[\"coth\",{\"_index\":572,\"name\":{\"1066\":{}},\"parent\":{}}],[\"csc\",{\"_index\":562,\"name\":{\"1056\":{}},\"parent\":{}}],[\"csch\",{\"_index\":571,\"name\":{\"1065\":{}},\"parent\":{}}],[\"denominator\",{\"_index\":638,\"name\":{\"1168\":{}},\"parent\":{}}],[\"destroy\",{\"_index\":11,\"name\":{\"11\":{}},\"parent\":{}}],[\"digamma\",{\"_index\":580,\"name\":{\"1074\":{}},\"parent\":{}}],[\"div\",{\"_index\":533,\"name\":{\"1026\":{},\"1114\":{},\"1161\":{}},\"parent\":{}}],[\"divmode\",{\"_index\":22,\"name\":{\"30\":{}},\"parent\":{\"31\":{},\"32\":{},\"33\":{}}}],[\"doublefactorial\",{\"_index\":611,\"name\":{\"1119\":{}},\"parent\":{}}],[\"eint\",{\"_index\":576,\"name\":{\"1070\":{}},\"parent\":{}}],[\"erf\",{\"_index\":583,\"name\":{\"1077\":{}},\"parent\":{}}],[\"erfc\",{\"_index\":584,\"name\":{\"1078\":{}},\"parent\":{}}],[\"eulerconstant\",{\"_index\":6,\"name\":{\"6\":{},\"16\":{}},\"parent\":{}}],[\"eulernumber\",{\"_index\":7,\"name\":{\"7\":{},\"17\":{}},\"parent\":{}}],[\"exp\",{\"_index\":554,\"name\":{\"1048\":{}},\"parent\":{}}],[\"exp10\",{\"_index\":556,\"name\":{\"1050\":{}},\"parent\":{}}],[\"exp2\",{\"_index\":555,\"name\":{\"1049\":{}},\"parent\":{}}],[\"exponent\",{\"_index\":604,\"name\":{\"1100\":{}},\"parent\":{}}],[\"factorial\",{\"_index\":540,\"name\":{\"1033\":{},\"1118\":{}},\"parent\":{}}],[\"flipbit\",{\"_index\":627,\"name\":{\"1135\":{}},\"parent\":{}}],[\"flipbits\",{\"_index\":628,\"name\":{\"1136\":{}},\"parent\":{}}],[\"float\",{\"_index\":4,\"name\":{\"4\":{},\"14\":{}},\"parent\":{}}],[\"floatoptions\",{\"_index\":639,\"name\":{\"1174\":{}},\"parent\":{\"1175\":{},\"1176\":{},\"1177\":{}}}],[\"floatroundingmode\",{\"_index\":26,\"name\":{\"34\":{}},\"parent\":{\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{}}}],[\"floattype\",{\"_index\":525,\"name\":{\"1015\":{}},\"parent\":{\"1016\":{},\"1017\":{},\"1018\":{},\"1019\":{},\"1020\":{},\"1021\":{},\"1022\":{},\"1023\":{},\"1024\":{},\"1025\":{},\"1026\":{},\"1027\":{},\"1028\":{},\"1029\":{},\"1030\":{},\"1031\":{},\"1032\":{},\"1033\":{},\"1034\":{},\"1035\":{},\"1036\":{},\"1037\":{},\"1038\":{},\"1039\":{},\"1040\":{},\"1041\":{},\"1042\":{},\"1043\":{},\"1044\":{},\"1045\":{},\"1046\":{},\"1047\":{},\"1048\":{},\"1049\":{},\"1050\":{},\"1051\":{},\"1052\":{},\"1053\":{},\"1054\":{},\"1055\":{},\"1056\":{},\"1057\":{},\"1058\":{},\"1059\":{},\"1060\":{},\"1061\":{},\"1062\":{},\"1063\":{},\"1064\":{},\"1065\":{},\"1066\":{},\"1067\":{},\"1068\":{},\"1069\":{},\"1070\":{},\"1071\":{},\"1072\":{},\"1073\":{},\"1074\":{},\"1075\":{},\"1076\":{},\"1077\":{},\"1078\":{},\"1079\":{},\"1080\":{},\"1081\":{},\"1082\":{},\"1083\":{},\"1084\":{},\"1085\":{},\"1086\":{},\"1087\":{},\"1088\":{},\"1089\":{},\"1090\":{},\"1091\":{},\"1092\":{},\"1093\":{},\"1094\":{},\"1095\":{},\"1096\":{},\"1097\":{},\"1098\":{},\"1099\":{},\"1100\":{},\"1101\":{},\"1102\":{},\"1103\":{},\"1104\":{},\"1105\":{}}}],[\"floor\",{\"_index\":24,\"name\":{\"32\":{},\"1090\":{}},\"parent\":{}}],[\"fmod\",{\"_index\":600,\"name\":{\"1096\":{}},\"parent\":{}}],[\"frac\",{\"_index\":599,\"name\":{\"1095\":{}},\"parent\":{}}],[\"free\",{\"_index\":36,\"name\":{\"47\":{}},\"parent\":{}}],[\"gamma\",{\"_index\":578,\"name\":{\"1072\":{}},\"parent\":{}}],[\"gcd\",{\"_index\":614,\"name\":{\"1122\":{}},\"parent\":{}}],[\"getbit\",{\"_index\":629,\"name\":{\"1137\":{}},\"parent\":{}}],[\"getcontext\",{\"_index\":15,\"name\":{\"23\":{}},\"parent\":{}}],[\"gmp_randclear\",{\"_index\":46,\"name\":{\"65\":{}},\"parent\":{}}],[\"gmp_randinit_default\",{\"_index\":39,\"name\":{\"51\":{}},\"parent\":{}}],[\"gmp_randinit_lc_2exp\",{\"_index\":40,\"name\":{\"53\":{}},\"parent\":{}}],[\"gmp_randinit_lc_2exp_size\",{\"_index\":41,\"name\":{\"55\":{}},\"parent\":{}}],[\"gmp_randinit_mt\",{\"_index\":42,\"name\":{\"57\":{}},\"parent\":{}}],[\"gmp_randinit_set\",{\"_index\":43,\"name\":{\"59\":{}},\"parent\":{}}],[\"gmp_randseed\",{\"_index\":44,\"name\":{\"61\":{}},\"parent\":{}}],[\"gmp_randseed_ui\",{\"_index\":45,\"name\":{\"63\":{}},\"parent\":{}}],[\"gmp_randstate_t\",{\"_index\":647,\"name\":{\"1185\":{}},\"parent\":{}}],[\"gmp_urandomb_ui\",{\"_index\":47,\"name\":{\"67\":{}},\"parent\":{}}],[\"gmp_urandomm_ui\",{\"_index\":48,\"name\":{\"69\":{}},\"parent\":{}}],[\"gmpfunctions\",{\"_index\":32,\"name\":{\"40\":{}},\"parent\":{\"41\":{},\"42\":{},\"43\":{},\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{},\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{},\"123\":{},\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{},\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{},\"153\":{},\"154\":{},\"155\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{},\"170\":{},\"171\":{},\"172\":{},\"173\":{},\"174\":{},\"175\":{},\"176\":{},\"177\":{},\"178\":{},\"179\":{},\"180\":{},\"181\":{},\"182\":{},\"183\":{},\"184\":{},\"185\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{},\"200\":{},\"201\":{},\"202\":{},\"203\":{},\"204\":{},\"205\":{},\"206\":{},\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{},\"214\":{},\"215\":{},\"216\":{},\"217\":{},\"218\":{},\"219\":{},\"220\":{},\"221\":{},\"222\":{},\"223\":{},\"224\":{},\"225\":{},\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{},\"231\":{},\"232\":{},\"233\":{},\"234\":{},\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"242\":{},\"243\":{},\"244\":{},\"245\":{},\"246\":{},\"247\":{},\"248\":{},\"249\":{},\"250\":{},\"251\":{},\"252\":{},\"253\":{},\"254\":{},\"255\":{},\"256\":{},\"257\":{},\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"264\":{},\"265\":{},\"266\":{},\"267\":{},\"268\":{},\"269\":{},\"270\":{},\"271\":{},\"272\":{},\"273\":{},\"274\":{},\"275\":{},\"276\":{},\"277\":{},\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"284\":{},\"285\":{},\"286\":{},\"287\":{},\"288\":{},\"289\":{},\"290\":{},\"291\":{},\"292\":{},\"293\":{},\"294\":{},\"295\":{},\"296\":{},\"297\":{},\"298\":{},\"299\":{},\"300\":{},\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{},\"306\":{},\"307\":{},\"308\":{},\"309\":{},\"310\":{},\"311\":{},\"312\":{},\"313\":{},\"314\":{},\"315\":{},\"316\":{},\"317\":{},\"318\":{},\"319\":{},\"320\":{},\"321\":{},\"322\":{},\"323\":{},\"324\":{},\"325\":{},\"326\":{},\"327\":{},\"328\":{},\"329\":{},\"330\":{},\"331\":{},\"332\":{},\"333\":{},\"334\":{},\"335\":{},\"336\":{},\"337\":{},\"338\":{},\"339\":{},\"340\":{},\"341\":{},\"342\":{},\"343\":{},\"344\":{},\"345\":{},\"346\":{},\"347\":{},\"348\":{},\"349\":{},\"350\":{},\"351\":{},\"352\":{},\"353\":{},\"354\":{},\"355\":{},\"356\":{},\"357\":{},\"358\":{},\"359\":{},\"360\":{},\"361\":{},\"362\":{},\"363\":{},\"364\":{},\"365\":{},\"366\":{},\"367\":{},\"368\":{},\"369\":{},\"370\":{},\"371\":{},\"372\":{},\"373\":{},\"374\":{},\"375\":{},\"376\":{},\"377\":{},\"378\":{},\"379\":{},\"380\":{},\"381\":{},\"382\":{},\"383\":{},\"384\":{},\"385\":{},\"386\":{},\"387\":{},\"388\":{},\"389\":{},\"390\":{},\"391\":{},\"392\":{},\"393\":{},\"394\":{},\"395\":{},\"396\":{},\"397\":{},\"398\":{},\"399\":{},\"400\":{},\"401\":{},\"402\":{},\"403\":{},\"404\":{},\"405\":{},\"406\":{},\"407\":{},\"408\":{},\"409\":{},\"410\":{},\"411\":{},\"412\":{},\"413\":{},\"414\":{},\"415\":{},\"416\":{},\"417\":{},\"418\":{},\"419\":{},\"420\":{},\"421\":{},\"422\":{},\"423\":{},\"424\":{},\"425\":{},\"426\":{},\"427\":{},\"428\":{},\"429\":{},\"430\":{},\"431\":{},\"432\":{},\"433\":{},\"434\":{},\"435\":{},\"436\":{},\"437\":{},\"438\":{},\"439\":{},\"440\":{},\"441\":{},\"442\":{},\"443\":{},\"444\":{},\"445\":{},\"446\":{},\"447\":{},\"448\":{},\"449\":{},\"450\":{},\"451\":{},\"452\":{},\"453\":{},\"454\":{},\"455\":{},\"456\":{},\"457\":{},\"458\":{},\"459\":{},\"460\":{},\"461\":{},\"462\":{},\"463\":{},\"464\":{},\"465\":{},\"466\":{},\"467\":{},\"468\":{},\"469\":{},\"470\":{},\"471\":{},\"472\":{},\"473\":{},\"474\":{},\"475\":{},\"476\":{},\"477\":{},\"478\":{},\"479\":{},\"480\":{},\"481\":{},\"482\":{},\"483\":{},\"484\":{},\"485\":{},\"486\":{},\"487\":{},\"488\":{},\"489\":{},\"490\":{},\"491\":{},\"492\":{},\"493\":{},\"494\":{},\"495\":{},\"496\":{},\"497\":{},\"498\":{},\"499\":{},\"500\":{},\"501\":{},\"502\":{},\"503\":{},\"504\":{},\"505\":{},\"506\":{},\"507\":{},\"508\":{},\"509\":{},\"510\":{},\"511\":{},\"512\":{},\"513\":{},\"514\":{},\"515\":{},\"516\":{},\"517\":{},\"518\":{},\"519\":{},\"520\":{},\"521\":{},\"522\":{},\"523\":{},\"524\":{},\"525\":{},\"526\":{},\"527\":{},\"528\":{},\"529\":{},\"530\":{},\"531\":{},\"532\":{},\"533\":{},\"534\":{},\"535\":{},\"536\":{},\"537\":{},\"538\":{},\"539\":{},\"540\":{},\"541\":{},\"542\":{},\"543\":{},\"544\":{},\"545\":{},\"546\":{},\"547\":{},\"548\":{},\"549\":{},\"550\":{},\"551\":{},\"552\":{},\"553\":{},\"554\":{},\"555\":{},\"556\":{},\"557\":{},\"558\":{},\"559\":{},\"560\":{},\"561\":{},\"562\":{},\"563\":{},\"564\":{},\"565\":{},\"566\":{},\"567\":{},\"568\":{},\"569\":{},\"570\":{},\"571\":{},\"572\":{},\"573\":{},\"574\":{},\"575\":{},\"576\":{},\"577\":{},\"578\":{},\"579\":{},\"580\":{},\"581\":{},\"582\":{},\"583\":{},\"584\":{},\"585\":{},\"586\":{},\"587\":{},\"588\":{},\"589\":{},\"590\":{},\"591\":{},\"592\":{},\"593\":{},\"594\":{},\"595\":{},\"596\":{},\"597\":{},\"598\":{},\"599\":{},\"600\":{},\"601\":{},\"602\":{},\"603\":{},\"604\":{},\"605\":{},\"606\":{},\"607\":{},\"608\":{},\"609\":{},\"610\":{},\"611\":{},\"612\":{},\"613\":{},\"614\":{},\"615\":{},\"616\":{},\"617\":{},\"618\":{},\"619\":{},\"620\":{},\"621\":{},\"622\":{},\"623\":{},\"624\":{},\"625\":{},\"626\":{},\"627\":{},\"628\":{},\"629\":{},\"630\":{},\"631\":{},\"632\":{},\"633\":{},\"634\":{},\"635\":{},\"636\":{},\"637\":{},\"638\":{},\"639\":{},\"640\":{},\"641\":{},\"642\":{},\"643\":{},\"644\":{},\"645\":{},\"646\":{},\"647\":{},\"648\":{},\"649\":{},\"650\":{},\"651\":{},\"652\":{},\"653\":{},\"654\":{},\"655\":{},\"656\":{},\"657\":{},\"658\":{},\"659\":{},\"660\":{},\"661\":{},\"662\":{},\"663\":{},\"664\":{},\"665\":{},\"666\":{},\"667\":{},\"668\":{},\"669\":{},\"670\":{},\"671\":{},\"672\":{},\"673\":{},\"674\":{},\"675\":{},\"676\":{},\"677\":{},\"678\":{},\"679\":{},\"680\":{},\"681\":{},\"682\":{},\"683\":{},\"684\":{},\"685\":{},\"686\":{},\"687\":{},\"688\":{},\"689\":{},\"690\":{},\"691\":{},\"692\":{},\"693\":{},\"694\":{},\"695\":{},\"696\":{},\"697\":{},\"698\":{},\"699\":{},\"700\":{},\"701\":{},\"702\":{},\"703\":{},\"704\":{},\"705\":{},\"706\":{},\"707\":{},\"708\":{},\"709\":{},\"710\":{},\"711\":{},\"712\":{},\"713\":{},\"714\":{},\"715\":{},\"716\":{},\"717\":{},\"718\":{},\"719\":{},\"720\":{},\"721\":{},\"722\":{},\"723\":{},\"724\":{},\"725\":{},\"726\":{},\"727\":{},\"728\":{},\"729\":{},\"730\":{},\"731\":{},\"732\":{},\"733\":{},\"734\":{},\"735\":{},\"736\":{},\"737\":{},\"738\":{},\"739\":{},\"740\":{},\"741\":{},\"742\":{},\"743\":{},\"744\":{},\"745\":{},\"746\":{},\"747\":{},\"748\":{},\"749\":{},\"750\":{},\"751\":{},\"752\":{},\"753\":{},\"754\":{},\"755\":{},\"756\":{},\"757\":{},\"758\":{},\"759\":{},\"760\":{},\"761\":{},\"762\":{},\"763\":{},\"764\":{},\"765\":{},\"766\":{},\"767\":{},\"768\":{},\"769\":{},\"770\":{},\"771\":{},\"772\":{},\"773\":{},\"774\":{},\"775\":{},\"776\":{},\"777\":{},\"778\":{},\"779\":{},\"780\":{},\"781\":{},\"782\":{},\"783\":{},\"784\":{},\"785\":{},\"786\":{},\"787\":{},\"788\":{},\"789\":{},\"790\":{},\"791\":{},\"792\":{},\"793\":{},\"794\":{},\"795\":{},\"796\":{},\"797\":{},\"798\":{},\"799\":{},\"800\":{},\"801\":{},\"802\":{},\"803\":{},\"804\":{},\"805\":{},\"806\":{},\"807\":{},\"808\":{},\"809\":{},\"810\":{},\"811\":{},\"812\":{},\"813\":{},\"814\":{},\"815\":{},\"816\":{},\"817\":{},\"818\":{},\"819\":{},\"820\":{},\"821\":{},\"822\":{},\"823\":{},\"824\":{},\"825\":{},\"826\":{},\"827\":{},\"828\":{},\"829\":{},\"830\":{},\"831\":{},\"832\":{},\"833\":{},\"834\":{},\"835\":{},\"836\":{},\"837\":{},\"838\":{},\"839\":{},\"840\":{},\"841\":{},\"842\":{},\"843\":{},\"844\":{},\"845\":{},\"846\":{},\"847\":{},\"848\":{},\"849\":{},\"850\":{},\"851\":{},\"852\":{},\"853\":{},\"854\":{},\"855\":{},\"856\":{},\"857\":{},\"858\":{},\"859\":{},\"860\":{},\"861\":{},\"862\":{},\"863\":{},\"864\":{},\"865\":{},\"866\":{},\"867\":{},\"868\":{},\"869\":{},\"870\":{},\"871\":{},\"872\":{},\"873\":{},\"874\":{},\"875\":{},\"876\":{},\"877\":{},\"878\":{},\"879\":{},\"880\":{},\"881\":{},\"882\":{},\"883\":{},\"884\":{},\"885\":{},\"886\":{},\"887\":{},\"888\":{},\"889\":{},\"890\":{},\"891\":{},\"892\":{},\"893\":{},\"894\":{},\"895\":{},\"896\":{},\"897\":{},\"898\":{},\"899\":{},\"900\":{},\"901\":{},\"902\":{},\"903\":{},\"904\":{},\"905\":{},\"906\":{},\"907\":{},\"908\":{},\"909\":{},\"910\":{},\"911\":{},\"912\":{},\"913\":{},\"914\":{},\"915\":{},\"916\":{},\"917\":{},\"918\":{},\"919\":{},\"920\":{},\"921\":{},\"922\":{},\"923\":{},\"924\":{},\"925\":{},\"926\":{},\"927\":{},\"928\":{},\"929\":{},\"930\":{},\"931\":{},\"932\":{},\"933\":{},\"934\":{},\"935\":{},\"936\":{},\"937\":{},\"938\":{},\"939\":{},\"940\":{},\"941\":{},\"942\":{},\"943\":{},\"944\":{},\"945\":{},\"946\":{},\"947\":{},\"948\":{},\"949\":{},\"950\":{},\"951\":{},\"952\":{},\"953\":{},\"954\":{},\"955\":{},\"956\":{},\"957\":{},\"958\":{},\"959\":{},\"960\":{},\"961\":{},\"962\":{},\"963\":{},\"964\":{},\"965\":{},\"966\":{},\"967\":{},\"968\":{},\"969\":{},\"970\":{},\"971\":{},\"972\":{},\"973\":{},\"974\":{},\"975\":{},\"976\":{},\"977\":{},\"978\":{},\"979\":{},\"980\":{},\"981\":{},\"982\":{},\"983\":{},\"984\":{},\"985\":{},\"986\":{},\"987\":{},\"988\":{},\"989\":{},\"990\":{},\"991\":{},\"992\":{},\"993\":{},\"994\":{},\"995\":{},\"996\":{},\"997\":{},\"998\":{},\"999\":{},\"1000\":{},\"1001\":{},\"1002\":{},\"1003\":{},\"1004\":{},\"1005\":{},\"1006\":{},\"1007\":{},\"1008\":{},\"1009\":{},\"1010\":{},\"1011\":{},\"1012\":{},\"1013\":{},\"1014\":{}}}],[\"gmplib\",{\"_index\":12,\"name\":{\"20\":{}},\"parent\":{\"21\":{},\"22\":{},\"23\":{},\"24\":{}}}],[\"greaterorequal\",{\"_index\":551,\"name\":{\"1044\":{},\"1145\":{},\"1166\":{}},\"parent\":{}}],[\"greaterthan\",{\"_index\":550,\"name\":{\"1043\":{},\"1144\":{},\"1165\":{}},\"parent\":{}}],[\"init\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{}}],[\"integer\",{\"_index\":2,\"name\":{\"2\":{},\"12\":{}},\"parent\":{}}],[\"integertype\",{\"_index\":610,\"name\":{\"1106\":{}},\"parent\":{\"1107\":{},\"1108\":{},\"1109\":{},\"1110\":{},\"1111\":{},\"1112\":{},\"1113\":{},\"1114\":{},\"1115\":{},\"1116\":{},\"1117\":{},\"1118\":{},\"1119\":{},\"1120\":{},\"1121\":{},\"1122\":{},\"1123\":{},\"1124\":{},\"1125\":{},\"1126\":{},\"1127\":{},\"1128\":{},\"1129\":{},\"1130\":{},\"1131\":{},\"1132\":{},\"1133\":{},\"1134\":{},\"1135\":{},\"1136\":{},\"1137\":{},\"1138\":{},\"1139\":{},\"1140\":{},\"1141\":{},\"1142\":{},\"1143\":{},\"1144\":{},\"1145\":{},\"1146\":{},\"1147\":{},\"1148\":{},\"1149\":{},\"1150\":{},\"1151\":{}}}],[\"invert\",{\"_index\":636,\"name\":{\"1159\":{}},\"parent\":{}}],[\"invsqrt\",{\"_index\":535,\"name\":{\"1028\":{}},\"parent\":{}}],[\"isequal\",{\"_index\":547,\"name\":{\"1040\":{},\"1141\":{},\"1162\":{}},\"parent\":{}}],[\"isinfinite\",{\"_index\":545,\"name\":{\"1038\":{}},\"parent\":{}}],[\"isinteger\",{\"_index\":541,\"name\":{\"1034\":{}},\"parent\":{}}],[\"isnan\",{\"_index\":546,\"name\":{\"1039\":{}},\"parent\":{}}],[\"isnumber\",{\"_index\":544,\"name\":{\"1037\":{}},\"parent\":{}}],[\"isprobablyprime\",{\"_index\":612,\"name\":{\"1120\":{}},\"parent\":{}}],[\"isregular\",{\"_index\":543,\"name\":{\"1036\":{}},\"parent\":{}}],[\"iszero\",{\"_index\":542,\"name\":{\"1035\":{}},\"parent\":{}}],[\"j0\",{\"_index\":585,\"name\":{\"1079\":{}},\"parent\":{}}],[\"j1\",{\"_index\":586,\"name\":{\"1080\":{}},\"parent\":{}}],[\"jn\",{\"_index\":587,\"name\":{\"1081\":{}},\"parent\":{}}],[\"lcm\",{\"_index\":615,\"name\":{\"1123\":{}},\"parent\":{}}],[\"lessorequal\",{\"_index\":549,\"name\":{\"1042\":{},\"1143\":{},\"1164\":{}},\"parent\":{}}],[\"lessthan\",{\"_index\":548,\"name\":{\"1041\":{},\"1142\":{},\"1163\":{}},\"parent\":{}}],[\"li2\",{\"_index\":577,\"name\":{\"1071\":{}},\"parent\":{}}],[\"ln\",{\"_index\":552,\"name\":{\"1045\":{}},\"parent\":{}}],[\"lngamma\",{\"_index\":579,\"name\":{\"1073\":{}},\"parent\":{}}],[\"log10\",{\"_index\":553,\"name\":{\"1047\":{}},\"parent\":{}}],[\"log2\",{\"_index\":8,\"name\":{\"8\":{},\"18\":{},\"1046\":{}},\"parent\":{}}],[\"malloc\",{\"_index\":34,\"name\":{\"43\":{}},\"parent\":{}}],[\"malloc_cstr\",{\"_index\":35,\"name\":{\"45\":{}},\"parent\":{}}],[\"mem\",{\"_index\":37,\"name\":{\"49\":{}},\"parent\":{}}],[\"memview\",{\"_index\":38,\"name\":{\"50\":{}},\"parent\":{}}],[\"mp_bitcnt_t\",{\"_index\":646,\"name\":{\"1184\":{}},\"parent\":{}}],[\"mp_bits_per_limb\",{\"_index\":49,\"name\":{\"71\":{}},\"parent\":{}}],[\"mp_limb_t\",{\"_index\":660,\"name\":{\"1198\":{}},\"parent\":{}}],[\"mp_ptr\",{\"_index\":666,\"name\":{\"1204\":{}},\"parent\":{}}],[\"mp_size_t\",{\"_index\":662,\"name\":{\"1200\":{}},\"parent\":{}}],[\"mp_srcptr\",{\"_index\":661,\"name\":{\"1199\":{}},\"parent\":{}}],[\"mpfr_abs\",{\"_index\":327,\"name\":{\"627\":{}},\"parent\":{}}],[\"mpfr_acos\",{\"_index\":464,\"name\":{\"901\":{}},\"parent\":{}}],[\"mpfr_acosh\",{\"_index\":455,\"name\":{\"883\":{}},\"parent\":{}}],[\"mpfr_add\",{\"_index\":359,\"name\":{\"691\":{}},\"parent\":{}}],[\"mpfr_add_d\",{\"_index\":375,\"name\":{\"723\":{}},\"parent\":{}}],[\"mpfr_add_q\",{\"_index\":315,\"name\":{\"603\":{}},\"parent\":{}}],[\"mpfr_add_si\",{\"_index\":369,\"name\":{\"711\":{}},\"parent\":{}}],[\"mpfr_add_ui\",{\"_index\":363,\"name\":{\"699\":{}},\"parent\":{}}],[\"mpfr_add_z\",{\"_index\":501,\"name\":{\"975\":{}},\"parent\":{}}],[\"mpfr_agm\",{\"_index\":386,\"name\":{\"745\":{}},\"parent\":{}}],[\"mpfr_ai\",{\"_index\":495,\"name\":{\"963\":{}},\"parent\":{}}],[\"mpfr_asin\",{\"_index\":465,\"name\":{\"903\":{}},\"parent\":{}}],[\"mpfr_asinh\",{\"_index\":456,\"name\":{\"885\":{}},\"parent\":{}}],[\"mpfr_atan\",{\"_index\":466,\"name\":{\"905\":{}},\"parent\":{}}],[\"mpfr_atan2\",{\"_index\":471,\"name\":{\"915\":{}},\"parent\":{}}],[\"mpfr_atanh\",{\"_index\":454,\"name\":{\"881\":{}},\"parent\":{}}],[\"mpfr_beta\",{\"_index\":482,\"name\":{\"937\":{}},\"parent\":{}}],[\"mpfr_can_round\",{\"_index\":293,\"name\":{\"559\":{}},\"parent\":{}}],[\"mpfr_cbrt\",{\"_index\":478,\"name\":{\"929\":{}},\"parent\":{}}],[\"mpfr_ceil\",{\"_index\":419,\"name\":{\"811\":{}},\"parent\":{}}],[\"mpfr_check_range\",{\"_index\":285,\"name\":{\"543\":{}},\"parent\":{}}],[\"mpfr_clear\",{\"_index\":290,\"name\":{\"553\":{}},\"parent\":{}}],[\"mpfr_clear_divby0\",{\"_index\":264,\"name\":{\"501\":{}},\"parent\":{}}],[\"mpfr_clear_erangeflag\",{\"_index\":267,\"name\":{\"507\":{}},\"parent\":{}}],[\"mpfr_clear_flags\",{\"_index\":261,\"name\":{\"495\":{}},\"parent\":{}}],[\"mpfr_clear_inexflag\",{\"_index\":266,\"name\":{\"505\":{}},\"parent\":{}}],[\"mpfr_clear_nanflag\",{\"_index\":265,\"name\":{\"503\":{}},\"parent\":{}}],[\"mpfr_clear_overflow\",{\"_index\":263,\"name\":{\"499\":{}},\"parent\":{}}],[\"mpfr_clear_underflow\",{\"_index\":262,\"name\":{\"497\":{}},\"parent\":{}}],[\"mpfr_clears\",{\"_index\":291,\"name\":{\"555\":{}},\"parent\":{}}],[\"mpfr_cmp\",{\"_index\":398,\"name\":{\"769\":{}},\"parent\":{}}],[\"mpfr_cmp_d\",{\"_index\":399,\"name\":{\"771\":{}},\"parent\":{}}],[\"mpfr_cmp_q\",{\"_index\":317,\"name\":{\"607\":{}},\"parent\":{}}],[\"mpfr_cmp_si\",{\"_index\":401,\"name\":{\"775\":{}},\"parent\":{}}],[\"mpfr_cmp_si_2exp\",{\"_index\":403,\"name\":{\"779\":{}},\"parent\":{}}],[\"mpfr_cmp_ui\",{\"_index\":400,\"name\":{\"773\":{}},\"parent\":{}}],[\"mpfr_cmp_ui_2exp\",{\"_index\":402,\"name\":{\"777\":{}},\"parent\":{}}],[\"mpfr_cmp_z\",{\"_index\":504,\"name\":{\"981\":{}},\"parent\":{}}],[\"mpfr_cmpabs\",{\"_index\":404,\"name\":{\"781\":{}},\"parent\":{}}],[\"mpfr_cmpabs_ui\",{\"_index\":405,\"name\":{\"783\":{}},\"parent\":{}}],[\"mpfr_const_catalan\",{\"_index\":385,\"name\":{\"743\":{}},\"parent\":{}}],[\"mpfr_const_euler\",{\"_index\":384,\"name\":{\"741\":{}},\"parent\":{}}],[\"mpfr_const_log2\",{\"_index\":383,\"name\":{\"739\":{}},\"parent\":{}}],[\"mpfr_const_pi\",{\"_index\":382,\"name\":{\"737\":{}},\"parent\":{}}],[\"mpfr_copysign\",{\"_index\":332,\"name\":{\"637\":{}},\"parent\":{}}],[\"mpfr_cos\",{\"_index\":469,\"name\":{\"911\":{}},\"parent\":{}}],[\"mpfr_cosh\",{\"_index\":457,\"name\":{\"887\":{}},\"parent\":{}}],[\"mpfr_cot\",{\"_index\":474,\"name\":{\"921\":{}},\"parent\":{}}],[\"mpfr_coth\",{\"_index\":463,\"name\":{\"899\":{}},\"parent\":{}}],[\"mpfr_csc\",{\"_index\":473,\"name\":{\"919\":{}},\"parent\":{}}],[\"mpfr_csch\",{\"_index\":462,\"name\":{\"897\":{}},\"parent\":{}}],[\"mpfr_d_div\",{\"_index\":380,\"name\":{\"733\":{}},\"parent\":{}}],[\"mpfr_d_sub\",{\"_index\":377,\"name\":{\"727\":{}},\"parent\":{}}],[\"mpfr_digamma\",{\"_index\":485,\"name\":{\"943\":{}},\"parent\":{}}],[\"mpfr_dim\",{\"_index\":498,\"name\":{\"969\":{}},\"parent\":{}}],[\"mpfr_div\",{\"_index\":362,\"name\":{\"697\":{}},\"parent\":{}}],[\"mpfr_div_2exp\",{\"_index\":410,\"name\":{\"793\":{}},\"parent\":{}}],[\"mpfr_div_2si\",{\"_index\":414,\"name\":{\"801\":{}},\"parent\":{}}],[\"mpfr_div_2ui\",{\"_index\":412,\"name\":{\"797\":{}},\"parent\":{}}],[\"mpfr_div_d\",{\"_index\":379,\"name\":{\"731\":{}},\"parent\":{}}],[\"mpfr_div_q\",{\"_index\":314,\"name\":{\"601\":{}},\"parent\":{}}],[\"mpfr_div_si\",{\"_index\":373,\"name\":{\"719\":{}},\"parent\":{}}],[\"mpfr_div_ui\",{\"_index\":367,\"name\":{\"707\":{}},\"parent\":{}}],[\"mpfr_div_z\",{\"_index\":500,\"name\":{\"973\":{}},\"parent\":{}}],[\"mpfr_divby0_p\",{\"_index\":276,\"name\":{\"525\":{}},\"parent\":{}}],[\"mpfr_dot\",{\"_index\":510,\"name\":{\"993\":{}},\"parent\":{}}],[\"mpfr_eint\",{\"_index\":396,\"name\":{\"765\":{}},\"parent\":{}}],[\"mpfr_eq\",{\"_index\":407,\"name\":{\"787\":{}},\"parent\":{}}],[\"mpfr_equal_p\",{\"_index\":452,\"name\":{\"877\":{}},\"parent\":{}}],[\"mpfr_erandom\",{\"_index\":345,\"name\":{\"663\":{}},\"parent\":{}}],[\"mpfr_erangeflag_p\",{\"_index\":279,\"name\":{\"531\":{}},\"parent\":{}}],[\"mpfr_erf\",{\"_index\":476,\"name\":{\"925\":{}},\"parent\":{}}],[\"mpfr_erfc\",{\"_index\":477,\"name\":{\"927\":{}},\"parent\":{}}],[\"mpfr_exp\",{\"_index\":392,\"name\":{\"757\":{}},\"parent\":{}}],[\"mpfr_exp10\",{\"_index\":394,\"name\":{\"761\":{}},\"parent\":{}}],[\"mpfr_exp2\",{\"_index\":393,\"name\":{\"759\":{}},\"parent\":{}}],[\"mpfr_exp_t\",{\"_index\":669,\"name\":{\"1207\":{}},\"parent\":{}}],[\"mpfr_exp_t_ptr\",{\"_index\":667,\"name\":{\"1205\":{}},\"parent\":{}}],[\"mpfr_expm1\",{\"_index\":395,\"name\":{\"763\":{}},\"parent\":{}}],[\"mpfr_fac_ui\",{\"_index\":488,\"name\":{\"949\":{}},\"parent\":{}}],[\"mpfr_fits_intmax_p\",{\"_index\":439,\"name\":{\"851\":{}},\"parent\":{}}],[\"mpfr_fits_sint_p\",{\"_index\":435,\"name\":{\"843\":{}},\"parent\":{}}],[\"mpfr_fits_slong_p\",{\"_index\":433,\"name\":{\"839\":{}},\"parent\":{}}],[\"mpfr_fits_sshort_p\",{\"_index\":437,\"name\":{\"847\":{}},\"parent\":{}}],[\"mpfr_fits_uint_p\",{\"_index\":434,\"name\":{\"841\":{}},\"parent\":{}}],[\"mpfr_fits_uintmax_p\",{\"_index\":438,\"name\":{\"849\":{}},\"parent\":{}}],[\"mpfr_fits_ulong_p\",{\"_index\":432,\"name\":{\"837\":{}},\"parent\":{}}],[\"mpfr_fits_ushort_p\",{\"_index\":436,\"name\":{\"845\":{}},\"parent\":{}}],[\"mpfr_flags\",{\"_index\":679,\"name\":{\"1218\":{}},\"parent\":{\"1219\":{},\"1220\":{},\"1221\":{},\"1222\":{},\"1223\":{},\"1224\":{},\"1225\":{}}}],[\"mpfr_flags_all\",{\"_index\":686,\"name\":{\"1225\":{}},\"parent\":{}}],[\"mpfr_flags_clear\",{\"_index\":280,\"name\":{\"533\":{}},\"parent\":{}}],[\"mpfr_flags_divby0\",{\"_index\":685,\"name\":{\"1224\":{}},\"parent\":{}}],[\"mpfr_flags_erange\",{\"_index\":684,\"name\":{\"1223\":{}},\"parent\":{}}],[\"mpfr_flags_inexact\",{\"_index\":683,\"name\":{\"1222\":{}},\"parent\":{}}],[\"mpfr_flags_nan\",{\"_index\":682,\"name\":{\"1221\":{}},\"parent\":{}}],[\"mpfr_flags_overflow\",{\"_index\":681,\"name\":{\"1220\":{}},\"parent\":{}}],[\"mpfr_flags_restore\",{\"_index\":284,\"name\":{\"541\":{}},\"parent\":{}}],[\"mpfr_flags_save\",{\"_index\":283,\"name\":{\"539\":{}},\"parent\":{}}],[\"mpfr_flags_set\",{\"_index\":281,\"name\":{\"535\":{}},\"parent\":{}}],[\"mpfr_flags_t\",{\"_index\":664,\"name\":{\"1202\":{}},\"parent\":{}}],[\"mpfr_flags_test\",{\"_index\":282,\"name\":{\"537\":{}},\"parent\":{}}],[\"mpfr_flags_underflow\",{\"_index\":680,\"name\":{\"1219\":{}},\"parent\":{}}],[\"mpfr_floor\",{\"_index\":420,\"name\":{\"813\":{}},\"parent\":{}}],[\"mpfr_fma\",{\"_index\":505,\"name\":{\"983\":{}},\"parent\":{}}],[\"mpfr_fmma\",{\"_index\":507,\"name\":{\"987\":{}},\"parent\":{}}],[\"mpfr_fmms\",{\"_index\":508,\"name\":{\"989\":{}},\"parent\":{}}],[\"mpfr_fmod\",{\"_index\":430,\"name\":{\"833\":{}},\"parent\":{}}],[\"mpfr_fmodquo\",{\"_index\":431,\"name\":{\"835\":{}},\"parent\":{}}],[\"mpfr_fms\",{\"_index\":506,\"name\":{\"985\":{}},\"parent\":{}}],[\"mpfr_frac\",{\"_index\":426,\"name\":{\"825\":{}},\"parent\":{}}],[\"mpfr_free_cache\",{\"_index\":511,\"name\":{\"995\":{}},\"parent\":{}}],[\"mpfr_free_cache2\",{\"_index\":512,\"name\":{\"997\":{}},\"parent\":{}}],[\"mpfr_free_cache_t\",{\"_index\":687,\"name\":{\"1226\":{}},\"parent\":{\"1227\":{},\"1228\":{}}}],[\"mpfr_free_global_cache\",{\"_index\":689,\"name\":{\"1228\":{}},\"parent\":{}}],[\"mpfr_free_local_cache\",{\"_index\":688,\"name\":{\"1227\":{}},\"parent\":{}}],[\"mpfr_free_pool\",{\"_index\":513,\"name\":{\"999\":{}},\"parent\":{}}],[\"mpfr_free_str\",{\"_index\":342,\"name\":{\"657\":{}},\"parent\":{}}],[\"mpfr_frexp\",{\"_index\":336,\"name\":{\"645\":{}},\"parent\":{}}],[\"mpfr_gamma\",{\"_index\":480,\"name\":{\"933\":{}},\"parent\":{}}],[\"mpfr_gamma_inc\",{\"_index\":481,\"name\":{\"935\":{}},\"parent\":{}}],[\"mpfr_get_d\",{\"_index\":334,\"name\":{\"641\":{}},\"parent\":{}}],[\"mpfr_get_d_2exp\",{\"_index\":335,\"name\":{\"643\":{}},\"parent\":{}}],[\"mpfr_get_default_prec\",{\"_index\":301,\"name\":{\"575\":{}},\"parent\":{}}],[\"mpfr_get_default_rounding_mode\",{\"_index\":260,\"name\":{\"493\":{}},\"parent\":{}}],[\"mpfr_get_emax\",{\"_index\":255,\"name\":{\"483\":{}},\"parent\":{}}],[\"mpfr_get_emax_max\",{\"_index\":258,\"name\":{\"489\":{}},\"parent\":{}}],[\"mpfr_get_emax_min\",{\"_index\":257,\"name\":{\"487\":{}},\"parent\":{}}],[\"mpfr_get_emin\",{\"_index\":251,\"name\":{\"475\":{}},\"parent\":{}}],[\"mpfr_get_emin_max\",{\"_index\":254,\"name\":{\"481\":{}},\"parent\":{}}],[\"mpfr_get_emin_min\",{\"_index\":253,\"name\":{\"479\":{}},\"parent\":{}}],[\"mpfr_get_exp\",{\"_index\":295,\"name\":{\"563\":{}},\"parent\":{}}],[\"mpfr_get_prec\",{\"_index\":297,\"name\":{\"567\":{}},\"parent\":{}}],[\"mpfr_get_q\",{\"_index\":318,\"name\":{\"609\":{}},\"parent\":{}}],[\"mpfr_get_si\",{\"_index\":337,\"name\":{\"647\":{}},\"parent\":{}}],[\"mpfr_get_str\",{\"_index\":340,\"name\":{\"653\":{}},\"parent\":{}}],[\"mpfr_get_str_ndigits\",{\"_index\":339,\"name\":{\"651\":{}},\"parent\":{}}],[\"mpfr_get_ui\",{\"_index\":338,\"name\":{\"649\":{}},\"parent\":{}}],[\"mpfr_get_version\",{\"_index\":250,\"name\":{\"473\":{}},\"parent\":{}}],[\"mpfr_get_z\",{\"_index\":341,\"name\":{\"655\":{}},\"parent\":{}}],[\"mpfr_get_z_2exp\",{\"_index\":333,\"name\":{\"639\":{}},\"parent\":{}}],[\"mpfr_greater_p\",{\"_index\":447,\"name\":{\"867\":{}},\"parent\":{}}],[\"mpfr_greaterequal_p\",{\"_index\":448,\"name\":{\"869\":{}},\"parent\":{}}],[\"mpfr_hypot\",{\"_index\":475,\"name\":{\"923\":{}},\"parent\":{}}],[\"mpfr_inexflag_p\",{\"_index\":278,\"name\":{\"529\":{}},\"parent\":{}}],[\"mpfr_inf_p\",{\"_index\":442,\"name\":{\"857\":{}},\"parent\":{}}],[\"mpfr_init\",{\"_index\":288,\"name\":{\"549\":{}},\"parent\":{}}],[\"mpfr_init2\",{\"_index\":286,\"name\":{\"545\":{}},\"parent\":{}}],[\"mpfr_init_set\",{\"_index\":320,\"name\":{\"613\":{}},\"parent\":{}}],[\"mpfr_init_set_d\",{\"_index\":323,\"name\":{\"619\":{}},\"parent\":{}}],[\"mpfr_init_set_q\",{\"_index\":325,\"name\":{\"623\":{}},\"parent\":{}}],[\"mpfr_init_set_si\",{\"_index\":322,\"name\":{\"617\":{}},\"parent\":{}}],[\"mpfr_init_set_str\",{\"_index\":326,\"name\":{\"625\":{}},\"parent\":{}}],[\"mpfr_init_set_string\",{\"_index\":523,\"name\":{\"1013\":{}},\"parent\":{}}],[\"mpfr_init_set_ui\",{\"_index\":321,\"name\":{\"615\":{}},\"parent\":{}}],[\"mpfr_init_set_z\",{\"_index\":324,\"name\":{\"621\":{}},\"parent\":{}}],[\"mpfr_inits\",{\"_index\":289,\"name\":{\"551\":{}},\"parent\":{}}],[\"mpfr_inits2\",{\"_index\":287,\"name\":{\"547\":{}},\"parent\":{}}],[\"mpfr_integer_p\",{\"_index\":444,\"name\":{\"861\":{}},\"parent\":{}}],[\"mpfr_j0\",{\"_index\":489,\"name\":{\"951\":{}},\"parent\":{}}],[\"mpfr_j1\",{\"_index\":490,\"name\":{\"953\":{}},\"parent\":{}}],[\"mpfr_jn\",{\"_index\":491,\"name\":{\"955\":{}},\"parent\":{}}],[\"mpfr_less_p\",{\"_index\":449,\"name\":{\"871\":{}},\"parent\":{}}],[\"mpfr_lessequal_p\",{\"_index\":450,\"name\":{\"873\":{}},\"parent\":{}}],[\"mpfr_lessgreater_p\",{\"_index\":451,\"name\":{\"875\":{}},\"parent\":{}}],[\"mpfr_lgamma\",{\"_index\":484,\"name\":{\"941\":{}},\"parent\":{}}],[\"mpfr_li2\",{\"_index\":397,\"name\":{\"767\":{}},\"parent\":{}}],[\"mpfr_lngamma\",{\"_index\":483,\"name\":{\"939\":{}},\"parent\":{}}],[\"mpfr_log\",{\"_index\":387,\"name\":{\"747\":{}},\"parent\":{}}],[\"mpfr_log10\",{\"_index\":389,\"name\":{\"751\":{}},\"parent\":{}}],[\"mpfr_log1p\",{\"_index\":390,\"name\":{\"753\":{}},\"parent\":{}}],[\"mpfr_log2\",{\"_index\":388,\"name\":{\"749\":{}},\"parent\":{}}],[\"mpfr_log_ui\",{\"_index\":391,\"name\":{\"755\":{}},\"parent\":{}}],[\"mpfr_max\",{\"_index\":497,\"name\":{\"967\":{}},\"parent\":{}}],[\"mpfr_min\",{\"_index\":496,\"name\":{\"965\":{}},\"parent\":{}}],[\"mpfr_min_prec\",{\"_index\":294,\"name\":{\"561\":{}},\"parent\":{}}],[\"mpfr_modf\",{\"_index\":427,\"name\":{\"827\":{}},\"parent\":{}}],[\"mpfr_mul\",{\"_index\":361,\"name\":{\"695\":{}},\"parent\":{}}],[\"mpfr_mul_2exp\",{\"_index\":409,\"name\":{\"791\":{}},\"parent\":{}}],[\"mpfr_mul_2si\",{\"_index\":413,\"name\":{\"799\":{}},\"parent\":{}}],[\"mpfr_mul_2ui\",{\"_index\":411,\"name\":{\"795\":{}},\"parent\":{}}],[\"mpfr_mul_d\",{\"_index\":378,\"name\":{\"729\":{}},\"parent\":{}}],[\"mpfr_mul_q\",{\"_index\":313,\"name\":{\"599\":{}},\"parent\":{}}],[\"mpfr_mul_si\",{\"_index\":372,\"name\":{\"717\":{}},\"parent\":{}}],[\"mpfr_mul_ui\",{\"_index\":366,\"name\":{\"705\":{}},\"parent\":{}}],[\"mpfr_mul_z\",{\"_index\":499,\"name\":{\"971\":{}},\"parent\":{}}],[\"mpfr_nan_p\",{\"_index\":441,\"name\":{\"855\":{}},\"parent\":{}}],[\"mpfr_nanflag_p\",{\"_index\":277,\"name\":{\"527\":{}},\"parent\":{}}],[\"mpfr_neg\",{\"_index\":329,\"name\":{\"631\":{}},\"parent\":{}}],[\"mpfr_nextabove\",{\"_index\":347,\"name\":{\"667\":{}},\"parent\":{}}],[\"mpfr_nextbelow\",{\"_index\":348,\"name\":{\"669\":{}},\"parent\":{}}],[\"mpfr_nexttoward\",{\"_index\":349,\"name\":{\"671\":{}},\"parent\":{}}],[\"mpfr_nrandom\",{\"_index\":344,\"name\":{\"661\":{}},\"parent\":{}}],[\"mpfr_number_p\",{\"_index\":443,\"name\":{\"859\":{}},\"parent\":{}}],[\"mpfr_overflow_p\",{\"_index\":275,\"name\":{\"523\":{}},\"parent\":{}}],[\"mpfr_pow\",{\"_index\":350,\"name\":{\"673\":{}},\"parent\":{}}],[\"mpfr_pow_si\",{\"_index\":351,\"name\":{\"675\":{}},\"parent\":{}}],[\"mpfr_pow_ui\",{\"_index\":352,\"name\":{\"677\":{}},\"parent\":{}}],[\"mpfr_pow_z\",{\"_index\":355,\"name\":{\"683\":{}},\"parent\":{}}],[\"mpfr_prec_round\",{\"_index\":292,\"name\":{\"557\":{}},\"parent\":{}}],[\"mpfr_prec_t\",{\"_index\":663,\"name\":{\"1201\":{}},\"parent\":{}}],[\"mpfr_prec_t_ptr\",{\"_index\":670,\"name\":{\"1209\":{}},\"parent\":{}}],[\"mpfr_ptr\",{\"_index\":642,\"name\":{\"1180\":{}},\"parent\":{}}],[\"mpfr_ptr_ptr\",{\"_index\":665,\"name\":{\"1203\":{}},\"parent\":{}}],[\"mpfr_rec_sqrt\",{\"_index\":358,\"name\":{\"689\":{}},\"parent\":{}}],[\"mpfr_regular_p\",{\"_index\":446,\"name\":{\"865\":{}},\"parent\":{}}],[\"mpfr_reldiff\",{\"_index\":406,\"name\":{\"785\":{}},\"parent\":{}}],[\"mpfr_remainder\",{\"_index\":429,\"name\":{\"831\":{}},\"parent\":{}}],[\"mpfr_remquo\",{\"_index\":428,\"name\":{\"829\":{}},\"parent\":{}}],[\"mpfr_rint\",{\"_index\":415,\"name\":{\"803\":{}},\"parent\":{}}],[\"mpfr_rint_ceil\",{\"_index\":424,\"name\":{\"821\":{}},\"parent\":{}}],[\"mpfr_rint_floor\",{\"_index\":425,\"name\":{\"823\":{}},\"parent\":{}}],[\"mpfr_rint_round\",{\"_index\":422,\"name\":{\"817\":{}},\"parent\":{}}],[\"mpfr_rint_roundeven\",{\"_index\":421,\"name\":{\"815\":{}},\"parent\":{}}],[\"mpfr_rint_trunc\",{\"_index\":423,\"name\":{\"819\":{}},\"parent\":{}}],[\"mpfr_rnd_t\",{\"_index\":671,\"name\":{\"1210\":{}},\"parent\":{\"1211\":{},\"1212\":{},\"1213\":{},\"1214\":{},\"1215\":{},\"1216\":{},\"1217\":{}}}],[\"mpfr_rnda\",{\"_index\":676,\"name\":{\"1215\":{}},\"parent\":{}}],[\"mpfr_rndd\",{\"_index\":675,\"name\":{\"1214\":{}},\"parent\":{}}],[\"mpfr_rndf\",{\"_index\":677,\"name\":{\"1216\":{}},\"parent\":{}}],[\"mpfr_rndn\",{\"_index\":672,\"name\":{\"1211\":{}},\"parent\":{}}],[\"mpfr_rndna\",{\"_index\":678,\"name\":{\"1217\":{}},\"parent\":{}}],[\"mpfr_rndu\",{\"_index\":674,\"name\":{\"1213\":{}},\"parent\":{}}],[\"mpfr_rndz\",{\"_index\":673,\"name\":{\"1212\":{}},\"parent\":{}}],[\"mpfr_rootn_ui\",{\"_index\":479,\"name\":{\"931\":{}},\"parent\":{}}],[\"mpfr_round\",{\"_index\":417,\"name\":{\"807\":{}},\"parent\":{}}],[\"mpfr_roundeven\",{\"_index\":416,\"name\":{\"805\":{}},\"parent\":{}}],[\"mpfr_sec\",{\"_index\":472,\"name\":{\"917\":{}},\"parent\":{}}],[\"mpfr_sech\",{\"_index\":461,\"name\":{\"895\":{}},\"parent\":{}}],[\"mpfr_set\",{\"_index\":328,\"name\":{\"629\":{}},\"parent\":{}}],[\"mpfr_set_d\",{\"_index\":302,\"name\":{\"577\":{}},\"parent\":{}}],[\"mpfr_set_default_prec\",{\"_index\":300,\"name\":{\"573\":{}},\"parent\":{}}],[\"mpfr_set_default_rounding_mode\",{\"_index\":259,\"name\":{\"491\":{}},\"parent\":{}}],[\"mpfr_set_divby0\",{\"_index\":270,\"name\":{\"513\":{}},\"parent\":{}}],[\"mpfr_set_emax\",{\"_index\":256,\"name\":{\"485\":{}},\"parent\":{}}],[\"mpfr_set_emin\",{\"_index\":252,\"name\":{\"477\":{}},\"parent\":{}}],[\"mpfr_set_erangeflag\",{\"_index\":273,\"name\":{\"519\":{}},\"parent\":{}}],[\"mpfr_set_exp\",{\"_index\":296,\"name\":{\"565\":{}},\"parent\":{}}],[\"mpfr_set_inexflag\",{\"_index\":272,\"name\":{\"517\":{}},\"parent\":{}}],[\"mpfr_set_inf\",{\"_index\":306,\"name\":{\"585\":{}},\"parent\":{}}],[\"mpfr_set_nan\",{\"_index\":305,\"name\":{\"583\":{}},\"parent\":{}}],[\"mpfr_set_nanflag\",{\"_index\":271,\"name\":{\"515\":{}},\"parent\":{}}],[\"mpfr_set_overflow\",{\"_index\":269,\"name\":{\"511\":{}},\"parent\":{}}],[\"mpfr_set_prec\",{\"_index\":298,\"name\":{\"569\":{}},\"parent\":{}}],[\"mpfr_set_prec_raw\",{\"_index\":299,\"name\":{\"571\":{}},\"parent\":{}}],[\"mpfr_set_q\",{\"_index\":312,\"name\":{\"597\":{}},\"parent\":{}}],[\"mpfr_set_si\",{\"_index\":308,\"name\":{\"589\":{}},\"parent\":{}}],[\"mpfr_set_si_2exp\",{\"_index\":310,\"name\":{\"593\":{}},\"parent\":{}}],[\"mpfr_set_str\",{\"_index\":319,\"name\":{\"611\":{}},\"parent\":{}}],[\"mpfr_set_string\",{\"_index\":522,\"name\":{\"1012\":{}},\"parent\":{}}],[\"mpfr_set_ui\",{\"_index\":309,\"name\":{\"591\":{}},\"parent\":{}}],[\"mpfr_set_ui_2exp\",{\"_index\":311,\"name\":{\"595\":{}},\"parent\":{}}],[\"mpfr_set_underflow\",{\"_index\":268,\"name\":{\"509\":{}},\"parent\":{}}],[\"mpfr_set_z\",{\"_index\":303,\"name\":{\"579\":{}},\"parent\":{}}],[\"mpfr_set_z_2exp\",{\"_index\":304,\"name\":{\"581\":{}},\"parent\":{}}],[\"mpfr_set_zero\",{\"_index\":307,\"name\":{\"587\":{}},\"parent\":{}}],[\"mpfr_setsign\",{\"_index\":331,\"name\":{\"635\":{}},\"parent\":{}}],[\"mpfr_sgn\",{\"_index\":408,\"name\":{\"789\":{}},\"parent\":{}}],[\"mpfr_si_div\",{\"_index\":374,\"name\":{\"721\":{}},\"parent\":{}}],[\"mpfr_si_sub\",{\"_index\":371,\"name\":{\"715\":{}},\"parent\":{}}],[\"mpfr_signbit\",{\"_index\":330,\"name\":{\"633\":{}},\"parent\":{}}],[\"mpfr_sin\",{\"_index\":467,\"name\":{\"907\":{}},\"parent\":{}}],[\"mpfr_sin_cos\",{\"_index\":468,\"name\":{\"909\":{}},\"parent\":{}}],[\"mpfr_sinh\",{\"_index\":458,\"name\":{\"889\":{}},\"parent\":{}}],[\"mpfr_sinh_cosh\",{\"_index\":460,\"name\":{\"893\":{}},\"parent\":{}}],[\"mpfr_sqr\",{\"_index\":381,\"name\":{\"735\":{}},\"parent\":{}}],[\"mpfr_sqrt\",{\"_index\":356,\"name\":{\"685\":{}},\"parent\":{}}],[\"mpfr_sqrt_ui\",{\"_index\":357,\"name\":{\"687\":{}},\"parent\":{}}],[\"mpfr_srcptr\",{\"_index\":643,\"name\":{\"1181\":{}},\"parent\":{}}],[\"mpfr_strtofr\",{\"_index\":515,\"name\":{\"1003\":{}},\"parent\":{}}],[\"mpfr_sub\",{\"_index\":360,\"name\":{\"693\":{}},\"parent\":{}}],[\"mpfr_sub_d\",{\"_index\":376,\"name\":{\"725\":{}},\"parent\":{}}],[\"mpfr_sub_q\",{\"_index\":316,\"name\":{\"605\":{}},\"parent\":{}}],[\"mpfr_sub_si\",{\"_index\":370,\"name\":{\"713\":{}},\"parent\":{}}],[\"mpfr_sub_ui\",{\"_index\":364,\"name\":{\"701\":{}},\"parent\":{}}],[\"mpfr_sub_z\",{\"_index\":502,\"name\":{\"977\":{}},\"parent\":{}}],[\"mpfr_subnormalize\",{\"_index\":514,\"name\":{\"1001\":{}},\"parent\":{}}],[\"mpfr_sum\",{\"_index\":509,\"name\":{\"991\":{}},\"parent\":{}}],[\"mpfr_swap\",{\"_index\":440,\"name\":{\"853\":{}},\"parent\":{}}],[\"mpfr_t\",{\"_index\":247,\"name\":{\"467\":{},\"1016\":{},\"1208\":{}},\"parent\":{}}],[\"mpfr_t_free\",{\"_index\":248,\"name\":{\"469\":{}},\"parent\":{}}],[\"mpfr_t_frees\",{\"_index\":249,\"name\":{\"471\":{}},\"parent\":{}}],[\"mpfr_tan\",{\"_index\":470,\"name\":{\"913\":{}},\"parent\":{}}],[\"mpfr_tanh\",{\"_index\":459,\"name\":{\"891\":{}},\"parent\":{}}],[\"mpfr_to_string\",{\"_index\":524,\"name\":{\"1014\":{}},\"parent\":{}}],[\"mpfr_total_order_p\",{\"_index\":516,\"name\":{\"1005\":{}},\"parent\":{}}],[\"mpfr_trunc\",{\"_index\":418,\"name\":{\"809\":{}},\"parent\":{}}],[\"mpfr_ui_div\",{\"_index\":368,\"name\":{\"709\":{}},\"parent\":{}}],[\"mpfr_ui_pow\",{\"_index\":354,\"name\":{\"681\":{}},\"parent\":{}}],[\"mpfr_ui_pow_ui\",{\"_index\":353,\"name\":{\"679\":{}},\"parent\":{}}],[\"mpfr_ui_sub\",{\"_index\":365,\"name\":{\"703\":{}},\"parent\":{}}],[\"mpfr_underflow_p\",{\"_index\":274,\"name\":{\"521\":{}},\"parent\":{}}],[\"mpfr_unordered_p\",{\"_index\":453,\"name\":{\"879\":{}},\"parent\":{}}],[\"mpfr_urandom\",{\"_index\":343,\"name\":{\"659\":{}},\"parent\":{}}],[\"mpfr_urandomb\",{\"_index\":346,\"name\":{\"665\":{}},\"parent\":{}}],[\"mpfr_y0\",{\"_index\":492,\"name\":{\"957\":{}},\"parent\":{}}],[\"mpfr_y1\",{\"_index\":493,\"name\":{\"959\":{}},\"parent\":{}}],[\"mpfr_yn\",{\"_index\":494,\"name\":{\"961\":{}},\"parent\":{}}],[\"mpfr_z_sub\",{\"_index\":503,\"name\":{\"979\":{}},\"parent\":{}}],[\"mpfr_zero_p\",{\"_index\":445,\"name\":{\"863\":{}},\"parent\":{}}],[\"mpfr_zeta\",{\"_index\":486,\"name\":{\"945\":{}},\"parent\":{}}],[\"mpfr_zeta_ui\",{\"_index\":487,\"name\":{\"947\":{}},\"parent\":{}}],[\"mpq_abs\",{\"_index\":212,\"name\":{\"397\":{}},\"parent\":{}}],[\"mpq_add\",{\"_index\":213,\"name\":{\"399\":{}},\"parent\":{}}],[\"mpq_canonicalize\",{\"_index\":214,\"name\":{\"401\":{}},\"parent\":{}}],[\"mpq_clear\",{\"_index\":215,\"name\":{\"403\":{}},\"parent\":{}}],[\"mpq_clears\",{\"_index\":216,\"name\":{\"405\":{}},\"parent\":{}}],[\"mpq_cmp\",{\"_index\":217,\"name\":{\"407\":{}},\"parent\":{}}],[\"mpq_cmp_si\",{\"_index\":218,\"name\":{\"409\":{}},\"parent\":{}}],[\"mpq_cmp_ui\",{\"_index\":219,\"name\":{\"411\":{}},\"parent\":{}}],[\"mpq_cmp_z\",{\"_index\":220,\"name\":{\"413\":{}},\"parent\":{}}],[\"mpq_denref\",{\"_index\":246,\"name\":{\"465\":{}},\"parent\":{}}],[\"mpq_div\",{\"_index\":221,\"name\":{\"415\":{}},\"parent\":{}}],[\"mpq_div_2exp\",{\"_index\":222,\"name\":{\"417\":{}},\"parent\":{}}],[\"mpq_equal\",{\"_index\":223,\"name\":{\"419\":{}},\"parent\":{}}],[\"mpq_get_d\",{\"_index\":226,\"name\":{\"425\":{}},\"parent\":{}}],[\"mpq_get_den\",{\"_index\":225,\"name\":{\"423\":{}},\"parent\":{}}],[\"mpq_get_num\",{\"_index\":224,\"name\":{\"421\":{}},\"parent\":{}}],[\"mpq_get_str\",{\"_index\":227,\"name\":{\"427\":{}},\"parent\":{}}],[\"mpq_init\",{\"_index\":228,\"name\":{\"429\":{}},\"parent\":{}}],[\"mpq_inits\",{\"_index\":229,\"name\":{\"431\":{}},\"parent\":{}}],[\"mpq_inv\",{\"_index\":230,\"name\":{\"433\":{}},\"parent\":{}}],[\"mpq_mul\",{\"_index\":231,\"name\":{\"435\":{}},\"parent\":{}}],[\"mpq_mul_2exp\",{\"_index\":232,\"name\":{\"437\":{}},\"parent\":{}}],[\"mpq_neg\",{\"_index\":233,\"name\":{\"439\":{}},\"parent\":{}}],[\"mpq_numref\",{\"_index\":245,\"name\":{\"463\":{}},\"parent\":{}}],[\"mpq_ptr\",{\"_index\":644,\"name\":{\"1182\":{}},\"parent\":{}}],[\"mpq_set\",{\"_index\":234,\"name\":{\"441\":{}},\"parent\":{}}],[\"mpq_set_d\",{\"_index\":235,\"name\":{\"443\":{}},\"parent\":{}}],[\"mpq_set_den\",{\"_index\":236,\"name\":{\"445\":{}},\"parent\":{}}],[\"mpq_set_num\",{\"_index\":237,\"name\":{\"447\":{}},\"parent\":{}}],[\"mpq_set_si\",{\"_index\":238,\"name\":{\"449\":{}},\"parent\":{}}],[\"mpq_set_str\",{\"_index\":239,\"name\":{\"451\":{}},\"parent\":{}}],[\"mpq_set_string\",{\"_index\":520,\"name\":{\"1010\":{}},\"parent\":{}}],[\"mpq_set_ui\",{\"_index\":240,\"name\":{\"453\":{}},\"parent\":{}}],[\"mpq_set_z\",{\"_index\":241,\"name\":{\"455\":{}},\"parent\":{}}],[\"mpq_sgn\",{\"_index\":242,\"name\":{\"457\":{}},\"parent\":{}}],[\"mpq_srcptr\",{\"_index\":645,\"name\":{\"1183\":{}},\"parent\":{}}],[\"mpq_sub\",{\"_index\":243,\"name\":{\"459\":{}},\"parent\":{}}],[\"mpq_swap\",{\"_index\":244,\"name\":{\"461\":{}},\"parent\":{}}],[\"mpq_t\",{\"_index\":209,\"name\":{\"391\":{},\"1153\":{}},\"parent\":{}}],[\"mpq_t_free\",{\"_index\":210,\"name\":{\"393\":{}},\"parent\":{}}],[\"mpq_t_frees\",{\"_index\":211,\"name\":{\"395\":{}},\"parent\":{}}],[\"mpq_to_string\",{\"_index\":521,\"name\":{\"1011\":{}},\"parent\":{}}],[\"mpz_2fac_ui\",{\"_index\":93,\"name\":{\"159\":{}},\"parent\":{}}],[\"mpz_abs\",{\"_index\":53,\"name\":{\"79\":{}},\"parent\":{}}],[\"mpz_add\",{\"_index\":54,\"name\":{\"81\":{}},\"parent\":{}}],[\"mpz_add_ui\",{\"_index\":55,\"name\":{\"83\":{}},\"parent\":{}}],[\"mpz_addmul\",{\"_index\":56,\"name\":{\"85\":{}},\"parent\":{}}],[\"mpz_addmul_ui\",{\"_index\":57,\"name\":{\"87\":{}},\"parent\":{}}],[\"mpz_and\",{\"_index\":58,\"name\":{\"89\":{}},\"parent\":{}}],[\"mpz_bin_ui\",{\"_index\":59,\"name\":{\"91\":{}},\"parent\":{}}],[\"mpz_bin_uiui\",{\"_index\":60,\"name\":{\"93\":{}},\"parent\":{}}],[\"mpz_cdiv_q\",{\"_index\":61,\"name\":{\"95\":{}},\"parent\":{}}],[\"mpz_cdiv_q_2exp\",{\"_index\":62,\"name\":{\"97\":{}},\"parent\":{}}],[\"mpz_cdiv_q_ui\",{\"_index\":63,\"name\":{\"99\":{}},\"parent\":{}}],[\"mpz_cdiv_qr\",{\"_index\":64,\"name\":{\"101\":{}},\"parent\":{}}],[\"mpz_cdiv_qr_ui\",{\"_index\":65,\"name\":{\"103\":{}},\"parent\":{}}],[\"mpz_cdiv_r\",{\"_index\":66,\"name\":{\"105\":{}},\"parent\":{}}],[\"mpz_cdiv_r_2exp\",{\"_index\":67,\"name\":{\"107\":{}},\"parent\":{}}],[\"mpz_cdiv_r_ui\",{\"_index\":68,\"name\":{\"109\":{}},\"parent\":{}}],[\"mpz_cdiv_ui\",{\"_index\":69,\"name\":{\"111\":{}},\"parent\":{}}],[\"mpz_clear\",{\"_index\":70,\"name\":{\"113\":{}},\"parent\":{}}],[\"mpz_clears\",{\"_index\":71,\"name\":{\"115\":{}},\"parent\":{}}],[\"mpz_clrbit\",{\"_index\":72,\"name\":{\"117\":{}},\"parent\":{}}],[\"mpz_cmp\",{\"_index\":73,\"name\":{\"119\":{}},\"parent\":{}}],[\"mpz_cmp_d\",{\"_index\":74,\"name\":{\"121\":{}},\"parent\":{}}],[\"mpz_cmp_si\",{\"_index\":75,\"name\":{\"123\":{}},\"parent\":{}}],[\"mpz_cmp_ui\",{\"_index\":76,\"name\":{\"125\":{}},\"parent\":{}}],[\"mpz_cmpabs\",{\"_index\":77,\"name\":{\"127\":{}},\"parent\":{}}],[\"mpz_cmpabs_d\",{\"_index\":78,\"name\":{\"129\":{}},\"parent\":{}}],[\"mpz_cmpabs_ui\",{\"_index\":79,\"name\":{\"131\":{}},\"parent\":{}}],[\"mpz_com\",{\"_index\":80,\"name\":{\"133\":{}},\"parent\":{}}],[\"mpz_combit\",{\"_index\":81,\"name\":{\"135\":{}},\"parent\":{}}],[\"mpz_congruent_2exp_p\",{\"_index\":83,\"name\":{\"139\":{}},\"parent\":{}}],[\"mpz_congruent_p\",{\"_index\":82,\"name\":{\"137\":{}},\"parent\":{}}],[\"mpz_congruent_ui_p\",{\"_index\":84,\"name\":{\"141\":{}},\"parent\":{}}],[\"mpz_divexact\",{\"_index\":85,\"name\":{\"143\":{}},\"parent\":{}}],[\"mpz_divexact_ui\",{\"_index\":86,\"name\":{\"145\":{}},\"parent\":{}}],[\"mpz_divisible_2exp_p\",{\"_index\":89,\"name\":{\"151\":{}},\"parent\":{}}],[\"mpz_divisible_p\",{\"_index\":87,\"name\":{\"147\":{}},\"parent\":{}}],[\"mpz_divisible_ui_p\",{\"_index\":88,\"name\":{\"149\":{}},\"parent\":{}}],[\"mpz_even_p\",{\"_index\":90,\"name\":{\"153\":{}},\"parent\":{}}],[\"mpz_export\",{\"_index\":91,\"name\":{\"155\":{}},\"parent\":{}}],[\"mpz_fac_ui\",{\"_index\":92,\"name\":{\"157\":{}},\"parent\":{}}],[\"mpz_fdiv_q\",{\"_index\":96,\"name\":{\"165\":{}},\"parent\":{}}],[\"mpz_fdiv_q_2exp\",{\"_index\":97,\"name\":{\"167\":{}},\"parent\":{}}],[\"mpz_fdiv_q_ui\",{\"_index\":98,\"name\":{\"169\":{}},\"parent\":{}}],[\"mpz_fdiv_qr\",{\"_index\":99,\"name\":{\"171\":{}},\"parent\":{}}],[\"mpz_fdiv_qr_ui\",{\"_index\":100,\"name\":{\"173\":{}},\"parent\":{}}],[\"mpz_fdiv_r\",{\"_index\":101,\"name\":{\"175\":{}},\"parent\":{}}],[\"mpz_fdiv_r_2exp\",{\"_index\":102,\"name\":{\"177\":{}},\"parent\":{}}],[\"mpz_fdiv_r_ui\",{\"_index\":103,\"name\":{\"179\":{}},\"parent\":{}}],[\"mpz_fdiv_ui\",{\"_index\":104,\"name\":{\"181\":{}},\"parent\":{}}],[\"mpz_fib2_ui\",{\"_index\":106,\"name\":{\"185\":{}},\"parent\":{}}],[\"mpz_fib_ui\",{\"_index\":105,\"name\":{\"183\":{}},\"parent\":{}}],[\"mpz_fits_sint_p\",{\"_index\":107,\"name\":{\"187\":{}},\"parent\":{}}],[\"mpz_fits_slong_p\",{\"_index\":108,\"name\":{\"189\":{}},\"parent\":{}}],[\"mpz_fits_sshort_p\",{\"_index\":109,\"name\":{\"191\":{}},\"parent\":{}}],[\"mpz_fits_uint_p\",{\"_index\":110,\"name\":{\"193\":{}},\"parent\":{}}],[\"mpz_fits_ulong_p\",{\"_index\":111,\"name\":{\"195\":{}},\"parent\":{}}],[\"mpz_fits_ushort_p\",{\"_index\":112,\"name\":{\"197\":{}},\"parent\":{}}],[\"mpz_gcd\",{\"_index\":113,\"name\":{\"199\":{}},\"parent\":{}}],[\"mpz_gcd_ui\",{\"_index\":114,\"name\":{\"201\":{}},\"parent\":{}}],[\"mpz_gcdext\",{\"_index\":115,\"name\":{\"203\":{}},\"parent\":{}}],[\"mpz_get_d\",{\"_index\":116,\"name\":{\"205\":{}},\"parent\":{}}],[\"mpz_get_d_2exp\",{\"_index\":117,\"name\":{\"207\":{}},\"parent\":{}}],[\"mpz_get_si\",{\"_index\":118,\"name\":{\"209\":{}},\"parent\":{}}],[\"mpz_get_str\",{\"_index\":119,\"name\":{\"211\":{}},\"parent\":{}}],[\"mpz_get_ui\",{\"_index\":120,\"name\":{\"213\":{}},\"parent\":{}}],[\"mpz_getlimbn\",{\"_index\":121,\"name\":{\"215\":{}},\"parent\":{}}],[\"mpz_hamdist\",{\"_index\":122,\"name\":{\"217\":{}},\"parent\":{}}],[\"mpz_import\",{\"_index\":123,\"name\":{\"219\":{}},\"parent\":{}}],[\"mpz_init\",{\"_index\":124,\"name\":{\"221\":{}},\"parent\":{}}],[\"mpz_init2\",{\"_index\":126,\"name\":{\"225\":{}},\"parent\":{}}],[\"mpz_init_set\",{\"_index\":127,\"name\":{\"227\":{}},\"parent\":{}}],[\"mpz_init_set_d\",{\"_index\":128,\"name\":{\"229\":{}},\"parent\":{}}],[\"mpz_init_set_si\",{\"_index\":129,\"name\":{\"231\":{}},\"parent\":{}}],[\"mpz_init_set_str\",{\"_index\":130,\"name\":{\"233\":{}},\"parent\":{}}],[\"mpz_init_set_string\",{\"_index\":518,\"name\":{\"1008\":{}},\"parent\":{}}],[\"mpz_init_set_ui\",{\"_index\":131,\"name\":{\"235\":{}},\"parent\":{}}],[\"mpz_inits\",{\"_index\":125,\"name\":{\"223\":{}},\"parent\":{}}],[\"mpz_invert\",{\"_index\":132,\"name\":{\"237\":{}},\"parent\":{}}],[\"mpz_ior\",{\"_index\":133,\"name\":{\"239\":{}},\"parent\":{}}],[\"mpz_jacobi\",{\"_index\":134,\"name\":{\"241\":{}},\"parent\":{}}],[\"mpz_kronecker\",{\"_index\":135,\"name\":{\"243\":{}},\"parent\":{}}],[\"mpz_kronecker_si\",{\"_index\":136,\"name\":{\"245\":{}},\"parent\":{}}],[\"mpz_kronecker_ui\",{\"_index\":137,\"name\":{\"247\":{}},\"parent\":{}}],[\"mpz_lcm\",{\"_index\":140,\"name\":{\"253\":{}},\"parent\":{}}],[\"mpz_lcm_ui\",{\"_index\":141,\"name\":{\"255\":{}},\"parent\":{}}],[\"mpz_legendre\",{\"_index\":142,\"name\":{\"257\":{}},\"parent\":{}}],[\"mpz_limbs_finish\",{\"_index\":207,\"name\":{\"387\":{}},\"parent\":{}}],[\"mpz_limbs_modify\",{\"_index\":206,\"name\":{\"385\":{}},\"parent\":{}}],[\"mpz_limbs_read\",{\"_index\":204,\"name\":{\"381\":{}},\"parent\":{}}],[\"mpz_limbs_write\",{\"_index\":205,\"name\":{\"383\":{}},\"parent\":{}}],[\"mpz_lucnum2_ui\",{\"_index\":144,\"name\":{\"261\":{}},\"parent\":{}}],[\"mpz_lucnum_ui\",{\"_index\":143,\"name\":{\"259\":{}},\"parent\":{}}],[\"mpz_mfac_uiui\",{\"_index\":94,\"name\":{\"161\":{}},\"parent\":{}}],[\"mpz_millerrabin\",{\"_index\":145,\"name\":{\"263\":{}},\"parent\":{}}],[\"mpz_mod\",{\"_index\":146,\"name\":{\"265\":{}},\"parent\":{}}],[\"mpz_mod_ui\",{\"_index\":147,\"name\":{\"267\":{}},\"parent\":{}}],[\"mpz_mul\",{\"_index\":148,\"name\":{\"269\":{}},\"parent\":{}}],[\"mpz_mul_2exp\",{\"_index\":149,\"name\":{\"271\":{}},\"parent\":{}}],[\"mpz_mul_si\",{\"_index\":150,\"name\":{\"273\":{}},\"parent\":{}}],[\"mpz_mul_ui\",{\"_index\":151,\"name\":{\"275\":{}},\"parent\":{}}],[\"mpz_neg\",{\"_index\":152,\"name\":{\"277\":{}},\"parent\":{}}],[\"mpz_nextprime\",{\"_index\":153,\"name\":{\"279\":{}},\"parent\":{}}],[\"mpz_odd_p\",{\"_index\":154,\"name\":{\"281\":{}},\"parent\":{}}],[\"mpz_perfect_power_p\",{\"_index\":155,\"name\":{\"283\":{}},\"parent\":{}}],[\"mpz_perfect_square_p\",{\"_index\":156,\"name\":{\"285\":{}},\"parent\":{}}],[\"mpz_popcount\",{\"_index\":157,\"name\":{\"287\":{}},\"parent\":{}}],[\"mpz_pow_ui\",{\"_index\":158,\"name\":{\"289\":{}},\"parent\":{}}],[\"mpz_powm\",{\"_index\":159,\"name\":{\"291\":{}},\"parent\":{}}],[\"mpz_powm_sec\",{\"_index\":160,\"name\":{\"293\":{}},\"parent\":{}}],[\"mpz_powm_ui\",{\"_index\":161,\"name\":{\"295\":{}},\"parent\":{}}],[\"mpz_primorial_ui\",{\"_index\":95,\"name\":{\"163\":{}},\"parent\":{}}],[\"mpz_probab_prime_p\",{\"_index\":162,\"name\":{\"297\":{}},\"parent\":{}}],[\"mpz_ptr\",{\"_index\":640,\"name\":{\"1178\":{}},\"parent\":{}}],[\"mpz_random\",{\"_index\":163,\"name\":{\"299\":{}},\"parent\":{}}],[\"mpz_random2\",{\"_index\":164,\"name\":{\"301\":{}},\"parent\":{}}],[\"mpz_realloc2\",{\"_index\":165,\"name\":{\"303\":{}},\"parent\":{}}],[\"mpz_remove\",{\"_index\":166,\"name\":{\"305\":{}},\"parent\":{}}],[\"mpz_roinit_n\",{\"_index\":208,\"name\":{\"389\":{}},\"parent\":{}}],[\"mpz_root\",{\"_index\":167,\"name\":{\"307\":{}},\"parent\":{}}],[\"mpz_rootrem\",{\"_index\":168,\"name\":{\"309\":{}},\"parent\":{}}],[\"mpz_rrandomb\",{\"_index\":169,\"name\":{\"311\":{}},\"parent\":{}}],[\"mpz_scan0\",{\"_index\":170,\"name\":{\"313\":{}},\"parent\":{}}],[\"mpz_scan1\",{\"_index\":171,\"name\":{\"315\":{}},\"parent\":{}}],[\"mpz_set\",{\"_index\":172,\"name\":{\"317\":{}},\"parent\":{}}],[\"mpz_set_d\",{\"_index\":173,\"name\":{\"319\":{}},\"parent\":{}}],[\"mpz_set_q\",{\"_index\":174,\"name\":{\"321\":{}},\"parent\":{}}],[\"mpz_set_si\",{\"_index\":175,\"name\":{\"323\":{}},\"parent\":{}}],[\"mpz_set_str\",{\"_index\":176,\"name\":{\"325\":{}},\"parent\":{}}],[\"mpz_set_string\",{\"_index\":517,\"name\":{\"1007\":{}},\"parent\":{}}],[\"mpz_set_ui\",{\"_index\":177,\"name\":{\"327\":{}},\"parent\":{}}],[\"mpz_setbit\",{\"_index\":178,\"name\":{\"329\":{}},\"parent\":{}}],[\"mpz_sgn\",{\"_index\":179,\"name\":{\"331\":{}},\"parent\":{}}],[\"mpz_si_kronecker\",{\"_index\":138,\"name\":{\"249\":{}},\"parent\":{}}],[\"mpz_size\",{\"_index\":180,\"name\":{\"333\":{}},\"parent\":{}}],[\"mpz_sizeinbase\",{\"_index\":181,\"name\":{\"335\":{}},\"parent\":{}}],[\"mpz_sqrt\",{\"_index\":182,\"name\":{\"337\":{}},\"parent\":{}}],[\"mpz_sqrtrem\",{\"_index\":183,\"name\":{\"339\":{}},\"parent\":{}}],[\"mpz_srcptr\",{\"_index\":641,\"name\":{\"1179\":{}},\"parent\":{}}],[\"mpz_sub\",{\"_index\":184,\"name\":{\"341\":{}},\"parent\":{}}],[\"mpz_sub_ui\",{\"_index\":185,\"name\":{\"343\":{}},\"parent\":{}}],[\"mpz_submul\",{\"_index\":187,\"name\":{\"347\":{}},\"parent\":{}}],[\"mpz_submul_ui\",{\"_index\":188,\"name\":{\"349\":{}},\"parent\":{}}],[\"mpz_swap\",{\"_index\":189,\"name\":{\"351\":{}},\"parent\":{}}],[\"mpz_t\",{\"_index\":50,\"name\":{\"73\":{},\"1107\":{}},\"parent\":{}}],[\"mpz_t_free\",{\"_index\":51,\"name\":{\"75\":{}},\"parent\":{}}],[\"mpz_t_frees\",{\"_index\":52,\"name\":{\"77\":{}},\"parent\":{}}],[\"mpz_tdiv_q\",{\"_index\":191,\"name\":{\"355\":{}},\"parent\":{}}],[\"mpz_tdiv_q_2exp\",{\"_index\":192,\"name\":{\"357\":{}},\"parent\":{}}],[\"mpz_tdiv_q_ui\",{\"_index\":193,\"name\":{\"359\":{}},\"parent\":{}}],[\"mpz_tdiv_qr\",{\"_index\":194,\"name\":{\"361\":{}},\"parent\":{}}],[\"mpz_tdiv_qr_ui\",{\"_index\":195,\"name\":{\"363\":{}},\"parent\":{}}],[\"mpz_tdiv_r\",{\"_index\":196,\"name\":{\"365\":{}},\"parent\":{}}],[\"mpz_tdiv_r_2exp\",{\"_index\":197,\"name\":{\"367\":{}},\"parent\":{}}],[\"mpz_tdiv_r_ui\",{\"_index\":198,\"name\":{\"369\":{}},\"parent\":{}}],[\"mpz_tdiv_ui\",{\"_index\":190,\"name\":{\"353\":{}},\"parent\":{}}],[\"mpz_to_string\",{\"_index\":519,\"name\":{\"1009\":{}},\"parent\":{}}],[\"mpz_tstbit\",{\"_index\":199,\"name\":{\"371\":{}},\"parent\":{}}],[\"mpz_ui_kronecker\",{\"_index\":139,\"name\":{\"251\":{}},\"parent\":{}}],[\"mpz_ui_pow_ui\",{\"_index\":200,\"name\":{\"373\":{}},\"parent\":{}}],[\"mpz_ui_sub\",{\"_index\":186,\"name\":{\"345\":{}},\"parent\":{}}],[\"mpz_urandomb\",{\"_index\":201,\"name\":{\"375\":{}},\"parent\":{}}],[\"mpz_urandomm\",{\"_index\":202,\"name\":{\"377\":{}},\"parent\":{}}],[\"mpz_xor\",{\"_index\":203,\"name\":{\"379\":{}},\"parent\":{}}],[\"msbposition\",{\"_index\":630,\"name\":{\"1138\":{}},\"parent\":{}}],[\"mul\",{\"_index\":532,\"name\":{\"1025\":{},\"1111\":{},\"1157\":{}},\"parent\":{}}],[\"neg\",{\"_index\":538,\"name\":{\"1031\":{},\"1112\":{},\"1158\":{}},\"parent\":{}}],[\"nextabove\",{\"_index\":602,\"name\":{\"1098\":{}},\"parent\":{}}],[\"nextbelow\",{\"_index\":603,\"name\":{\"1099\":{}},\"parent\":{}}],[\"nextprime\",{\"_index\":613,\"name\":{\"1121\":{}},\"parent\":{}}],[\"nthroot\",{\"_index\":537,\"name\":{\"1030\":{},\"1117\":{}},\"parent\":{}}],[\"numerator\",{\"_index\":637,\"name\":{\"1167\":{}},\"parent\":{}}],[\"options\",{\"_index\":528,\"name\":{\"1021\":{}},\"parent\":{}}],[\"or\",{\"_index\":619,\"name\":{\"1127\":{}},\"parent\":{}}],[\"pi\",{\"_index\":5,\"name\":{\"5\":{},\"15\":{}},\"parent\":{}}],[\"pow\",{\"_index\":557,\"name\":{\"1051\":{},\"1115\":{}},\"parent\":{}}],[\"precisionbits\",{\"_index\":18,\"name\":{\"26\":{},\"1017\":{},\"1175\":{}},\"parent\":{}}],[\"precisiontobits\",{\"_index\":21,\"name\":{\"29\":{}},\"parent\":{}}],[\"radix\",{\"_index\":20,\"name\":{\"28\":{},\"1019\":{},\"1177\":{}},\"parent\":{}}],[\"rational\",{\"_index\":3,\"name\":{\"3\":{},\"13\":{}},\"parent\":{}}],[\"rationaltype\",{\"_index\":635,\"name\":{\"1152\":{}},\"parent\":{\"1153\":{},\"1154\":{},\"1155\":{},\"1156\":{},\"1157\":{},\"1158\":{},\"1159\":{},\"1160\":{},\"1161\":{},\"1162\":{},\"1163\":{},\"1164\":{},\"1165\":{},\"1166\":{},\"1167\":{},\"1168\":{},\"1169\":{},\"1170\":{},\"1171\":{},\"1172\":{},\"1173\":{}}}],[\"remainder\",{\"_index\":601,\"name\":{\"1097\":{}},\"parent\":{}}],[\"reset\",{\"_index\":16,\"name\":{\"24\":{},\"41\":{}},\"parent\":{}}],[\"rndmode\",{\"_index\":526,\"name\":{\"1018\":{}},\"parent\":{}}],[\"round\",{\"_index\":595,\"name\":{\"1091\":{}},\"parent\":{}}],[\"round_down\",{\"_index\":30,\"name\":{\"38\":{}},\"parent\":{}}],[\"round_from_zero\",{\"_index\":31,\"name\":{\"39\":{}},\"parent\":{}}],[\"round_nearest\",{\"_index\":27,\"name\":{\"35\":{}},\"parent\":{}}],[\"round_to_zero\",{\"_index\":28,\"name\":{\"36\":{}},\"parent\":{}}],[\"round_up\",{\"_index\":29,\"name\":{\"37\":{}},\"parent\":{}}],[\"roundeven\",{\"_index\":596,\"name\":{\"1092\":{}},\"parent\":{}}],[\"roundingmode\",{\"_index\":19,\"name\":{\"27\":{},\"1176\":{}},\"parent\":{}}],[\"roundto\",{\"_index\":598,\"name\":{\"1094\":{}},\"parent\":{}}],[\"sec\",{\"_index\":561,\"name\":{\"1055\":{}},\"parent\":{}}],[\"sech\",{\"_index\":570,\"name\":{\"1064\":{}},\"parent\":{}}],[\"setbit\",{\"_index\":623,\"name\":{\"1131\":{}},\"parent\":{}}],[\"setbits\",{\"_index\":624,\"name\":{\"1132\":{}},\"parent\":{}}],[\"setoptions\",{\"_index\":529,\"name\":{\"1022\":{}},\"parent\":{}}],[\"shiftleft\",{\"_index\":621,\"name\":{\"1129\":{}},\"parent\":{}}],[\"shiftright\",{\"_index\":622,\"name\":{\"1130\":{}},\"parent\":{}}],[\"sign\",{\"_index\":593,\"name\":{\"1087\":{},\"1146\":{},\"1169\":{}},\"parent\":{}}],[\"sin\",{\"_index\":558,\"name\":{\"1052\":{}},\"parent\":{}}],[\"sinh\",{\"_index\":567,\"name\":{\"1061\":{}},\"parent\":{}}],[\"slicebits\",{\"_index\":631,\"name\":{\"1139\":{}},\"parent\":{}}],[\"sqrt\",{\"_index\":534,\"name\":{\"1027\":{},\"1116\":{}},\"parent\":{}}],[\"sub\",{\"_index\":531,\"name\":{\"1024\":{},\"1110\":{},\"1156\":{}},\"parent\":{}}],[\"tan\",{\"_index\":560,\"name\":{\"1054\":{}},\"parent\":{}}],[\"tanh\",{\"_index\":569,\"name\":{\"1063\":{}},\"parent\":{}}],[\"tobuffer\",{\"_index\":633,\"name\":{\"1148\":{}},\"parent\":{}}],[\"tofixed\",{\"_index\":606,\"name\":{\"1102\":{}},\"parent\":{}}],[\"tofloat\",{\"_index\":634,\"name\":{\"1151\":{},\"1173\":{}},\"parent\":{}}],[\"tointeger\",{\"_index\":607,\"name\":{\"1103\":{},\"1172\":{}},\"parent\":{}}],[\"tointerval\",{\"_index\":608,\"name\":{\"1104\":{}},\"parent\":{}}],[\"tonumber\",{\"_index\":594,\"name\":{\"1088\":{},\"1147\":{},\"1170\":{}},\"parent\":{}}],[\"torational\",{\"_index\":609,\"name\":{\"1105\":{},\"1150\":{}},\"parent\":{}}],[\"tostring\",{\"_index\":605,\"name\":{\"1101\":{},\"1149\":{},\"1171\":{}},\"parent\":{}}],[\"trunc\",{\"_index\":597,\"name\":{\"1093\":{}},\"parent\":{}}],[\"truncate\",{\"_index\":25,\"name\":{\"33\":{}},\"parent\":{}}],[\"type\",{\"_index\":527,\"name\":{\"1020\":{},\"1108\":{},\"1154\":{}},\"parent\":{}}],[\"writeto\",{\"_index\":632,\"name\":{\"1140\":{}},\"parent\":{}}],[\"xor\",{\"_index\":620,\"name\":{\"1128\":{}},\"parent\":{}}],[\"y0\",{\"_index\":588,\"name\":{\"1082\":{}},\"parent\":{}}],[\"y1\",{\"_index\":589,\"name\":{\"1083\":{}},\"parent\":{}}],[\"yn\",{\"_index\":590,\"name\":{\"1084\":{}},\"parent\":{}}],[\"zeta\",{\"_index\":582,\"name\":{\"1076\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/assets/style.css b/assets/style.css new file mode 100644 index 0000000..6127b27 --- /dev/null +++ b/assets/style.css @@ -0,0 +1,1414 @@ +@import url("./icons.css"); + +:root { + /* Light */ + --light-color-background: #fcfcfc; + --light-color-secondary-background: #fff; + --light-color-text: #222; + --light-color-text-aside: #707070; + --light-color-link: #4da6ff; + --light-color-menu-divider: #eee; + --light-color-menu-divider-focus: #000; + --light-color-menu-label: #707070; + --light-color-panel: var(--light-color-secondary-background); + --light-color-panel-divider: #eee; + --light-color-comment-tag: #707070; + --light-color-comment-tag-text: #fff; + --light-color-ts: #9600ff; + --light-color-ts-interface: #647f1b; + --light-color-ts-enum: #937210; + --light-color-ts-class: #0672de; + --light-color-ts-private: #707070; + --light-color-toolbar: #fff; + --light-color-toolbar-text: #333; + --light-icon-filter: invert(0); + --light-external-icon: url("data:image/svg+xml;utf8,"); + + /* Dark */ + --dark-color-background: #36393f; + --dark-color-secondary-background: #2f3136; + --dark-color-text: #ffffff; + --dark-color-text-aside: #e6e4e4; + --dark-color-link: #00aff4; + --dark-color-menu-divider: #eee; + --dark-color-menu-divider-focus: #000; + --dark-color-menu-label: #707070; + --dark-color-panel: var(--dark-color-secondary-background); + --dark-color-panel-divider: #818181; + --dark-color-comment-tag: #dcddde; + --dark-color-comment-tag-text: #2f3136; + --dark-color-ts: #c97dff; + --dark-color-ts-interface: #9cbe3c; + --dark-color-ts-enum: #d6ab29; + --dark-color-ts-class: #3695f3; + --dark-color-ts-private: #e2e2e2; + --dark-color-toolbar: #34373c; + --dark-color-toolbar-text: #ffffff; + --dark-icon-filter: invert(1); + --dark-external-icon: url("data:image/svg+xml;utf8,"); +} + +@media (prefers-color-scheme: light) { + :root { + --color-background: var(--light-color-background); + --color-secondary-background: var(--light-color-secondary-background); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-menu-divider: var(--light-color-menu-divider); + --color-menu-divider-focus: var(--light-color-menu-divider-focus); + --color-menu-label: var(--light-color-menu-label); + --color-panel: var(--light-color-panel); + --color-panel-divider: var(--light-color-panel-divider); + --color-comment-tag: var(--light-color-comment-tag); + --color-comment-tag-text: var(--light-color-comment-tag-text); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-private: var(--light-color-ts-private); + --color-toolbar: var(--light-color-toolbar); + --color-toolbar-text: var(--light-color-toolbar-text); + --icon-filter: var(--light-icon-filter); + --external-icon: var(--light-external-icon); + } +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--dark-color-background); + --color-secondary-background: var(--dark-color-secondary-background); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-menu-divider: var(--dark-color-menu-divider); + --color-menu-divider-focus: var(--dark-color-menu-divider-focus); + --color-menu-label: var(--dark-color-menu-label); + --color-panel: var(--dark-color-panel); + --color-panel-divider: var(--dark-color-panel-divider); + --color-comment-tag: var(--dark-color-comment-tag); + --color-comment-tag-text: var(--dark-color-comment-tag-text); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-private: var(--dark-color-ts-private); + --color-toolbar: var(--dark-color-toolbar); + --color-toolbar-text: var(--dark-color-toolbar-text); + --icon-filter: var(--dark-icon-filter); + --external-icon: var(--dark-external-icon); + } +} + +body { + margin: 0; +} + +body.light { + --color-background: var(--light-color-background); + --color-secondary-background: var(--light-color-secondary-background); + --color-text: var(--light-color-text); + --color-text-aside: var(--light-color-text-aside); + --color-link: var(--light-color-link); + --color-menu-divider: var(--light-color-menu-divider); + --color-menu-divider-focus: var(--light-color-menu-divider-focus); + --color-menu-label: var(--light-color-menu-label); + --color-panel: var(--light-color-panel); + --color-panel-divider: var(--light-color-panel-divider); + --color-comment-tag: var(--light-color-comment-tag); + --color-comment-tag-text: var(--light-color-comment-tag-text); + --color-ts: var(--light-color-ts); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-enum: var(--light-color-ts-enum); + --color-ts-class: var(--light-color-ts-class); + --color-ts-private: var(--light-color-ts-private); + --color-toolbar: var(--light-color-toolbar); + --color-toolbar-text: var(--light-color-toolbar-text); + --icon-filter: var(--light-icon-filter); + --external-icon: var(--light-external-icon); +} + +body.dark { + --color-background: var(--dark-color-background); + --color-secondary-background: var(--dark-color-secondary-background); + --color-text: var(--dark-color-text); + --color-text-aside: var(--dark-color-text-aside); + --color-link: var(--dark-color-link); + --color-menu-divider: var(--dark-color-menu-divider); + --color-menu-divider-focus: var(--dark-color-menu-divider-focus); + --color-menu-label: var(--dark-color-menu-label); + --color-panel: var(--dark-color-panel); + --color-panel-divider: var(--dark-color-panel-divider); + --color-comment-tag: var(--dark-color-comment-tag); + --color-comment-tag-text: var(--dark-color-comment-tag-text); + --color-ts: var(--dark-color-ts); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-class: var(--dark-color-ts-class); + --color-ts-private: var(--dark-color-ts-private); + --color-toolbar: var(--dark-color-toolbar); + --color-toolbar-text: var(--dark-color-toolbar-text); + --icon-filter: var(--dark-icon-filter); + --external-icon: var(--dark-external-icon); +} + +h1, +h2, +h3, +h4, +h5, +h6 { + line-height: 1.2; +} + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +h2 { + font-size: 1.5em; + margin: 0.83em 0; +} + +h3 { + font-size: 1.17em; + margin: 1em 0; +} + +h4, +.tsd-index-panel h3 { + font-size: 1em; + margin: 1.33em 0; +} + +h5 { + font-size: 0.83em; + margin: 1.67em 0; +} + +h6 { + font-size: 0.67em; + margin: 2.33em 0; +} + +pre { + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; +} + +dl, +menu, +ol, +ul { + margin: 1em 0; +} + +dd { + margin: 0 0 0 40px; +} + +.container { + max-width: 1200px; + margin: 0 auto; + padding: 0 40px; +} +@media (max-width: 640px) { + .container { + padding: 0 20px; + } +} + +.container-main { + padding-bottom: 200px; +} + +.row { + display: flex; + position: relative; + margin: 0 -10px; +} +.row:after { + visibility: hidden; + display: block; + content: ""; + clear: both; + height: 0; +} + +.col-4, +.col-8 { + box-sizing: border-box; + float: left; + padding: 0 10px; +} + +.col-4 { + width: 33.3333333333%; +} +.col-8 { + width: 66.6666666667%; +} + +ul.tsd-descriptions > li > :first-child, +.tsd-panel > :first-child, +.col-8 > :first-child, +.col-4 > :first-child, +ul.tsd-descriptions > li > :first-child > :first-child, +.tsd-panel > :first-child > :first-child, +.col-8 > :first-child > :first-child, +.col-4 > :first-child > :first-child, +ul.tsd-descriptions > li > :first-child > :first-child > :first-child, +.tsd-panel > :first-child > :first-child > :first-child, +.col-8 > :first-child > :first-child > :first-child, +.col-4 > :first-child > :first-child > :first-child { + margin-top: 0; +} +ul.tsd-descriptions > li > :last-child, +.tsd-panel > :last-child, +.col-8 > :last-child, +.col-4 > :last-child, +ul.tsd-descriptions > li > :last-child > :last-child, +.tsd-panel > :last-child > :last-child, +.col-8 > :last-child > :last-child, +.col-4 > :last-child > :last-child, +ul.tsd-descriptions > li > :last-child > :last-child > :last-child, +.tsd-panel > :last-child > :last-child > :last-child, +.col-8 > :last-child > :last-child > :last-child, +.col-4 > :last-child > :last-child > :last-child { + margin-bottom: 0; +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + opacity: 0; + } +} +@keyframes shift-to-left { + from { + transform: translate(0, 0); + } + to { + transform: translate(-25%, 0); + } +} +@keyframes unshift-to-left { + from { + transform: translate(-25%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-in-from-right { + from { + transform: translate(100%, 0); + } + to { + transform: translate(0, 0); + } +} +@keyframes pop-out-to-right { + from { + transform: translate(0, 0); + visibility: visible; + } + to { + transform: translate(100%, 0); + } +} +body { + background: var(--color-background); + font-family: "Segoe UI", sans-serif; + font-size: 16px; + color: var(--color-text); +} + +a { + color: var(--color-link); + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +a.external[target="_blank"] { + background-image: var(--external-icon); + background-position: top 3px right; + background-repeat: no-repeat; + padding-right: 13px; +} + +code, +pre { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + padding: 0.2em; + margin: 0; + font-size: 14px; +} + +pre { + padding: 10px; +} +pre code { + padding: 0; + font-size: 100%; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.tsd-typography { + line-height: 1.333em; +} +.tsd-typography ul { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-typography h4, +.tsd-typography .tsd-index-panel h3, +.tsd-index-panel .tsd-typography h3, +.tsd-typography h5, +.tsd-typography h6 { + font-size: 1em; + margin: 0; +} +.tsd-typography h5, +.tsd-typography h6 { + font-weight: normal; +} +.tsd-typography p, +.tsd-typography ul, +.tsd-typography ol { + margin: 1em 0; +} + +@media (min-width: 901px) and (max-width: 1024px) { + html .col-content { + width: 72%; + } + html .col-menu { + width: 28%; + } + html .tsd-navigation { + padding-left: 10px; + } +} +@media (max-width: 900px) { + html .col-content { + float: none; + width: 100%; + } + html .col-menu { + position: fixed !important; + overflow: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + width: 100%; + padding: 20px 20px 0 0; + max-width: 450px; + visibility: hidden; + background-color: var(--color-panel); + transform: translate(100%, 0); + } + html .col-menu > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; + top: 0; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; + } + + .to-has-menu .overlay { + animation: fade-in 0.4s; + } + + .to-has-menu :is(header, footer, .col-content) { + animation: shift-to-left 0.4s; + } + + .to-has-menu .col-menu { + animation: pop-in-from-right 0.4s; + } + + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu :is(header, footer, .col-content) { + animation: unshift-to-left 0.4s; + } + + .from-has-menu .col-menu { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu :is(header, footer, .col-content) { + transform: translate(-25%, 0); + } + .has-menu .col-menu { + visibility: visible; + transform: translate(0, 0); + display: grid; + grid-template-rows: auto 1fr; + max-height: 100vh; + } + .has-menu .tsd-navigation { + max-height: 100%; + } +} + +.tsd-page-title { + padding: 70px 0 20px 0; + margin: 0 0 40px 0; + background: var(--color-panel); + box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); +} +.tsd-page-title h1 { + margin: 0; +} + +.tsd-breadcrumb { + margin: 0; + padding: 0; + color: var(--color-text-aside); +} +.tsd-breadcrumb a { + color: var(--color-text-aside); + text-decoration: none; +} +.tsd-breadcrumb a:hover { + text-decoration: underline; +} +.tsd-breadcrumb li { + display: inline; +} +.tsd-breadcrumb li:after { + content: " / "; +} + +dl.tsd-comment-tags { + overflow: hidden; +} +dl.tsd-comment-tags dt { + float: left; + padding: 1px 5px; + margin: 0 10px 0 0; + border-radius: 4px; + border: 1px solid var(--color-comment-tag); + color: var(--color-comment-tag); + font-size: 0.8em; + font-weight: normal; +} +dl.tsd-comment-tags dd { + margin: 0 0 10px 0; +} +dl.tsd-comment-tags dd:before, +dl.tsd-comment-tags dd:after { + display: table; + content: " "; +} +dl.tsd-comment-tags dd pre, +dl.tsd-comment-tags dd:after { + clear: both; +} +dl.tsd-comment-tags p { + margin: 0; +} + +.tsd-panel.tsd-comment .lead { + font-size: 1.1em; + line-height: 1.333em; + margin-bottom: 2em; +} +.tsd-panel.tsd-comment .lead:last-child { + margin-bottom: 0; +} + +.toggle-protected .tsd-is-private { + display: none; +} + +.toggle-public .tsd-is-private, +.toggle-public .tsd-is-protected, +.toggle-public .tsd-is-private-protected { + display: none; +} + +.toggle-inherited .tsd-is-inherited { + display: none; +} + +.toggle-externals .tsd-is-external { + display: none; +} + +#tsd-filter { + position: relative; + display: inline-block; + height: 40px; + vertical-align: bottom; +} +.no-filter #tsd-filter { + display: none; +} +#tsd-filter .tsd-filter-group { + display: inline-block; + height: 40px; + vertical-align: bottom; + white-space: nowrap; +} +#tsd-filter input { + display: none; +} +@media (max-width: 900px) { + #tsd-filter .tsd-filter-group { + display: block; + position: absolute; + top: 40px; + right: 20px; + height: auto; + background-color: var(--color-panel); + visibility: hidden; + transform: translate(50%, 0); + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); + } + .has-options #tsd-filter .tsd-filter-group { + visibility: visible; + } + .to-has-options #tsd-filter .tsd-filter-group { + animation: fade-in 0.2s; + } + .from-has-options #tsd-filter .tsd-filter-group { + animation: fade-out 0.2s; + } + #tsd-filter label, + #tsd-filter .tsd-select { + display: block; + padding-right: 20px; + } +} + +footer { + border-top: 1px solid var(--color-panel-divider); + background-color: var(--color-panel); +} +footer:after { + content: ""; + display: table; +} +footer.with-border-bottom { + border-bottom: 1px solid var(--color-panel-divider); +} +footer .tsd-legend-group { + font-size: 0; +} +footer .tsd-legend { + display: inline-block; + width: 25%; + padding: 0; + font-size: 16px; + list-style: none; + line-height: 1.333em; + vertical-align: top; +} +@media (max-width: 900px) { + footer .tsd-legend { + width: 50%; + } +} + +.tsd-hierarchy { + list-style: square; + padding: 0 0 0 20px; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.tsd-index-panel .tsd-index-content { + margin-bottom: -30px !important; +} +.tsd-index-panel .tsd-index-section { + margin-bottom: 30px !important; +} +.tsd-index-panel h3 { + margin: 0 -20px 10px -20px; + padding: 0 20px 10px 20px; + border-bottom: 1px solid var(--color-panel-divider); +} +.tsd-index-panel ul.tsd-index-list { + -webkit-column-count: 3; + -moz-column-count: 3; + -ms-column-count: 3; + -o-column-count: 3; + column-count: 3; + -webkit-column-gap: 20px; + -moz-column-gap: 20px; + -ms-column-gap: 20px; + -o-column-gap: 20px; + column-gap: 20px; + padding: 0; + list-style: none; + line-height: 1.333em; +} +@media (max-width: 900px) { + .tsd-index-panel ul.tsd-index-list { + -webkit-column-count: 1; + -moz-column-count: 1; + -ms-column-count: 1; + -o-column-count: 1; + column-count: 1; + } +} +@media (min-width: 901px) and (max-width: 1024px) { + .tsd-index-panel ul.tsd-index-list { + -webkit-column-count: 2; + -moz-column-count: 2; + -ms-column-count: 2; + -o-column-count: 2; + column-count: 2; + } +} +.tsd-index-panel ul.tsd-index-list li { + -webkit-page-break-inside: avoid; + -moz-page-break-inside: avoid; + -ms-page-break-inside: avoid; + -o-page-break-inside: avoid; + page-break-inside: avoid; +} +.tsd-index-panel a, +.tsd-index-panel .tsd-parent-kind-module a { + color: var(--color-ts); +} +.tsd-index-panel .tsd-parent-kind-interface a { + color: var(--color-ts-interface); +} +.tsd-index-panel .tsd-parent-kind-enum a { + color: var(--color-ts-enum); +} +.tsd-index-panel .tsd-parent-kind-class a { + color: var(--color-ts-class); +} +.tsd-index-panel .tsd-kind-module a { + color: var(--color-ts); +} +.tsd-index-panel .tsd-kind-interface a { + color: var(--color-ts-interface); +} +.tsd-index-panel .tsd-kind-enum a { + color: var(--color-ts-enum); +} +.tsd-index-panel .tsd-kind-class a { + color: var(--color-ts-class); +} +.tsd-index-panel .tsd-is-private a { + color: var(--color-ts-private); +} + +.tsd-flag { + display: inline-block; + padding: 0.25em 0.4em; + border-radius: 4px; + color: var(--color-comment-tag-text); + background-color: var(--color-comment-tag); + text-indent: 0; + font-size: 75%; + line-height: 1; + font-weight: normal; +} + +.tsd-anchor { + position: absolute; + top: -100px; +} + +.tsd-member { + position: relative; +} +.tsd-member .tsd-anchor + h3 { + margin-top: 0; + margin-bottom: 0; + border-bottom: none; +} +.tsd-member [data-tsd-kind] { + color: var(--color-ts); +} +.tsd-member [data-tsd-kind="Interface"] { + color: var(--color-ts-interface); +} +.tsd-member [data-tsd-kind="Enum"] { + color: var(--color-ts-enum); +} +.tsd-member [data-tsd-kind="Class"] { + color: var(--color-ts-class); +} +.tsd-member [data-tsd-kind="Private"] { + color: var(--color-ts-private); +} + +.tsd-navigation { + margin: 0 0 0 40px; +} +.tsd-navigation a { + display: block; + padding-top: 2px; + padding-bottom: 2px; + border-left: 2px solid transparent; + color: var(--color-text); + text-decoration: none; + transition: border-left-color 0.1s; +} +.tsd-navigation a:hover { + text-decoration: underline; +} +.tsd-navigation ul { + margin: 0; + padding: 0; + list-style: none; +} +.tsd-navigation li { + padding: 0; +} + +.tsd-navigation.primary { + padding-bottom: 40px; +} +.tsd-navigation.primary a { + display: block; + padding-top: 6px; + padding-bottom: 6px; +} +.tsd-navigation.primary ul li a { + padding-left: 5px; +} +.tsd-navigation.primary ul li li a { + padding-left: 25px; +} +.tsd-navigation.primary ul li li li a { + padding-left: 45px; +} +.tsd-navigation.primary ul li li li li a { + padding-left: 65px; +} +.tsd-navigation.primary ul li li li li li a { + padding-left: 85px; +} +.tsd-navigation.primary ul li li li li li li a { + padding-left: 105px; +} +.tsd-navigation.primary > ul { + border-bottom: 1px solid var(--color-panel-divider); +} +.tsd-navigation.primary li { + border-top: 1px solid var(--color-panel-divider); +} +.tsd-navigation.primary li.current > a { + font-weight: bold; +} +.tsd-navigation.primary li.label span { + display: block; + padding: 20px 0 6px 5px; + color: var(--color-menu-label); +} +.tsd-navigation.primary li.globals + li > span, +.tsd-navigation.primary li.globals + li > a { + padding-top: 20px; +} + +.tsd-navigation.secondary { + max-height: calc(100vh - 1rem - 40px); + overflow: auto; + position: sticky; + top: calc(0.5rem + 40px); + transition: 0.3s; +} +.tsd-navigation.secondary.tsd-navigation--toolbar-hide { + max-height: calc(100vh - 1rem); + top: 0.5rem; +} +.tsd-navigation.secondary ul { + transition: opacity 0.2s; +} +.tsd-navigation.secondary ul li a { + padding-left: 25px; +} +.tsd-navigation.secondary ul li li a { + padding-left: 45px; +} +.tsd-navigation.secondary ul li li li a { + padding-left: 65px; +} +.tsd-navigation.secondary ul li li li li a { + padding-left: 85px; +} +.tsd-navigation.secondary ul li li li li li a { + padding-left: 105px; +} +.tsd-navigation.secondary ul li li li li li li a { + padding-left: 125px; +} +.tsd-navigation.secondary ul.current a { + border-left-color: var(--color-panel-divider); +} +.tsd-navigation.secondary li.focus > a, +.tsd-navigation.secondary ul.current li.focus > a { + border-left-color: var(--color-menu-divider-focus); +} +.tsd-navigation.secondary li.current { + margin-top: 20px; + margin-bottom: 20px; + border-left-color: var(--color-panel-divider); +} +.tsd-navigation.secondary li.current > a { + font-weight: bold; +} + +@media (min-width: 901px) { + .menu-sticky-wrap { + position: static; + } +} + +.tsd-panel { + margin: 20px 0; + padding: 20px; + background-color: var(--color-panel); + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +.tsd-panel:empty { + display: none; +} +.tsd-panel > h1, +.tsd-panel > h2, +.tsd-panel > h3 { + margin: 1.5em -20px 10px -20px; + padding: 0 20px 10px 20px; + border-bottom: 1px solid var(--color-panel-divider); +} +.tsd-panel > h1.tsd-before-signature, +.tsd-panel > h2.tsd-before-signature, +.tsd-panel > h3.tsd-before-signature { + margin-bottom: 0; + border-bottom: 0; +} +.tsd-panel table { + display: block; + width: 100%; + overflow: auto; + margin-top: 10px; + word-break: normal; + word-break: keep-all; + border-collapse: collapse; +} +.tsd-panel table th { + font-weight: bold; +} +.tsd-panel table th, +.tsd-panel table td { + padding: 6px 13px; + border: 1px solid var(--color-panel-divider); +} +.tsd-panel table tr { + background: var(--color-background); +} +.tsd-panel table tr:nth-child(even) { + background: var(--color-secondary-background); +} + +.tsd-panel-group { + margin: 60px 0; +} +.tsd-panel-group > h1, +.tsd-panel-group > h2, +.tsd-panel-group > h3 { + padding-left: 20px; + padding-right: 20px; +} + +#tsd-search { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 40px; + height: 40px; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + padding: 0 10px; + background-color: var(--color-background); +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-panel); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current, +#tsd-search .results li:hover { + background-color: var(--color-panel-divider); +} +#tsd-search .results a { + display: block; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-panel-divider); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +.tsd-signature { + margin: 0 0 1em 0; + padding: 10px; + border: 1px solid var(--color-panel-divider); + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; + font-size: 14px; + overflow-x: auto; +} +.tsd-signature.tsd-kind-icon { + padding-left: 30px; +} +.tsd-signature.tsd-kind-icon:before { + top: 10px; + left: 10px; +} +.tsd-panel > .tsd-signature { + margin-left: -20px; + margin-right: -20px; + border-width: 1px 0; +} +.tsd-panel > .tsd-signature.tsd-kind-icon { + padding-left: 40px; +} +.tsd-panel > .tsd-signature.tsd-kind-icon:before { + left: 20px; +} + +.tsd-signature-symbol { + color: var(--color-text-aside); + font-weight: normal; +} + +.tsd-signature-type { + font-style: italic; + font-weight: normal; +} + +.tsd-signatures { + padding: 0; + margin: 0 0 1em 0; + border: 1px solid var(--color-panel-divider); +} +.tsd-signatures .tsd-signature { + margin: 0; + border-width: 1px 0 0 0; + transition: background-color 0.1s; +} +.tsd-signatures .tsd-signature:first-child { + border-top-width: 0; +} +.tsd-signatures .tsd-signature.current { + background-color: var(--color-panel-divider); +} +.tsd-signatures.active > .tsd-signature { + cursor: pointer; +} +.tsd-panel > .tsd-signatures { + margin-left: -20px; + margin-right: -20px; + border-width: 1px 0; +} +.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon { + padding-left: 40px; +} +.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before { + left: 20px; +} +.tsd-panel > a.anchor + .tsd-signatures { + border-top-width: 0; + margin-top: -20px; +} + +ul.tsd-descriptions { + position: relative; + overflow: hidden; + padding: 0; + list-style: none; +} +ul.tsd-descriptions.active > .tsd-description { + display: none; +} +ul.tsd-descriptions.active > .tsd-description.current { + display: block; +} +ul.tsd-descriptions.active > .tsd-description.fade-in { + animation: fade-in-delayed 0.3s; +} +ul.tsd-descriptions.active > .tsd-description.fade-out { + animation: fade-out-delayed 0.3s; + position: absolute; + display: block; + top: 0; + left: 0; + right: 0; + opacity: 0; + visibility: hidden; +} +ul.tsd-descriptions h4, +ul.tsd-descriptions .tsd-index-panel h3, +.tsd-index-panel ul.tsd-descriptions h3 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} + +ul.tsd-parameters, +ul.tsd-type-parameters { + list-style: square; + margin: 0; + padding-left: 20px; +} +ul.tsd-parameters > li.tsd-parameter-signature, +ul.tsd-type-parameters > li.tsd-parameter-signature { + list-style: none; + margin-left: -20px; +} +ul.tsd-parameters h5, +ul.tsd-type-parameters h5 { + font-size: 16px; + margin: 1em 0 0.5em 0; +} +ul.tsd-parameters .tsd-comment, +ul.tsd-type-parameters .tsd-comment { + margin-top: -0.5em; +} + +.tsd-sources { + font-size: 14px; + color: var(--color-text-aside); + margin: 0 0 1em 0; +} +.tsd-sources a { + color: var(--color-text-aside); + text-decoration: underline; +} +.tsd-sources ul, +.tsd-sources p { + margin: 0 !important; +} +.tsd-sources ul { + list-style: none; + padding: 0; +} + +.tsd-page-toolbar { + position: fixed; + z-index: 1; + top: 0; + left: 0; + width: 100%; + height: 40px; + color: var(--color-toolbar-text); + background: var(--color-toolbar); + border-bottom: 1px solid var(--color-panel-divider); + transition: transform 0.3s linear; +} +.tsd-page-toolbar a { + color: var(--color-toolbar-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .table-wrap { + display: table; + width: 100%; + height: 40px; +} +.tsd-page-toolbar .table-cell { + display: table-cell; + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} + +.tsd-page-toolbar--hide { + transform: translateY(-100%); +} + +.tsd-select .tsd-select-list li:before, +.tsd-select .tsd-select-label:before, +.tsd-widget:before { + content: ""; + display: inline-block; + width: 40px; + height: 40px; + margin: 0 -8px 0 0; + background-image: url(./widgets.png); + background-repeat: no-repeat; + text-indent: -1024px; + vertical-align: bottom; + filter: var(--icon-filter); +} +@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { + .tsd-select .tsd-select-list li:before, + .tsd-select .tsd-select-label:before, + .tsd-widget:before { + background-image: url(./widgets@2x.png); + background-size: 320px 40px; + } +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-panel-divider); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} +.tsd-widget.search:before { + background-position: 0 0; +} +.tsd-widget.menu:before { + background-position: -40px 0; +} +.tsd-widget.options:before { + background-position: -80px 0; +} +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +@media (max-width: 900px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +.tsd-select { + position: relative; + display: inline-block; + height: 40px; + transition: opacity 0.1s, background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-select .tsd-select-label { + opacity: 0.6; + transition: opacity 0.2s; +} +.tsd-select .tsd-select-label:before { + background-position: -240px 0; +} +.tsd-select.active .tsd-select-label { + opacity: 0.8; +} +.tsd-select.active .tsd-select-list { + visibility: visible; + opacity: 1; + transition-delay: 0s; +} +.tsd-select .tsd-select-list { + position: absolute; + visibility: hidden; + top: 40px; + left: 0; + margin: 0; + padding: 0; + opacity: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); + transition: visibility 0s 0.2s, opacity 0.2s; +} +.tsd-select .tsd-select-list li { + padding: 0 20px 0 0; + background-color: var(--color-background); +} +.tsd-select .tsd-select-list li:before { + background-position: 40px 0; +} +.tsd-select .tsd-select-list li:nth-child(even) { + background-color: var(--color-panel); +} +.tsd-select .tsd-select-list li:hover { + background-color: var(--color-panel-divider); +} +.tsd-select .tsd-select-list li.selected:before { + background-position: -200px 0; +} +@media (max-width: 900px) { + .tsd-select .tsd-select-list { + top: 0; + left: auto; + right: 100%; + margin-right: -5px; + } + .tsd-select .tsd-select-label:before { + background-position: -280px 0; + } +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + margin-left: 10px; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { + visibility: visible; +} diff --git a/assets/widgets.png b/assets/widgets.png new file mode 100644 index 0000000000000000000000000000000000000000..c7380532ac1b45400620011c37c4dcb7aec27a4c GIT binary patch literal 480 zcmeAS@N?(olHy`uVBq!ia0y~yU~~YoH8@y+q^jrZML>b&o-U3d6^w6h1+IPUz|;DW zIZ;96kdsD>Qv^q=09&hp0GpEni<1IR%gvP3v%OR9*{MuRTKWHZyIbuBt)Ci`cU_&% z1T+i^Y)o{%281-<3TpPAUTzw5v;RY=>1rvxmPl96#kYc9hX!6V^nB|ad#(S+)}?8C zr_H+lT3B#So$T=?$(w3-{rbQ4R<@nsf$}$hwSO)A$8&`(j+wQf=Jwhb0`CvhR5DCf z^OgI)KQemrUFPH+UynC$Y~QHG%DbTVh-Skz{enNU)cV_hPu~{TD7TPZl>0&K>iuE| z7AYn$7)Jrb9GE&SfQW4q&G*@N|4cHI`VakFa5-C!ov&XD)J(qp$rJJ*9e z-sHv}#g*T7Cv048d1v~BEAzM5FztAse#q78WWC^BUCzQ U&wLp6h6BX&boFyt=akR{0G%$)mH+?% literal 0 HcmV?d00001 diff --git a/assets/widgets@2x.png b/assets/widgets@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..4bbbd57272f3b28f47527d4951ad10f950b8ad43 GIT binary patch literal 855 zcmeAS@N?(olHy`uVBq!ia0y~yU}^xe12~w0Jcmn z@(X6T|9^jgLcx21{)7exgY)a>N6m2F0<`Rqr;B4q1>>88jUdw-7W`c)zLE*mq8W2H z-<&Jl_Hco5BuC5n@AbF5GD82~-e8-v=#zCyUX0F-o}8pPfAv`!GN$ff+TL<~@kgt} z62eO?_|&+>xBmM$@p|z`tIKEdpPf8%qI>4r7@jn<=eta*{3~?g(zz{Ke9zc-G^gr? z-7foa?LcS!hmbwzru}ICvbWLlW8;+l-}!^=c32!^nV`+`C*;0-*Y%l94pC;Cb3GXz zzSf%a!{gVr{Y_lVuUj+a)*Ca+!-Hu%xmP&&X-2CuANY8^i{D7Kg6qzP zXz_ps9+lN8ESH{K4`yu&b~I>N9xGlE&;2u*b?+Go!AhN?m-bxlLvtC#MzDF2kFzfHJ1W7ybqdefSqVhbOykd*Yi%EDuhs z4wF{ft^bv2+DDnKb8gj1FuvcV`M}luS>lO<^)8x>y1#R;a=-ZKwWTQQb)ioBbi;zh zD!f5V)8581to1LL7c9!l^PSC$NBPYif!_vAZhmL4)v4U)4UsrLYiH_9rmQDd?)(e5 z^pcH>qvBg*i0dus2r*mp4;zKvu=P#s-ti;2obl`NjjwoYd>e(oo#j_uyRb<7Pv^If zzZ|mGHmV)8^tbO%^>eqMw(@7(&3g{jEp-Najo7V75xI_ZHK*FA`elF{r5}E*d7+j_R literal 0 HcmV?d00001 diff --git a/enums/DivMode.html b/enums/DivMode.html new file mode 100644 index 0000000..e989cb4 --- /dev/null +++ b/enums/DivMode.html @@ -0,0 +1 @@ +DivMode | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration DivMode

Index

Enumeration members

Enumeration members

CEIL = 0
FLOOR = 1
TRUNCATE = 2

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/enums/FloatRoundingMode.html b/enums/FloatRoundingMode.html new file mode 100644 index 0000000..883a07c --- /dev/null +++ b/enums/FloatRoundingMode.html @@ -0,0 +1,13 @@ +FloatRoundingMode | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration FloatRoundingMode

+

Represents the different rounding modes.

+

Index

Enumeration members

ROUND_DOWN = 3
+

Round toward -Infinity. MPFR_RNDD

+
ROUND_FROM_ZERO = 4
+

Round away from zero. MPFR_RNDA

+
ROUND_NEAREST = 0
+

Round to nearest, with ties to even. MPFR_RNDN

+
ROUND_TO_ZERO = 1
+

Round toward zero. MPFR_RNDZ

+
ROUND_UP = 2
+

Round toward +Infinity. MPFR_RNDU

+

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/enums/mpfr_flags.html b/enums/mpfr_flags.html new file mode 100644 index 0000000..d218ef1 --- /dev/null +++ b/enums/mpfr_flags.html @@ -0,0 +1 @@ +mpfr_flags | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration mpfr_flags

Index

Enumeration members

MPFR_FLAGS_ALL = 63
MPFR_FLAGS_DIVBY0 = 32
MPFR_FLAGS_ERANGE = 16
MPFR_FLAGS_INEXACT = 8
MPFR_FLAGS_NAN = 4
MPFR_FLAGS_OVERFLOW = 2
MPFR_FLAGS_UNDERFLOW = 1

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/enums/mpfr_free_cache_t.html b/enums/mpfr_free_cache_t.html new file mode 100644 index 0000000..2744246 --- /dev/null +++ b/enums/mpfr_free_cache_t.html @@ -0,0 +1 @@ +mpfr_free_cache_t | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration mpfr_free_cache_t

Index

Enumeration members

MPFR_FREE_GLOBAL_CACHE = 2
MPFR_FREE_LOCAL_CACHE = 1

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/enums/mpfr_rnd_t.html b/enums/mpfr_rnd_t.html new file mode 100644 index 0000000..0c33576 --- /dev/null +++ b/enums/mpfr_rnd_t.html @@ -0,0 +1,15 @@ +mpfr_rnd_t | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration mpfr_rnd_t

Index

Enumeration members

MPFR_RNDA = 4
+

Round away from zero

+
MPFR_RNDD = 3
+

Round toward -Inf

+
MPFR_RNDF = 5
+

(Experimental) Faithful rounding

+
MPFR_RNDN = 0
+

Round to nearest, with ties to even

+
MPFR_RNDNA = -1
+

(Experimental) Round to nearest, with ties away from zero (mpfr_round)

+
MPFR_RNDU = 2
+

Round toward +Inf

+
MPFR_RNDZ = 1
+

Round toward zero

+

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..8ee740c --- /dev/null +++ b/index.html @@ -0,0 +1,165 @@ +gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

gmp-wasm

+ +

GMP-WASM

+
+

npm package +codecov +Build status +JSDelivr downloads

+

Arbitrary-precision Integer, Rational and Float types based on the GMP and MPFR libraries.

+ + +

Features

+
+
    +
  • Supports all modern browsers, web workers, Node.js and Deno
  • +
  • Includes an easy-to-use, high-level wrapper, but low-level functions are also exposed
  • +
  • Has a lot more features, and in some cases, it's faster than the built-in BigInt type
  • +
  • The WASM binary is bundled as a compressed base64 string (no problems with linking)
  • +
  • Works even without Webpack or other bundlers
  • +
  • Includes TypeScript type definitions, check API here.
  • +
  • Zero dependencies
  • +
  • Full minified and gzipped bundle has a size of Bundle size
  • +
  • It also packages a mini bundle without Float/MPFR operations Bundle size
  • +
  • 100% open source & transparent build process
  • +
+ + +

Installation

+
+
npm i gmp-wasm
+
+

It can also be used directly from HTML (via jsDelivr):

+
<!-- loads the full, minified library into the global `gmp` variable -->
<script src="https://cdn.jsdelivr.net/npm/gmp-wasm"></script>

<!-- or loads the non-minified library -->
<script src="https://cdn.jsdelivr.net/npm/gmp-wasm/dist/index.umd.js"></script>

<!-- or loads the minified library without Float/MPFR functions -->
<script src="https://cdn.jsdelivr.net/npm/gmp-wasm/dist/mini.umd.min.js"></script> +
+ + +

Usage

+
+

gmp-wasm also provides a high-level wrapper over the GMP functions. There are three major components:

+
    +
  • g.Integer() - Wraps integers (MPZ)
  • +
  • g.Rational() - Wraps rational numbers (MPQ)
  • +
  • g.Float() - Wraps floating-point numbers (MPFR)
  • +
+
const gmp = require('gmp-wasm');

gmp.init().then(({ calculate }) => {
// calculate() automatically deallocates all objects created within the callback function
const result = calculate((g) => {
const six = g.Float(1).add(5);
return g.Pi().div(six).sin(); // sin(Pi/6) = 0.5
});
console.log(result);
}); +
+

It is also possible to delay deallocation through the getContext() API:

+
const gmp = require('gmp-wasm');

gmp.init().then(({ getContext }) => {
const ctx = getContext();
let x = ctx.Integer(1);
for (let i = 2; i < 16; i++) {
x = x.add(i);
}
console.log(x.toString());
setTimeout(() => ctx.destroy(), 50);
}); +
+

The precision and the rounding modes can be set by passing a parameter to the context or to the Float constructor.

+
const roundingMode = gmp.FloatRoundingMode.ROUND_DOWN;
const options = { precisionBits: 10, roundingMode };

const result = calculate(g => g.Float(1).div(3), options);
// or
const result2 = calculate(g => g.Float(1, options).div(3));
// or
const ctx = getContext(options);
const result3 = ctx.Float(1).div(3).toString(); +
+ + +

Predefined constants

+
+
    +
  • Pi
  • +
  • EulerConstant
  • +
  • EulerNumber
  • +
  • Log2
  • +
  • Catalan
  • +
+ + +

Advanced usage

+
+

High-level wrapper can be combined with low-level functions:

+
const sum = calculate((g) => {
const a = g.Float(1);
const b = g.Float(2);
const c = g.Float(0);
// c = a + b
binding.mpfr_add(c.mpfr_t, a.mpfr_t, b.mpfr_t, 0);
return c;
}); +
+

If you want more control and performance you can use the original GMP / MPFR functions even without high-level wrappers.

+
const gmp = require('gmp-wasm');

gmp.init().then(({ binding }) => {
// Create first number and initialize it to 30
const num1Ptr = binding.mpz_t();
binding.mpz_init_set_si(num1Ptr, 30);
// Create second number from string. The string needs to be copied into WASM memory
const num2Ptr = binding.mpz_t();
const strPtr = binding.malloc_cstr('40');
binding.mpz_init_set_str(num2Ptr, strPtr, 10);
// Calculate num1Ptr + num2Ptr, store the result in num1Ptr
binding.mpz_add(num1Ptr, num1Ptr, num2Ptr);
// Get result as integer
console.log(binding.mpz_get_si(num1Ptr));
// Deallocate memory
binding.free(strPtr);
binding.mpz_clears(num1Ptr, num2Ptr);
binding.mpz_t_frees(num1Ptr, num2Ptr);
}); +
+

Sometimes, it's easier and faster to deallocate everything by reinitializing the WASM bindings:

+
// Deallocate all memory objects created by gmp-wasm
await binding.reset(); +
+ + +

Performance

+
+

In some cases, this library can provide better performance than the built-in BigInt type.

+

For example, calculating 8000 digits of Pi using the following formula provides better results:

+
PI = 3
+ 3 * (1/2) * (1/3) * (1/4)
+ 3 * ((1 * 3)/(2 * 4)) * (1/5) * (1 / (4^2))
+ 3 * ((1 * 3 * 5) / (2 * 4 * 6)) * (1/7) * (1 / (4^3))
+ ... +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
TestAvg. timeSpeedup
With JS built-in BigInt type129 ms1x
gmp-wasm Integer() high-level wrapper88 ms1.47x
Same as previous with delayed memory deallocation78 ms1.65x
gmp-wasm MPZ low-level functions53 ms2.43x
decimal.js 10.3.1 with integer division443 ms0.29x
big-integer 1.6.51129 ms1x
--------------------------------------------
gmp-wasm Float() high-level wrapper175 ms0.74x
Same as previous with delayed memory deallocation169 ms0.76x
gmp-wasm MPFR low-level functions118 ms1.09x
decimal.js 10.3.1 with float division785 ms0.16x
--------------------------------------------
gmp-wasm Float(1).atan().mul(4)0.6 ms215x
gmp-wasm Float('0.5').asin().mul(6)17 ms7.59x
+

* These measurements were made with Node.js v16.14 on an Intel Kaby Lake desktop CPU. Source code is here.

+

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/CalculateOptions.html b/interfaces/CalculateOptions.html new file mode 100644 index 0000000..5483451 --- /dev/null +++ b/interfaces/CalculateOptions.html @@ -0,0 +1 @@ +CalculateOptions | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface CalculateOptions

Hierarchy

Index

Properties

precisionBits?: number
radix?: number
roundingMode?: FloatRoundingMode

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/CalculateType.html b/interfaces/CalculateType.html new file mode 100644 index 0000000..3bf3b6c --- /dev/null +++ b/interfaces/CalculateType.html @@ -0,0 +1 @@ +CalculateType | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface CalculateType

Hierarchy

Index

Properties

Float: FloatFactory
Integer: IntegerFactory
Rational: RationalFactory

Methods

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/CalculateTypeWithDestroy.html b/interfaces/CalculateTypeWithDestroy.html new file mode 100644 index 0000000..28f9209 --- /dev/null +++ b/interfaces/CalculateTypeWithDestroy.html @@ -0,0 +1 @@ +CalculateTypeWithDestroy | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface CalculateTypeWithDestroy

Hierarchy

Index

Properties

Float: FloatFactory
Integer: IntegerFactory
Rational: RationalFactory

Methods

  • destroy(): void

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/FloatOptions.html b/interfaces/FloatOptions.html new file mode 100644 index 0000000..f91447b --- /dev/null +++ b/interfaces/FloatOptions.html @@ -0,0 +1 @@ +FloatOptions | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface FloatOptions

Hierarchy

Index

Properties

precisionBits?: number
radix?: number
roundingMode?: FloatRoundingMode

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/FloatType.html b/interfaces/FloatType.html new file mode 100644 index 0000000..43b496a --- /dev/null +++ b/interfaces/FloatType.html @@ -0,0 +1,167 @@ +FloatType | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface FloatType

Hierarchy

  • FloatReturn
    • FloatType

Index

Properties

mpfr_t: number = 0
precisionBits: number = -1
radix: number = -1
rndMode: number = -1
type: string = 'float'

Accessors

Methods

  • +

    Returns the inverse hyperbolic cosine

    +

    Returns FloatType

  • +

    Returns the sum of this number and the given one.

    +

    Parameters

    • val: AllTypes

    Returns FloatType

  • +

    Calculate the value of the Airy function Ai on x

    +

    Returns FloatType

  • +

    Returns the inverse hyperbolic sine

    +

    Returns FloatType

  • +

    Returns the inverse hyperbolic tangent

    +

    Returns FloatType

  • +

    Rounds to the next higher or equal representable integer

    +

    Returns FloatType

  • +

    Returns the hyperbolic cotangent

    +

    Returns FloatType

  • +

    Returns the hyperbolic cosecant

    +

    Returns FloatType

  • +

    Calculate the value of the Digamma (sometimes also called Psi) function

    +

    Returns FloatType

  • +

    Returns the result of the division of this number by the given one.

    +

    Parameters

    • val: AllTypes

    Returns FloatType

  • +

    Calculate exponential integral

    +

    Returns FloatType

  • +

    Calculate the value of the error function

    +

    Returns FloatType

  • +

    Calculate the value of the complementary error function

    +

    Returns FloatType

  • +

    Returns 10 to the power of current number (10^x)

    +

    Returns FloatType

  • +

    Returns 2 to the power of current number (2^x)

    +

    Returns FloatType

  • exponent(): number
  • +

    Returns the exponent of x, assuming that x is a non-zero ordinary number and the significand is considered in [1/2, 1).

    +

    Returns number

  • +

    Rounds to the next lower or equal representable integer

    +

    Returns FloatType

  • +

    Calculate the value of x - ny, where n is the integer quotient of x divided by y; n is rounded toward zero

    +

    Parameters

    Returns FloatType

  • +

    Calculate the value of the Gamma function.

    +

    Returns FloatType

  • greaterOrEqual(val: AllTypes): boolean
  • +

    Returns true if the current number is greater than or equal to the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • greaterThan(val: AllTypes): boolean
  • +

    Returns true if the current number is greater than the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • +

    Returns the reciprocal square root.

    +

    Returns FloatType

  • isEqual(val: AllTypes): boolean
  • +

    Returns true if the current number is equal to the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • isInfinite(): boolean
  • +

    Returns true if the number is an infinity

    +

    Returns boolean

  • isInteger(): boolean
  • +

    Returns true if the number is an integer

    +

    Returns boolean

  • isNaN(): boolean
  • +

    Returns true if the number is NaN

    +

    Returns boolean

  • isNumber(): boolean
  • +

    Return true if the number is an ordinary number (i.e., neither NaN nor an infinity)

    +

    Returns boolean

  • isRegular(): boolean
  • +

    Returns true if the number is a regular number (i.e., neither NaN, nor an infinity nor zero)

    +

    Returns boolean

  • isZero(): boolean
  • +

    Returns true if the number is zero

    +

    Returns boolean

  • +

    Calculate the value of the first kind Bessel function of order 0

    +

    Returns FloatType

  • +

    Calculate the value of the first kind Bessel function of order 1

    +

    Returns FloatType

  • +

    Calculate the value of the first kind Bessel function of order n

    +

    Parameters

    • n: number

    Returns FloatType

  • lessOrEqual(val: AllTypes): boolean
  • +

    Returns true if the current number is less than or equal to the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • lessThan(val: AllTypes): boolean
  • +

    Returns true if the current number is less than the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • +

    Calculate the real part of the dilogarithm (the integral of -log(1-t)/t from 0 to op)

    +

    Returns FloatType

  • +

    Calculate the value of the logarithm of the absolute value of the Gamma function

    +

    Returns FloatType

  • +

    Returns the base 10 logarithm

    +

    Returns FloatType

  • +

    Returns the product of this number and the given one.

    +

    Parameters

    • val: AllTypes

    Returns FloatType

  • +

    Returns the number with inverted sign.

    +

    Returns FloatType

  • +

    Return next value towards +∞

    +

    Returns FloatType

  • +

    Return next value towards -∞

    +

    Returns FloatType

  • +

    Returns the n-th root.

    +

    Parameters

    • nth: number

    Returns FloatType

  • +

    Returns this number exponentiated to the given value.

    +

    Parameters

    Returns FloatType

  • +

    Calculate the value of x - ny, where n is the integer quotient of x divided by y; n is rounded to the nearest integer (ties rounded to even)

    +

    Parameters

    Returns FloatType

  • +

    Rounds to the nearest representable integer, rounding halfway cases away from zero

    +

    Returns FloatType

  • +

    Rounds to the nearest representable integer, rounding halfway cases with the even-rounding rule

    +

    Returns FloatType

  • +

    Round to precision

    +

    Parameters

    • prec: number

    Returns FloatType

  • sign(): 0 | 1 | -1
  • +

    Returns the sign of the current value (-1 or 0 or 1)

    +

    Returns 0 | 1 | -1

  • +

    Returns the difference of this number and the given one.

    +

    Parameters

    • val: AllTypes

    Returns FloatType

  • +

    Returns the hyperbolic tangent

    +

    Returns FloatType

  • toFixed(digits?: number, radix?: number): string
  • +

    Formats the number using fixed-point notation

    +

    Parameters

    • digits: number = 0
    • Optional radix: number

    Returns string

  • +

    Converts the number to an integer

    +

    Returns IntegerType

  • toNumber(): number
  • +

    Converts current value into a JavaScript number

    +

    Returns number

  • +

    Converts the number to a rational number

    +

    Returns RationalType

  • toString(radix?: number): string
  • +

    Converts the number to string

    +

    Parameters

    • Optional radix: number

    Returns string

  • +

    Rounds to the next representable integer toward zero

    +

    Returns FloatType

  • +

    Calculate the value of the second kind Bessel function of order 0

    +

    Returns FloatType

  • +

    Calculate the value of the second kind Bessel function of order 1

    +

    Returns FloatType

  • +

    Calculate the value of the second kind Bessel function of order n

    +

    Parameters

    • n: number

    Returns FloatType

  • +

    Calculate the value of the Riemann Zeta function

    +

    Returns FloatType

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/GMPFunctions.html b/interfaces/GMPFunctions.html new file mode 100644 index 0000000..5c9c08f --- /dev/null +++ b/interfaces/GMPFunctions.html @@ -0,0 +1,973 @@ +GMPFunctions | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GMPFunctions

Hierarchy

  • GMPFunctionsType
    • GMPFunctions

Index

Properties

Accessors

Methods

Properties

free: (ptr: c_void_ptr) => void = ...

Type declaration

gmp_randclear: (state: gmp_randstate_t) => void = ...

Type declaration

gmp_randinit_default: (state: gmp_randstate_t) => void = ...

Type declaration

gmp_randinit_lc_2exp: (state: gmp_randstate_t, a: mpz_srcptr, c: c_unsigned_long_int, m2exp: mp_bitcnt_t) => void = ...

Type declaration

gmp_randinit_lc_2exp_size: (state: gmp_randstate_t, size: mp_bitcnt_t) => c_int = ...

Type declaration

gmp_randinit_mt: (state: gmp_randstate_t) => void = ...

Type declaration

gmp_randinit_set: (rop: gmp_randstate_t, op: __gmp_randstate_struct_ptr) => void = ...

Type declaration

gmp_randseed: (state: gmp_randstate_t, seed: mpz_srcptr) => void = ...

Type declaration

gmp_randseed_ui: (state: gmp_randstate_t, seed: c_unsigned_long_int) => void = ...

Type declaration

gmp_urandomb_ui: (state: gmp_randstate_t, n: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

gmp_urandomm_ui: (state: gmp_randstate_t, n: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

malloc: (size: c_size_t) => c_void_ptr = ...

Type declaration

malloc_cstr: (str: string) => number = ...

Type declaration

    • (str: string): number
    • Parameters

      • str: string

      Returns number

mp_bits_per_limb: () => number = ...

Type declaration

    • (): number
    • +

      Get GMP limb size

      +

      Returns number

mpfr_abs: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_acos: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_acosh: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_add: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_add_d: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_double, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_add_q: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpq_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_add_si: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_signed_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_add_ui: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_add_z: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpz_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_agm: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_ai: (rop: mpfr_ptr, x: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_asin: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_asinh: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_atan: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_atan2: (rop: mpfr_ptr, y: mpfr_srcptr, x: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_atanh: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_beta: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_can_round: (b: mpfr_srcptr, err: mpfr_exp_t, rnd1: mpfr_rnd_t, rnd2: mpfr_rnd_t, prec: mpfr_prec_t) => c_int = ...

Type declaration

mpfr_cbrt: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_ceil: (rop: mpfr_ptr, op: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_check_range: (x: mpfr_ptr, t: c_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_clear: (x: mpfr_ptr) => void = ...

Type declaration

    • +

      Free the space occupied by the significand of x.

      +

      Parameters

      Returns void

mpfr_clear_divby0: () => void = ...

Type declaration

    • (): void
    • +

      Clear (lower) the divide-by-zero flag.

      +

      Returns void

mpfr_clear_erangeflag: () => void = ...

Type declaration

    • (): void
    • +

      Clear (lower) the erange flag.

      +

      Returns void

mpfr_clear_flags: () => void = ...

Type declaration

    • (): void
    • +

      Clear (lower) all global flags (underflow, overflow, divide-by-zero, invalid, inexact, erange).

      +

      Returns void

mpfr_clear_inexflag: () => void = ...

Type declaration

    • (): void
    • +

      Clear (lower) the inexact flag.

      +

      Returns void

mpfr_clear_nanflag: () => void = ...

Type declaration

    • (): void
    • +

      Clear (lower) the invalid flag.

      +

      Returns void

mpfr_clear_overflow: () => void = ...

Type declaration

    • (): void
    • +

      Clear (lower) the overflow flag.

      +

      Returns void

mpfr_clear_underflow: () => void = ...

Type declaration

    • (): void
    • +

      Clear (lower) the underflow flag.

      +

      Returns void

mpfr_clears: (...ptrs: mpfr_ptr[]) => void = ...

Type declaration

    • +

      Free the space occupied by all the mpfr_t variables of the given list x.

      +

      Parameters

      Returns void

mpfr_cmp: (op1: mpfr_srcptr, op2: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_cmp_d: (op1: mpfr_srcptr, op2: c_double) => c_int = ...

Type declaration

mpfr_cmp_q: (op1: mpfr_srcptr, op2: mpq_srcptr) => c_int = ...

Type declaration

mpfr_cmp_si: (op1: mpfr_srcptr, op2: c_signed_long_int) => c_int = ...

Type declaration

mpfr_cmp_si_2exp: (op1: mpfr_srcptr, op2: c_signed_long_int, e: mpfr_exp_t) => c_int = ...

Type declaration

mpfr_cmp_ui: (op1: mpfr_srcptr, op2: c_unsigned_long_int) => c_int = ...

Type declaration

mpfr_cmp_ui_2exp: (op1: mpfr_srcptr, op2: c_unsigned_long_int, e: mpfr_exp_t) => c_int = ...

Type declaration

mpfr_cmp_z: (op1: mpfr_srcptr, op2: mpz_srcptr) => c_int = ...

Type declaration

mpfr_cmpabs: (op1: mpfr_srcptr, op2: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_cmpabs_ui: (op1: mpfr_srcptr, op2: c_unsigned_long_int) => c_int = ...

Type declaration

mpfr_const_catalan: (rop: mpfr_ptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_const_euler: (rop: mpfr_ptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_const_log2: (rop: mpfr_ptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_const_pi: (rop: mpfr_ptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_copysign: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_cos: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_cosh: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_cot: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_coth: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_csc: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_csch: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_d_div: (rop: mpfr_ptr, op1: c_double, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_d_sub: (rop: mpfr_ptr, op1: c_double, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_digamma: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_dim: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_div: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_div_2exp: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_div_2si: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_signed_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_div_2ui: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_div_d: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_double, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_div_q: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpq_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_div_si: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_signed_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_div_ui: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_div_z: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpz_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_divby0_p: () => c_int = ...

Type declaration

    • +

      Return the divide-by-zero flag, which is non-zero iff the flag is set.

      +

      Returns c_int

mpfr_dot: (rop: mpfr_ptr, a: mpfr_ptr_ptr, b: mpfr_ptr_ptr, n: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_eint: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_eq: (op1: mpfr_srcptr, op2: mpfr_srcptr, op3: c_unsigned_long_int) => c_int = ...

Type declaration

mpfr_equal_p: (op1: mpfr_srcptr, op2: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_erandom: (rop: mpfr_ptr, state: gmp_randstate_t, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_erangeflag_p: () => c_int = ...

Type declaration

    • +

      Return the erange flag, which is non-zero iff the flag is set.

      +

      Returns c_int

mpfr_erf: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_erfc: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_exp: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_exp10: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_exp2: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_expm1: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fac_ui: (rop: mpfr_ptr, op: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fits_intmax_p: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fits_sint_p: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fits_slong_p: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fits_sshort_p: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fits_uint_p: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fits_uintmax_p: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fits_ulong_p: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fits_ushort_p: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_flags_clear: (mask: mpfr_flags_t) => void = ...

Type declaration

    • +

      Clear (lower) the group of flags specified by mask.

      +

      Parameters

      Returns void

mpfr_flags_restore: (flags: mpfr_flags_t, mask: mpfr_flags_t) => void = ...

Type declaration

mpfr_flags_save: () => mpfr_flags_t = ...

Type declaration

mpfr_flags_set: (mask: mpfr_flags_t) => void = ...

Type declaration

mpfr_flags_test: (mask: mpfr_flags_t) => mpfr_flags_t = ...

Type declaration

mpfr_floor: (rop: mpfr_ptr, op: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_fma: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, op3: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fmma: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, op3: mpfr_srcptr, op4: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fmms: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, op3: mpfr_srcptr, op4: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fmod: (rop: mpfr_ptr, x: mpfr_srcptr, y: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fmodquo: (rop: mpfr_ptr, q: c_long_ptr, x: mpfr_srcptr, y: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_fms: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, op3: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_frac: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_free_cache: () => void = ...

Type declaration

    • (): void
    • +

      Free all caches and pools used by MPFR internally.

      +

      Returns void

mpfr_free_cache2: (way: mpfr_free_cache_t) => void = ...

Type declaration

    • +

      Free various caches and pools used by MPFR internally, as specified by way, which is a set of flags

      +

      Parameters

      Returns void

mpfr_free_pool: () => void = ...

Type declaration

    • (): void
    • +

      Free the pools used by MPFR internally.

      +

      Returns void

mpfr_free_str: (str: c_str_ptr) => void = ...

Type declaration

    • +

      Free a string allocated by mpfr_get_str using the unallocation function (see GNU MPFR - Memory Handling).

      +

      Parameters

      Returns void

mpfr_frexp: (exp: mpfr_exp_t_ptr, y: mpfr_ptr, x: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_gamma: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_gamma_inc: (rop: mpfr_ptr, op: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_get_d: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_double = ...

Type declaration

mpfr_get_d_2exp: (exp: c_long_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_double = ...

Type declaration

mpfr_get_default_prec: () => mpfr_prec_t = ...

Type declaration

mpfr_get_default_rounding_mode: () => mpfr_rnd_t = ...

Type declaration

mpfr_get_emax: () => mpfr_exp_t = ...

Type declaration

    • +

      Return the (current) largest exponent allowed for a floating-point variable.

      +

      Returns mpfr_exp_t

mpfr_get_emax_max: () => mpfr_exp_t = ...

Type declaration

mpfr_get_emax_min: () => mpfr_exp_t = ...

Type declaration

mpfr_get_emin: () => mpfr_exp_t = ...

Type declaration

    • +

      Return the (current) smallest exponent allowed for a floating-point variable.

      +

      Returns mpfr_exp_t

mpfr_get_emin_max: () => mpfr_exp_t = ...

Type declaration

mpfr_get_emin_min: () => mpfr_exp_t = ...

Type declaration

mpfr_get_exp: (x: mpfr_srcptr) => mpfr_exp_t = ...

Type declaration

mpfr_get_prec: (x: mpfr_srcptr) => mpfr_prec_t = ...

Type declaration

mpfr_get_q: (rop: mpq_ptr, op: mpfr_srcptr) => void = ...

Type declaration

mpfr_get_si: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_signed_long_int = ...

Type declaration

mpfr_get_str: (str: c_str_ptr, expptr: mpfr_exp_t_ptr, base: c_int, n: c_size_t, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_str_ptr = ...

Type declaration

mpfr_get_str_ndigits: (b: c_int, p: mpfr_prec_t) => c_size_t = ...

Type declaration

    • +

      Return the minimal integer m such that any number of p bits, when output with m digits in radix b with rounding to nearest, can be recovered exactly when read again, still with rounding to nearest. More precisely, we have m = 1 + ceil(p*log(2)/log(b)), with p replaced by p-1 if b is a power of 2.

      +

      Parameters

      Returns c_size_t

mpfr_get_ui: (op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_unsigned_long_int = ...

Type declaration

mpfr_get_version: () => c_str_ptr = ...

Type declaration

mpfr_get_z: (rop: mpz_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_get_z_2exp: (rop: mpz_ptr, op: mpfr_srcptr) => mpfr_exp_t = ...

Type declaration

    • +

      Put the scaled significand of op (regarded as an integer, with the precision of op) into rop, and return the exponent exp (which may be outside the current exponent range) such that op = rop * 2^exp.

      +

      Parameters

      Returns mpfr_exp_t

mpfr_greater_p: (op1: mpfr_srcptr, op2: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_greaterequal_p: (op1: mpfr_srcptr, op2: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_hypot: (rop: mpfr_ptr, x: mpfr_srcptr, y: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_inexflag_p: () => c_int = ...

Type declaration

    • +

      Return the inexact flag, which is non-zero iff the flag is set.

      +

      Returns c_int

mpfr_inf_p: (op: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_init: (x: mpfr_ptr) => void = ...

Type declaration

    • +

      Initialize x, set its precision to the default precision, and set its value to NaN.

      +

      Parameters

      Returns void

mpfr_init2: (x: mpfr_ptr, prec: mpfr_prec_t) => void = ...

Type declaration

mpfr_init_set: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => any = ...

Type declaration

mpfr_init_set_d: (rop: mpfr_ptr, op: number, rnd: mpfr_rnd_t) => any = ...

Type declaration

    • +

      Initialize rop and set its value from op, rounded in the direction rnd.

      +

      Parameters

      Returns any

mpfr_init_set_q: (rop: mpfr_ptr, op: mpq_srcptr, rnd: mpfr_rnd_t) => any = ...

Type declaration

mpfr_init_set_si: (rop: mpfr_ptr, op: number, rnd: mpfr_rnd_t) => any = ...

Type declaration

    • +

      Initialize rop and set its value from op, rounded in the direction rnd.

      +

      Parameters

      Returns any

mpfr_init_set_str: (x: mpfr_ptr, s: c_str_ptr, base: c_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_init_set_ui: (rop: mpfr_ptr, op: number, rnd: mpfr_rnd_t) => any = ...

Type declaration

    • +

      Initialize rop and set its value from op, rounded in the direction rnd.

      +

      Parameters

      Returns any

mpfr_init_set_z: (rop: mpfr_ptr, op: mpz_srcptr, rnd: mpfr_rnd_t) => any = ...

Type declaration

mpfr_inits: (...ptrs: mpfr_ptr[]) => void = ...

Type declaration

    • +

      Initialize all the mpfr_t variables of the given list x, set their precision to the default precision and their value to NaN.

      +

      Parameters

      Returns void

mpfr_inits2: (prec: mpfr_prec_t, ...ptrs: mpfr_ptr[]) => void = ...

Type declaration

    • +

      Initialize all the mpfr_t variables of the given variable argument x, set their precision to be exactly prec bits and their value to NaN.

      +

      Parameters

      Returns void

mpfr_integer_p: (op: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_j0: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_j1: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_jn: (rop: mpfr_ptr, n: c_signed_long_int, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_less_p: (op1: mpfr_srcptr, op2: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_lessequal_p: (op1: mpfr_srcptr, op2: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_lessgreater_p: (op1: mpfr_srcptr, op2: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_lgamma: (rop: mpfr_ptr, signp: c_int_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_li2: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_lngamma: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_log: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_log10: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_log1p: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_log2: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_log_ui: (rop: mpfr_ptr, op: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_max: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_min: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_min_prec: (x: mpfr_srcptr) => mpfr_prec_t = ...

Type declaration

mpfr_modf: (rop: mpfr_ptr, fop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_mul: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_mul_2exp: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_mul_2si: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_signed_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_mul_2ui: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_mul_d: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_double, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_mul_q: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpq_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_mul_si: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_signed_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_mul_ui: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_mul_z: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpz_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_nan_p: (op: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_nanflag_p: () => c_int = ...

Type declaration

    • +

      Return the invalid flag, which is non-zero iff the flag is set.

      +

      Returns c_int

mpfr_neg: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_nextabove: (x: mpfr_ptr) => void = ...

Type declaration

    • +

      Equivalent to mpfr_nexttoward where y is plus infinity.

      +

      Parameters

      Returns void

mpfr_nextbelow: (x: mpfr_ptr) => void = ...

Type declaration

    • +

      Equivalent to mpfr_nexttoward where y is minus infinity.

      +

      Parameters

      Returns void

mpfr_nexttoward: (x: mpfr_ptr, y: mpfr_srcptr) => void = ...

Type declaration

mpfr_nrandom: (rop: mpfr_ptr, state: gmp_randstate_t, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_number_p: (op: mpfr_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero if op is an ordinary number (i.e., neither NaN nor an infinity). Return zero otherwise.

      +

      Parameters

      Returns c_int

mpfr_overflow_p: () => c_int = ...

Type declaration

    • +

      Return the overflow flag, which is non-zero iff the flag is set.

      +

      Returns c_int

mpfr_pow: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_pow_si: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_signed_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_pow_ui: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_pow_z: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpz_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_prec_round: (x: mpfr_ptr, prec: mpfr_prec_t, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_rec_sqrt: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_regular_p: (op: mpfr_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero if op is a regular number (i.e., neither NaN, nor an infinity nor zero). Return zero otherwise.

      +

      Parameters

      Returns c_int

mpfr_reldiff: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => void = ...

Type declaration

mpfr_remainder: (rop: mpfr_ptr, x: mpfr_srcptr, y: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_remquo: (r: mpfr_ptr, q: c_long_ptr, x: mpfr_srcptr, y: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_rint: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_rint_ceil: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_rint_floor: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_rint_round: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_rint_roundeven: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_rint_trunc: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_rootn_ui: (rop: mpfr_ptr, op: mpfr_srcptr, k: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_round: (rop: mpfr_ptr, op: mpfr_srcptr) => c_int = ...

Type declaration

    • +

      Set rop to op rounded to the nearest representable integer, rounding halfway cases away from zero (as in the roundTiesToAway mode of IEEE 754-2008).

      +

      Parameters

      Returns c_int

mpfr_roundeven: (rop: mpfr_ptr, op: mpfr_srcptr) => c_int = ...

Type declaration

    • +

      Set rop to op rounded to the nearest representable integer, rounding halfway cases with the even-rounding rule zero (like mpfr_rint(mpfr_t, mpfr_t, mpfr_rnd_t) with MPFR_RNDN).

      +

      Parameters

      Returns c_int

mpfr_sec: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sech: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_d: (rop: mpfr_ptr, op: c_double, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_default_prec: (prec: mpfr_prec_t) => void = ...

Type declaration

    • +

      Set the default precision to be exactly prec bits, where prec can be any integer between MPFR_PREC_MINand MPFR_PREC_MAX.

      +

      Parameters

      Returns void

mpfr_set_default_rounding_mode: (rnd: mpfr_rnd_t) => void = ...

Type declaration

    • +

      Set the default rounding mode to rnd.

      +

      Parameters

      Returns void

mpfr_set_divby0: () => void = ...

Type declaration

    • (): void
    • +

      Set (raised) the divide-by-zero flag.

      +

      Returns void

mpfr_set_emax: (exp: mpfr_exp_t) => c_int = ...

Type declaration

mpfr_set_emin: (exp: mpfr_exp_t) => c_int = ...

Type declaration

mpfr_set_erangeflag: () => void = ...

Type declaration

    • (): void
    • +

      Set (raised) the erange flag.

      +

      Returns void

mpfr_set_exp: (x: mpfr_ptr, e: mpfr_exp_t) => c_int = ...

Type declaration

mpfr_set_inexflag: () => void = ...

Type declaration

    • (): void
    • +

      Set (raised) the inexact flag.

      +

      Returns void

mpfr_set_inf: (x: mpfr_ptr, sign: c_int) => void = ...

Type declaration

mpfr_set_nan: (x: mpfr_ptr) => void = ...

Type declaration

    • +

      Set the variable x to NaN (Not-a-Number).

      +

      Parameters

      Returns void

mpfr_set_nanflag: () => void = ...

Type declaration

    • (): void
    • +

      Set (raised) the invalid flag.

      +

      Returns void

mpfr_set_overflow: () => void = ...

Type declaration

    • (): void
    • +

      Set (raised) the overflow flag.

      +

      Returns void

mpfr_set_prec: (x: mpfr_ptr, prec: mpfr_prec_t) => void = ...

Type declaration

mpfr_set_prec_raw: (x: mpfr_ptr, prec: mpfr_prec_t) => void = ...

Type declaration

mpfr_set_q: (rop: mpfr_ptr, op: mpq_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_si: (rop: mpfr_ptr, op: c_signed_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_si_2exp: (rop: mpfr_ptr, op: c_signed_long_int, e: mpfr_exp_t, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_str: (rop: mpfr_ptr, s: c_str_ptr, base: c_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_ui: (rop: mpfr_ptr, op: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_ui_2exp: (rop: mpfr_ptr, op: c_unsigned_long_int, e: mpfr_exp_t, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_underflow: () => void = ...

Type declaration

    • (): void
    • +

      Set (raised) the underflow flag.

      +

      Returns void

mpfr_set_z: (rop: mpfr_ptr, op: mpz_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_z_2exp: (rop: mpfr_ptr, op: mpz_srcptr, e: mpfr_exp_t, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_set_zero: (x: mpfr_ptr, sign: c_int) => void = ...

Type declaration

mpfr_setsign: (rop: mpfr_ptr, op: mpfr_srcptr, s: c_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sgn: (op: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_si_div: (rop: mpfr_ptr, op1: c_signed_long_int, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_si_sub: (rop: mpfr_ptr, op1: c_signed_long_int, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_signbit: (op: mpfr_srcptr) => c_int = ...

Type declaration

    • +

      Return a non-zero value iff op has its sign bit set (i.e., if it is negative, -0, or a NaN whose representation has its sign bit set).

      +

      Parameters

      Returns c_int

mpfr_sin: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sin_cos: (sop: mpfr_ptr, cop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sinh: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sinh_cosh: (sop: mpfr_ptr, cop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sqr: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sqrt: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sqrt_ui: (rop: mpfr_ptr, op: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_strtofr: (rop: mpfr_ptr, nptr: c_str_ptr, endptr: c_str_ptr_ptr, base: c_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sub: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sub_d: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_double, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sub_q: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpq_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sub_si: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_signed_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sub_ui: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sub_z: (rop: mpfr_ptr, op1: mpfr_srcptr, op2: mpz_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_subnormalize: (x: mpfr_ptr, t: c_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_sum: (rop: mpfr_ptr, tab: mpfr_ptr_ptr, n: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_swap: (x: mpfr_ptr, y: mpfr_ptr) => void = ...

Type declaration

mpfr_t: () => mpfr_ptr = ...

Type declaration

    • +

      Allocates memory for the mpfr_t C struct and returns pointer

      +

      Returns mpfr_ptr

mpfr_t_free: (mpfr_ptr: mpfr_ptr) => void = ...

Type declaration

    • +

      Deallocates memory of a mpfr_t C struct

      +

      Parameters

      Returns void

mpfr_t_frees: (...ptrs: mpfr_ptr[]) => void = ...

Type declaration

    • +

      Deallocates memory of a NULL-terminated list of mpfr_t variables

      +

      Parameters

      Returns void

mpfr_tan: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_tanh: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_total_order_p: (x: mpfr_srcptr, y: mpfr_srcptr) => c_int = ...

Type declaration

    • +

      This function implements the totalOrder predicate from IEEE 754-2008, where -NaN < -Inf < negative finite numbers < -0 < +0 < positive finite numbers < +Inf < +NaN. It returns a non-zero value (true) when x is smaller than or equal to y for this order relation, and zero (false) otherwise

      +

      Parameters

      Returns c_int

mpfr_trunc: (rop: mpfr_ptr, op: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_ui_div: (rop: mpfr_ptr, op1: c_unsigned_long_int, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_ui_pow: (rop: mpfr_ptr, op1: c_unsigned_long_int, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_ui_pow_ui: (rop: mpfr_ptr, op1: c_unsigned_long_int, op2: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_ui_sub: (rop: mpfr_ptr, op1: c_unsigned_long_int, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_underflow_p: () => c_int = ...

Type declaration

    • +

      Return the underflow flag, which is non-zero iff the flag is set.

      +

      Returns c_int

mpfr_unordered_p: (op1: mpfr_srcptr, op2: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_urandom: (rop: mpfr_ptr, state: gmp_randstate_t, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_urandomb: (rop: mpfr_ptr, state: gmp_randstate_t) => c_int = ...

Type declaration

mpfr_y0: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_y1: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_yn: (rop: mpfr_ptr, n: c_signed_long_int, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_z_sub: (rop: mpfr_ptr, op1: mpz_srcptr, op2: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_zero_p: (op: mpfr_srcptr) => c_int = ...

Type declaration

mpfr_zeta: (rop: mpfr_ptr, op: mpfr_srcptr, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpfr_zeta_ui: (rop: mpfr_ptr, op: c_unsigned_long_int, rnd: mpfr_rnd_t) => c_int = ...

Type declaration

mpq_abs: (rop: mpq_ptr, op: mpq_srcptr) => void = ...

Type declaration

mpq_add: (sum: mpq_ptr, addend1: mpq_srcptr, addend2: mpq_srcptr) => void = ...

Type declaration

mpq_canonicalize: (op: mpq_ptr) => void = ...

Type declaration

    • +

      Remove any factors that are common to the numerator and denominator of op, and make the denominator positive.

      +

      Parameters

      Returns void

mpq_clear: (x: mpq_ptr) => void = ...

Type declaration

    • +

      Free the space occupied by x.

      +

      Parameters

      Returns void

mpq_clears: (...ptrs: mpq_ptr[]) => void = ...

Type declaration

    • +

      Free the space occupied by a NULL-terminated list of mpq_t variables.

      +

      Parameters

      Returns void

mpq_cmp: (op1: mpq_srcptr, op2: mpq_srcptr) => c_int = ...

Type declaration

mpq_cmp_si: (op1: mpq_srcptr, num2: c_signed_long_int, den2: c_unsigned_long_int) => c_int = ...

Type declaration

mpq_cmp_ui: (op1: mpq_srcptr, num2: c_unsigned_long_int, den2: c_unsigned_long_int) => c_int = ...

Type declaration

mpq_cmp_z: (op1: mpq_srcptr, op2: mpz_srcptr) => c_int = ...

Type declaration

mpq_denref: (op: mpq_ptr) => mpz_ptr = ...

Type declaration

mpq_div: (quotient: mpq_ptr, dividend: mpq_srcptr, divisor: mpq_srcptr) => void = ...

Type declaration

mpq_div_2exp: (rop: mpq_ptr, op1: mpq_srcptr, op2: mp_bitcnt_t) => void = ...

Type declaration

mpq_equal: (op1: mpq_srcptr, op2: mpq_srcptr) => c_int = ...

Type declaration

mpq_get_d: (op: mpq_srcptr) => c_double = ...

Type declaration

mpq_get_den: (denominator: mpz_ptr, rational: mpq_srcptr) => void = ...

Type declaration

mpq_get_num: (numerator: mpz_ptr, rational: mpq_srcptr) => void = ...

Type declaration

mpq_get_str: (str: c_str_ptr, base: c_int, op: mpq_srcptr) => c_str_ptr = ...

Type declaration

mpq_init: (x: mpq_ptr) => void = ...

Type declaration

    • +

      Initialize x and set it to 0/1.

      +

      Parameters

      Returns void

mpq_inits: (...ptrs: mpq_ptr[]) => void = ...

Type declaration

    • +

      Initialize a NULL-terminated list of mpq_t variables, and set their values to 0/1.

      +

      Parameters

      Returns void

mpq_inv: (inverted_number: mpq_ptr, number: mpq_srcptr) => void = ...

Type declaration

mpq_mul: (product: mpq_ptr, multiplier: mpq_srcptr, multiplicand: mpq_srcptr) => void = ...

Type declaration

mpq_mul_2exp: (rop: mpq_ptr, op1: mpq_srcptr, op2: mp_bitcnt_t) => void = ...

Type declaration

mpq_neg: (negated_operand: mpq_ptr, operand: mpq_srcptr) => void = ...

Type declaration

mpq_numref: (op: mpq_ptr) => mpz_ptr = ...

Type declaration

mpq_set: (rop: mpq_ptr, op: mpq_srcptr) => void = ...

Type declaration

mpq_set_d: (rop: mpq_ptr, op: c_double) => void = ...

Type declaration

    • +

      Set rop to the value of op. There is no rounding, this conversion is exact.

      +

      Parameters

      Returns void

mpq_set_den: (rational: mpq_ptr, denominator: mpz_srcptr) => void = ...

Type declaration

mpq_set_num: (rational: mpq_ptr, numerator: mpz_srcptr) => void = ...

Type declaration

mpq_set_si: (rop: mpq_ptr, op1: c_signed_long_int, op2: c_unsigned_long_int) => void = ...

Type declaration

mpq_set_str: (rop: mpq_ptr, str: c_str_ptr, base: c_int) => c_int = ...

Type declaration

mpq_set_ui: (rop: mpq_ptr, op1: c_unsigned_long_int, op2: c_unsigned_long_int) => void = ...

Type declaration

mpq_set_z: (rop: mpq_ptr, op: mpz_srcptr) => void = ...

Type declaration

mpq_sgn: (op: mpq_ptr) => c_int = ...

Type declaration

mpq_sub: (difference: mpq_ptr, minuend: mpq_srcptr, subtrahend: mpq_srcptr) => void = ...

Type declaration

mpq_swap: (rop1: mpq_ptr, rop2: mpq_ptr) => void = ...

Type declaration

mpq_t: () => mpq_ptr = ...

Type declaration

    • +

      Allocates memory for the mpq_t C struct and returns pointer

      +

      Returns mpq_ptr

mpq_t_free: (mpq_ptr: mpq_ptr) => void = ...

Type declaration

    • +

      Deallocates memory of a mpq_t C struct

      +

      Parameters

      Returns void

mpq_t_frees: (...ptrs: mpq_ptr[]) => void = ...

Type declaration

    • +

      Deallocates memory of a NULL-terminated list of mpq_t variables

      +

      Parameters

      Returns void

mpz_2fac_ui: (rop: mpz_ptr, n: c_unsigned_long_int) => void = ...

Type declaration

mpz_abs: (rop: mpz_ptr, op: mpz_srcptr) => void = ...

Type declaration

mpz_add: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

mpz_add_ui: (rop: mpz_ptr, op1: mpz_srcptr, op2: c_unsigned_long_int) => void = ...

Type declaration

mpz_addmul: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

mpz_addmul_ui: (rop: mpz_ptr, op1: mpz_srcptr, op2: c_unsigned_long_int) => void = ...

Type declaration

mpz_and: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

mpz_bin_ui: (rop: mpz_ptr, n: mpz_srcptr, k: c_unsigned_long_int) => void = ...

Type declaration

mpz_bin_uiui: (rop: mpz_ptr, n: c_unsigned_long_int, k: c_unsigned_long_int) => void = ...

Type declaration

mpz_cdiv_q: (q: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_cdiv_q_2exp: (q: mpz_ptr, n: mpz_srcptr, b: mp_bitcnt_t) => void = ...

Type declaration

mpz_cdiv_q_ui: (q: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_cdiv_qr: (q: mpz_ptr, r: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_cdiv_qr_ui: (q: mpz_ptr, r: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_cdiv_r: (r: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_cdiv_r_2exp: (r: mpz_ptr, n: mpz_srcptr, b: mp_bitcnt_t) => void = ...

Type declaration

mpz_cdiv_r_ui: (r: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_cdiv_ui: (n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_clear: (x: mpz_ptr) => void = ...

Type declaration

    • +

      Free the space occupied by x.

      +

      Parameters

      Returns void

mpz_clears: (...ptrs: mpz_ptr[]) => void = ...

Type declaration

    • +

      Free the space occupied by a NULL-terminated list of mpz_t variables.

      +

      Parameters

      Returns void

mpz_clrbit: (rop: mpz_ptr, bit_index: mp_bitcnt_t) => void = ...

Type declaration

mpz_cmp: (op1: mpz_srcptr, op2: mpz_srcptr) => c_int = ...

Type declaration

mpz_cmp_d: (op1: mpz_srcptr, op2: c_double) => c_int = ...

Type declaration

mpz_cmp_si: (op1: mpz_srcptr, op2: c_signed_long_int) => c_int = ...

Type declaration

mpz_cmp_ui: (op1: mpz_srcptr, op2: c_unsigned_long_int) => c_int = ...

Type declaration

mpz_cmpabs: (op1: mpz_srcptr, op2: mpz_srcptr) => c_int = ...

Type declaration

mpz_cmpabs_d: (op1: mpz_srcptr, op2: c_double) => c_int = ...

Type declaration

mpz_cmpabs_ui: (op1: mpz_srcptr, op2: c_unsigned_long_int) => c_int = ...

Type declaration

mpz_com: (rop: mpz_ptr, op: mpz_srcptr) => void = ...

Type declaration

mpz_combit: (rop: mpz_ptr, bitIndex: mp_bitcnt_t) => void = ...

Type declaration

mpz_congruent_2exp_p: (n: mpz_srcptr, c: mpz_srcptr, b: mp_bitcnt_t) => c_int = ...

Type declaration

mpz_congruent_p: (n: mpz_srcptr, c: mpz_srcptr, d: mpz_srcptr) => c_int = ...

Type declaration

mpz_congruent_ui_p: (n: mpz_srcptr, c: c_unsigned_long_int, d: c_unsigned_long_int) => c_int = ...

Type declaration

mpz_divexact: (q: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_divexact_ui: (q: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => void = ...

Type declaration

mpz_divisible_2exp_p: (n: mpz_srcptr, b: mp_bitcnt_t) => c_int = ...

Type declaration

mpz_divisible_p: (n: mpz_srcptr, d: mpz_srcptr) => c_int = ...

Type declaration

mpz_divisible_ui_p: (n: mpz_srcptr, d: c_unsigned_long_int) => c_int = ...

Type declaration

mpz_even_p: (op: mpz_srcptr) => void = ...

Type declaration

mpz_export: (rop: c_void_ptr, countp: c_size_t_ptr, order: c_int, size: c_size_t, endian: c_int, nails: c_size_t, op: mpz_srcptr) => c_void_ptr = ...

Type declaration

mpz_fac_ui: (rop: mpz_ptr, n: c_unsigned_long_int) => void = ...

Type declaration

mpz_fdiv_q: (q: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_fdiv_q_2exp: (q: mpz_ptr, n: mpz_srcptr, b: mp_bitcnt_t) => void = ...

Type declaration

mpz_fdiv_q_ui: (q: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_fdiv_qr: (q: mpz_ptr, r: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_fdiv_qr_ui: (q: mpz_ptr, r: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_fdiv_r: (r: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_fdiv_r_2exp: (r: mpz_ptr, n: mpz_srcptr, b: mp_bitcnt_t) => void = ...

Type declaration

mpz_fdiv_r_ui: (r: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_fdiv_ui: (n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_fib2_ui: (fn: mpz_ptr, fnsub1: mpz_ptr, n: c_unsigned_long_int) => void = ...

Type declaration

mpz_fib_ui: (fn: mpz_ptr, n: c_unsigned_long_int) => void = ...

Type declaration

mpz_fits_sint_p: (op: mpz_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero iff the value of op fits in a signed 32-bit integer. Otherwise, return zero.

      +

      Parameters

      Returns c_int

mpz_fits_slong_p: (op: mpz_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero iff the value of op fits in a signed 32-bit integer. Otherwise, return zero.

      +

      Parameters

      Returns c_int

mpz_fits_sshort_p: (op: mpz_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero iff the value of op fits in a signed 16-bit integer. Otherwise, return zero.

      +

      Parameters

      Returns c_int

mpz_fits_uint_p: (op: mpz_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero iff the value of op fits in an unsigned 32-bit integer. Otherwise, return zero.

      +

      Parameters

      Returns c_int

mpz_fits_ulong_p: (op: mpz_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero iff the value of op fits in an unsigned 32-bit integer. Otherwise, return zero.

      +

      Parameters

      Returns c_int

mpz_fits_ushort_p: (op: mpz_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero iff the value of op fits in an unsigned 16-bit integer. Otherwise, return zero.

      +

      Parameters

      Returns c_int

mpz_gcd: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

mpz_gcd_ui: (rop: mpz_ptr, op1: mpz_srcptr, op2: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_gcdext: (g: mpz_ptr, s: mpz_ptr, t: mpz_ptr, a: mpz_srcptr, b: mpz_srcptr) => void = ...

Type declaration

mpz_get_d: (op: mpz_srcptr) => c_double = ...

Type declaration

mpz_get_d_2exp: (exp: c_signed_long_int_ptr, op: mpz_srcptr) => c_double = ...

Type declaration

mpz_get_si: (op: mpz_srcptr) => c_signed_long_int = ...

Type declaration

mpz_get_str: (str: c_str_ptr, base: c_int, op: mpz_srcptr) => c_str_ptr = ...

Type declaration

mpz_get_ui: (op: mpz_srcptr) => c_unsigned_long_int = ...

Type declaration

mpz_getlimbn: (op: mpz_srcptr, n: mp_size_t) => mp_limb_t = ...

Type declaration

mpz_hamdist: (op1: mpz_srcptr, op2: mpz_srcptr) => mp_bitcnt_t = ...

Type declaration

mpz_import: (rop: mpz_ptr, count: c_size_t, order: c_int, size: c_size_t, endian: c_int, nails: c_size_t, op: c_void_ptr) => void = ...

Type declaration

mpz_init: (x: mpz_ptr) => void = ...

Type declaration

    • +

      Initialize x, and set its value to 0.

      +

      Parameters

      Returns void

mpz_init2: (x: mpz_ptr, n: mp_bitcnt_t) => void = ...

Type declaration

mpz_init_set: (rop: mpz_ptr, op: mpz_srcptr) => void = ...

Type declaration

mpz_init_set_d: (rop: mpz_ptr, op: c_double) => void = ...

Type declaration

    • +

      Initialize rop with limb space and set the initial numeric value from op.

      +

      Parameters

      Returns void

mpz_init_set_si: (rop: mpz_ptr, op: c_signed_long_int) => void = ...

Type declaration

mpz_init_set_str: (rop: mpz_ptr, str: c_str_ptr, base: c_int) => c_int = ...

Type declaration

mpz_init_set_ui: (rop: mpz_ptr, op: c_unsigned_long_int) => void = ...

Type declaration

mpz_inits: (...ptrs: mpz_ptr[]) => void = ...

Type declaration

    • +

      Initialize a NULL-terminated list of mpz_t variables, and set their values to 0.

      +

      Parameters

      Returns void

mpz_invert: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => c_int = ...

Type declaration

mpz_ior: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

mpz_jacobi: (a: mpz_srcptr, b: mpz_srcptr) => c_int = ...

Type declaration

mpz_kronecker: (a: mpz_srcptr, b: mpz_srcptr) => c_int = ...

Type declaration

mpz_kronecker_si: (a: mpz_srcptr, b: c_signed_long_int) => c_int = ...

Type declaration

mpz_kronecker_ui: (a: mpz_srcptr, b: c_unsigned_long_int) => c_int = ...

Type declaration

mpz_lcm: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

mpz_lcm_ui: (rop: mpz_ptr, op1: mpz_srcptr, op2: c_unsigned_long_int) => void = ...

Type declaration

mpz_legendre: (a: mpz_srcptr, p: mpz_srcptr) => c_int = ...

Type declaration

mpz_limbs_finish: (x: mpz_ptr, s: mp_size_t) => void = ...

Type declaration

mpz_limbs_modify: (x: mpz_ptr, n: mp_size_t) => mp_ptr = ...

Type declaration

mpz_limbs_read: (x: mpz_srcptr) => mp_srcptr = ...

Type declaration

mpz_limbs_write: (x: mpz_ptr, n: mp_size_t) => mp_ptr = ...

Type declaration

mpz_lucnum2_ui: (ln: mpz_ptr, lnsub1: mpz_ptr, n: c_unsigned_long_int) => void = ...

Type declaration

mpz_lucnum_ui: (ln: mpz_ptr, n: c_unsigned_long_int) => void = ...

Type declaration

mpz_mfac_uiui: (rop: mpz_ptr, n: c_unsigned_long_int, m: c_unsigned_long_int) => void = ...

Type declaration

mpz_millerrabin: (n: mpz_srcptr, reps: c_int) => c_int = ...

Type declaration

mpz_mod: (r: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_mod_ui: (r: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => void = ...

Type declaration

mpz_mul: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

mpz_mul_2exp: (rop: mpz_ptr, op1: mpz_srcptr, op2: mp_bitcnt_t) => void = ...

Type declaration

mpz_mul_si: (rop: mpz_ptr, op1: mpz_srcptr, op2: c_signed_long_int) => void = ...

Type declaration

mpz_mul_ui: (rop: mpz_ptr, op1: mpz_srcptr, op2: c_unsigned_long_int) => void = ...

Type declaration

mpz_neg: (rop: mpz_ptr, op: mpz_srcptr) => void = ...

Type declaration

mpz_nextprime: (rop: mpz_ptr, op: mpz_srcptr) => void = ...

Type declaration

mpz_odd_p: (op: mpz_srcptr) => void = ...

Type declaration

mpz_perfect_power_p: (op: mpz_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero if op is a perfect power, i.e., if there exist integers a and b, with b > 1, such that op = a^b.

      +

      Parameters

      Returns c_int

mpz_perfect_square_p: (op: mpz_srcptr) => c_int = ...

Type declaration

    • +

      Return non-zero if op is a perfect square, i.e., if the square root of op is an integer.

      +

      Parameters

      Returns c_int

mpz_popcount: (op: mpz_srcptr) => mp_bitcnt_t = ...

Type declaration

mpz_pow_ui: (rop: mpz_ptr, base: mpz_srcptr, exp: c_unsigned_long_int) => void = ...

Type declaration

mpz_powm: (rop: mpz_ptr, base: mpz_srcptr, exp: mpz_srcptr, mod: mpz_srcptr) => void = ...

Type declaration

mpz_powm_sec: (rop: mpz_ptr, base: mpz_srcptr, exp: mpz_srcptr, mod: mpz_srcptr) => void = ...

Type declaration

mpz_powm_ui: (rop: mpz_ptr, base: mpz_srcptr, exp: c_unsigned_long_int, mod: mpz_srcptr) => void = ...

Type declaration

mpz_primorial_ui: (rop: mpz_ptr, n: c_unsigned_long_int) => void = ...

Type declaration

mpz_probab_prime_p: (n: mpz_srcptr, reps: c_int) => c_int = ...

Type declaration

mpz_random: (rop: mpz_ptr, maxSize: mp_size_t) => void = ...

Type declaration

mpz_random2: (rop: mpz_ptr, maxSize: mp_size_t) => void = ...

Type declaration

    • +

      Generate a random integer of at most maxSize limbs, with long strings of zeros and ones in the binary representation.

      +

      Parameters

      Returns void

mpz_realloc2: (x: mpz_ptr, n: mp_bitcnt_t) => void = ...

Type declaration

mpz_remove: (rop: mpz_ptr, op: mpz_srcptr, f: mpz_srcptr) => mp_bitcnt_t = ...

Type declaration

mpz_roinit_n: (x: mpz_ptr, xp: mp_srcptr, xs: mp_size_t) => mpz_srcptr = ...

Type declaration

mpz_root: (rop: mpz_ptr, op: mpz_srcptr, n: c_unsigned_long_int) => c_int = ...

Type declaration

mpz_rootrem: (root: mpz_ptr, rem: mpz_ptr, u: mpz_srcptr, n: c_unsigned_long_int) => void = ...

Type declaration

mpz_rrandomb: (rop: mpz_ptr, state: gmp_randstate_t, n: mp_bitcnt_t) => void = ...

Type declaration

mpz_scan0: (op: mpz_srcptr, startingBit: mp_bitcnt_t) => mp_bitcnt_t = ...

Type declaration

mpz_scan1: (op: mpz_srcptr, startingBit: mp_bitcnt_t) => mp_bitcnt_t = ...

Type declaration

mpz_set: (rop: mpz_ptr, op: mpz_srcptr) => void = ...

Type declaration

mpz_set_d: (rop: mpz_ptr, op: c_double) => void = ...

Type declaration

mpz_set_q: (rop: mpz_ptr, op: mpq_srcptr) => void = ...

Type declaration

mpz_set_si: (rop: mpz_ptr, op: c_signed_long_int) => void = ...

Type declaration

mpz_set_str: (rop: mpz_ptr, str: c_str_ptr, base: c_int) => c_int = ...

Type declaration

mpz_set_ui: (rop: mpz_ptr, op: c_unsigned_long_int) => void = ...

Type declaration

mpz_setbit: (rop: mpz_ptr, bitIndex: mp_bitcnt_t) => void = ...

Type declaration

mpz_sgn: (op: mpz_ptr) => c_int = ...

Type declaration

mpz_si_kronecker: (a: c_signed_long_int, b: mpz_srcptr) => c_int = ...

Type declaration

mpz_size: (op: mpz_srcptr) => c_size_t = ...

Type declaration

mpz_sizeinbase: (op: mpz_srcptr, base: c_int) => c_size_t = ...

Type declaration

mpz_sqrt: (rop: mpz_ptr, op: mpz_srcptr) => void = ...

Type declaration

mpz_sqrtrem: (rop1: mpz_ptr, rop2: mpz_ptr, op: mpz_srcptr) => void = ...

Type declaration

    • +

      Set rop1 to the truncated integer part of the square root of op, like mpz_sqrt. Set rop2 to the remainder op - rop1 * rop1, which will be zero if op is a perfect square.

      +

      Parameters

      Returns void

mpz_sub: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

mpz_sub_ui: (rop: mpz_ptr, op1: mpz_srcptr, op2: c_unsigned_long_int) => void = ...

Type declaration

mpz_submul: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

mpz_submul_ui: (rop: mpz_ptr, op1: mpz_srcptr, op2: c_unsigned_long_int) => void = ...

Type declaration

mpz_swap: (rop1: mpz_ptr, rop2: mpz_ptr) => void = ...

Type declaration

mpz_t: () => mpz_ptr = ...

Type declaration

    • +

      Allocates memory for the mpfr_t C struct and returns pointer

      +

      Returns mpz_ptr

mpz_t_free: (ptr: mpz_ptr) => void = ...

Type declaration

    • +

      Deallocates memory of a mpfr_t C struct

      +

      Parameters

      Returns void

mpz_t_frees: (...ptrs: mpz_ptr[]) => void = ...

Type declaration

    • +

      Deallocates memory of a NULL-terminated list of mpfr_t variables

      +

      Parameters

      Returns void

mpz_tdiv_q: (q: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_tdiv_q_2exp: (q: mpz_ptr, n: mpz_srcptr, b: mp_bitcnt_t) => void = ...

Type declaration

mpz_tdiv_q_ui: (q: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_tdiv_qr: (q: mpz_ptr, r: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_tdiv_qr_ui: (q: mpz_ptr, r: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_tdiv_r: (r: mpz_ptr, n: mpz_srcptr, d: mpz_srcptr) => void = ...

Type declaration

mpz_tdiv_r_2exp: (r: mpz_ptr, n: mpz_srcptr, b: mp_bitcnt_t) => void = ...

Type declaration

mpz_tdiv_r_ui: (r: mpz_ptr, n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_tdiv_ui: (n: mpz_srcptr, d: c_unsigned_long_int) => c_unsigned_long_int = ...

Type declaration

mpz_tstbit: (op: mpz_srcptr, bitIndex: mp_bitcnt_t) => c_int = ...

Type declaration

mpz_ui_kronecker: (a: c_unsigned_long_int, b: mpz_srcptr) => c_int = ...

Type declaration

mpz_ui_pow_ui: (rop: mpz_ptr, base: c_unsigned_long_int, exp: c_unsigned_long_int) => void = ...

Type declaration

mpz_ui_sub: (rop: mpz_ptr, op1: c_unsigned_long_int, op2: mpz_srcptr) => void = ...

Type declaration

mpz_urandomb: (rop: mpz_ptr, state: gmp_randstate_t, n: mp_bitcnt_t) => void = ...

Type declaration

mpz_urandomm: (rop: mpz_ptr, state: gmp_randstate_t, n: mpz_srcptr) => void = ...

Type declaration

mpz_xor: (rop: mpz_ptr, op1: mpz_srcptr, op2: mpz_srcptr) => void = ...

Type declaration

reset: () => Promise<void> = ...

Type declaration

    • (): Promise<void>
    • Returns Promise<void>

Accessors

  • get mem(): Uint8Array
  • Returns Uint8Array

  • get memView(): DataView
  • Returns DataView

Methods

  • mpfr_init_set_string(mpfr: mpfr_t, input: string, base: number, rnd: mpfr_rnd_t): number
  • +

    Initializes new MPFR float from JS string

    +

    Parameters

    Returns number

  • mpfr_set_string(mpfr: mpfr_t, input: string, base: number, rnd: mpfr_rnd_t): number
  • +

    Converts JS string into MPFR float

    +

    Parameters

    Returns number

  • mpq_set_string(mpq: mpq_ptr, input: string, base: number): number
  • +

    Converts JS string into MPQ rational

    +

    Parameters

    • mpq: mpq_ptr
    • input: string
    • base: number

    Returns number

  • mpq_to_string(x: mpz_ptr, base: number): string
  • +

    Converts MPQ rational into JS string

    +

    Parameters

    Returns string

  • mpz_init_set_string(mpz: mpz_ptr, input: string, base: number): number
  • +

    Initializes new MPFR float from JS string

    +

    Parameters

    • mpz: mpz_ptr
    • input: string
    • base: number

    Returns number

  • mpz_set_string(mpz: mpz_ptr, input: string, base: number): number
  • +

    Converts JS string into MPZ integer

    +

    Parameters

    • mpz: mpz_ptr
    • input: string
    • base: number

    Returns number

  • mpz_to_string(x: mpz_ptr, base: number): string
  • +

    Converts MPZ int into JS string

    +

    Parameters

    Returns string

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/GMPLib.html b/interfaces/GMPLib.html new file mode 100644 index 0000000..a2169aa --- /dev/null +++ b/interfaces/GMPLib.html @@ -0,0 +1 @@ +GMPLib | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GMPLib

Hierarchy

  • GMPLib

Index

Properties

binding: GMPFunctions

Methods

  • reset(): Promise<void>

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/IntegerType.html b/interfaces/IntegerType.html new file mode 100644 index 0000000..3956c06 --- /dev/null +++ b/interfaces/IntegerType.html @@ -0,0 +1,85 @@ +IntegerType | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IntegerType

Hierarchy

  • IntegerReturn
    • IntegerType

Index

Properties

mpz_t: number = 0
type: string = 'integer'

Methods

  • add<T>(val: T): OutputType<T>
  • +

    Returns the sum of this number and the given one.

    +

    Type parameters

    • T: AllTypes

    Parameters

    • val: T

    Returns OutputType<T>

  • +

    Sets the value of bit i to 0. The least significant bit is number 0

    +

    Parameters

    • index: number

    Returns IntegerType

  • +

    Sets the value of multiple bits to 0. The least significant bit is number 0

    +

    Parameters

    • indices: number[]

    Returns IntegerType

  • div<T>(val: T, mode?: DivMode): OutputType<T>
  • +

    Returns the result of the division of this number by the given one.

    +

    Type parameters

    • T: AllTypes

    Parameters

    Returns OutputType<T>

  • +

    Inverts the value of bit i. The least significant bit is number 0

    +

    Parameters

    • index: number

    Returns IntegerType

  • +

    Inverts the value of multiple bits. The least significant bit is number 0

    +

    Parameters

    • indices: number[]

    Returns IntegerType

  • +

    Returns the greatest common divisor of this number and the given one.

    +

    Parameters

    Returns IntegerType

  • getBit(index: number): number
  • +

    Returns 0 or 1 based on the value of a bit at the provided index. The least significant bit is number 0

    +

    Parameters

    • index: number

    Returns number

  • greaterOrEqual(val: AllTypes): boolean
  • +

    Returns true if the current number is greater than or equal to the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • greaterThan(val: AllTypes): boolean
  • +

    Returns true if the current number is greater than the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • isEqual(val: AllTypes): boolean
  • +

    Returns true if the current number is equal to the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • isProbablyPrime(reps?: number): boolean | "probably-prime"
  • +

    Determines whether a number is prime using some trial divisions, then reps Miller-Rabin probabilistic primality tests.

    +

    Parameters

    • reps: number = 20

    Returns boolean | "probably-prime"

  • +

    Returns the least common multiple of this number and the given one.

    +

    Parameters

    Returns IntegerType

  • lessOrEqual(val: AllTypes): boolean
  • +

    Returns true if the current number is less than or equal to the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • lessThan(val: AllTypes): boolean
  • +

    Returns true if the current number is less than the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • msbPosition(): number
  • Returns number

  • mul<T>(val: T): OutputType<T>
  • +

    Returns the product of this number and the given one.

    +

    Type parameters

    • T: AllTypes

    Parameters

    • val: T

    Returns OutputType<T>

  • +

    Identifies primes using a probabilistic algorithm; the chance of a composite passing will be extremely small.

    +

    Returns IntegerType

  • +

    Returns the truncated integer part of the nth root

    +

    Parameters

    • nth: number

    Returns IntegerType

  • +

    Sets the value of bit i to 1. The least significant bit is number 0

    +

    Parameters

    • i: number

    Returns IntegerType

  • +

    Sets the value of multiple bits to 1. The least significant bit is number 0

    +

    Parameters

    • indices: number[]

    Returns IntegerType

  • +

    Returns the integer left shifted by a given number of bits.

    +

    Parameters

    • val: number

    Returns IntegerType

  • +

    Returns the integer right shifted by a given number of bits.

    +

    Parameters

    • val: number

    Returns IntegerType

  • sign(): 0 | 1 | -1
  • +

    Returns the sign of the current value (-1 or 0 or 1)

    +

    Returns 0 | 1 | -1

  • +

    Works similarly to JS Array.slice() but on bits. The least significant bit is number 0

    +

    Parameters

    • Optional start: number
    • Optional end: number

    Returns IntegerType

  • +

    Returns the integer square root number, rounded down.

    +

    Returns IntegerType

  • sub<T>(val: T): OutputType<T>
  • +

    Returns the difference of this number and the given one.

    +

    Type parameters

    • T: AllTypes

    Parameters

    • val: T

    Returns OutputType<T>

  • toBuffer(littleEndian?: boolean): Uint8Array
  • +

    Exports integer into an Uint8Array. Sign is ignored.

    +

    Parameters

    • littleEndian: boolean = false

    Returns Uint8Array

  • +

    Converts the number to a floating-point number

    +

    Returns FloatType

  • toNumber(): number
  • +

    Converts current value into a JavaScript number

    +

    Returns number

  • toString(radix?: number): string
  • +

    Converts the number to string

    +

    Parameters

    • radix: number = 10

    Returns string

  • +

    Creates new integer with the copy of binary representation of num to position offset. Optionally bitCount can be used to zero-pad the number to a specific number of bits. The least significant bit is number 0

    +

    Parameters

    • num: IntegerType
    • offset: number = 0
    • Optional bitCount: number

    Returns IntegerType

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/interfaces/RationalType.html b/interfaces/RationalType.html new file mode 100644 index 0000000..62b750d --- /dev/null +++ b/interfaces/RationalType.html @@ -0,0 +1,39 @@ +RationalType | gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface RationalType

Hierarchy

  • RationalReturn
    • RationalType

Index

Properties

mpq_t: number = 0
type: string = 'rational'

Methods

  • add<T>(val: T): OutputType<T>
  • +

    Returns the sum of this number and the given one.

    +

    Type parameters

    • T: AllTypes

    Parameters

    • val: T

    Returns OutputType<T>

  • div<T>(val: T): OutputType<T>
  • +

    Returns the result of the division of this number by the given one.

    +

    Type parameters

    • T: AllTypes

    Parameters

    • val: T

    Returns OutputType<T>

  • greaterOrEqual(val: AllTypes): boolean
  • +

    Returns true if the current number is greater than or equal to the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • greaterThan(val: AllTypes): boolean
  • +

    Returns true if the current number is greater than the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • isEqual(val: AllTypes): boolean
  • +

    Returns true if the current number is equal to the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • lessOrEqual(val: AllTypes): boolean
  • +

    Returns true if the current number is less than or equal to the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • lessThan(val: AllTypes): boolean
  • +

    Returns true if the current number is less than the provided number

    +

    Parameters

    • val: AllTypes

    Returns boolean

  • mul<T>(val: T): OutputType<T>
  • +

    Returns the product of this number and the given one.

    +

    Type parameters

    • T: AllTypes

    Parameters

    • val: T

    Returns OutputType<T>

  • sign(): 0 | 1 | -1
  • +

    Returns the sign of the current value (-1 or 0 or 1)

    +

    Returns 0 | 1 | -1

  • sub<T>(val: T): OutputType<T>
  • +

    Returns the difference of this number and the given one.

    +

    Type parameters

    • T: AllTypes

    Parameters

    • val: T

    Returns OutputType<T>

  • +

    Converts the number to a floating-point number

    +

    Returns FloatType

  • toNumber(): number
  • +

    Converts current value to a JavaScript number

    +

    Returns number

  • toString(radix?: number): string
  • +

    Converts the number to string

    +

    Parameters

    • radix: number = 10

    Returns string

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/modules.html b/modules.html new file mode 100644 index 0000000..c014e2c --- /dev/null +++ b/modules.html @@ -0,0 +1 @@ +gmp-wasm
Options
All
  • Public
  • Public/Protected
  • All
Menu

gmp-wasm

Index

Type aliases

__gmp_randstate_struct_ptr: number & { __number_type?: undefined }
c_double: number & { __number_type?: undefined }
c_int: number & { __number_type?: undefined }
c_int_ptr: number & { __number_type?: undefined }
c_long_ptr: number & { __number_type?: undefined }
c_signed_long_int: number & { __number_type?: undefined }
c_signed_long_int_ptr: number & { __number_type?: undefined }
c_size_t: number & { __number_type?: undefined }
c_size_t_ptr: number & { __number_type?: undefined }
c_str_ptr: number & { __number_type?: undefined }
c_str_ptr_ptr: number & { __number_type?: undefined }
c_unsigned_long_int: number & { __number_type?: undefined }
c_void_ptr: number & { __number_type?: undefined }
gmp_randstate_t: number & { __number_type?: undefined }
mp_bitcnt_t: number & { __number_type?: undefined }
mp_limb_t: number & { __number_type?: undefined }
mp_ptr: number & { __number_type?: undefined }
mp_size_t: number & { __number_type?: undefined }
mp_srcptr: number & { __number_type?: undefined }
mpfr_exp_t: number & { __number_type?: undefined }
mpfr_exp_t_ptr: number & { __number_type?: undefined }
mpfr_flags_t: number & { __number_type?: undefined }
mpfr_prec_t: number & { __number_type?: undefined }
mpfr_prec_t_ptr: number & { __number_type?: undefined }
mpfr_ptr: number & { __number_type?: undefined }
mpfr_ptr_ptr: number & { __number_type?: undefined }
mpfr_srcptr: number & { __number_type?: undefined }
mpfr_t: number & { __number_type?: undefined }
mpq_ptr: number & { __number_type?: undefined }
mpq_srcptr: number & { __number_type?: undefined }
mpz_ptr: number & { __number_type?: undefined }
mpz_srcptr: number & { __number_type?: undefined }

Functions

  • precisionToBits(digits: number): number
  • Parameters

    • digits: number

    Returns number

Legend

  • Property
  • Method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file