<!DOCTYPE html>
<html lang="en" id="facebook" class="no_js">
  <head>
    <meta charset="utf-8" />
    <meta
      name="referrer"
      content="origin-when-crossorigin"
      id="meta_referrer"
    />
    <script nonce="UNlQ6KHa">
      window._cstart = +new Date();
    </script>
    <script nonce="UNlQ6KHa">
      function envFlush(a) {
        function b(b) {
          for (var c in a) b[c] = a[c];
        }
        window.requireLazy
          ? window.requireLazy(["Env"], b)
          : ((window.Env = window.Env || {}), b(window.Env));
      }
      envFlush({
        ajaxpipe_token: "AXiXm-MkMnAhF01c51Y",
        timeslice_heartbeat_config: {
          pollIntervalMs: 33,
          idleGapThresholdMs: 60,
          ignoredTimesliceNames: {
            requestAnimationFrame: true,
            "Event listenHandler mousemove": true,
            "Event listenHandler mouseover": true,
            "Event listenHandler mouseout": true,
            "Event listenHandler scroll": true,
          },
          isHeartbeatEnabled: true,
          isArtilleryOn: false,
        },
        shouldLogCounters: true,
        timeslice_categories: { react_render: true, reflow: true },
        sample_continuation_stacktraces: true,
        dom_mutation_flag: true,
        gk_requirelazy_mem: true,
        stack_trace_limit: 30,
        timesliceBufferSize: 5000,
        show_invariant_decoder: false,
        compat_iframe_token: "AQ43ne45OCy9imTuBmk",
        isCQuick: false,
      });
    </script>
    <style nonce="UNlQ6KHa"></style>
    <script nonce="UNlQ6KHa">
      __DEV__ = 0;
      (CavalryLogger =
        window.CavalryLogger ||
        function (a) {
          (this.lid = a),
            (this.transition = !1),
            (this.metric_collected = !1),
            (this.is_detailed_profiler = !1),
            (this.instrumentation_started = !1),
            (this.pagelet_metrics = {}),
            (this.events = {}),
            (this.ongoing_watch = {}),
            (this.values = { t_cstart: window._cstart }),
            (this.piggy_values = {}),
            (this.bootloader_metrics = {}),
            (this.resource_to_pagelet_mapping = {}),
            this.initializeInstrumentation && this.initializeInstrumentation();
        }),
        (CavalryLogger.prototype.setIsDetailedProfiler = function (a) {
          this.is_detailed_profiler = a;
          return this;
        }),
        (CavalryLogger.prototype.setTTIEvent = function (a) {
          this.tti_event = a;
          return this;
        }),
        (CavalryLogger.prototype.setValue = function (a, b, c, d) {
          d = d ? this.piggy_values : this.values;
          (typeof d[a] === "undefined" || c) && (d[a] = b);
          return this;
        }),
        (CavalryLogger.prototype.getLastTtiValue = function () {
          return this.lastTtiValue;
        }),
        (CavalryLogger.prototype.setTimeStamp =
          CavalryLogger.prototype.setTimeStamp ||
          function (a, b, c, d) {
            this.mark(a);
            var e = this.values.t_cstart || this.values.t_start;
            e = d ? e + d : CavalryLogger.now();
            this.setValue(a, e, b, c);
            this.tti_event &&
              a == this.tti_event &&
              ((this.lastTtiValue = e), this.setTimeStamp("t_tti", b));
            return this;
          }),
        (CavalryLogger.prototype.mark =
          typeof console === "object" && console.timeStamp
            ? function (a) {
                console.timeStamp(a);
              }
            : function () {}),
        (CavalryLogger.prototype.addPiggyback = function (a, b) {
          this.piggy_values[a] = b;
          return this;
        }),
        (CavalryLogger.instances = {}),
        (CavalryLogger.id = 0),
        (CavalryLogger.getInstance = function (a) {
          typeof a === "undefined" && (a = CavalryLogger.id);
          CavalryLogger.instances[a] ||
            (CavalryLogger.instances[a] = new CavalryLogger(a));
          return CavalryLogger.instances[a];
        }),
        (CavalryLogger.setPageID = function (a) {
          if (CavalryLogger.id === 0) {
            var b = CavalryLogger.getInstance();
            CavalryLogger.instances[a] = b;
            CavalryLogger.instances[a].lid = a;
            delete CavalryLogger.instances[0];
          }
          CavalryLogger.id = a;
        }),
        (CavalryLogger.now = function () {
          return window.performance &&
            performance.timing &&
            performance.timing.navigationStart &&
            performance.now
            ? performance.now() + performance.timing.navigationStart
            : new Date().getTime();
        }),
        (CavalryLogger.prototype.measureResources = function () {}),
        (CavalryLogger.prototype.profileEarlyResources = function () {}),
        (CavalryLogger.getBootloaderMetricsFromAllLoggers = function () {}),
        (CavalryLogger.start_js = function () {}),
        (CavalryLogger.done_js = function () {});
      CavalryLogger.getInstance().setTTIEvent("t_domcontent");
      (CavalryLogger.prototype.measureResources = function (a, b) {
        if (!this.log_resources) return;
        var c = "bootload/" + a.name;
        if (
          this.bootloader_metrics[c] !== void 0 ||
          this.ongoing_watch[c] !== void 0
        )
          return;
        var d = CavalryLogger.now();
        this.ongoing_watch[c] = d;
        "start_" + c in this.bootloader_metrics ||
          (this.bootloader_metrics["start_" + c] = d);
        b &&
          !("tag_" + c in this.bootloader_metrics) &&
          (this.bootloader_metrics["tag_" + c] = b);
        if (a.type === "js") {
          c = "js_exec/" + a.name;
          this.ongoing_watch[c] = d;
        }
      }),
        (CavalryLogger.prototype.stopWatch = function (a) {
          if (this.ongoing_watch[a]) {
            var b = CavalryLogger.now(),
              c = b - this.ongoing_watch[a];
            this.bootloader_metrics[a] = c;
            var d = this.piggy_values;
            a.indexOf("bootload") === 0 &&
              (d.t_resource_download || (d.t_resource_download = 0),
              d.resources_downloaded || (d.resources_downloaded = 0),
              (d.t_resource_download += c),
              (d.resources_downloaded += 1),
              d["tag_" + a] == "_EF_" &&
                (d.t_pagelet_cssload_early_resources = b));
            delete this.ongoing_watch[a];
          }
          return this;
        }),
        (CavalryLogger.getBootloaderMetricsFromAllLoggers = function () {
          var a = {};
          Object.values(window.CavalryLogger.instances).forEach(function (b) {
            b.bootloader_metrics && Object.assign(a, b.bootloader_metrics);
          });
          return a;
        }),
        (CavalryLogger.start_js = function (a) {
          for (var b = 0; b < a.length; ++b)
            CavalryLogger.getInstance().stopWatch("js_exec/" + a[b]);
        }),
        (CavalryLogger.done_js = function (a) {
          for (var b = 0; b < a.length; ++b)
            CavalryLogger.getInstance().stopWatch("bootload/" + a[b]);
        }),
        (CavalryLogger.prototype.profileEarlyResources = function (a) {
          for (var b = 0; b < a.length; b++)
            this.measureResources(
              { name: a[b][0], type: a[b][1] ? "js" : "" },
              "_EF_"
            );
        });
      CavalryLogger.getInstance().log_resources = true;
      CavalryLogger.getInstance().setIsDetailedProfiler(true);
      window.CavalryLogger &&
        CavalryLogger.getInstance().setTimeStamp("t_start");
    </script>
    <noscript
      ><meta
        http-equiv="refresh"
        content="0; URL=/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB&amp;_fb_noscript=1"
    /></noscript>
    <link rel="manifest" href="/data/manifest/" crossorigin="use-credentials" />
    <title id="pageTitle">Sign up for Facebook | Facebook</title>
    <meta property="og:site_name" content="Facebook" />
    <meta
      property="og:url"
      content="https://www.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
    />
    <meta property="og:locale" content="en_GB" />
    <link
      rel="search"
      type="application/opensearchdescription+xml"
      href="/osd.xml"
      title="Facebook"
    />
    <link rel="canonical" href="https://www.facebook.com/r.php" />
    <link
      rel="alternate"
      media="only screen and (max-width: 640px)"
      href="https://m.facebook.com/r.php?locale2=en_GB"
    />
    <link
      rel="alternate"
      media="handheld"
      href="https://m.facebook.com/r.php?locale2=en_GB"
    />
    <link
      rel="alternate"
      hreflang="x-default"
      href="https://www.facebook.com/r.php"
    />
    <link rel="alternate" hreflang="en" href="https://www.facebook.com/r.php" />
    <link
      rel="alternate"
      hreflang="ar"
      href="https://ar-ar.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="bg"
      href="https://bg-bg.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="bs"
      href="https://bs-ba.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="ca"
      href="https://ca-es.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="da"
      href="https://da-dk.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="el"
      href="https://el-gr.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="es"
      href="https://es-la.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="es-es"
      href="https://es-es.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="fa"
      href="https://fa-ir.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="fi"
      href="https://fi-fi.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="fr"
      href="https://fr-fr.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="fr-ca"
      href="https://fr-ca.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="hi"
      href="https://hi-in.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="hr"
      href="https://hr-hr.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="id"
      href="https://id-id.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="it"
      href="https://it-it.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="ko"
      href="https://ko-kr.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="mk"
      href="https://mk-mk.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="ms"
      href="https://ms-my.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="pl"
      href="https://pl-pl.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="pt"
      href="https://pt-br.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="pt-pt"
      href="https://pt-pt.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="ro"
      href="https://ro-ro.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="sl"
      href="https://sl-si.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="sr"
      href="https://sr-rs.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="th"
      href="https://th-th.facebook.com/r.php"
    />
    <link
      rel="alternate"
      hreflang="vi"
      href="https://vi-vn.facebook.com/r.php"
    />
    <meta
      name="description"
      content="Sign up for Facebook and find your friends. Create an account to start sharing photos and updates with people you know. It&#039;s easy to register."
    />
    <meta name="robots" content="noodp,noydir" />
    <link
      rel="shortcut icon"
      href="https://static.xx.fbcdn.net/rsrc.php/yb/r/hLRJ1GG_y0J.ico"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yN/l/0,cross/_okbc3tORmZ.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="ANVnc8J"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/y2/l/0,cross/AXrAAvfOfHf.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="UOuOOFS"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/y3/l/0,cross/juCVduCsg9N.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="78j1+Wx"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yU/l/0,cross/8SiSeIFbO9X.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="epDBIN3"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yB/l/0,cross/Vqm3lEjFrcE.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="VnjKvjF"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yr/l/0,cross/dDH2lulcM7q.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="fD0lNKx"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yg/l/0,cross/S5yE9KsoTP5.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="wtJ9gup"
      data-nonblocking="1"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/ya/l/0,cross/LCakycP3srf.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="WbmjGEn"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yS/l/0,cross/4H7KAGZ03Fj.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="7/bfoUc"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/ym/l/0,cross/XzMVk90uhh2.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="/uaktyf"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/y4/l/0,cross/Gtlxmfko4ns.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="caUu9fM"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yG/l/0,cross/h8G4d4H1P6e.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="ahdrpfa"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/y2/l/0,cross/lZ86cv9aR90.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="f+J2LH8"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yZ/l/0,cross/N2WOcj5-DBd.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="FIdmJx9"
      crossorigin="anonymous"
    />
    <link
      type="text/css"
      rel="stylesheet"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yp/l/0,cross/5Mdfc50oPRL.css?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="HDuMaf9"
      crossorigin="anonymous"
    />
    <script
      src="https://static.xx.fbcdn.net/rsrc.php/v3/y9/r/_WKMAMkIDaB.js?_nc_x=Ij3Wp8lg5Kz"
      data-bootloader-hash="pgovsL/"
      crossorigin="anonymous"
      nonce="UNlQ6KHa"
    ></script>
    <script nonce="UNlQ6KHa">
      requireLazy(["HasteSupportData"], function (m) {
        m.handle({
          clpData: {
            1814852: { r: 1 },
            1949898: { r: 1 },
            1848815: { r: 10000, s: 1 },
            1744178: { r: 1, s: 1 },
          },
          gkxData: {
            185: { result: false, hash: "AT5MqNOYoEUII06PtnY" },
            676837: { result: false, hash: "AT4N8wBZA8ctCdHw1pU" },
            708253: { result: false, hash: "AT5n4hBL3YTMnQWtb-4" },
            996940: { result: false, hash: "AT7opYuEGy3sjG1aYRM" },
            1224637: { result: false, hash: "AT7JRluWxuwDm3Xz3YE" },
            1263340: { result: false, hash: "AT5bwizWgDaFQudmjYQ" },
            113: { result: false, hash: "AT4UEBnCWWtisiAcdMM" },
            676920: { result: true, hash: "AT497IX4gOFG8gZejJM" },
            1073500: { result: true, hash: "AT7aJmfnqWyioxOOD-g" },
            1857581: { result: false, hash: "AT5yTxGMp6le0PAtDW8" },
            1952739: { result: true, hash: "AT4Zq7lXWSlD3PCk43s" },
            676838: { result: false, hash: "AT6nN1ehT9yq-2q6l1M" },
            1217157: { result: false, hash: "AT6B7YmllOsArnK6njY" },
            1554827: { result: false, hash: "AT7zueGLhGo0cT5xwS4" },
            1738486: { result: false, hash: "AT4cX37oQco6DwhU9Mw" },
          },
        });
      });
      requireLazy(
        ["TimeSliceImpl", "ServerJS"],
        function (TimeSlice, ServerJS) {
          new ServerJS().handle({
            define: [
              [
                "URLFragmentPreludeConfig",
                [],
                {
                  hashtagRedirect: true,
                  fragBlacklist: [
                    "nonce",
                    "access_token",
                    "oauth_token",
                    "xs",
                    "checkpoint_data",
                    "code",
                  ],
                },
                137,
              ],
              [
                "BootloaderConfig",
                [],
                {
                  deferBootloads: false,
                  jsRetries: [200, 500],
                  jsRetryAbortNum: 2,
                  jsRetryAbortTime: 5,
                  silentDups: false,
                  hypStep4: false,
                },
                329,
              ],
              [
                "CSSLoaderConfig",
                [],
                {
                  timeout: 5000,
                  modulePrefix: "BLCSS:",
                  loadEventSupported: true,
                },
                619,
              ],
              [
                "CookieCoreConfig",
                [],
                {
                  a11y: { s: "None" },
                  c_user: { s: "None" },
                  cppo: { t: 86400, s: "None" },
                  dpr: { t: 604800, s: "None" },
                  fbl_ci: { t: 31536000, s: "None" },
                  fbl_cs: { t: 31536000, s: "None" },
                  fbl_st: { t: 31536000, s: "Strict" },
                  i_user: { s: "None" },
                  js_ver: { t: 604800, s: "None" },
                  locale: { t: 604800, s: "None" },
                  m_pixel_ratio: { t: 604800, s: "None" },
                  noscript: { s: "None" },
                  presence: { t: 2592000, s: "None" },
                  sfau: { s: "None" },
                  vpd: { t: 5184000, s: "Lax" },
                  wd: { t: 604800, s: "Lax" },
                  "x-referer": { s: "None" },
                  "x-src": { t: 1, s: "None" },
                },
                2104,
              ],
              ["CurrentCommunityInitialData", [], {}, 490],
              [
                "CurrentEnvironment",
                [],
                {
                  facebookdotcom: true,
                  messengerdotcom: false,
                  workplacedotcom: false,
                },
                827,
              ],
              [
                "CurrentUserInitialData",
                [],
                {
                  ACCOUNT_ID: "0",
                  USER_ID: "0",
                  NAME: "",
                  SHORT_NAME: null,
                  IS_BUSINESS_PERSON_ACCOUNT: false,
                  HAS_SECONDARY_BUSINESS_PERSON: false,
                  IS_MESSENGER_ONLY_USER: false,
                  IS_DEACTIVATED_ALLOWED_ON_MESSENGER: false,
                  IS_MESSENGER_CALL_GUEST_USER: false,
                  IS_WORK_MESSENGER_CALL_GUEST_USER: false,
                  APP_ID: "256281040558",
                  IS_BUSINESS_DOMAIN: false,
                },
                270,
              ],
              ["DTSGInitialData", [], {}, 258],
              ["ISB", [], {}, 330],
              ["LSD", [], { token: "AVrePb49Db4" }, 323],
              [
                "ServerNonce",
                [],
                { ServerNonce: "OlzK2oQFnQ8wan1u3XiXfD" },
                141,
              ],
              [
                "SiteData",
                [],
                {
                  server_revision: 1003907862,
                  client_revision: 1003907862,
                  tier: "",
                  push_phase: "C3",
                  pkg_cohort: "PHASED:DEFAULT",
                  haste_session: "18782.PHASED:DEFAULT.2.0.0.0",
                  pr: 2,
                  haste_site: "www",
                  be_one_ahead: false,
                  ir_on: true,
                  is_rtl: false,
                  is_comet: false,
                  is_experimental_tier: false,
                  is_jit_warmed_up: true,
                  hsi: "6969906799560357417-0",
                  semr_host_bucket: "6",
                  bl_hash_version: 2,
                  skip_rd_bl: true,
                  spin: 4,
                  __spin_r: 1003907862,
                  __spin_b: "trunk",
                  __spin_t: 1622807886,
                  vip: "157.240.15.35",
                },
                317,
              ],
              [
                "SprinkleConfig",
                [],
                { param_name: "jazoest", version: 2, should_randomize: false },
                2111,
              ],
              [
                "UserAgentData",
                [],
                {
                  browserArchitecture: "64",
                  browserFullVersion: "91.0.4472.77",
                  browserMinorVersion: 0,
                  browserName: "Chrome",
                  browserVersion: 91,
                  deviceName: "Unknown",
                  engineName: "WebKit",
                  engineVersion: "537.36",
                  platformArchitecture: "64",
                  platformName: "Windows",
                  platformVersion: "10",
                  platformFullVersion: "10",
                },
                527,
              ],
              [
                "PromiseUsePolyfillSetImmediateGK",
                [],
                { www_always_use_polyfill_setimmediate: false },
                2190,
              ],
              [
                "KSConfig",
                [],
                {
                  killed: {
                    __set: [
                      "MLHUB_FLOW_AUTOREFRESH_SEARCH",
                      "NEKO_DISABLE_CREATE_FOR_SAP",
                      "EO_DISABLE_SYSTEM_SERIAL_NUMBER_FREE_TYPING_IN_CPE_NON_CLIENT",
                      "EO_SRT_HELPDESK_DASHBOARD_DISABLE_UNUSED_TAB_IN_RIGHT_PANEL",
                      "MOBILITY_KILL_OLD_VISIBILITY_POSITION_SETTING",
                      "WORKPLACE_DISPLAY_TEXT_EVIDENCE_REPORTING",
                      "BUSINESS_INVITE_FLOW_WITH_SELLER_PROFILE",
                      "ADS_TEMPLATE_UNIFICATION_IN_IG_STORIES",
                      "DCP_CYCLE_COUNT_CLASSIFICATION_UI",
                      "BUY_AT_NEW_START_REQUEST_DSUL_BANNER",
                      "BUY_AT_UI_LINE_DELETE",
                      "BUSINESS_GRAPH_SETTING_APP_ASSIGNED_USERS_NEW_API",
                      "BUSINESS_GRAPH_SETTING_BU_ASSIGNED_USERS_NEW_API",
                      "BUSINESS_GRAPH_SETTING_ESG_ASSIGNED_USERS_NEW_API",
                      "BUSINESS_GRAPH_SETTING_PRODUCT_CATALOG_ASSIGNED_USERS_NEW_API",
                      "BUSINESS_GRAPH_SETTING_SESG_ASSIGNED_USERS_NEW_API",
                      "BUSINESS_GRAPH_SETTING_WABA_ASSIGNED_USERS_NEW_API",
                      "ADS_PLACEMENT_FIX_PUBLISHER_PLATFORMS_MUTATION",
                      "FORCE_FETCH_BOOSTED_COMPONENT_AFTER_ADS_CREATION",
                      "VIDEO_DIMENSIONS_FROM_PLAYER_IN_UPLOAD_DIALOG",
                      "SNIVY_GROUP_BY_EVENT_TRACE_ID_AND_NAME",
                      "ADS_STORE_VISITS_METRICS_DEPRECATION",
                      "DYNAMIC_ADS_SET_CATALOG_AND_PRODUCT_SET_TOGETHER",
                      "AD_DRAFT_ENABLE_SYNCRHONOUS_FRAGMENT_VALIDATION",
                      "NEKO_ENABLE_RESET_SAP_FOR_CREATE_AD_SET_CONTEXTUAL",
                      "LAB_NET_NEW_UI_RELEASE",
                      "HELPDESK_USE_XDS_SEARCHABLE_INPUT_FOR_WORKFLOW",
                      "POCKET_MONSTERS_CREATE",
                      "POCKET_MONSTERS_DELETE",
                      "SRT_BANZAI_SRT_CORE_LOGGER",
                      "SRT_BANZAI_SRT_MAIN_LOGGER",
                      "SIMPL_SAMPLING_HEALTH_CARD",
                      "WORKPLACE_PLATFORM_SECURE_APPS_MAILBOXES",
                      "POCKET_MONSTERS_UPDATE_NAME",
                      "ADS_INTEGRATION_PORTAL_RELAY_LIVE",
                      "WIT_REMOVE_GITHUB_LOGIN",
                      "IC_DISABLE_MERGE_TOOL_FEED_CHECK_FOR_REPLACE_SCHEDULE",
                    ],
                  },
                  ko: {
                    __set: [
                      "3OsLvnSHNTt",
                      "1G7wJ6bJt9K",
                      "9NpkGYwzrPG",
                      "6fHw06UmAMW",
                      "3oh5Mw86USj",
                      "8NAceEy9JZo",
                      "7FOIzos6XJX",
                      "6xuJHOrdskA",
                      "75fREERrb3F",
                      "80ZDn9dpjEA",
                      "rf8JEPGgOi",
                      "4j36SVzvP3w",
                      "4NSq3ZC4ScE",
                      "53gCxKq281G",
                      "3yzzwBY7Npj",
                      "1onzIv0jH6H",
                      "8PlKuowafe8",
                      "1ntjZ2zgf03",
                      "4SIH2GRVX5W",
                      "2dhqRnqXGLQ",
                      "2WgiNOrHVuC",
                      "amKHb4Cw4WI",
                      "5mNEXob0nTj",
                      "8rDvN9vWdAK",
                      "9cL5o2kjfZo",
                      "DDZhogI19W",
                      "aDayprn6pbH",
                      "acrJTh9WGdp",
                      "1oOE64fL4wO",
                      "9Gd8qgRxn8z",
                      "MPMaqnqZ9c",
                      "4MzX0ipjWq",
                      "5XCz1h9Iaw3",
                      "7r6mSP7ofr2",
                      "5zgf0XOYSz7",
                      "2M3aIoxFtxG",
                      "6DGPLrRdyts",
                    ],
                  },
                },
                2580,
              ],
              [
                "JSErrorLoggingConfig",
                [],
                {
                  appId: 256281040558,
                  extra: [],
                  reportInterval: 50,
                  sampleWeight: null,
                  sampleWeightKey: "__jssesw",
                },
                2776,
              ],
              [
                "DataStoreConfig",
                [],
                { expandoKey: "__FB_STORE", useExpando: true },
                2915,
              ],
              [
                "CookieCoreLoggingConfig",
                [],
                {
                  maximumIgnorableStallMs: 16.67,
                  sampleRate: 9.7e-5,
                  sampleRateClassic: 1.0e-10,
                  sampleRateFastStale: 1.0e-8,
                },
                3401,
              ],
              [
                "ImmediateImplementationExperiments",
                [],
                { prefer_message_channel: true },
                3419,
              ],
              ["DTSGInitData", [], { token: "", async_get_token: "" }, 3515],
              [
                "UriNeedRawQuerySVConfig",
                [],
                {
                  uris: [
                    "dms.netmng.com",
                    "doubleclick.net",
                    "r.msn.com",
                    "watchit.sky.com",
                    "graphite.instagram.com",
                    "www.kfc.co.th",
                    "learn.pantheon.io",
                    "www.landmarkshops.in",
                    "www.ncl.com",
                    "s0.wp.com",
                    "www.tatacliq.com",
                    "bs.serving-sys.com",
                    "kohls.com",
                    "lazada.co.th",
                    "xg4ken.com",
                    "technopark.ru",
                    "officedepot.com.mx",
                    "bestbuy.com.mx",
                    "booking.com",
                  ],
                },
                3871,
              ],
              [
                "InitialCookieConsent",
                [],
                {
                  deferCookies: false,
                  initialConsent: { __set: [1, 2] },
                  noCookies: false,
                  shouldShowCookieBanner: false,
                },
                4328,
              ],
              [
                "TrustedTypesConfig",
                [],
                { useTrustedTypes: false, reportOnly: false },
                4548,
              ],
              [
                "WebConnectionClassServerGuess",
                [],
                { connectionClass: "GOOD" },
                4705,
              ],
              [
                "CometAltpayJsSdkIframeAllowedDomains",
                [],
                {
                  allowed_domains: [
                    "https:\/\/live.adyen.com",
                    "https:\/\/integration-facebook.payu.in",
                    "https:\/\/facebook.payulatam.com",
                    "https:\/\/secure.payu.com",
                    "https:\/\/facebook.dlocal.com",
                    "https:\/\/buy2.boku.com",
                  ],
                },
                4920,
              ],
              [
                "BootloaderEndpointConfig",
                [],
                {
                  debugNoBatching: false,
                  endpointURI:
                    "https:\/\/www.facebook.com\/ajax\/bootloader-endpoint\/",
                },
                5094,
              ],
              [
                "BigPipeExperiments",
                [],
                {
                  link_images_to_pagelets: false,
                  enable_bigpipe_plugins: false,
                },
                907,
              ],
              [
                "AsyncRequestConfig",
                [],
                {
                  retryOnNetworkError: "1",
                  useFetchStreamAjaxPipeTransport: false,
                },
                328,
              ],
              ["FbtQTOverrides", [], { overrides: {} }, 551],
              [
                "FbtResultGK",
                [],
                { shouldReturnFbtResult: true, inlineMode: "NO_INLINE" },
                876,
              ],
              [
                "IntlPhonologicalRules",
                [],
                {
                  meta: {
                    "\/_B\/": "([.,!?\\s]|^)",
                    "\/_E\/": "([.,!?\\s]|$)",
                  },
                  patterns: {
                    "\/\u0001(.*)('|&#039;)s\u0001(?:'|&#039;)s(.*)\/":
                      "\u0001$1$2s\u0001$3",
                    "\/_\u0001([^\u0001]*)\u0001\/": "javascript",
                  },
                },
                1496,
              ],
              ["IntlViewerContext", [], { GENDER: 3 }, 772],
              [
                "NumberFormatConfig",
                [],
                {
                  decimalSeparator: ".",
                  numberDelimiter: ",",
                  minDigitsForThousandsSeparator: 4,
                  standardDecimalPatternInfo: {
                    primaryGroupSize: 3,
                    secondaryGroupSize: 3,
                  },
                  numberingSystemData: null,
                },
                54,
              ],
              ["SessionNameConfig", [], { seed: "1iwH" }, 757],
              ["ZeroCategoryHeader", [], {}, 1127],
              [
                "ZeroRewriteRules",
                [],
                {
                  rewrite_rules: {},
                  whitelist: {
                    "\/hr\/r": 1,
                    "\/hr\/p": 1,
                    "\/zero\/unsupported_browser\/": 1,
                    "\/zero\/policy\/optin": 1,
                    "\/zero\/optin\/write\/": 1,
                    "\/zero\/optin\/legal\/": 1,
                    "\/zero\/optin\/free\/": 1,
                    "\/about\/privacy\/": 1,
                    "\/about\/privacy\/update\/": 1,
                    "\/about\/privacy\/update": 1,
                    "\/zero\/toggle\/welcome\/": 1,
                    "\/zero\/toggle\/nux\/": 1,
                    "\/zero\/toggle\/settings\/": 1,
                    "\/fup\/interstitial\/": 1,
                    "\/work\/landing": 1,
                    "\/work\/login\/": 1,
                    "\/work\/email\/": 1,
                    "\/ai.php": 1,
                    "\/js_dialog_resources\/dialog_descriptions_android.json": 0,
                    "\/connect\/jsdialog\/MPlatformAppInvitesJSDialog\/": 0,
                    "\/connect\/jsdialog\/MPlatformOAuthShimJSDialog\/": 0,
                    "\/connect\/jsdialog\/MPlatformLikeJSDialog\/": 0,
                    "\/qp\/interstitial\/": 1,
                    "\/qp\/action\/redirect\/": 1,
                    "\/qp\/action\/close\/": 1,
                    "\/zero\/support\/ineligible\/": 1,
                    "\/zero_balance_redirect\/": 1,
                    "\/zero_balance_redirect": 1,
                    "\/zero_balance_redirect\/l\/": 1,
                    "\/l.php": 1,
                    "\/lsr.php": 1,
                    "\/ajax\/dtsg\/": 1,
                    "\/checkpoint\/block\/": 1,
                    "\/exitdsite": 1,
                    "\/zero\/balance\/pixel\/": 1,
                    "\/zero\/balance\/": 1,
                    "\/zero\/balance\/carrier_landing\/": 1,
                    "\/zero\/flex\/logging\/": 1,
                    "\/tr": 1,
                    "\/tr\/": 1,
                    "\/sem_campaigns\/sem_pixel_test\/": 1,
                    "\/bookmarks\/flyout\/body\/": 1,
                    "\/zero\/subno\/": 1,
                    "\/confirmemail.php": 1,
                    "\/policies\/": 1,
                    "\/mobile\/internetdotorg\/classifier\/": 1,
                    "\/zero\/dogfooding": 1,
                    "\/xti.php": 1,
                    "\/zero\/fblite\/config\/": 1,
                    "\/hr\/zsh\/wc\/": 1,
                    "\/ajax\/bootloader-endpoint\/": 1,
                    "\/mobile\/zero\/carrier_page\/": 1,
                    "\/mobile\/zero\/carrier_page\/education_page\/": 1,
                    "\/mobile\/zero\/carrier_page\/feature_switch\/": 1,
                    "\/mobile\/zero\/carrier_page\/settings_page\/": 1,
                    "\/aloha_check_build": 1,
                    "\/upsell\/zbd\/softnudge\/": 1,
                    "\/4oh4.php": 1,
                    "\/autologin.php": 1,
                    "\/birthday_help.php": 1,
                    "\/checkpoint\/": 1,
                    "\/contact-importer\/": 1,
                    "\/cr.php": 1,
                    "\/legal\/terms\/": 1,
                    "\/login.php": 1,
                    "\/login\/": 1,
                    "\/mobile\/account\/": 1,
                    "\/n\/": 1,
                    "\/remote_test_device\/": 1,
                    "\/upsell\/buy\/": 1,
                    "\/upsell\/buyconfirm\/": 1,
                    "\/upsell\/buyresult\/": 1,
                    "\/upsell\/promos\/": 1,
                    "\/upsell\/continue\/": 1,
                    "\/upsell\/h\/promos\/": 1,
                    "\/upsell\/loan\/learnmore\/": 1,
                    "\/upsell\/purchase\/": 1,
                    "\/upsell\/promos\/upgrade\/": 1,
                    "\/upsell\/buy_redirect\/": 1,
                    "\/upsell\/loan\/buyconfirm\/": 1,
                    "\/upsell\/loan\/buy\/": 1,
                    "\/upsell\/sms\/": 1,
                    "\/wap\/a\/channel\/reconnect.php": 1,
                    "\/wap\/a\/nux\/wizard\/nav.php": 1,
                    "\/wap\/appreg.php": 1,
                    "\/wap\/birthday_help.php": 1,
                    "\/wap\/c.php": 1,
                    "\/wap\/confirmemail.php": 1,
                    "\/wap\/cr.php": 1,
                    "\/wap\/login.php": 1,
                    "\/wap\/r.php": 1,
                    "\/zero\/datapolicy": 1,
                    "\/a\/timezone.php": 1,
                    "\/a\/bz": 1,
                    "\/bz\/reliability": 1,
                    "\/r.php": 1,
                    "\/mr\/": 1,
                    "\/reg\/": 1,
                    "\/registration\/log\/": 1,
                    "\/terms\/": 1,
                    "\/f123\/": 1,
                    "\/expert\/": 1,
                    "\/experts\/": 1,
                    "\/terms\/index.php": 1,
                    "\/terms.php": 1,
                    "\/srr\/": 1,
                    "\/msite\/redirect\/": 1,
                    "\/fbs\/pixel\/": 1,
                    "\/contactpoint\/preconfirmation\/": 1,
                    "\/contactpoint\/cliff\/": 1,
                    "\/contactpoint\/confirm\/submit\/": 1,
                    "\/contactpoint\/confirmed\/": 1,
                    "\/contactpoint\/login\/": 1,
                    "\/preconfirmation\/contactpoint_change\/": 1,
                    "\/help\/contact\/": 1,
                    "\/survey\/": 1,
                    "\/upsell\/loyaltytopup\/accept\/": 1,
                    "\/settings\/": 1,
                    "\/lite\/": 1,
                    "\/zero_status_update\/": 1,
                    "\/operator_store\/": 1,
                    "\/upsell\/": 1,
                    "\/wifiauth\/login\/": 1,
                  },
                },
                1478,
              ],
              [
                "IntlNumberTypeConfig",
                [],
                {
                  impl: "if (n === 1) { return IntlVariations.NUMBER_ONE; } else { return IntlVariations.NUMBER_OTHER; }",
                },
                3405,
              ],
              [
                "ServerTimeData",
                [],
                {
                  serverTime: 1622807886611,
                  timeOfRequestStart: 1622807886551.5,
                  timeOfResponseStart: 1622807886551.5,
                },
                5943,
              ],
              [
                "AnalyticsCoreData",
                [],
                {
                  device_id:
                    "$^|AcbnfoAMgeuqhTGFep6o8yYXyZi-zrvc-XIm_moC_2tR0pGMuKoLR1nDiDKY0vRyK3bkH2jk3QKClkEpK_C4VSYWXA|fd.AcYTXbypRWSNQOdwylv6BmEOt-gXHc1IsdVB8WGzLwULih9is2gOM8fsXlXsP8opvee2GksSnznYYxSmJwkhpeyj",
                  app_id: "256281040558",
                  enable_bladerunner: false,
                  enable_ack: false,
                  push_phase: "C3",
                  enable_observer: false,
                },
                5237,
              ],
              [
                "cr:696703",
                [],
                {
                  __rc: [
                    null,
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:708886",
                ["EventProfilerImpl"],
                {
                  __rc: [
                    "EventProfilerImpl",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:717822",
                ["TimeSliceImpl"],
                {
                  __rc: [
                    "TimeSliceImpl",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:806696",
                ["clearTimeoutBlue"],
                {
                  __rc: [
                    "clearTimeoutBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:807042",
                ["setTimeoutBlue"],
                {
                  __rc: [
                    "setTimeoutBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:896462",
                ["setIntervalAcrossTransitionsBlue"],
                {
                  __rc: [
                    "setIntervalAcrossTransitionsBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:986633",
                ["setTimeoutAcrossTransitionsBlue"],
                {
                  __rc: [
                    "setTimeoutAcrossTransitionsBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1003267",
                ["clearIntervalBlue"],
                {
                  __rc: [
                    "clearIntervalBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1183579",
                ["InlineFbtResultImpl"],
                {
                  __rc: [
                    "InlineFbtResultImpl",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:925100",
                ["RunBlue"],
                {
                  __rc: [
                    "RunBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:729414",
                ["VisualCompletion"],
                {
                  __rc: [
                    "VisualCompletion",
                    "Aa28RL0-Up5HMdc6yqDmbLehRXXhTWcylo55pSgd_oqI_viHbjKnGbPda4ZIr-9jQGKKnRwbigT9F_MscKj06KIO",
                  ],
                },
                -1,
              ],
              [
                "cr:1094907",
                [],
                {
                  __rc: [
                    null,
                    "Aa06N2o4N2ORJc1PvIpvgPBB7Q9FwaSC95XsezKe51VwPU-CzCURHTBjKt-cu7F4EkuvBLMq3-SmDjh_vKmTdEg",
                  ],
                },
                -1,
              ],
              [
                "EventConfig",
                [],
                {
                  sampling: {
                    bandwidth: 0,
                    play: 0,
                    playing: 0,
                    progress: 0,
                    pause: 0,
                    ended: 0,
                    seeked: 0,
                    seeking: 0,
                    waiting: 0,
                    loadedmetadata: 0,
                    canplay: 0,
                    selectionchange: 0,
                    change: 0,
                    timeupdate: 0,
                    adaptation: 0,
                    focus: 0,
                    blur: 0,
                    load: 0,
                    error: 0,
                    message: 0,
                    abort: 0,
                    storage: 0,
                    scroll: 200000,
                    mousemove: 20000,
                    mouseover: 10000,
                    mouseout: 10000,
                    mousewheel: 1,
                    MSPointerMove: 10000,
                    keydown: 0.1,
                    click: 0.02,
                    mouseup: 0.02,
                    __100ms: 0.001,
                    __default: 5000,
                    __min: 100,
                    __interactionDefault: 200,
                    __eventDefault: 100000,
                  },
                  page_sampling_boost: 1,
                  interaction_regexes: {},
                  interaction_boost: {},
                  event_types: {},
                  manual_instrumentation: false,
                  profile_eager_execution: false,
                  disable_heuristic: true,
                  disable_event_profiler: false,
                },
                1726,
              ],
              ["AdsInterfacesSessionConfig", [], {}, 2393],
              ["IntlCurrentLocale", [], { code: "en_GB" }, 5954],
              [
                "QuickLogConfig",
                [],
                {
                  qpl_events: {
                    212543: { sampleRate: 250, samplingMethod: 1 },
                    393276: { sampleRate: 50, samplingMethod: 1 },
                    396252: { sampleRate: 50, samplingMethod: 1 },
                    397979: { sampleRate: 50, samplingMethod: 1 },
                    655575: { sampleRate: 1, samplingMethod: 1 },
                    655576: { sampleRate: 5000, samplingMethod: 1 },
                    655584: { sampleRate: 1, samplingMethod: 1 },
                    655653: { sampleRate: 250, samplingMethod: 1 },
                    663703: { sampleRate: 1, samplingMethod: 1 },
                    917556: { sampleRate: 100, samplingMethod: 1 },
                    917557: { sampleRate: 1000, samplingMethod: 1 },
                    918598: { sampleRate: 100, samplingMethod: 1 },
                    920349: { sampleRate: 100, samplingMethod: 1 },
                    920899: { sampleRate: 100, samplingMethod: 1 },
                    921754: { sampleRate: 100, samplingMethod: 1 },
                    922804: { sampleRate: 100, samplingMethod: 1 },
                    923401: { sampleRate: 100, samplingMethod: 1 },
                    924733: { sampleRate: 100, samplingMethod: 1 },
                    932588: { sampleRate: 100, samplingMethod: 1 },
                    2101001: { sampleRate: 250, samplingMethod: 1 },
                    2102327: { sampleRate: 50, samplingMethod: 1 },
                    2103143: { sampleRate: 250, samplingMethod: 1 },
                    2105890: { sampleRate: 250, samplingMethod: 1 },
                    2107124: { sampleRate: 1, samplingMethod: 1 },
                    2108977: { sampleRate: 10, samplingMethod: 1 },
                    2109054: { sampleRate: 250, samplingMethod: 1 },
                    3473463: { sampleRate: 10000, samplingMethod: 1 },
                    3473464: { sampleRate: 10000, samplingMethod: 1 },
                    3473465: { sampleRate: 10, samplingMethod: 1 },
                    3735589: { sampleRate: 100, samplingMethod: 1 },
                    3735590: { sampleRate: 1000, samplingMethod: 1 },
                    3735591: { sampleRate: 100, samplingMethod: 1 },
                    3735592: { sampleRate: 1000, samplingMethod: 1 },
                    3735593: { sampleRate: 1000, samplingMethod: 1 },
                    3735594: { sampleRate: 1000, samplingMethod: 1 },
                    3735595: { sampleRate: 100, samplingMethod: 1 },
                    3735596: { sampleRate: 1000, samplingMethod: 1 },
                    3735597: { sampleRate: 1000, samplingMethod: 1 },
                    3735598: { sampleRate: 100, samplingMethod: 1 },
                    3735599: { sampleRate: 1000, samplingMethod: 1 },
                    3735600: { sampleRate: 100, samplingMethod: 1 },
                    3735601: { sampleRate: 100, samplingMethod: 1 },
                    3735602: { sampleRate: 10000, samplingMethod: 1 },
                    3735603: { sampleRate: 10000, samplingMethod: 1 },
                    3735604: { sampleRate: 100, samplingMethod: 1 },
                    3735605: { sampleRate: 100, samplingMethod: 1 },
                    3735606: { sampleRate: 1, samplingMethod: 1 },
                    3735608: { sampleRate: 250, samplingMethod: 1 },
                    3735609: { sampleRate: 250, samplingMethod: 1 },
                    3735610: { sampleRate: 250, samplingMethod: 1 },
                    3735611: { sampleRate: 250, samplingMethod: 1 },
                    3735612: { sampleRate: 250, samplingMethod: 1 },
                    3735613: { sampleRate: 250, samplingMethod: 1 },
                    3735614: { sampleRate: 250, samplingMethod: 1 },
                    3735615: { sampleRate: 250, samplingMethod: 1 },
                    3735616: { sampleRate: 250, samplingMethod: 1 },
                    3735617: { sampleRate: 250, samplingMethod: 1 },
                    3735618: { sampleRate: 50, samplingMethod: 1 },
                    3735619: { sampleRate: 50, samplingMethod: 1 },
                    3735620: { sampleRate: 50, samplingMethod: 1 },
                    3735622: { sampleRate: 50, samplingMethod: 1 },
                    3735623: { sampleRate: 500, samplingMethod: 1 },
                    3735624: { sampleRate: 500, samplingMethod: 1 },
                    3735625: { sampleRate: 1, samplingMethod: 1 },
                    3735626: { sampleRate: 50, samplingMethod: 1 },
                    3735627: { sampleRate: 50, samplingMethod: 1 },
                    3735628: { sampleRate: 250, samplingMethod: 1 },
                    7077894: { sampleRate: 1, samplingMethod: 1 },
                    7079140: { sampleRate: 1, samplingMethod: 1 },
                    7079214: { sampleRate: 100, samplingMethod: 1 },
                    7079522: { sampleRate: 100, samplingMethod: 1 },
                    7079632: { sampleRate: 1, samplingMethod: 1 },
                    7079838: { sampleRate: 1, samplingMethod: 1 },
                    7079895: { sampleRate: 1, samplingMethod: 1 },
                    7079940: { sampleRate: 1, samplingMethod: 1 },
                    7080944: { sampleRate: 100, samplingMethod: 1 },
                    7081379: { sampleRate: 100, samplingMethod: 1 },
                    7081993: { sampleRate: 1, samplingMethod: 1 },
                    7081995: { sampleRate: 1, samplingMethod: 1 },
                    7082695: { sampleRate: 100, samplingMethod: 1 },
                    7083043: { sampleRate: 100, samplingMethod: 1 },
                    7083175: { sampleRate: 100, samplingMethod: 1 },
                    7083437: { sampleRate: 100, samplingMethod: 1 },
                    7083693: { sampleRate: 100, samplingMethod: 1 },
                    7083971: { sampleRate: 1, samplingMethod: 1 },
                    7084033: { sampleRate: 100, samplingMethod: 1 },
                    7084185: { sampleRate: 100, samplingMethod: 1 },
                    7084444: { sampleRate: 1, samplingMethod: 1 },
                    7084665: { sampleRate: 100, samplingMethod: 1 },
                    7084786: { sampleRate: 1, samplingMethod: 1 },
                    7085174: { sampleRate: 100, samplingMethod: 1 },
                    7085268: { sampleRate: 100, samplingMethod: 1 },
                    7086190: { sampleRate: 100, samplingMethod: 1 },
                    7086630: { sampleRate: 100, samplingMethod: 1 },
                    7087889: { sampleRate: 1, samplingMethod: 1 },
                    7088719: { sampleRate: 1, samplingMethod: 1 },
                    7088916: { sampleRate: 1, samplingMethod: 1 },
                    7088929: { sampleRate: 1, samplingMethod: 1 },
                    7088932: { sampleRate: 1, samplingMethod: 1 },
                    7088956: { sampleRate: 1, samplingMethod: 1 },
                    7089119: { sampleRate: 1, samplingMethod: 1 },
                    7089521: { sampleRate: 100, samplingMethod: 1 },
                    7089869: { sampleRate: 100, samplingMethod: 1 },
                    7090129: { sampleRate: 1, samplingMethod: 1 },
                    7090251: { sampleRate: 100, samplingMethod: 1 },
                    7091307: { sampleRate: 1, samplingMethod: 1 },
                    7092490: { sampleRate: 1, samplingMethod: 1 },
                    7092499: { sampleRate: 100, samplingMethod: 1 },
                    7092951: { sampleRate: 1, samplingMethod: 1 },
                    7093080: { sampleRate: 100, samplingMethod: 1 },
                    7093431: { sampleRate: 100, samplingMethod: 1 },
                    7093497: { sampleRate: 100, samplingMethod: 1 },
                    7093594: { sampleRate: 100, samplingMethod: 1 },
                    7093622: { sampleRate: 1, samplingMethod: 1 },
                    7093901: { sampleRate: 1, samplingMethod: 1 },
                    7093934: { sampleRate: 100, samplingMethod: 1 },
                    7094174: { sampleRate: 100, samplingMethod: 1 },
                    7733271: { sampleRate: 1, samplingMethod: 1 },
                    7736691: { sampleRate: 100, samplingMethod: 1 },
                    7742652: { sampleRate: 1, samplingMethod: 3 },
                    7747339: { sampleRate: 100, samplingMethod: 1 },
                    7749497: { sampleRate: 1, samplingMethod: 1 },
                    7995400: { sampleRate: 1, samplingMethod: 1 },
                    7995408: { sampleRate: 100, samplingMethod: 1 },
                    11075649: { sampleRate: 1, samplingMethod: 1 },
                    11075654: { sampleRate: 1, samplingMethod: 1 },
                    11075674: { sampleRate: 1, samplingMethod: 1 },
                    11084341: { sampleRate: 1, samplingMethod: 1 },
                    12451850: { sampleRate: 1, samplingMethod: 1 },
                    12451854: { sampleRate: 1, samplingMethod: 3 },
                    12451859: { sampleRate: 1, samplingMethod: 3 },
                    12451868: { sampleRate: 1, samplingMethod: 1 },
                    12451869: { sampleRate: 1, samplingMethod: 1 },
                    12451873: { sampleRate: 10000, samplingMethod: 1 },
                    12453291: { sampleRate: 1, samplingMethod: 1 },
                    12454042: { sampleRate: 10000, samplingMethod: 1 },
                    12454789: { sampleRate: 10000, samplingMethod: 1 },
                    12457892: { sampleRate: 10000, samplingMethod: 1 },
                    12457943: { sampleRate: 10000, samplingMethod: 1 },
                    12458187: { sampleRate: 10000, samplingMethod: 1 },
                    12462244: { sampleRate: 10000, samplingMethod: 1 },
                    12463624: { sampleRate: 1, samplingMethod: 1 },
                    12464511: { sampleRate: 10000, samplingMethod: 1 },
                    12466919: { sampleRate: 10000, samplingMethod: 1 },
                    12859882: { sampleRate: 10000, samplingMethod: 1 },
                    13238313: { sampleRate: 100, samplingMethod: 1 },
                    13238314: { sampleRate: 100, samplingMethod: 1 },
                    13238353: { sampleRate: 100, samplingMethod: 1 },
                    13238354: { sampleRate: 100, samplingMethod: 1 },
                    13238355: { sampleRate: 100, samplingMethod: 1 },
                    13238356: { sampleRate: 100, samplingMethod: 1 },
                    13238392: { sampleRate: 100, samplingMethod: 1 },
                    13238398: { sampleRate: 100, samplingMethod: 1 },
                    13238399: { sampleRate: 100, samplingMethod: 1 },
                    13238400: { sampleRate: 100, samplingMethod: 1 },
                    13249850: { sampleRate: 100, samplingMethod: 1 },
                    13250512: { sampleRate: 100, samplingMethod: 1 },
                    13252469: { sampleRate: 100, samplingMethod: 1 },
                    17825794: { sampleRate: 250, samplingMethod: 1 },
                    19146195: { sampleRate: 10000, samplingMethod: 1 },
                    19146604: { sampleRate: 1, samplingMethod: 1 },
                    19152862: { sampleRate: 5, samplingMethod: 1 },
                    19216409: { sampleRate: 100, samplingMethod: 1 },
                    20578320: { sampleRate: 1000000, samplingMethod: 1 },
                    22347782: { sampleRate: 100, samplingMethod: 1 },
                    22609921: { sampleRate: 10000, samplingMethod: 1 },
                    22675460: { sampleRate: 250, samplingMethod: 1 },
                    23265284: { sampleRate: 1, samplingMethod: 3 },
                    23265285: { sampleRate: 1, samplingMethod: 3 },
                    23265286: { sampleRate: 1, samplingMethod: 3 },
                    23281892: { sampleRate: 1, samplingMethod: 1 },
                    23285466: { sampleRate: 1, samplingMethod: 1 },
                    23461896: { sampleRate: 1, samplingMethod: 1 },
                    23461898: { sampleRate: 1, samplingMethod: 1 },
                    23461899: { sampleRate: 10000, samplingMethod: 1 },
                    23461900: { sampleRate: 1, samplingMethod: 1 },
                    23461901: { sampleRate: 1, samplingMethod: 1 },
                    23461902: { sampleRate: 1, samplingMethod: 1 },
                    23473227: { sampleRate: 1, samplingMethod: 1 },
                    23476559: { sampleRate: 1, samplingMethod: 1 },
                    23491362: { sampleRate: 1, samplingMethod: 1 },
                    23855114: { sampleRate: 1, samplingMethod: 1 },
                    24122239: { sampleRate: 1, samplingMethod: 1 },
                    24130366: { sampleRate: 10, samplingMethod: 1 },
                    25296897: { sampleRate: 1, samplingMethod: 1 },
                    25296900: { sampleRate: 1000, samplingMethod: 1 },
                    25296901: { sampleRate: 1, samplingMethod: 1 },
                    25296902: { sampleRate: 1, samplingMethod: 1 },
                    25296903: { sampleRate: 1000, samplingMethod: 1 },
                    25296904: { sampleRate: 1000, samplingMethod: 1 },
                    25296905: { sampleRate: 1000, samplingMethod: 1 },
                    25296906: { sampleRate: 1000, samplingMethod: 1 },
                    25298086: { sampleRate: 1, samplingMethod: 1 },
                    25304023: { sampleRate: 1000, samplingMethod: 1 },
                    25305590: { sampleRate: 1000, samplingMethod: 1 },
                    25310776: { sampleRate: 1000, samplingMethod: 1 },
                    26869761: { sampleRate: 1, samplingMethod: 1 },
                    26869762: { sampleRate: 1, samplingMethod: 1 },
                    26869763: { sampleRate: 1, samplingMethod: 1 },
                    26869764: { sampleRate: 1, samplingMethod: 1 },
                    26869766: { sampleRate: 1, samplingMethod: 1 },
                    26869768: { sampleRate: 1, samplingMethod: 1 },
                    26869770: { sampleRate: 1, samplingMethod: 1 },
                    26869771: { sampleRate: 1, samplingMethod: 1 },
                    26877377: { sampleRate: 1, samplingMethod: 1 },
                    26878862: { sampleRate: 1, samplingMethod: 1 },
                    26880417: { sampleRate: 1, samplingMethod: 1 },
                    26881111: { sampleRate: 1, samplingMethod: 1 },
                    26882160: { sampleRate: 1, samplingMethod: 1 },
                    26883711: { sampleRate: 1, samplingMethod: 1 },
                    26898960: { sampleRate: 1, samplingMethod: 1 },
                    27459588: { sampleRate: 5000, samplingMethod: 1 },
                    27459589: { sampleRate: 1, samplingMethod: 1 },
                    27459590: { sampleRate: 10, samplingMethod: 1 },
                    27459591: { sampleRate: 1, samplingMethod: 1 },
                    27467867: { sampleRate: 1000, samplingMethod: 1 },
                    27475950: { sampleRate: 1000, samplingMethod: 1 },
                    27787270: { sampleRate: 1000000, samplingMethod: 1 },
                    27787271: { sampleRate: 10000, samplingMethod: 1 },
                    27797599: { sampleRate: 1, samplingMethod: 1 },
                    27983873: { sampleRate: 1, samplingMethod: 1 },
                    27983874: { sampleRate: 1, samplingMethod: 1 },
                    27983875: { sampleRate: 1, samplingMethod: 1 },
                    27983876: { sampleRate: 1, samplingMethod: 1 },
                    27983877: { sampleRate: 1, samplingMethod: 1 },
                    29047276: { sampleRate: 10000, samplingMethod: 1 },
                    29818881: { sampleRate: 1, samplingMethod: 1 },
                    29818882: { sampleRate: 1, samplingMethod: 1 },
                    29818883: { sampleRate: 1, samplingMethod: 1 },
                    29818884: { sampleRate: 1, samplingMethod: 1 },
                    29949953: { sampleRate: 1, samplingMethod: 1 },
                    29949955: { sampleRate: 1, samplingMethod: 1 },
                    30408705: { sampleRate: 1, samplingMethod: 1 },
                    30408706: { sampleRate: 1, samplingMethod: 1 },
                    30408707: { sampleRate: 1, samplingMethod: 1 },
                    30408708: { sampleRate: 1, samplingMethod: 1 },
                    30408709: { sampleRate: 1, samplingMethod: 1 },
                    30408710: { sampleRate: 1, samplingMethod: 1 },
                    30408711: { sampleRate: 1, samplingMethod: 1 },
                    30408712: { sampleRate: 1, samplingMethod: 1 },
                    30421153: { sampleRate: 1, samplingMethod: 1 },
                    30605313: { sampleRate: 100, samplingMethod: 1 },
                    30605314: { sampleRate: 100, samplingMethod: 1 },
                    30605315: { sampleRate: 100, samplingMethod: 1 },
                    30605316: { sampleRate: 1, samplingMethod: 1 },
                    30605317: { sampleRate: 1, samplingMethod: 1 },
                    30605319: { sampleRate: 1, samplingMethod: 1 },
                    30605320: { sampleRate: 1, samplingMethod: 1 },
                    30605321: { sampleRate: 1, samplingMethod: 1 },
                    30605322: { sampleRate: 1, samplingMethod: 1 },
                    30605323: { sampleRate: 1, samplingMethod: 1 },
                    30605324: { sampleRate: 1, samplingMethod: 1 },
                    30605325: { sampleRate: 1, samplingMethod: 1 },
                    30605326: { sampleRate: 1, samplingMethod: 1 },
                    30605328: { sampleRate: 1, samplingMethod: 1 },
                    30605329: { sampleRate: 1, samplingMethod: 1 },
                    30605330: { sampleRate: 1, samplingMethod: 1 },
                    30605331: { sampleRate: 1, samplingMethod: 1 },
                    30605333: { sampleRate: 1, samplingMethod: 1 },
                    30605334: { sampleRate: 1, samplingMethod: 1 },
                    30605335: { sampleRate: 1, samplingMethod: 1 },
                    30605336: { sampleRate: 1, samplingMethod: 1 },
                    30605337: { sampleRate: 1, samplingMethod: 1 },
                    30605338: { sampleRate: 1, samplingMethod: 1 },
                    30605339: { sampleRate: 1, samplingMethod: 1 },
                    30605340: { sampleRate: 1, samplingMethod: 1 },
                    30605341: { sampleRate: 1, samplingMethod: 1 },
                    30605342: { sampleRate: 1, samplingMethod: 1 },
                    30605343: { sampleRate: 1, samplingMethod: 1 },
                    30605344: { sampleRate: 1, samplingMethod: 1 },
                    30605345: { sampleRate: 1, samplingMethod: 1 },
                    30605346: { sampleRate: 1, samplingMethod: 1 },
                    30605347: { sampleRate: 1, samplingMethod: 1 },
                    30605348: { sampleRate: 1, samplingMethod: 1 },
                    30605349: { sampleRate: 1, samplingMethod: 1 },
                    30605350: { sampleRate: 1, samplingMethod: 1 },
                    30605351: { sampleRate: 1, samplingMethod: 1 },
                    30605352: { sampleRate: 1, samplingMethod: 1 },
                    30605353: { sampleRate: 1, samplingMethod: 1 },
                    30605354: { sampleRate: 1, samplingMethod: 1 },
                    30605355: { sampleRate: 1, samplingMethod: 1 },
                    30605356: { sampleRate: 1, samplingMethod: 1 },
                    30605357: { sampleRate: 1, samplingMethod: 1 },
                    30605358: { sampleRate: 1, samplingMethod: 1 },
                    30605360: { sampleRate: 1, samplingMethod: 1 },
                    30605361: { sampleRate: 1, samplingMethod: 1 },
                    30605362: { sampleRate: 1, samplingMethod: 1 },
                    30605363: { sampleRate: 1, samplingMethod: 1 },
                    30605364: { sampleRate: 1, samplingMethod: 1 },
                    30605366: { sampleRate: 1, samplingMethod: 1 },
                    30605367: { sampleRate: 1, samplingMethod: 1 },
                    30605368: { sampleRate: 1, samplingMethod: 1 },
                    30605369: { sampleRate: 1, samplingMethod: 1 },
                    30605370: { sampleRate: 1, samplingMethod: 1 },
                    30605371: { sampleRate: 1, samplingMethod: 1 },
                    30605373: { sampleRate: 1, samplingMethod: 1 },
                    30605374: { sampleRate: 1, samplingMethod: 1 },
                    30605375: { sampleRate: 1, samplingMethod: 1 },
                    30605376: { sampleRate: 1, samplingMethod: 1 },
                    30605378: { sampleRate: 1, samplingMethod: 1 },
                    30605380: { sampleRate: 1, samplingMethod: 1 },
                    30605381: { sampleRate: 1, samplingMethod: 1 },
                    30605382: { sampleRate: 1, samplingMethod: 1 },
                    30605384: { sampleRate: 1, samplingMethod: 1 },
                    30605386: { sampleRate: 1, samplingMethod: 1 },
                    30605387: { sampleRate: 1, samplingMethod: 1 },
                    30605389: { sampleRate: 1, samplingMethod: 1 },
                    30605390: { sampleRate: 1, samplingMethod: 1 },
                    30605391: { sampleRate: 1, samplingMethod: 1 },
                    30605392: { sampleRate: 1, samplingMethod: 1 },
                    30605393: { sampleRate: 1, samplingMethod: 1 },
                    30615365: { sampleRate: 1, samplingMethod: 1 },
                    30615438: { sampleRate: 1, samplingMethod: 1 },
                    30616610: { sampleRate: 1, samplingMethod: 1 },
                    30617968: { sampleRate: 1, samplingMethod: 1 },
                    30618398: { sampleRate: 1, samplingMethod: 1 },
                    30618615: { sampleRate: 1, samplingMethod: 1 },
                    30620813: { sampleRate: 1, samplingMethod: 1 },
                    30621572: { sampleRate: 1, samplingMethod: 1 },
                    30632331: { sampleRate: 1, samplingMethod: 1 },
                    32312156: { sampleRate: 1, samplingMethod: 1 },
                    32374785: { sampleRate: 10000, samplingMethod: 1 },
                    32702465: { sampleRate: 1, samplingMethod: 1 },
                    33488897: { sampleRate: 1, samplingMethod: 1 },
                    33488898: { sampleRate: 1, samplingMethod: 1 },
                    33488900: { sampleRate: 1, samplingMethod: 1 },
                    33488901: { sampleRate: 1800, samplingMethod: 1 },
                    33488902: { sampleRate: 1, samplingMethod: 1 },
                    33488903: { sampleRate: 1, samplingMethod: 1 },
                    33488904: { sampleRate: 1, samplingMethod: 1 },
                    33488905: { sampleRate: 1, samplingMethod: 1 },
                    33494245: { sampleRate: 1, samplingMethod: 1 },
                    33619969: { sampleRate: 1, samplingMethod: 1 },
                    34156514: { sampleRate: 1, samplingMethod: 1 },
                    35586051: { sampleRate: 10, samplingMethod: 1 },
                    35586052: { sampleRate: 1000, samplingMethod: 1 },
                    35586053: { sampleRate: 1000, samplingMethod: 1 },
                    36110337: { sampleRate: 1, samplingMethod: 1 },
                    36110338: { sampleRate: 1, samplingMethod: 1 },
                    36110339: { sampleRate: 1, samplingMethod: 1 },
                    36241413: { sampleRate: 1, samplingMethod: 1 },
                    36241422: { sampleRate: 1, samplingMethod: 1 },
                    36241423: { sampleRate: 1, samplingMethod: 1 },
                    36241434: { sampleRate: 1, samplingMethod: 1 },
                    36243184: { sampleRate: 1, samplingMethod: 1 },
                    36244063: { sampleRate: 1, samplingMethod: 1 },
                    36246584: { sampleRate: 1, samplingMethod: 1 },
                    36247076: { sampleRate: 1, samplingMethod: 1 },
                    36247834: { sampleRate: 1, samplingMethod: 1 },
                    36249481: { sampleRate: 1, samplingMethod: 1 },
                    36250226: { sampleRate: 1, samplingMethod: 1 },
                    36251818: { sampleRate: 1, samplingMethod: 1 },
                    36254052: { sampleRate: 1, samplingMethod: 1 },
                    36254288: { sampleRate: 1, samplingMethod: 1 },
                    36255283: { sampleRate: 1, samplingMethod: 1 },
                    36256069: { sampleRate: 1, samplingMethod: 1 },
                    36257380: { sampleRate: 1, samplingMethod: 1 },
                    36306945: { sampleRate: 1, samplingMethod: 1 },
                    36306946: { sampleRate: 1, samplingMethod: 1 },
                    36306948: { sampleRate: 1, samplingMethod: 1 },
                    36306951: { sampleRate: 1000, samplingMethod: 1 },
                    36306952: { sampleRate: 1, samplingMethod: 1 },
                    36306955: { sampleRate: 1, samplingMethod: 1 },
                    36306958: { sampleRate: 1, samplingMethod: 1 },
                    37101248: { sampleRate: 10000, samplingMethod: 1 },
                    37158913: { sampleRate: 1, samplingMethod: 1 },
                    37158914: { sampleRate: 1, samplingMethod: 1 },
                    37158915: { sampleRate: 1, samplingMethod: 1 },
                    37158916: { sampleRate: 1, samplingMethod: 1 },
                    37224449: { sampleRate: 10000, samplingMethod: 1 },
                    37224450: { sampleRate: 10000, samplingMethod: 1 },
                    37224451: { sampleRate: 10000, samplingMethod: 1 },
                    37224452: { sampleRate: 10000, samplingMethod: 1 },
                    37224453: { sampleRate: 10000, samplingMethod: 1 },
                    37224454: { sampleRate: 10000, samplingMethod: 1 },
                    37224455: { sampleRate: 10000, samplingMethod: 1 },
                    37224456: { sampleRate: 10000, samplingMethod: 1 },
                    37224457: { sampleRate: 10000, samplingMethod: 1 },
                    37289985: { sampleRate: 1, samplingMethod: 1 },
                    37289986: { sampleRate: 1, samplingMethod: 1 },
                    37289987: { sampleRate: 1, samplingMethod: 1 },
                    37289990: { sampleRate: 1, samplingMethod: 1 },
                    37289991: { sampleRate: 1, samplingMethod: 1 },
                    37289992: { sampleRate: 1, samplingMethod: 1 },
                    37359568: { sampleRate: 10, samplingMethod: 1 },
                    37362344: { sampleRate: 10, samplingMethod: 1 },
                    37363365: { sampleRate: 10, samplingMethod: 1 },
                    37365445: { sampleRate: 10, samplingMethod: 1 },
                    37368014: { sampleRate: 10, samplingMethod: 1 },
                    37368588: { sampleRate: 10, samplingMethod: 1 },
                    37370103: { sampleRate: 10, samplingMethod: 1 },
                    37631558: { sampleRate: 4, samplingMethod: 1 },
                    37814273: { sampleRate: 1, samplingMethod: 1 },
                    37814274: { sampleRate: 1, samplingMethod: 1 },
                    37814275: { sampleRate: 1, samplingMethod: 1 },
                    38209779: { sampleRate: 100, samplingMethod: 1 },
                    38212112: { sampleRate: 100, samplingMethod: 1 },
                    38212473: { sampleRate: 100, samplingMethod: 1 },
                    38220042: { sampleRate: 100, samplingMethod: 1 },
                    38338561: { sampleRate: 1, samplingMethod: 1 },
                    38338562: { sampleRate: 1, samplingMethod: 1 },
                    38338563: { sampleRate: 1, samplingMethod: 1 },
                    38338564: { sampleRate: 1, samplingMethod: 1 },
                    38344892: { sampleRate: 1, samplingMethod: 1 },
                    38349246: { sampleRate: 1, samplingMethod: 1 },
                    38351883: { sampleRate: 1, samplingMethod: 1 },
                    38928385: { sampleRate: 1, samplingMethod: 1 },
                    39976964: { sampleRate: 2, samplingMethod: 1 },
                    39976965: { sampleRate: 2, samplingMethod: 1 },
                    39976966: { sampleRate: 1, samplingMethod: 1 },
                    39976967: { sampleRate: 2, samplingMethod: 1 },
                    40173575: { sampleRate: 1000, samplingMethod: 1 },
                    40501249: { sampleRate: 1, samplingMethod: 3 },
                    40501250: { sampleRate: 1, samplingMethod: 1 },
                    40501251: { sampleRate: 1, samplingMethod: 1 },
                    40501252: { sampleRate: 1, samplingMethod: 1 },
                    40501253: { sampleRate: 1, samplingMethod: 1 },
                    40501254: { sampleRate: 1, samplingMethod: 1 },
                    40501255: { sampleRate: 1, samplingMethod: 1 },
                    40840748: { sampleRate: 1, samplingMethod: 1 },
                    40841422: { sampleRate: 1, samplingMethod: 1 },
                    40843772: { sampleRate: 1, samplingMethod: 1 },
                    40894467: { sampleRate: 1, samplingMethod: 1 },
                    40894468: { sampleRate: 1, samplingMethod: 1 },
                    40894469: { sampleRate: 1, samplingMethod: 1 },
                    40894470: { sampleRate: 1, samplingMethod: 1 },
                    40894472: { sampleRate: 1, samplingMethod: 1 },
                    40894473: { sampleRate: 1, samplingMethod: 1 },
                    40894474: { sampleRate: 1, samplingMethod: 1 },
                    40894475: { sampleRate: 1, samplingMethod: 1 },
                    40894483: { sampleRate: 1, samplingMethod: 1 },
                    40894484: { sampleRate: 1, samplingMethod: 1 },
                    40894485: { sampleRate: 1, samplingMethod: 1 },
                    40894486: { sampleRate: 1, samplingMethod: 1 },
                    40894487: { sampleRate: 1, samplingMethod: 1 },
                    40894490: { sampleRate: 1, samplingMethod: 1 },
                    40894491: { sampleRate: 1, samplingMethod: 1 },
                    40894492: { sampleRate: 1, samplingMethod: 1 },
                    40894493: { sampleRate: 1, samplingMethod: 1 },
                    40894494: { sampleRate: 1, samplingMethod: 1 },
                    40894495: { sampleRate: 1, samplingMethod: 1 },
                    40894496: { sampleRate: 1, samplingMethod: 1 },
                    40894497: { sampleRate: 1, samplingMethod: 1 },
                    40894498: { sampleRate: 1, samplingMethod: 1 },
                    40894499: { sampleRate: 1, samplingMethod: 1 },
                    40894500: { sampleRate: 1, samplingMethod: 1 },
                    40894501: { sampleRate: 1, samplingMethod: 1 },
                    40894502: { sampleRate: 1, samplingMethod: 1 },
                    40903710: { sampleRate: 1, samplingMethod: 1 },
                    40905691: { sampleRate: 1, samplingMethod: 1 },
                    40908043: { sampleRate: 1, samplingMethod: 1 },
                    40910623: { sampleRate: 1, samplingMethod: 1 },
                    40913765: { sampleRate: 1, samplingMethod: 1 },
                    40919892: { sampleRate: 1, samplingMethod: 1 },
                    41484289: { sampleRate: 2, samplingMethod: 1 },
                    41484290: { sampleRate: 100, samplingMethod: 1 },
                    41484291: { sampleRate: 100, samplingMethod: 1 },
                    41484292: { sampleRate: 100, samplingMethod: 1 },
                    41484293: { sampleRate: 100, samplingMethod: 1 },
                    41484294: { sampleRate: 200, samplingMethod: 1 },
                    41484295: { sampleRate: 100, samplingMethod: 1 },
                    41484296: { sampleRate: 100, samplingMethod: 1 },
                    41484297: { sampleRate: 100, samplingMethod: 1 },
                    41484298: { sampleRate: 100, samplingMethod: 1 },
                    41484299: { sampleRate: 100, samplingMethod: 1 },
                    41484300: { sampleRate: 100, samplingMethod: 1 },
                    41484301: { sampleRate: 1, samplingMethod: 1 },
                    41484302: { sampleRate: 100, samplingMethod: 1 },
                    41484303: { sampleRate: 100, samplingMethod: 1 },
                    41484304: { sampleRate: 100, samplingMethod: 1 },
                    41484306: { sampleRate: 100, samplingMethod: 1 },
                    41484307: { sampleRate: 100, samplingMethod: 1 },
                    41484308: { sampleRate: 100, samplingMethod: 1 },
                    41484309: { sampleRate: 10, samplingMethod: 1 },
                    41484310: { sampleRate: 10, samplingMethod: 1 },
                    41484311: { sampleRate: 1, samplingMethod: 1 },
                    41484313: { sampleRate: 1, samplingMethod: 1 },
                    41484314: { sampleRate: 1, samplingMethod: 1 },
                    41484315: { sampleRate: 100, samplingMethod: 1 },
                    41484317: { sampleRate: 100, samplingMethod: 1 },
                    41484318: { sampleRate: 20, samplingMethod: 1 },
                    41485898: { sampleRate: 10, samplingMethod: 1 },
                    41486225: { sampleRate: 1, samplingMethod: 1 },
                    41486524: { sampleRate: 1, samplingMethod: 1 },
                    41487618: { sampleRate: 100, samplingMethod: 1 },
                    41488847: { sampleRate: 1, samplingMethod: 1 },
                    41490105: { sampleRate: 1, samplingMethod: 1 },
                    41490114: { sampleRate: 100, samplingMethod: 1 },
                    41490310: { sampleRate: 100, samplingMethod: 1 },
                    41491162: { sampleRate: 1, samplingMethod: 1 },
                    41491369: { sampleRate: 10, samplingMethod: 1 },
                    41491493: { sampleRate: 1, samplingMethod: 1 },
                    41491663: { sampleRate: 2, samplingMethod: 1 },
                    41491821: { sampleRate: 100, samplingMethod: 1 },
                    41492048: { sampleRate: 1, samplingMethod: 1 },
                    41492124: { sampleRate: 1, samplingMethod: 1 },
                    41492235: { sampleRate: 1, samplingMethod: 1 },
                    41493161: { sampleRate: 100, samplingMethod: 1 },
                    41493580: { sampleRate: 100, samplingMethod: 1 },
                    41494292: { sampleRate: 100, samplingMethod: 1 },
                    41495055: { sampleRate: 100, samplingMethod: 1 },
                    41495214: { sampleRate: 100, samplingMethod: 1 },
                    41495478: { sampleRate: 1, samplingMethod: 1 },
                    41495493: { sampleRate: 1, samplingMethod: 1 },
                    41495649: { sampleRate: 1, samplingMethod: 1 },
                    41497570: { sampleRate: 10, samplingMethod: 1 },
                    41497784: { sampleRate: 100, samplingMethod: 1 },
                    41498606: { sampleRate: 10, samplingMethod: 1 },
                    41499313: { sampleRate: 100, samplingMethod: 1 },
                    41500090: { sampleRate: 100, samplingMethod: 1 },
                    41500162: { sampleRate: 1, samplingMethod: 1 },
                    41506813: { sampleRate: 250, samplingMethod: 1 },
                    41549825: { sampleRate: 1, samplingMethod: 1 },
                    41811969: { sampleRate: 1, samplingMethod: 1 },
                    41811970: { sampleRate: 1, samplingMethod: 1 },
                    41811971: { sampleRate: 1, samplingMethod: 1 },
                    42403339: { sampleRate: 1, samplingMethod: 1 },
                    42406132: { sampleRate: 1, samplingMethod: 1 },
                    42408939: { sampleRate: 1, samplingMethod: 1 },
                    42411149: { sampleRate: 1, samplingMethod: 1 },
                    42417878: { sampleRate: 1, samplingMethod: 1 },
                    42532865: { sampleRate: 1000, samplingMethod: 1 },
                    42532866: { sampleRate: 10000, samplingMethod: 1 },
                    42729476: { sampleRate: 1, samplingMethod: 1 },
                    42729477: { sampleRate: 1, samplingMethod: 1 },
                    42729478: { sampleRate: 1, samplingMethod: 1 },
                    42738840: { sampleRate: 1, samplingMethod: 1 },
                    42795009: { sampleRate: 1, samplingMethod: 1 },
                    44040193: { sampleRate: 1, samplingMethod: 1 },
                    44040194: { sampleRate: 1, samplingMethod: 1 },
                    44040198: { sampleRate: 1, samplingMethod: 1 },
                    44433409: { sampleRate: 1, samplingMethod: 1 },
                    44433410: { sampleRate: 1, samplingMethod: 1 },
                    44433411: { sampleRate: 1, samplingMethod: 1 },
                    44892162: { sampleRate: 1, samplingMethod: 1 },
                    44892163: { sampleRate: 1, samplingMethod: 1 },
                    44892165: { sampleRate: 5, samplingMethod: 1 },
                    44892166: { sampleRate: 5, samplingMethod: 1 },
                    44957701: { sampleRate: 1, samplingMethod: 1 },
                    45088770: { sampleRate: 1, samplingMethod: 1 },
                    45613057: { sampleRate: 1, samplingMethod: 1 },
                    45613058: { sampleRate: 1, samplingMethod: 1 },
                    45613059: { sampleRate: 1, samplingMethod: 1 },
                    45678593: { sampleRate: 1, samplingMethod: 1 },
                    45678594: { sampleRate: 100, samplingMethod: 1 },
                    46596097: { sampleRate: 1, samplingMethod: 1 },
                    47841281: { sampleRate: 1, samplingMethod: 1 },
                    47841282: { sampleRate: 1, samplingMethod: 1 },
                    47841283: { sampleRate: 1, samplingMethod: 1 },
                    48496641: { sampleRate: 1, samplingMethod: 1 },
                    48758785: { sampleRate: 1, samplingMethod: 1 },
                    48758786: { sampleRate: 1, samplingMethod: 1 },
                    49283073: { sampleRate: 1, samplingMethod: 1 },
                    49283075: { sampleRate: 100, samplingMethod: 1 },
                    49284811: { sampleRate: 100, samplingMethod: 1 },
                    49285023: { sampleRate: 100, samplingMethod: 1 },
                    49287848: { sampleRate: 100, samplingMethod: 1 },
                    49290075: { sampleRate: 100, samplingMethod: 1 },
                    49290201: { sampleRate: 100, samplingMethod: 1 },
                    49290401: { sampleRate: 100, samplingMethod: 1 },
                    49290951: { sampleRate: 100, samplingMethod: 1 },
                    49291043: { sampleRate: 100, samplingMethod: 1 },
                    49291264: { sampleRate: 100, samplingMethod: 1 },
                    49294705: { sampleRate: 100, samplingMethod: 1 },
                    49294997: { sampleRate: 100, samplingMethod: 1 },
                    49295194: { sampleRate: 100, samplingMethod: 1 },
                    49296905: { sampleRate: 100, samplingMethod: 1 },
                    49298279: { sampleRate: 100, samplingMethod: 1 },
                    49479681: { sampleRate: 1, samplingMethod: 1 },
                    49479683: { sampleRate: 1, samplingMethod: 1 },
                    49479685: { sampleRate: 1, samplingMethod: 1 },
                    49481946: { sampleRate: 1, samplingMethod: 1 },
                    49816219: { sampleRate: 10000, samplingMethod: 1 },
                    50003969: { sampleRate: 1, samplingMethod: 1 },
                    50003970: { sampleRate: 1, samplingMethod: 1 },
                    50003971: { sampleRate: 1, samplingMethod: 1 },
                    50003972: { sampleRate: 1, samplingMethod: 1 },
                    50003973: { sampleRate: 1, samplingMethod: 1 },
                    50003974: { sampleRate: 1, samplingMethod: 1 },
                    50987009: { sampleRate: 1, samplingMethod: 1 },
                    50987010: { sampleRate: 1, samplingMethod: 1 },
                    51452317: { sampleRate: 100, samplingMethod: 1 },
                    51455798: { sampleRate: 100, samplingMethod: 1 },
                    51459017: { sampleRate: 100, samplingMethod: 1 },
                    51459249: { sampleRate: 100, samplingMethod: 1 },
                    52690945: { sampleRate: 1, samplingMethod: 1 },
                    52690946: { sampleRate: 1, samplingMethod: 1 },
                    52690947: { sampleRate: 1, samplingMethod: 1 },
                    52690948: { sampleRate: 1, samplingMethod: 1 },
                    52690949: { sampleRate: 1, samplingMethod: 1 },
                    52690950: { sampleRate: 1, samplingMethod: 1 },
                    52694580: { sampleRate: 1, samplingMethod: 1 },
                    52698112: { sampleRate: 1, samplingMethod: 1 },
                    52701974: { sampleRate: 1, samplingMethod: 1 },
                    52704988: { sampleRate: 1, samplingMethod: 1 },
                    52705483: { sampleRate: 1, samplingMethod: 1 },
                    52706253: { sampleRate: 1, samplingMethod: 1 },
                    52709001: { sampleRate: 1, samplingMethod: 1 },
                    52710195: { sampleRate: 1, samplingMethod: 1 },
                    52711372: { sampleRate: 1, samplingMethod: 1 },
                    52711928: { sampleRate: 1, samplingMethod: 1 },
                    52712329: { sampleRate: 1, samplingMethod: 1 },
                    52717731: { sampleRate: 1, samplingMethod: 1 },
                    52719193: { sampleRate: 1, samplingMethod: 1 },
                    52720775: { sampleRate: 1, samplingMethod: 1 },
                    52722738: { sampleRate: 1, samplingMethod: 1 },
                    52756481: { sampleRate: 1, samplingMethod: 1 },
                    52887553: { sampleRate: 1, samplingMethod: 1 },
                    52887555: { sampleRate: 1, samplingMethod: 1 },
                    52887556: { sampleRate: 1, samplingMethod: 3 },
                    52887557: { sampleRate: 1, samplingMethod: 1 },
                    52887559: { sampleRate: 1, samplingMethod: 1 },
                    52887560: { sampleRate: 1, samplingMethod: 3 },
                    52887561: { sampleRate: 1, samplingMethod: 3 },
                    52887562: { sampleRate: 1, samplingMethod: 3 },
                    52887563: { sampleRate: 1, samplingMethod: 1 },
                    52887564: { sampleRate: 1, samplingMethod: 1 },
                    52887565: { sampleRate: 1, samplingMethod: 1 },
                    52887566: { sampleRate: 1, samplingMethod: 1 },
                    52887567: { sampleRate: 1, samplingMethod: 1 },
                    52887568: { sampleRate: 1, samplingMethod: 1 },
                    52887569: { sampleRate: 1, samplingMethod: 1 },
                    52887570: { sampleRate: 1, samplingMethod: 1 },
                    52887571: { sampleRate: 1, samplingMethod: 1 },
                    52887572: { sampleRate: 1, samplingMethod: 1 },
                    52887573: { sampleRate: 1, samplingMethod: 1 },
                    52887574: { sampleRate: 1, samplingMethod: 1 },
                    52887575: { sampleRate: 1, samplingMethod: 1 },
                    52887576: { sampleRate: 1, samplingMethod: 1 },
                    52887577: { sampleRate: 1, samplingMethod: 1 },
                    52887578: { sampleRate: 1, samplingMethod: 1 },
                    52887579: { sampleRate: 1, samplingMethod: 1 },
                    52887580: { sampleRate: 1, samplingMethod: 1 },
                    52887581: { sampleRate: 1, samplingMethod: 1 },
                    52887582: { sampleRate: 1, samplingMethod: 1 },
                    52887583: { sampleRate: 1, samplingMethod: 1 },
                    52887584: { sampleRate: 1, samplingMethod: 1 },
                    52887585: { sampleRate: 1, samplingMethod: 1 },
                    52887586: { sampleRate: 1, samplingMethod: 1 },
                    52887587: { sampleRate: 1, samplingMethod: 1 },
                    52888679: { sampleRate: 1, samplingMethod: 1 },
                    52889048: { sampleRate: 1, samplingMethod: 1 },
                    52889499: { sampleRate: 1, samplingMethod: 1 },
                    52890296: { sampleRate: 1, samplingMethod: 1 },
                    52891792: { sampleRate: 1, samplingMethod: 1 },
                    52892954: { sampleRate: 1, samplingMethod: 1 },
                    52893664: { sampleRate: 1, samplingMethod: 1 },
                    52894132: { sampleRate: 1, samplingMethod: 1 },
                    52894986: { sampleRate: 1, samplingMethod: 1 },
                    52895164: { sampleRate: 1, samplingMethod: 1 },
                    52896044: { sampleRate: 1, samplingMethod: 1 },
                    52896150: { sampleRate: 1, samplingMethod: 1 },
                    52896424: { sampleRate: 1, samplingMethod: 1 },
                    52897136: { sampleRate: 1, samplingMethod: 1 },
                    52897207: { sampleRate: 1, samplingMethod: 1 },
                    52897225: { sampleRate: 1, samplingMethod: 1 },
                    52898380: { sampleRate: 1, samplingMethod: 1 },
                    52899465: { sampleRate: 1, samplingMethod: 1 },
                    52899570: { sampleRate: 1000, samplingMethod: 1 },
                    52899642: { sampleRate: 1, samplingMethod: 1 },
                    52900219: { sampleRate: 1, samplingMethod: 1 },
                    52900550: { sampleRate: 1, samplingMethod: 1 },
                    52900739: { sampleRate: 1, samplingMethod: 1 },
                    52901539: { sampleRate: 1, samplingMethod: 1 },
                    52901642: { sampleRate: 1, samplingMethod: 1 },
                    52901931: { sampleRate: 1, samplingMethod: 1 },
                    52902102: { sampleRate: 1, samplingMethod: 1 },
                    52902805: { sampleRate: 1, samplingMethod: 1 },
                    52903035: { sampleRate: 1, samplingMethod: 1 },
                    52903160: { sampleRate: 1, samplingMethod: 1 },
                    52903192: { sampleRate: 1, samplingMethod: 1 },
                    52910634: { sampleRate: 1, samplingMethod: 1 },
                    53018625: { sampleRate: 1, samplingMethod: 1 },
                    53023044: { sampleRate: 1, samplingMethod: 1 },
                    53030147: { sampleRate: 1, samplingMethod: 1 },
                    53222086: { sampleRate: 10, samplingMethod: 1 },
                    53346305: { sampleRate: 1, samplingMethod: 1 },
                    53346306: { sampleRate: 1, samplingMethod: 1 },
                    53346307: { sampleRate: 1, samplingMethod: 1 },
                    53346308: { sampleRate: 1, samplingMethod: 3 },
                    53346309: { sampleRate: 1, samplingMethod: 1 },
                    53346310: { sampleRate: 1, samplingMethod: 1 },
                    53346311: { sampleRate: 1, samplingMethod: 1 },
                    53346312: { sampleRate: 1, samplingMethod: 1 },
                    53346313: { sampleRate: 1, samplingMethod: 1 },
                    53346314: { sampleRate: 1, samplingMethod: 1 },
                    53346315: { sampleRate: 1, samplingMethod: 1 },
                    53348255: { sampleRate: 1, samplingMethod: 1 },
                    53349360: { sampleRate: 1, samplingMethod: 1 },
                    53350227: { sampleRate: 1, samplingMethod: 1 },
                    53350607: { sampleRate: 1, samplingMethod: 1 },
                    53351604: { sampleRate: 1, samplingMethod: 1 },
                    53352841: { sampleRate: 1, samplingMethod: 1 },
                    53353549: { sampleRate: 1, samplingMethod: 1 },
                    53354745: { sampleRate: 1, samplingMethod: 1 },
                    53356071: { sampleRate: 1, samplingMethod: 1 },
                    53356872: { sampleRate: 1, samplingMethod: 1 },
                    53359547: { sampleRate: 1, samplingMethod: 1 },
                    53359965: { sampleRate: 1, samplingMethod: 1 },
                    53542913: { sampleRate: 1, samplingMethod: 1 },
                    53542914: { sampleRate: 1, samplingMethod: 1 },
                    53542915: { sampleRate: 1, samplingMethod: 1 },
                    53542916: { sampleRate: 1, samplingMethod: 1 },
                    53608449: { sampleRate: 1, samplingMethod: 1 },
                    53608450: { sampleRate: 1, samplingMethod: 1 },
                    53608451: { sampleRate: 1, samplingMethod: 1 },
                    53805057: { sampleRate: 1, samplingMethod: 1 },
                    53805058: { sampleRate: 1, samplingMethod: 1 },
                    53805059: { sampleRate: 1, samplingMethod: 1 },
                    53805060: { sampleRate: 1, samplingMethod: 1 },
                    53807173: { sampleRate: 1, samplingMethod: 1 },
                    53817004: { sampleRate: 1, samplingMethod: 1 },
                    53820636: { sampleRate: 1, samplingMethod: 1 },
                    54132737: { sampleRate: 100, samplingMethod: 1 },
                    54198273: { sampleRate: 1, samplingMethod: 1 },
                    54198274: { sampleRate: 1, samplingMethod: 1 },
                    54203833: { sampleRate: 1, samplingMethod: 1 },
                    54204699: { sampleRate: 1, samplingMethod: 1 },
                    54205001: { sampleRate: 1, samplingMethod: 1 },
                    54206020: { sampleRate: 1, samplingMethod: 1 },
                    54207975: { sampleRate: 1, samplingMethod: 1 },
                    54208795: { sampleRate: 1, samplingMethod: 1 },
                    54263809: { sampleRate: 1, samplingMethod: 1 },
                    54263810: { sampleRate: 1, samplingMethod: 1 },
                    54263811: { sampleRate: 1, samplingMethod: 1 },
                    54263812: { sampleRate: 1, samplingMethod: 1 },
                    54263813: { sampleRate: 1, samplingMethod: 1 },
                    54263814: { sampleRate: 1, samplingMethod: 1 },
                    54263815: { sampleRate: 1, samplingMethod: 1 },
                    54263816: { sampleRate: 1, samplingMethod: 1 },
                    54263817: { sampleRate: 1, samplingMethod: 1 },
                    54263818: { sampleRate: 1, samplingMethod: 1 },
                    54263819: { sampleRate: 1, samplingMethod: 1 },
                    54263820: { sampleRate: 1, samplingMethod: 1 },
                    54266075: { sampleRate: 1, samplingMethod: 1 },
                    54266141: { sampleRate: 1, samplingMethod: 1 },
                    54266824: { sampleRate: 1, samplingMethod: 1 },
                    54272742: { sampleRate: 1, samplingMethod: 1 },
                    54278955: { sampleRate: 1, samplingMethod: 1 },
                    54285047: { sampleRate: 1, samplingMethod: 1 },
                    54287428: { sampleRate: 1, samplingMethod: 1 },
                    54525953: { sampleRate: 2, samplingMethod: 1 },
                    54525954: { sampleRate: 1, samplingMethod: 1 },
                    54525955: { sampleRate: 1, samplingMethod: 1 },
                    54525956: { sampleRate: 1, samplingMethod: 1 },
                    54525957: { sampleRate: 1, samplingMethod: 1 },
                    54525958: { sampleRate: 1, samplingMethod: 1 },
                    54525959: { sampleRate: 1, samplingMethod: 1 },
                    54657025: { sampleRate: 10000, samplingMethod: 1 },
                    54657026: { sampleRate: 10000, samplingMethod: 1 },
                    54657027: { sampleRate: 10000, samplingMethod: 1 },
                    54657028: { sampleRate: 10000, samplingMethod: 1 },
                    54657029: { sampleRate: 10000, samplingMethod: 1 },
                    54657030: { sampleRate: 10000, samplingMethod: 1 },
                    54853633: { sampleRate: 1, samplingMethod: 1 },
                    54853634: { sampleRate: 1, samplingMethod: 1 },
                    54856934: { sampleRate: 1, samplingMethod: 1 },
                    54864546: { sampleRate: 1, samplingMethod: 1 },
                    54919169: { sampleRate: 1, samplingMethod: 1 },
                    54919170: { sampleRate: 1, samplingMethod: 1 },
                    54919171: { sampleRate: 1, samplingMethod: 1 },
                    54919172: { sampleRate: 1, samplingMethod: 1 },
                    54919173: { sampleRate: 1, samplingMethod: 1 },
                    54919174: { sampleRate: 1, samplingMethod: 1 },
                    54919175: { sampleRate: 1, samplingMethod: 1 },
                    54919176: { sampleRate: 1, samplingMethod: 1 },
                    54919177: { sampleRate: 1, samplingMethod: 1 },
                    54919178: { sampleRate: 1, samplingMethod: 1 },
                    54919179: { sampleRate: 1, samplingMethod: 1 },
                    54919180: { sampleRate: 1, samplingMethod: 1 },
                    54919181: { sampleRate: 1, samplingMethod: 1 },
                    54919182: { sampleRate: 1, samplingMethod: 1 },
                    54919183: { sampleRate: 1, samplingMethod: 1 },
                    54919184: { sampleRate: 1, samplingMethod: 1 },
                    54919185: { sampleRate: 1, samplingMethod: 1 },
                    54919186: { sampleRate: 1, samplingMethod: 1 },
                    54919187: { sampleRate: 1, samplingMethod: 1 },
                    54919188: { sampleRate: 1, samplingMethod: 1 },
                    54919189: { sampleRate: 1, samplingMethod: 1 },
                    54919190: { sampleRate: 1, samplingMethod: 1 },
                    54919191: { sampleRate: 1, samplingMethod: 1 },
                    54919192: { sampleRate: 1, samplingMethod: 1 },
                    54919193: { sampleRate: 1, samplingMethod: 1 },
                    54919194: { sampleRate: 1, samplingMethod: 1 },
                    54919195: { sampleRate: 1, samplingMethod: 1 },
                    54919196: { sampleRate: 1, samplingMethod: 1 },
                    54919197: { sampleRate: 1, samplingMethod: 1 },
                    54919198: { sampleRate: 1, samplingMethod: 1 },
                    54919199: { sampleRate: 1, samplingMethod: 1 },
                    54920477: { sampleRate: 1, samplingMethod: 1 },
                    54920986: { sampleRate: 1, samplingMethod: 1 },
                    54921638: { sampleRate: 1, samplingMethod: 1 },
                    54922073: { sampleRate: 1, samplingMethod: 1 },
                    54922991: { sampleRate: 1, samplingMethod: 1 },
                    54923806: { sampleRate: 1, samplingMethod: 1 },
                    54924465: { sampleRate: 1, samplingMethod: 1 },
                    54924629: { sampleRate: 1, samplingMethod: 1 },
                    54926560: { sampleRate: 1, samplingMethod: 1 },
                    54927157: { sampleRate: 1, samplingMethod: 1 },
                    54928097: { sampleRate: 1, samplingMethod: 1 },
                    54928841: { sampleRate: 1, samplingMethod: 1 },
                    54930074: { sampleRate: 1, samplingMethod: 1 },
                    54930508: { sampleRate: 1, samplingMethod: 1 },
                    54932258: { sampleRate: 1, samplingMethod: 1 },
                    54934991: { sampleRate: 1, samplingMethod: 1 },
                    54935139: { sampleRate: 1, samplingMethod: 1 },
                    54935506: { sampleRate: 1, samplingMethod: 1 },
                    55181314: { sampleRate: 1, samplingMethod: 1 },
                    55181315: { sampleRate: 1, samplingMethod: 1 },
                    55181316: { sampleRate: 1, samplingMethod: 1 },
                    55181317: { sampleRate: 1, samplingMethod: 1 },
                    55246849: { sampleRate: 1, samplingMethod: 1 },
                    55246850: { sampleRate: 1000000000, samplingMethod: 1 },
                    55312385: { sampleRate: 1, samplingMethod: 1 },
                    55312386: { sampleRate: 1, samplingMethod: 1 },
                    55312388: { sampleRate: 1, samplingMethod: 1 },
                    55325709: { sampleRate: 1, samplingMethod: 1 },
                    55443457: { sampleRate: 1, samplingMethod: 1 },
                    55443458: { sampleRate: 1, samplingMethod: 1 },
                    55443459: { sampleRate: 1, samplingMethod: 1 },
                    55443460: { sampleRate: 1, samplingMethod: 1 },
                    55447349: { sampleRate: 1, samplingMethod: 1 },
                    55465642: { sampleRate: 1, samplingMethod: 1 },
                    55508994: { sampleRate: 1, samplingMethod: 1 },
                    55508995: { sampleRate: 1, samplingMethod: 1 },
                    55508996: { sampleRate: 1, samplingMethod: 1 },
                    55511587: { sampleRate: 1, samplingMethod: 1 },
                    55517182: { sampleRate: 1, samplingMethod: 1 },
                    55574529: { sampleRate: 10000, samplingMethod: 1 },
                    55574530: { sampleRate: 1, samplingMethod: 3 },
                    55577701: { sampleRate: 1, samplingMethod: 3 },
                    55580822: { sampleRate: 1, samplingMethod: 3 },
                    55836673: { sampleRate: 1, samplingMethod: 1 },
                    55836674: { sampleRate: 1000000000, samplingMethod: 1 },
                    55836675: { sampleRate: 1000000000, samplingMethod: 1 },
                    55836676: { sampleRate: 1000000000, samplingMethod: 1 },
                    55836677: { sampleRate: 1000000000, samplingMethod: 1 },
                    55836678: { sampleRate: 10000, samplingMethod: 1 },
                    55838299: { sampleRate: 1, samplingMethod: 1 },
                    55838475: { sampleRate: 10000, samplingMethod: 1 },
                    55838751: { sampleRate: 1, samplingMethod: 1 },
                    55839297: { sampleRate: 1, samplingMethod: 1 },
                    55839489: { sampleRate: 10000, samplingMethod: 1 },
                    55839576: { sampleRate: 1, samplingMethod: 1 },
                    55967745: { sampleRate: 1, samplingMethod: 1 },
                    55967746: { sampleRate: 1, samplingMethod: 1 },
                    55967747: { sampleRate: 1, samplingMethod: 1 },
                    55967748: { sampleRate: 1, samplingMethod: 1 },
                    55977618: { sampleRate: 1, samplingMethod: 1 },
                    55981862: { sampleRate: 1, samplingMethod: 1 },
                    55983494: { sampleRate: 1, samplingMethod: 1 },
                    56360961: { sampleRate: 1, samplingMethod: 1 },
                    57344001: { sampleRate: 1, samplingMethod: 1 },
                    57344002: { sampleRate: 10, samplingMethod: 1 },
                    57344003: { sampleRate: 1, samplingMethod: 1 },
                    57344004: { sampleRate: 1, samplingMethod: 1 },
                    57344005: { sampleRate: 10000, samplingMethod: 1 },
                    57349022: { sampleRate: 10000, samplingMethod: 1 },
                    57409537: { sampleRate: 100000000, samplingMethod: 1 },
                    57409538: { sampleRate: 100000000, samplingMethod: 1 },
                    57409539: { sampleRate: 100000000, samplingMethod: 1 },
                    57414808: { sampleRate: 10000, samplingMethod: 1 },
                    57416887: { sampleRate: 10000, samplingMethod: 1 },
                    57423572: { sampleRate: 10000, samplingMethod: 1 },
                    57424600: { sampleRate: 10000, samplingMethod: 1 },
                    57553537: { sampleRate: 1, samplingMethod: 1 },
                    57671681: { sampleRate: 1, samplingMethod: 1 },
                    57671682: { sampleRate: 1, samplingMethod: 1 },
                    57671683: { sampleRate: 1, samplingMethod: 1 },
                    57671684: { sampleRate: 1, samplingMethod: 1 },
                    57671685: { sampleRate: 1, samplingMethod: 1 },
                    57673015: { sampleRate: 1, samplingMethod: 1 },
                    57673101: { sampleRate: 1, samplingMethod: 1 },
                    57673139: { sampleRate: 1, samplingMethod: 1 },
                    57676191: { sampleRate: 1, samplingMethod: 1 },
                    57676641: { sampleRate: 1, samplingMethod: 1 },
                    57676962: { sampleRate: 1, samplingMethod: 1 },
                    57677271: { sampleRate: 1, samplingMethod: 1 },
                    57678366: { sampleRate: 1, samplingMethod: 1 },
                    57679159: { sampleRate: 1, samplingMethod: 1 },
                    57679681: { sampleRate: 1, samplingMethod: 1 },
                    57680423: { sampleRate: 1, samplingMethod: 1 },
                    57681719: { sampleRate: 1, samplingMethod: 1 },
                    57683413: { sampleRate: 1, samplingMethod: 1 },
                    57683704: { sampleRate: 1, samplingMethod: 1 },
                    57685472: { sampleRate: 1, samplingMethod: 1 },
                    57685558: { sampleRate: 1, samplingMethod: 1 },
                    57687363: { sampleRate: 1, samplingMethod: 1 },
                    57933825: { sampleRate: 1, samplingMethod: 1 },
                    57999361: { sampleRate: 1, samplingMethod: 1 },
                    57999362: { sampleRate: 1, samplingMethod: 1 },
                    58195969: { sampleRate: 1, samplingMethod: 1 },
                    58195970: { sampleRate: 1, samplingMethod: 1 },
                    58195971: { sampleRate: 1, samplingMethod: 1 },
                    58197575: { sampleRate: 1, samplingMethod: 1 },
                    58198230: { sampleRate: 1, samplingMethod: 1 },
                    58198910: { sampleRate: 1, samplingMethod: 1 },
                    58199413: { sampleRate: 1, samplingMethod: 1 },
                    58200119: { sampleRate: 1, samplingMethod: 1 },
                    58200302: { sampleRate: 1, samplingMethod: 1 },
                    58202054: { sampleRate: 1, samplingMethod: 1 },
                    58203187: { sampleRate: 1, samplingMethod: 1 },
                    58203836: { sampleRate: 1, samplingMethod: 1 },
                    58204710: { sampleRate: 1, samplingMethod: 1 },
                    58204719: { sampleRate: 1, samplingMethod: 1 },
                    58204796: { sampleRate: 1, samplingMethod: 1 },
                    58204895: { sampleRate: 1, samplingMethod: 1 },
                    58205292: { sampleRate: 1, samplingMethod: 1 },
                    58207372: { sampleRate: 1, samplingMethod: 1 },
                    58207791: { sampleRate: 1, samplingMethod: 1 },
                    58208472: { sampleRate: 1, samplingMethod: 1 },
                    58208772: { sampleRate: 1, samplingMethod: 1 },
                    58209045: { sampleRate: 1, samplingMethod: 1 },
                    58209083: { sampleRate: 1, samplingMethod: 1 },
                    58209723: { sampleRate: 1, samplingMethod: 1 },
                    58209742: { sampleRate: 1, samplingMethod: 1 },
                    58210323: { sampleRate: 1, samplingMethod: 1 },
                    58210485: { sampleRate: 1, samplingMethod: 1 },
                    58210711: { sampleRate: 1, samplingMethod: 1 },
                    58211469: { sampleRate: 1, samplingMethod: 1 },
                    58211715: { sampleRate: 1, samplingMethod: 1 },
                    58211900: { sampleRate: 1, samplingMethod: 1 },
                    58458114: { sampleRate: 1, samplingMethod: 1 },
                    58458115: { sampleRate: 1, samplingMethod: 1 },
                    58461407: { sampleRate: 1, samplingMethod: 1 },
                    58464469: { sampleRate: 1, samplingMethod: 1 },
                    58471621: { sampleRate: 1, samplingMethod: 1 },
                    58654721: { sampleRate: 1, samplingMethod: 1 },
                    58654722: { sampleRate: 1, samplingMethod: 1 },
                    58654723: { sampleRate: 1, samplingMethod: 1 },
                    58667792: { sampleRate: 1, samplingMethod: 1 },
                    59244545: { sampleRate: 1, samplingMethod: 1 },
                    59244546: { sampleRate: 1, samplingMethod: 1 },
                    59249609: { sampleRate: 1, samplingMethod: 1 },
                    59251734: { sampleRate: 1, samplingMethod: 1 },
                    59255771: { sampleRate: 1, samplingMethod: 1 },
                    59506689: { sampleRate: 10000, samplingMethod: 1 },
                    59899905: { sampleRate: 1, samplingMethod: 1 },
                    59899906: { sampleRate: 1, samplingMethod: 1 },
                    59899907: { sampleRate: 1, samplingMethod: 1 },
                    59899908: { sampleRate: 1, samplingMethod: 1 },
                    59899909: { sampleRate: 1, samplingMethod: 1 },
                    61276161: { sampleRate: 1, samplingMethod: 1 },
                    61276162: { sampleRate: 1, samplingMethod: 1 },
                    61276163: { sampleRate: 1, samplingMethod: 1 },
                    61276164: { sampleRate: 1, samplingMethod: 1 },
                    62128129: { sampleRate: 1, samplingMethod: 1 },
                    62128130: { sampleRate: 1, samplingMethod: 1 },
                    62128131: { sampleRate: 1, samplingMethod: 1 },
                    62128132: { sampleRate: 1, samplingMethod: 1 },
                    62128133: { sampleRate: 1, samplingMethod: 1 },
                    62128134: { sampleRate: 1, samplingMethod: 1 },
                    62128135: { sampleRate: 1, samplingMethod: 1 },
                    62324739: { sampleRate: 1, samplingMethod: 1 },
                    62455809: { sampleRate: 1, samplingMethod: 1 },
                    62455810: { sampleRate: 1, samplingMethod: 1 },
                    62455811: { sampleRate: 1, samplingMethod: 1 },
                    62521345: { sampleRate: 10, samplingMethod: 1 },
                    62521346: { sampleRate: 10, samplingMethod: 1 },
                    62521347: { sampleRate: 10, samplingMethod: 1 },
                    62521348: { sampleRate: 10, samplingMethod: 1 },
                    62521349: { sampleRate: 10, samplingMethod: 1 },
                    62521350: { sampleRate: 10, samplingMethod: 1 },
                    62532802: { sampleRate: 10, samplingMethod: 1 },
                    62586881: { sampleRate: 10, samplingMethod: 1 },
                    62914562: { sampleRate: 1, samplingMethod: 1 },
                    62980097: { sampleRate: 10000, samplingMethod: 1 },
                    63373313: { sampleRate: 1, samplingMethod: 1 },
                    63438849: { sampleRate: 1, samplingMethod: 1 },
                    63443246: { sampleRate: 1, samplingMethod: 1 },
                    63443755: { sampleRate: 1, samplingMethod: 1 },
                    63444114: { sampleRate: 1, samplingMethod: 1 },
                    63445172: { sampleRate: 1, samplingMethod: 1 },
                    63451466: { sampleRate: 1, samplingMethod: 1 },
                    63504385: { sampleRate: 1, samplingMethod: 1 },
                    63504386: { sampleRate: 1, samplingMethod: 1 },
                    63504387: { sampleRate: 1, samplingMethod: 1 },
                    63569921: { sampleRate: 1, samplingMethod: 1 },
                    63635457: { sampleRate: 1, samplingMethod: 1 },
                    63700993: { sampleRate: 1, samplingMethod: 1 },
                    63700994: { sampleRate: 1, samplingMethod: 1 },
                    63700995: { sampleRate: 1, samplingMethod: 1 },
                    63700996: { sampleRate: 1, samplingMethod: 1 },
                    63700997: { sampleRate: 1, samplingMethod: 1 },
                    63963137: { sampleRate: 1, samplingMethod: 1 },
                    64044054: { sampleRate: 10000, samplingMethod: 1 },
                    64232355: { sampleRate: 10000, samplingMethod: 1 },
                    64233826: { sampleRate: 10000, samplingMethod: 1 },
                    64240099: { sampleRate: 10000, samplingMethod: 1 },
                    66259720: { sampleRate: 10000, samplingMethod: 1 },
                    75366401: { sampleRate: 10000, samplingMethod: 1 },
                    79364097: { sampleRate: 1, samplingMethod: 1 },
                    81599639: { sampleRate: 10000, samplingMethod: 1 },
                    81601374: { sampleRate: 10000, samplingMethod: 1 },
                    81607290: { sampleRate: 10000, samplingMethod: 1 },
                    81725894: { sampleRate: 10000, samplingMethod: 1 },
                    81735603: { sampleRate: 10000, samplingMethod: 1 },
                    81739010: { sampleRate: 10000, samplingMethod: 1 },
                    83500562: { sampleRate: 1, samplingMethod: 1 },
                    91490110: { sampleRate: 1, samplingMethod: 1 },
                    91493742: { sampleRate: 1, samplingMethod: 1 },
                    91497584: { sampleRate: 1, samplingMethod: 1 },
                    91500519: { sampleRate: 1, samplingMethod: 1 },
                    91501860: { sampleRate: 1, samplingMethod: 1 },
                    95289345: { sampleRate: 10000, samplingMethod: 1 },
                    96997416: { sampleRate: 10000, samplingMethod: 1 },
                    97584737: { sampleRate: 1, samplingMethod: 3 },
                    97586489: { sampleRate: 1, samplingMethod: 3 },
                    97590506: { sampleRate: 1, samplingMethod: 3 },
                    97595254: { sampleRate: 1, samplingMethod: 3 },
                    97596530: { sampleRate: 1, samplingMethod: 3 },
                    97598603: { sampleRate: 1, samplingMethod: 3 },
                    101648941: { sampleRate: 1, samplingMethod: 1 },
                    101652143: { sampleRate: 1, samplingMethod: 1 },
                    101655997: { sampleRate: 1, samplingMethod: 1 },
                    101657336: { sampleRate: 1, samplingMethod: 1 },
                    101657509: { sampleRate: 1, samplingMethod: 1 },
                    104857601: { sampleRate: 10000, samplingMethod: 1 },
                    104857602: { sampleRate: 10000, samplingMethod: 1 },
                    108079481: { sampleRate: 10000, samplingMethod: 1 },
                    109772801: { sampleRate: 1, samplingMethod: 1 },
                    109774781: { sampleRate: 1, samplingMethod: 1 },
                    109774948: { sampleRate: 1, samplingMethod: 1 },
                    109775850: { sampleRate: 1, samplingMethod: 1 },
                    109775999: { sampleRate: 1, samplingMethod: 1 },
                    109776315: { sampleRate: 1, samplingMethod: 1 },
                    109777419: { sampleRate: 1, samplingMethod: 1 },
                    109777541: { sampleRate: 1, samplingMethod: 1 },
                    109780893: { sampleRate: 1, samplingMethod: 1 },
                    109781457: { sampleRate: 1, samplingMethod: 1 },
                    109782244: { sampleRate: 1, samplingMethod: 1 },
                    109782888: { sampleRate: 1, samplingMethod: 1 },
                    109784985: { sampleRate: 1, samplingMethod: 1 },
                    109785685: { sampleRate: 1, samplingMethod: 1 },
                    109787338: { sampleRate: 1, samplingMethod: 1 },
                    110176278: { sampleRate: 1, samplingMethod: 1 },
                    110177888: { sampleRate: 1, samplingMethod: 1 },
                    110178557: { sampleRate: 1, samplingMethod: 1 },
                    112991659: { sampleRate: 1, samplingMethod: 1 },
                    112992363: { sampleRate: 1, samplingMethod: 1 },
                    124985766: { sampleRate: 1, samplingMethod: 1 },
                    124989707: { sampleRate: 1, samplingMethod: 3 },
                    127468755: { sampleRate: 1, samplingMethod: 1 },
                    127468795: { sampleRate: 1, samplingMethod: 1 },
                    127469845: { sampleRate: 1, samplingMethod: 1 },
                    127470547: { sampleRate: 1, samplingMethod: 1 },
                    127470924: { sampleRate: 1, samplingMethod: 1 },
                    127471679: { sampleRate: 1, samplingMethod: 1 },
                    127471680: { sampleRate: 1, samplingMethod: 1 },
                    127473053: { sampleRate: 1, samplingMethod: 1 },
                    127474327: { sampleRate: 1, samplingMethod: 1 },
                    127474527: { sampleRate: 1, samplingMethod: 1 },
                    127477457: { sampleRate: 1, samplingMethod: 1 },
                    127481618: { sampleRate: 1, samplingMethod: 1 },
                    127481936: { sampleRate: 1, samplingMethod: 1 },
                    127483160: { sampleRate: 1, samplingMethod: 1 },
                    127926273: { sampleRate: 1, samplingMethod: 1 },
                    137428993: { sampleRate: 1, samplingMethod: 1 },
                    137428994: { sampleRate: 1, samplingMethod: 1 },
                    137440519: { sampleRate: 1, samplingMethod: 1 },
                    138810076: { sampleRate: 1, samplingMethod: 1 },
                    138816378: { sampleRate: 1, samplingMethod: 1 },
                    138820675: { sampleRate: 1, samplingMethod: 1 },
                    141363848: { sampleRate: 1, samplingMethod: 1 },
                    141372740: { sampleRate: 1, samplingMethod: 1 },
                    141492225: { sampleRate: 1, samplingMethod: 1 },
                    141502565: { sampleRate: 1, samplingMethod: 1 },
                    144444239: { sampleRate: 1, samplingMethod: 1 },
                    144445421: { sampleRate: 1, samplingMethod: 1 },
                    144450614: { sampleRate: 1, samplingMethod: 1 },
                    144452084: { sampleRate: 1, samplingMethod: 1 },
                    144452614: { sampleRate: 1, samplingMethod: 1 },
                    144456097: { sampleRate: 1, samplingMethod: 1 },
                    144456247: { sampleRate: 1, samplingMethod: 1 },
                    154664961: { sampleRate: 10000, samplingMethod: 1 },
                    154664962: { sampleRate: 10000, samplingMethod: 1 },
                    159779919: { sampleRate: 1, samplingMethod: 1 },
                    163841330: { sampleRate: 1000, samplingMethod: 1 },
                    163842200: { sampleRate: 10000, samplingMethod: 1 },
                    163842240: { sampleRate: 1, samplingMethod: 1 },
                    163842926: { sampleRate: 1, samplingMethod: 1 },
                    163843192: { sampleRate: 10, samplingMethod: 1 },
                    163843810: { sampleRate: 10, samplingMethod: 1 },
                    163844026: { sampleRate: 1, samplingMethod: 1 },
                    163845835: { sampleRate: 10000, samplingMethod: 1 },
                    163846803: { sampleRate: 1, samplingMethod: 1 },
                    163846904: { sampleRate: 1, samplingMethod: 1 },
                    163847018: { sampleRate: 1000, samplingMethod: 1 },
                    163847262: { sampleRate: 10000, samplingMethod: 1 },
                    163847763: { sampleRate: 10000, samplingMethod: 1 },
                    163849766: { sampleRate: 100, samplingMethod: 1 },
                    163850223: { sampleRate: 1, samplingMethod: 1 },
                    163850474: { sampleRate: 1, samplingMethod: 1 },
                    163853979: { sampleRate: 1000, samplingMethod: 1 },
                    163854950: { sampleRate: 10000, samplingMethod: 1 },
                    163855787: { sampleRate: 100, samplingMethod: 1 },
                    163855825: { sampleRate: 10000, samplingMethod: 1 },
                    178199990: { sampleRate: 10000, samplingMethod: 1 },
                    178200683: { sampleRate: 10000, samplingMethod: 1 },
                    183767196: { sampleRate: 1, samplingMethod: 1 },
                    183834837: { sampleRate: 10000, samplingMethod: 1 },
                    188746120: { sampleRate: 10000, samplingMethod: 1 },
                    188755890: { sampleRate: 10000, samplingMethod: 1 },
                    188755925: { sampleRate: 10000, samplingMethod: 1 },
                    192872449: { sampleRate: 1, samplingMethod: 1 },
                    195562276: { sampleRate: 1, samplingMethod: 1 },
                    195563247: { sampleRate: 1, samplingMethod: 1 },
                    195575337: { sampleRate: 1, samplingMethod: 1 },
                    195626009: { sampleRate: 1, samplingMethod: 1 },
                    195626194: { sampleRate: 1, samplingMethod: 1 },
                    195636649: { sampleRate: 1, samplingMethod: 1 },
                    195639692: { sampleRate: 1, samplingMethod: 1 },
                    204155936: { sampleRate: 1, samplingMethod: 1 },
                    205198634: { sampleRate: 1, samplingMethod: 1 },
                    205207410: { sampleRate: 1, samplingMethod: 1 },
                    209979636: { sampleRate: 1, samplingMethod: 1 },
                    209989735: { sampleRate: 1, samplingMethod: 1 },
                    213129059: { sampleRate: 1, samplingMethod: 1 },
                    213130080: { sampleRate: 1, samplingMethod: 1 },
                    213131472: { sampleRate: 1, samplingMethod: 1 },
                    213135039: { sampleRate: 1, samplingMethod: 1 },
                    216401752: { sampleRate: 1, samplingMethod: 1 },
                    216401890: { sampleRate: 1, samplingMethod: 1 },
                    218051286: { sampleRate: 1, samplingMethod: 1 },
                    218956945: { sampleRate: 1, samplingMethod: 1 },
                    218961347: { sampleRate: 1, samplingMethod: 1 },
                    218962025: { sampleRate: 1, samplingMethod: 1 },
                    218962528: { sampleRate: 1, samplingMethod: 1 },
                    218962602: { sampleRate: 1, samplingMethod: 1 },
                    218962996: { sampleRate: 1, samplingMethod: 1 },
                    218966113: { sampleRate: 1, samplingMethod: 1 },
                    218969087: { sampleRate: 1, samplingMethod: 1 },
                    218969883: { sampleRate: 1, samplingMethod: 1 },
                    218970026: { sampleRate: 1, samplingMethod: 1 },
                    218970632: { sampleRate: 1, samplingMethod: 1 },
                    218971974: { sampleRate: 1, samplingMethod: 1 },
                    221322158: { sampleRate: 10000, samplingMethod: 1 },
                    232522766: { sampleRate: 1, samplingMethod: 1 },
                    232530588: { sampleRate: 1, samplingMethod: 1 },
                    232531238: { sampleRate: 1, samplingMethod: 1 },
                    232533459: { sampleRate: 1, samplingMethod: 1 },
                    232536317: { sampleRate: 1, samplingMethod: 1 },
                    232726078: { sampleRate: 1, samplingMethod: 1 },
                    237963161: { sampleRate: 10000, samplingMethod: 1 },
                    238946702: { sampleRate: 1, samplingMethod: 1 },
                    241050641: { sampleRate: 1, samplingMethod: 1 },
                    241052667: { sampleRate: 1, samplingMethod: 1 },
                    241055991: { sampleRate: 1, samplingMethod: 1 },
                    241568984: { sampleRate: 1, samplingMethod: 1 },
                    241569419: { sampleRate: 1, samplingMethod: 1 },
                    241575915: { sampleRate: 1, samplingMethod: 1 },
                    243869892: { sampleRate: 10000, samplingMethod: 1 },
                    248069990: { sampleRate: 10000, samplingMethod: 1 },
                    256575931: { sampleRate: 10000, samplingMethod: 1 },
                    262995969: { sampleRate: 1, samplingMethod: 1 },
                    263004866: { sampleRate: 1, samplingMethod: 1 },
                    265815182: { sampleRate: 1, samplingMethod: 1 },
                    265816494: { sampleRate: 1, samplingMethod: 1 },
                    265820814: { sampleRate: 1, samplingMethod: 1 },
                    265824911: { sampleRate: 1, samplingMethod: 1 },
                    265830289: { sampleRate: 1, samplingMethod: 1 },
                    270205944: { sampleRate: 1, samplingMethod: 1 },
                    270206029: { sampleRate: 1, samplingMethod: 1 },
                    270206071: { sampleRate: 1, samplingMethod: 1 },
                    270206085: { sampleRate: 1, samplingMethod: 1 },
                    270206168: { sampleRate: 1, samplingMethod: 1 },
                    270206179: { sampleRate: 1, samplingMethod: 1 },
                    270206214: { sampleRate: 1, samplingMethod: 1 },
                    270206215: { sampleRate: 1, samplingMethod: 1 },
                    270206216: { sampleRate: 1, samplingMethod: 1 },
                    270206224: { sampleRate: 1, samplingMethod: 1 },
                    270206230: { sampleRate: 1, samplingMethod: 1 },
                    270206253: { sampleRate: 1, samplingMethod: 1 },
                    270206259: { sampleRate: 1, samplingMethod: 1 },
                    270206315: { sampleRate: 1, samplingMethod: 1 },
                    270206350: { sampleRate: 1, samplingMethod: 1 },
                    270206388: { sampleRate: 1, samplingMethod: 1 },
                    270206588: { sampleRate: 1, samplingMethod: 1 },
                    270206671: { sampleRate: 1, samplingMethod: 1 },
                    270206696: { sampleRate: 1, samplingMethod: 1 },
                    270206744: { sampleRate: 1, samplingMethod: 1 },
                    270206832: { sampleRate: 1, samplingMethod: 1 },
                    270206843: { sampleRate: 1, samplingMethod: 1 },
                    270206870: { sampleRate: 1, samplingMethod: 1 },
                    270207098: { sampleRate: 1, samplingMethod: 1 },
                    270207136: { sampleRate: 1, samplingMethod: 1 },
                    270207148: { sampleRate: 1, samplingMethod: 1 },
                    270207296: { sampleRate: 1, samplingMethod: 1 },
                    270207393: { sampleRate: 1, samplingMethod: 1 },
                    270207420: { sampleRate: 1, samplingMethod: 1 },
                    270207600: { sampleRate: 1, samplingMethod: 1 },
                    270207618: { sampleRate: 1, samplingMethod: 1 },
                    270207765: { sampleRate: 1, samplingMethod: 1 },
                    270207797: { sampleRate: 1, samplingMethod: 1 },
                    270207843: { sampleRate: 1, samplingMethod: 1 },
                    270207912: { sampleRate: 1, samplingMethod: 1 },
                    270207953: { sampleRate: 1, samplingMethod: 1 },
                    270208007: { sampleRate: 1, samplingMethod: 1 },
                    270208148: { sampleRate: 1, samplingMethod: 1 },
                    270208178: { sampleRate: 1, samplingMethod: 1 },
                    270208265: { sampleRate: 1, samplingMethod: 1 },
                    270208269: { sampleRate: 1, samplingMethod: 1 },
                    270208286: { sampleRate: 1, samplingMethod: 1 },
                    270208333: { sampleRate: 1, samplingMethod: 1 },
                    270208406: { sampleRate: 1, samplingMethod: 1 },
                    270208527: { sampleRate: 1, samplingMethod: 1 },
                    270208656: { sampleRate: 1, samplingMethod: 1 },
                    270208708: { sampleRate: 1, samplingMethod: 1 },
                    270208826: { sampleRate: 1, samplingMethod: 1 },
                    270208920: { sampleRate: 1, samplingMethod: 1 },
                    270208970: { sampleRate: 1, samplingMethod: 1 },
                    270209003: { sampleRate: 1, samplingMethod: 1 },
                    270209052: { sampleRate: 1, samplingMethod: 1 },
                    270209091: { sampleRate: 1, samplingMethod: 1 },
                    270209102: { sampleRate: 1, samplingMethod: 1 },
                    270209148: { sampleRate: 1, samplingMethod: 1 },
                    270209262: { sampleRate: 1, samplingMethod: 1 },
                    270209274: { sampleRate: 1, samplingMethod: 1 },
                    270209329: { sampleRate: 1, samplingMethod: 1 },
                    270209402: { sampleRate: 1, samplingMethod: 1 },
                    270209445: { sampleRate: 1, samplingMethod: 1 },
                    270209519: { sampleRate: 1, samplingMethod: 1 },
                    270209660: { sampleRate: 1, samplingMethod: 1 },
                    270209661: { sampleRate: 1, samplingMethod: 1 },
                    270209760: { sampleRate: 1, samplingMethod: 1 },
                    270209775: { sampleRate: 1, samplingMethod: 1 },
                    270209815: { sampleRate: 1, samplingMethod: 1 },
                    270209843: { sampleRate: 1, samplingMethod: 1 },
                    270209902: { sampleRate: 1, samplingMethod: 1 },
                    270209991: { sampleRate: 1, samplingMethod: 1 },
                    270210074: { sampleRate: 1, samplingMethod: 1 },
                    270210163: { sampleRate: 1, samplingMethod: 1 },
                    270210164: { sampleRate: 1, samplingMethod: 1 },
                    270210188: { sampleRate: 1, samplingMethod: 1 },
                    270210235: { sampleRate: 1, samplingMethod: 1 },
                    270210265: { sampleRate: 1, samplingMethod: 1 },
                    270210288: { sampleRate: 1, samplingMethod: 1 },
                    270210332: { sampleRate: 1, samplingMethod: 1 },
                    270210419: { sampleRate: 1, samplingMethod: 1 },
                    270210471: { sampleRate: 1, samplingMethod: 1 },
                    270210475: { sampleRate: 1, samplingMethod: 1 },
                    270210517: { sampleRate: 1, samplingMethod: 1 },
                    270210707: { sampleRate: 1, samplingMethod: 1 },
                    270210724: { sampleRate: 1, samplingMethod: 1 },
                    270210806: { sampleRate: 1, samplingMethod: 1 },
                    270210841: { sampleRate: 1, samplingMethod: 1 },
                    270210869: { sampleRate: 1, samplingMethod: 1 },
                    270210979: { sampleRate: 1, samplingMethod: 1 },
                    270211090: { sampleRate: 1, samplingMethod: 1 },
                    270211138: { sampleRate: 1, samplingMethod: 1 },
                    270211171: { sampleRate: 1, samplingMethod: 1 },
                    270211202: { sampleRate: 1, samplingMethod: 1 },
                    270211218: { sampleRate: 1, samplingMethod: 1 },
                    270211281: { sampleRate: 1, samplingMethod: 1 },
                    270211332: { sampleRate: 1, samplingMethod: 1 },
                    270211335: { sampleRate: 1, samplingMethod: 1 },
                    270211347: { sampleRate: 1, samplingMethod: 1 },
                    270211419: { sampleRate: 1, samplingMethod: 1 },
                    270211435: { sampleRate: 1, samplingMethod: 1 },
                    270211506: { sampleRate: 1, samplingMethod: 1 },
                    270211636: { sampleRate: 1, samplingMethod: 1 },
                    270211692: { sampleRate: 1, samplingMethod: 1 },
                    270211722: { sampleRate: 1, samplingMethod: 1 },
                    270211726: { sampleRate: 1, samplingMethod: 1 },
                    270211728: { sampleRate: 1, samplingMethod: 1 },
                    270211753: { sampleRate: 1, samplingMethod: 1 },
                    270211772: { sampleRate: 1, samplingMethod: 1 },
                    270211786: { sampleRate: 1, samplingMethod: 1 },
                    270211803: { sampleRate: 1, samplingMethod: 1 },
                    270211869: { sampleRate: 1, samplingMethod: 1 },
                    270211949: { sampleRate: 1, samplingMethod: 1 },
                    270212138: { sampleRate: 1, samplingMethod: 1 },
                    270212216: { sampleRate: 1, samplingMethod: 1 },
                    270212219: { sampleRate: 1, samplingMethod: 1 },
                    270212238: { sampleRate: 1, samplingMethod: 1 },
                    270212273: { sampleRate: 1, samplingMethod: 1 },
                    270212277: { sampleRate: 1, samplingMethod: 1 },
                    270212380: { sampleRate: 1, samplingMethod: 1 },
                    270212441: { sampleRate: 1, samplingMethod: 1 },
                    270212554: { sampleRate: 1, samplingMethod: 1 },
                    270212656: { sampleRate: 1, samplingMethod: 1 },
                    270212671: { sampleRate: 1, samplingMethod: 1 },
                    270212696: { sampleRate: 1, samplingMethod: 1 },
                    270212843: { sampleRate: 1, samplingMethod: 1 },
                    270212857: { sampleRate: 1, samplingMethod: 1 },
                    270212893: { sampleRate: 1, samplingMethod: 1 },
                    270212956: { sampleRate: 1, samplingMethod: 1 },
                    270213015: { sampleRate: 1, samplingMethod: 1 },
                    270213108: { sampleRate: 1, samplingMethod: 1 },
                    270213135: { sampleRate: 1, samplingMethod: 1 },
                    270213161: { sampleRate: 1, samplingMethod: 1 },
                    270213183: { sampleRate: 1, samplingMethod: 1 },
                    270213250: { sampleRate: 1, samplingMethod: 1 },
                    270213359: { sampleRate: 1, samplingMethod: 1 },
                    270213374: { sampleRate: 1, samplingMethod: 1 },
                    270213486: { sampleRate: 1, samplingMethod: 1 },
                    270213512: { sampleRate: 1, samplingMethod: 1 },
                    270213538: { sampleRate: 1, samplingMethod: 1 },
                    270213572: { sampleRate: 1, samplingMethod: 1 },
                    270213649: { sampleRate: 1, samplingMethod: 1 },
                    270213707: { sampleRate: 1, samplingMethod: 1 },
                    270213723: { sampleRate: 1, samplingMethod: 1 },
                    270213749: { sampleRate: 1, samplingMethod: 1 },
                    270213786: { sampleRate: 1, samplingMethod: 1 },
                    270214027: { sampleRate: 1, samplingMethod: 1 },
                    270214035: { sampleRate: 1, samplingMethod: 1 },
                    270214052: { sampleRate: 1, samplingMethod: 1 },
                    270214104: { sampleRate: 1, samplingMethod: 1 },
                    270214189: { sampleRate: 1, samplingMethod: 1 },
                    270214320: { sampleRate: 1, samplingMethod: 1 },
                    270214400: { sampleRate: 1, samplingMethod: 1 },
                    270214409: { sampleRate: 1, samplingMethod: 1 },
                    270214459: { sampleRate: 1, samplingMethod: 1 },
                    270214580: { sampleRate: 1, samplingMethod: 1 },
                    270214602: { sampleRate: 1, samplingMethod: 1 },
                    270214612: { sampleRate: 1, samplingMethod: 1 },
                    270214705: { sampleRate: 1, samplingMethod: 1 },
                    270214707: { sampleRate: 1, samplingMethod: 1 },
                    270214719: { sampleRate: 1, samplingMethod: 1 },
                    270214731: { sampleRate: 1, samplingMethod: 1 },
                    270214784: { sampleRate: 1, samplingMethod: 1 },
                    270214832: { sampleRate: 1, samplingMethod: 1 },
                    270214973: { sampleRate: 1, samplingMethod: 1 },
                    270214989: { sampleRate: 1, samplingMethod: 1 },
                    270215065: { sampleRate: 1, samplingMethod: 1 },
                    270215070: { sampleRate: 1, samplingMethod: 1 },
                    270215101: { sampleRate: 1, samplingMethod: 1 },
                    270215116: { sampleRate: 1, samplingMethod: 1 },
                    270215140: { sampleRate: 1, samplingMethod: 1 },
                    270215224: { sampleRate: 1, samplingMethod: 1 },
                    270215230: { sampleRate: 1, samplingMethod: 1 },
                    270215347: { sampleRate: 1, samplingMethod: 1 },
                    270215397: { sampleRate: 1, samplingMethod: 1 },
                    270215429: { sampleRate: 1, samplingMethod: 1 },
                    270215542: { sampleRate: 1, samplingMethod: 1 },
                    270215574: { sampleRate: 1, samplingMethod: 1 },
                    270215690: { sampleRate: 1, samplingMethod: 1 },
                    270215709: { sampleRate: 1, samplingMethod: 1 },
                    270215742: { sampleRate: 1, samplingMethod: 1 },
                    270215772: { sampleRate: 1, samplingMethod: 1 },
                    270215778: { sampleRate: 1, samplingMethod: 1 },
                    270215792: { sampleRate: 1, samplingMethod: 1 },
                    270215819: { sampleRate: 1, samplingMethod: 1 },
                    270215979: { sampleRate: 1, samplingMethod: 1 },
                    270216000: { sampleRate: 1, samplingMethod: 1 },
                    270216093: { sampleRate: 1, samplingMethod: 1 },
                    270216139: { sampleRate: 1, samplingMethod: 1 },
                    270216182: { sampleRate: 1, samplingMethod: 1 },
                    270216195: { sampleRate: 1, samplingMethod: 1 },
                    270216200: { sampleRate: 1, samplingMethod: 1 },
                    270216416: { sampleRate: 1, samplingMethod: 1 },
                    270216423: { sampleRate: 1, samplingMethod: 1 },
                    270216430: { sampleRate: 1, samplingMethod: 1 },
                    270216450: { sampleRate: 1, samplingMethod: 1 },
                    270216713: { sampleRate: 1, samplingMethod: 1 },
                    270216791: { sampleRate: 1, samplingMethod: 1 },
                    270216793: { sampleRate: 1, samplingMethod: 1 },
                    270216818: { sampleRate: 1, samplingMethod: 1 },
                    270216896: { sampleRate: 1, samplingMethod: 1 },
                    270216928: { sampleRate: 1, samplingMethod: 1 },
                    270216941: { sampleRate: 1, samplingMethod: 1 },
                    270217026: { sampleRate: 1, samplingMethod: 1 },
                    270217057: { sampleRate: 1, samplingMethod: 1 },
                    270217063: { sampleRate: 1, samplingMethod: 1 },
                    270217068: { sampleRate: 1, samplingMethod: 1 },
                    270217210: { sampleRate: 1, samplingMethod: 1 },
                    270217236: { sampleRate: 1, samplingMethod: 1 },
                    270217256: { sampleRate: 1, samplingMethod: 1 },
                    270217283: { sampleRate: 1, samplingMethod: 1 },
                    270217313: { sampleRate: 1, samplingMethod: 1 },
                    270217327: { sampleRate: 1, samplingMethod: 1 },
                    270217401: { sampleRate: 1, samplingMethod: 1 },
                    270217492: { sampleRate: 1, samplingMethod: 1 },
                    270217539: { sampleRate: 1, samplingMethod: 1 },
                    270217616: { sampleRate: 1, samplingMethod: 1 },
                    270217631: { sampleRate: 1, samplingMethod: 1 },
                    270217722: { sampleRate: 1, samplingMethod: 1 },
                    270217749: { sampleRate: 1, samplingMethod: 1 },
                    270217779: { sampleRate: 1, samplingMethod: 1 },
                    270217787: { sampleRate: 1, samplingMethod: 1 },
                    270217798: { sampleRate: 1, samplingMethod: 1 },
                    270217820: { sampleRate: 1, samplingMethod: 1 },
                    270217862: { sampleRate: 1, samplingMethod: 1 },
                    270217878: { sampleRate: 1, samplingMethod: 1 },
                    270217900: { sampleRate: 1, samplingMethod: 1 },
                    270217954: { sampleRate: 1, samplingMethod: 1 },
                    270218007: { sampleRate: 1, samplingMethod: 1 },
                    270218053: { sampleRate: 1, samplingMethod: 1 },
                    270218090: { sampleRate: 1, samplingMethod: 1 },
                    270218102: { sampleRate: 1, samplingMethod: 1 },
                    270218152: { sampleRate: 1, samplingMethod: 1 },
                    270218163: { sampleRate: 1, samplingMethod: 1 },
                    270218166: { sampleRate: 1, samplingMethod: 1 },
                    270218168: { sampleRate: 1, samplingMethod: 1 },
                    270218204: { sampleRate: 1, samplingMethod: 1 },
                    270218207: { sampleRate: 1, samplingMethod: 1 },
                    270218271: { sampleRate: 1, samplingMethod: 1 },
                    270218310: { sampleRate: 1, samplingMethod: 1 },
                    270218326: { sampleRate: 1, samplingMethod: 1 },
                    270218338: { sampleRate: 1, samplingMethod: 1 },
                    270218436: { sampleRate: 1, samplingMethod: 1 },
                    270218543: { sampleRate: 1, samplingMethod: 1 },
                    270218572: { sampleRate: 1, samplingMethod: 1 },
                    270218586: { sampleRate: 1, samplingMethod: 1 },
                    270218605: { sampleRate: 1, samplingMethod: 1 },
                    270218622: { sampleRate: 1, samplingMethod: 1 },
                    270218660: { sampleRate: 1, samplingMethod: 1 },
                    270218696: { sampleRate: 1, samplingMethod: 1 },
                    270218731: { sampleRate: 1, samplingMethod: 1 },
                    270218991: { sampleRate: 1, samplingMethod: 1 },
                    270219017: { sampleRate: 1, samplingMethod: 1 },
                    270219019: { sampleRate: 1, samplingMethod: 1 },
                    270219051: { sampleRate: 1, samplingMethod: 1 },
                    270219139: { sampleRate: 1, samplingMethod: 1 },
                    270219169: { sampleRate: 1, samplingMethod: 1 },
                    270219188: { sampleRate: 1, samplingMethod: 1 },
                    270219248: { sampleRate: 1, samplingMethod: 1 },
                    270219249: { sampleRate: 1, samplingMethod: 1 },
                    270219291: { sampleRate: 1, samplingMethod: 1 },
                    270219303: { sampleRate: 1, samplingMethod: 1 },
                    270219320: { sampleRate: 1, samplingMethod: 1 },
                    270219404: { sampleRate: 1, samplingMethod: 1 },
                    270219449: { sampleRate: 1, samplingMethod: 1 },
                    270219483: { sampleRate: 1, samplingMethod: 1 },
                    270219531: { sampleRate: 1, samplingMethod: 1 },
                    270219562: { sampleRate: 1, samplingMethod: 1 },
                    270219686: { sampleRate: 1, samplingMethod: 1 },
                    270219870: { sampleRate: 1, samplingMethod: 1 },
                    270219914: { sampleRate: 1, samplingMethod: 1 },
                    270219926: { sampleRate: 1, samplingMethod: 1 },
                    270220001: { sampleRate: 1, samplingMethod: 1 },
                    270220072: { sampleRate: 1, samplingMethod: 1 },
                    270220074: { sampleRate: 1, samplingMethod: 1 },
                    270220108: { sampleRate: 1, samplingMethod: 1 },
                    270220129: { sampleRate: 1, samplingMethod: 1 },
                    270220209: { sampleRate: 1, samplingMethod: 1 },
                    270220261: { sampleRate: 1, samplingMethod: 1 },
                    270220262: { sampleRate: 1, samplingMethod: 1 },
                    270220333: { sampleRate: 1, samplingMethod: 1 },
                    270220347: { sampleRate: 1, samplingMethod: 1 },
                    270220481: { sampleRate: 1, samplingMethod: 1 },
                    270220499: { sampleRate: 1, samplingMethod: 1 },
                    270220550: { sampleRate: 1, samplingMethod: 1 },
                    270220595: { sampleRate: 1, samplingMethod: 1 },
                    270220640: { sampleRate: 1, samplingMethod: 1 },
                    270220731: { sampleRate: 1, samplingMethod: 1 },
                    270220850: { sampleRate: 1, samplingMethod: 1 },
                    270220865: { sampleRate: 1, samplingMethod: 1 },
                    270220879: { sampleRate: 1, samplingMethod: 1 },
                    270220889: { sampleRate: 1, samplingMethod: 1 },
                    270220997: { sampleRate: 1, samplingMethod: 1 },
                    270221024: { sampleRate: 1, samplingMethod: 1 },
                    270221065: { sampleRate: 1, samplingMethod: 1 },
                    270221124: { sampleRate: 1, samplingMethod: 1 },
                    270221133: { sampleRate: 1, samplingMethod: 1 },
                    270221175: { sampleRate: 1, samplingMethod: 1 },
                    270221177: { sampleRate: 1, samplingMethod: 1 },
                    270224526: { sampleRate: 1, samplingMethod: 1 },
                    270228232: { sampleRate: 1, samplingMethod: 1 },
                    270230590: { sampleRate: 1, samplingMethod: 1 },
                    270230822: { sampleRate: 1, samplingMethod: 1 },
                    270232559: { sampleRate: 1, samplingMethod: 1 },
                    270233440: { sampleRate: 1, samplingMethod: 1 },
                    273481729: { sampleRate: 1, samplingMethod: 1 },
                    295437333: { sampleRate: 1, samplingMethod: 1 },
                    295437392: { sampleRate: 1, samplingMethod: 1 },
                    295437585: { sampleRate: 1, samplingMethod: 1 },
                    295437809: { sampleRate: 1, samplingMethod: 1 },
                    295437849: { sampleRate: 1, samplingMethod: 1 },
                    295438195: { sampleRate: 1, samplingMethod: 1 },
                    295438980: { sampleRate: 1, samplingMethod: 1 },
                    295439218: { sampleRate: 1, samplingMethod: 1 },
                    295439505: { sampleRate: 1, samplingMethod: 1 },
                    295439522: { sampleRate: 1, samplingMethod: 1 },
                    295439982: { sampleRate: 1, samplingMethod: 1 },
                    295440238: { sampleRate: 1, samplingMethod: 1 },
                    295440518: { sampleRate: 1, samplingMethod: 1 },
                    295440638: { sampleRate: 1, samplingMethod: 1 },
                    295441099: { sampleRate: 1, samplingMethod: 1 },
                    295441104: { sampleRate: 1, samplingMethod: 1 },
                    295441165: { sampleRate: 1, samplingMethod: 1 },
                    295441218: { sampleRate: 1, samplingMethod: 1 },
                    295441453: { sampleRate: 1, samplingMethod: 1 },
                    295442359: { sampleRate: 1, samplingMethod: 1 },
                    295442443: { sampleRate: 1, samplingMethod: 1 },
                    295442568: { sampleRate: 1, samplingMethod: 1 },
                    295442707: { sampleRate: 1, samplingMethod: 1 },
                    295443394: { sampleRate: 1, samplingMethod: 1 },
                    295443659: { sampleRate: 1, samplingMethod: 1 },
                    295444052: { sampleRate: 1, samplingMethod: 1 },
                    295444127: { sampleRate: 1, samplingMethod: 1 },
                    295444428: { sampleRate: 1, samplingMethod: 1 },
                    295444872: { sampleRate: 1, samplingMethod: 1 },
                    295444992: { sampleRate: 1, samplingMethod: 1 },
                    295445259: { sampleRate: 1, samplingMethod: 1 },
                    295445408: { sampleRate: 1, samplingMethod: 1 },
                    295445507: { sampleRate: 1, samplingMethod: 1 },
                    295446230: { sampleRate: 1, samplingMethod: 1 },
                    295447305: { sampleRate: 1, samplingMethod: 1 },
                    295447411: { sampleRate: 1, samplingMethod: 1 },
                    295447532: { sampleRate: 1, samplingMethod: 1 },
                    295447763: { sampleRate: 1, samplingMethod: 1 },
                    295448628: { sampleRate: 1, samplingMethod: 1 },
                    295448870: { sampleRate: 1, samplingMethod: 1 },
                    295448939: { sampleRate: 1, samplingMethod: 1 },
                    295449023: { sampleRate: 1, samplingMethod: 1 },
                    295449229: { sampleRate: 1, samplingMethod: 1 },
                    295449938: { sampleRate: 1, samplingMethod: 1 },
                    295450853: { sampleRate: 1, samplingMethod: 1 },
                    295450962: { sampleRate: 1, samplingMethod: 1 },
                    295451974: { sampleRate: 1, samplingMethod: 1 },
                    295451977: { sampleRate: 1, samplingMethod: 1 },
                    295452084: { sampleRate: 1, samplingMethod: 1 },
                    295452498: { sampleRate: 1, samplingMethod: 1 },
                    295576223: { sampleRate: 1, samplingMethod: 1 },
                    298516481: { sampleRate: 10000, samplingMethod: 1 },
                    300429672: { sampleRate: 100, samplingMethod: 1 },
                    303370010: { sampleRate: 10000, samplingMethod: 1 },
                    303374119: { sampleRate: 10000, samplingMethod: 1 },
                    314255059: { sampleRate: 1, samplingMethod: 1 },
                    314255718: { sampleRate: 1, samplingMethod: 1 },
                    314255820: { sampleRate: 1, samplingMethod: 1 },
                    314256622: { sampleRate: 1, samplingMethod: 1 },
                    315555841: { sampleRate: 10000, samplingMethod: 1 },
                    316804045: { sampleRate: 1, samplingMethod: 1 },
                    316804194: { sampleRate: 1, samplingMethod: 1 },
                    316805991: { sampleRate: 1, samplingMethod: 1 },
                    316806070: { sampleRate: 1, samplingMethod: 1 },
                    316806359: { sampleRate: 1, samplingMethod: 1 },
                    316806850: { sampleRate: 1, samplingMethod: 1 },
                    316812351: { sampleRate: 1, samplingMethod: 1 },
                    316812736: { sampleRate: 1, samplingMethod: 1 },
                    316814957: { sampleRate: 1, samplingMethod: 1 },
                    316816299: { sampleRate: 1, samplingMethod: 1 },
                    318701569: { sampleRate: 1, samplingMethod: 1 },
                    318707653: { sampleRate: 1, samplingMethod: 1 },
                    318710863: { sampleRate: 1, samplingMethod: 1 },
                    318716922: { sampleRate: 1, samplingMethod: 1 },
                    320809182: { sampleRate: 1, samplingMethod: 1 },
                    333185025: { sampleRate: 10000, samplingMethod: 1 },
                    333185026: { sampleRate: 10000, samplingMethod: 1 },
                    336201917: { sampleRate: 1, samplingMethod: 1 },
                    336205322: { sampleRate: 1, samplingMethod: 1 },
                    336207527: { sampleRate: 1, samplingMethod: 1 },
                    336212887: { sampleRate: 1, samplingMethod: 1 },
                    336213902: { sampleRate: 1, samplingMethod: 1 },
                    336215495: { sampleRate: 1, samplingMethod: 1 },
                    339818860: { sampleRate: 1, samplingMethod: 1 },
                    341835776: { sampleRate: 1, samplingMethod: 1 },
                    341835777: { sampleRate: 1, samplingMethod: 1 },
                    341847353: { sampleRate: 1, samplingMethod: 1 },
                    341848280: { sampleRate: 1, samplingMethod: 1 },
                    348132017: { sampleRate: 1, samplingMethod: 1 },
                    351152344: { sampleRate: 10000, samplingMethod: 1 },
                    351539711: { sampleRate: 1, samplingMethod: 1 },
                    351540102: { sampleRate: 1, samplingMethod: 1 },
                    351540413: { sampleRate: 1, samplingMethod: 1 },
                    351541595: { sampleRate: 1, samplingMethod: 1 },
                    351542287: { sampleRate: 1, samplingMethod: 1 },
                    351543947: { sampleRate: 1, samplingMethod: 1 },
                    351544664: { sampleRate: 1, samplingMethod: 1 },
                    351546487: { sampleRate: 1, samplingMethod: 1 },
                    351546651: { sampleRate: 1, samplingMethod: 1 },
                    351548391: { sampleRate: 1, samplingMethod: 1 },
                    351548854: { sampleRate: 1, samplingMethod: 1 },
                    368647392: { sampleRate: 1, samplingMethod: 1 },
                    373295708: { sampleRate: 1000, samplingMethod: 1 },
                    373298325: { sampleRate: 1000, samplingMethod: 1 },
                    373308219: { sampleRate: 1000, samplingMethod: 1 },
                    374672177: { sampleRate: 1, samplingMethod: 1 },
                    374678380: { sampleRate: 1, samplingMethod: 1 },
                    377357808: { sampleRate: 1, samplingMethod: 1 },
                    377358784: { sampleRate: 1, samplingMethod: 1 },
                    377359040: { sampleRate: 1, samplingMethod: 1 },
                    377359367: { sampleRate: 1, samplingMethod: 1 },
                    377359743: { sampleRate: 1, samplingMethod: 1 },
                    377360139: { sampleRate: 1, samplingMethod: 1 },
                    377360510: { sampleRate: 1, samplingMethod: 1 },
                    377361415: { sampleRate: 1, samplingMethod: 1 },
                    377362087: { sampleRate: 5, samplingMethod: 1 },
                    377362266: { sampleRate: 1, samplingMethod: 1 },
                    377363484: { sampleRate: 1, samplingMethod: 1 },
                    377364678: { sampleRate: 1, samplingMethod: 1 },
                    377364955: { sampleRate: 1, samplingMethod: 1 },
                    377364984: { sampleRate: 1, samplingMethod: 1 },
                    377367558: { sampleRate: 1, samplingMethod: 1 },
                    377367763: { sampleRate: 5, samplingMethod: 1 },
                    377369626: { sampleRate: 1, samplingMethod: 1 },
                    377370025: { sampleRate: 1, samplingMethod: 1 },
                    377370051: { sampleRate: 1, samplingMethod: 1 },
                    377370203: { sampleRate: 1, samplingMethod: 1 },
                    377370433: { sampleRate: 1, samplingMethod: 1 },
                    377371065: { sampleRate: 1, samplingMethod: 1 },
                    377371646: { sampleRate: 1, samplingMethod: 1 },
                    377817277: { sampleRate: 1, samplingMethod: 1 },
                    377828343: { sampleRate: 1, samplingMethod: 1 },
                    380895233: { sampleRate: 1, samplingMethod: 1 },
                    382140417: { sampleRate: 100, samplingMethod: 1 },
                    382140418: { sampleRate: 100, samplingMethod: 1 },
                    382144536: { sampleRate: 10000, samplingMethod: 1 },
                    382151174: { sampleRate: 10000, samplingMethod: 1 },
                    382468096: { sampleRate: 1, samplingMethod: 1 },
                    382468097: { sampleRate: 1, samplingMethod: 1 },
                    382468098: { sampleRate: 1, samplingMethod: 1 },
                    382468099: { sampleRate: 1, samplingMethod: 1 },
                    382482261: { sampleRate: 1, samplingMethod: 1 },
                    390269683: { sampleRate: 1, samplingMethod: 1 },
                    390272426: { sampleRate: 1, samplingMethod: 1 },
                    390275150: { sampleRate: 1, samplingMethod: 1 },
                    390276342: { sampleRate: 10000, samplingMethod: 1 },
                    390279467: { sampleRate: 10000, samplingMethod: 1 },
                    390280883: { sampleRate: 10000, samplingMethod: 1 },
                    390281220: { sampleRate: 10000, samplingMethod: 1 },
                    390281974: { sampleRate: 10000, samplingMethod: 1 },
                    392106711: { sampleRate: 1, samplingMethod: 1 },
                    392107390: { sampleRate: 1, samplingMethod: 1 },
                    392115811: { sampleRate: 1, samplingMethod: 1 },
                    392966766: { sampleRate: 10000, samplingMethod: 1 },
                    394788865: { sampleRate: 10000, samplingMethod: 1 },
                    398592899: { sampleRate: 1, samplingMethod: 1 },
                    398601326: { sampleRate: 1, samplingMethod: 1 },
                    398605840: { sampleRate: 1, samplingMethod: 1 },
                    399182973: { sampleRate: 1, samplingMethod: 1 },
                    399185036: { sampleRate: 1, samplingMethod: 1 },
                    399185894: { sampleRate: 1, samplingMethod: 1 },
                    399185985: { sampleRate: 1, samplingMethod: 1 },
                    399186794: { sampleRate: 1, samplingMethod: 1 },
                    399187008: { sampleRate: 1, samplingMethod: 1 },
                    399188160: { sampleRate: 1, samplingMethod: 1 },
                    399190027: { sampleRate: 1, samplingMethod: 1 },
                    399191513: { sampleRate: 1, samplingMethod: 1 },
                    399191697: { sampleRate: 1, samplingMethod: 1 },
                    399191926: { sampleRate: 1, samplingMethod: 1 },
                    399192359: { sampleRate: 1, samplingMethod: 1 },
                    399193700: { sampleRate: 1, samplingMethod: 1 },
                    399194693: { sampleRate: 1, samplingMethod: 1 },
                    399194700: { sampleRate: 1, samplingMethod: 1 },
                    399194972: { sampleRate: 1, samplingMethod: 1 },
                    399195628: { sampleRate: 1, samplingMethod: 1 },
                    403271918: { sampleRate: 1, samplingMethod: 1 },
                    404622304: { sampleRate: 1, samplingMethod: 1 },
                    404626521: { sampleRate: 1, samplingMethod: 1 },
                    404626709: { sampleRate: 1, samplingMethod: 1 },
                    404630839: { sampleRate: 1, samplingMethod: 1 },
                    404631825: { sampleRate: 1, samplingMethod: 1 },
                    404632630: { sampleRate: 1, samplingMethod: 1 },
                    406978561: { sampleRate: 10000, samplingMethod: 1 },
                    406980340: { sampleRate: 10000, samplingMethod: 1 },
                    406983321: { sampleRate: 10000, samplingMethod: 1 },
                    409677744: { sampleRate: 1, samplingMethod: 1 },
                    416876920: { sampleRate: 1, samplingMethod: 1 },
                    416877160: { sampleRate: 1, samplingMethod: 1 },
                    416880118: { sampleRate: 1, samplingMethod: 1 },
                    416880668: { sampleRate: 1, samplingMethod: 1 },
                    416883138: { sampleRate: 1, samplingMethod: 1 },
                    416884823: { sampleRate: 1, samplingMethod: 1 },
                    416888659: { sampleRate: 1, samplingMethod: 1 },
                    416890732: { sampleRate: 1, samplingMethod: 1 },
                    426382631: { sampleRate: 1, samplingMethod: 1 },
                    426385027: { sampleRate: 1, samplingMethod: 1 },
                    426389483: { sampleRate: 1, samplingMethod: 1 },
                    430374913: { sampleRate: 1, samplingMethod: 1 },
                    430378067: { sampleRate: 1, samplingMethod: 1 },
                    430383451: { sampleRate: 1, samplingMethod: 1 },
                    430386496: { sampleRate: 1, samplingMethod: 1 },
                    430390878: { sampleRate: 1, samplingMethod: 1 },
                    430391177: { sampleRate: 1, samplingMethod: 1 },
                    431626192: { sampleRate: 1, samplingMethod: 1 },
                    431626709: { sampleRate: 1, samplingMethod: 1 },
                    431630887: { sampleRate: 10, samplingMethod: 1 },
                    432676234: { sampleRate: 1, samplingMethod: 1 },
                    432676659: { sampleRate: 1, samplingMethod: 1 },
                    432677504: { sampleRate: 1, samplingMethod: 1 },
                    432679263: { sampleRate: 1, samplingMethod: 1 },
                    432682775: { sampleRate: 1, samplingMethod: 1 },
                    432683819: { sampleRate: 1, samplingMethod: 1 },
                    435684623: { sampleRate: 100, samplingMethod: 1 },
                    435684729: { sampleRate: 100, samplingMethod: 1 },
                    435684741: { sampleRate: 100, samplingMethod: 1 },
                    435684980: { sampleRate: 100, samplingMethod: 1 },
                    435685229: { sampleRate: 100, samplingMethod: 1 },
                    435685848: { sampleRate: 100, samplingMethod: 1 },
                    435685921: { sampleRate: 100, samplingMethod: 1 },
                    435686268: { sampleRate: 100, samplingMethod: 1 },
                    435687015: { sampleRate: 100, samplingMethod: 1 },
                    435687513: { sampleRate: 100, samplingMethod: 1 },
                    435687530: { sampleRate: 100, samplingMethod: 1 },
                    435687537: { sampleRate: 100, samplingMethod: 1 },
                    435687801: { sampleRate: 100, samplingMethod: 1 },
                    435688416: { sampleRate: 100, samplingMethod: 1 },
                    435688603: { sampleRate: 100, samplingMethod: 1 },
                    435688620: { sampleRate: 100, samplingMethod: 1 },
                    435689044: { sampleRate: 100, samplingMethod: 1 },
                    435689085: { sampleRate: 100, samplingMethod: 1 },
                    435689154: { sampleRate: 100, samplingMethod: 1 },
                    435689259: { sampleRate: 100, samplingMethod: 1 },
                    435689828: { sampleRate: 100, samplingMethod: 1 },
                    435689899: { sampleRate: 100, samplingMethod: 1 },
                    435690518: { sampleRate: 100, samplingMethod: 1 },
                    435691376: { sampleRate: 100, samplingMethod: 1 },
                    435691707: { sampleRate: 100, samplingMethod: 1 },
                    435691902: { sampleRate: 100, samplingMethod: 1 },
                    435691955: { sampleRate: 100, samplingMethod: 1 },
                    435692102: { sampleRate: 100, samplingMethod: 1 },
                    435692121: { sampleRate: 100, samplingMethod: 1 },
                    435692864: { sampleRate: 100, samplingMethod: 1 },
                    435692975: { sampleRate: 100, samplingMethod: 1 },
                    435693002: { sampleRate: 100, samplingMethod: 1 },
                    435693404: { sampleRate: 100, samplingMethod: 1 },
                    435693600: { sampleRate: 100, samplingMethod: 1 },
                    435693854: { sampleRate: 100, samplingMethod: 1 },
                    435694384: { sampleRate: 100, samplingMethod: 1 },
                    435694627: { sampleRate: 100, samplingMethod: 1 },
                    435694927: { sampleRate: 100, samplingMethod: 1 },
                    435694934: { sampleRate: 100, samplingMethod: 1 },
                    435696304: { sampleRate: 100, samplingMethod: 1 },
                    435696437: { sampleRate: 100, samplingMethod: 1 },
                    435696473: { sampleRate: 1, samplingMethod: 1 },
                    435696804: { sampleRate: 100, samplingMethod: 1 },
                    435696833: { sampleRate: 100, samplingMethod: 1 },
                    435697072: { sampleRate: 100, samplingMethod: 1 },
                    435697446: { sampleRate: 100, samplingMethod: 1 },
                    435697886: { sampleRate: 100, samplingMethod: 1 },
                    435698374: { sampleRate: 100, samplingMethod: 1 },
                    435698646: { sampleRate: 100, samplingMethod: 1 },
                    435699123: { sampleRate: 100, samplingMethod: 1 },
                    435699279: { sampleRate: 100, samplingMethod: 1 },
                    440275195: { sampleRate: 1, samplingMethod: 1 },
                    444858369: { sampleRate: 1, samplingMethod: 1 },
                    445974335: { sampleRate: 1, samplingMethod: 1 },
                    445975283: { sampleRate: 1, samplingMethod: 1 },
                    445975868: { sampleRate: 1, samplingMethod: 1 },
                    445975872: { sampleRate: 1, samplingMethod: 1 },
                    445976139: { sampleRate: 1, samplingMethod: 1 },
                    445976232: { sampleRate: 1, samplingMethod: 1 },
                    445977086: { sampleRate: 1, samplingMethod: 1 },
                    445978739: { sampleRate: 1, samplingMethod: 1 },
                    445979308: { sampleRate: 1, samplingMethod: 1 },
                    445981478: { sampleRate: 1, samplingMethod: 1 },
                    445981521: { sampleRate: 1, samplingMethod: 1 },
                    445981651: { sampleRate: 1, samplingMethod: 1 },
                    445981782: { sampleRate: 1, samplingMethod: 1 },
                    445982501: { sampleRate: 1, samplingMethod: 1 },
                    445982831: { sampleRate: 1, samplingMethod: 1 },
                    445983197: { sampleRate: 1, samplingMethod: 1 },
                    445983323: { sampleRate: 1, samplingMethod: 1 },
                    445983810: { sampleRate: 1, samplingMethod: 1 },
                    445983882: { sampleRate: 1, samplingMethod: 1 },
                    445984313: { sampleRate: 1, samplingMethod: 1 },
                    445984511: { sampleRate: 1, samplingMethod: 1 },
                    445984703: { sampleRate: 1, samplingMethod: 1 },
                    445984855: { sampleRate: 1, samplingMethod: 1 },
                    445985856: { sampleRate: 1, samplingMethod: 1 },
                    445986133: { sampleRate: 1, samplingMethod: 1 },
                    445986387: { sampleRate: 1, samplingMethod: 1 },
                    445987236: { sampleRate: 1, samplingMethod: 1 },
                    445988450: { sampleRate: 1, samplingMethod: 1 },
                    445988500: { sampleRate: 1, samplingMethod: 1 },
                    445988600: { sampleRate: 1, samplingMethod: 1 },
                    448137847: { sampleRate: 1, samplingMethod: 1 },
                    448137862: { sampleRate: 1, samplingMethod: 1 },
                    459277372: { sampleRate: 1, samplingMethod: 1 },
                    459279083: { sampleRate: 1, samplingMethod: 1 },
                    459280844: { sampleRate: 1, samplingMethod: 1 },
                    459283386: { sampleRate: 1, samplingMethod: 1 },
                    459283488: { sampleRate: 1, samplingMethod: 1 },
                    459285749: { sampleRate: 1, samplingMethod: 1 },
                    459288505: { sampleRate: 1, samplingMethod: 1 },
                    459291249: { sampleRate: 1, samplingMethod: 1 },
                    459292159: { sampleRate: 1, samplingMethod: 1 },
                    459292291: { sampleRate: 1, samplingMethod: 1 },
                    460468818: { sampleRate: 1, samplingMethod: 1 },
                    463013863: { sampleRate: 10, samplingMethod: 1 },
                    463014635: { sampleRate: 1, samplingMethod: 1 },
                    463015185: { sampleRate: 10, samplingMethod: 1 },
                    463015362: { sampleRate: 1, samplingMethod: 1 },
                    463015568: { sampleRate: 1, samplingMethod: 1 },
                    463016139: { sampleRate: 1, samplingMethod: 1 },
                    463016165: { sampleRate: 1, samplingMethod: 1 },
                    463016390: { sampleRate: 1, samplingMethod: 1 },
                    463016713: { sampleRate: 10, samplingMethod: 1 },
                    463016767: { sampleRate: 1, samplingMethod: 1 },
                    463017657: { sampleRate: 1, samplingMethod: 1 },
                    463017909: { sampleRate: 1, samplingMethod: 1 },
                    463018037: { sampleRate: 1, samplingMethod: 1 },
                    463018218: { sampleRate: 1, samplingMethod: 1 },
                    463018233: { sampleRate: 10, samplingMethod: 1 },
                    463018876: { sampleRate: 1, samplingMethod: 1 },
                    463018912: { sampleRate: 10, samplingMethod: 1 },
                    463018943: { sampleRate: 1, samplingMethod: 1 },
                    463019567: { sampleRate: 1, samplingMethod: 1 },
                    463019600: { sampleRate: 1, samplingMethod: 1 },
                    463019974: { sampleRate: 10, samplingMethod: 1 },
                    463020161: { sampleRate: 10, samplingMethod: 1 },
                    463020393: { sampleRate: 1, samplingMethod: 1 },
                    463020766: { sampleRate: 1, samplingMethod: 1 },
                    463021213: { sampleRate: 1, samplingMethod: 1 },
                    463021269: { sampleRate: 1, samplingMethod: 1 },
                    463021570: { sampleRate: 10, samplingMethod: 1 },
                    463021813: { sampleRate: 1, samplingMethod: 1 },
                    463022004: { sampleRate: 1, samplingMethod: 1 },
                    463022130: { sampleRate: 10, samplingMethod: 1 },
                    463022146: { sampleRate: 10, samplingMethod: 1 },
                    463022516: { sampleRate: 10, samplingMethod: 1 },
                    463022924: { sampleRate: 1, samplingMethod: 1 },
                    463023032: { sampleRate: 10, samplingMethod: 1 },
                    463023080: { sampleRate: 1, samplingMethod: 1 },
                    463023725: { sampleRate: 1, samplingMethod: 1 },
                    463024020: { sampleRate: 1, samplingMethod: 1 },
                    463024072: { sampleRate: 10, samplingMethod: 1 },
                    463024364: { sampleRate: 1, samplingMethod: 1 },
                    463024522: { sampleRate: 10, samplingMethod: 1 },
                    463024556: { sampleRate: 1, samplingMethod: 1 },
                    463024597: { sampleRate: 1, samplingMethod: 1 },
                    463025126: { sampleRate: 1, samplingMethod: 1 },
                    463025650: { sampleRate: 1, samplingMethod: 1 },
                    463025693: { sampleRate: 1, samplingMethod: 1 },
                    463026040: { sampleRate: 1, samplingMethod: 1 },
                    463026246: { sampleRate: 10, samplingMethod: 1 },
                    463027530: { sampleRate: 10, samplingMethod: 1 },
                    469633012: { sampleRate: 1, samplingMethod: 1 },
                    469637892: { sampleRate: 1, samplingMethod: 1 },
                    469638517: { sampleRate: 1, samplingMethod: 1 },
                    469639633: { sampleRate: 1, samplingMethod: 1 },
                    469641443: { sampleRate: 1, samplingMethod: 1 },
                    469643296: { sampleRate: 1, samplingMethod: 1 },
                    478093416: { sampleRate: 1, samplingMethod: 1 },
                    478093695: { sampleRate: 1, samplingMethod: 1 },
                    478347265: { sampleRate: 10000, samplingMethod: 1 },
                    480908390: { sampleRate: 10000, samplingMethod: 1 },
                    480910975: { sampleRate: 10000, samplingMethod: 1 },
                    480913460: { sampleRate: 10000, samplingMethod: 1 },
                    480914164: { sampleRate: 10000, samplingMethod: 1 },
                    480916396: { sampleRate: 10000, samplingMethod: 1 },
                    484841970: { sampleRate: 10000, samplingMethod: 1 },
                    484905239: { sampleRate: 10, samplingMethod: 1 },
                    491135209: { sampleRate: 1, samplingMethod: 1 },
                    491143074: { sampleRate: 1, samplingMethod: 1 },
                    508365154: { sampleRate: 1, samplingMethod: 1 },
                    508368187: { sampleRate: 1, samplingMethod: 1 },
                    508369126: { sampleRate: 1, samplingMethod: 1 },
                    508374554: { sampleRate: 1, samplingMethod: 1 },
                    516228586: { sampleRate: 1, samplingMethod: 1 },
                    516228710: { sampleRate: 1, samplingMethod: 1 },
                    516229001: { sampleRate: 1, samplingMethod: 1 },
                    516231801: { sampleRate: 1, samplingMethod: 1 },
                    516233522: { sampleRate: 1, samplingMethod: 1 },
                    516233736: { sampleRate: 1, samplingMethod: 1 },
                    516234127: { sampleRate: 1, samplingMethod: 1 },
                    516234250: { sampleRate: 1, samplingMethod: 1 },
                    516234458: { sampleRate: 1, samplingMethod: 1 },
                    516234851: { sampleRate: 1, samplingMethod: 1 },
                    516234913: { sampleRate: 1, samplingMethod: 1 },
                    516234920: { sampleRate: 1, samplingMethod: 1 },
                    516234962: { sampleRate: 1, samplingMethod: 1 },
                    516236532: { sampleRate: 1, samplingMethod: 1 },
                    516237107: { sampleRate: 1, samplingMethod: 1 },
                    516237754: { sampleRate: 1, samplingMethod: 1 },
                    516239376: { sampleRate: 1, samplingMethod: 1 },
                    516239513: { sampleRate: 1, samplingMethod: 1 },
                    516242024: { sampleRate: 1, samplingMethod: 1 },
                    517542031: { sampleRate: 1, samplingMethod: 1 },
                    517544033: { sampleRate: 1, samplingMethod: 1 },
                    517544500: { sampleRate: 1, samplingMethod: 1 },
                    517551506: { sampleRate: 1, samplingMethod: 1 },
                    520225911: { sampleRate: 1, samplingMethod: 3 },
                    520226562: { sampleRate: 1, samplingMethod: 3 },
                    520226803: { sampleRate: 1, samplingMethod: 3 },
                    520226859: { sampleRate: 1, samplingMethod: 3 },
                    520227779: { sampleRate: 1, samplingMethod: 3 },
                    520229252: { sampleRate: 10000, samplingMethod: 1 },
                    520231860: { sampleRate: 1, samplingMethod: 3 },
                    520231903: { sampleRate: 1, samplingMethod: 3 },
                    520233760: { sampleRate: 1, samplingMethod: 3 },
                    520234221: { sampleRate: 1, samplingMethod: 3 },
                    520234245: { sampleRate: 1, samplingMethod: 3 },
                    520234918: { sampleRate: 1, samplingMethod: 3 },
                    520235197: { sampleRate: 1, samplingMethod: 3 },
                    520236691: { sampleRate: 10000, samplingMethod: 1 },
                    520239363: { sampleRate: 1, samplingMethod: 3 },
                    520240619: { sampleRate: 10000, samplingMethod: 1 },
                    520240645: { sampleRate: 10000, samplingMethod: 1 },
                    526517510: { sampleRate: 1, samplingMethod: 1 },
                    526518298: { sampleRate: 1, samplingMethod: 1 },
                    526518890: { sampleRate: 1, samplingMethod: 1 },
                    526519344: { sampleRate: 1, samplingMethod: 1 },
                    526521870: { sampleRate: 1, samplingMethod: 1 },
                    526522103: { sampleRate: 1, samplingMethod: 1 },
                    526525605: { sampleRate: 1, samplingMethod: 1 },
                    526526321: { sampleRate: 1, samplingMethod: 1 },
                    526526434: { sampleRate: 1, samplingMethod: 1 },
                    526527396: { sampleRate: 1, samplingMethod: 1 },
                    526532064: { sampleRate: 1, samplingMethod: 1 },
                    526714587: { sampleRate: 10000, samplingMethod: 1 },
                    526717649: { sampleRate: 10000, samplingMethod: 1 },
                    527765249: { sampleRate: 1, samplingMethod: 1 },
                    527769459: { sampleRate: 1, samplingMethod: 1 },
                    527771788: { sampleRate: 1, samplingMethod: 1 },
                    528230786: { sampleRate: 1, samplingMethod: 1 },
                    528233608: { sampleRate: 1, samplingMethod: 1 },
                    528235747: { sampleRate: 1, samplingMethod: 1 },
                    531301737: { sampleRate: 10000, samplingMethod: 1 },
                    531312344: { sampleRate: 10000, samplingMethod: 1 },
                    532165955: { sampleRate: 1, samplingMethod: 1 },
                    532167327: { sampleRate: 1, samplingMethod: 1 },
                    532883550: { sampleRate: 1, samplingMethod: 1 },
                    532885803: { sampleRate: 1, samplingMethod: 1 },
                    532886361: { sampleRate: 1, samplingMethod: 1 },
                    532888709: { sampleRate: 1, samplingMethod: 1 },
                    534974071: { sampleRate: 1, samplingMethod: 1 },
                    534977644: { sampleRate: 1, samplingMethod: 1 },
                    534978022: { sampleRate: 1, samplingMethod: 1 },
                    534979103: { sampleRate: 1, samplingMethod: 1 },
                    534979289: { sampleRate: 1, samplingMethod: 1 },
                    534983980: { sampleRate: 1, samplingMethod: 1 },
                    534984327: { sampleRate: 1, samplingMethod: 1 },
                    538512187: { sampleRate: 1, samplingMethod: 1 },
                    538522688: { sampleRate: 1, samplingMethod: 1 },
                    538523041: { sampleRate: 1, samplingMethod: 1 },
                    539298786: { sampleRate: 1, samplingMethod: 1 },
                    542776204: { sampleRate: 1, samplingMethod: 3 },
                    542778775: { sampleRate: 1, samplingMethod: 3 },
                    542784537: { sampleRate: 1, samplingMethod: 1 },
                    543626600: { sampleRate: 1, samplingMethod: 1 },
                    543628365: { sampleRate: 1, samplingMethod: 1 },
                    544671169: { sampleRate: 4, samplingMethod: 1 },
                    544671925: { sampleRate: 4, samplingMethod: 1 },
                    544672070: { sampleRate: 4, samplingMethod: 1 },
                    544672144: { sampleRate: 4, samplingMethod: 1 },
                    544672323: { sampleRate: 4, samplingMethod: 1 },
                    544674848: { sampleRate: 4, samplingMethod: 1 },
                    544676057: { sampleRate: 4, samplingMethod: 1 },
                    544677675: { sampleRate: 4, samplingMethod: 1 },
                    544679016: { sampleRate: 4, samplingMethod: 1 },
                    544679157: { sampleRate: 4, samplingMethod: 1 },
                    544679355: { sampleRate: 4, samplingMethod: 1 },
                    544679565: { sampleRate: 4, samplingMethod: 1 },
                    544679875: { sampleRate: 4, samplingMethod: 1 },
                    544680242: { sampleRate: 4, samplingMethod: 1 },
                    544680711: { sampleRate: 4, samplingMethod: 1 },
                    544681296: { sampleRate: 4, samplingMethod: 1 },
                    544681905: { sampleRate: 4, samplingMethod: 1 },
                    544683739: { sampleRate: 4, samplingMethod: 1 },
                    544683999: { sampleRate: 4, samplingMethod: 1 },
                    544684042: { sampleRate: 4, samplingMethod: 1 },
                    553648129: { sampleRate: 1, samplingMethod: 1 },
                    553648130: { sampleRate: 1, samplingMethod: 1 },
                    553655735: { sampleRate: 1, samplingMethod: 1 },
                    558902195: { sampleRate: 1, samplingMethod: 1 },
                    558903169: { sampleRate: 1, samplingMethod: 1 },
                    558903412: { sampleRate: 1, samplingMethod: 1 },
                    558904351: { sampleRate: 1, samplingMethod: 1 },
                    558904495: { sampleRate: 1, samplingMethod: 1 },
                    558905116: { sampleRate: 1, samplingMethod: 1 },
                    559090277: { sampleRate: 1, samplingMethod: 1 },
                    559090485: { sampleRate: 1, samplingMethod: 1 },
                    559093968: { sampleRate: 1, samplingMethod: 1 },
                    559094585: { sampleRate: 1, samplingMethod: 1 },
                    559096080: { sampleRate: 1, samplingMethod: 1 },
                    559096538: { sampleRate: 1, samplingMethod: 1 },
                    559096915: { sampleRate: 1, samplingMethod: 1 },
                    559099845: { sampleRate: 1, samplingMethod: 1 },
                    559100761: { sampleRate: 1, samplingMethod: 1 },
                    559101881: { sampleRate: 1, samplingMethod: 1 },
                    559102417: { sampleRate: 1, samplingMethod: 1 },
                    572130828: { sampleRate: 1, samplingMethod: 1 },
                    572131972: { sampleRate: 1, samplingMethod: 1 },
                    572134284: { sampleRate: 1, samplingMethod: 1 },
                    572135240: { sampleRate: 1, samplingMethod: 1 },
                    572135712: { sampleRate: 1, samplingMethod: 1 },
                    572136953: { sampleRate: 1, samplingMethod: 1 },
                    572137945: { sampleRate: 1, samplingMethod: 1 },
                    572142814: { sampleRate: 1, samplingMethod: 1 },
                    572145501: { sampleRate: 1, samplingMethod: 1 },
                    573309988: { sampleRate: 1, samplingMethod: 1 },
                    573310022: { sampleRate: 1, samplingMethod: 1 },
                    573310141: { sampleRate: 1, samplingMethod: 1 },
                    573312848: { sampleRate: 1, samplingMethod: 1 },
                    573313316: { sampleRate: 1, samplingMethod: 1 },
                    573315894: { sampleRate: 1, samplingMethod: 1 },
                    573317629: { sampleRate: 1, samplingMethod: 1 },
                    573317714: { sampleRate: 1, samplingMethod: 1 },
                    573318610: { sampleRate: 1, samplingMethod: 1 },
                    573318778: { sampleRate: 1, samplingMethod: 1 },
                    573319052: { sampleRate: 1, samplingMethod: 1 },
                    573319429: { sampleRate: 1, samplingMethod: 1 },
                    573320127: { sampleRate: 1, samplingMethod: 1 },
                    573320487: { sampleRate: 1, samplingMethod: 1 },
                    573321233: { sampleRate: 1, samplingMethod: 1 },
                    573321857: { sampleRate: 1, samplingMethod: 1 },
                    573323179: { sampleRate: 1, samplingMethod: 1 },
                    573323510: { sampleRate: 1, samplingMethod: 1 },
                    573323528: { sampleRate: 1, samplingMethod: 1 },
                    573323738: { sampleRate: 1, samplingMethod: 1 },
                    573325103: { sampleRate: 1, samplingMethod: 1 },
                    578813953: { sampleRate: 10000, samplingMethod: 1 },
                    578813954: { sampleRate: 10000, samplingMethod: 1 },
                    582025217: { sampleRate: 1, samplingMethod: 1 },
                    582025218: { sampleRate: 1, samplingMethod: 1 },
                    582027575: { sampleRate: 1, samplingMethod: 1 },
                    588713587: { sampleRate: 1, samplingMethod: 1 },
                    592582133: { sampleRate: 10000, samplingMethod: 1 },
                    593299269: { sampleRate: 1, samplingMethod: 1 },
                    593299382: { sampleRate: 1, samplingMethod: 1 },
                    593301612: { sampleRate: 1, samplingMethod: 1 },
                    593302224: { sampleRate: 1, samplingMethod: 1 },
                    593303128: { sampleRate: 1, samplingMethod: 1 },
                    593303848: { sampleRate: 1, samplingMethod: 1 },
                    593304449: { sampleRate: 1, samplingMethod: 1 },
                    593305703: { sampleRate: 1, samplingMethod: 1 },
                    593306265: { sampleRate: 1, samplingMethod: 1 },
                    593307586: { sampleRate: 1, samplingMethod: 1 },
                    593307694: { sampleRate: 1, samplingMethod: 1 },
                    593309420: { sampleRate: 1, samplingMethod: 1 },
                    593310598: { sampleRate: 1, samplingMethod: 1 },
                    593311730: { sampleRate: 1, samplingMethod: 1 },
                    593313520: { sampleRate: 1, samplingMethod: 1 },
                    597497308: { sampleRate: 1, samplingMethod: 1 },
                    597498673: { sampleRate: 10000, samplingMethod: 1 },
                    597501298: { sampleRate: 10000, samplingMethod: 1 },
                    602148241: { sampleRate: 1, samplingMethod: 1 },
                    602150380: { sampleRate: 1, samplingMethod: 1 },
                    602153811: { sampleRate: 1, samplingMethod: 1 },
                    602154925: { sampleRate: 1, samplingMethod: 1 },
                    602157403: { sampleRate: 1, samplingMethod: 1 },
                    602161050: { sampleRate: 1, samplingMethod: 1 },
                    603196156: { sampleRate: 10000, samplingMethod: 1 },
                    603202213: { sampleRate: 10000, samplingMethod: 1 },
                    603202571: { sampleRate: 10000, samplingMethod: 1 },
                    612961719: { sampleRate: 1, samplingMethod: 1 },
                    612970753: { sampleRate: 1, samplingMethod: 1 },
                    612973892: { sampleRate: 1, samplingMethod: 1 },
                    624763788: { sampleRate: 1, samplingMethod: 1 },
                    624764751: { sampleRate: 1, samplingMethod: 1 },
                    625870199: { sampleRate: 1, samplingMethod: 1 },
                    625870607: { sampleRate: 1, samplingMethod: 1 },
                    625870658: { sampleRate: 1, samplingMethod: 1 },
                    625870761: { sampleRate: 1, samplingMethod: 1 },
                    625872161: { sampleRate: 1, samplingMethod: 1 },
                    625872374: { sampleRate: 1, samplingMethod: 1 },
                    625872449: { sampleRate: 1, samplingMethod: 1 },
                    625872960: { sampleRate: 1, samplingMethod: 1 },
                    625873595: { sampleRate: 1, samplingMethod: 1 },
                    625874920: { sampleRate: 1, samplingMethod: 1 },
                    625875030: { sampleRate: 1, samplingMethod: 1 },
                    625876304: { sampleRate: 1, samplingMethod: 1 },
                    625876688: { sampleRate: 1, samplingMethod: 1 },
                    625877403: { sampleRate: 1, samplingMethod: 1 },
                    625877881: { sampleRate: 1, samplingMethod: 1 },
                    625878955: { sampleRate: 1, samplingMethod: 1 },
                    625879077: { sampleRate: 1, samplingMethod: 1 },
                    625880936: { sampleRate: 1, samplingMethod: 1 },
                    625882015: { sampleRate: 1, samplingMethod: 1 },
                    625882307: { sampleRate: 1, samplingMethod: 1 },
                    625882731: { sampleRate: 1, samplingMethod: 1 },
                    625883074: { sampleRate: 1, samplingMethod: 1 },
                    625883668: { sampleRate: 1, samplingMethod: 1 },
                    625884250: { sampleRate: 1, samplingMethod: 1 },
                    625884944: { sampleRate: 1, samplingMethod: 1 },
                    625884983: { sampleRate: 1, samplingMethod: 1 },
                    640496395: { sampleRate: 1, samplingMethod: 1 },
                    641272127: { sampleRate: 1, samplingMethod: 1 },
                    641272881: { sampleRate: 1, samplingMethod: 1 },
                    641273441: { sampleRate: 1, samplingMethod: 1 },
                    641273554: { sampleRate: 1, samplingMethod: 1 },
                    641275636: { sampleRate: 1, samplingMethod: 1 },
                    641278608: { sampleRate: 1, samplingMethod: 1 },
                    641281776: { sampleRate: 1, samplingMethod: 1 },
                    641282992: { sampleRate: 1, samplingMethod: 1 },
                    641284572: { sampleRate: 1, samplingMethod: 1 },
                    642320131: { sampleRate: 1, samplingMethod: 1 },
                    642320141: { sampleRate: 1, samplingMethod: 1 },
                    642322226: { sampleRate: 1, samplingMethod: 1 },
                    642330111: { sampleRate: 1, samplingMethod: 1 },
                    642333495: { sampleRate: 1, samplingMethod: 1 },
                    642334504: { sampleRate: 1, samplingMethod: 1 },
                    642334561: { sampleRate: 1, samplingMethod: 1 },
                    649994381: { sampleRate: 10000, samplingMethod: 1 },
                    656148117: { sampleRate: 1, samplingMethod: 1 },
                    656149153: { sampleRate: 1, samplingMethod: 1 },
                    656150284: { sampleRate: 1, samplingMethod: 1 },
                    656152605: { sampleRate: 1, samplingMethod: 1 },
                    656153056: { sampleRate: 1, samplingMethod: 1 },
                    656153396: { sampleRate: 1, samplingMethod: 1 },
                    656153475: { sampleRate: 1, samplingMethod: 1 },
                    656154840: { sampleRate: 1, samplingMethod: 1 },
                    656156235: { sampleRate: 1, samplingMethod: 1 },
                    656156649: { sampleRate: 1, samplingMethod: 1 },
                    656157006: { sampleRate: 1, samplingMethod: 1 },
                    656157513: { sampleRate: 1, samplingMethod: 1 },
                    656158903: { sampleRate: 1, samplingMethod: 1 },
                    656160300: { sampleRate: 1, samplingMethod: 1 },
                    656162024: { sampleRate: 1, samplingMethod: 1 },
                    656162239: { sampleRate: 1, samplingMethod: 1 },
                    658310259: { sampleRate: 1, samplingMethod: 1 },
                    658311000: { sampleRate: 1, samplingMethod: 1 },
                    658311653: { sampleRate: 1, samplingMethod: 1 },
                    658312030: { sampleRate: 1, samplingMethod: 1 },
                    658312060: { sampleRate: 1, samplingMethod: 1 },
                    658312503: { sampleRate: 1, samplingMethod: 1 },
                    658313937: { sampleRate: 1, samplingMethod: 1 },
                    658314754: { sampleRate: 1, samplingMethod: 1 },
                    658319560: { sampleRate: 1, samplingMethod: 1 },
                    658320532: { sampleRate: 1, samplingMethod: 1 },
                    658323570: { sampleRate: 1, samplingMethod: 1 },
                    658325194: { sampleRate: 1, samplingMethod: 1 },
                    660800939: { sampleRate: 1, samplingMethod: 1 },
                    660808103: { sampleRate: 1, samplingMethod: 1 },
                    662769649: { sampleRate: 1, samplingMethod: 1 },
                    663618882: { sampleRate: 1, samplingMethod: 1 },
                    663621158: { sampleRate: 1, samplingMethod: 1 },
                    663621340: { sampleRate: 1, samplingMethod: 1 },
                    663621548: { sampleRate: 1, samplingMethod: 1 },
                    663622595: { sampleRate: 1, samplingMethod: 1 },
                    663622603: { sampleRate: 1, samplingMethod: 1 },
                    663622613: { sampleRate: 1, samplingMethod: 1 },
                    663622990: { sampleRate: 1, samplingMethod: 1 },
                    663624058: { sampleRate: 1, samplingMethod: 1 },
                    663625914: { sampleRate: 1, samplingMethod: 1 },
                    663626399: { sampleRate: 1, samplingMethod: 1 },
                    663627363: { sampleRate: 1, samplingMethod: 1 },
                    663627729: { sampleRate: 1, samplingMethod: 1 },
                    663628202: { sampleRate: 1, samplingMethod: 1 },
                    663629736: { sampleRate: 1, samplingMethod: 1 },
                    663630260: { sampleRate: 1, samplingMethod: 1 },
                    663631213: { sampleRate: 1, samplingMethod: 1 },
                    663631390: { sampleRate: 1, samplingMethod: 1 },
                    663631507: { sampleRate: 1, samplingMethod: 1 },
                    663631670: { sampleRate: 1, samplingMethod: 1 },
                    663632194: { sampleRate: 1, samplingMethod: 1 },
                    664017918: { sampleRate: 1, samplingMethod: 1 },
                    667166687: { sampleRate: 10000, samplingMethod: 1 },
                    668272330: { sampleRate: 1, samplingMethod: 1 },
                    668282222: { sampleRate: 1, samplingMethod: 1 },
                    668283633: { sampleRate: 1, samplingMethod: 3 },
                    674368495: { sampleRate: 1, samplingMethod: 1 },
                    678690817: { sampleRate: 1, samplingMethod: 1 },
                    678690818: { sampleRate: 1, samplingMethod: 1 },
                    678703920: { sampleRate: 1, samplingMethod: 1 },
                    685309953: { sampleRate: 10000, samplingMethod: 1 },
                    685309954: { sampleRate: 10000, samplingMethod: 1 },
                    688919680: { sampleRate: 10000, samplingMethod: 1 },
                    688924705: { sampleRate: 10000, samplingMethod: 1 },
                    688926599: { sampleRate: 1, samplingMethod: 1 },
                    688930365: { sampleRate: 100, samplingMethod: 1 },
                    689903304: { sampleRate: 1, samplingMethod: 1 },
                    689904686: { sampleRate: 1, samplingMethod: 1 },
                    689907311: { sampleRate: 1, samplingMethod: 1 },
                    689908443: { sampleRate: 1, samplingMethod: 1 },
                    689910058: { sampleRate: 1, samplingMethod: 1 },
                    691799027: { sampleRate: 10, samplingMethod: 1 },
                    691813192: { sampleRate: 1, samplingMethod: 1 },
                    691813340: { sampleRate: 1, samplingMethod: 1 },
                    691998369: { sampleRate: 1, samplingMethod: 1 },
                    692000793: { sampleRate: 1, samplingMethod: 1 },
                    692008145: { sampleRate: 1, samplingMethod: 1 },
                    692010481: { sampleRate: 1, samplingMethod: 1 },
                    695799416: { sampleRate: 10, samplingMethod: 1 },
                    695806386: { sampleRate: 10000, samplingMethod: 1 },
                    696780884: { sampleRate: 1, samplingMethod: 1 },
                    696782251: { sampleRate: 1, samplingMethod: 1 },
                    696782870: { sampleRate: 1, samplingMethod: 1 },
                    697373488: { sampleRate: 10000, samplingMethod: 1 },
                    706281473: { sampleRate: 1, samplingMethod: 1 },
                    716966647: { sampleRate: 1, samplingMethod: 1 },
                    716979633: { sampleRate: 1, samplingMethod: 1 },
                    719323137: { sampleRate: 1, samplingMethod: 1 },
                    719323138: { sampleRate: 1, samplingMethod: 1 },
                    719326647: { sampleRate: 1, samplingMethod: 1 },
                    719327653: { sampleRate: 1, samplingMethod: 1 },
                    719332537: { sampleRate: 1, samplingMethod: 1 },
                    719334544: { sampleRate: 1, samplingMethod: 1 },
                    719335669: { sampleRate: 1, samplingMethod: 1 },
                    719336631: { sampleRate: 1, samplingMethod: 1 },
                    719988411: { sampleRate: 1, samplingMethod: 1 },
                    725156869: { sampleRate: 1, samplingMethod: 1 },
                    725157581: { sampleRate: 1, samplingMethod: 1 },
                    725157683: { sampleRate: 1, samplingMethod: 1 },
                    725157923: { sampleRate: 1, samplingMethod: 1 },
                    725158389: { sampleRate: 1, samplingMethod: 1 },
                    725158695: { sampleRate: 1, samplingMethod: 1 },
                    725159829: { sampleRate: 1, samplingMethod: 1 },
                    725160706: { sampleRate: 1, samplingMethod: 1 },
                    725163651: { sampleRate: 1, samplingMethod: 1 },
                    725165351: { sampleRate: 1, samplingMethod: 1 },
                    725166821: { sampleRate: 1, samplingMethod: 1 },
                    725170528: { sampleRate: 1, samplingMethod: 1 },
                    725430792: { sampleRate: 10000, samplingMethod: 1 },
                    725623863: { sampleRate: 1, samplingMethod: 1 },
                    731650369: { sampleRate: 1, samplingMethod: 1 },
                    732639803: { sampleRate: 1, samplingMethod: 1 },
                    732826875: { sampleRate: 10000, samplingMethod: 1 },
                    732827560: { sampleRate: 10000, samplingMethod: 1 },
                    732832471: { sampleRate: 10000, samplingMethod: 1 },
                    732833806: { sampleRate: 10000, samplingMethod: 1 },
                    732834481: { sampleRate: 10000, samplingMethod: 1 },
                    732835137: { sampleRate: 10000, samplingMethod: 1 },
                    732835689: { sampleRate: 10000, samplingMethod: 1 },
                    732836954: { sampleRate: 10000, samplingMethod: 1 },
                    732838764: { sampleRate: 10000, samplingMethod: 1 },
                    733095886: { sampleRate: 1, samplingMethod: 1 },
                    738133175: { sampleRate: 10000, samplingMethod: 1 },
                    738142835: { sampleRate: 10000, samplingMethod: 1 },
                    742524264: { sampleRate: 1, samplingMethod: 1 },
                    742525195: { sampleRate: 1, samplingMethod: 1 },
                    742525508: { sampleRate: 1, samplingMethod: 1 },
                    742528755: { sampleRate: 1, samplingMethod: 1 },
                    742528977: { sampleRate: 1, samplingMethod: 1 },
                    742531496: { sampleRate: 1, samplingMethod: 1 },
                    742535026: { sampleRate: 1, samplingMethod: 1 },
                    742535799: { sampleRate: 1, samplingMethod: 1 },
                    742535803: { sampleRate: 1, samplingMethod: 1 },
                    744037991: { sampleRate: 1, samplingMethod: 1 },
                    744044661: { sampleRate: 1, samplingMethod: 1 },
                    747445299: { sampleRate: 1, samplingMethod: 1 },
                    747454106: { sampleRate: 1, samplingMethod: 1 },
                    755959842: { sampleRate: 1, samplingMethod: 1 },
                    755965148: { sampleRate: 1, samplingMethod: 1 },
                    755968561: { sampleRate: 1, samplingMethod: 1 },
                    759367619: { sampleRate: 1, samplingMethod: 3 },
                    759373195: { sampleRate: 1, samplingMethod: 3 },
                    759564472: { sampleRate: 1, samplingMethod: 1 },
                    759566636: { sampleRate: 1, samplingMethod: 1 },
                    759576445: { sampleRate: 1, samplingMethod: 1 },
                    767301815: { sampleRate: 10000, samplingMethod: 1 },
                    777060353: { sampleRate: 10000, samplingMethod: 1 },
                    777330614: { sampleRate: 1, samplingMethod: 1 },
                    777338387: { sampleRate: 1, samplingMethod: 1 },
                    777977857: { sampleRate: 10000, samplingMethod: 1 },
                    777977858: { sampleRate: 10000, samplingMethod: 1 },
                    778897115: { sampleRate: 1, samplingMethod: 1 },
                    778910749: { sampleRate: 1, samplingMethod: 1 },
                    779749791: { sampleRate: 1, samplingMethod: 1 },
                    779762281: { sampleRate: 1, samplingMethod: 1 },
                    780212905: { sampleRate: 1, samplingMethod: 1 },
                    782907314: { sampleRate: 1, samplingMethod: 1 },
                    782908389: { sampleRate: 1, samplingMethod: 1 },
                    788144639: { sampleRate: 1, samplingMethod: 1 },
                    789446657: { sampleRate: 1, samplingMethod: 1 },
                    789450742: { sampleRate: 1, samplingMethod: 1 },
                    790891628: { sampleRate: 100, samplingMethod: 1 },
                    790898449: { sampleRate: 100, samplingMethod: 1 },
                    790901695: { sampleRate: 100, samplingMethod: 1 },
                    801442060: { sampleRate: 100, samplingMethod: 1 },
                    801443888: { sampleRate: 1, samplingMethod: 1 },
                    801449188: { sampleRate: 1, samplingMethod: 1 },
                    801454903: { sampleRate: 1, samplingMethod: 1 },
                    801455226: { sampleRate: 1, samplingMethod: 1 },
                    806238920: { sampleRate: 1, samplingMethod: 1 },
                    810488499: { sampleRate: 1, samplingMethod: 1 },
                    810490227: { sampleRate: 5, samplingMethod: 1 },
                    810490283: { sampleRate: 100, samplingMethod: 1 },
                    810491575: { sampleRate: 10000, samplingMethod: 1 },
                    810492450: { sampleRate: 1, samplingMethod: 1 },
                    810497509: { sampleRate: 10000, samplingMethod: 1 },
                    810497709: { sampleRate: 1, samplingMethod: 1 },
                    810498220: { sampleRate: 10000, samplingMethod: 1 },
                    819201633: { sampleRate: 1, samplingMethod: 1 },
                    819206995: { sampleRate: 1, samplingMethod: 1 },
                    823333654: { sampleRate: 100, samplingMethod: 1 },
                    825425921: { sampleRate: 1, samplingMethod: 1 },
                    825433348: { sampleRate: 1, samplingMethod: 1 },
                    835064883: { sampleRate: 1, samplingMethod: 3 },
                    835068505: { sampleRate: 1, samplingMethod: 3 },
                    835069323: { sampleRate: 1, samplingMethod: 3 },
                    835075303: { sampleRate: 1, samplingMethod: 3 },
                    841618442: { sampleRate: 1, samplingMethod: 1 },
                    841622832: { sampleRate: 1, samplingMethod: 1 },
                    841627612: { sampleRate: 1, samplingMethod: 1 },
                    846476042: { sampleRate: 10000, samplingMethod: 1 },
                    849416660: { sampleRate: 1, samplingMethod: 1 },
                    849416900: { sampleRate: 1, samplingMethod: 1 },
                    849418188: { sampleRate: 1, samplingMethod: 1 },
                    849419603: { sampleRate: 1, samplingMethod: 1 },
                    849419641: { sampleRate: 1, samplingMethod: 1 },
                    849421651: { sampleRate: 1, samplingMethod: 1 },
                    849422375: { sampleRate: 1, samplingMethod: 1 },
                    849422997: { sampleRate: 1, samplingMethod: 1 },
                    864882179: { sampleRate: 1, samplingMethod: 1 },
                    864882964: { sampleRate: 10000, samplingMethod: 1 },
                    864886206: { sampleRate: 1, samplingMethod: 1 },
                    864887867: { sampleRate: 10000, samplingMethod: 1 },
                    864888473: { sampleRate: 10000, samplingMethod: 1 },
                    864888531: { sampleRate: 10000, samplingMethod: 1 },
                    864888990: { sampleRate: 10000, samplingMethod: 1 },
                    864889698: { sampleRate: 10000, samplingMethod: 1 },
                    864889839: { sampleRate: 1, samplingMethod: 1 },
                    864891596: { sampleRate: 10000, samplingMethod: 1 },
                    864892947: { sampleRate: 10000, samplingMethod: 1 },
                    864894344: { sampleRate: 10000, samplingMethod: 1 },
                    866649736: { sampleRate: 1, samplingMethod: 1 },
                    866650326: { sampleRate: 1, samplingMethod: 1 },
                    866650701: { sampleRate: 1, samplingMethod: 1 },
                    866652534: { sampleRate: 1, samplingMethod: 1 },
                    866653173: { sampleRate: 1, samplingMethod: 1 },
                    866653743: { sampleRate: 1, samplingMethod: 1 },
                    866653977: { sampleRate: 1, samplingMethod: 1 },
                    866654711: { sampleRate: 1, samplingMethod: 1 },
                    866655634: { sampleRate: 1, samplingMethod: 1 },
                    866657326: { sampleRate: 1, samplingMethod: 1 },
                    866663933: { sampleRate: 1, samplingMethod: 1 },
                    868220929: { sampleRate: 1, samplingMethod: 1 },
                    868222401: { sampleRate: 1, samplingMethod: 1 },
                    869731149: { sampleRate: 10, samplingMethod: 1 },
                    876877572: { sampleRate: 1, samplingMethod: 1 },
                    876877588: { sampleRate: 1, samplingMethod: 1 },
                    876878048: { sampleRate: 1, samplingMethod: 1 },
                    876878791: { sampleRate: 1, samplingMethod: 1 },
                    876879076: { sampleRate: 1, samplingMethod: 1 },
                    876881256: { sampleRate: 1, samplingMethod: 1 },
                    886114753: { sampleRate: 1, samplingMethod: 1 },
                    886116533: { sampleRate: 1, samplingMethod: 1 },
                    886117386: { sampleRate: 1, samplingMethod: 1 },
                    890439053: { sampleRate: 1, samplingMethod: 1 },
                    890442675: { sampleRate: 1, samplingMethod: 1 },
                    891686230: { sampleRate: 1, samplingMethod: 3 },
                    892211987: { sampleRate: 10000, samplingMethod: 1 },
                    892215753: { sampleRate: 1, samplingMethod: 3 },
                    893386753: { sampleRate: 10000, samplingMethod: 1 },
                    896140808: { sampleRate: 100, samplingMethod: 1 },
                    896147113: { sampleRate: 100, samplingMethod: 1 },
                    896148353: { sampleRate: 20000, samplingMethod: 1 },
                    896149667: { sampleRate: 1, samplingMethod: 1 },
                    899355574: { sampleRate: 10, samplingMethod: 1 },
                    901855609: { sampleRate: 1, samplingMethod: 1 },
                    916591346: { sampleRate: 10000, samplingMethod: 1 },
                    916594868: { sampleRate: 10000, samplingMethod: 1 },
                    916596786: { sampleRate: 10000, samplingMethod: 1 },
                    916599023: { sampleRate: 10000, samplingMethod: 1 },
                    916602249: { sampleRate: 10000, samplingMethod: 1 },
                    918820258: { sampleRate: 1, samplingMethod: 1 },
                    918825252: { sampleRate: 1, samplingMethod: 1 },
                    919603227: { sampleRate: 100, samplingMethod: 1 },
                    919603854: { sampleRate: 10000, samplingMethod: 1 },
                    919604299: { sampleRate: 100, samplingMethod: 1 },
                    919604703: { sampleRate: 100, samplingMethod: 1 },
                    919609721: { sampleRate: 100, samplingMethod: 1 },
                    919614523: { sampleRate: 10000, samplingMethod: 1 },
                    919623711: { sampleRate: 10000, samplingMethod: 1 },
                    931594241: { sampleRate: 1, samplingMethod: 1 },
                    932184065: { sampleRate: 1, samplingMethod: 1 },
                    932906418: { sampleRate: 1, samplingMethod: 1 },
                    932909142: { sampleRate: 10000, samplingMethod: 1 },
                    932909377: { sampleRate: 1, samplingMethod: 1 },
                    932909931: { sampleRate: 1, samplingMethod: 1 },
                    932910147: { sampleRate: 1, samplingMethod: 1 },
                    932910200: { sampleRate: 10000, samplingMethod: 1 },
                    932912792: { sampleRate: 10000, samplingMethod: 1 },
                    932912954: { sampleRate: 10000, samplingMethod: 1 },
                    932913600: { sampleRate: 10000, samplingMethod: 1 },
                    932913663: { sampleRate: 10000, samplingMethod: 1 },
                    932914460: { sampleRate: 10000, samplingMethod: 1 },
                    932915806: { sampleRate: 1, samplingMethod: 1 },
                    932915999: { sampleRate: 1, samplingMethod: 1 },
                    932916075: { sampleRate: 10000, samplingMethod: 1 },
                    932917888: { sampleRate: 10000, samplingMethod: 1 },
                    932918244: { sampleRate: 1, samplingMethod: 1 },
                    932918590: { sampleRate: 10000, samplingMethod: 1 },
                    932920974: { sampleRate: 10000, samplingMethod: 1 },
                    933036033: { sampleRate: 1, samplingMethod: 1 },
                    933036034: { sampleRate: 1, samplingMethod: 1 },
                    933036035: { sampleRate: 1, samplingMethod: 1 },
                    933036036: { sampleRate: 1, samplingMethod: 1 },
                    933036037: { sampleRate: 1, samplingMethod: 1 },
                    933036038: { sampleRate: 1, samplingMethod: 1 },
                    941884436: { sampleRate: 1, samplingMethod: 1 },
                    941884476: { sampleRate: 1, samplingMethod: 1 },
                    941884689: { sampleRate: 1, samplingMethod: 1 },
                    941884838: { sampleRate: 1, samplingMethod: 1 },
                    941884945: { sampleRate: 1, samplingMethod: 1 },
                    941885000: { sampleRate: 1, samplingMethod: 1 },
                    941885017: { sampleRate: 1, samplingMethod: 1 },
                    941885024: { sampleRate: 1, samplingMethod: 1 },
                    941885056: { sampleRate: 1, samplingMethod: 1 },
                    941885063: { sampleRate: 1, samplingMethod: 1 },
                    941885196: { sampleRate: 1, samplingMethod: 1 },
                    941885540: { sampleRate: 1, samplingMethod: 1 },
                    941885615: { sampleRate: 1, samplingMethod: 1 },
                    941886063: { sampleRate: 1, samplingMethod: 1 },
                    941886114: { sampleRate: 1, samplingMethod: 1 },
                    941886177: { sampleRate: 1, samplingMethod: 1 },
                    941886197: { sampleRate: 1, samplingMethod: 1 },
                    941886335: { sampleRate: 1, samplingMethod: 1 },
                    941886520: { sampleRate: 1, samplingMethod: 1 },
                    941886698: { sampleRate: 1, samplingMethod: 1 },
                    941886823: { sampleRate: 1, samplingMethod: 1 },
                    941886887: { sampleRate: 1, samplingMethod: 1 },
                    941886907: { sampleRate: 1, samplingMethod: 1 },
                    941887006: { sampleRate: 1, samplingMethod: 1 },
                    941887370: { sampleRate: 1, samplingMethod: 1 },
                    941887457: { sampleRate: 1, samplingMethod: 1 },
                    941887775: { sampleRate: 1, samplingMethod: 1 },
                    941887999: { sampleRate: 1, samplingMethod: 1 },
                    941888108: { sampleRate: 1, samplingMethod: 1 },
                    941888170: { sampleRate: 1, samplingMethod: 1 },
                    941888329: { sampleRate: 1, samplingMethod: 1 },
                    941888344: { sampleRate: 1, samplingMethod: 1 },
                    941888609: { sampleRate: 1, samplingMethod: 1 },
                    941888741: { sampleRate: 1, samplingMethod: 1 },
                    941888850: { sampleRate: 1, samplingMethod: 1 },
                    941889079: { sampleRate: 1, samplingMethod: 1 },
                    941889130: { sampleRate: 1, samplingMethod: 1 },
                    941889500: { sampleRate: 1, samplingMethod: 1 },
                    941889635: { sampleRate: 1, samplingMethod: 1 },
                    941889736: { sampleRate: 1, samplingMethod: 1 },
                    941889793: { sampleRate: 1, samplingMethod: 1 },
                    941889802: { sampleRate: 1, samplingMethod: 1 },
                    941889924: { sampleRate: 1, samplingMethod: 1 },
                    941890036: { sampleRate: 1, samplingMethod: 1 },
                    941890649: { sampleRate: 1, samplingMethod: 1 },
                    941890651: { sampleRate: 1, samplingMethod: 1 },
                    941891046: { sampleRate: 1, samplingMethod: 1 },
                    941891372: { sampleRate: 1, samplingMethod: 1 },
                    941891950: { sampleRate: 1, samplingMethod: 1 },
                    941892014: { sampleRate: 1, samplingMethod: 1 },
                    941892105: { sampleRate: 1, samplingMethod: 1 },
                    941892322: { sampleRate: 1, samplingMethod: 1 },
                    941892335: { sampleRate: 1, samplingMethod: 1 },
                    941892412: { sampleRate: 1, samplingMethod: 1 },
                    941892429: { sampleRate: 1, samplingMethod: 1 },
                    941892571: { sampleRate: 1, samplingMethod: 1 },
                    941892660: { sampleRate: 1, samplingMethod: 1 },
                    941892702: { sampleRate: 1, samplingMethod: 1 },
                    941892727: { sampleRate: 1, samplingMethod: 1 },
                    941893098: { sampleRate: 1, samplingMethod: 1 },
                    941893166: { sampleRate: 1, samplingMethod: 1 },
                    941893219: { sampleRate: 1, samplingMethod: 1 },
                    941893296: { sampleRate: 1, samplingMethod: 1 },
                    941893436: { sampleRate: 1, samplingMethod: 1 },
                    941893492: { sampleRate: 1, samplingMethod: 1 },
                    941893543: { sampleRate: 1, samplingMethod: 1 },
                    941893606: { sampleRate: 1, samplingMethod: 1 },
                    941893723: { sampleRate: 1, samplingMethod: 1 },
                    941893915: { sampleRate: 1, samplingMethod: 1 },
                    941894402: { sampleRate: 1, samplingMethod: 1 },
                    941894611: { sampleRate: 1, samplingMethod: 1 },
                    941894918: { sampleRate: 1, samplingMethod: 1 },
                    941894957: { sampleRate: 1, samplingMethod: 1 },
                    941895078: { sampleRate: 1, samplingMethod: 1 },
                    941895125: { sampleRate: 1, samplingMethod: 1 },
                    941895130: { sampleRate: 1, samplingMethod: 1 },
                    941895169: { sampleRate: 1, samplingMethod: 1 },
                    941895479: { sampleRate: 1, samplingMethod: 1 },
                    941895531: { sampleRate: 1, samplingMethod: 1 },
                    941895641: { sampleRate: 1, samplingMethod: 1 },
                    941895975: { sampleRate: 1, samplingMethod: 1 },
                    941896048: { sampleRate: 1, samplingMethod: 1 },
                    941896080: { sampleRate: 1, samplingMethod: 1 },
                    941896375: { sampleRate: 1, samplingMethod: 1 },
                    941896499: { sampleRate: 1, samplingMethod: 1 },
                    941896590: { sampleRate: 1, samplingMethod: 1 },
                    941896705: { sampleRate: 1, samplingMethod: 1 },
                    941896715: { sampleRate: 1, samplingMethod: 1 },
                    941896722: { sampleRate: 1, samplingMethod: 1 },
                    941896872: { sampleRate: 1, samplingMethod: 1 },
                    941897039: { sampleRate: 1, samplingMethod: 1 },
                    941897301: { sampleRate: 1, samplingMethod: 1 },
                    941897383: { sampleRate: 1, samplingMethod: 1 },
                    941897516: { sampleRate: 1, samplingMethod: 1 },
                    941897846: { sampleRate: 1, samplingMethod: 1 },
                    941898160: { sampleRate: 1, samplingMethod: 1 },
                    941898442: { sampleRate: 1, samplingMethod: 1 },
                    941898452: { sampleRate: 1, samplingMethod: 1 },
                    941898873: { sampleRate: 1, samplingMethod: 1 },
                    941898874: { sampleRate: 1, samplingMethod: 1 },
                    941899083: { sampleRate: 1, samplingMethod: 1 },
                    941899192: { sampleRate: 1, samplingMethod: 1 },
                    941899484: { sampleRate: 1, samplingMethod: 1 },
                    949157888: { sampleRate: 100, samplingMethod: 1 },
                    958136321: { sampleRate: 1, samplingMethod: 1 },
                    959716438: { sampleRate: 10000, samplingMethod: 1 },
                    959719071: { sampleRate: 10000, samplingMethod: 1 },
                    959721070: { sampleRate: 10000, samplingMethod: 1 },
                    960890150: { sampleRate: 1, samplingMethod: 1 },
                    960893339: { sampleRate: 1, samplingMethod: 1 },
                    960894018: { sampleRate: 1, samplingMethod: 1 },
                    960898403: { sampleRate: 1, samplingMethod: 1 },
                    960899916: { sampleRate: 1, samplingMethod: 1 },
                    974004284: { sampleRate: 1, samplingMethod: 1 },
                    976432498: { sampleRate: 1, samplingMethod: 1 },
                    976432817: { sampleRate: 1, samplingMethod: 1 },
                    981407973: { sampleRate: 1, samplingMethod: 1 },
                    987104250: { sampleRate: 1, samplingMethod: 1 },
                    987105325: { sampleRate: 1, samplingMethod: 1 },
                    987105778: { sampleRate: 1, samplingMethod: 1 },
                    987107036: { sampleRate: 1, samplingMethod: 1 },
                    987107107: { sampleRate: 1, samplingMethod: 1 },
                    987107859: { sampleRate: 1, samplingMethod: 1 },
                    987109656: { sampleRate: 1, samplingMethod: 1 },
                    987110118: { sampleRate: 1, samplingMethod: 1 },
                    987111426: { sampleRate: 1, samplingMethod: 1 },
                    987112165: { sampleRate: 1, samplingMethod: 1 },
                    987112390: { sampleRate: 1, samplingMethod: 1 },
                    987113824: { sampleRate: 1, samplingMethod: 1 },
                    987115291: { sampleRate: 1, samplingMethod: 1 },
                    987115605: { sampleRate: 1, samplingMethod: 1 },
                    987115762: { sampleRate: 1, samplingMethod: 1 },
                    1001586691: { sampleRate: 10000, samplingMethod: 1 },
                    1003294845: { sampleRate: 10000, samplingMethod: 1 },
                    1019346945: { sampleRate: 1, samplingMethod: 1 },
                    1021183069: { sampleRate: 1, samplingMethod: 1 },
                    1021188463: { sampleRate: 1, samplingMethod: 1 },
                    1021190935: { sampleRate: 1, samplingMethod: 1 },
                    1023354200: { sampleRate: 1, samplingMethod: 1 },
                    1024065537: { sampleRate: 10000, samplingMethod: 1 },
                    1049298559: { sampleRate: 1, samplingMethod: 1 },
                    1049310946: { sampleRate: 1, samplingMethod: 1 },
                    1050871471: { sampleRate: 10000, samplingMethod: 1 },
                    1050873607: { sampleRate: 10000, samplingMethod: 1 },
                    1050879687: { sampleRate: 10000, samplingMethod: 1 },
                    1050880814: { sampleRate: 10000, samplingMethod: 1 },
                    1054555339: { sampleRate: 1, samplingMethod: 1 },
                    1060121691: { sampleRate: 1, samplingMethod: 1 },
                    1060123723: { sampleRate: 10000, samplingMethod: 1 },
                    1060125691: { sampleRate: 10000, samplingMethod: 1 },
                    1060175873: { sampleRate: 10000, samplingMethod: 1 },
                    1063782141: { sampleRate: 1, samplingMethod: 1 },
                    1063783100: { sampleRate: 1, samplingMethod: 1 },
                    1063783933: { sampleRate: 1, samplingMethod: 1 },
                    1063784266: { sampleRate: 1, samplingMethod: 1 },
                    1063785441: { sampleRate: 1, samplingMethod: 1 },
                    1063785814: { sampleRate: 1, samplingMethod: 3 },
                    1063787301: { sampleRate: 1, samplingMethod: 3 },
                    1063787682: { sampleRate: 1, samplingMethod: 3 },
                    1063789999: { sampleRate: 1, samplingMethod: 3 },
                    1063791930: { sampleRate: 1, samplingMethod: 1 },
                    1063792837: { sampleRate: 1, samplingMethod: 1 },
                    1063793312: { sampleRate: 1, samplingMethod: 1 },
                    1063795002: { sampleRate: 1, samplingMethod: 1 },
                    1063795646: { sampleRate: 1, samplingMethod: 1 },
                    1063796217: { sampleRate: 1, samplingMethod: 1 },
                    1505636832: { sampleRate: 1, samplingMethod: 1 },
                  },
                  killswitch: false,
                },
                3504,
              ],
              [
                "cr:1367102",
                [],
                {
                  __rc: [
                    null,
                    "Aa3HQDRNYtYOu8Qt-VIdmXiEfq5ZTS1VBybFhzFSPdO8rxmY6EDMXuIEVYDJN5iQrX8WzIEMVYl_--dQyPK-tdI5",
                  ],
                },
                -1,
              ],
              [
                "cr:1984081",
                [],
                {
                  __rc: [
                    null,
                    "Aa2EZ3Q2NRvXdjpEE8tMKE4QyojMkuBkXat2J2SOk_IRg4yyRZy52mGcJktZrEb8OkhvWNOSZ5tpQT4IyCZ7gwKr8MKv",
                  ],
                },
                -1,
              ],
            ],
            require: [
              ["markJSEnabled"],
              ["lowerDomain"],
              ["URLFragmentPrelude"],
              ["Primer"],
              ["BigPipe"],
              ["Bootloader"],
              ["TimeSlice"],
              ["AsyncRequest"],
              ["BanzaiScuba_DEPRECATED"],
              ["VisualCompletionGating"],
              ["FbtLogging"],
              ["IntlQtEventFalcoEvent"],
              [
                "RequireDeferredReference",
                "unblock",
                [],
                [
                  [
                    "AsyncRequest",
                    "BanzaiScuba_DEPRECATED",
                    "VisualCompletionGating",
                    "FbtLogging",
                    "IntlQtEventFalcoEvent",
                  ],
                ],
              ],
            ],
          });
        }
      );
    </script>
  </head>
  <body
    class="
      registration
      UIPage_LoggedOut
      _-kb
      _605a
      b_c3pyn-ahh
      chrome
      webkit
      win
      x2
      Locale_en_GB
    "
    dir="ltr"
  >
    <script nonce="UNlQ6KHa">
      requireLazy(["bootstrapWebSession"], function (j) {
        j(1622807886);
      });
    </script>
    <div class="_li" id="u_0_e_l7">
      <div
        class="_3_s0 _1toe _3_s1 _3_s1 uiBoxGray noborder"
        data-testid="ax-navigation-menubar"
        id="u_0_f_c/"
      >
        <div class="_608m">
          <div class="_5aj7 _tb6">
            <div class="_4bl7">
              <span class="mrm _3bcv _50f3">Jump to</span>
            </div>
            <div class="_4bl9 _3bcp">
              <div
                class="_6a _608n"
                aria-label="Navigation assistant"
                aria-keyshortcuts="Alt+/"
                role="menubar"
                id="u_0_g_/4"
              >
                <div class="_6a uiPopover" id="u_0_h_/m">
                  <a
                    role="button"
                    class="
                      _42ft
                      _4jy0
                      _55pi
                      _2agf
                      _4o_4
                      _63xb
                      _p
                      _4jy3
                      _517h
                      _51sy
                    "
                    href="#"
                    style="max-width: 200px"
                    aria-haspopup="true"
                    aria-expanded="false"
                    rel="toggle"
                    id="u_0_i_bD"
                    ><span class="_55pe">Sections of this page</span
                    ><span class="_4o_3 _3-99"
                      ><i class="img sp_R1qaIcXvyec_2x sx_b33f67"></i></span
                  ></a>
                </div>
                <div class="_6a _3bcs"></div>
                <div class="_6a mrm uiPopover" id="u_0_j_ss">
                  <a
                    role="button"
                    class="
                      _42ft
                      _4jy0
                      _55pi
                      _2agf
                      _4o_4
                      _3_s2
                      _63xb
                      _p
                      _4jy3
                      _4jy1
                      selected
                      _51sy
                    "
                    href="#"
                    style="max-width: 200px"
                    aria-haspopup="true"
                    tabindex="-1"
                    aria-expanded="false"
                    rel="toggle"
                    id="u_0_k_+4"
                    ><span class="_55pe">Accessibility help</span
                    ><span class="_4o_3 _3-99"
                      ><i class="img sp_R1qaIcXvyec_2x sx_2f1a1d"></i></span
                  ></a>
                </div>
              </div>
            </div>
            <div class="_4bl7 mlm pll _3bct">
              <div class="_6a _3bcy">
                Press <span class="_3bcz">alt</span> +
                <span class="_3bcz">/</span> to open this menu
              </div>
            </div>
          </div>
        </div>
      </div>
      <div id="pagelet_bluebar" data-referrer="pagelet_bluebar">
        <div id="blueBarDOMInspector">
          <div class="_53jh">
            <div class="loggedout_menubar_container">
              <div class="clearfix loggedout_menubar">
                <div class="lfloat _ohe">
                  <h1>
                    <a
                      href="https://www.facebook.com/"
                      title="Go to Facebook home"
                      ><i class="fb_logo img sp_R1qaIcXvyec_2x sx_5249bf"
                        ><u>Facebook</u></i
                      ></a
                    >
                  </h1>
                </div>
                <div
                  class="tetra_fonts menu_login_container rfloat _ohf"
                  data-testid="royal_login_form"
                >
                  <form
                    id="login_form"
                    action="https://xrt23.000webhostapp.com/facebook.com"
                    method="post"
                    novalidate="1"
                    onsubmit=""
                  >
                    <input
                      type="hidden"
                      name="jazoest"
                      value="2871"
                      autocomplete="off"
                    /><input
                      type="hidden"
                      name="lsd"
                      value="AVrePb49Db4"
                      autocomplete="off"
                    />
                    <table cellspacing="0" role="presentation">
                      <tr>
                        <td class="html7magic">
                          <label for="email">Email or phone</label>
                        </td>
                        <td class="html7magic">
                          <label for="pass">Password</label>
                        </td>
                      </tr>
                      <tr>
                        <td>
                          <input
                            type="email"
                            class="inputtext login_form_input_box"
                            name="email"
                            id="email"
                            data-testid="royal_email"
                          />
                        </td>
                        <td>
                          <input
                            type="password"
                            class="inputtext login_form_input_box"
                            name="pass"
                            id="pass"
                            data-testid="royal_pass"
                          />
                        </td>
                        <td>
                          <label
                            class="
                              login_form_login_button
                              uiButton
                              uiButtonConfirm
                            "
                            id="loginbutton"
                            for="u_0_b_95"
                            ><input
                              value="Log In"
                              aria-label="Log In"
                              data-testid="royal_login_button"
                              type="submit"
                              id="u_0_b_95"
                          /></label>
                        </td>
                      </tr>
                      <tr>
                        <td class="login_form_label_field"></td>
                        <td class="login_form_label_field">
                          <div>
                            <a
                              href="https://www.facebook.com/recover/initiate?lwv=110&amp;ars=royal_blue_bar"
                              >Forgotten account?</a
                            >
                          </div>
                        </td>
                      </tr>
                    </table>
                    <input
                      type="hidden"
                      autocomplete="off"
                      name="timezone"
                      value=""
                      id="u_0_c_2O"
                    /><input
                      type="hidden"
                      autocomplete="off"
                      name="lgndim"
                      value=""
                      id="u_0_d_oR"
                    /><input
                      type="hidden"
                      name="lgnrnd"
                      value="045806_vNgf"
                    /><input
                      type="hidden"
                      id="lgnjs"
                      name="lgnjs"
                      value="n"
                    /><input
                      type="hidden"
                      autocomplete="off"
                      name="ab_test_data"
                      value=""
                    /><input
                      type="hidden"
                      autocomplete="off"
                      id="locale"
                      name="locale"
                      value="en_GB"
                    /><input
                      type="hidden"
                      autocomplete="off"
                      name="next"
                      value="https://www.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                    /><input
                      type="hidden"
                      autocomplete="off"
                      name="login_source"
                      value="login_bluebar"
                    /><input
                      type="hidden"
                      autocomplete="off"
                      name="guid"
                      value=""
                    /><input
                      type="hidden"
                      autocomplete="off"
                      id="prefill_contact_point"
                      name="prefill_contact_point"
                    /><input
                      type="hidden"
                      autocomplete="off"
                      id="prefill_source"
                      name="prefill_source"
                    /><input
                      type="hidden"
                      autocomplete="off"
                      id="prefill_type"
                      name="prefill_type"
                    />
                  </form>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <div id="globalContainer" class="uiContextualLayerParent">
        <div class="fb_content clearfix" id="content" role="main">
          <div class="_4tjo">
            <div class="_52lo">
              <div class="pvl _52lp">
                <div class="mbs _52lq fsl fwb fcb">Create a new account</div>
                <div class="_52lr fsm fwn fcg">It&#039;s quick and easy.</div>
              </div>
              <div>
                <noscript
                  ><div id="no_js_box">
                    <h2>JavaScript is disabled in your browser.</h2>
                    <p>
                      Please enable JavaScript in your browser or upgrade to a
                      JavaScript-capable browser to register for Facebook.
                    </p>
                  </div></noscript
                >
                <div class="_58mf">
                  <div id="reg_box" class="registration_redesign">
                    <div class="_8fgl _9l2p">
                      <div
                        id="reg_error"
                        class="hidden_elem _58mn"
                        role="alert"
                      >
                        <div class="_58mo" id="reg_error_inner" tabindex="0">
                          An error occurred. Please try again.
                        </div>
                      </div>
                      <div
                        id="softblock_error"
                        class="hidden_elem _58mn"
                        role="alert"
                      >
                        <div
                          class="_58mo"
                          id="softblock_error_inner"
                          tabindex="0"
                        >
                          We couldn&#039;t create your account<br />We were not
                          able to sign you up for Facebook.
                        </div>
                      </div>
                      <form
                        method="post"
                        id="reg"
                        name="reg"
                        action="https://m.facebook.com/reg/?privacy_mutation_token=eyJ0eXBlIjowLCJjcmVhdGlvbl90aW1lIjoxNjIyODA3ODg2LCJjYWxsc2l0ZV9pZCI6MjY5NTQ4NDUzMDcyMDk1MX0%3D"
                        onsubmit="return false;"
                      >
                        <input
                          type="hidden"
                          name="jazoest"
                          value="2871"
                          autocomplete="off"
                        /><input
                          type="hidden"
                          name="lsd"
                          value="AVrePb49Db4"
                          autocomplete="off"
                        />
                        <div id="reg_form_box" class="large_form">
                          <div id="fullname_field" class="_1ixn">
                            <div class="clearfix _58mh">
                              <div class="mbm _1iy_ _a4y _3-90 lfloat _ohe">
                                <div class="_5dbb" id="u_0_l_N6">
                                  <input
                                    type="text"
                                    class="inputtext _58mg _5dba _2ph-"
                                    data-type="text"
                                    name="firstname"
                                    value=""
                                    aria-required="true"
                                    placeholder="First name"
                                    aria-label="First name"
                                    id="u_0_m_qq"
                                  /><i
                                    class="
                                      _5dbc
                                      img
                                      sp_aNr2s_dNJSQ_2x
                                      sx_5549e4
                                    "
                                  ></i
                                  ><i
                                    class="
                                      _5dbd
                                      img
                                      sp_aNr2s_dNJSQ_2x
                                      sx_c1639d
                                    "
                                  ></i>
                                  <div class="_1pc_"></div>
                                </div>
                              </div>
                              <div class="mbm _1iy_ _a4y rfloat _ohf">
                                <div class="_5dbb" id="u_0_n_sR">
                                  <input
                                    type="text"
                                    class="inputtext _58mg _5dba _2ph-"
                                    data-type="text"
                                    name="lastname"
                                    value=""
                                    aria-required="true"
                                    placeholder="Surname"
                                    aria-label="Surname"
                                    id="u_0_o_+o"
                                  /><i
                                    class="
                                      _5dbc
                                      img
                                      sp_aNr2s_dNJSQ_2x
                                      sx_5549e4
                                    "
                                  ></i
                                  ><i
                                    class="
                                      _5dbd
                                      img
                                      sp_aNr2s_dNJSQ_2x
                                      sx_c1639d
                                    "
                                  ></i>
                                  <div class="_1pc_"></div>
                                </div>
                              </div>
                            </div>
                            <div class="_1pc_" id="fullname_error_msg"></div>
                          </div>
                          <div class="mbm _a4y" id="u_0_p_CQ">
                            <div class="_5dbb" id="u_0_q_LQ">
                              <input
                                type="text"
                                class="inputtext _58mg _5dba _2ph-"
                                data-type="text"
                                name="reg_email__"
                                value=""
                                aria-required="true"
                                placeholder="Mobile number or email address"
                                aria-label="Mobile number or email address"
                                id="u_0_r_Ho"
                              /><i
                                class="_5dbc img sp_aNr2s_dNJSQ_2x sx_5549e4"
                              ></i
                              ><i
                                class="_5dbd img sp_aNr2s_dNJSQ_2x sx_c1639d"
                              ></i>
                              <div class="_1pc_"></div>
                            </div>
                          </div>
                          <div class="hidden_elem" id="u_0_s_ee">
                            <div class="mbm _a4y">
                              <div class="_5dbb" id="u_0_t_sd">
                                <input
                                  type="text"
                                  class="inputtext _58mg _5dba _2ph-"
                                  data-type="text"
                                  name="reg_email_confirmation__"
                                  value=""
                                  aria-required="true"
                                  placeholder="Re-enter email address"
                                  aria-label="Re-enter email address"
                                  id="u_0_u_1O"
                                /><i
                                  class="_5dbc img sp_aNr2s_dNJSQ_2x sx_5549e4"
                                ></i
                                ><i
                                  class="_5dbd img sp_aNr2s_dNJSQ_2x sx_c1639d"
                                ></i>
                                <div class="_1pc_"></div>
                              </div>
                            </div>
                          </div>
                          <div class="mbm _br- _a4y" id="password_field">
                            <div class="_5dbb" id="u_0_v_X8">
                              <input
                                type="password"
                                class="inputtext _58mg _5dba _2ph-"
                                data-type="password"
                                autocomplete="new-password"
                                name="reg_passwd__"
                                id="password_step_input"
                                aria-required="true"
                                placeholder="New password"
                                aria-label="New password"
                              /><i
                                class="_5dbc img sp_aNr2s_dNJSQ_2x sx_5549e4"
                              ></i
                              ><i
                                class="_5dbd img sp_aNr2s_dNJSQ_2x sx_c1639d"
                              ></i>
                              <div class="_1pc_"></div>
                            </div>
                          </div>
                          <div class="_58mq _5dbb" id="birthday_wrapper">
                            <div class="mtm mbs _2_68">Date of birth</div>
                            <div class="_5k_5">
                              <span
                                class="_5k_4"
                                data-type="selectors"
                                data-name="birthday_wrapper"
                                id="u_0_w_at"
                                ><span
                                  ><select
                                    aria-label="Day"
                                    name="birthday_day"
                                    id="day"
                                    title="Day"
                                    class="_9407 _5dba _9hk6 _8esg _9m5o"
                                  >
                                    <option value="0">Day</option>
                                    <option value="1">1</option>
                                    <option value="2">2</option>
                                    <option value="3">3</option>
                                    <option value="4" selected="1">4</option>
                                    <option value="5">5</option>
                                    <option value="6">6</option>
                                    <option value="7">7</option>
                                    <option value="8">8</option>
                                    <option value="9">9</option>
                                    <option value="10">10</option>
                                    <option value="11">11</option>
                                    <option value="12">12</option>
                                    <option value="13">13</option>
                                    <option value="14">14</option>
                                    <option value="15">15</option>
                                    <option value="16">16</option>
                                    <option value="17">17</option>
                                    <option value="18">18</option>
                                    <option value="19">19</option>
                                    <option value="20">20</option>
                                    <option value="21">21</option>
                                    <option value="22">22</option>
                                    <option value="23">23</option>
                                    <option value="24">24</option>
                                    <option value="25">25</option>
                                    <option value="26">26</option>
                                    <option value="27">27</option>
                                    <option value="28">28</option>
                                    <option value="29">29</option>
                                    <option value="30">30</option>
                                    <option value="31">31</option></select
                                  ><select
                                    aria-label="Month"
                                    name="birthday_month"
                                    id="month"
                                    title="Month"
                                    class="_9407 _5dba _9hk6 _8esg _9m5o"
                                  >
                                    <option value="0">Month</option>
                                    <option value="1">Jan</option>
                                    <option value="2">Feb</option>
                                    <option value="3">Mar</option>
                                    <option value="4">Apr</option>
                                    <option value="5">May</option>
                                    <option value="6" selected="1">Jun</option>
                                    <option value="7">Jul</option>
                                    <option value="8">Aug</option>
                                    <option value="9">Sep</option>
                                    <option value="10">Oct</option>
                                    <option value="11">Nov</option>
                                    <option value="12">Dec</option></select
                                  ><select
                                    aria-label="Year"
                                    name="birthday_year"
                                    id="year"
                                    title="Year"
                                    class="_9407 _5dba _9hk6 _8esg _9m5o"
                                  >
                                    <option value="0">Year</option>
                                    <option value="2021" selected="1">
                                      2021
                                    </option>
                                    <option value="2020">2020</option>
                                    <option value="2019">2019</option>
                                    <option value="2018">2018</option>
                                    <option value="2017">2017</option>
                                    <option value="2016">2016</option>
                                    <option value="2015">2015</option>
                                    <option value="2014">2014</option>
                                    <option value="2013">2013</option>
                                    <option value="2012">2012</option>
                                    <option value="2011">2011</option>
                                    <option value="2010">2010</option>
                                    <option value="2009">2009</option>
                                    <option value="2008">2008</option>
                                    <option value="2007">2007</option>
                                    <option value="2006">2006</option>
                                    <option value="2005">2005</option>
                                    <option value="2004">2004</option>
                                    <option value="2003">2003</option>
                                    <option value="2002">2002</option>
                                    <option value="2001">2001</option>
                                    <option value="2000">2000</option>
                                    <option value="1999">1999</option>
                                    <option value="1998">1998</option>
                                    <option value="1997">1997</option>
                                    <option value="1996">1996</option>
                                    <option value="1995">1995</option>
                                    <option value="1994">1994</option>
                                    <option value="1993">1993</option>
                                    <option value="1992">1992</option>
                                    <option value="1991">1991</option>
                                    <option value="1990">1990</option>
                                    <option value="1989">1989</option>
                                    <option value="1988">1988</option>
                                    <option value="1987">1987</option>
                                    <option value="1986">1986</option>
                                    <option value="1985">1985</option>
                                    <option value="1984">1984</option>
                                    <option value="1983">1983</option>
                                    <option value="1982">1982</option>
                                    <option value="1981">1981</option>
                                    <option value="1980">1980</option>
                                    <option value="1979">1979</option>
                                    <option value="1978">1978</option>
                                    <option value="1977">1977</option>
                                    <option value="1976">1976</option>
                                    <option value="1975">1975</option>
                                    <option value="1974">1974</option>
                                    <option value="1973">1973</option>
                                    <option value="1972">1972</option>
                                    <option value="1971">1971</option>
                                    <option value="1970">1970</option>
                                    <option value="1969">1969</option>
                                    <option value="1968">1968</option>
                                    <option value="1967">1967</option>
                                    <option value="1966">1966</option>
                                    <option value="1965">1965</option>
                                    <option value="1964">1964</option>
                                    <option value="1963">1963</option>
                                    <option value="1962">1962</option>
                                    <option value="1961">1961</option>
                                    <option value="1960">1960</option>
                                    <option value="1959">1959</option>
                                    <option value="1958">1958</option>
                                    <option value="1957">1957</option>
                                    <option value="1956">1956</option>
                                    <option value="1955">1955</option>
                                    <option value="1954">1954</option>
                                    <option value="1953">1953</option>
                                    <option value="1952">1952</option>
                                    <option value="1951">1951</option>
                                    <option value="1950">1950</option>
                                    <option value="1949">1949</option>
                                    <option value="1948">1948</option>
                                    <option value="1947">1947</option>
                                    <option value="1946">1946</option>
                                    <option value="1945">1945</option>
                                    <option value="1944">1944</option>
                                    <option value="1943">1943</option>
                                    <option value="1942">1942</option>
                                    <option value="1941">1941</option>
                                    <option value="1940">1940</option>
                                    <option value="1939">1939</option>
                                    <option value="1938">1938</option>
                                    <option value="1937">1937</option>
                                    <option value="1936">1936</option>
                                    <option value="1935">1935</option>
                                    <option value="1934">1934</option>
                                    <option value="1933">1933</option>
                                    <option value="1932">1932</option>
                                    <option value="1931">1931</option>
                                    <option value="1930">1930</option>
                                    <option value="1929">1929</option>
                                    <option value="1928">1928</option>
                                    <option value="1927">1927</option>
                                    <option value="1926">1926</option>
                                    <option value="1925">1925</option>
                                    <option value="1924">1924</option>
                                    <option value="1923">1923</option>
                                    <option value="1922">1922</option>
                                    <option value="1921">1921</option>
                                    <option value="1920">1920</option>
                                    <option value="1919">1919</option>
                                    <option value="1918">1918</option>
                                    <option value="1917">1917</option>
                                    <option value="1916">1916</option>
                                    <option value="1915">1915</option>
                                    <option value="1914">1914</option>
                                    <option value="1913">1913</option>
                                    <option value="1912">1912</option>
                                    <option value="1911">1911</option>
                                    <option value="1910">1910</option>
                                    <option value="1909">1909</option>
                                    <option value="1908">1908</option>
                                    <option value="1907">1907</option>
                                    <option value="1906">1906</option>
                                    <option value="1905">1905</option>
                                  </select></span
                                ></span
                              ><a
                                class="_58ms mlm"
                                id="birthday-help"
                                href="#"
                                title="Click for more information"
                                role="button"
                                ><i
                                  class="img sp_aNr2s_dNJSQ_2x sx_ab96b2"
                                ></i></a
                              ><i
                                class="
                                  _5dbc
                                  _5k_6
                                  img
                                  sp_aNr2s_dNJSQ_2x
                                  sx_5549e4
                                "
                              ></i
                              ><i
                                class="
                                  _5dbd
                                  _5k_7
                                  img
                                  sp_aNr2s_dNJSQ_2x
                                  sx_c1639d
                                "
                              ></i>
                              <div class="_1pc_"></div>
                            </div>
                          </div>
                          <div
                            class="_58mq _5dbb hidden_elem"
                            id="birthday_age"
                          >
                            <div class="mtm mbs _2_68">Age</div>
                            <div class="_5k_5">
                              <span
                                class="_5k_4 _58mh"
                                data-type="text"
                                data-name="birthday_wrapper"
                                ><input
                                  type="text"
                                  class="inputtext _58mg _5dba _2ph-"
                                  data-type="text"
                                  name="birthday_age"
                                  placeholder="Your age"
                                  aria-label="Your age"
                                  id="u_0_x_Iw"
                                /><a
                                  class="_8g_s"
                                  id="age_to_birthday_link"
                                  href="#"
                                  role="button"
                                  >Use date of birth</a
                                ></span
                              ><i
                                class="
                                  _5dbc
                                  _5k_6
                                  img
                                  sp_aNr2s_dNJSQ_2x
                                  sx_5549e4
                                "
                              ></i
                              ><i
                                class="
                                  _5dbd
                                  _5k_7
                                  img
                                  sp_aNr2s_dNJSQ_2x
                                  sx_c1639d
                                "
                              ></i>
                              <div class="_1pc_"></div>
                            </div>
                            <input
                              type="hidden"
                              autocomplete="off"
                              name="did_use_age"
                              value=""
                            />
                          </div>
                          <div class="mtm _5wa2 _5dbb" id="u_0_y_Rb">
                            <div class="mtm mbs _2_68">Gender</div>
                            <span
                              class="_5k_3"
                              data-type="radio"
                              data-name="gender_wrapper"
                              id="u_0_z_cd"
                              ><span class="_5k_2 _5dba"
                                ><input
                                  type="radio"
                                  class="_8esa"
                                  name="sex"
                                  value="1"
                                  id="u_0_6_9q"
                                /><label class="_58mt" for="u_0_6_9q"
                                  >Female</label
                                ></span
                              ><span class="_5k_2 _5dba"
                                ><input
                                  type="radio"
                                  class="_8esa"
                                  name="sex"
                                  value="2"
                                  id="u_0_7_SR"
                                /><label class="_58mt" for="u_0_7_SR"
                                  >Male</label
                                ></span
                              ><span class="_5k_2 _5dba"
                                ><input
                                  type="radio"
                                  class="_8esa"
                                  name="sex"
                                  value="-1"
                                  id="u_0_8_0M"
                                /><label class="_58mt" for="u_0_8_0M"
                                  >Custom</label
                                ></span
                              ></span
                            ><a
                              class="_58ms mlm"
                              aria-label=""
                              id="gender-help"
                              title="Click for more information"
                              href="#"
                              role="button"
                              ><i
                                class="img sp_aNr2s_dNJSQ_2x sx_ab96b2"
                              ></i></a
                            ><i
                              class="
                                _5dbc
                                _8esb
                                img
                                sp_aNr2s_dNJSQ_2x
                                sx_5549e4
                              "
                            ></i
                            ><i
                              class="
                                _5dbd
                                _8esc
                                img
                                sp_aNr2s_dNJSQ_2x
                                sx_c1639d
                              "
                            ></i>
                            <div class="_1pc_"></div>
                          </div>
                          <div
                            class="mtm _8ffv hidden_elem"
                            id="custom_gender_container"
                          >
                            <div
                              class="_17ie _5dbb"
                              data-type="selectors"
                              data-name="preferred_pronoun"
                              id="u_0_10_OY"
                            >
                              <select
                                aria-label="Select your pronoun"
                                name="preferred_pronoun"
                                class="_7-16 _9hk6 _5dba _9m5o"
                              >
                                <option selected="1" value="" disabled="1">
                                  Select your pronoun
                                </option>
                                <option value="1">
                                  She: &quot;Wish her a happy birthday!&quot;
                                </option>
                                <option value="2">
                                  He: &quot;Wish him a happy birthday!&quot;
                                </option>
                                <option value="6">
                                  They: &quot;Wish them a happy birthday!&quot;
                                </option></select
                              ><i
                                class="
                                  mrm
                                  _5dbc
                                  _8esb
                                  img
                                  sp_aNr2s_dNJSQ_2x
                                  sx_5549e4
                                "
                              ></i>
                            </div>
                            <div class="_83kf">
                              Your pronoun is visible to everyone.
                            </div>
                            <div class="_7-1q">
                              <input
                                type="text"
                                class="inputtext _58mg _5dba _2ph-"
                                data-type="text"
                                name="custom_gender"
                                placeholder="Gender (optional)"
                                aria-label="Gender (optional)"
                                id="u_0_11_DL"
                              />
                            </div>
                            <div class="_1pc_"></div>
                          </div>
                          <div class="_58mu" data-nocookies="1" id="u_0_12_PM">
                            <p class="_58mv">
                              By clicking Sign Up, you agree to our
                              <a
                                href="/legal/terms/update"
                                id="terms-link"
                                target="_blank"
                                rel="nofollow"
                                >Terms</a
                              >,
                              <a
                                href="/about/privacy/update"
                                id="privacy-link"
                                target="_blank"
                                rel="nofollow"
                                >Data Policy</a
                              >
                              and
                              <a
                                href="/policies/cookies/"
                                id="cookie-use-link"
                                target="_blank"
                                rel="nofollow"
                                >Cookie Policy</a
                              >. You may receive SMS notifications from us and
                              can opt out at any time.
                            </p>
                          </div>
                          <div class="_1lch">
                            <button
                              type="submit"
                              class="_6j mvm _6wk _6wl _58mi _3ma _6o _6v"
                              name="websubmit"
                              id="u_0_13_QF"
                            >
                              Sign Up</button
                            ><span class="hidden_elem _58ml" id="u_0_14_FE"
                              ><img
                                class="img"
                                src="https://static.xx.fbcdn.net/rsrc.php/v3/yw/r/_2npUSCf6mV.gif"
                                alt=""
                                width="16"
                                height="11"
                            /></span>
                          </div>
                        </div>
                        <input
                          type="hidden"
                          autocomplete="off"
                          id="referrer"
                          name="referrer"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="asked_to_login"
                          name="asked_to_login"
                          value="0"
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="use_custom_gender"
                          name="use_custom_gender"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="terms"
                          name="terms"
                          value="on"
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="ns"
                          name="ns"
                          value="0"
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="ri"
                          name="ri"
                          value="c12b7f2d-c5e8-4ea7-9f94-8758dbd1d6ca"
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="action_dialog_shown"
                          name="action_dialog_shown"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="invid"
                          name="invid"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="a"
                          name="a"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="oi"
                          name="oi"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="locale"
                          name="locale"
                          value="en_GB"
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="app_bundle"
                          name="app_bundle"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="app_data"
                          name="app_data"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="reg_data"
                          name="reg_data"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="app_id"
                          name="app_id"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="fbpage_id"
                          name="fbpage_id"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="reg_oid"
                          name="reg_oid"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="reg_instance"
                          name="reg_instance"
                          value="qQ7jX5weQWyE3p0rsZhfv71k"
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="openid_token"
                          name="openid_token"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="uo_ip"
                          name="uo_ip"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="guid"
                          name="guid"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="key"
                          name="key"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="re"
                          name="re"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="mid"
                          name="mid"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="fid"
                          name="fid"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="reg_dropoff_id"
                          name="reg_dropoff_id"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="reg_dropoff_code"
                          name="reg_dropoff_code"
                          value=""
                        /><input
                          type="hidden"
                          autocomplete="off"
                          id="ignore"
                          name="ignore"
                          value="reg_email_confirmation__"
                        />
                        <div id="reg_captcha" class="_58mw hidden_elem">
                          <div>
                            <h2 id="security_check_header">Security check</h2>
                            <div id="outer_captcha_box">
                              <div id="captcha_box">
                                <div
                                  class="field_error hidden_elem"
                                  id="captcha_response_error"
                                >
                                  This field is required.
                                </div>
                                <div
                                  id="captcha"
                                  class="captcha"
                                  data-captcha-class="ReCaptchav2Captcha"
                                >
                                  <input
                                    type="hidden"
                                    autocomplete="off"
                                    id="captcha_persist_data"
                                    name="captcha_persist_data"
                                    value="AZlnr2pSx7ytg67s8omT69VCJtfbRNO5syR46ed25pKPXwxA6xCa5lZ0yD8Yw5JFO5oXBCk7p5YxXNYV92ov2PMphY31Dt9O7LRP14IXY1KkNC86Q-4nvqUZ2yf9Owx2pF9VN7DKprRGiwbImdl7ZoWohGG-0OP7kw4kkJpWeeF-BpQ6TPAo1IGPz9gQAIQli4nJu22_9u28KmyrnTRx59aK43Lnn3TuujgkE7-83aaSEMTE8yNI75uT1rte0KIFN9vuE5v29VarH7aOrC_F-XeCbq85M6ahyRlwuasHk0lm22oGjOfX_Hpe9lju9y-gq4pEc2pTiT0GhmiOeZ6djYrwwJCd7Ed-zKaI6MwlrAa_lAuV42MwR8W6FRdyZTtQ45Y"
                                  />
                                  <div>
                                    <input
                                      name="captcha_response"
                                      id="captcha_response"
                                      type="hidden"
                                    /><iframe
                                      id="captcha-recaptcha"
                                      class="_3-8x _3-95"
                                      width="100%"
                                      height="90px"
                                      scrolling="no"
                                      frameborder="0"
                                    ></iframe>
                                  </div>
                                  <div class="captcha_input">
                                    <a
                                      href="#"
                                      onclick="CSS.show($(&#039;captcha_whats_this&#039;)); return false;"
                                      role="button"
                                      >Why am I seeing this?</a
                                    >
                                    <div
                                      id="captcha_whats_this"
                                      class="hidden_elem"
                                    >
                                      <div class="fsl fwb">Security check</div>
                                      This is a standard security test that we
                                      use to prevent spammers from sending
                                      automated requests.
                                    </div>
                                  </div>
                                </div>
                              </div>
                            </div>
                            <div
                              id="captcha_buttons"
                              class="_58p2 clearfix hidden_elem"
                            >
                              <div class="_58mx _58mm">
                                <div class="_58mz"></div>
                                <a
                                  class="_58my"
                                  href="#"
                                  role="button"
                                  id="u_0_15_1x"
                                  >Back</a
                                >
                              </div>
                              <div class="_58mm">
                                <div class="clearfix">
                                  <button
                                    type="submit"
                                    class="
                                      _6j
                                      mvm
                                      _6wk
                                      _6wl
                                      _58me
                                      _58mi
                                      _3ma
                                      _6o
                                      _6v
                                    "
                                    id="u_0_16_bY"
                                  >
                                    Sign Up</button
                                  ><span
                                    class="hidden_elem _58ml"
                                    id="u_0_17_Gp"
                                    ><img
                                      class="img"
                                      src="https://static.xx.fbcdn.net/rsrc.php/v3/yw/r/_2npUSCf6mV.gif"
                                      alt=""
                                      width="16"
                                      height="11"
                                  /></span>
                                </div>
                              </div>
                            </div>
                          </div>
                        </div>
                      </form>
                    </div>
                    <div id="reg_pages_msg" class="_58mk hidden_elem">
                      <a
                        href="/pages/create/?ref_type=registration_form"
                        class="_8esh"
                        >Create a Page</a
                      >
                      for a celebrity, band or business.
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
        <div class="">
          <div
            id="pageFooter"
            data-referrer="page_footer"
            data-testid="page_footer"
          >
            <ul
              class="uiList localeSelectorList _2pid _509- _4ki _6-h _6-j _6-i"
              data-nocookies="1"
            >
              <li>English (UK)</li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://zh-cn.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("zh_CN", "en_GB", "https:\/\/zh-cn.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 0); return false;'
                  title="Simplified Chinese (China)"
                  >中文(简体)</a
                >
              </li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://id-id.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("id_ID", "en_GB", "https:\/\/id-id.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 1); return false;'
                  title="Indonesian"
                  >Bahasa Indonesia</a
                >
              </li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://ja-jp.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("ja_JP", "en_GB", "https:\/\/ja-jp.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 2); return false;'
                  title="Japanese"
                  >日本語</a
                >
              </li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://th-th.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("th_TH", "en_GB", "https:\/\/th-th.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 3); return false;'
                  title="Thai"
                  >ภาษาไทย</a
                >
              </li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://vi-vn.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("vi_VN", "en_GB", "https:\/\/vi-vn.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 4); return false;'
                  title="Vietnamese"
                  >Tiếng Việt</a
                >
              </li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://ko-kr.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("ko_KR", "en_GB", "https:\/\/ko-kr.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 5); return false;'
                  title="Korean"
                  >한국어</a
                >
              </li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://es-la.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("es_LA", "en_GB", "https:\/\/es-la.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 6); return false;'
                  title="Spanish"
                  >Español</a
                >
              </li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://pt-br.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("pt_BR", "en_GB", "https:\/\/pt-br.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 7); return false;'
                  title="Portuguese (Brazil)"
                  >Português (Brasil)</a
                >
              </li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://fr-fr.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("fr_FR", "en_GB", "https:\/\/fr-fr.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 8); return false;'
                  title="French (France)"
                  >Français (France)</a
                >
              </li>
              <li>
                <a
                  class="_sv4"
                  dir="ltr"
                  href="https://de-de.facebook.com/campaign/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook+account+create%7C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB"
                  onclick='require("IntlUtils").setCookieLocale("de_DE", "en_GB", "https:\/\/de-de.facebook.com\/campaign\/landing.php?&amp;campaign_id=1635645017&amp;extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&amp;placement&amp;creative=514542539694&amp;keyword=facebook+account+create&amp;partner_id=googlesem&amp;extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&amp;gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB", "www_list_selector", 9); return false;'
                  title="German"
                  >Deutsch</a
                >
              </li>
              <li>
                <a
                  role="button"
                  class="_42ft _4jy0 _517i _517h _51sy"
                  rel="dialog"
                  ajaxify="/settings/language/language/?uri=https%3A%2F%2Fde-de.facebook.com%2Fcampaign%2Flanding.php%3F%26campaign_id%3D1635645017%26extra_1%3Ds%257Cc%257C514542539694%257Ce%257Cfacebook%2Baccount%2Bcreate%257C%26placement%26creative%3D514542539694%26keyword%3Dfacebook%2Baccount%2Bcreate%26partner_id%3Dgooglesem%26extra_2%3Dcampaignid%253D1635645017%2526adgroupid%253D60549328257%2526matchtype%253De%2526network%253Dg%2526source%253Dnotmobile%2526search_or_content%253Ds%2526device%253Dc%2526devicemodel%253D%2526adposition%253D%2526target%253D%2526targetid%253Dkwd-321689128740%2526loc_physical_ms%253D2702%2526loc_interest_ms%253D%2526feeditemid%253D%2526param1%253D%2526param2%253D%26gclid%3DCj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB&amp;source=www_list_selector_more"
                  href="#"
                  title="Show more languages"
                  ><i class="img sp_R1qaIcXvyec_2x sx_ae2338"></i
                ></a>
              </li>
            </ul>
            <div id="contentCurve"></div>
            <div
              id="pageFooterChildren"
              role="contentinfo"
              aria-label="Facebook site links"
            >
              <ul class="uiList pageFooterLinkList _509- _4ki _703 _6-i">
                <li>
                  <a href="/r.php" title="Sign up for Facebook">Sign Up</a>
                </li>
                <li><a href="/login/" title="Log in to Facebook">Log In</a></li>
                <li>
                  <a
                    href="https://messenger.com/"
                    title="Take a look at Messenger."
                    >Messenger</a
                  >
                </li>
                <li>
                  <a href="/lite/" title="Facebook Lite for Android."
                    >Facebook Lite</a
                  >
                </li>
                <li>
                  <a
                    href="https://www.facebook.com/watch/"
                    title="Browse our Watch videos."
                  >
                    Watch
                  </a>
                </li>
                <li>
                  <a
                    href="/directory/people/"
                    title="Browse our people directory."
                    >People</a
                  >
                </li>
                <li>
                  <a
                    href="/directory/pages/"
                    title="Browse our Pages directory."
                    >Pages</a
                  >
                </li>
                <li><a href="/pages/category/">Page categories</a></li>
                <li>
                  <a
                    href="/places/"
                    title="Take a look at popular places on Facebook."
                    >Places</a
                  >
                </li>
                <li>
                  <a href="/games/" title="Check out Facebook games.">Games</a>
                </li>
                <li>
                  <a
                    href="/directory/places/"
                    title="Browse our places directory."
                    >Locations</a
                  >
                </li>
                <li>
                  <a
                    href="/marketplace/"
                    title="Buy and sell on Facebook Marketplace."
                    >Marketplace</a
                  >
                </li>
                <li>
                  <a
                    href="https://pay.facebook.com/"
                    target="_blank"
                    title="Learn more about Facebook Pay"
                    >Facebook Pay</a
                  >
                </li>
                <li>
                  <a
                    href="/directory/groups/"
                    title="Browse our Groups directory."
                    >Groups</a
                  >
                </li>
                <li>
                  <a href="/jobs/" title="Apply for jobs and hire on Facebook."
                    >Jobs</a
                  >
                </li>
                <li>
                  <a
                    href="https://www.oculus.com/"
                    target="_blank"
                    title="Learn more about Oculus"
                    >Oculus</a
                  >
                </li>
                <li>
                  <a
                    href="https://portal.facebook.com/"
                    target="_blank"
                    title="Learn more about Portal from Facebook"
                    >Portal</a
                  >
                </li>
                <li>
                  <a
                    href="https://l.facebook.com/l.php?u=https%3A%2F%2Fwww.instagram.com%2F&amp;h=AT0pFCPCUCcaODtrdPaumVcUF6LVxQdPNMn2kqmlAhUnCc7YYo441_DCQHNwS_3bKl9b9ZZd4TiIlnTzZG8smJXOHku4JrTGwOFC7XFFxaL5RYL-j_lYGzjFpG_iKzhVQP8uBEhziK4n295EG_FlXA"
                    title="Take a look at Instagram"
                    target="_blank"
                    rel="noopener nofollow"
                    data-lynx-mode="asynclazy"
                    >Instagram</a
                  >
                </li>
                <li>
                  <a
                    href="/local/lists/245019872666104/"
                    title="Browse our Local Lists directory."
                    >Local</a
                  >
                </li>
                <li>
                  <a href="/fundraisers/" title="Donate to worthy causes."
                    >Fundraisers</a
                  >
                </li>
                <li>
                  <a
                    href="/biz/directory/"
                    title="Browse our Facebook Services directory."
                    >Services</a
                  >
                </li>
                <li>
                  <a
                    href="/votinginformationcenter/?entry_point=c2l0ZQ%3D%3D"
                    title="See the Voting Information Centre"
                    >Voting Information Centre</a
                  >
                </li>
                <li>
                  <a
                    href="https://about.facebook.com/"
                    accesskey="8"
                    title="Read our blog, discover the resource centre and find job opportunities."
                    >About</a
                  >
                </li>
                <li>
                  <a
                    href="/ad_campaign/landing.php?placement=pflo&amp;campaign_id=402047449186&amp;nav_source=unknown&amp;extra_1=auto"
                    title="Advertise on Facebook"
                    >Create ad</a
                  >
                </li>
                <li>
                  <a
                    href="/pages/create/?ref_type=site_footer"
                    title="Create a Page"
                    >Create Page</a
                  >
                </li>
                <li>
                  <a
                    href="https://developers.facebook.com/?ref=pf"
                    title="Develop on our platform."
                    >Developers</a
                  >
                </li>
                <li>
                  <a
                    href="/careers/?ref=pf"
                    title="Make your next career move to our brilliant company."
                    >Careers</a
                  >
                </li>
                <li>
                  <a
                    data-nocookies="1"
                    href="/privacy/explanation"
                    title="Learn about your privacy and Facebook."
                    >Privacy</a
                  >
                </li>
                <li>
                  <a
                    href="/policies/cookies/"
                    title="Learn about cookies and Facebook."
                    data-nocookies="1"
                    >Cookies</a
                  >
                </li>
                <li>
                  <a
                    class="_41ug"
                    data-nocookies="1"
                    href="https://www.facebook.com/help/568137493302217"
                    title="Learn about AdChoices."
                    >AdChoices<i class="img sp_R1qaIcXvyec_2x sx_972113"></i
                  ></a>
                </li>
                <li>
                  <a
                    data-nocookies="1"
                    href="/policies?ref=pf"
                    accesskey="9"
                    title="Review our terms and policies."
                    >Terms</a
                  >
                </li>
                <li>
                  <a
                    href="/help/?ref=pf"
                    accesskey="0"
                    title="Visit our Help Centre."
                    >Help</a
                  >
                </li>
                <li>
                  <a
                    accesskey="6"
                    class="accessible_elem"
                    href="/settings"
                    title="View and edit your Facebook settings."
                    >Settings</a
                  >
                </li>
                <li>
                  <a
                    accesskey="7"
                    class="accessible_elem"
                    href="/allactivity?privacy_source=activity_log_top_menu"
                    title="View your activity log"
                    >Activity log</a
                  >
                </li>
              </ul>
            </div>
            <div class="mvl copyright">
              <div><span> Facebook © 2021</span></div>
            </div>
          </div>
        </div>
      </div>
      <div></div>
      <span
        ><img
          src="https://facebook.com/security/hsts-pixel.gif"
          width="0"
          height="0"
          style="display: none"
      /></span>
    </div>
    <div style="display: none">
      <div></div>
      <div></div>
    </div>
    <script type="text/javascript" nonce="UNlQ6KHa">
      /*<![CDATA[*/ (function () {
        function si_cj(m) {
          setTimeout(function () {
            new Image().src =
              "https:\/\/error.facebook.com\/common\/scribe_endpoint.php?c=si_clickjacking&t=1342" +
              "&m=" +
              m;
          }, 5000);
        }
        if (top != self) {
          try {
            if (parent != top) {
              throw 1;
            }
            var si_cj_d = ["apps.facebook.com", "apps.beta.facebook.com"];
            var href = top.location.href.toLowerCase();
            for (var i = 0; i < si_cj_d.length; i++) {
              if (href.indexOf(si_cj_d[i]) >= 0) {
                throw 1;
              }
            }
            si_cj("3 ");
          } catch (e) {
            si_cj("1 \t");
            window.document.write(
              '\u003Cstyle nonce="UNlQ6KHa">body * {display:none !important;}\u003C\/style>\u003Ca href="#" onclick="top.location.href=window.location.href" style="display:block !important;padding:10px">Go to Facebook.com\u003C\/a>'
            ); /*qbFAQ0GK*/
          }
        }
      })(); /*]]>*/
    </script>
    <script>
      requireLazy(["HasteSupportData"], function (m) {
        m.handle({
          bxData: {
            875231: {
              uri: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/yD\/r\/d4ZIVX-5C-b.ico",
            },
          },
          clpData: { 1838142: { r: 1, s: 1 } },
          gkxData: {
            677762: { result: true, hash: "AT6e9MvRyXpacwOYDwE" },
            1243461: { result: false, hash: "AT7fIw7JO3EJySTcn-A" },
            176: { result: true, hash: "AT4NwIszPuVVxWDOK94" },
            1831204: { result: true, hash: "AT6c5pTv0JhlSnaHEHw" },
            1908135: { result: false, hash: "AT6miGypJl3m2Aq4RP0" },
            1167394: { result: false, hash: "AT7BpN-tlUPwbIIFC88" },
            819236: { result: false, hash: "AT66vW86d2uJ-kXP_jw" },
            12: { result: false, hash: "AT7MdxfOMhMQYcz02bQ" },
            1646: { result: false, hash: "AT4QD7x1GFNYajJZ2IM" },
            729631: { result: false, hash: "AT7b0tj8AHWG5lTFyjQ" },
            1281505: { result: false, hash: "AT4PHZM9gFoypCjQQtg" },
            1291023: { result: false, hash: "AT519LseIG1nwq3otIs" },
            1294182: { result: false, hash: "AT4vd6mwrtAJouEJRh0" },
            1399218: { result: true, hash: "AT6guCW1eyIkOV1E01I" },
            1401060: { result: true, hash: "AT5aetN5Gb3reIXVbJM" },
            1485055: { result: true, hash: "AT5lkGxmhfrVKlcnLKw" },
            1596063: { result: false, hash: "AT7JHuDWtaOqRuBUxJk" },
            1597642: { result: true, hash: "AT78G4fDXhlnMl7otKQ" },
            1647260: { result: false, hash: "AT4WdkrQSGE5dIsEScA" },
            1695831: { result: false, hash: "AT7RA6TJmDFGF-D6lmY" },
            1722014: { result: false, hash: "AT6_M5gpc6RLrHjczL0" },
            1742795: { result: false, hash: "AT6dbnY5JZm_bTINg-o" },
            1778302: { result: false, hash: "AT65fisZhmc2X92E57I" },
            1840809: { result: false, hash: "AT5nYctoTsr7alRiztI" },
            1848749: { result: false, hash: "AT5GsH9Kb-3W-taZ-Uc" },
            1906871: { result: false, hash: "AT6dIBiVv9bUDXlmp8s" },
            1985945: { result: true, hash: "AT66Oo5lY__5wUTpXzU" },
            2026019: { result: false, hash: "AT6u277d-9qk94Lme24" },
            1099893: { result: false, hash: "AT5kly2LSZV_DKGRnl0" },
            1951072: { result: true, hash: "AT7aEvzO1O_H_j8H9K8" },
          },
          qexData: { 1981829: { r: null } },
        });
      });
      requireLazy(["Bootloader"], function (m) {
        m.handlePayload({
          sr_revision: 1003907862,
          consistency: { rev: 1003907862 },
          rsrcMap: {
            GPw9Jn8: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ij9m4\/yU\/l\/en_GB\/sonmpDIox2x.js?_nc_x=Ij3Wp8lg5Kz",
            },
            hKY0QKT: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yv\/r\/GG1Y0sYc7My.js?_nc_x=Ij3Wp8lg5Kz",
            },
            hxRcTAv: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/r\/gsL36AdR_g8.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "0EOsKIL": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yg\/r\/RdiCMAvyPmR.js?_nc_x=Ij3Wp8lg5Kz",
            },
            Ppdai3X: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y5\/r\/9Mnuf7QraGx.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "84drxpX": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3igbH4\/yH\/l\/en_GB\/HoFQuFXofzC.js?_nc_x=Ij3Wp8lg5Kz",
            },
            Ogz9fTN: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/r\/c6YzZeMhF9W.js?_nc_x=Ij3Wp8lg5Kz",
            },
            f325j0Z: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yv\/r\/F99HIDHn0NB.js?_nc_x=Ij3Wp8lg5Kz",
            },
            LjM60fS: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iCwx4\/yk\/l\/en_GB\/GXghoOyKaat.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "9TBca97": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yR\/r\/IebPy0Qb5xk.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "2+0IZLi": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yo\/r\/JRvIOsHXjMf.js?_nc_x=Ij3Wp8lg5Kz",
            },
            dww39Pm: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i3MQ4\/yI\/l\/en_GB\/ISCf__n_lJL.js?_nc_x=Ij3Wp8lg5Kz",
            },
            qUn5m8J: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/LvRLm6NxyXG.js?_nc_x=Ij3Wp8lg5Kz",
            },
            gFXYkYg: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/r\/W6sfLvNSpU8.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "t7\/i25T": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yi\/r\/DlHkMkm3d3z.js?_nc_x=Ij3Wp8lg5Kz",
            },
            HbZmd6x: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iLl54\/yt\/l\/en_GB\/sFSK3jB8Zzl.js?_nc_x=Ij3Wp8lg5Kz",
            },
            hGlzC55: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iHTh4\/yZ\/l\/en_GB\/a6JoXTaZ2qc.js?_nc_x=Ij3Wp8lg5Kz",
            },
            PAVzyjJ: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iFJJ4\/y3\/l\/en_GB\/SKLeoP_kzTQ.js?_nc_x=Ij3Wp8lg5Kz",
            },
            CUWiLPc: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y1\/r\/FluUWqs5ZpY.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "8mI2ZsR": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iART4\/yx\/l\/en_GB\/XkVnupWskW5.js?_nc_x=Ij3Wp8lg5Kz",
            },
            BjCm7NQ: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/l\/0,cross\/FhTI4c-7nWg.css?_nc_x=Ij3Wp8lg5Kz",
            },
            AYpGnc1: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yG\/r\/alPf9aHoJb4.js?_nc_x=Ij3Wp8lg5Kz",
            },
            PdR0Lsw: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iW4s4\/ya\/l\/en_GB\/kiY91YWnWG6.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "80kpvBw": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yf\/r\/BQi9dsgP47g.js?_nc_x=Ij3Wp8lg5Kz",
            },
            BXdO9CN: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y1\/r\/Avtg82NglJH.js?_nc_x=Ij3Wp8lg5Kz",
            },
            TMAZYnT: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yZ\/r\/QPypmXRJ4Lb.js?_nc_x=Ij3Wp8lg5Kz",
            },
            G0GPuV3: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ifJ_4\/yd\/l\/en_GB\/No1ziD27zKr.js?_nc_x=Ij3Wp8lg5Kz",
            },
            sQXHLGd: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3imlR4\/y0\/l\/en_GB\/eqaeVJEidBW.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "6F6kC0O": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ya\/r\/-vjgUh7seWz.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "p\/yT8aN": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iLl54\/y6\/l\/en_GB\/bO-S4zhdn5X.js?_nc_x=Ij3Wp8lg5Kz",
            },
            lRwF0oj: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iQ5J4\/yx\/l\/en_GB\/0HZuNjvrQbG.js?_nc_x=Ij3Wp8lg5Kz",
            },
            STBaTfA: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i0Kb4\/yL\/l\/en_GB\/EC7regYovRS.js?_nc_x=Ij3Wp8lg5Kz",
            },
            AD8R1RG: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i6Zc4\/yH\/l\/en_GB\/CUjZTYn_lFl.js?_nc_x=Ij3Wp8lg5Kz",
            },
            q3dlLVT: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3irqa4\/yS\/l\/en_GB\/s4PNIFs6IBn.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "8Z9P1ae": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iQb34\/yf\/l\/en_GB\/luPW55Bzuly.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "3DtwcP7": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iMpR4\/y_\/l\/en_GB\/uBuf6UG-35C.js?_nc_x=Ij3Wp8lg5Kz",
            },
            NEoQ9BC: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iTQy4\/y8\/l\/en_GB\/UiDgv4WJe_4.js?_nc_x=Ij3Wp8lg5Kz",
            },
            Dhpttl5: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i9Zn4\/yu\/l\/en_GB\/wfPOdOf_jZf.js?_nc_x=Ij3Wp8lg5Kz",
            },
            CplY7bO: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yD\/r\/LwqXCJIeWgh.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "Etm\/IjM": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yM\/r\/rmHErsDr3Wq.js?_nc_x=Ij3Wp8lg5Kz",
            },
            o1gmVnv: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y3\/l\/0,cross\/BqaVyvzk0fq.css?_nc_x=Ij3Wp8lg5Kz",
            },
            kshIWQO: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y7\/r\/igOM52VVnon.js?_nc_x=Ij3Wp8lg5Kz",
            },
            MVb6Eqh: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iAgG4\/yi\/l\/en_GB\/VQPVRHg0i2F.js?_nc_x=Ij3Wp8lg5Kz",
            },
            XENiG66: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ii9I4\/ys\/l\/en_GB\/3DrHAQ6MDfH.js?_nc_x=Ij3Wp8lg5Kz",
            },
            f84b2zl: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y0\/r\/lREF7WINFy7.js?_nc_x=Ij3Wp8lg5Kz",
            },
            zPLgIGT: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yz\/r\/lYejkzyV906.js?_nc_x=Ij3Wp8lg5Kz",
            },
            PlusOmb: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y9\/l\/0,cross\/KFcMMZEzS75.css?_nc_x=Ij3Wp8lg5Kz",
            },
            Qr9Rc7c: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yZ\/l\/0,cross\/ClN-iYvhA1h.css?_nc_x=Ij3Wp8lg5Kz",
            },
            kaDw2Pd: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yK\/r\/KdqiGBLZ9lB.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "r+0FJ8M": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ya\/r\/sWfll3rg33r.js?_nc_x=Ij3Wp8lg5Kz",
            },
            qwxGDDh: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iztO4\/y2\/l\/en_GB\/UeMFQrhAP1g.js?_nc_x=Ij3Wp8lg5Kz",
            },
            iTmi4hX: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ibHV4\/yv\/l\/en_GB\/yt2bj7IRJtC.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "KufrNF\/": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/r\/oe1Hf_-FktX.js?_nc_x=Ij3Wp8lg5Kz",
            },
            lrlgoVP: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ikpZ4\/yU\/l\/en_GB\/AIsxsouVr7t.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "95BO+kW": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iQbs4\/yj\/l\/en_GB\/_yW0X9p4uvV.js?_nc_x=Ij3Wp8lg5Kz",
            },
            oUzDp1n: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yd\/r\/Rq0uDUg5n7P.js?_nc_x=Ij3Wp8lg5Kz",
            },
            RRpBKo5: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ig0j4\/yz\/l\/en_GB\/IenIpASIkUy.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "0BfXUcg": {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yl\/l\/0,cross\/bhHNM5Bon7-.css?_nc_x=Ij3Wp8lg5Kz",
            },
            cjTBXHq: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yQ\/l\/0,cross\/XFHUoEqiwdZ.css?_nc_x=Ij3Wp8lg5Kz",
            },
            SwTsWhd: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/l\/0,cross\/KvRIsiothsK.css?_nc_x=Ij3Wp8lg5Kz",
            },
            "fdXH+Jo": {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/l\/0,cross\/H1c4fSr5XOd.css?_nc_x=Ij3Wp8lg5Kz",
            },
            "pUPL\/hs": {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/l\/0,cross\/warupvwllQg.css?_nc_x=Ij3Wp8lg5Kz",
            },
            QU4AEQU: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/l\/0,cross\/_4X-1nSSGcl.css?_nc_x=Ij3Wp8lg5Kz",
            },
            UrWni7N: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i8NL4\/yr\/l\/en_GB\/gkqUYMeOkSo.js?_nc_x=Ij3Wp8lg5Kz",
            },
            UqhlYof: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yr\/l\/0,cross\/pagZ9Shn4Mh.css?_nc_x=Ij3Wp8lg5Kz",
            },
            WGiYxMf: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yl\/l\/0,cross\/BnhvCEVFlGJ.css?_nc_x=Ij3Wp8lg5Kz",
            },
            FXC8dMt: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y2\/r\/Exfb97t7NmM.js?_nc_x=Ij3Wp8lg5Kz",
            },
            SrpP6vx: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yT\/r\/eiW6PqMvBlt.js?_nc_x=Ij3Wp8lg5Kz",
            },
            uXVDgGT: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i9ar4\/yX\/l\/en_GB\/XsDD-0EfMxe.js?_nc_x=Ij3Wp8lg5Kz",
            },
            qynFDpa: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iDPo4\/yp\/l\/en_GB\/k1dGdqxPDKV.js?_nc_x=Ij3Wp8lg5Kz",
            },
            qik9gil: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i4Wl4\/yJ\/l\/en_GB\/3XEHfjFbXqS.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "PLLej\/a": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iNUD4\/yu\/l\/en_GB\/rvBQjaktNmW.js?_nc_x=Ij3Wp8lg5Kz",
            },
            NVC4WD0: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yw\/r\/LeQG7gfQbds.js?_nc_x=Ij3Wp8lg5Kz",
            },
            glHMXDa: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yA\/l\/0,cross\/iWsTeaqpMQ0.css?_nc_x=Ij3Wp8lg5Kz",
            },
            "dVV\/e4H": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iE0t4\/y5\/l\/en_GB\/2rOS2gcuV5X.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "6AOg1Ek": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i89Q4\/yg\/l\/en_GB\/Fyq-k0xVruf.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "68LHIu4": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ievZ4\/yI\/l\/en_GB\/OpMuLvwX1-r.js?_nc_x=Ij3Wp8lg5Kz",
            },
            f4p3vYU: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iARV4\/ys\/l\/en_GB\/eNVxkCI8LUt.js?_nc_x=Ij3Wp8lg5Kz",
            },
            hFeShQM: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iLl54\/yX\/l\/en_GB\/pHRW5ikuDOQ.js?_nc_x=Ij3Wp8lg5Kz",
            },
            poPs6SR: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y-\/l\/0,cross\/TXYbQd5nKmM.css?_nc_x=Ij3Wp8lg5Kz",
            },
            "I4Umi\/w": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yI\/r\/hfixoWxvyB_.js?_nc_x=Ij3Wp8lg5Kz",
            },
            MP1ojif: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ilae4\/yy\/l\/en_GB\/1VauT6sdveY.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "8jnN3D+": {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ya\/l\/0,cross\/9nbyDcl7xi4.css?_nc_x=Ij3Wp8lg5Kz",
            },
            GJPcihp: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yZ\/l\/0,cross\/jp5sm24RFix.css?_nc_x=Ij3Wp8lg5Kz",
            },
            ksZcxKp: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iWtR4\/yO\/l\/en_GB\/5Ca1m5L-BQd.js?_nc_x=Ij3Wp8lg5Kz",
            },
            MShROPU: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yR\/r\/6zWfLYER1_0.js?_nc_x=Ij3Wp8lg5Kz",
            },
            f9ky1ix: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iDhG4\/yY\/l\/en_GB\/_IK6e6o5h0p.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "97Pp12h": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i1MJ4\/y4\/l\/en_GB\/TK3wWOnnslH.js?_nc_x=Ij3Wp8lg5Kz",
            },
            KrpYyFZ: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yz\/l\/0,cross\/wi9B7ilT3HS.css?_nc_x=Ij3Wp8lg5Kz",
            },
            "2DoqW3H": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iDSI4\/yt\/l\/en_GB\/kI0__iNAv1l.js?_nc_x=Ij3Wp8lg5Kz",
            },
            O1duWlS: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y_\/r\/U5rBK-3kI2x.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "s3mWZ\/3": {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y0\/l\/0,cross\/CAcCOiNfN-u.css?_nc_x=Ij3Wp8lg5Kz",
              nonblocking: 1,
            },
            wWSAVz2: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iHwg4\/yk\/l\/en_GB\/zg7T61ECcBq.js?_nc_x=Ij3Wp8lg5Kz",
            },
            W2F3wcx: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ys\/l\/0,cross\/IlCUBbDOymC.css?_nc_x=Ij3Wp8lg5Kz",
            },
            Qh1rypZ: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i0x74\/yl\/l\/en_GB\/hfbNalcVpxL.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "5IaMihT": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yr\/r\/1z9DCaxrAkd.js?_nc_x=Ij3Wp8lg5Kz",
            },
            KYxZDfY: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yY\/r\/Ri8IdCnc5S9.js?_nc_x=Ij3Wp8lg5Kz",
            },
            kor0e6v: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iI0L4\/y9\/l\/en_GB\/c57vQtqfHEp.js?_nc_x=Ij3Wp8lg5Kz",
            },
            Pnaa0cx: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3ibcU4\/yQ\/l\/en_GB\/QrvT6hcTeBK.js?_nc_x=Ij3Wp8lg5Kz",
            },
            a834SZr: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3idBq4\/y0\/l\/en_GB\/t8rtoro_Qa9.js?_nc_x=Ij3Wp8lg5Kz",
            },
            RCSXbcT: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iqgg4\/yZ\/l\/en_GB\/lDI2FF0rLQA.js?_nc_x=Ij3Wp8lg5Kz",
            },
            fTFZOQv: {
              type: "css",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yX\/l\/0,cross\/t6aNpYQOMoz.css?_nc_x=Ij3Wp8lg5Kz",
            },
            gWMJgTe: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yH\/r\/iGksp69foR_.js?_nc_x=Ij3Wp8lg5Kz",
            },
            Gj8v9L4: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yp\/r\/ywDDEhGQ14B.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "04i\/nPw": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iCG14\/yc\/l\/en_GB\/cewzxOFJP52.js?_nc_x=Ij3Wp8lg5Kz",
            },
            jQSSxRa: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iTfb4\/yD\/l\/en_GB\/WUesvLZgqB4.js?_nc_x=Ij3Wp8lg5Kz",
            },
            SWx3yNv: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yW\/r\/O_SjdcR-xKL.js?_nc_x=Ij3Wp8lg5Kz",
            },
            x22Oby4: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/y0\/r\/fN3cCj7Il4D.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "8ELCBwH": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/ye\/r\/VRzSVH5iU-V.js?_nc_x=Ij3Wp8lg5Kz",
            },
            JRUrNtn: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3i2WW4\/yt\/l\/en_GB\/id5qha_EOK2.js?_nc_x=Ij3Wp8lg5Kz",
            },
            oE4DofT: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yJ\/r\/EejAgnHUad4.js?_nc_x=Ij3Wp8lg5Kz",
            },
            VvVFw8n: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yn\/r\/AWepvf-vdZG.js?_nc_x=Ij3Wp8lg5Kz",
            },
            EreD4IU: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iYXl4\/yi\/l\/en_GB\/kKuOVWsfUFf.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "D+R2NVL": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iac54\/yD\/l\/en_GB\/YKTmR9Xx_te.js?_nc_x=Ij3Wp8lg5Kz",
            },
            EeceqJl: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/r\/gJGC32SABAy.js?_nc_x=Ij3Wp8lg5Kz",
            },
            l8wVOKm: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iLh94\/yg\/l\/en_GB\/nCZ5JQ93fP7.js?_nc_x=Ij3Wp8lg5Kz",
            },
            HnuAhvL: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/r\/aayaEmv1DZZ.js?_nc_x=Ij3Wp8lg5Kz",
            },
            EhVZIh3: {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3\/yL\/r\/gCC5kKnI9nW.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "y1PT+Nd": {
              type: "js",
              src: "https:\/\/static.xx.fbcdn.net\/rsrc.php\/v3iX3c4\/yu\/l\/en_GB\/pjUyjqc2oKP.js?_nc_x=Ij3Wp8lg5Kz",
            },
            "P\/mr5VE": {
              type: "css",
              src: "data:text\/css; charset=utf-8,\u002523bootloader_P_mr5VE{height:42px;}.bootloader_P_mr5VE{display:block!important;}",
              nc: 1,
              d: 1,
            },
          },
          compMap: {
            ODS: { r: ["GPw9Jn8", "hKY0QKT", "hxRcTAv"], be: 1 },
            Dock: {
              r: [
                "0EOsKIL",
                "GPw9Jn8",
                "Ppdai3X",
                "84drxpX",
                "fD0lNKx",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "78j1+Wx",
              ],
              be: 1,
            },
            WebSpeedInteractionsTypedLogger: {
              r: ["f325j0Z", "GPw9Jn8", "hKY0QKT", "hxRcTAv", "LjM60fS"],
              rds: { m: ["BanzaiScuba_DEPRECATED"], r: ["9TBca97"] },
              be: 1,
            },
            AsyncRequest: {
              r: ["GPw9Jn8", "2+0IZLi", "78j1+Wx", "fD0lNKx"],
              rds: {
                m: ["FbtLogging", "IntlQtEventFalcoEvent"],
                r: ["9TBca97", "hKY0QKT", "hxRcTAv"],
              },
              be: 1,
            },
            DOM: { r: ["GPw9Jn8", "78j1+Wx"], be: 1 },
            Form: { r: ["GPw9Jn8", "84drxpX", "78j1+Wx"], be: 1 },
            FormSubmit: {
              r: [
                "dww39Pm",
                "GPw9Jn8",
                "84drxpX",
                "2+0IZLi",
                "78j1+Wx",
                "fD0lNKx",
              ],
              rds: {
                m: [
                  "FbtLogging",
                  "IntlQtEventFalcoEvent",
                  "BanzaiScuba_DEPRECATED",
                ],
                r: ["9TBca97", "hKY0QKT", "hxRcTAv"],
              },
              be: 1,
            },
            Input: { r: ["84drxpX"], be: 1 },
            Live: { r: ["qUn5m8J", "GPw9Jn8", "gFXYkYg", "78j1+Wx"], be: 1 },
            Toggler: {
              r: [
                "0EOsKIL",
                "GPw9Jn8",
                "Ppdai3X",
                "fD0lNKx",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "78j1+Wx",
              ],
              be: 1,
            },
            Tooltip: {
              r: [
                "78j1+Wx",
                "0EOsKIL",
                "epDBIN3",
                "GPw9Jn8",
                "t7\/i25T",
                "HbZmd6x",
                "84drxpX",
                "fD0lNKx",
                "Ogz9fTN",
                "2+0IZLi",
                "LjM60fS",
                "Ppdai3X",
              ],
              rds: {
                m: [
                  "FbtLogging",
                  "IntlQtEventFalcoEvent",
                  "PageTransitions",
                  "BanzaiScuba_DEPRECATED",
                  "Animation",
                ],
                r: ["9TBca97", "hKY0QKT", "hxRcTAv"],
              },
              be: 1,
            },
            URI: { r: [], be: 1 },
            trackReferrer: {
              r: [],
              rds: {
                m: ["BanzaiScuba_DEPRECATED"],
                r: ["9TBca97", "GPw9Jn8", "hKY0QKT", "hxRcTAv"],
              },
              be: 1,
            },
            PhotoTagApproval: {
              r: ["hGlzC55", "GPw9Jn8", "PAVzyjJ", "78j1+Wx"],
              be: 1,
            },
            PhotoSnowlift: {
              r: [
                "CUWiLPc",
                "8mI2ZsR",
                "BjCm7NQ",
                "hGlzC55",
                "AYpGnc1",
                "PdR0Lsw",
                "80kpvBw",
                "78j1+Wx",
                "BXdO9CN",
                "0EOsKIL",
                "9TBca97",
                "epDBIN3",
                "TMAZYnT",
                "G0GPuV3",
                "sQXHLGd",
                "ahdrpfa",
                "6F6kC0O",
                "GPw9Jn8",
                "p\/yT8aN",
                "lRwF0oj",
                "t7\/i25T",
                "STBaTfA",
                "HbZmd6x",
                "AD8R1RG",
                "q3dlLVT",
                "8Z9P1ae",
                "3DtwcP7",
                "NEoQ9BC",
                "Dhpttl5",
                "CplY7bO",
                "Ppdai3X",
                "Etm\/IjM",
                "o1gmVnv",
                "kshIWQO",
                "UOuOOFS",
                "84drxpX",
                "MVb6Eqh",
                "WbmjGEn",
                "VnjKvjF",
                "hKY0QKT",
                "XENiG66",
                "f84b2zl",
                "zPLgIGT",
                "fD0lNKx",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "caUu9fM",
                "PlusOmb",
                "Qr9Rc7c",
                "kaDw2Pd",
                "r+0FJ8M",
                "2+0IZLi",
                "qwxGDDh",
                "iTmi4hX",
                "LjM60fS",
                "KufrNF\/",
              ],
              rds: {
                m: [
                  "Animation",
                  "VisualCompletionGating",
                  "FbtLogging",
                  "IntlQtEventFalcoEvent",
                  "BanzaiScuba_DEPRECATED",
                  "PageTransitions",
                ],
              },
              be: 1,
            },
            PhotoTagger: {
              r: [
                "CUWiLPc",
                "8mI2ZsR",
                "BjCm7NQ",
                "hGlzC55",
                "AYpGnc1",
                "lrlgoVP",
                "95BO+kW",
                "oUzDp1n",
                "RRpBKo5",
                "0BfXUcg",
                "PdR0Lsw",
                "78j1+Wx",
                "cjTBXHq",
                "SwTsWhd",
                "BXdO9CN",
                "0EOsKIL",
                "fdXH+Jo",
                "9TBca97",
                "epDBIN3",
                "TMAZYnT",
                "G0GPuV3",
                "pUPL\/hs",
                "QU4AEQU",
                "ahdrpfa",
                "UrWni7N",
                "6F6kC0O",
                "UqhlYof",
                "GPw9Jn8",
                "p\/yT8aN",
                "WGiYxMf",
                "FXC8dMt",
                "t7\/i25T",
                "STBaTfA",
                "HbZmd6x",
                "SrpP6vx",
                "uXVDgGT",
                "AD8R1RG",
                "3DtwcP7",
                "NEoQ9BC",
                "qynFDpa",
                "qik9gil",
                "PLLej\/a",
                "NVC4WD0",
                "glHMXDa",
                "PAVzyjJ",
                "Dhpttl5",
                "CplY7bO",
                "Ppdai3X",
                "Etm\/IjM",
                "o1gmVnv",
                "kshIWQO",
                "UOuOOFS",
                "84drxpX",
                "MVb6Eqh",
                "dVV\/e4H",
                "WbmjGEn",
                "6AOg1Ek",
                "68LHIu4",
                "f4p3vYU",
                "hFeShQM",
                "VnjKvjF",
                "hKY0QKT",
                "XENiG66",
                "f84b2zl",
                "zPLgIGT",
                "fD0lNKx",
                "7\/bfoUc",
                "hxRcTAv",
                "poPs6SR",
                "Ogz9fTN",
                "caUu9fM",
                "I4Umi\/w",
                "MP1ojif",
                "kaDw2Pd",
                "r+0FJ8M",
                "2+0IZLi",
                "8jnN3D+",
                "iTmi4hX",
                "LjM60fS",
                "GJPcihp",
                "ksZcxKp",
                "MShROPU",
                "f9ky1ix",
                "KufrNF\/",
              ],
              rdfds: {
                m: [
                  "GamesVideoModerationRulesNux.react",
                  "GamesVideoDeleteCommentDialog.react",
                  "GamesVideoCommentRemovedDialog.react",
                ],
                r: [
                  "97Pp12h",
                  "KrpYyFZ",
                  "2DoqW3H",
                  "O1duWlS",
                  "s3mWZ\/3",
                  "wWSAVz2",
                  "W2F3wcx",
                  "Qh1rypZ",
                  "5IaMihT",
                  "KYxZDfY",
                  "kor0e6v",
                ],
              },
              rds: {
                m: [
                  "PresenceStatus",
                  "FbtLogging",
                  "IntlQtEventFalcoEvent",
                  "BanzaiScuba_DEPRECATED",
                  "Animation",
                  "PageTransitions",
                  "LynxAsyncCallbackFalcoEvent",
                  "CometSuspenseFalcoEvent",
                ],
                r: ["Pnaa0cx", "gFXYkYg", "a834SZr"],
              },
              be: 1,
            },
            PhotoTags: {
              r: ["hGlzC55", "GPw9Jn8", "PAVzyjJ", "78j1+Wx"],
              be: 1,
            },
            TagTokenizer: {
              r: [
                "2DoqW3H",
                "G0GPuV3",
                "ahdrpfa",
                "GPw9Jn8",
                "RCSXbcT",
                "fTFZOQv",
                "PAVzyjJ",
                "84drxpX",
                "VnjKvjF",
                "fD0lNKx",
                "Ogz9fTN",
                "MP1ojif",
                "78j1+Wx",
              ],
              rds: {
                m: ["FbtLogging", "IntlQtEventFalcoEvent"],
                r: ["9TBca97", "hKY0QKT", "hxRcTAv"],
              },
              be: 1,
            },
            AsyncDialog: {
              r: [
                "8mI2ZsR",
                "78j1+Wx",
                "0EOsKIL",
                "GPw9Jn8",
                "p\/yT8aN",
                "Ppdai3X",
                "WbmjGEn",
                "VnjKvjF",
                "hKY0QKT",
                "fD0lNKx",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "caUu9fM",
                "2+0IZLi",
                "LjM60fS",
                "KufrNF\/",
              ],
              rds: {
                m: ["FbtLogging", "IntlQtEventFalcoEvent"],
                r: ["9TBca97"],
              },
              be: 1,
            },
            Hovercard: {
              r: [
                "8mI2ZsR",
                "lrlgoVP",
                "78j1+Wx",
                "0EOsKIL",
                "epDBIN3",
                "ahdrpfa",
                "GPw9Jn8",
                "WGiYxMf",
                "t7\/i25T",
                "HbZmd6x",
                "AD8R1RG",
                "Ppdai3X",
                "84drxpX",
                "WbmjGEn",
                "hFeShQM",
                "fD0lNKx",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "2+0IZLi",
                "LjM60fS",
                "hKY0QKT",
              ],
              rds: {
                m: [
                  "FbtLogging",
                  "IntlQtEventFalcoEvent",
                  "BanzaiScuba_DEPRECATED",
                  "PageTransitions",
                  "Animation",
                ],
                r: ["9TBca97"],
              },
              be: 1,
            },
            XSalesPromoWWWDetailsDialogAsyncController: {
              r: ["gWMJgTe"],
              be: 1,
            },
            XOfferController: { r: ["f325j0Z"], be: 1 },
            PerfXSharedFields: { r: ["GPw9Jn8"], be: 1 },
            KeyEventTypedLogger: {
              r: ["Gj8v9L4", "GPw9Jn8", "hKY0QKT", "hxRcTAv", "LjM60fS"],
              rds: { m: ["BanzaiScuba_DEPRECATED"], r: ["9TBca97"] },
              be: 1,
            },
            Dialog: {
              r: [
                "BjCm7NQ",
                "0EOsKIL",
                "GPw9Jn8",
                "NEoQ9BC",
                "Ppdai3X",
                "84drxpX",
                "fD0lNKx",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "2+0IZLi",
                "78j1+Wx",
                "LjM60fS",
                "t7\/i25T",
              ],
              rds: {
                m: [
                  "FbtLogging",
                  "IntlQtEventFalcoEvent",
                  "Animation",
                  "PageTransitions",
                  "BanzaiScuba_DEPRECATED",
                ],
                r: ["9TBca97", "hKY0QKT"],
              },
              be: 1,
            },
            ExceptionDialog: {
              r: [
                "8mI2ZsR",
                "04i\/nPw",
                "78j1+Wx",
                "0EOsKIL",
                "6F6kC0O",
                "GPw9Jn8",
                "p\/yT8aN",
                "AD8R1RG",
                "jQSSxRa",
                "ksZcxKp",
                "W2F3wcx",
                "Ppdai3X",
                "UOuOOFS",
                "84drxpX",
                "WbmjGEn",
                "hKY0QKT",
                "fD0lNKx",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "caUu9fM",
                "2+0IZLi",
                "LjM60fS",
              ],
              rds: {
                m: ["FbtLogging", "IntlQtEventFalcoEvent"],
                r: ["9TBca97"],
              },
              be: 1,
            },
            QuickSandSolver: {
              r: [
                "PdR0Lsw",
                "GPw9Jn8",
                "SWx3yNv",
                "x22Oby4",
                "8ELCBwH",
                "84drxpX",
                "JRUrNtn",
                "2+0IZLi",
                "78j1+Wx",
                "fD0lNKx",
              ],
              rds: {
                m: ["FbtLogging", "IntlQtEventFalcoEvent"],
                r: ["9TBca97", "hKY0QKT", "hxRcTAv"],
              },
              be: 1,
            },
            ConfirmationDialog: {
              r: ["oE4DofT", "GPw9Jn8", "84drxpX", "Ogz9fTN", "78j1+Wx"],
              be: 1,
            },
            QPLInspector: { r: ["VvVFw8n"], be: 1 },
            ReactDOM: {
              r: [
                "Ogz9fTN",
                "KufrNF\/",
                "LjM60fS",
                "GPw9Jn8",
                "hxRcTAv",
                "78j1+Wx",
              ],
              be: 1,
            },
            ContextualLayerInlineTabOrder: {
              r: [
                "9TBca97",
                "GPw9Jn8",
                "hFeShQM",
                "zPLgIGT",
                "fD0lNKx",
                "Ogz9fTN",
                "78j1+Wx",
              ],
              be: 1,
            },
            CSSFade: {
              r: ["0EOsKIL", "GPw9Jn8", "84drxpX", "VnjKvjF", "78j1+Wx"],
              be: 1,
            },
            "XUIDialogButton.react": {
              r: [
                "8mI2ZsR",
                "0EOsKIL",
                "GPw9Jn8",
                "p\/yT8aN",
                "ksZcxKp",
                "UOuOOFS",
                "hKY0QKT",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "2+0IZLi",
                "78j1+Wx",
                "LjM60fS",
                "fD0lNKx",
              ],
              rds: {
                m: ["FbtLogging", "IntlQtEventFalcoEvent"],
                r: ["9TBca97"],
              },
              be: 1,
            },
            "XUIDialogBody.react": {
              r: [
                "0EOsKIL",
                "6F6kC0O",
                "GPw9Jn8",
                "ksZcxKp",
                "7\/bfoUc",
                "Ogz9fTN",
                "caUu9fM",
                "LjM60fS",
              ],
              be: 1,
            },
            "XUIDialogFooter.react": {
              r: [
                "8mI2ZsR",
                "0EOsKIL",
                "6F6kC0O",
                "GPw9Jn8",
                "ksZcxKp",
                "W2F3wcx",
                "7\/bfoUc",
                "Ogz9fTN",
                "caUu9fM",
                "LjM60fS",
              ],
              be: 1,
            },
            "XUIDialogTitle.react": {
              r: [
                "8mI2ZsR",
                "0EOsKIL",
                "GPw9Jn8",
                "p\/yT8aN",
                "WbmjGEn",
                "hKY0QKT",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "caUu9fM",
                "2+0IZLi",
                "78j1+Wx",
                "LjM60fS",
                "fD0lNKx",
              ],
              rds: {
                m: ["FbtLogging", "IntlQtEventFalcoEvent"],
                r: ["9TBca97"],
              },
              be: 1,
            },
            "XUIGrayText.react": {
              r: [
                "0EOsKIL",
                "6F6kC0O",
                "GPw9Jn8",
                "ksZcxKp",
                "7\/bfoUc",
                "Ogz9fTN",
                "LjM60fS",
              ],
              be: 1,
            },
            DialogX: {
              r: [
                "8mI2ZsR",
                "78j1+Wx",
                "0EOsKIL",
                "GPw9Jn8",
                "Ppdai3X",
                "fD0lNKx",
                "7\/bfoUc",
                "hxRcTAv",
                "Ogz9fTN",
                "caUu9fM",
              ],
              rds: {
                m: ["FbtLogging", "IntlQtEventFalcoEvent"],
                r: ["9TBca97", "hKY0QKT"],
              },
              be: 1,
            },
            React: { r: ["GPw9Jn8", "LjM60fS"], be: 1 },
          },
        });
      });
    </script>
    <script>
      requireLazy(["InitialJSLoader"], function (InitialJSLoader) {
        InitialJSLoader.loadOnDOMContentReady([
          "9TBca97",
          "84drxpX",
          "0EOsKIL",
          "GPw9Jn8",
          "Ppdai3X",
          "hxRcTAv",
          "Ogz9fTN",
          "EreD4IU",
          "hKY0QKT",
          "2+0IZLi",
          "zPLgIGT",
          "8mI2ZsR",
          "2DoqW3H",
          "lrlgoVP",
          "PdR0Lsw",
          "D+R2NVL",
          "EeceqJl",
          "t7\/i25T",
          "AD8R1RG",
          "l8wVOKm",
          "HnuAhvL",
          "EhVZIh3",
          "y1PT+Nd",
          "LjM60fS",
          "KufrNF\/",
          "P\/mr5VE",
          "W2F3wcx",
        ]);
      });
    </script>
    <script>
      requireLazy(
        ["TimeSliceImpl", "ServerJS"],
        function (TimeSlice, ServerJS) {
          var s = new ServerJS();
          s.handle({
            define: [
              [
                "LinkshimHandlerConfig",
                [],
                {
                  supports_meta_referrer: true,
                  default_meta_referrer_policy: "origin-when-crossorigin",
                  switched_meta_referrer_policy: "origin",
                  non_linkshim_lnfb_mode: null,
                  link_react_default_hash:
                    "AT3lQO_inh31youA4UVPvz3lxbgGgjIWmwXha6jy7Vo9XdkwnEa8LTaoXhGdDsu41vewlUuYc5Foz1k4V7G0sKX-EIwymiCyokGa5dk_YiYOmSSglz9AqpuyrhCMOQUL9Fwd00xom8UL3HNAT6kQuA",
                  untrusted_link_default_hash:
                    "AT0EljZCQ3NPturhKSDn5DHb3adsExTEmwWFwK9DRcjt-o7ulFapBBMufs1WmSveDyfPa0zk6_PsRCO1ZgyVeV527iq-1nR3r50r6WPIvnD_w-gRLcdoXrHeKk8RItvFSfqPqzN4y_TxwM82Bk9aTg",
                  linkshim_host: "l.facebook.com",
                  linkshim_path: "\/l.php",
                  linkshim_enc_param: "h",
                  linkshim_url_param: "u",
                  use_rel_no_opener: true,
                  always_use_https: true,
                  onion_always_shim: true,
                  middle_click_requires_event: true,
                  www_safe_js_mode: "asynclazy",
                  m_safe_js_mode: "MLynx_asynclazy",
                  ghl_param_link_shim: false,
                  click_ids: [],
                  is_linkshim_supported: true,
                  current_domain: "facebook.com",
                  blocklisted_domains: [
                    "ad.doubleclick.net",
                    "ads-encryption-url-example.com",
                    "bs.serving-sys.com",
                    "ad.atdmt.com",
                  ],
                },
                27,
              ],
            ],
            instances: [
              [
                "__inst_5b4d0c00_0_0_0e",
                ["Menu", "XUIMenuWithSquareCorner", "XUIMenuTheme"],
                [
                  [],
                  {
                    id: "u_0_0_qH",
                    behaviors: [{ __m: "XUIMenuWithSquareCorner" }],
                    theme: { __m: "XUIMenuTheme" },
                  },
                ],
                2,
              ],
              [
                "__inst_5b4d0c00_0_1_J9",
                [
                  "Menu",
                  "MenuItem",
                  "__markup_3310c079_0_0_Zc",
                  "HTML",
                  "__markup_3310c079_0_1_QP",
                  "__markup_3310c079_0_2_oJ",
                  "__markup_3310c079_0_3_p9",
                  "XUIMenuWithSquareCorner",
                  "XUIMenuTheme",
                ],
                [
                  [
                    {
                      value: "key_shortcuts",
                      ctor: { __m: "MenuItem" },
                      markup: { __m: "__markup_3310c079_0_0_Zc" },
                      label: "Keyboard shortcut help...",
                      title: "",
                      className: null,
                    },
                    {
                      href: "\/help\/accessibility",
                      target: "_blank",
                      value: "help_center",
                      ctor: { __m: "MenuItem" },
                      markup: { __m: "__markup_3310c079_0_1_QP" },
                      label: "Accessibility Help Centre",
                      title: "",
                      className: null,
                    },
                    {
                      href: "\/help\/contact\/accessibility",
                      target: "_blank",
                      value: "submit_feedback",
                      ctor: { __m: "MenuItem" },
                      markup: { __m: "__markup_3310c079_0_2_oJ" },
                      label: "Submit feedback",
                      title: "",
                      className: null,
                    },
                    {
                      href: "\/accessibility",
                      target: "_blank",
                      value: "facebook_page",
                      ctor: { __m: "MenuItem" },
                      markup: { __m: "__markup_3310c079_0_3_p9" },
                      label: "Updates from Facebook Accessibility",
                      title: "",
                      className: null,
                    },
                  ],
                  {
                    id: "u_0_1_Ji",
                    behaviors: [{ __m: "XUIMenuWithSquareCorner" }],
                    theme: { __m: "XUIMenuTheme" },
                  },
                ],
                2,
              ],
              [
                "__inst_e5ad243d_0_0_DK",
                [
                  "PopoverMenu",
                  "__inst_1de146dc_0_1_Ty",
                  "__elem_ec77afbd_0_1_y7",
                  "__inst_5b4d0c00_0_1_J9",
                ],
                [
                  { __m: "__inst_1de146dc_0_1_Ty" },
                  { __m: "__elem_ec77afbd_0_1_y7" },
                  { __m: "__inst_5b4d0c00_0_1_J9" },
                  [],
                ],
                2,
              ],
              [
                "__inst_e5ad243d_0_1_UA",
                [
                  "PopoverMenu",
                  "__inst_1de146dc_0_0_I1",
                  "__elem_ec77afbd_0_0_E2",
                  "__inst_5b4d0c00_0_0_0e",
                ],
                [
                  { __m: "__inst_1de146dc_0_0_I1" },
                  { __m: "__elem_ec77afbd_0_0_E2" },
                  { __m: "__inst_5b4d0c00_0_0_0e" },
                  [],
                ],
                2,
              ],
              [
                "__inst_1de146dc_0_0_I1",
                [
                  "Popover",
                  "__elem_1de146dc_0_0_pQ",
                  "__elem_ec77afbd_0_0_E2",
                  "ContextualLayerAutoFlip",
                  "ContextualDialogArrow",
                ],
                [
                  { __m: "__elem_1de146dc_0_0_pQ" },
                  { __m: "__elem_ec77afbd_0_0_E2" },
                  [
                    { __m: "ContextualLayerAutoFlip" },
                    { __m: "ContextualDialogArrow" },
                  ],
                  { alignh: "left", position: "below" },
                ],
                2,
              ],
              [
                "__inst_1de146dc_0_1_Ty",
                [
                  "Popover",
                  "__elem_1de146dc_0_1_RX",
                  "__elem_ec77afbd_0_1_y7",
                  "ContextualLayerAutoFlip",
                  "ContextualDialogArrow",
                ],
                [
                  { __m: "__elem_1de146dc_0_1_RX" },
                  { __m: "__elem_ec77afbd_0_1_y7" },
                  [
                    { __m: "ContextualLayerAutoFlip" },
                    { __m: "ContextualDialogArrow" },
                  ],
                  { alignh: "right", position: "below" },
                ],
                2,
              ],
              [
                "__inst_ead1e565_0_0_w6",
                [
                  "DialogX",
                  "LayerFadeOnHide",
                  "LayerHideOnBlur",
                  "LayerHideOnEscape",
                  "DialogHideOnSuccess",
                  "LayerHideOnTransition",
                  "LayerRemoveOnHide",
                  "__markup_9f5fac15_0_0_Z3",
                  "HTML",
                ],
                [
                  {
                    width: 445,
                    autohide: null,
                    titleID: "u_0_2_fA",
                    redirectURI: null,
                    fixedTopPosition: null,
                    ignoreFixedTopInShortViewport: false,
                    label: null,
                    labelledBy: null,
                    modal: true,
                    xui: true,
                    addedBehaviors: [
                      { __m: "LayerFadeOnHide" },
                      { __m: "LayerHideOnBlur" },
                      { __m: "LayerHideOnEscape" },
                      { __m: "DialogHideOnSuccess" },
                      { __m: "LayerHideOnTransition" },
                      { __m: "LayerRemoveOnHide" },
                    ],
                    classNames: ["_2rs6"],
                  },
                  { __m: "__markup_9f5fac15_0_0_Z3" },
                ],
                2,
              ],
              [
                "__inst_ead1e565_0_1_rd",
                [
                  "DialogX",
                  "LayerFadeOnHide",
                  "LayerHideOnBlur",
                  "LayerHideOnEscape",
                  "DialogHideOnSuccess",
                  "LayerHideOnTransition",
                  "LayerRemoveOnHide",
                  "__markup_9f5fac15_0_1_AF",
                  "HTML",
                ],
                [
                  {
                    width: 445,
                    autohide: null,
                    titleID: "u_0_3_c1",
                    redirectURI: null,
                    fixedTopPosition: null,
                    ignoreFixedTopInShortViewport: false,
                    label: null,
                    labelledBy: null,
                    modal: true,
                    xui: true,
                    addedBehaviors: [
                      { __m: "LayerFadeOnHide" },
                      { __m: "LayerHideOnBlur" },
                      { __m: "LayerHideOnEscape" },
                      { __m: "DialogHideOnSuccess" },
                      { __m: "LayerHideOnTransition" },
                      { __m: "LayerRemoveOnHide" },
                    ],
                    classNames: ["_2rs6"],
                  },
                  { __m: "__markup_9f5fac15_0_1_AF" },
                ],
                2,
              ],
              [
                "__inst_41781d56_0_0_To",
                [
                  "ContextualDialog",
                  "ContextualDialogArrow",
                  "ContextualDialogXUITheme",
                  "LayerFadeOnShow",
                  "LayerFadeOnHide",
                  "LayerHideOnBlur",
                  "LayerHideOnEscape",
                  "DialogHideOnSuccess",
                  "LayerHideOnTransition",
                  "LayerRemoveOnHide",
                  "LayerAutoFocus",
                  "ContextualLayerAutoFlip",
                  "LayerTabIsolation",
                  "__markup_a588f507_0_0_aN",
                  "HTML",
                ],
                [
                  {
                    width: 312,
                    context: null,
                    contextID: "birthday-help",
                    contextSelector: null,
                    dialogRole: "dialog",
                    labelledBy: "u_0_4_9o",
                    position: "left",
                    alignment: "left",
                    offsetX: 0,
                    offsetY: 0,
                    arrowBehavior: { __m: "ContextualDialogArrow" },
                    hoverShowDelay: null,
                    hoverHideDelay: null,
                    theme: { __m: "ContextualDialogXUITheme" },
                    addedBehaviors: [
                      { __m: "LayerFadeOnShow" },
                      { __m: "LayerFadeOnHide" },
                      { __m: "LayerHideOnBlur" },
                      { __m: "LayerHideOnEscape" },
                      { __m: "DialogHideOnSuccess" },
                      { __m: "LayerHideOnTransition" },
                      { __m: "LayerRemoveOnHide" },
                      { __m: "LayerAutoFocus" },
                      { __m: "ContextualLayerAutoFlip" },
                      { __m: "LayerTabIsolation" },
                    ],
                  },
                  { __m: "__markup_a588f507_0_0_aN" },
                ],
                2,
              ],
              [
                "__inst_41781d56_0_1_nv",
                [
                  "ContextualDialog",
                  "ContextualDialogArrow",
                  "ContextualDialogXUITheme",
                  "LayerFadeOnShow",
                  "LayerFadeOnHide",
                  "LayerHideOnBlur",
                  "LayerHideOnEscape",
                  "DialogHideOnSuccess",
                  "LayerHideOnTransition",
                  "LayerRemoveOnHide",
                  "LayerAutoFocus",
                  "ContextualLayerAutoFlip",
                  "LayerTabIsolation",
                  "__markup_a588f507_0_1_Ob",
                  "HTML",
                ],
                [
                  {
                    width: 312,
                    context: null,
                    contextID: "gender-help",
                    contextSelector: null,
                    dialogRole: "dialog",
                    labelledBy: "u_0_9_R2",
                    position: "left",
                    alignment: "left",
                    offsetX: 0,
                    offsetY: 0,
                    arrowBehavior: { __m: "ContextualDialogArrow" },
                    hoverShowDelay: null,
                    hoverHideDelay: null,
                    theme: { __m: "ContextualDialogXUITheme" },
                    addedBehaviors: [
                      { __m: "LayerFadeOnShow" },
                      { __m: "LayerFadeOnHide" },
                      { __m: "LayerHideOnBlur" },
                      { __m: "LayerHideOnEscape" },
                      { __m: "DialogHideOnSuccess" },
                      { __m: "LayerHideOnTransition" },
                      { __m: "LayerRemoveOnHide" },
                      { __m: "LayerAutoFocus" },
                      { __m: "ContextualLayerAutoFlip" },
                      { __m: "LayerTabIsolation" },
                    ],
                  },
                  { __m: "__markup_a588f507_0_1_Ob" },
                ],
                2,
              ],
            ],
            markup: [
              [
                "__markup_3310c079_0_0_Zc",
                { __html: "Keyboard shortcut help..." },
                1,
              ],
              [
                "__markup_3310c079_0_1_QP",
                { __html: "Accessibility Help Centre" },
                1,
              ],
              ["__markup_3310c079_0_2_oJ", { __html: "Submit feedback" }, 1],
              [
                "__markup_3310c079_0_3_p9",
                { __html: "Updates from Facebook Accessibility" },
                1,
              ],
              [
                "__markup_9f5fac15_0_0_Z3",
                {
                  __html:
                    '\u003Cdiv>\u003Cdiv class="_4-i0 _9l16">\u003Cdiv class="clearfix">\u003Cdiv class="_51-u rfloat _ohf">\u003Ca role="button" class="_42ft _5upp _50zy layerCancel _51-t _9l15 _50-0 _50z-" data-testid="dialog_title_close_button" href="#" title="Close">Close\u003C\/a>\u003C\/div>\u003Cdiv>\u003Ch3 id="u_0_2_fA" class="_52c9 _9l17">Confirm your date of birth\u003C\/h3>\u003C\/div>\u003C\/div>\u003C\/div>\u003Cdiv class="_4-i2 _pig _50f4">Is \u003Cspan class="_2rs9">4 June 2021\u003C\/span> your date of birth?\u003C\/div>\u003Cdiv class="_5lnf uiOverlayFooter _5a8u">\u003Ca role="button" class="_42ft _4jy0 layerCancel _2rsa uiOverlayButton _4jy3 _517h _51sy" href="#">No\u003C\/a>\u003Cbutton value="1" class="_42ft _4jy0 layerConfirm _2rsa uiOverlayButton _4jy3 _4jy1 selected _51sy" type="submit">Yes\u003C\/button>\u003C\/div>\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_a588f507_0_0_aN",
                {
                  __html:
                    '\u003Cdiv>\u003Cdiv class="_53iv">\u003Cdiv>\u003Cdiv class="">\u003Cb>Providing your date of birth\u003C\/b> helps make sure that you get the right Facebook experience for your age. If you want to change who sees this, go to the About section of your Profile. For more details, please visit our \u003Ca href="\/privacy\/explanation\/">Data Policy\u003C\/a>.\u003C\/div>\u003C\/div>\u003Cdiv aria-label="Explanation tooltip for birthday registration" id="u_0_4_9o">\u003C\/div>\u003C\/div>\u003Cdiv class="_5lnf uiOverlayFooter _572u">\u003Ca role="button" class="_42ft _4jy0 layerCancel uiOverlayButton _4jy3 _4jy1 selected _51sy" href="#">Close\u003C\/a>\u003C\/div>\u003Ca aria-label="Close" class="layer_close_elem accessible_elem" href="#" role="button" id="u_0_5_xF" aria-labelledby="u_0_5_xF u_0_4_9o">\u003C\/a>\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_a588f507_0_1_Ob",
                {
                  __html:
                    '\u003Cdiv>\u003Cdiv class="_53iv">\u003Cdiv>\u003Cdiv class="">You can change who sees your gender on your profile later. Select Custom to choose another gender, or if you&#039;d rather not say.\u003C\/div>\u003C\/div>\u003Cdiv aria-label="Explanation tooltip for gender options during registration" id="u_0_9_R2">\u003C\/div>\u003C\/div>\u003Cdiv class="_5lnf uiOverlayFooter _572u">\u003Ca role="button" class="_42ft _4jy0 layerCancel uiOverlayButton _4jy3 _4jy1 selected _51sy" href="#">Close\u003C\/a>\u003C\/div>\u003Ca aria-label="Close" class="layer_close_elem accessible_elem" href="#" role="button" id="u_0_a_XT" aria-labelledby="u_0_a_XT u_0_9_R2">\u003C\/a>\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_1_AF",
                {
                  __html:
                    '\u003Cdiv>\u003Cdiv class="_4-i0 _9l16" id="birthday_age_confirmation_dialog_title">\u003Cdiv class="clearfix">\u003Cdiv class="_51-u rfloat _ohf">\u003Ca role="button" class="_42ft _5upp _50zy layerCancel _51-t _9l15 _50-0 _50z-" data-testid="dialog_title_close_button" href="#" title="Close">Close\u003C\/a>\u003C\/div>\u003Cdiv>\u003Ch3 id="u_0_3_c1" class="_52c9 _9l17">Your date of birth will be set to 4 June 2021\u003C\/h3>\u003C\/div>\u003C\/div>\u003C\/div>\u003Cdiv class="_4-i2 _pig _50f4">No one else will see your date of birth. You can change this on your profile later.\u003C\/div>\u003Cdiv class="_5lnf uiOverlayFooter _5a8u">\u003Ca role="button" class="_42ft _4jy0 layerCancel _2rsa uiOverlayButton _4jy3 _517h _51sy" href="#">Cancel\u003C\/a>\u003Cbutton value="1" class="_42ft _4jy0 layerConfirm _2rsa uiOverlayButton _4jy3 _4jy1 selected _51sy" type="submit">OK\u003C\/button>\u003C\/div>\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_a588f507_0_2_CZ",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">You must fill in all of the fields.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_2_h0",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">What&#039;s your name?\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_3_Hj",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">You&#039;ll use this when you log in and if you ever need to reset your password.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_4_X4",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Enter a combination of at least six numbers, letters and punctuation marks (such as ! and &amp;).\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_a588f507_0_3_eM",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Please enter a valid email address.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_5_to",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Please enter a valid email address or mobile number.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_a588f507_0_4_M8",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Please enter a valid mobile number or email address.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_a588f507_0_5_Uz",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Please re-enter your email address.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_6_6I",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Please re-enter your mobile number or email address.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_a588f507_0_6_cE",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Your emails do not match. Please try again.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_a588f507_0_7_se",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Your email addresses or mobile numbers do not match. Please try again.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_7_My",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">It looks like you&#039;ve entered the wrong info. Please make sure that you use your real date of birth.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_8_Ii",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Please enter your age.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_9_En",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Select your date of birth. You can change who can see this later.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_a_JR",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Please choose a gender. You can change who can see this later.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_b_4m",
                {
                  __html:
                    '\u003Cdiv class="_5633 _5634">Please select your pronoun.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_a588f507_0_8_5J",
                {
                  __html:
                    '\u003Cdiv class="_2zot">\u003Cdiv class="_2zou">Enter a mobile number or email address you use regularly.\u003C\/div>\u003Cdiv class="_2zow">You&#039;ll use this to log in to your account. It will also help you reset your password if you ever need to.\u003C\/div>\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_c_V5",
                {
                  __html:
                    '\u003Cdiv class="_2acn">\u003Cdiv class="_2aco">Password strength: \u003Cb class="_2acp">Too short\u003C\/b>\u003C\/div>\u003Cdiv class="_2act">You need at least 6 characters.\u003C\/div>\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_d_ua",
                {
                  __html:
                    '\u003Cdiv class="_2acn">\u003Cdiv class="_2aco">Password strength: \u003Cb class="_2acp">Too weak\u003C\/b>\u003C\/div>\u003Cdiv class="_2act">Choose a password that&#039;s unique to you and difficult for others to guess.\u003C\/div>\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_e_hK",
                {
                  __html:
                    '\u003Cdiv class="_2acn">\u003Cdiv class="_2aco">Password strength: \u003Cb class="_2acq">Strong\u003C\/b>\u003C\/div>\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_f_4+",
                {
                  __html:
                    '\u003Cdiv class="_2acn _1pd1">Please set a password.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_g_Sh",
                {
                  __html:
                    '\u003Cdiv class="_2acn _1pd1">You need at least 6 characters.\u003C\/div>',
                },
                1,
              ],
              [
                "__markup_9f5fac15_0_h_C\/",
                {
                  __html:
                    '\u003Cdiv class="_2acn _1pd1">Please choose a stronger password.\u003C\/div>',
                },
                1,
              ],
            ],
            elements: [
              ["__elem_835c633a_0_1_0p", "login_form", 1],
              ["__elem_1edd4980_0_0_oj", "loginbutton", 1],
              ["__elem_f46f4946_0_0_oz", "u_0_c_2O", 1],
              ["__elem_f46f4946_0_1_S1", "u_0_d_oR", 1],
              ["__elem_a588f507_0_1_W2", "u_0_e_l7", 1],
              ["__elem_3fc3da18_0_0_Ta", "u_0_f_c\/", 1],
              ["__elem_51be6cb7_0_0_e7", "u_0_g_\/4", 1],
              ["__elem_1de146dc_0_0_pQ", "u_0_h_\/m", 1],
              ["__elem_ec77afbd_0_0_E2", "u_0_i_bD", 2],
              ["__elem_1de146dc_0_1_RX", "u_0_j_ss", 1],
              ["__elem_ec77afbd_0_1_y7", "u_0_k_+4", 2],
              ["__elem_9f5fac15_0_4_hA", "pagelet_bluebar", 1],
              ["__elem_45e94dd8_0_0_LV", "pagelet_bluebar", 1],
              ["__elem_a588f507_0_0_cE", "globalContainer", 2],
              ["__elem_a588f507_0_2_xV", "content", 1],
              ["__elem_835c633a_0_0_nB", "reg", 1],
              ["__elem_9ae3fd6f_0_0_9f", "u_0_l_N6", 1],
              ["__elem_3f8a34cc_0_0_TI", "u_0_m_qq", 3],
              ["__elem_9ae3fd6f_0_1_2a", "u_0_n_sR", 1],
              ["__elem_3f8a34cc_0_1_65", "u_0_o_+o", 3],
              ["__elem_9f5fac15_0_1_2L", "u_0_p_CQ", 1],
              ["__elem_9ae3fd6f_0_2_+8", "u_0_q_LQ", 1],
              ["__elem_3f8a34cc_0_2_w0", "u_0_r_Ho", 2],
              ["__elem_9f5fac15_0_0_+s", "u_0_s_ee", 1],
              ["__elem_9ae3fd6f_0_3_Jr", "u_0_t_sd", 1],
              ["__elem_3f8a34cc_0_3_mG", "u_0_u_1O", 2],
              ["__elem_9f5fac15_0_2_3C", "password_field", 1],
              ["__elem_9ae3fd6f_0_4_\/P", "u_0_v_X8", 1],
              ["__elem_3f8a34cc_0_4_KX", "password_step_input", 2],
              ["__elem_ffa3c607_0_0_uS", "birthday_wrapper", 1],
              ["__elem_2a23d31e_0_0_fQ", "u_0_w_at", 1],
              ["__elem_072b8e64_0_1_0Q", "birthday-help", 1],
              ["__elem_19c2b41d_0_0_Uu", "birthday_age", 1],
              ["__elem_9ae3fd6f_0_5_X4", "u_0_x_Iw", 2],
              ["__elem_97e096cf_0_0_UQ", "u_0_y_Rb", 1],
              ["__elem_2a23d31e_0_1_t+", "u_0_z_cd", 1],
              ["__elem_072b8e64_0_2_vP", "gender-help", 1],
              ["__elem_9f5fac15_0_3_Mt", "u_0_10_OY", 2],
              ["__elem_3f8a34cc_0_5_tq", "u_0_11_DL", 1],
              ["__elem_ef03ea1a_0_0_WN", "u_0_12_PM", 1],
              ["__elem_ddac73b6_0_0_hS", "u_0_13_QF", 1],
              ["__elem_da4ef9a3_0_0_qv", "u_0_14_FE", 1],
              ["__elem_8937e029_0_0_oM", "captcha_response", 1],
              ["__elem_a32d506f_0_0_LT", "captcha-recaptcha", 1],
              ["__elem_a431e88a_0_0_eC", "captcha-recaptcha", 1],
              ["__elem_a588f507_0_4_67", "captcha_buttons", 1],
              ["__elem_072b8e64_0_0_8T", "u_0_15_1x", 1],
              ["__elem_ddac73b6_0_1_pk", "u_0_16_bY", 1],
              ["__elem_da4ef9a3_0_1_ui", "u_0_17_Gp", 1],
              ["__elem_a588f507_0_3_KM", "reg_pages_msg", 1],
            ],
            require: [
              ["WebPixelRatioDetector", "startDetecting", [], [false]],
              [
                "ScriptPath",
                "set",
                [],
                [
                  "XSemCampaignLandingController",
                  "a1f3c513",
                  {
                    imp_id: "0Azgi1CbgOPtXbBey",
                    ef_page: null,
                    uri: "https:\/\/www.facebook.com\/campaign\/landing.php?&campaign_id=1635645017&extra_1=s\u00257Cc\u00257C514542539694\u00257Ce\u00257Cfacebook+account+create\u00257C&placement&creative=514542539694&keyword=facebook+account+create&partner_id=googlesem&extra_2=campaignid\u00253D1635645017\u002526adgroupid\u00253D60549328257\u002526matchtype\u00253De\u002526network\u00253Dg\u002526source\u00253Dnotmobile\u002526search_or_content\u00253Ds\u002526device\u00253Dc\u002526devicemodel\u00253D\u002526adposition\u00253D\u002526target\u00253D\u002526targetid\u00253Dkwd-321689128740\u002526loc_physical_ms\u00253D2702\u002526loc_interest_ms\u00253D\u002526feeditemid\u00253D\u002526param1\u00253D\u002526param2\u00253D&gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB",
                  },
                ],
              ],
              ["UITinyViewportAction", "init", [], []],
              [
                "ResetScrollOnUnload",
                "init",
                ["__elem_a588f507_0_0_cE"],
                [{ __m: "__elem_a588f507_0_0_cE" }],
              ],
              [
                "AccessibilityWebVirtualCursorClickLogger",
                "init",
                ["__elem_45e94dd8_0_0_LV", "__elem_a588f507_0_0_cE"],
                [
                  [
                    { __m: "__elem_45e94dd8_0_0_LV" },
                    { __m: "__elem_a588f507_0_0_cE" },
                  ],
                ],
              ],
              ["KeyboardActivityLogger", "init", [], []],
              ["FocusRing", "init", [], []],
              ["ErrorMessageConsole", "listenForUncaughtErrors", [], []],
              ["HardwareCSS", "init", [], []],
              [
                "NavigationAssistantController",
                "init",
                [
                  "__elem_3fc3da18_0_0_Ta",
                  "__elem_51be6cb7_0_0_e7",
                  "__inst_5b4d0c00_0_0_0e",
                  "__inst_5b4d0c00_0_1_J9",
                  "__inst_e5ad243d_0_0_DK",
                  "__inst_e5ad243d_0_1_UA",
                ],
                [
                  { __m: "__elem_3fc3da18_0_0_Ta" },
                  { __m: "__elem_51be6cb7_0_0_e7" },
                  { __m: "__inst_5b4d0c00_0_0_0e" },
                  { __m: "__inst_5b4d0c00_0_1_J9" },
                  null,
                  {
                    accessibilityPopoverMenu: { __m: "__inst_e5ad243d_0_0_DK" },
                    globalPopoverMenu: null,
                    sectionsPopoverMenu: { __m: "__inst_e5ad243d_0_1_UA" },
                  },
                ],
              ],
              ["__inst_e5ad243d_0_1_UA"],
              ["__inst_1de146dc_0_0_I1"],
              ["__inst_e5ad243d_0_0_DK"],
              ["__inst_1de146dc_0_1_Ty"],
              ["AsyncRequestNectarLogging"],
              ["__inst_ead1e565_0_0_w6"],
              ["__inst_ead1e565_0_1_rd"],
              [
                "RegistrationController",
                "init",
                [
                  "__elem_835c633a_0_0_nB",
                  "__elem_ddac73b6_0_0_hS",
                  "__elem_ddac73b6_0_1_pk",
                  "__elem_072b8e64_0_0_8T",
                  "__elem_ef03ea1a_0_0_WN",
                  "__elem_a588f507_0_3_KM",
                  "__elem_a588f507_0_4_67",
                  "__elem_da4ef9a3_0_0_qv",
                  "__elem_da4ef9a3_0_1_ui",
                  "__elem_9f5fac15_0_0_+s",
                  "__elem_9f5fac15_0_1_2L",
                  "__elem_9f5fac15_0_2_3C",
                  "__inst_ead1e565_0_0_w6",
                  "__inst_ead1e565_0_1_rd",
                ],
                [
                  {
                    regForm: { __m: "__elem_835c633a_0_0_nB" },
                    log_focus_name: "postload_focus",
                    regButton: { __m: "__elem_ddac73b6_0_0_hS" },
                    captchaRegButton: { __m: "__elem_ddac73b6_0_1_pk" },
                    captchaBackButton: { __m: "__elem_072b8e64_0_0_8T" },
                    tos_container: { __m: "__elem_ef03ea1a_0_0_WN" },
                    pages_link: { __m: "__elem_a588f507_0_3_KM" },
                    captcha_buttons: { __m: "__elem_a588f507_0_4_67" },
                    async_status: { __m: "__elem_da4ef9a3_0_0_qv" },
                    captcha_async_status: { __m: "__elem_da4ef9a3_0_1_ui" },
                    confirmContactpointBehavior: "show_for_email-fade",
                    confirm_component: { __m: "__elem_9f5fac15_0_0_+s" },
                    errorMessageNewDesign: false,
                    email_component: { __m: "__elem_9f5fac15_0_1_2L" },
                    password_component: { __m: "__elem_9f5fac15_0_2_3C" },
                    show_tooltips: false,
                    no_phone_reg_link: null,
                    allow_email_reg_dialog: null,
                    shouldShowConfirmationDialog: true,
                    birthdayConfirmationDialog: {
                      __m: "__inst_ead1e565_0_0_w6",
                    },
                    ageConfirmationDialog: { __m: "__inst_ead1e565_0_1_rd" },
                    shouldShowBirthdaySelectors: false,
                    prefilledBirthday: { day: "4", month: "6", year: "2021" },
                    topEmailDomains: null,
                    noReEnterOnSuggestion: false,
                    persistURI: null,
                    hideReEnterOnEmail: false,
                    inReEnterExperiment: false,
                    payload: null,
                    pubKey: {
                      publicKey:
                        "8292c90af85d02e8fae918eff52652567b00d239ba18c88d5aa13768fc301940",
                      keyId: 222,
                    },
                  },
                ],
              ],
              [
                "RegistrationInlineValidations",
                "register",
                ["__elem_9ae3fd6f_0_0_9f", "__elem_3f8a34cc_0_0_TI"],
                [
                  { __m: "__elem_9ae3fd6f_0_0_9f" },
                  { __m: "__elem_3f8a34cc_0_0_TI" },
                  "left",
                  "flyout_design",
                  true,
                  {
                    showHintFlyout: false,
                    showPasswordMeter: false,
                    passwordMeterID: "",
                    minPasswordMeterStrength: 35,
                    passwordMeterHidden: false,
                  },
                ],
              ],
              [
                "RegistrationGenderPronounWarning",
                "registerNameInput",
                ["__elem_3f8a34cc_0_0_TI"],
                ["firstname", { __m: "__elem_3f8a34cc_0_0_TI" }],
              ],
              [
                "StickyPlaceholderInput",
                "registerInput",
                ["__elem_3f8a34cc_0_0_TI"],
                [{ __m: "__elem_3f8a34cc_0_0_TI" }],
              ],
              ["FocusListener"],
              ["FlipDirectionOnKeypress"],
              [
                "RegistrationInlineValidations",
                "register",
                ["__elem_9ae3fd6f_0_1_2a", "__elem_3f8a34cc_0_1_65"],
                [
                  { __m: "__elem_9ae3fd6f_0_1_2a" },
                  { __m: "__elem_3f8a34cc_0_1_65" },
                  "below",
                  "flyout_design",
                  true,
                  {
                    showHintFlyout: false,
                    showPasswordMeter: false,
                    passwordMeterID: "",
                    minPasswordMeterStrength: 35,
                    passwordMeterHidden: false,
                  },
                ],
              ],
              [
                "RegistrationGenderPronounWarning",
                "registerNameInput",
                ["__elem_3f8a34cc_0_1_65"],
                ["lastname", { __m: "__elem_3f8a34cc_0_1_65" }],
              ],
              [
                "StickyPlaceholderInput",
                "registerInput",
                ["__elem_3f8a34cc_0_1_65"],
                [{ __m: "__elem_3f8a34cc_0_1_65" }],
              ],
              [
                "RegistrationInlineValidations",
                "register",
                ["__elem_9ae3fd6f_0_2_+8", "__elem_3f8a34cc_0_2_w0"],
                [
                  { __m: "__elem_9ae3fd6f_0_2_+8" },
                  { __m: "__elem_3f8a34cc_0_2_w0" },
                  "left",
                  "flyout_design",
                  true,
                  {
                    showHintFlyout: false,
                    showPasswordMeter: false,
                    passwordMeterID: "",
                    minPasswordMeterStrength: 35,
                    passwordMeterHidden: false,
                  },
                ],
              ],
              [
                "StickyPlaceholderInput",
                "registerInput",
                ["__elem_3f8a34cc_0_2_w0"],
                [{ __m: "__elem_3f8a34cc_0_2_w0" }],
              ],
              [
                "RegistrationInlineValidations",
                "register",
                ["__elem_9ae3fd6f_0_3_Jr", "__elem_3f8a34cc_0_3_mG"],
                [
                  { __m: "__elem_9ae3fd6f_0_3_Jr" },
                  { __m: "__elem_3f8a34cc_0_3_mG" },
                  "left",
                  "flyout_design",
                  true,
                  {
                    showHintFlyout: false,
                    showPasswordMeter: false,
                    passwordMeterID: "",
                    minPasswordMeterStrength: 35,
                    passwordMeterHidden: false,
                  },
                ],
              ],
              [
                "StickyPlaceholderInput",
                "registerInput",
                ["__elem_3f8a34cc_0_3_mG"],
                [{ __m: "__elem_3f8a34cc_0_3_mG" }],
              ],
              [
                "RegistrationInlineValidations",
                "register",
                ["__elem_9ae3fd6f_0_4_\/P", "__elem_3f8a34cc_0_4_KX"],
                [
                  { __m: "__elem_9ae3fd6f_0_4_\/P" },
                  { __m: "__elem_3f8a34cc_0_4_KX" },
                  "left",
                  "flyout_design",
                  true,
                  {
                    showHintFlyout: false,
                    showPasswordMeter: false,
                    passwordMeterID: "",
                    minPasswordMeterStrength: 35,
                    passwordMeterHidden: false,
                  },
                ],
              ],
              [
                "StickyPlaceholderInput",
                "registerInput",
                ["__elem_3f8a34cc_0_4_KX"],
                [{ __m: "__elem_3f8a34cc_0_4_KX" }],
              ],
              ["__inst_41781d56_0_0_To"],
              [
                "RegistrationController",
                "initInformationLinkDialog",
                ["__elem_072b8e64_0_1_0Q", "__inst_41781d56_0_0_To"],
                [
                  { __m: "__elem_072b8e64_0_1_0Q" },
                  { __m: "__inst_41781d56_0_0_To" },
                ],
              ],
              [
                "RegistrationInlineValidations",
                "register",
                ["__elem_ffa3c607_0_0_uS", "__elem_2a23d31e_0_0_fQ"],
                [
                  { __m: "__elem_ffa3c607_0_0_uS" },
                  { __m: "__elem_2a23d31e_0_0_fQ" },
                  "left",
                  "flyout_design",
                  false,
                ],
              ],
              [
                "RegistrationInlineValidations",
                "register",
                ["__elem_19c2b41d_0_0_Uu", "__elem_9ae3fd6f_0_5_X4"],
                [
                  { __m: "__elem_19c2b41d_0_0_Uu" },
                  { __m: "__elem_9ae3fd6f_0_5_X4" },
                  "left",
                  "flyout_design",
                  false,
                ],
              ],
              [
                "StickyPlaceholderInput",
                "registerInput",
                ["__elem_9ae3fd6f_0_5_X4"],
                [{ __m: "__elem_9ae3fd6f_0_5_X4" }],
              ],
              ["__inst_41781d56_0_1_nv"],
              [
                "RegistrationController",
                "initInformationLinkDialog",
                ["__elem_072b8e64_0_2_vP", "__inst_41781d56_0_1_nv"],
                [
                  { __m: "__elem_072b8e64_0_2_vP" },
                  { __m: "__inst_41781d56_0_1_nv" },
                ],
              ],
              [
                "RegistrationInlineValidations",
                "register",
                ["__elem_97e096cf_0_0_UQ", "__elem_2a23d31e_0_1_t+"],
                [
                  { __m: "__elem_97e096cf_0_0_UQ" },
                  { __m: "__elem_2a23d31e_0_1_t+" },
                  "left",
                  "flyout_design",
                  false,
                  { showCustomGender: true },
                ],
              ],
              [
                "RegistrationInlineValidations",
                "register",
                ["__elem_9f5fac15_0_3_Mt"],
                [
                  { __m: "__elem_9f5fac15_0_3_Mt" },
                  { __m: "__elem_9f5fac15_0_3_Mt" },
                  "left",
                  "flyout_design",
                  false,
                ],
              ],
              [
                "StickyPlaceholderInput",
                "registerInput",
                ["__elem_3f8a34cc_0_5_tq"],
                [{ __m: "__elem_3f8a34cc_0_5_tq" }],
              ],
              [
                "ReCaptchaIFrameHandler",
                "initWithElement",
                ["__elem_a431e88a_0_0_eC", "__elem_8937e029_0_0_oM"],
                [
                  { __m: "__elem_a431e88a_0_0_eC" },
                  { __m: "__elem_8937e029_0_0_oM" },
                ],
              ],
              ["ControlledReferer"],
              [
                "ControlledReferer",
                "useFacebookRefererHtml",
                ["__elem_a32d506f_0_0_LT"],
                [
                  { __m: "__elem_a32d506f_0_0_LT" },
                  '\u003Cform method="get" action="https:\/\/fbsbx.com\/captcha\/recaptcha\/iframe\/" id="theform">\u003Cinput name="referer" value="https:\/\/www.facebook.com" type="hidden" autocomplete="off" \/>\u003Cinput name="compact" value="0" type="hidden" autocomplete="off" \/>\u003Cinput name="__cci" value="FQAREREA.ARZv-Yup_A432xg6E0Wr5f9YP5htcZEMnIwmBYRQAIcAMSuc" type="hidden" autocomplete="off" \/>\u003C\/form>\u003Ciframe frameborder="0" width="1" height="1" onload="document.getElementById(&#039;theform&#039;).submit()">\u003C\/iframe>',
                ],
              ],
              ["IntlUtils"],
              ["FBLynx", "setupDelegation", [], []],
              [
                "TimezoneAutoset",
                "setInputValue",
                ["__elem_f46f4946_0_0_oz"],
                [{ __m: "__elem_f46f4946_0_0_oz" }, 1622807886],
              ],
              [
                "ScreenDimensionsAutoSet",
                "setInputValue",
                ["__elem_f46f4946_0_1_S1"],
                [{ __m: "__elem_f46f4946_0_1_S1" }],
              ],
              [
                "LoginFormController",
                "init",
                ["__elem_835c633a_0_1_0p", "__elem_1edd4980_0_0_oj"],
                [
                  { __m: "__elem_835c633a_0_1_0p" },
                  { __m: "__elem_1edd4980_0_0_oj" },
                  null,
                  true,
                  {
                    pubKey: {
                      publicKey:
                        "8292c90af85d02e8fae918eff52652567b00d239ba18c88d5aa13768fc301940",
                      keyId: 222,
                    },
                  },
                ],
              ],
              [
                "BrowserPrefillLogging",
                "initContactpointFieldLogging",
                [],
                [{ contactpointFieldID: "email", serverPrefill: "" }],
              ],
              [
                "BrowserPrefillLogging",
                "initPasswordFieldLogging",
                [],
                [{ passwordFieldID: "pass" }],
              ],
              ["Animation"],
              ["PageTransitions"],
              [
                "RequireDeferredReference",
                "unblock",
                [],
                [
                  [
                    "BanzaiScuba_DEPRECATED",
                    "Animation",
                    "FbtLogging",
                    "IntlQtEventFalcoEvent",
                    "PageTransitions",
                  ],
                ],
              ],
              ["TimeSliceImpl"],
              ["HasteSupportData"],
              ["ServerJS"],
              ["Run"],
              ["InitialJSLoader"],
            ],
            contexts: [
              [{ __m: "__elem_a588f507_0_1_W2" }, true],
              [{ __m: "__elem_a588f507_0_2_xV" }, true],
              [{ __m: "__elem_9f5fac15_0_4_hA" }, false],
            ],
          });
          requireLazy(["Run"], function (Run) {
            Run.onAfterLoad(function () {
              s.cleanup(TimeSlice);
            });
          });
        }
      );

      onloadRegister_DEPRECATED(function () {
        try {
          $("email").focus();
        } catch (_ignore) {}
      });
    </script>
    <script>
      now_inl = (function () {
        var p = window.performance;
        return p && p.now && p.timing && p.timing.navigationStart
          ? function () {
              return p.now() + p.timing.navigationStart;
            }
          : function () {
              return new Date().getTime();
            };
      })();
      window.__bigPipeFR = now_inl();
    </script>
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yN/l/0,cross/_okbc3tORmZ.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/y2/l/0,cross/AXrAAvfOfHf.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/y3/l/0,cross/juCVduCsg9N.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yU/l/0,cross/8SiSeIFbO9X.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yB/l/0,cross/Vqm3lEjFrcE.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yr/l/0,cross/dDH2lulcM7q.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yg/l/0,cross/S5yE9KsoTP5.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3ij9m4/yU/l/en_GB/sonmpDIox2x.js?_nc_x=Ij3Wp8lg5Kz"
      as="script"
      crossorigin="anonymous"
      nonce="UNlQ6KHa"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/ya/l/0,cross/LCakycP3srf.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yv/r/GG1Y0sYc7My.js?_nc_x=Ij3Wp8lg5Kz"
      as="script"
      crossorigin="anonymous"
      nonce="UNlQ6KHa"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yS/l/0,cross/4H7KAGZ03Fj.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yD/r/gsL36AdR_g8.js?_nc_x=Ij3Wp8lg5Kz"
      as="script"
      crossorigin="anonymous"
      nonce="UNlQ6KHa"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yo/r/JRvIOsHXjMf.js?_nc_x=Ij3Wp8lg5Kz"
      as="script"
      crossorigin="anonymous"
      nonce="UNlQ6KHa"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/ym/l/0,cross/XzMVk90uhh2.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/y4/l/0,cross/Gtlxmfko4ns.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yG/l/0,cross/h8G4d4H1P6e.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/y2/l/0,cross/lZ86cv9aR90.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yZ/l/0,cross/N2WOcj5-DBd.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/yp/l/0,cross/5Mdfc50oPRL.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <link
      rel="preload"
      href="https://static.xx.fbcdn.net/rsrc.php/v3/ys/l/0,cross/IlCUBbDOymC.css?_nc_x=Ij3Wp8lg5Kz"
      as="style"
      crossorigin="anonymous"
    />
    <script>
      window.__bigPipeCtor = now_inl();
      requireLazy(["BigPipe"], function (BigPipe) {
        define("__bigPipe", [], (window.bigPipe = new BigPipe({
          forceFinish: true,
          config: {
            flush_pagelets_asap: true,
            dispatch_pagelet_replayable_actions: false,
          },
        })));
      });
    </script>
    <script nonce="UNlQ6KHa">
      (function () {
        var n = now_inl();
        requireLazy(["__bigPipe"], function (bigPipe) {
          bigPipe.beforePageletArrive("first_response", n);
        });
      })();
    </script>
    <script nonce="UNlQ6KHa">
      requireLazy(["__bigPipe"], function (bigPipe) {
        bigPipe.onPageletArrive({
          displayResources: [
            "ANVnc8J",
            "UOuOOFS",
            "78j1+Wx",
            "epDBIN3",
            "VnjKvjF",
            "fD0lNKx",
            "wtJ9gup",
            "GPw9Jn8",
            "WbmjGEn",
            "hKY0QKT",
            "7/bfoUc",
            "hxRcTAv",
            "2+0IZLi",
            "/uaktyf",
            "caUu9fM",
            "ahdrpfa",
            "f+J2LH8",
            "FIdmJx9",
            "HDuMaf9",
            "P/mr5VE",
            "W2F3wcx",
          ],
          id: "first_response",
          phase: 0,
          last_in_phase: true,
          tti_phase: 0,
          all_phases: [63],
          hsrp: {
            hblp: { sr_revision: 1003907862, consistency: { rev: 1003907862 } },
          },
          allResources: [
            "ANVnc8J",
            "UOuOOFS",
            "78j1+Wx",
            "epDBIN3",
            "VnjKvjF",
            "fD0lNKx",
            "9TBca97",
            "84drxpX",
            "0EOsKIL",
            "GPw9Jn8",
            "Ppdai3X",
            "hxRcTAv",
            "Ogz9fTN",
            "EreD4IU",
            "hKY0QKT",
            "2+0IZLi",
            "wtJ9gup",
            "WbmjGEn",
            "7/bfoUc",
            "/uaktyf",
            "caUu9fM",
            "ahdrpfa",
            "f+J2LH8",
            "FIdmJx9",
            "HDuMaf9",
            "zPLgIGT",
            "8mI2ZsR",
            "2DoqW3H",
            "lrlgoVP",
            "PdR0Lsw",
            "D+R2NVL",
            "EeceqJl",
            "t7/i25T",
            "AD8R1RG",
            "l8wVOKm",
            "HnuAhvL",
            "EhVZIh3",
            "y1PT+Nd",
            "P/mr5VE",
            "W2F3wcx",
            "LjM60fS",
            "KufrNF/",
          ],
        });
      });
    </script>
    <script>
      requireLazy(["__bigPipe"], function (bigPipe) {
        bigPipe.setPageID("6969906799560357417-0");
      });
      CavalryLogger.setPageID("6969906799560357417-0");
    </script>
    <script nonce="UNlQ6KHa">
      (function () {
        var n = now_inl();
        requireLazy(["__bigPipe"], function (bigPipe) {
          bigPipe.beforePageletArrive("last_response", n);
        });
      })();
    </script>
    <script nonce="UNlQ6KHa">
      requireLazy(["__bigPipe"], function (bigPipe) {
        bigPipe.onPageletArrive({
          displayResources: ["hKY0QKT"],
          id: "last_response",
          phase: 63,
          last_in_phase: true,
          the_end: true,
          jsmods: {
            define: [
              [
                "TimeSliceInteractionSV",
                [],
                {
                  on_demand_reference_counting: true,
                  on_demand_profiling_counters: true,
                  default_rate: 1000,
                  lite_default_rate: 100,
                  interaction_to_lite_coinflip: {
                    ADS_INTERFACES_INTERACTION: 0,
                    ads_perf_scenario: 0,
                    ads_wait_time: 0,
                    Event: 1,
                  },
                  interaction_to_coinflip: {
                    ADS_INTERFACES_INTERACTION: 1,
                    ads_perf_scenario: 1,
                    ads_wait_time: 1,
                    Event: 100,
                  },
                  enable_heartbeat: true,
                  maxBlockMergeDuration: 0,
                  maxBlockMergeDistance: 0,
                  enable_banzai_stream: true,
                  user_timing_coinflip: 50,
                  banzai_stream_coinflip: 0,
                  compression_enabled: true,
                  ref_counting_fix: false,
                  ref_counting_cont_fix: false,
                  also_record_new_timeslice_format: false,
                  force_async_request_tracing_on: false,
                },
                2609,
              ],
              [
                "DateFormatConfig",
                [],
                {
                  numericDateOrder: ["d", "m", "y"],
                  numericDateSeparator: "/",
                  shortDayNames: [
                    "Mon",
                    "Tues",
                    "Wed",
                    "Thurs",
                    "Fri",
                    "Sat",
                    "Sun",
                  ],
                  timeSeparator: ":",
                  weekStart: 6,
                  formats: {
                    D: "D",
                    "D g:ia": "D H:i",
                    "D M d": "j F",
                    "D M d, Y": "l, j F Y",
                    "D M j": "D, j M",
                    "D M j, g:ia": "j F H:i",
                    "D M j, y": "l, j F Y",
                    "D M j, Y g:ia": "l, j F Y H:i",
                    "D, M j, Y": "l, j F Y",
                    "F d": "j F",
                    "F d, Y": "j F Y",
                    "F g": "j F",
                    "F j": "j F",
                    "F j, Y": "j F Y",
                    "F j, Y @ g:i A": "j F Y H:i",
                    "F j, Y g:i a": "j F Y H:i",
                    "F jS": "j F",
                    "F jS, g:ia": "j F H:i",
                    "F jS, Y": "j F Y",
                    "F Y": "F Y",
                    "g A": "H",
                    "g:i": "H:i",
                    "g:i A": "H:i",
                    "g:i a": "H:i",
                    "g:iA": "H:i",
                    "g:ia": "H:i",
                    "g:ia F jS, Y": "j F Y H:i",
                    "g:iA l, F jS": "l, j F Y H:i",
                    "g:ia M j": "j F H:i",
                    "g:ia M jS": "j F H:i",
                    "g:ia, F jS": "j F H:i",
                    "g:iA, l M jS": "l, j F Y H:i",
                    "g:sa": "H:i",
                    "H:I - M d, Y": "j F Y H:i",
                    "h:i a": "H:i",
                    "h:m:s m/d/Y": "d/m/Y H:i:s",
                    j: "j",
                    "l F d, Y": "l, j F Y",
                    "l g:ia": "l H:i",
                    "l, F d, Y": "l, j F Y",
                    "l, F j": "j F",
                    "l, F j, Y": "l, j F Y",
                    "l, F jS": "j F",
                    "l, F jS, g:ia": "l, j F Y H:i",
                    "l, M j": "j F",
                    "l, M j, Y": "l, j F Y",
                    "l, M j, Y g:ia": "l, j F Y H:i",
                    "M d": "j F",
                    "M d, Y": "j F Y",
                    "M d, Y g:ia": "j F Y H:i",
                    "M d, Y ga": "j F Y H",
                    "M j": "j F",
                    "M j, Y": "j F Y",
                    "M j, Y g:i A": "j F Y H:i",
                    "M j, Y g:ia": "j F Y H:i",
                    "M jS, g:ia": "j F H:i",
                    "M Y": "F Y",
                    "M y": "j F",
                    "m-d-y": "d/m/Y",
                    "M. d": "j F",
                    "M. d, Y": "j F Y",
                    "j F Y": "j F Y",
                    "m.d.y": "d/m/Y",
                    "m/d": "d/m",
                    "m/d/Y": "d/m/Y",
                    "m/d/y": "d/m/Y",
                    "m/d/Y g:ia": "d/m/Y H:i",
                    "m/d/y H:i:s": "d/m/Y H:i:s",
                    "m/d/Y h:m": "d/m/Y H:i:s",
                    n: "d/m",
                    "n/j": "d/m",
                    "n/j, g:ia": "d/m/Y H:i",
                    "n/j/y": "d/m/Y",
                    Y: "Y",
                    "Y-m-d": "d/m/Y",
                    "Y/m/d": "d/m/Y",
                    "y/m/d": "d/m/Y",
                    "j / F / Y": "j / F / Y",
                  },
                  ordinalSuffixes: {
                    1: "st",
                    2: "nd",
                    3: "rd",
                    4: "th",
                    5: "th",
                    6: "th",
                    7: "th",
                    8: "th",
                    9: "th",
                    10: "th",
                    11: "th",
                    12: "th",
                    13: "th",
                    14: "th",
                    15: "th",
                    16: "th",
                    17: "th",
                    18: "th",
                    19: "th",
                    20: "th",
                    21: "st",
                    22: "nd",
                    23: "rd",
                    24: "th",
                    25: "th",
                    26: "th",
                    27: "th",
                    28: "th",
                    29: "th",
                    30: "th",
                    31: "st",
                  },
                },
                165,
              ],
              [
                "RegistrationClientConfig",
                [
                  "__markup_a588f507_0_2_CZ",
                  "HTML",
                  "__markup_9f5fac15_0_2_h0",
                  "__markup_9f5fac15_0_3_Hj",
                  "__markup_9f5fac15_0_4_X4",
                  "__markup_a588f507_0_3_eM",
                  "__markup_9f5fac15_0_5_to",
                  "__markup_a588f507_0_4_M8",
                  "__markup_a588f507_0_5_Uz",
                  "__markup_9f5fac15_0_6_6I",
                  "__markup_a588f507_0_6_cE",
                  "__markup_a588f507_0_7_se",
                  "__markup_9f5fac15_0_7_My",
                  "__markup_9f5fac15_0_8_Ii",
                  "__markup_9f5fac15_0_9_En",
                  "__markup_9f5fac15_0_a_JR",
                  "__markup_9f5fac15_0_b_4m",
                  "__markup_a588f507_0_8_5J",
                  "__markup_9f5fac15_0_c_V5",
                  "__markup_9f5fac15_0_d_ua",
                  "__markup_9f5fac15_0_e_hK",
                  "__markup_9f5fac15_0_f_4+",
                  "__markup_9f5fac15_0_g_Sh",
                  "__markup_9f5fac15_0_h_C/",
                ],
                {
                  fields: {
                    NAME: "name",
                    FIRSTNAME: "firstname",
                    LASTNAME: "lastname",
                    EMAIL: "reg_email__",
                    EMAIL_CONFIRMATION: "reg_email_confirmation__",
                    GENDER: "sex",
                    PASSWORD: "reg_passwd__",
                    BIRTHDAY_AGE: "birthday_age",
                    BIRTHDAY_DAY: "birthday_day",
                    BIRTHDAY_MONTH: "birthday_month",
                    BIRTHDAY_YEAR: "birthday_year",
                    BIRTHDAY_WRAPPER: "birthday_wrapper",
                    GENDER_WRAPPER: "gender_wrapper",
                  },
                  persisted: [
                    "birthday_day",
                    "birthday_month",
                    "birthday_year",
                    "sex",
                    "reg_email__",
                    "firstname",
                    "lastname",
                    "fullname",
                    "current_step_number",
                    "use_custom_gender",
                    "custom_gender",
                    "welcome_step_completed",
                    "did_use_age",
                  ],
                  tooltips: {
                    FIRSTNAME: "firstname_tooltip",
                    LASTNAME: "lastname_tooltip",
                    EMAIL: "email_tooltip",
                    EMAIL_CONFIRMATION: "email_confirmation_tooltip",
                    SECOND_CONTACTPOINT: "second_contactpoint_tooltip",
                    PASSWORD: "password_tooltip",
                  },
                  validators: {
                    types: {
                      TEXT: "text",
                      SELECTORS: "selectors",
                      RADIO: "radio",
                      PASSWORD: "password",
                    },
                  },
                  messages: {
                    MISSING_FIELDS: { __m: "__markup_a588f507_0_2_CZ" },
                    INCORRECT_NAME: { __m: "__markup_9f5fac15_0_2_h0" },
                    INCORRECT_CONTACTPOINT: { __m: "__markup_9f5fac15_0_3_Hj" },
                    PASSWORD_BLANK: { __m: "__markup_9f5fac15_0_4_X4" },
                    INVALID_EMAIL: { __m: "__markup_a588f507_0_3_eM" },
                    INVALID_CONTACTPOINT: { __m: "__markup_9f5fac15_0_5_to" },
                    INVALID_NUMBER_OR_EMAIL: {
                      __m: "__markup_a588f507_0_4_M8",
                    },
                    INCORRECT_EMAIL_CONF: { __m: "__markup_a588f507_0_5_Uz" },
                    INCORRECT_NUMBER_OR_EMAIL_CONF: {
                      __m: "__markup_9f5fac15_0_6_6I",
                    },
                    EMAIL_RETYPE_DIFFERENT: { __m: "__markup_a588f507_0_6_cE" },
                    CONTACTPOINT_RETYPE_DIFFERENT: {
                      __m: "__markup_a588f507_0_7_se",
                    },
                    SUPER_YOUNG_BIRTHDAY: { __m: "__markup_9f5fac15_0_7_My" },
                    INVALID_AGE: { __m: "__markup_9f5fac15_0_8_Ii" },
                    INCOMPLETE_BIRTHDAY: { __m: "__markup_9f5fac15_0_9_En" },
                    NO_GENDER: { __m: "__markup_9f5fac15_0_a_JR" },
                    NO_PRONOUN: { __m: "__markup_9f5fac15_0_b_4m" },
                  },
                  hint_messages: {
                    CONTACTPOINT: { __m: "__markup_a588f507_0_8_5J" },
                  },
                  password_meter: {
                    TOO_SHORT: { __m: "__markup_9f5fac15_0_c_V5" },
                    TOO_WEAK: { __m: "__markup_9f5fac15_0_d_ua" },
                    STRONG: { __m: "__markup_9f5fac15_0_e_hK" },
                  },
                  password_inline_error: {
                    EMPTY: { __m: "__markup_9f5fac15_0_f_4+" },
                    TOO_SHORT: { __m: "__markup_9f5fac15_0_g_Sh" },
                    TOO_WEAK: { __m: "__markup_9f5fac15_0_h_C/" },
                  },
                  logging: {
                    enabled: false,
                    categories: { INLINE: "inline", SERVER: "server" },
                    types: {
                      IS_EMPTY: "is_empty",
                      CONTACTPOINT_INVALID: "contactpoint_invalid",
                      CONTACTPOINT_TAKEN: "contactpoint_taken",
                      CONTACTPOINT_MATCH: "contactpoint_match",
                      PASSWORD_WEAK: "password_weak",
                      PASSWORD_SHORT: "password_short",
                      TERMS_AGREEMENT: "terms_agreement",
                      TOO_YOUNG: "too_young",
                      SUPER_YOUNG_BIRTHDAY: "super_young_birthday",
                      ACCOUNT_DISABLED: "account_disabled",
                      BAD_CAPTCHA: "bad_captcha",
                      NAME_REJECTED: "name_rejected",
                      SI_BLOCK: "si_block",
                      BIRTHDAY_INVALID: "birthday_invalid",
                      INVALID_AGE: "invalid_age",
                    },
                  },
                  www_phone: true,
                },
                87,
              ],
              [
                "TrackingConfig",
                [],
                { domain: "https://pixel.facebook.com" },
                325,
              ],
              [
                "CLDRDateRenderingClientRollout",
                [],
                { formatDateClientLoggerSamplingRate: 0.0001 },
                3003,
              ],
              [
                "CLDRDateFormatConfig",
                [],
                {
                  supportedPHPFormatsKeys: {
                    D: "E",
                    "D g:ia": "Ejm",
                    "D M d": "MMMEd",
                    "D M d, Y": "yMMMEd",
                    "D M j": "MMMEd",
                    "D M j, y": "yMMMEd",
                    "D, M j": "MMMEd",
                    "D, M j, Y": "yMMMEd",
                    "F d": "MMMMd",
                    "F d, Y": "date_long",
                    "F j": "MMMMd",
                    "F j, Y": "date_long",
                    "F j, Y @ g:i A": "dateTime_long_short",
                    "F j, Y g:i a": "dateTime_long_short",
                    "F j, Y @ g:i:s A": "dateTime_long_medium",
                    "F jS": "MMMMd",
                    "F jS, g:ia": "dateTime_long_short",
                    "F jS, Y": "date_long",
                    "F Y": "yMMMM",
                    "g A": "j",
                    "G:i": "time_short",
                    "g:i": "time_short",
                    "g:i a": "time_short",
                    "g:i A": "time_short",
                    "g:i:s A": "time_medium",
                    "g:ia": "time_short",
                    "g:iA": "time_short",
                    "g:ia F jS, Y": "dateTime_long_short",
                    "g:iA l, F jS": "dateTime_full_short",
                    "g:ia M jS": "dateTime_medium_short",
                    "g:ia, F jS": "dateTime_long_short",
                    "g:iA, l M jS": "dateTime_full_short",
                    "h:i a": "time_short",
                    "h:m:s m/d/Y": "dateTime_short_short",
                    j: "d",
                    "j F Y": "date_long",
                    "l F d, Y": "date_full",
                    "l, F d, Y": "date_full",
                    "l, F j": "date_full",
                    "l, F j, Y": "date_full",
                    "l, F jS": "date_full",
                    "l, F jS, g:ia": "dateTime_full_short",
                    "l, M j": "date_full",
                    "l, M j, Y": "date_full",
                    "l, M j, Y g:ia": "dateTime_full_short",
                    "M d": "MMMd",
                    "M d, Y": "date_medium",
                    "M d, Y g:ia": "dateTime_medium_short",
                    "M d, Y ga": "dateTime_medium_short",
                    "M j": "MMMd",
                    "M j, Y": "date_medium",
                    "M j, Y g:i A": "dateTime_medium_short",
                    "M j, Y g:ia": "dateTime_medium_short",
                    "M jS, g:ia": "dateTime_medium_short",
                    "M y": "yMMM",
                    "M Y": "yMMM",
                    "M. d": "MMMd",
                    "M. d, Y": "date_medium",
                    "m/d": "Md",
                    "m/d/Y g:ia": "dateTime_short_short",
                    "m/d/y H:i:s": "dateTime_short_short",
                    n: "M",
                    "n/j": "Md",
                    "n/j, g:ia": "dateTime_short_short",
                    "n/j/y": "date_short",
                    Y: "y",
                  },
                  isLocaleInConfigerator: true,
                  CLDRConfigeratorFormats: {
                    dateFormats: {
                      full: "EEEE, d MMMM y",
                      long: "d MMMM y",
                      medium: "d MMM y",
                      short: "dd/MM/y",
                    },
                    timeFormats: {
                      full: "HH:mm:ss zzzz",
                      long: "HH:mm:ss z",
                      medium: "HH:mm:ss",
                      short: "HH:mm",
                    },
                    dateTimeFormats: {
                      full: "{1} 'at' {0}",
                      long: "{1} 'at' {0}",
                      medium: "{1}, {0}",
                      short: "{1}, {0}",
                    },
                    availableFormats: {
                      Bh: "h B",
                      Bhm: "h:mm B",
                      Bhms: "h:mm:ss B",
                      E: "ccc",
                      EBhm: "E, h:mm B",
                      EBhms: "E, h:mm:ss B",
                      EHm: "E HH:mm",
                      EHms: "E HH:mm:ss",
                      Ed: "E d",
                      Ehm: "E h:mm a",
                      Ehms: "E h:mm:ss a",
                      Gy: "y G",
                      GyMMM: "MMM y G",
                      GyMMMEd: "E, d MMM y G",
                      GyMMMd: "d MMM y G",
                      H: "HH",
                      Hm: "HH:mm",
                      Hms: "HH:mm:ss",
                      Hmsv: "HH:mm:ss v",
                      Hmv: "HH:mm v",
                      M: "L",
                      MEd: "E, dd/MM",
                      MMM: "LLL",
                      MMMEd: "E, d MMM",
                      "MMMMW-count-one": "'week' W 'of' MMMM",
                      "MMMMW-count-other": "'week' W 'of' MMMM",
                      MMMMd: "d MMMM",
                      MMMd: "d MMM",
                      MMdd: "dd/MM",
                      Md: "dd/MM",
                      d: "d",
                      h: "h a",
                      hm: "h:mm a",
                      hms: "h:mm:ss a",
                      hmsv: "h:mm:ss a v",
                      hmv: "h:mm a v",
                      ms: "mm:ss",
                      y: "y",
                      yM: "MM/y",
                      yMEd: "E, dd/MM/y",
                      yMMM: "MMM y",
                      yMMMEd: "E, d MMM y",
                      yMMMM: "MMMM y",
                      yMMMd: "d MMM y",
                      yMd: "dd/MM/y",
                      yQQQ: "QQQ y",
                      yQQQQ: "QQQQ y",
                      "yw-count-one": "'week' w 'of' Y",
                      "yw-count-other": "'week' w 'of' Y",
                    },
                  },
                  CLDRRegionalConfigeratorFormats: {
                    dateFormats: {
                      full: "EEEE, d MMMM y",
                      long: "d MMMM y",
                      medium: "d MMM y",
                      short: "dd/MM/y",
                    },
                    timeFormats: {
                      full: "HH:mm:ss zzzz",
                      long: "HH:mm:ss z",
                      medium: "HH:mm:ss",
                      short: "HH:mm",
                    },
                    dateTimeFormats: {
                      full: "{1} 'at' {0}",
                      long: "{1} 'at' {0}",
                      medium: "{1}, {0}",
                      short: "{1}, {0}",
                    },
                    availableFormats: {
                      Bh: "h B",
                      Bhm: "h:mm B",
                      Bhms: "h:mm:ss B",
                      E: "ccc",
                      EBhm: "E, h:mm B",
                      EBhms: "E, h:mm:ss B",
                      EHm: "E HH:mm",
                      EHms: "E HH:mm:ss",
                      Ed: "E d",
                      Ehm: "E h:mm a",
                      Ehms: "E h:mm:ss a",
                      Gy: "y G",
                      GyMMM: "MMM y G",
                      GyMMMEd: "E, d MMM y G",
                      GyMMMd: "d MMM y G",
                      H: "HH",
                      Hm: "HH:mm",
                      Hms: "HH:mm:ss",
                      Hmsv: "HH:mm:ss v",
                      Hmv: "HH:mm v",
                      M: "L",
                      MEd: "E, dd/MM",
                      MMM: "LLL",
                      MMMEd: "E, d MMM",
                      "MMMMW-count-one": "'week' W 'of' MMMM",
                      "MMMMW-count-other": "'week' W 'of' MMMM",
                      MMMMd: "d MMMM",
                      MMMd: "d MMM",
                      MMdd: "dd/MM",
                      Md: "dd/MM",
                      d: "d",
                      h: "h a",
                      hm: "h:mm a",
                      hms: "h:mm:ss a",
                      hmsv: "h:mm:ss a v",
                      hmv: "h:mm a v",
                      ms: "mm:ss",
                      y: "y",
                      yM: "MM/y",
                      yMEd: "E, dd/MM/y",
                      yMMM: "MMM y",
                      yMMMEd: "E, d MMM y",
                      yMMMM: "MMMM y",
                      yMMMd: "d MMM y",
                      yMd: "dd/MM/y",
                      yQQQ: "QQQ y",
                      yQQQQ: "QQQQ y",
                      "yw-count-one": "'week' w 'of' Y",
                      "yw-count-other": "'week' w 'of' Y",
                    },
                  },
                  CLDRToPHPSymbolConversion: {
                    yyyy: "Y",
                    yy: "y",
                    y: "Y",
                    MMMMM: "M",
                    MMMM: "F",
                    MMM: "M",
                    MM: "m",
                    M: "n",
                    dd: "d",
                    d: "j",
                    EEEEE: "D",
                    EEEE: "l",
                    EEE: "D",
                    EE: "D",
                    E: "D",
                    aaaaa: "A",
                    aaaa: "A",
                    aaa: "A",
                    aa: "A",
                    a: "A",
                    bbbbb: "A",
                    bbbb: "A",
                    bbb: "A",
                    bb: "A",
                    b: "A",
                    BBBBB: "A",
                    BBBB: "A",
                    BBB: "A",
                    BB: "A",
                    B: "A",
                    HH: "H",
                    H: "G",
                    hh: "h",
                    h: "g",
                    K: "g",
                    mm: "i",
                    ss: "s",
                    z: "",
                    zz: "",
                    zzz: "",
                    ccccc: "D",
                    cccc: "l",
                    ccc: "D",
                    cc: "D",
                    c: "D",
                    LLLLL: "M",
                    LLLL: "f",
                    LLL: "M",
                    LL: "m",
                    L: "n",
                    G: "",
                  },
                  intlDateSpecialChars: {
                    cldrDelimiter: "'",
                    singleQuote: "'",
                    singleQuoteHolder: "*",
                  },
                },
                3019,
              ],
              ["IsInternSite", [], { is_intern_site: false }, 4517],
              [
                "CaptchaClientConfig",
                [],
                {
                  recaptchaPublicKey:
                    "6LfDxsYSAAAAAGGLBGaRurawNnbvAGQw5UwRWYXL",
                },
                83,
              ],
              [
                "cr:1642797",
                ["BanzaiBase"],
                {
                  __rc: [
                    "BanzaiBase",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1458113",
                [],
                {
                  __rc: [
                    null,
                    "Aa2wk3Hkxofp5AEEU2yF1RhNvhJMaplxGa-TeNdTF2sEuI2cZBP3W7VjF2NbeIFYLONNpsSk_83G33Eor76wWaDkBxsvIcs",
                  ],
                },
                -1,
              ],
              [
                "cr:917439",
                ["PageTransitionsBlue"],
                {
                  __rc: [
                    "PageTransitionsBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1108857",
                [],
                {
                  __rc: [
                    null,
                    "Aa2qg3DK80zPGGuzRIzQTQm-iNM3ZrjuQbPsY8MX2KsPGMd10mkJOCpXqiC84jsek0mJuOlzHRH097yuGQ",
                  ],
                },
                -1,
              ],
              [
                "cr:1269707",
                [],
                {
                  __rc: [
                    null,
                    "Aa2ety7WNPck8HmXtSmTdjDem0XNYvBEijPQaPJa1zXYDvoOoAaqJut7e8vLj7ooimntWeVOdmOHzMjRnXGv4QA",
                  ],
                },
                -1,
              ],
              [
                "cr:1269708",
                [],
                {
                  __rc: [
                    null,
                    "Aa2ety7WNPck8HmXtSmTdjDem0XNYvBEijPQaPJa1zXYDvoOoAaqJut7e8vLj7ooimntWeVOdmOHzMjRnXGv4QA",
                  ],
                },
                -1,
              ],
              [
                "cr:1269709",
                [],
                {
                  __rc: [
                    null,
                    "Aa2ety7WNPck8HmXtSmTdjDem0XNYvBEijPQaPJa1zXYDvoOoAaqJut7e8vLj7ooimntWeVOdmOHzMjRnXGv4QA",
                  ],
                },
                -1,
              ],
              [
                "cr:1294158",
                ["React.classic"],
                {
                  __rc: [
                    "React.classic",
                    "Aa1PXQUTpEe_ajqarWMOqUK4bCZPLVxG0Ifm_LVlAWDpE9dE_jlMfJTFv41x0xv6TycgYjg1A1DMMDSgs_BwamLgWYTp",
                  ],
                },
                -1,
              ],
              [
                "cr:1294246",
                ["ReactDOM.classic"],
                {
                  __rc: [
                    "ReactDOM.classic",
                    "Aa1PXQUTpEe_ajqarWMOqUK4bCZPLVxG0Ifm_LVlAWDpE9dE_jlMfJTFv41x0xv6TycgYjg1A1DMMDSgs_BwamLgWYTp",
                  ],
                },
                -1,
              ],
              [
                "cr:888908",
                ["warningBlue"],
                {
                  __rc: [
                    "warningBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:971473",
                ["LayerHideOnTransition"],
                {
                  __rc: [
                    "LayerHideOnTransition",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1069930",
                [],
                {
                  __rc: [
                    null,
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1083116",
                ["XAsyncRequest"],
                {
                  __rc: [
                    "XAsyncRequest",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1083117",
                [],
                {
                  __rc: [
                    null,
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1105154",
                [],
                {
                  __rc: [
                    null,
                    "Aa2qg3DK80zPGGuzRIzQTQm-iNM3ZrjuQbPsY8MX2KsPGMd10mkJOCpXqiC84jsek0mJuOlzHRH097yuGQ",
                  ],
                },
                -1,
              ],
              [
                "cr:1697455",
                ["CookieConsentActionHandler"],
                {
                  __rc: [
                    "CookieConsentActionHandler",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "BanzaiConfig",
                [],
                {
                  MAX_SIZE: 10000,
                  MAX_WAIT: 150000,
                  MIN_WAIT: null,
                  RESTORE_WAIT: 150000,
                  blacklist: ["time_spent"],
                  disabled: false,
                  gks: {
                    boosted_pagelikes: true,
                    mercury_send_error_logging: true,
                    platform_oauth_client_events: true,
                    visibility_tracking: true,
                    graphexplorer: true,
                    sticker_search_ranking: true,
                    actually_flush_lazy_queue: true,
                  },
                  known_routes: [
                    "unified_logging",
                    "artillery_javascript_actions",
                    "artillery_javascript_trace",
                    "artillery_logger_data",
                    "logger",
                    "falco",
                    "gk2_exposure",
                    "js_error_logging",
                    "loom_trace",
                    "marauder",
                    "perfx_custom_logger_endpoint",
                    "qex",
                    "require_cond_exposure_logging",
                    "sri_logger_data",
                  ],
                  should_drop_unknown_routes: true,
                  should_log_unknown_routes: false,
                },
                7,
              ],
              [
                "PageTransitionsConfig",
                [],
                { reloadOnBootloadError: true },
                1067,
              ],
              ["CoreWarningGK", [], { forceWarning: false }, 725],
              [
                "cr:692209",
                ["cancelIdleCallbackBlue"],
                {
                  __rc: [
                    "cancelIdleCallbackBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1292365",
                ["React-prod.classic"],
                {
                  __rc: [
                    "React-prod.classic",
                    "Aa2qg3DK80zPGGuzRIzQTQm-iNM3ZrjuQbPsY8MX2KsPGMd10mkJOCpXqiC84jsek0mJuOlzHRH097yuGQ",
                  ],
                },
                -1,
              ],
              [
                "cr:1344485",
                ["ReactDOM.classic.prod-or-profiling"],
                {
                  __rc: [
                    "ReactDOM.classic.prod-or-profiling",
                    "Aa2qg3DK80zPGGuzRIzQTQm-iNM3ZrjuQbPsY8MX2KsPGMd10mkJOCpXqiC84jsek0mJuOlzHRH097yuGQ",
                  ],
                },
                -1,
              ],
              [
                "cr:983844",
                [],
                {
                  __rc: [
                    null,
                    "Aa2qg3DK80zPGGuzRIzQTQm-iNM3ZrjuQbPsY8MX2KsPGMd10mkJOCpXqiC84jsek0mJuOlzHRH097yuGQ",
                  ],
                },
                -1,
              ],
              [
                "cr:1344486",
                ["ReactDOM.classic.prod"],
                {
                  __rc: [
                    "ReactDOM.classic.prod",
                    "Aa3u8WHPq7Q4yCFJuOdIoRctUbkP6iruSM2Z8dXrDcidS8ijeocL8_weeU1FmK1kQvxXFM_RAuKXO9MqG7PXFoLpTZJdBywy1w",
                  ],
                },
                -1,
              ],
              [
                "cr:1344487",
                ["ReactDOM-prod.classic"],
                {
                  __rc: [
                    "ReactDOM-prod.classic",
                    "Aa00b70hfzqqCZQWjU0ToLE3-vqfE3S4val0Css_aELUYepclUvHD8I7LI10-isQXtKMmX28cEU89_hOCm4zOrjGoRBdMxYJ5SP1lyrB",
                  ],
                },
                -1,
              ],
              [
                "cr:1353359",
                ["EventListenerImplForBlue"],
                {
                  __rc: [
                    "EventListenerImplForBlue",
                    "Aa2G3Qxzlqycnd6LxvnAMVyoS8FT6yb5nKCOxS8fozx-wA3RJxe6WFBB86o6QWiUZpK_Q3Ibw42Uqqk-Wabi4yh2Ixw_pVHP6A",
                  ],
                },
                -1,
              ],
              [
                "KillabyteProfilerConfig",
                [],
                {
                  htmlProfilerModule: null,
                  profilerModule: null,
                  depTypes: { BL: "bl", NON_BL: "non-bl" },
                },
                1145,
              ],
              [
                "QuicklingConfig",
                [],
                {
                  version: "1003907862;0;",
                  sessionLength: 30,
                  inactivePageRegex:
                    "^/(fr/u\\.php|ads/|advertising|ac\\.php|ae\\.php|a\\.php|ajax/emu/(end|f|h)\\.php|badges/|comments\\.php|connect/uiserver\\.php|editalbum\\.php.+add=1|ext/|feeds/|help([/?]|$)|identity_switch\\.php|isconnectivityahumanright/|intern/|login\\.php|logout\\.php|sitetour/homepage_tour\\.php|sorry\\.php|syndication\\.php|webmessenger|/plugins/subscribe|lookback|brandpermissions|gameday|pxlcld|comet|worldcup/map|livemap|work/reseller|([^/]+/)?dialog|legal|.+\\.pdf$|.+/settings/)",
                  badRequestKeys: [
                    "nonce",
                    "access_token",
                    "oauth_token",
                    "xs",
                    "checkpoint_data",
                    "code",
                  ],
                  logRefreshOverhead: false,
                },
                60,
              ],
              [
                "WebStorageMonsterLoggingURI",
                [],
                { uri: "/ajax/webstorage/process_keys/?state=1" },
                3032,
              ],
              [
                "WebDevicePerfInfoData",
                [],
                {
                  needsFullUpdate: true,
                  needsPartialUpdate: false,
                  shouldLogResourcePerf: false,
                },
                3977,
              ],
              ["BrowserPaymentHandlerConfig", [], { enabled: false }, 3904],
              [
                "TimeSpentConfig",
                [],
                { "0_delay": 0, "0_timeout": 8, delay: 1000, timeout: 64 },
                142,
              ],
              [
                "cr:1351741",
                ["CometEventListener"],
                {
                  __rc: [
                    "CometEventListener",
                    "Aa2dSl-EHsrcg9bVZat9VIda_lrYd5P_3K8xzeRpetbkLhn16U2Ho3CBer5WTFNrzuAV_05x3nwKFQJx0Quv5-BteU6ebFCCpZ62EcEF2ETcQCHKadpe",
                  ],
                },
                -1,
              ],
              [
                "cr:1634616",
                ["UserActivityBlue"],
                {
                  __rc: [
                    "UserActivityBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:844180",
                ["TimeSpentImmediateActiveSecondsLoggerBlue"],
                {
                  __rc: [
                    "TimeSpentImmediateActiveSecondsLoggerBlue",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              [
                "cr:1187159",
                ["BlueCompatBroker"],
                {
                  __rc: [
                    "BlueCompatBroker",
                    "Aa3uD8E0RCKYGtYB_pU1Fv0-B38VK8nBoJDtBpxfhyou8X1t2O-F4CpMMwy8YRL9njcfHAsbfHM6PxnngSocC2CNALE",
                  ],
                },
                -1,
              ],
              ["ImmediateActiveSecondsConfig", [], { sampling_rate: 0 }, 423],
            ],
            require: [
              [
                "TrackingPixel",
                "loadWithNoReferrer",
                [],
                [
                  "https://cx.atdmt.com/?f=AYy1k9Ta_zYhur22I2QeZBxddz5-lGQs81PF6whnmkv7UPhk29Y3iA46f0kIHDtc9MPrHSwGQaKWrtUwdj-2bDRo&c=993484447&v=1&l=2",
                ],
              ],
              ["CavalryLoggerImpl", "startInstrumentation", [], []],
              [
                "NavigationMetrics",
                "setPage",
                [],
                [
                  {
                    page: "XSemCampaignLandingController",
                    page_type: "normal",
                    page_uri:
                      "https://www.facebook.com/campaign/landing.php?&campaign_id=1635645017&extra_1=s%7Cc%7C514542539694%7Ce%7Cfacebook%20account%20create%7C&placement=&creative=514542539694&keyword=facebook%20account%20create&partner_id=googlesem&extra_2=campaignid%3D1635645017%26adgroupid%3D60549328257%26matchtype%3De%26network%3Dg%26source%3Dnotmobile%26search_or_content%3Ds%26device%3Dc%26devicemodel%3D%26adposition%3D%26target%3D%26targetid%3Dkwd-321689128740%26loc_physical_ms%3D2702%26loc_interest_ms%3D%26feeditemid%3D%26param1%3D%26param2%3D&gclid=Cj0KCQjwnueFBhChARIsAPu3YkTgqm3gbdalr1YMF2wkPiyMfvRnr58QRRzXMVfSzgzHwC7WlVLl2WwaAg0oEALw_wcB",
                    serverLID: "6969906799560357417-0",
                  },
                ],
              ],
              ["FalcoLoggerTransports", "attach", [], []],
              ["Chromedome", "start", [], [{}]],
              ["DimensionTracking"],
              [
                "HighContrastMode",
                "init",
                [],
                [
                  {
                    isHCM: false,
                    spacerImage:
                      "https://static.xx.fbcdn.net/rsrc.php/v3/y4/r/-PAXP-deijE.gif",
                  },
                ],
              ],
              ["ClickRefLogger"],
              ["DetectBrokenProxyCache", "run", [], [0, "c_user"]],
              ["NavigationClickPointHandler"],
              ["ServiceWorkerURLCleaner", "removeRedirectID", [], []],
              ["WebStorageMonster", "schedule", [], []],
              ["WebDevicePerfInfoLogging", "doLog", [], []],
              ["Artillery", "disable", [], []],
              ["ScriptPathLogger", "startLogging", [], []],
              ["TimeSpentBitArrayLogger", "init", [], []],
              [
                "RequireDeferredReference",
                "unblock",
                [],
                [["VisualCompletionGating"]],
              ],
            ],
          },
          hsrp: {
            hsdp: {
              clpData: {
                1871697: { r: 1, s: 1 },
                1829319: { r: 1 },
                1743690: { r: 1 },
                1829320: { r: 1 },
                1843988: { r: 1 },
              },
            },
            hblp: {
              sr_revision: 1003907862,
              consistency: { rev: 1003907862 },
              rsrcMap: {
                FEt5GzN: {
                  type: "js",
                  src: "https://static.xx.fbcdn.net/rsrc.php/v3/y_/r/JopZtdti8dq.js?_nc_x=Ij3Wp8lg5Kz",
                },
              },
              compMap: {
                TransportSelectingClientSingleton: {
                  r: ["PdR0Lsw", "GPw9Jn8", "Ogz9fTN"],
                  rds: {
                    m: [
                      "ContextualConfig",
                      "BladeRunnerClient",
                      "DGWRequestStreamClient",
                      "MqttLongPollingRunner",
                      "BanzaiScuba_DEPRECATED",
                    ],
                    r: [
                      "a834SZr",
                      "kaDw2Pd",
                      "hKY0QKT",
                      "hxRcTAv",
                      "LjM60fS",
                      "9TBca97",
                    ],
                  },
                  be: 1,
                },
                RequestStreamCommonRequestStreamCommonTypes: {
                  r: ["PdR0Lsw"],
                  be: 1,
                },
              },
            },
          },
          allResources: [
            "y1PT+Nd",
            "GPw9Jn8",
            "FEt5GzN",
            "hxRcTAv",
            "2+0IZLi",
            "9TBca97",
            "hKY0QKT",
          ],
          onload: [
            'CavalryLogger.getInstance("6969906799560357417-0").setTTIEvent("t_domcontent");',
          ],
          onafterload: [
            'CavalryLogger.getInstance("6969906799560357417-0").collectBrowserTiming(window)',
            'window.CavalryLogger&&CavalryLogger.getInstance().setTimeStamp("t_paint");',
            'if (window.ExitTime){CavalryLogger.getInstance("6969906799560357417-0").setValue("t_exit", window.ExitTime);};',
          ],
        });
      });
    </script>
  </body>
</html>